/* ============================================
   OMACD — Design System & Custom Styles
   V2 — Layout aligné sur Wi.Help
   ============================================ */

/* ---------- Barre sociale flottante gauche ---------- */
.social-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--forest-dark);
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
}
.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.social-float a:hover {
  background: var(--accent);
  color: #fff;
}
.social-float a svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .social-float { display: none; }
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #143326;
  --cacao: #4E342E;
  --cacao-light: #6D4C41;
  --cacao-dark: #3E2723;
  --accent: #D35400;
  --accent-light: #E67E22;
  --accent-dark: #A04000;
  --offwhite: #F9F9F9;
  --light-gray: #F0F0F0;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Sora', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: #1a1a1a;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.019em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background-color: rgba(211, 84, 0, 0.2);
  color: #1a1a1a;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.label-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.label-tag.light {
  color: var(--accent-light);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--cacao-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.019em;
}

.section-title.light {
  color: #fff;
}

.section-desc {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
}

.section-desc.light {
  color: rgba(255,255,255,0.8);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--forest);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
}

/* ============================================
   TOP ACCENT BAR (thin gold line)
   ============================================ */
.top-accent-bar {
  height: 3px;
  background: var(--accent-light);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 101;
}

/* ============================================
   MARKET TICKER
   ============================================ */
.market-ticker {
  position: sticky;
  top: 3px;
  z-index: 100;
  background: var(--forest-dark);
  overflow: hidden;
  padding: 0.5rem 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  --ticker-shift: -50%;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ticker-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
}

.ticker-trend {
  font-size: 0.7rem;
}
.ticker-trend.up { color: #4ade80; }
.ticker-trend.down { color: #f87171; }
.ticker-trend.stable { color: rgba(255,255,255,0.4); }

.ticker-separator {
  color: rgba(255,255,255,0.15);
  margin: 0 1.5rem;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tickerScrollDynamic {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--ticker-shift)); }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s ease,
              box-shadow 0.4s ease;
}

/* Header scrolled : sticky, compact, glassmorphism */
.header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(20, 51, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled .header-inner {
  height: 3.5rem;
}

/* Shrink logo */
.header.scrolled .logo-name-svg {
  height: 18px;
}

/* Shrink nav */
.header.scrolled .nav-link {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
}

/* Shrink CTA */
.header.scrolled .header-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
}

.logo {
  display: flex;
  align-items: center;
}

/* SVG Logo image styling */
.logo-name-svg {
  display: block;
  height: 24px;
  width: auto;
  flex-shrink: 0;
  transition: height 0.4s ease;
}
.footer-logo .logo-name-svg {
  height: 26px;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-link.active {
  color: var(--accent-light);
  background: rgba(255,255,255,0.08);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.nav-link svg {
  width: 14px;
  height: 14px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  width: 14rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--cacao-dark);
  transition: all 0.2s;
}
.dropdown a:hover {
  color: var(--forest);
  background: rgba(27, 67, 50, 0.05);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Header icon buttons (search, user, cart) */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.header-icon-btn:hover {
  opacity: 0.7;
}
.header-icon-btn svg {
  width: 18px;
  height: 18px;
}

/* Pill button (Nous Soutenir) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.625rem 1.75rem;
  border: 1.5px solid #fff;
  border-radius: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-pill:hover {
  background: #fff;
  color: var(--forest);
}

/* ---- Dot Matrix Burger ---- */
.dot-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.dot-burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
/* Active state: 3 lines → 3 orange dots */
.dot-burger.active {
  gap: 5px;
  height: auto;
  padding: 0.5rem;
}
.dot-burger.active .dot-burger-line {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}
.dot-burger.active .dot-burger-line:nth-child(1) { transform: translateY(0); }
.dot-burger.active .dot-burger-line:nth-child(2) { transition-delay: 0.06s; }
.dot-burger.active .dot-burger-line:nth-child(3) { transition-delay: 0.12s; }

/* ---- Split Reveal Mobile Nav ---- */
.split-nav {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  display: none;
  flex-direction: column;
}
.split-nav.open {
  pointer-events: auto;
}

/* Close button */
.split-nav-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10000;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.5rem;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s 0.3s, transform 0.4s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.split-nav.open .split-nav-close {
  opacity: 1;
  transform: rotate(0deg);
  pointer-events: auto;
}
.split-nav-close:hover {
  color: var(--accent-light);
}

/* Top zone: dark forest */
.split-nav-top {
  flex: 1;
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.split-nav.open .split-nav-top {
  clip-path: inset(0 0 0% 0);
}

/* Bottom zone: accent orange */
.split-nav-bottom {
  background: var(--accent);
  padding: 1.75rem 2rem 2rem;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
  overflow: hidden;
}
.split-nav.open .split-nav-bottom {
  clip-path: inset(0% 0 0 0);
}

/* Nav links in top zone */
.split-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  max-width: 320px;
}

/* Accordion: L'Observatoire toggle */
.split-nav-accordion {
  display: flex;
  flex-direction: column;
}
.split-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  padding: 0.6rem 0;
  text-align: left;
  transition: color 0.2s;
}
.split-nav-toggle:hover {
  color: var(--accent-light);
}
.split-nav-chevron {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-nav-toggle.expanded .split-nav-chevron {
  transform: rotate(180deg);
}
/* Sub-links hidden by default */
.split-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 1.25rem;
}
.split-nav-sub.open {
  max-height: 200px;
}
.split-nav-sub a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: 0.5rem 0;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.split-nav-sub a:hover {
  color: #fff;
  transform: translateX(4px);
}

.split-nav-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 0;
  transition: color 0.2s, transform 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.split-nav-main:hover {
  color: var(--accent-light);
  transform: translateX(6px);
}
.split-nav-contact {
  color: var(--accent-light);
  border-bottom: none;
}
.split-nav-contact:hover {
  color: var(--accent);
}

/* Resources in bottom zone */
.split-nav-resources {
  max-width: 320px;
  margin: 0 auto;
}
.split-nav-res-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.split-nav-res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.split-nav-res-grid a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  padding: 0.3rem 0;
  transition: opacity 0.2s;
}
.split-nav-res-grid a:hover {
  opacity: 0.7;
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}
body.menu-open .header {
  position: fixed;
  z-index: 9999;
  background: var(--forest-dark);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-dark);
  padding-top: 0;
  padding-bottom: 0;
}

/* Slider Hero — conteneur */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Chaque slide : fond plein écran, fondu CSS */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
  /* Ken Burns léger sur chaque slide */
  animation: heroSlideKenBurns 20s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}

@keyframes heroSlideKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Gradient animé — overlay qui pulse doucement */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 51, 38, 0.45) 0%,
    rgba(27, 67, 50, 0.35) 25%,
    rgba(40, 80, 55, 0.38) 50%,
    rgba(20, 51, 38, 0.42) 75%,
    rgba(15, 40, 30, 0.50) 100%
  );
  background-size: 300% 300%;
  animation: heroGradientShift 10s ease infinite;
}
@keyframes heroGradientShift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Spotlight doré — halo qui se déplace */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(212,168,83,0.07) 0%, transparent 70%);
  animation: heroSpotlight 12s ease-in-out infinite alternate;
}
@keyframes heroSpotlight {
  0%   { transform: translate(-12%, -8%); }
  33%  { transform: translate(10%, 5%); }
  66%  { transform: translate(-5%, 8%); }
  100% { transform: translate(12%, -4%); }
}

/* Blobs & accent shape removed in V2 (no longer in HTML) */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
  margin: 0 auto;
  padding-top: 10rem;
}

/* Entrée séquencée — label */
.hero-content .label-tag {
  margin-bottom: 1.5rem;
  letter-spacing: 0.35em;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
}
.hero.hero-animated .hero-content .label-tag { opacity: 1; }

/* Mot par mot — chaque mot apparaît individuellement */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: -0.028em;
  line-height: 1.1;
}
.hero-title .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-title .hero-word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title em {
  color: var(--accent-light);
  font-style: normal;
  font-weight: 800;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.5;
}

/* Entrée séquencée — description */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2rem auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 1.6s, transform 0.7s ease 1.6s;
}
.hero.hero-animated .hero-desc { opacity: 1; transform: translateY(0); }

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 1.8s, transform 0.7s ease 1.8s;
}
.hero.hero-animated .hero-stats-bar { opacity: 1; transform: translateY(0); }
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}
.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Entrée séquencée — boutons CTA */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 2.1s, transform 0.6s ease 2.1s;
}
.hero.hero-animated .hero-buttons { opacity: 1; transform: translateY(0); }

/* Hero News Bar — mini actualités en bas du hero */
.hero-news-bar {
  position: absolute;
  bottom: 65px;
  left: 0; right: 0;
  z-index: 10;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateY(100%);
  animation: heroNewsSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2.5s both;
}
@keyframes heroNewsSlideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.hero-news-label {
  background: rgba(20, 51, 38, 0.9);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
}
.hero-news-label span {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
}
.hero-news-cards {
  flex: 1;
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}
.hero-news-card {
  flex: 1;
  padding: 1rem 1.3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: #1a1a1a;
  transition: background 0.2s;
  opacity: 0;
  animation: heroNewsFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-news-card:nth-child(1) { animation-delay: 2.8s; border-left: none; }
.hero-news-card:nth-child(2) { animation-delay: 3.0s; }
.hero-news-card:nth-child(3) { animation-delay: 3.2s; }
@keyframes heroNewsFadeIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-news-card:hover { background: rgba(20, 51, 38, 0.05); }
.hero-news-card .card-date { text-align: center; min-width: 46px; }
.hero-news-card .card-date .day {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-orange, #D35400);
  line-height: 1;
  transition: transform 0.3s ease;
}
.hero-news-card:hover .card-date .day { transform: scale(1.15); }
.hero-news-card .card-date .month {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}
.hero-news-card .card-info h4 {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.15rem;
}
.hero-news-card .card-tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  font-weight: 700;
  background: rgba(20, 51, 38, 0.1);
  padding: 0.12rem 0.45rem;
  border-radius: 2px;
  display: inline-block;
}
.hero-news-see-all {
  background: var(--accent-orange, #D35400);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
  gap: 0.3rem;
  transition: background 0.2s;
}
.hero-news-see-all:hover { background: #b84700; }
.hero-news-see-all svg { width: 14px; height: 14px; }

/* Responsive hero news bar */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; overflow: visible; justify-content: flex-start; align-items: stretch; }
  .hero-content { padding-top: 7.5rem; padding-bottom: 1.5rem; width: 100%; z-index: 2; }
  .hero-news-bar { position: relative; bottom: auto; left: auto; right: auto; flex-direction: column; transform: none; opacity: 1; animation: none; z-index: 3; margin-top: auto; width: 100%; }
  .hero-news-label { min-width: auto; padding: 0.8rem 1rem; justify-content: center; }

  /* Carrousel horizontal swipable */
  .hero-news-cards {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding: 1rem 1rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    scrollbar-width: none;
  }
  .hero-news-cards::-webkit-scrollbar { display: none; }

  .hero-news-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    border-left: none;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    opacity: 1;
    animation: none;
    transform: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .hero-news-card:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

  /* Date volumineuse et typographique */
  .hero-news-card .card-date {
    text-align: left;
    min-width: auto;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
  }
  .hero-news-card .card-date .day {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .hero-news-card .card-date .month {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #666;
  }

  .hero-news-card .card-tag { margin-bottom: 0.1rem; }
  .hero-news-card .card-info h4 { font-size: 0.85rem; line-height: 1.4; }

  .hero-news-see-all { justify-content: center; padding: 0.8rem; }
}

/* Hero CTA — solid accent */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border: 1px solid var(--accent);
  border-radius: 0;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-hero-cta:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

/* Hero Ghost button */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  color: rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-hero-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission {
  padding: 0 0 1.5rem 0;
  margin-top: -4.8rem;
  position: relative;
  z-index: 3;
}

.mission-grid {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mission-content {
  flex: 7;
  background: linear-gradient(
    160deg,
    #c0470a 0%,
    var(--accent) 40%,
    var(--accent-light) 100%
  );
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.mission-content .label-tag {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.mission-content .section-title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: -0.019em;
  max-width: 480px;
}

.mission-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 3rem;
}

.mission-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* SVG Circular Progress */
.stat-circle-svg {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0;
}

.stat-circle-svg svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-circle-svg .circle-bg {
  fill: none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 4.2;
}

.stat-circle-svg .circle-progress {
  fill: none;
  stroke: #fff;
  stroke-width: 4.2;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-circle-svg .stat-value-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: #fff;
}

.stat-label {
  border-left: 2px solid rgba(255,255,255,0.25);
  padding-left: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  max-width: 160px;
  line-height: 1.4;
}

/* Right column: Full image tile with dark gradient */
.mission-image-tile {
  flex: 3;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.mission-image-tile.visible {
  opacity: 1;
  transform: translateX(0);
}

.mission-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s ease;
}

.mission-image-tile:hover .mission-image-bg {
  transform: scale(1.04);
}

.mission-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.mission-image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem;
  z-index: 2;
}

.mission-quote-icon {
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.mission-image-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.mission-image-author {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.75rem;
}

.mission-image-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
}

.mission-image-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mission-image-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.mission-image-link:hover {
  gap: 0.75rem;
  color: #fff;
}
.mission-image-link i { width: 14px; height: 14px; }

/* ============================================
   CORE VALUES
   ============================================ */
.core-values {
  padding: 1.5rem 0 3rem 0;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

/* Formes flottantes animées en arrière-plan */
.core-values::before,
.core-values::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.core-values::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 84, 0, 0.12) 0%, rgba(211, 84, 0, 0.04) 40%, transparent 70%);
  top: -150px;
  right: -80px;
  animation: valuesFloat1 16s ease-in-out infinite;
}
.core-values::after {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(27, 67, 50, 0.10) 0%, rgba(27, 67, 50, 0.03) 40%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: valuesFloat2 20s ease-in-out infinite;
}

@keyframes valuesFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 40px) scale(1.12); }
  50% { transform: translate(-20px, 60px) scale(1.05); }
  75% { transform: translate(30px, 20px) scale(0.95); }
}
@keyframes valuesFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(30px, -50px) scale(0.95); }
  75% { transform: translate(-30px, -20px) scale(1.08); }
}

.values-header {
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.values-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  position: relative;
  z-index: 1;
}

.values-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card {
  position: relative;
  background: #fff;
  border-radius: 0;
  padding: 2.5rem 2rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  transition: background 0.4s ease, transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  /* Animation au scroll */
  opacity: 0;
  transform: translateY(30px);
}
.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Numéro décoratif */
.value-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(211, 84, 0, 0.2);
  letter-spacing: 0.05em;
}

.value-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 84, 0, 0.08);
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.value-icon svg,
.value-icon i {
  width: 1.6rem;
  height: 1.6rem;
}
.value-card:hover .value-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--cacao-dark);
  margin-bottom: 0.75rem;
}

/* Séparateur coloré sous le titre */
.value-separator {
  width: 32px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1rem;
  transition: width 0.4s ease;
}
.value-card:hover .value-separator {
  width: 56px;
}

/* Variante verte pour certaines cartes */
.value-card.green .value-icon {
  background: rgba(27, 67, 50, 0.1);
  color: var(--forest);
}
.value-card.green:hover .value-icon {
  background: var(--forest);
  color: #fff;
}
.value-card.green .value-separator {
  background: var(--forest);
}
.value-card.green .value-number {
  color: rgba(27, 67, 50, 0.2);
}
.value-card.green .value-link {
  color: var(--forest);
}
.value-card.green .value-link:hover {
  color: var(--forest-dark);
}

.value-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.value-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  transition: color 0.3s, gap 0.3s;
}
.value-link:hover {
  color: var(--accent-dark);
  gap: 0.65rem;
}
.value-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.value-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   ZONES DE COUVERTURE
   ============================================ */
.zones {
  padding: 6rem 0;
  background: #fff;
}

.zones-header {
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.zones-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.zones-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.zone-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 20rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.zone-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.zone-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.zone-card:hover .zone-bg {
  transform: scale(1.08);
}

.zone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,20,0.97) 0%, rgba(15,40,28,0.7) 50%, rgba(20,51,38,0.25) 100%);
  transition: background 0.4s ease;
}
.zone-card:hover .zone-overlay {
  background: linear-gradient(to top, rgba(10,30,20,0.98) 0%, rgba(15,40,28,0.75) 55%, rgba(20,51,38,0.3) 100%);
}

.zone-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.zone-region {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.zone-region svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.zone-region span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
}

.zone-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.zone-card:hover .zone-name {
  transform: translateX(4px);
}

.zone-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.zone-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.zone-stat {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.zone-stat-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.zone-stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.zone-explore {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.zone-card:hover .zone-explore {
  opacity: 1;
  transform: translateX(0);
}
.zone-explore svg {
  width: 14px;
  height: 14px;
}

/* --- Zones pagination --- */
.zones-grid--fading {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.zones-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.zones-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: transparent;
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zones-page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,152,48,0.08);
}

.zones-page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232,152,48,0.35);
}


/* ============================================
   IMPACT SECTION
   ============================================ */
.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.impact-image {
  position: relative;
  min-height: 560px;
  background: url('/images/impact-section.jpg') center / cover no-repeat;
  background-color: #2a2a2a;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.impact-content {
  background: #1a1a1a;
  padding: 5rem max(2rem, calc((100vw - 1280px) / 2 + 2rem)) 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.impact-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.impact-content .label-tag {
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.impact-content .section-title {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.019em;
}

.impact-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Impact Stats */
.impact-stats {
  display: flex;
  margin-bottom: 2.5rem;
}

.impact-stat {
  flex: 1;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.impact-stat:last-child {
  border-right: none;
  padding-right: 0;
}
.impact-stat:not(:first-child) {
  padding-left: 2rem;
}

.impact-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.impact-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Impact CTA */
.impact-actions {
  margin-top: 0.5rem;
}

.btn-impact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-impact-cta:hover {
  background: #fff;
  color: #1a1a1a;
}
.btn-impact-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.btn-impact-cta:hover svg {
  transform: translateX(4px);
}

/* ============================================
   ACTUALITÉS (Split image + liste numérotée)
   ============================================ */
.actualites {
  padding: 6rem 0;
  background: var(--light-gray);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.actu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.actu-desc {
  max-width: 500px;
  margin-top: 0.75rem;
}

.btn-all-actu {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  transition: color 0.3s, gap 0.3s;
  flex-shrink: 0;
}
.btn-all-actu:hover {
  color: var(--accent-dark);
  gap: 0.65rem;
}
.btn-all-actu svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.btn-all-actu:hover svg {
  transform: translateX(4px);
}

/* Tags (shared) */
.actu-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  color: #fff;
}
.actu-tag svg {
  width: 12px;
  height: 12px;
}
.actu-tag-video { background: var(--accent); }
.actu-tag-event { background: var(--accent); }
.actu-tag-report { background: var(--forest); }
.actu-tag-press { background: var(--cacao); }
.actu-tag-article { background: var(--cacao-light); }

/* --- Split Layout : image gauche + liste droite --- */
.actu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.actu-split.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image à la une (gauche) */
.actu-split-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.actu-split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.actu-split-img:hover .actu-split-bg {
  transform: scale(1.05);
}

.actu-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.actu-split-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}
.actu-split-content .actu-tag {
  margin-bottom: 0.75rem;
}

.actu-split-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Liste numérotée (droite) */
.actu-split-list {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.actu-split-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateX(20px);
  transition: background 0.3s, opacity 0.5s ease, transform 0.5s ease;
}
.actu-split-item:last-child {
  border-bottom: none;
}
.actu-split-item:hover {
  background: var(--offwhite);
}
.actu-split-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.actu-split-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  min-width: 40px;
}

.actu-split-item-content {
  flex: 1;
}
.actu-split-item-content .actu-tag {
  margin-bottom: 0.35rem;
  font-size: 0.5rem;
  padding: 0.2rem 0.5rem;
}

.actu-split-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cacao-dark);
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

.actu-split-item-date {
  font-size: 0.6rem;
  color: #999;
}

.actu-split-item-arrow {
  color: rgba(0,0,0,0.1);
  transition: color 0.3s, transform 0.3s;
}
.actu-split-item:hover .actu-split-item-arrow {
  color: var(--accent);
  transform: translateX(3px);
}
.actu-split-item-arrow svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   PARTENAIRES
   ============================================ */
.partners {
  padding: 3rem 0;
  background: #fff;
}

.partners-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  gap: 6rem;
  align-items: center;
  animation: partnersScroll 35s linear infinite;
  width: max-content;
}

@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-track img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.3;
  flex-shrink: 0;
  transition: filter 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.partners-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.partners-track:hover {
  animation-play-state: paused;
}

/* ============================================
   NEWSLETTER / CTA
   ============================================ */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--forest-dark) 0%, #1a3d2b 100%);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,119,46,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.newsletter-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.newsletter-perk-icon {
  width: 32px;
  height: 32px;
  background: rgba(232,119,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-perk-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
}

.newsletter-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-form-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}
.newsletter-input:focus {
  border-color: var(--accent-light);
  background: rgba(255,255,255,0.12);
}
.newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.newsletter-btn svg {
  width: 16px;
  height: 16px;
}
.newsletter-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cacao-dark);
  color: #fff;
}
/* Footer sombre (Actualités, FAQ, pages légales) */
.footer-dark {
  background: #1a1a1a;
}

/* Footer Top — Logo + Socials */
.footer-top {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
}
.footer-social-btn:hover {
  background: var(--accent);
}
.footer-social-btn svg {
  width: 15px;
  height: 15px;
}

/* Footer Main — 4 colonnes */
.footer-main {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--accent-light);
  font-family: var(--font-heading);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-col a:hover {
  color: #fff;
}

/* Footer Partenaires */
.footer-partners {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-partners h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.footer-partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.footer-partner-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-partner-link:hover {
  color: var(--accent);
}

/* Partners track — links inside */
.partners-track a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Bandeau contact footer — masqué en desktop */
.footer-contact-bar { display: none; }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-link {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-bottom-link:hover {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .dot-burger { display: flex; }
  .split-nav { display: flex; }
  .header-cta .btn { display: none; }
  .header-icons { display: none; }
  .header-cta .btn-pill { display: none; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2n) { border-right: none; }
  .value-card:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }

  .impact { grid-template-columns: 1fr; }
  .impact-content { padding: 4rem 2rem; }

  .actu-split { grid-template-columns: 1fr; min-height: auto; }
  .actu-split-img { min-height: 320px; }

  .newsletter-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-top { flex-wrap: wrap; gap: 1.5rem; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section-padding { padding: 3rem 0; }
  .zones { padding: 3rem 0; }
  .actualites { padding: 3rem 0; }

  /* Fix hero : empêcher le contenu de chevaucher le header */
  .hero { align-items: flex-start; }
  .hero-content { padding: 9rem 1.5rem 2rem; }
  .hero-title { margin-bottom: 1.25rem; }
  .hero-desc { margin-bottom: 1.5rem; }
  .hero-stats-bar { margin-bottom: 2rem; gap: 1.25rem; }
  .hero-buttons { gap: 0.75rem; }

  /* Hero news bar — carrousel déjà défini via breakpoint 900px */
  .hero-news-label { text-align: center; justify-content: center; }
  .hero-news-bar { margin-bottom: 0; }

  .mission { margin-top: 0; padding-top: 0; padding-bottom: 2rem; }
  /* Réduire le vide entre mission et valeurs */
  .core-values { padding-top: 2rem; }
  .mission-grid { flex-direction: column; gap: 16px; align-items: stretch; }
  .mission-content { padding: 2.5rem 1.5rem; }
  .mission-stats { flex-direction: column; gap: 1.5rem; }
  .mission-image-tile { min-height: 320px; }
  .stat-circle-svg { width: 4.5rem; height: 4.5rem; }
  .stat-circle-svg .stat-value-text { font-size: 1.15rem; }

  .zones-grid { grid-template-columns: 1fr; }
  .zones-page-btn { width: 36px; height: 36px; font-size: 0.8rem; }

  .impact { grid-template-columns: 1fr; }
  .impact-image { min-height: 300px; }
  .impact-content { padding: 3rem 1.5rem; }
  .impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 340px;
    margin: 0 auto 2rem;
  }
  .impact-stat {
    flex: none;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }
  .impact-stat:nth-child(2n) { border-right: none; }
  .impact-stat:nth-child(n+3) { border-bottom: none; }
  .impact-stat:first-child { padding-left: 0; }
  .impact-stat:last-child { border-right: none; }
  .impact-stat-value { font-size: 1.92rem; }
  .impact-stat-label { font-size: 0.6rem; line-height: 1.25; }

  .actu-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .actu-split-item { padding: 1rem 1.25rem; }
  .actu-split-num { font-size: 1.4rem; min-width: 32px; }

  .newsletter-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .newsletter-perks { align-items: center; }
  .newsletter-perk { justify-content: center; }

  /* Footer mobile — Style A (grille 2x2) + bandeau contact style D */
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.25rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-col h4 { font-size: 0.65rem; margin-bottom: 0.65rem; }
  .footer-col li { margin-bottom: 0.45rem; }
  .footer-col a, .footer-col li { font-size: 0.78rem; }
  .footer-partners { display: none; }

  /* Bandeau contact horizontal avant copyright */
  .footer-contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
  }
  .footer-contact-bar .fct-item {
    display: flex; align-items: center; gap: 0.35rem;
  }
  .footer-contact-bar .fct-item svg { width: 13px; height: 13px; color: var(--accent-light); }
  .footer-contact-bar .fct-item a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
  .footer-contact-bar .fct-item a:hover { color: #fff; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .footer-bottom-link { display: none; }
}

@media (max-width: 480px) {
  .hero-content { padding: 8rem 1rem 1.5rem; }
  .hero-title { font-size: 2rem; margin-bottom: 1rem; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .hero-stats-bar { flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
  .hero-stat-sep { width: 32px; height: 1px; }
  .hero-buttons { flex-direction: column; gap: 0.6rem; }
  .hero-buttons .btn-hero-cta,
  .hero-buttons .btn-hero-ghost { width: 100%; }

  /* News bar mobile compact — carrousel */
  .hero-news-card { flex: 0 0 82%; }
  .hero-news-card .card-info h4 { font-size: 0.8rem; }
  .hero-news-card .card-date .day { font-size: 2.2rem; }
  .hero-news-label { padding: 0.6rem 0.8rem; min-width: auto; }
  .hero-news-label span { font-size: 0.9rem; }

  /* Mission compact */
  .mission-content { padding: 2rem 1.25rem; }
  .mission { margin-top: 0; padding-bottom: 1.5rem; }
  .core-values { padding-top: 1.5rem; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .value-card { border-right: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1rem 0.75rem; }
  .value-card:nth-child(2n) { border-right: none; }
  .value-card:last-child { border-bottom: none; }
  .value-card:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .value-card h3 { font-size: 0.85rem; }
  .value-card p { font-size: 0.75rem; }
}

/* ============================================
   PAGES LÉGALES
   ============================================ */

/* Header simplifié sombre */
.legal-header {
  background: var(--cacao-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.legal-header .logo {
  display: flex;
  align-items: center;
}
.legal-header .logo-name-svg {
  height: 20px;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s, gap 0.3s;
}
.legal-back-link:hover {
  color: #fff;
  gap: 0.7rem;
}
.legal-back-link svg {
  width: 15px;
  height: 15px;
}

/* Animation d'entrée au chargement */
.legal-header {
  animation: legalFadeDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes legalFadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Éléments hero animés séquentiellement */
.legal-hero-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-hero-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Divider animation : s'étend de 0 à 48px */
.legal-divider {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.legal-divider.visible {
  transform: scaleX(1);
}

/* Sections qui apparaissent au scroll */
.legal-section-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-section-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contenu principal */
.legal-page {
  background: var(--cacao-dark);
  color: #fff;
  min-height: 60vh;
  padding: 4rem 0 5rem;
}

.legal-container {
  max-width: 860px;
}

/* .label-tag.light already defined in Utility Classes — no duplicate needed */

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.019em;
  line-height: 1.2;
}

.legal-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 560px;
}

/* Séparateur sous le titre (dimensions — animation définie plus haut) */
.legal-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 3rem;
  /* transform-origin & scaleX animation handled above */
}

/* Sections de contenu */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}
.legal-content ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(230, 126, 34, 0.3);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.legal-content a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.legal-content strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.legal-updated {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* Footer Brand Partners link inside footer-copy */
.footer-copy a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-copy a:hover {
  color: rgba(255,255,255,0.7);
}

/* Responsive légal */
@media (max-width: 768px) {
  .legal-header-inner {
    height: 3.5rem;
  }
  .legal-page {
    padding: 3rem 0 3.5rem;
  }
  .legal-content h2 {
    margin: 2.5rem 0 1rem;
  }
}

/* ============================================
   PAGE CONTACT
   ============================================ */

/* Header sombre pour sous-pages (Contact, FAQ, Actualités) */
.header-subpage .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s ease,
              box-shadow 0.4s ease;
}
.header-subpage .header .header-inner {
  height: 4rem;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Quand scrolled sur sous-page — glassmorphism compact */
.header-subpage .header.scrolled {
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-subpage .header.scrolled .header-inner {
  height: 3.25rem;
}
.header-subpage .header.scrolled .logo-name-svg {
  height: 18px;
}
.header-subpage .header.scrolled .nav-link {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
}
.header-subpage .header.scrolled .header-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
}

/* Header vert (page Zones) — comme la page d'accueil */
.header-green .header {
  background: var(--forest-dark) !important;
}
.header-green .header.scrolled {
  background: rgba(20, 51, 38, 0.92) !important;
}

/* Hero contact (dark) */
.contact-hero {
  background: #1a1a1a;
  padding: 4rem 0 3.5rem;
}
.contact-hero-inner {
  max-width: 620px;
}

/* Section principale contact (light) */
.contact-section {
  background: var(--offwhite);
  padding: 5rem 0 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* Colonne infos */
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-block:first-child {
  padding-top: 0;
}
.contact-info-block:last-of-type {
  border-bottom: none;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 84, 0, 0.08);
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
}
.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cacao-dark);
  margin-bottom: 0.3rem;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.contact-info-text a {
  transition: color 0.3s;
}
.contact-info-text a:hover {
  color: var(--accent);
}

/* Réseaux sociaux contact */
.contact-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.contact-social-btn {
  width: 40px;
  height: 40px;
  background: var(--cacao-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.contact-social-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.contact-social-btn svg {
  width: 16px;
  height: 16px;
}

/* Formulaire */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cacao-dark);
  margin-bottom: 0.35rem;
}
.contact-form-sub {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cacao-dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #1a1a1a;
  background: var(--offwhite);
  border: 1px solid rgba(0,0,0,0.08);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.contact-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.contact-submit svg {
  width: 16px;
  height: 16px;
}

/* Animation contact */
.contact-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive contact */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 3rem 0 2.5rem;
  }
  .contact-section {
    padding: 3.5rem 0 4rem;
  }
  .contact-form {
    padding: 1.75rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Mini FAQ Split (Contact page) ---------- */
.cfaq1 {
  padding: 5rem 0;
  background: var(--cacao-dark);
}
.cfaq1-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.cfaq1-left-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.cfaq1-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cfaq1-item:last-child { border-bottom: none; }
.cfaq1-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
}
.cfaq1-btn h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: color 0.3s;
}
.cfaq1-btn:hover h3 { color: var(--accent-light); }
.cfaq1-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s, border-color 0.3s;
}
.cfaq1-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}
.cfaq1-item.open .cfaq1-icon {
  transform: rotate(45deg);
  border-color: var(--accent-light);
}
.cfaq1-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cfaq1-answer-inner {
  padding: 0 0 1.25rem;
}
.cfaq1-answer-inner p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.cfaq1-answer-inner a {
  color: var(--accent-light);
  text-decoration: underline;
}
/* CTA droite */
.cfaq1-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 320px;
}
.cfaq1-cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  margin-bottom: 1.5rem;
}
.cfaq1-cta-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.cfaq1-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cfaq1-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.cfaq1-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
}
.cfaq1-cta-link:hover {
  background: var(--accent-light);
  color: #fff;
}
.cfaq1-cta-link svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .cfaq1-grid { grid-template-columns: 1fr; }
  .cfaq1-cta { min-height: auto; padding: 2rem; }
}

/* ============================================
   PAGE FAQ
   ============================================ */

/* Hero FAQ (dark) */
.faq-hero {
  background: #1a1a1a;
  padding: 4rem 0 3.5rem;
}
.faq-hero-inner {
  max-width: 620px;
}

/* Section FAQ (light) */
.faq-section {
  background: var(--offwhite);
  padding: 5rem 0 6rem;
}

/* Catégories FAQ */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.faq-cat-btn {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
  color: #666;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s;
}
.faq-cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.faq-cat-btn.active {
  background: var(--cacao-dark);
  color: #fff;
  border-color: var(--cacao-dark);
}

/* Groupe de catégorie */
.faq-group {
  margin-bottom: 2.5rem;
  display: none;
}
.faq-group.active {
  display: block;
}
.faq-group-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

/* Items accordéon */
.faq-item {
  background: #fff;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
  user-select: none;
}
.faq-question:hover {
  background: rgba(0,0,0,0.01);
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cacao-dark);
  line-height: 1.4;
  flex: 1;
}
.faq-question-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.faq-question-icon svg {
  width: 14px;
  height: 14px;
  color: #999;
  transition: color 0.3s, transform 0.3s;
}
.faq-item.open .faq-question-icon {
  background: var(--accent);
}
.faq-item.open .faq-question-icon svg {
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
}
.faq-answer-inner p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.faq-answer-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}
.faq-answer-inner a:hover {
  color: var(--accent-dark);
}

/* CTA en bas de FAQ */
.faq-cta {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--cacao-dark);
  text-align: center;
}
.faq-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  transition: color 0.3s, gap 0.3s;
}
.faq-cta-link:hover {
  color: #fff;
  gap: 0.7rem;
}
.faq-cta-link svg {
  width: 14px;
  height: 14px;
}

/* Animation FAQ */
.faq-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-hero {
    padding: 3rem 0 2.5rem;
  }
  .faq-section {
    padding: 3.5rem 0 4rem;
  }
  .faq-question {
    padding: 1rem 1.25rem;
  }
  .faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
  }
  .faq-categories {
    gap: 0.35rem;
  }
  .faq-cat-btn {
    font-size: 0.6rem;
    padding: 0.5rem 0.9rem;
  }
}


/* ============================================
   ACTUALITÉS & MÉDIAS PAGE (P1 — Magazine)
   ============================================ */

/* Hero */
.ap1-hero {
  background: #1a1a1a;
  padding: 5rem 0 3rem;
  text-align: center;
}
.ap1-hero .label-tag {
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.ap1-hero h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.ap1-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.ap1-hero .legal-divider {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.ap1-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ap1-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap1-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ap1-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ap1-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  transform-origin: center;
  animation: ap1-divider-expand 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}
@keyframes ap1-divider-expand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Featured article */
.ap1-featured {
  background: var(--offwhite);
  padding: 4rem 0;
}
.ap1-featured-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.ap1-featured-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.ap1-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap1-featured-inner:hover .ap1-featured-img img {
  transform: scale(1.04);
}
.ap1-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.15));
}
.ap1-featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ap1-featured-content .ap1-tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  background: var(--accent);
  color: #fff;
  margin-bottom: 1rem;
}
.ap1-featured-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cacao-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.ap1-featured-content .ap1-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ap1-featured-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.ap1-featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ap1-featured-meta svg {
  width: 14px;
  height: 14px;
}

/* Main content grid */
.ap1-main {
  background: var(--offwhite);
  padding: 0 0 5rem;
}
.ap1-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
}

/* Article cards */
.ap1-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ap1-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.ap1-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ap1-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ap1-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap1-card:hover .ap1-card-img img {
  transform: scale(1.06);
}
.ap1-card-img .ap1-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(211,84,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.ap1-card:hover .ap1-play-overlay {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--accent);
}
.ap1-play-overlay svg {
  width: 20px;
  height: 20px;
}
.ap1-card-body {
  padding: 1.25rem;
}
.ap1-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.6rem;
  color: #fff;
}
.ap1-tag-video { background: var(--accent); }
.ap1-tag-event { background: var(--accent); }
.ap1-tag-report { background: var(--forest); }
.ap1-tag-press { background: var(--cacao); }
.ap1-tag-article { background: var(--cacao-light); }
.ap1-tag-enquete { background: var(--accent); }
.ap1-tag-podcast { background: var(--forest-dark); }

.ap1-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cacao-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.ap1-card-body .ap1-card-excerpt {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.ap1-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ap1-card-date {
  font-size: 0.75rem;
  color: #aaa;
}
.ap1-card-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: color 0.3s;
}
.ap1-card-link:hover {
  color: var(--accent-dark);
}

/* Sidebar */
.ap1-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 6rem;
  align-self: start;
}
.ap1-sidebar-block {
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.ap1-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cacao-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

/* Sidebar videos */
.ap1-sidebar-video {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.ap1-sidebar-video:last-child { margin-bottom: 0; }
.ap1-sidebar-video:hover { opacity: 0.8; }
.ap1-sidebar-video-thumb {
  position: relative;
  width: 80px;
  height: 54px;
  flex-shrink: 0;
  overflow: hidden;
}
.ap1-sidebar-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ap1-sidebar-video-thumb .ap1-mini-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(211,84,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ap1-mini-play svg {
  width: 10px;
  height: 10px;
}
.ap1-sidebar-video-info h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cacao-dark);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}
.ap1-sidebar-video-info span {
  font-size: 0.7rem;
  color: #999;
}

/* Sidebar video links (now <a> tags) */
a.ap1-sidebar-video {
  text-decoration: none;
  color: inherit;
}
/* Card title links */
.ap1-card-body h4 a,
.ap1-featured-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.ap1-card-body h4 a:hover,
.ap1-featured-title-link:hover h3 {
  color: var(--accent);
}
/* Featured image as link */
a.ap1-featured-img {
  display: block;
}

/* Sidebar categories */
.ap1-cat-list {
  list-style: none;
}
.ap1-cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}
.ap1-cat-list li:last-child { border-bottom: none; }
.ap1-cat-list li:hover { color: var(--accent); }
.ap1-cat-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--light-gray);
  padding: 0.2rem 0.5rem;
  color: #888;
}

/* Sidebar newsletter */
.ap1-sidebar-newsletter {
  background: #1a1a1a !important;
  color: #fff;
}
.ap1-sidebar-newsletter .ap1-sidebar-title {
  color: #fff;
}
.ap1-sidebar-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ap1-newsletter-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ap1-newsletter-input input {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}
.ap1-newsletter-input input::placeholder { color: rgba(255,255,255,0.35); }
.ap1-newsletter-input input:focus { border-color: var(--accent); }
.ap1-newsletter-input button {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.ap1-newsletter-input button:hover { background: var(--accent-dark); }

/* Search bar */
.ap1-search {
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}
.ap1-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.ap1-search-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.ap1-search-input::placeholder {
  color: rgba(255,255,255,0.35);
}
.ap1-search-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}

/* Pagination */
.ap1-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 0 0;
}
.ap1-page-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid var(--cacao);
  color: var(--cacao);
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap1-page-btn svg {
  width: 16px;
  height: 16px;
}
.ap1-bottom-inner .btn svg {
  width: 16px;
  height: 16px;
}
.ap1-page-btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ap1-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ap1-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ap1-page-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--cacao);
  cursor: pointer;
  transition: all 0.3s ease;
}
.ap1-page-num:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ap1-page-num.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ap1-page-dots {
  font-size: 0.9rem;
  color: #aaa;
  padding: 0 0.25rem;
  user-select: none;
}

/* Bottom banner */
.ap1-bottom-banner {
  background: #1a1a1a;
  padding: 3rem 0;
}
.ap1-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ap1-bottom-inner h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}
.ap1-bottom-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

/* Scroll reveal animation */
.ap1-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ap1-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Actualités */
@media (max-width: 1024px) {
  .ap1-layout { grid-template-columns: 1fr; }
  .ap1-sidebar { flex-direction: row; flex-wrap: wrap; position: static; }
  .ap1-sidebar-block { flex: 1; min-width: 260px; }
}
@media (max-width: 768px) {
  .ap1-featured-inner { grid-template-columns: 1fr; }
  .ap1-featured-img { min-height: 260px; }
  .ap1-cards-grid { grid-template-columns: 1fr; }
  .ap1-bottom-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .ap1-search { max-width: 100%; }
  .ap1-pagination { flex-wrap: wrap; gap: 0.75rem; }
  .ap1-page-btn { padding: 0.5rem 1rem; font-size: 0.65rem; }
  .ap1-page-num { width: 32px; height: 32px; font-size: 0.75rem; }
}


/* ============================================
   ZONES DE COUVERTURE PAGE (Carte interactive)
   ============================================ */

/* Hero */
.zp1-hero {
  background: var(--forest-dark);
  padding: 5rem 0 3rem;
  text-align: center;
}
.zp1-hero .legal-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.zp1-hero .legal-divider {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

/* Map Section */
.zp1-map-section {
  background: var(--offwhite);
  padding: 5rem 0 6rem;
}
.zp1-map-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* SVG Map Container */
.zp1-map-container {
  background: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.zp1-map {
  width: 100%;
  height: auto;
}

/* Country outline */
.zp1-country-outline {
  fill: #e9e9e9;
  stroke: #ccc;
  stroke-width: 1.5;
}

/* Region clickable areas */
.zp1-region {
  cursor: pointer;
  outline: none;
}
.zp1-region-fill {
  fill: var(--forest);
  fill-opacity: 0.3;
  stroke: var(--forest);
  stroke-width: 1.5;
  transition: fill-opacity 0.3s, fill 0.3s, stroke 0.3s;
}
.zp1-region-marker {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 2;
  transition: r 0.3s ease, fill 0.3s;
}
.zp1-region-label {
  font-family: var(--font-heading);
  font-size: 10px;
  fill: var(--forest-dark);
  font-weight: 700;
  text-anchor: middle;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hover */
.zp1-region:hover .zp1-region-fill,
.zp1-region:focus .zp1-region-fill {
  fill-opacity: 0.55;
  fill: var(--forest-light);
}
.zp1-region:hover .zp1-region-marker {
  r: 8;
}

/* Active/selected */
.zp1-region.active .zp1-region-fill {
  fill: var(--accent);
  fill-opacity: 0.45;
  stroke: var(--accent);
  stroke-width: 2;
}
.zp1-region.active .zp1-region-marker {
  fill: var(--accent);
  r: 9;
  animation: zp1-pulse 1.5s infinite;
}
.zp1-region.active .zp1-region-label {
  fill: var(--accent-dark);
}

/* Dim non-active regions */
.zp1-map.has-active .zp1-region:not(.active) .zp1-region-fill {
  fill-opacity: 0.1;
}
.zp1-map.has-active .zp1-region:not(.active) .zp1-region-label {
  opacity: 0.35;
}
.zp1-map.has-active .zp1-region:not(.active) .zp1-region-marker {
  opacity: 0.35;
}

@keyframes zp1-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Neighbor country labels */
.zp1-neighbor-label {
  font-family: var(--font-heading);
  font-size: 9px;
  fill: #aaa;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-anchor: middle;
}
.zp1-ocean-label {
  font-size: 8px;
  letter-spacing: 0.35em;
  fill: #8fb5a3;
}

/* Region pulse ring */
.zp1-region-pulse {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 0;
  animation: zp1-ring-pulse 2.5s ease-out infinite;
}
@keyframes zp1-ring-pulse {
  0% { r: 7; opacity: 0.6; }
  100% { r: 22; opacity: 0; }
}
.zp1-map.has-active .zp1-region:not(.active) .zp1-region-pulse {
  animation: none;
  opacity: 0;
}

/* Capital markers */
.zp1-capital-dot {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 2;
}
.zp1-capital-political {
  fill: var(--accent-light);
}
.zp1-capital-label {
  font-family: var(--font-heading);
  font-size: 9px;
  fill: #666;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.zp1-capital-sub {
  font-family: var(--font-body);
  font-size: 7px;
  fill: #999;
  font-style: italic;
}

/* Detail Panel */
.zp1-detail-panel {
  background: #fff;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  position: sticky;
  top: 5rem;
  overflow: hidden;
}

/* Default state — Bold typographic design */
.zp1-detail-default {
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 480px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Giant background number */
.zp1-default-bg-number {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-heading);
  font-size: 18rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(30,30,30,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Top eyebrow + accent line */
.zp1-default-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  margin-bottom: 2rem;
}
.zp1-default-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.zp1-default-accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* Hero text — display style */
.zp1-default-hero-text {
  z-index: 1;
  margin-bottom: 1.25rem;
}
.zp1-default-big {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--cacao-dark);
  letter-spacing: -0.03em;
}
.zp1-default-thin {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.02em;
}

/* Body text */
.zp1-default-body {
  z-index: 1;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

/* CTA hint at bottom */
.zp1-default-cta {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  width: 100%;
}
.zp1-default-cta-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: zp1-cta-pulse 2s ease-in-out infinite;
}
.zp1-default-cta span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cacao-dark);
  letter-spacing: 0.02em;
}
@keyframes zp1-cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(211,84,0,0.1); }
}

/* Legend */
.zp1-legend {
  z-index: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(27,67,50,0.04) 0%, rgba(27,67,50,0.01) 100%);
  border-left: 2px solid var(--forest);
  width: 100%;
}
.zp1-legend-title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.zp1-legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: #777;
  font-weight: 500;
}
.zp1-legend-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.zp1-legend-region {
  background: var(--forest);
  opacity: 0.5;
}
.zp1-legend-marker {
  background: var(--accent);
  border-radius: 50%;
}
.zp1-legend-city {
  background: var(--accent-light);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--accent-light);
}

/* Hint */
.zp1-detail-hint {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  animation: zp1-hint-bounce 2s ease-in-out infinite;
}
@keyframes zp1-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Active state — Rich detail panel */
.zp1-detail-active {
  position: relative;
  animation: zp1-slideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes zp1-slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.zp1-detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.zp1-detail-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Image header with overlay */
.zp1-active-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.zp1-active-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(20,51,38,0.85) 100%);
  z-index: 1;
}
.zp1-active-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  z-index: 2;
}
.zp1-active-region-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(211,84,0,0.15);
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.6rem;
  backdrop-filter: blur(4px);
}
.zp1-active-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.zp1-active-capital {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  font-weight: 400;
}
.zp1-active-capital::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* Body content */
.zp1-active-body {
  padding: 1.5rem 2rem 2rem;
}
.zp1-active-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Stats grid 2x2 */
.zp1-active-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.zp1-active-stat-item {
  background: #fff;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.zp1-active-stat-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cacao-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.zp1-active-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
}

/* Highlight stat */
.zp1-active-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--forest-dark);
}
.zp1-active-highlight-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}
.zp1-active-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.zp1-active-highlight-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.zp1-active-highlight-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Stats Banner */
.zp1-stats {
  background: var(--forest-dark);
  padding: 3.5rem 0;
}
.zp1-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.zp1-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.zp1-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  transition: transform 0.3s;
}
.zp1-stat-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* All Zones Grid */
.zp1-all-zones {
  background: #fff;
  padding: 6rem 0;
}
.zp1-zones-header {
  margin-bottom: 3rem;
}

/* Table head */
.zp1-table-head {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 0;
  padding: 0 1.25rem;
  margin-bottom: 0.5rem;
}
.zp1-th {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Table body */
.zp1-table-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Table row */
.zp1-table-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
  gap: 0;
  padding: 1.1rem 1.25rem;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.2s;
  cursor: default;
}
.zp1-table-row:hover {
  background: rgba(27,67,50,0.03);
}

/* Region cell (image + name) */
.zp1-tr-region {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.zp1-tr-index {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(27,67,50,0.12);
  width: 36px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.zp1-tr-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.zp1-tr-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cacao-dark);
  line-height: 1.2;
}
.zp1-tr-sub {
  font-size: 0.68rem;
  color: #aaa;
  font-weight: 500;
}

/* Standard cell */
.zp1-tr-cell {
  font-size: 0.82rem;
  color: #666;
  font-weight: 500;
}
.zp1-tr-bold {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest);
}
.zp1-tr-highlight {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.zp1-tr-mobile-label {
  display: none;
}

/* Row hover image preview — cursor-tracking (positioned via JS) */
.zp1-tr-preview {
  display: none;
}
.zp1-cursor-preview {
  position: fixed;
  width: 220px;
  height: 140px;
  pointer-events: none;
  opacity: 0;
  scale: 0.8;
  z-index: 9999;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.10);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), scale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.zp1-cursor-preview.visible {
  opacity: 1;
  scale: 1;
}
.zp1-cursor-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Table row slide-in animation */
.zp1-table-row.zp1-anim {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.zp1-table-row.zp1-anim.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hidden rows (show-more collapse) */
.zp1-table-row.zp1-row-hidden {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  overflow: hidden;
  transform: translateX(-24px);
  transition: opacity 0.45s ease, max-height 0.45s ease, padding 0.45s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1), border-bottom-color 0.3s ease;
}
.zp1-table-row.zp1-row-hidden.visible {
  /* JS removes .zp1-row-hidden, so this is a fallback transition target */
}

/* "Voir plus" button wrapper */
.zp1-show-more-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0 0.5rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.zp1-show-more-wrap.zp1-show-more-hide {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.zp1-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary, #1B4332);
  background: transparent;
  border: 1.5px solid rgba(27,67,50,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.zp1-show-more-btn:hover {
  background: rgba(27,67,50,0.05);
  border-color: rgba(27,67,50,0.3);
  transform: translateY(-1px);
}
.zp1-show-more-btn svg {
  transition: transform 0.3s ease;
}
.zp1-show-more-btn:hover svg {
  transform: translateY(2px);
}

/* Stats number countUp animation helper (merged with base .zp1-stat-number above) */
.zp1-stat-item.zp1-anim.visible .zp1-stat-number {
  animation: zp1-stat-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes zp1-stat-pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

/* Bottom Banner */
.zp1-bottom-banner {
  background: #1a1a1a;
  padding: 3rem 0;
}
.zp1-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zp1-bottom-inner h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}
.zp1-bottom-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

/* Scroll reveal */
.zp1-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.zp1-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ZONE DETAIL PAGE
   ============================================ */

/* Hero */
.zone-detail-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-dark);
}
.zone-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.zone-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,51,38,0.95) 0%, rgba(20,51,38,0.4) 50%, rgba(20,51,38,0.2) 100%);
}
.zone-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.zone-detail-hero .breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.zone-detail-hero .breadcrumb-list li { color: rgba(255,255,255,0.5); }
.zone-detail-hero .breadcrumb-list a { color: rgba(255,255,255,0.7); text-decoration: none; }
.zone-detail-hero .breadcrumb-list a:hover { color: #fff; }
.zone-detail-hero .breadcrumb-list li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: rgba(255,255,255,0.3);
}

/* Zone animation class */
.zone-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zone-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats section */
.zone-detail-stats {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
  margin-top: -1px;
}
.zone-stats-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.zone-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem 1.5rem;
  background: var(--offwhite);
  border-radius: 0;
  min-width: 140px;
  text-align: center;
}
.zone-stat-icon {
  width: 24px;
  height: 24px;
  color: var(--forest-light);
  margin-bottom: 0.3rem;
}
.zone-stat-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-dark);
}
.zone-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}
.zone-stat-highlight {
  background: var(--forest-dark);
}
.zone-stat-highlight .zone-stat-icon,
.zone-stat-highlight .zone-stat-value {
  color: #fff;
}
.zone-stat-highlight .zone-stat-label {
  color: rgba(255,255,255,0.6);
}

/* Content section */
.zone-detail-content {
  padding: 3rem 0;
}
.zone-detail-content > .container {
  padding-left: 8rem;
}
.zone-content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.zone-content-main {
  min-height: 200px;
}
.zone-content-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  background: var(--offwhite);
}

/* Rich content */
.zone-rich-content {
  line-height: 1.8;
  color: #333;
}
.zone-rich-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 2rem 0 1rem;
}
.zone-rich-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin: 1.5rem 0 0.75rem;
}
.zone-rich-content p {
  margin-bottom: 1rem;
}
.zone-rich-content ul, .zone-rich-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.zone-rich-content li {
  margin-bottom: 0.5rem;
}
.zone-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  margin: 1.5rem 0;
}
.zone-rich-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--offwhite);
  font-style: italic;
  color: #555;
}

/* Zone Articles Section — Design Liste Horizontale */
.zone-articles-section {
  margin-top: 2.5rem;
}
.zone-articles-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 3px solid var(--accent);
}
.zone-articles-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.zone-article-card {
  display: flex;
  gap: 1.2rem;
  background: var(--offwhite);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.zone-article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.zone-article-img {
  width: 210px;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #e8e8e8;
  flex-shrink: 0;
}
.zone-article-body {
  padding: 1rem 1.2rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
}
.zone-article-tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest-light);
  border: 1.5px solid var(--forest-light);
  background: transparent;
  padding: 0.15rem 0.55rem;
}
.zone-article-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--forest-dark);
  margin: 0;
}
.zone-article-excerpt {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}
.zone-article-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
}
.zone-article-date::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .zone-article-card {
    flex-direction: column;
    gap: 0;
  }
  .zone-article-img {
    width: 100%;
    min-height: 180px;
  }
  .zone-article-body {
    padding: 1rem;
  }
}

/* Sidebar */
.zone-content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.zone-sidebar-card {
  background: var(--offwhite);
  padding: 1.5rem;
}
.zone-sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.zone-sidebar-list {
  list-style: none;
  padding: 0;
}
.zone-sidebar-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.85rem;
  color: #555;
}
.zone-sidebar-list li:last-child {
  border-bottom: none;
}
.zone-sidebar-list li strong {
  color: var(--forest-dark);
}
.zone-sidebar-list li a {
  display: block;
  padding: 0.4rem 0;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s;
}
.zone-sidebar-list li a:hover {
  color: var(--accent);
}
.zone-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* Zone detail responsive */
@media (max-width: 900px) {
  .zone-detail-hero { min-height: 300px; }
  .zone-detail-content > .container { padding-left: 2rem; }
  .zone-stats-grid { gap: 0.75rem; }
  .zone-stat-card { min-width: 100px; padding: 0.8rem 1rem; }
  .zone-stat-value { font-size: 1.1rem; }
  .zone-content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .zone-content-sidebar {
    order: -1;
  }
}
@media (max-width: 480px) {
  .zone-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .zone-stat-highlight {
    grid-column: 1 / -1;
  }
}

/* Responsive Zones */
@media (max-width: 1024px) {
  .zp1-map-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .zp1-detail-panel {
    position: static;
    min-height: auto;
  }
  .zp1-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zp1-table-head {
    display: none;
  }
  .zp1-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .zp1-cursor-preview {
    display: none !important;
  }
  .zp1-tr-region {
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
  }
  .zp1-tr-mobile-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bbb;
    margin-bottom: 0.15rem;
  }
}
@media (max-width: 768px) {
  .zp1-hero {
    padding: 3.5rem 0 2rem;
  }
  .zp1-map-section {
    padding: 3rem 0 4rem;
  }
  .zp1-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .zp1-default-big,
  .zp1-default-thin {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .zp1-stats-grid {
    grid-template-columns: 1fr;
  }
  .zp1-map-container {
    padding: 1rem;
  }
  .zp1-table-row {
    grid-template-columns: 1fr;
  }
  .zp1-active-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .zp1-detail-default {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  .zp1-detail-panel {
    min-height: auto;
  }
}

/* ============================================
   MS1 — MISSION PAGE
   ============================================ */

/* --- Hero (image background) --- */
.ms1-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ms1-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.ms1-hero:hover .ms1-hero-bg { transform: scale(1); }
.ms1-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,51,38,0.60) 0%,
    rgba(20,51,38,0.50) 40%,
    rgba(20,51,38,0.65) 100%
  );
}
.ms1-hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
}
.ms1-hero .legal-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.ms1-hero .legal-divider {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}
.ms1-hero .legal-title em {
  color: var(--accent-light);
  font-style: normal;
}

/* --- Engagement Section — Texte centré avec guillemets --- */
.ms1-engagement {
  padding: 5rem 0;
  background: #fff;
}
.ms1-engage-block {
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}
.ms1-engage-block .label-tag {
  margin-bottom: 1.5rem;
}
.ms1-engage-quoted {
  position: relative;
  padding: 0 2rem;
}
.ms1-guillemet {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  user-select: none;
}
.ms1-guillemet-open {
  text-align: left;
  margin-bottom: -0.5rem;
}
.ms1-guillemet-close {
  text-align: right;
  margin-top: -0.5rem;
}
.ms1-engage-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.ms1-engage-headline em {
  color: var(--forest);
  font-style: normal;
}
.ms1-engage-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}
.ms1-engage-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: nowrap;
}
.ms1-engage-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.ms1-engage-stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
}
.ms1-engage-stat-val.counted {
  animation: ms1-num-pop 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes ms1-num-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.ms1-engage-stat-lbl {
  font-size: 0.82rem;
  color: #888;
  white-space: nowrap;
  line-height: 1.4;
}
/* Values row under the intro */
.ms1-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ms1-val-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.ms1-val-item:last-child {
  border-right: none;
}
.ms1-val-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ms1-val-item.visible::before {
  transform: scaleX(1);
}
.ms1-val-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.ms1-val-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 1rem;
}
.ms1-val-icon i,
.ms1-val-icon svg {
  width: 24px;
  height: 24px;
}
.ms1-val-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}
.ms1-val-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.65;
}

/* --- Impact Stats (redesign) --- */
.ms1-impact {
  background: var(--forest-dark);
  padding: 5.5rem 0;
}
.ms1-impact-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.ms1-impact-left {
  flex: 1;
}
.ms1-impact-left .label-tag {
  margin-bottom: 1rem;
}
.ms1-impact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.ms1-impact-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.ms1-impact-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.ms1-impact-stat {
  background: var(--forest-dark);
  padding: 2.5rem 2rem;
  text-align: center;
}
.ms1-impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}
.ms1-impact-number-plus {
  color: var(--accent-light);
}
.ms1-impact-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* --- Timeline --- */
.ms1-timeline {
  background: var(--offwhite);
  padding: 5rem 0;
}
.ms1-timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ms1-timeline-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.ms1-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(27,67,50,0.12);
  transform: translateX(-50%);
}
.ms1-timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 2.5rem;
  width: 50%;
}
.ms1-timeline-item:nth-child(even) {
  margin-left: auto;
  padding-left: 2.5rem;
}
.ms1-timeline-item:nth-child(odd) {
  padding-right: 2.5rem;
  text-align: right;
  justify-content: flex-end;
}
.ms1-timeline-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid var(--offwhite);
  box-shadow: 0 0 0 2px var(--accent);
  top: 0.25rem;
}
.ms1-timeline-item:nth-child(even) .ms1-timeline-dot {
  left: -7px;
}
.ms1-timeline-item:nth-child(odd) .ms1-timeline-dot {
  right: -7px;
}
.ms1-timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(211,84,0,0.08);
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.5rem;
}
.ms1-timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}
.ms1-timeline-content p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* --- Quote --- */
.ms1-quote {
  background: var(--cacao-dark);
  padding: 5rem 0;
}
.ms1-quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ms1-quote-icon {
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.ms1-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}
.ms1-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ms1-quote-avatar {
  width: 52px;
  height: 52px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
}
.ms1-quote-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.ms1-quote-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* --- CTA (forest) --- */
.ms1-cta {
  background: var(--forest);
  padding: 4rem 0;
}
.ms1-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ms1-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.ms1-cta-inner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
}

/* --- Footer green --- */
.footer-green {
  background: var(--forest-dark);
}

/* --- MS1 Animations --- */
.ms1-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ms1-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.ms1-val-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ms1-val-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- MS1 Responsive --- */
@media (max-width: 1024px) {
  .ms1-values-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .ms1-val-item:nth-child(2) {
    border-right: none;
  }
  .ms1-impact-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .ms1-hero {
    min-height: 380px;
  }
  .ms1-hero-content {
    padding: 5rem 0 3rem;
  }
  .ms1-engage-quoted {
    padding: 0;
  }
  .ms1-engage-stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .ms1-values-row {
    grid-template-columns: 1fr;
  }
  .ms1-val-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 2rem;
  }
  .ms1-val-item:last-child {
    border-bottom: none;
  }
  .ms1-engage-stats-row {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }
  .ms1-impact-right {
    grid-template-columns: 1fr;
  }
  .ms1-timeline-line {
    left: 20px;
  }
  .ms1-timeline-item {
    width: 100%;
    padding-left: 3rem !important;
    padding-right: 0 !important;
    text-align: left !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }
  .ms1-timeline-dot {
    left: 13px !important;
    right: auto !important;
  }
  .ms1-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .ms1-hero {
    min-height: 300px;
  }
  .ms1-hero-content {
    padding: 4rem 0 2rem;
  }
  .ms1-impact-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .ms1-impact-right {
    grid-template-columns: 1fr;
  }
  .ms1-timeline-item {
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   BX1 — BUREAU EXÉCUTIF PAGE
   ============================================ */

/* --- Hero --- */
.bx1-hero {
  background: #1a1a1a;
  padding: 5rem 0 3rem;
  text-align: center;
}
.bx1-hero .legal-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.bx1-hero .legal-divider {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

/* --- President Highlight --- */
.bx1-president {
  padding: 5rem 0;
  background: #fff;
}
.bx1-president-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
}
.bx1-president-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.bx1-president-info .label-tag {
  margin-bottom: 0.75rem;
}
.bx1-president-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
.bx1-president-role {
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.bx1-president-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.bx1-president-quote {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: #888;
  line-height: 1.7;
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
}

/* --- Vice-Présidents --- */
.bx1-vps {
  padding: 5rem 0;
  background: var(--offwhite);
}
.bx1-vps-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bx1-vps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.bx1-vp-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.bx1-vp-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.bx1-vp-info {
  padding: 1.25rem;
}
.bx1-vp-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}
.bx1-vp-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.bx1-vp-detail {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

/* --- Members Table (Secrétariat + Trésorerie) --- */
.bx1-members {
  padding: 5rem 0;
  background: #fff;
}
.bx1-members-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bx1-member-row {
  display: grid;
  grid-template-columns: 56px 1fr 1.5fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bx1-member-row:last-child {
  border-bottom: none;
}
.bx1-member-photo {
  width: 56px;
  height: 56px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.bx1-member-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bx1-member-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}
.bx1-member-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.bx1-member-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* --- Commissions --- */
.bx1-commissions {
  padding: 5rem 0;
  background: var(--offwhite);
}
.bx1-commissions-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bx1-commissions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.bx1-com-card {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
  align-items: flex-start;
}
.bx1-com-photo {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.bx1-com-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.15rem;
}
.bx1-com-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.bx1-com-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.55;
}

/* --- Organigramme --- */
.bx1-organigramme {
  background: var(--forest-dark);
  padding: 5rem 0;
}
.bx1-org-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bx1-org-tree {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bx1-org-level {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bx1-org-connector {
  display: none;
}
.bx1-org-level.bx1-org-l2,
.bx1-org-level.bx1-org-l3 {
  margin-top: 28px;
}
.bx1-org-node {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 140px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.bx1-org-node::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transform-origin: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.bx1-org-node:hover {
  transform: translateY(-6px) scale(1.06);
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(211, 84, 0, 0.35), 0 0 0 1px rgba(211, 84, 0, 0.2);
}
.bx1-org-node:hover::before {
  opacity: 1;
  transform: scale(2.5) rotate(0deg);
}
.bx1-org-node .bx1-org-node-role,
.bx1-org-node .bx1-org-node-name {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bx1-org-node:hover .bx1-org-node-role {
  color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}
.bx1-org-node:hover .bx1-org-node-name {
  color: #fff;
  transform: translateY(-1px);
}
/* Présidente — déjà orange, hover plus intense */
.bx1-org-president {
  background: var(--accent);
  border-color: var(--accent);
}
.bx1-org-president::before {
  background: linear-gradient(135deg, #b5360a, var(--accent));
}
.bx1-org-president:hover {
  box-shadow: 0 14px 50px rgba(211, 84, 0, 0.5), 0 0 30px rgba(211, 84, 0, 0.2);
  transform: translateY(-8px) scale(1.08);
}
.bx1-org-node-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.15rem;
}
.bx1-org-president .bx1-org-node-role {
  color: rgba(255,255,255,0.9);
}
.bx1-org-node-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/* --- Contrôle --- */
.bx1-controle {
  padding: 5rem 0;
  background: var(--offwhite);
}
.bx1-controle-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bx1-controle-sub {
  font-size: 0.95rem;
  color: #777;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}
.bx1-controle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.bx1-ctrl-card {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  align-items: flex-start;
}
.bx1-ctrl-photo {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.bx1-ctrl-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.15rem;
}
.bx1-ctrl-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.bx1-ctrl-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.55;
}

/* --- CTA --- */
.bx1-cta {
  background: #1a1a1a;
  padding: 4rem 0;
}
.bx1-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.bx1-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.bx1-cta-inner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
}

/* --- BX1 Animations --- */
.bx1-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.bx1-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BX1 Responsive --- */
@media (max-width: 1024px) {
  .bx1-president-grid {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
  .bx1-vps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .bx1-hero {
    padding: 3.5rem 0 2rem;
  }
  .bx1-president-grid {
    grid-template-columns: 1fr;
  }
  .bx1-president-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .bx1-vps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bx1-member-row {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }
  .bx1-member-desc {
    grid-column: 1 / -1;
  }
  .bx1-commissions-grid {
    grid-template-columns: 1fr;
  }
  .bx1-controle-grid {
    grid-template-columns: 1fr;
  }
  .bx1-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .bx1-org-node {
    min-width: 110px;
    padding: 0.6rem 0.75rem;
  }
  .bx1-org-node-name {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .bx1-vps-grid {
    grid-template-columns: 1fr;
  }
  .bx1-member-photo {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   ST1 — STATUTS & RÈGLEMENT PAGE
   ============================================ */

/* --- Hero --- */
.st1-hero {
  background: var(--cacao-dark);
  padding: 5rem 0 3rem;
  text-align: center;
}
.st1-hero .legal-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.st1-hero .legal-divider {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

/* --- Visual Pillars --- */
.st1-pillars {
  padding: 5rem 0;
  background: var(--offwhite);
}
.st1-pillars-header {
  text-align: center;
  margin-bottom: 3rem;
}
.st1-pillars-header .section-desc {
  font-size: 0.95rem;
  color: #777;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}
.st1-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.st1-pillar {
  background: #fff;
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--accent);
  position: relative;
}
.st1-pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211,84,0,0.06);
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.st1-pillar-icon i,
.st1-pillar-icon svg {
  width: 22px;
  height: 22px;
}
.st1-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.65rem;
}
.st1-pillar-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.st1-pillar-ref {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.7;
}

/* --- Download CTA --- */
.st1-download {
  background: var(--cacao-dark);
  padding: 3.5rem 0;
}
.st1-download-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.st1-download-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  flex-shrink: 0;
}
.st1-download-text {
  flex: 1;
}
.st1-download-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.st1-download-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* --- Document Accordion --- */
.st1-document {
  padding: 5rem 0;
  background: #fff;
}
.st1-doc-header {
  text-align: center;
  margin-bottom: 3rem;
}
.st1-doc-header .section-desc {
  font-size: 0.95rem;
  color: #777;
  margin-top: 0.5rem;
}
.st1-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.st1-accord-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.st1-accord-item:last-child {
  border-bottom: none;
}
.st1-accord-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.3s;
}
.st1-accord-header:hover {
  color: var(--accent);
}
.st1-accord-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.st1-accord-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(211,84,0,0.06);
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.st1-accord-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.st1-accord-icon {
  color: #bbb;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.st1-accord-item.open .st1-accord-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.st1-accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.st1-accord-body-inner {
  padding: 0 0 1.5rem 0;
}
.st1-article {
  margin-bottom: 1.25rem;
}
.st1-article:last-child {
  margin-bottom: 0;
}
.st1-article h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cacao);
  margin-bottom: 0.35rem;
}
.st1-article p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

/* --- CTA --- */
.st1-cta {
  background: #1a1a1a;
  padding: 4rem 0;
}
.st1-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.st1-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.st1-cta-inner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
}

/* --- ST1 Animations --- */
.st1-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.st1-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.st1-pillar.st1-anim {
  transform: translateY(32px);
}

/* --- ST1 Responsive --- */
@media (max-width: 1024px) {
  .st1-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .st1-hero {
    padding: 5rem 0 3rem;
  }
  .st1-pillars-grid {
    grid-template-columns: 1fr;
  }
  .st1-download-inner {
    flex-direction: column;
    text-align: center;
  }
  .st1-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .st1-accord-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
@media (max-width: 480px) {
  .st1-accord-title {
    font-size: 0.95rem;
  }
}


/* ============================================
   ARTICLE DETAIL PAGE — ar1-*
   ============================================ */

/* ---------- Reading Progress Bar ---------- */
.ar1-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---------- Scroll Reveal ---------- */
.ar1-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.ar1-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero — Editorial Split ---------- */
.ar1-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  margin-top: -4rem;
}
.ar1-hero-text {
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem max(2rem, calc((100vw - 1280px) / 2 + 2rem));
}
.ar1-hero-text-inner {
  max-width: 600px;
  padding: 0 2rem 0 0;
}
.ar1-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.3s ease;
}
.ar1-back:hover {
  color: var(--accent);
}
.ar1-back svg {
  width: 14px;
  height: 14px;
}
.ar1-hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fff;
  background: var(--accent);
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.ar1-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 0;
}
.ar1-hero-accent {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 2rem 0;
}
.ar1-hero-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.ar1-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ar1-hero-meta svg {
  width: 13px;
  height: 13px;
  margin-right: 0.25rem;
  vertical-align: -2px;
}
.ar1-meta-dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}
.ar1-hero-img {
  position: relative;
  overflow: hidden;
}
.ar1-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ar1-hero-img:hover img {
  transform: scale(1.04);
}

/* ---------- Article Layout ---------- */
.ar1-article {
  background: #fff;
  padding: 5rem 0 4rem;
}
.ar1-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}
.ar1-content {
  max-width: 720px;
  min-width: 0;
}

/* ---------- Lead / Drop Cap ---------- */
.ar1-lead {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.85;
  color: #333;
  margin-bottom: 3rem;
}
.ar1-lead::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.82;
  color: var(--accent);
  margin-right: 0.12em;
  margin-top: 0.06em;
}

/* ---------- Body Text ---------- */
.ar1-body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.75rem;
}

/* ---------- Headings ---------- */
.ar1-heading-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.019em;
  line-height: 1.2;
  color: var(--cacao-dark);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--accent);
}
.ar1-heading-h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cacao-dark);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

/* ---------- Pull Quote (Full-bleed left only — JS-driven offset) ---------- */
.ar1-pullquote {
  position: relative;
  background: var(--forest-dark);
  padding: 5rem 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  /* margin-left & width set by JS for precise left-bleed */
}
.ar1-pullquote-inner {
  max-width: 700px;
  margin: 0 auto;
}
.ar1-pullquote-bar {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}
.ar1-pullquote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
}
.ar1-pullquote cite {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  font-style: normal;
}

/* ---------- Full-width Image ---------- */
.ar1-image-full {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.ar1-image-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.ar1-image-full figcaption,
.ar1-image-float figcaption,
.ar1-gallery figcaption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  color: #999;
  margin-top: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--accent);
  line-height: 1.5;
}

/* ---------- Gallery (2 columns) ---------- */
.ar1-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.ar1-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.ar1-gallery figure:hover img {
  transform: scale(1.03);
}
.ar1-gallery figure {
  overflow: hidden;
}

/* ---------- Image Float ---------- */
.ar1-image-float {
  float: right;
  width: 45%;
  margin: 0.5rem 0 1.75rem 2rem;
}
.ar1-image-float img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---------- Stats Row ---------- */
.ar1-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
  margin: 2rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}
.ar1-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.019em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ar1-stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
}

/* ---------- Video Embed ---------- */
.ar1-video {
  margin: 2.5rem 0;
}
.ar1-video-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.ar1-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.ar1-video-caption {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ar1-video-caption svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ---------- Audio / Podcast ---------- */
.ar1-audio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--offwhite);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  margin: 2.5rem 0;
}
.ar1-audio-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ar1-audio-icon svg {
  width: 24px;
  height: 24px;
}
.ar1-audio-info {
  flex: 1;
  min-width: 0;
}
.ar1-audio-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.ar1-audio-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cacao-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ar1-audio-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1rem;
}
.ar1-audio-duration svg {
  width: 12px;
  height: 12px;
}
.ar1-audio audio {
  width: 100%;
  height: 36px;
  accent-color: var(--accent);
}

/* ---------- Callout Boxes ---------- */
.ar1-callout {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  border-left: 4px solid;
}
.ar1-callout--info {
  border-color: var(--forest);
  background: rgba(27, 67, 50, 0.04);
}
.ar1-callout--warning {
  border-color: var(--accent);
  background: rgba(211, 84, 0, 0.04);
}
.ar1-callout--key {
  border-color: var(--cacao-dark);
  background: rgba(62, 39, 35, 0.04);
}
.ar1-callout-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ar1-callout-icon svg {
  width: 20px;
  height: 20px;
}
.ar1-callout--info .ar1-callout-icon { color: var(--forest); }
.ar1-callout--warning .ar1-callout-icon { color: var(--accent); }
.ar1-callout--key .ar1-callout-icon { color: var(--cacao-dark); }
.ar1-callout-body strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.ar1-callout-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

/* ---------- Lists ---------- */
.ar1-list-ol,
.ar1-list-ul {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
}
.ar1-list-ol li,
.ar1-list-ul li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}
.ar1-list-ol {
  counter-reset: ar1-list;
  list-style: none;
  padding-left: 0;
}
.ar1-list-ol li {
  counter-increment: ar1-list;
  padding-left: 2.5rem;
  position: relative;
}
.ar1-list-ol li::before {
  content: counter(ar1-list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.ar1-list-ul {
  list-style: none;
}
.ar1-list-ul li {
  position: relative;
  padding-left: 1.5rem;
}
.ar1-list-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

/* ---------- Data Table ---------- */
.ar1-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ar1-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.ar1-table thead {
  background: var(--forest-dark);
}
.ar1-table th {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}
.ar1-table td {
  padding: 0.875rem 1.25rem;
  color: #444;
  border-bottom: 1px solid #eee;
}
.ar1-table tbody tr:nth-child(even) {
  background: var(--offwhite);
}
.ar1-table tbody tr:hover {
  background: rgba(211, 84, 0, 0.04);
}

/* ---------- Download Box ---------- */
.ar1-download {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #1a1a1a;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
}
.ar1-download-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.ar1-download-icon svg {
  width: 24px;
  height: 24px;
}
.ar1-download-info {
  flex: 1;
}
.ar1-download-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.ar1-download-info span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.ar1-download .btn {
  flex-shrink: 0;
}

/* ---------- Blockquote ---------- */
.ar1-blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 2.5rem;
  border-left: none;
}
.ar1-blockquote::before {
  content: "\201C";
  position: absolute;
  left: -0.15rem;
  top: -0.5rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}
.ar1-blockquote p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.75rem;
}
.ar1-blockquote footer {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cacao-dark);
}

/* ---------- Highlight / Definition ---------- */
.ar1-highlight {
  background: var(--offwhite);
  border: 1px solid #e0e0e0;
  padding: 2rem;
  margin: 2.5rem 0;
}
.ar1-highlight-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.ar1-highlight h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cacao-dark);
  margin-bottom: 0.75rem;
}
.ar1-highlight p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
}

/* ---------- Sidebar ---------- */
.ar1-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.ar1-sidebar-block {
  margin-bottom: 2.5rem;
}
.ar1-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cacao-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

/* TOC */
.ar1-toc-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #888;
  text-decoration: none;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 2px solid #e0e0e0;
  transition: color 0.3s ease, border-color 0.3s ease;
  line-height: 1.4;
}
.ar1-toc-link:hover {
  color: var(--cacao-dark);
}
.ar1-toc-link.active {
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 500;
}

/* Share buttons */
.ar1-share-btns {
  display: flex;
  gap: 0.6rem;
}
.ar1-share-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ar1-share-btn svg {
  width: 16px;
  height: 16px;
}
.ar1-share-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.ar1-share-btn.copied {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Tags */
.ar1-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ar1-tag-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  color: #666;
  background: var(--offwhite);
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.ar1-tag-pill:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(211, 84, 0, 0.04);
}

/* ---------- Author Bio ---------- */
.ar1-author {
  background: #fff;
  padding: 0 0 4rem;
}
.ar1-author-inner {
  max-width: 720px;
}
.ar1-author-bar {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2rem;
}
.ar1-author-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--offwhite);
  padding: 2rem;
}
.ar1-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ar1-author-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.ar1-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cacao-dark);
  margin-bottom: 0.5rem;
}
.ar1-author-info p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
}

/* ---------- Prev / Next Navigation ---------- */
.ar1-prevnext {
  background: #fff;
  padding: 0 0 5rem;
}
.ar1-prevnext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ar1-prevnext-card {
  display: block;
  padding: 2rem;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ar1-prevnext-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ar1-prevnext-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.ar1-prevnext-label svg {
  width: 12px;
  height: 12px;
}
.ar1-prevnext-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cacao-dark);
  line-height: 1.4;
}
.ar1-prevnext-next {
  text-align: right;
}
.ar1-prevnext-next .ar1-prevnext-label {
  justify-content: flex-end;
}

/* ---------- Related Articles ---------- */
.ar1-related {
  background: var(--offwhite);
  padding: 5rem 0;
}
.ar1-related .section-title {
  margin-bottom: 3rem;
}
.ar1-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ar1-related-card {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}
.ar1-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ar1-related-img {
  overflow: hidden;
  height: 200px;
}
.ar1-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ar1-related-card:hover .ar1-related-img img {
  transform: scale(1.06);
}
.ar1-related-body {
  padding: 1.5rem;
}
.ar1-related-body .ap1-tag {
  margin-bottom: 0.75rem;
}
.ar1-related-body h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cacao-dark);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.ar1-related-body p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #888;
  margin-bottom: 0.75rem;
}
.ar1-related-date {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: #aaa;
  letter-spacing: 0.05em;
}

/* ---------- Newsletter CTA ---------- */
.ar1-newsletter {
  background: #1a1a1a;
  padding: 5rem 0;
  text-align: center;
}
.ar1-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.ar1-newsletter-bar {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 2rem;
}
.ar1-newsletter h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.ar1-newsletter p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.ar1-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.ar1-newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}
.ar1-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.ar1-newsletter-form input:focus {
  border-color: var(--accent);
}
.ar1-newsletter-form .btn {
  border-left: none;
  white-space: nowrap;
}

/* ---------- Bottom Banner ---------- */
.ar1-bottom-banner {
  background: #111;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ar1-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ar1-bottom-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}
.ar1-bottom-inner p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.ar1-bottom-inner .btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   ARTICLE PAGE — Responsive
   ============================================ */

@media (max-width: 1024px) {
  .ar1-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ar1-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .ar1-sidebar-block {
    margin-bottom: 0;
  }
  .ar1-toc {
    display: none;
  }
  .ar1-image-full {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .ar1-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ar1-hero-text {
    padding: 6rem 0 3.5rem;
  }
  .ar1-hero-text-inner {
    margin: 0 auto;
    padding: 0 2rem;
  }
  .ar1-hero-img {
    height: 320px;
  }
  .ar1-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }
  .ar1-lead {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .ar1-lead::first-letter {
    font-size: 3.5rem;
  }
  .ar1-image-float {
    float: none;
    width: 100%;
    margin: 2rem 0;
  }
  .ar1-gallery {
    grid-template-columns: 1fr;
  }
  .ar1-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .ar1-prevnext-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ar1-prevnext-next {
    text-align: left;
  }
  .ar1-prevnext-next .ar1-prevnext-label {
    justify-content: flex-start;
  }
  .ar1-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ar1-download {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  .ar1-audio {
    flex-direction: column;
    gap: 1rem;
  }
  .ar1-newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  .ar1-newsletter-form input {
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  .ar1-newsletter-form .btn {
    border-left: 2px solid transparent;
    width: 100%;
  }
  .ar1-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .ar1-author-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .ar1-callout {
    padding: 1.25rem 1.5rem;
  }
  .ar1-article {
    padding: 3.5rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .ar1-hero-text {
    padding: 5.5rem 0 2.5rem;
  }
  .ar1-hero-text-inner {
    padding: 0 1.25rem;
  }
  .ar1-hero-img {
    height: 250px;
  }
  .ar1-lead::first-letter {
    font-size: 3rem;
  }
  .ar1-stats-row {
    grid-template-columns: 1fr;
  }
  .ar1-related-grid {
    grid-template-columns: 1fr;
  }
  .ar1-hero-meta {
    font-size: 0.65rem;
  }
  .ar1-pullquote {
    padding: 3.5rem 1.5rem;
  }
}

/* ============================================
   BREADCRUMBS (SEO + Navigation)
   ============================================ */
.breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
}
/* Séparateur auto via pseudo-élément */
.breadcrumb-list li + li::before {
  content: "/";
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  margin: 0 0.35rem;
}
.breadcrumb-list a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover {
  color: var(--accent-light);
}
.breadcrumb-current {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
/* Legal pages (dark bg inside .legal-page) */
.legal-page .breadcrumb {
  margin-bottom: 1rem;
}
/* Light bg variant */
.breadcrumb-light .breadcrumb-list li + li::before {
  color: rgba(0,0,0,0.25);
}
.breadcrumb-light a { color: rgba(0,0,0,0.5); }
.breadcrumb-light a:hover { color: var(--accent); }
.breadcrumb-light .breadcrumb-current { color: rgba(0,0,0,0.75); }
