:root {
  --noir: #0e0e0e;
  --blanc: #f5f2ed;
  --terre: #c4622d;
  --terre-claire: #e8845a;
  --sable: #d4c4a8;
  --gris: #6b6560;
  --section-pad: 120px 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blanc);
  color: var(--noir);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span { color: var(--terre); }

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul a {
  color: var(--sable);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--terre); }

.nav-back {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sable);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--terre); }
.nav-back::before { content: '←'; font-size: 1rem; }

/* HERO COMMON CLASSES FOR BACKGROUND IMAGES */
.hero-cover-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.75) 50%, rgba(14, 14, 14, 0.96) 100%);
  z-index: 1;
}

/* HERO (Home) */
#hero {
  min-height: 100vh;
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-left { 
  padding-right: 60px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  border: 1px solid var(--terre);
  padding: 6px 14px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--terre);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--sable);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 440px;
}

.hero-cta {
  display: inline-block;
  background: var(--terre);
  color: var(--blanc);
  padding: 16px 36px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta:hover { 
  background: var(--terre-claire); 
  transform: scale(1.04);
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(5px);
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--terre);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--sable);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-geo {
  grid-column: 1 / -1;
  background: rgba(196,98,45,0.1);
  border: 1px solid rgba(196,98,45,0.2);
  padding: 20px 28px;
  font-size: 0.78rem;
  color: var(--sable);
  letter-spacing: 0.08em;
  backdrop-filter: blur(5px);
}

.hero-geo strong { color: var(--terre); }

/* HERO (Pages de Détails & Sous-pages) */
.article-hero {
  min-height: 60vh;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 60px 60px;
  position: relative;
  overflow: hidden;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--terre);
  padding: 5px 12px;
}

.article-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  border: 1px solid var(--terre);
  padding: 5px 12px;
}

.article-date, .article-lieu {
  font-size: 0.72rem;
  color: var(--sable);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-lieu::before {
  content: '·';
  margin-right: 16px;
  color: var(--terre);
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--blanc);
  line-height: 1.1;
  margin-bottom: 20px;
}

.article-title em {
  font-style: italic;
  color: var(--terre);
}

.article-intro {
  font-size: 1.05rem;
  color: var(--sable);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
}

/* CHIFFRES CLÉS */
.key-numbers {
  display: flex;
  gap: 2px;
  margin-top: 48px;
}

.key-number {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  flex: 1;
  backdrop-filter: blur(5px);
}

.key-number-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--terre);
  line-height: 1;
  margin-bottom: 4px;
}

.key-number-label {
  font-size: 0.65rem;
  color: var(--sable);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

/* IDENTITÉ (Home) */
#identite {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.section-body {
  font-size: 1rem;
  color: var(--gris);
  line-height: 1.8;
  font-weight: 300;
}

.identite-right {
  background: var(--noir);
  padding: 56px 48px;
  color: var(--blanc);
  position: relative;
}

.identite-right::before {
  content: '"';
  position: absolute;
  top: 20px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--terre);
  opacity: 0.3;
  line-height: 1;
}

.identite-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--blanc);
  position: relative;
  z-index: 1;
}

.identite-quote strong {
  color: var(--terre);
  font-style: normal;
}

/* EXPERTISES (Home) */
#expertises {
  padding: var(--section-pad);
  background: var(--noir);
}

#expertises .section-title { color: var(--blanc); }
#expertises .section-label { color: var(--terre); }

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.expertise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 32px;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.expertise-card:hover {
  background: rgba(196,98,45,0.1);
  border-color: rgba(196,98,45,0.3);
}

.expertise-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(196,98,45,0.2);
  margin-bottom: 20px;
  line-height: 1;
}

.expertise-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 14px;
}

.expertise-body {
  font-size: 0.82rem;
  color: var(--sable);
  line-height: 1.7;
  font-weight: 300;
}

/* RÉALISATIONS (Home) */
#realisations {
  padding: var(--section-pad);
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.realisation-card {
  background: var(--noir);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.realisation-card:hover { transform: translateY(-4px); }

.realisation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.4) 100%);
  z-index: 1;
  transition: opacity 0.3s;
}

.realisation-card:hover::before {
  background: linear-gradient(to top, rgba(196,98,45,0.85) 0%, rgba(14,14,14,0.5) 100%);
}

.realisation-pays {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.realisation-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.realisation-type {
  font-size: 0.75rem;
  color: var(--sable);
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.realisation-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 900;
  color: var(--blanc);
  display: flex;
  align-items: center;
  padding-left: 20px;
  overflow: hidden;
  z-index: 0;
}

/* INITIATIVES */
#initiatives {
  padding: var(--section-pad);
  background: #1a1512;
}

#initiatives .section-title { color: var(--blanc); }
#initiatives .section-label { color: var(--terre); }

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.initiative-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
}

.initiative-card:hover {
  border-color: var(--terre);
  transform: translateY(-8px);
  background-color: rgba(196,98,45,0.02);
}

.initiative-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terre);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--blanc);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.initiative-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.initiative-card:hover .initiative-icon {
  transform: scale(1.15) rotate(5deg);
}

.initiative-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 14px;
}

.initiative-body {
  font-size: 0.82rem;
  color: var(--sable);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.initiative-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--terre);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s, padding-left 0.3s;
}

.initiative-card:hover .initiative-link {
  color: var(--terre-claire);
  border-color: var(--terre-claire);
  padding-left: 5px;
}

/* ÉQUIPE & DOUBLE AVATAR */
#equipe {
  padding: var(--section-pad);
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.membre-card {
  background: var(--noir);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
}

.membre-card:hover {
  transform: translateY(-6px);
  background-color: #121212;
}

.membre-avatar-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
  height: 90px;
}

.membre-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--terre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blanc);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s;
  border: 2px solid transparent;
}

.membre-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membre-card:hover .membre-avatar {
  transform: scale(1.1);
  border-color: var(--terre);
}

.membre-secondary-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sable);
  border: 2px solid var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--noir);
  margin-left: -18px;
  z-index: 2;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.membre-secondary-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membre-card:hover .membre-secondary-logo {
  transform: scale(1.15) translateY(-2px);
}

.membre-nom {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 6px;
}

.membre-pays {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 10px;
  font-weight: 500;
}

.membre-expertise {
  font-size: 0.78rem;
  color: var(--sable);
  font-weight: 300;
  line-height: 1.5;
}

/* RÉSEAU */
#reseau {
  padding: var(--section-pad);
  background: var(--noir);
}

#reseau .section-title { color: var(--blanc); }
#reseau .section-label { color: var(--terre); }

.reseau-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.pays-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
}

.pays-card:hover {
  border-color: var(--terre);
  transform: translateY(-5px);
  background-color: rgba(255,255,255,0.05);
}

.pays-card.siege {
  background: rgba(196,98,45,0.08);
  border-color: rgba(196,98,45,0.3);
}

.pays-card.siege:hover {
  background-color: rgba(196,98,45,0.12);
  border-color: var(--terre);
}

.pays-flag {
  margin-bottom: 14px;
  display: inline-block;
}

.pays-flag img {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pays-card:hover .pays-flag img {
  transform: scale(1.15) rotate(-5deg);
}

.pays-nom {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pays-nom .mini-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.pays-statut {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 10px;
  font-weight: 500;
}

.pays-detail {
  font-size: 0.8rem;
  color: var(--sable);
  font-weight: 300;
  line-height: 1.6;
}

/* ACTUALITÉS & MINIATURES */
#actualites {
  padding: var(--section-pad);
}

.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.actu-card {
  border-top: 2px solid var(--sable);
  padding-top: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.actu-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--noir);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}

.actu-date {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
}

.actu-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1.3;
}

.actu-body {
  font-size: 0.82rem;
  color: var(--gris);
  line-height: 1.7;
  font-weight: 300;
}

/* DETAILED ARTICLES LAYOUT */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 60px;
  align-items: start;
}

/* ARTICLE BODY */
.article-body p {
  font-size: 1rem;
  color: #2a2a2a;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
}

.article-body p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--terre);
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 6px;
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--noir);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--terre);
}

.article-body .section-break, .section-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}

.article-body .section-break::before,
.article-body .section-break::after,
.section-break::before,
.section-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sable);
}

.article-body .section-break span,
.section-break span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
}

/* LIVRABLES */
.livrables {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.livrable-item {
  background: var(--noir);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.livrable-icon {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
}

.livrable-label {
  font-size: 0.88rem;
  color: var(--blanc);
  font-weight: 400;
  line-height: 1.4;
}

/* SIDEBAR STYLES */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fiche-mission, .fiche-initiative {
  background: var(--noir);
  padding: 36px 32px;
}

.fiche-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fiche-item {
  margin-bottom: 20px;
}

.fiche-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable);
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 0.6;
}

.fiche-value {
  font-size: 0.88rem;
  color: var(--blanc);
  font-weight: 300;
  line-height: 1.5;
}

.fiche-value strong {
  color: var(--terre);
  font-weight: 500;
}

.fiche-link {
  display: block;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terre);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.fiche-link:hover { opacity: 0.7; }
.fiche-link::after { content: ' →'; }

/* EXPERTISE TAGS */
.expertise-tags, .intervenants-block, .partenaires-block {
  border: 1px solid rgba(196,98,45,0.15);
  padding: 24px 28px;
}

.expertise-tags {
  background: rgba(196,98,45,0.08);
}

.expertise-tags-title, .intervenants-title, .partenaires-title {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 14px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.72rem;
  color: var(--gris);
  background: var(--blanc);
  border: 1px solid var(--sable);
  padding: 5px 12px;
  font-weight: 400;
}

.intervenant, .partenaire {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,98,45,0.1);
}

.intervenant:last-child, .partenaire:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.intervenant-nom, .partenaire-nom {
  font-size: 0.85rem;
  color: var(--noir);
  font-weight: 500;
}

.intervenant-detail, .partenaire-role {
  font-size: 0.72rem;
  color: var(--gris);
  font-weight: 300;
}

.sidebar-cta {
  background: var(--terre);
  padding: 28px;
  text-align: center;
}

.sidebar-cta p {
  font-size: 0.82rem;
  color: var(--blanc);
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 300;
}

.sidebar-cta a {
  display: inline-block;
  background: var(--blanc);
  color: var(--terre);
  padding: 12px 24px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sidebar-cta a:hover { opacity: 0.85; }

/* ARTICLE SUITE (READ ALSO) */
.article-suite {
  background: var(--noir);
  padding: 80px 60px;
}

.suite-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 40px;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.suite-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
  text-decoration: none;
  transition: border-color 0.3s;
  display: block;
}

.suite-card:hover { border-color: var(--terre); }

.suite-card-cat {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 12px;
  font-weight: 500;
}

.suite-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.3;
  margin-bottom: 10px;
}

.suite-card-date {
  font-size: 0.72rem;
  color: var(--sable);
  font-weight: 300;
}

/* PULL QUOTE */
.pull-quote, .article-body .pull-quote {
  border-left: 3px solid var(--terre);
  padding: 24px 32px;
  margin: 40px 0;
  background: rgba(196,98,45,0.04);
}

.pull-quote p, .article-body .pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--noir);
  line-height: 1.55;
  margin-bottom: 12px !important;
}

.pull-quote p::first-letter, .article-body .pull-quote p::first-letter {
  font-size: 1.15rem !important;
  color: var(--noir) !important;
  float: none !important;
  margin: 0 !important;
}

.pull-quote cite, .article-body .pull-quote cite {
  font-size: 0.72rem;
  color: var(--terre);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}

/* WEART SPECIFIC / ATELIERS */
.ateliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin: 32px 0;
}

.atelier-card {
  background: var(--noir);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.atelier-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--terre);
  opacity: 0.4;
  line-height: 1;
}

.atelier-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 6px;
}

.atelier-animateur {
  font-size: 0.72rem;
  color: var(--terre);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}

.atelier-desc {
  font-size: 0.85rem;
  color: var(--sable);
  line-height: 1.6;
  font-weight: 300;
}

/* DIALOGUE DU COURT */
.dialogue-section {
  background: #1a1512;
  padding: 36px;
  margin: 36px 0;
}

.dialogue-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 16px;
}

.dialogue-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 12px;
}

.dialogue-desc {
  font-size: 0.85rem;
  color: var(--sable);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.films-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.film-tag {
  font-size: 0.72rem;
  color: var(--blanc);
  background: rgba(196,98,45,0.2);
  border: 1px solid rgba(196,98,45,0.3);
  padding: 5px 14px;
  font-weight: 400;
}

/* PRESSE / PHOTOS */
.presse-section, .photos-section {
  margin: 36px 0;
}

.presse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 16px;
}

.presse-item {
  background: var(--blanc);
  border: 1px solid var(--sable);
  padding: 20px 24px;
}

.presse-media {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 8px;
}

.presse-titre {
  font-size: 0.85rem;
  color: var(--noir);
  line-height: 1.4;
  font-weight: 400;
}

.presse-titre a {
  color: var(--noir);
  text-decoration: none;
  border-bottom: 1px solid var(--sable);
  transition: border-color 0.2s;
}

.presse-titre a:hover { border-color: var(--terre); }

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 16px;
}

.photo-placeholder {
  background: var(--noir);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0.6;
}

.photo-placeholder span {
  font-size: 0.65rem;
  color: var(--sable);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-placeholder .photo-icon {
  font-size: 1.5rem;
  opacity: 0.4;
}

/* CONTACT SECTION */
#contact {
  padding: var(--section-pad);
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

#contact .section-title { color: var(--blanc); }
#contact .section-body { color: var(--sable); }

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--sable);
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--blanc);
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--terre);
}

.contact-form select option { background: var(--noir); }

.contact-form textarea { height: 120px; resize: vertical; }

.contact-submit {
  background: var(--terre);
  color: var(--blanc);
  border: none;
  padding: 18px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: flex-start;
}

.contact-submit:hover { 
  background: var(--terre-claire); 
  transform: scale(1.04);
}

/* FOOTER */
footer {
  background: #080808;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sable);
}

.footer-logo span { color: var(--terre); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--sable);
  fill: var(--sable);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background: var(--terre);
  border-color: var(--terre);
  color: var(--blanc);
  fill: var(--blanc);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--gris);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--terre); }
.footer-copy { font-size: 0.72rem; color: var(--gris); }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DIVIDER */
.divider {
  width: 60px;
  height: 2px;
  background: var(--terre);
  margin-bottom: 28px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root { --section-pad: 80px 24px; }

  /* NAV MOBILE */
  nav { padding: 16px 24px; }
  .nav-hamburger { display: flex; }
  
  nav ul {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    z-index: 99;
  }
  nav ul.open { display: flex; }
  nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* HERO MOBILE */
  #hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    min-height: auto;
    gap: 48px;
  }
  #hero::after { font-size: 6rem; bottom: 10px; right: 10px; }
  .hero-left { padding-right: 0; }
  .hero-right { grid-template-columns: 1fr 1fr; }

  /* IDENTITÉ MOBILE */
  #identite {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .identite-right { padding: 36px 28px; }

  /* EXPERTISES MOBILE */
  .expertises-grid { grid-template-columns: 1fr; }

  /* RÉALISATIONS MOBILE */
  .realisations-grid { grid-template-columns: 1fr; }
  .realisation-card { min-height: 200px; }

  /* INITIATIVES MOBILE */
  .initiatives-grid { grid-template-columns: 1fr; }

  /* ÉQUIPE MOBILE */
  .equipe-grid { grid-template-columns: 1fr 1fr; }

  /* RÉSEAU MOBILE */
  .reseau-grid { grid-template-columns: 1fr 1fr; }

  /* ACTUALITÉS MOBILE */
  .actu-grid { grid-template-columns: 1fr; }

  /* CONTACT MOBILE */
  #contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* DETAILED ARTICLES LAYOUT MOBILE */
  .article-hero { padding: 120px 24px 48px; min-height: auto; }
  .key-numbers { flex-wrap: wrap; }
  .key-number { flex: 1 1 calc(50% - 1px); min-width: 120px; }

  .article-layout {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 48px;
  }

  .article-sidebar { position: static; }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .presse-grid { grid-template-columns: 1fr; }
  .suite-grid { grid-template-columns: 1fr; }
  .article-suite { padding: 60px 24px; }

  /* FOOTER MOBILE */
  footer {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-right { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 20px 16px; }
  .hero-stat-number { font-size: 2rem; }
  .equipe-grid { grid-template-columns: 1fr; }
  .reseau-grid { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: 1fr; }
  .key-number { flex: 1 1 100%; }
}

/* TOAST NOTIFICATION PREMIUM CHARTE GRAPHIQUE (Règle 12) */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-toast {
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid rgba(196, 98, 45, 0.4);
  backdrop-filter: blur(10px);
  color: var(--blanc);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  min-width: 320px;
  max-width: 450px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast-icon {
  color: var(--terre);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-toast-content {
  flex-grow: 1;
  line-height: 1.4;
}

.custom-toast-close {
  background: none;
  border: none;
  color: var(--sable);
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0 4px;
  display: flex;
  align-items: center;
}

.custom-toast-close:hover {
  opacity: 1;
  color: var(--terre);
}

.custom-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--terre);
  width: 100%;
  transform-origin: left;
  animation: toast-progress 4s linear forwards;
}

@keyframes toast-progress {
  to { transform: scaleX(0); }
}

/* SECTION NEWSLETTER PUBLIQUE (PIED DE PAGE) */
.newsletter-section {
  padding: 60px 60px;
  background: #12100e;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--blanc);
  margin-bottom: 12px;
  font-weight: 700;
}

.newsletter-text p {
  color: var(--sable);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.newsletter-form-container {
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--terre);
}

.newsletter-form button {
  background: var(--terre);
  color: var(--blanc);
  border: none;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--terre-claire);
}

.newsletter-form button:active {
  transform: scale(0.98);
}

@media (max-width: 900px) {
  .newsletter-section {
    padding: 60px 24px;
  }
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .newsletter-text {
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

