/* ==========================================
   VARIABLES & BASE
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --bg-nav: rgba(0, 0, 0, 0.88);
  --accent-color: #c0392b;
  --accent-hover: #e74c3c;
  --dark: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-muted: #6c757d;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  background-color: #fff;
  color: #222;
}

/* ==========================================
   GESTION DES LANGUES
   ========================================== */
body:not(.lang-en) .en { display: none !important; }
body.lang-en .fr { display: none !important; }
body.lang-en .en { display: inline-block !important; }

/* ==========================================
   NAVBAR
   ========================================== */
.bg-nav {
  background-color: var(--bg-nav);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand-custom {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 1.05rem !important;
}

.btn {
  transition: all 0.28s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

/* ==========================================
   HERO — ACCUEIL
   ========================================== */
.hero-section {
  min-height: 90vh;
  position: relative;
  background-attachment: fixed;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ddd;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  font-size: 0.75em;
  display: block;
  margin-top: 8px;
  color: #ddd;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ccc;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.btn-hero-primary {
  background: white;
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
}
.btn-hero-primary:hover {
  background: #f0f0f0;
  color: #000;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: white;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   HERO — PAGE 2026
   ========================================== */
.hero-section-2026 {
  min-height: 55vh;
  position: relative;
  background-attachment: fixed;
}

/* ==========================================
   CHIFFRES CLÉS
   ========================================== */
.stat-block {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-block:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ==========================================
   SECTIONS TEXTE
   ========================================== */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1rem;
}

/* Tags thématiques */
.theme-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}
.theme-tag:hover {
  background: #222;
  color: white;
  border-color: #222;
}

/* ==========================================
   INFOS PRATIQUES
   ========================================== */
.info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
  border-color: #ddd;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto;
}

/* ==========================================
   TIMELINE
   ========================================== */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-color), #333);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(even) { left: 50%; }
.timeline-item:nth-child(odd) { left: 0; }

.timeline-img {
  position: absolute;
  width: 56px;
  height: 56px;
  right: -28px;
  top: 18px;
  background-color: #222;
  color: white;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 0 4px #f8f9fa;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-img {
  left: -28px;
  right: auto;
}

.timeline-item:hover .timeline-img {
  background-color: var(--accent-color);
  transform: scale(1.12);
}

.timeline-content {
  padding: 22px 28px;
  background-color: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1) !important;
}

.timeline-content::after {
  content: " ";
  height: 0;
  position: absolute;
  top: 24px;
  width: 0;
  z-index: 1;
  border: medium solid white;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.timeline-date {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.timeline-speaker {
  display: inline-block;
  background: #f5f5f5;
  color: #555;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 8px;
}

.border-dashed {
  border: 2px dashed #ccc !important;
}

/* ==========================================
   PAGE ÉQUIPE
   ========================================== */
.keyword-badge {
  background-color: #e8e8e8;
  color: #333;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

.valeur-item {
  padding: 20px;
}
.valeur-emoji {
  font-size: 2rem;
}

.team-video-capsule {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cartes membres */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee !important;
  border-radius: 16px !important;
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1) !important;
}

.team-card-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 28px;
  display: flex;
  justify-content: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-fallback {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}

.role-badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.skill-pill {
  background: #f0f0f0;
  color: #444;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==========================================
   PAGE 2026 — TÉMOIGNAGES
   ========================================== */
.temoignage-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.temoignage-icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.temoignage-auteur {
  font-size: 0.82rem;
  font-weight: 700;
  color: #888;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Blocs lien 2026→2027 */
.lien-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}
.lien-block:hover {
  background: rgba(255,255,255,0.1);
}
.lien-icon {
  font-size: 1.6rem;
  color: var(--accent-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-custom {
  background: #111;
  color: #aaa;
}
.footer-muted {
  color: #666;
}
.footer-link {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

/* ==========================================
   RESPONSIVE MOBILE
   ========================================== */
@media screen and (max-width: 768px) {
  .timeline::after { left: 28px; }

  .timeline-item {
    width: 100%;
    padding-left: 65px;
    padding-right: 20px;
    left: 0 !important;
  }

  .timeline-content::after {
    left: -10px !important;
    right: auto !important;
    border-width: 10px 10px 10px 0 !important;
    border-color: transparent white transparent transparent !important;
  }

  .timeline-img {
    left: 1px !important;
    right: auto !important;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
  }
  .stat-block:last-child { border-bottom: none; }
}

/* ==========================================
   AJOUTS REPORTAGE & SONDAGE
   ========================================== */
.reportage-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.reportage-img:hover {
  transform: scale(1.05);
}
.progress {
  background-color: #e9ecef;
  border-radius: 50px;
  overflow: hidden;
}
.team-funfact {
  background: rgba(248, 249, 250, 0.8);
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid #ffc107;
}

/* ==========================================
   AJOUTS DYNAMIQUES POUR LA PAGE 2026
   ========================================== */

/* Images des étapes du rapport */
.report-step-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .report-step-img {
        margin-bottom: 0;
    }
}

/* Images de la galerie complète */
.reportage-gallery-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.reportage-gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Cartes d'interview */
.interview-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
}

.blockquote p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Placeholder pour l'avatar */
.avatar-placeholder {
    font-size: 1.5rem;
}

/* Personnalisation de la barre de progression (sondage) */
.progress {
    background-color: #e9ecef;
}

.progress-bar {
    transition: width 1s ease;
}

/* Ajouts pour le reportage photo 2026 */
.report-step-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.reportage-gallery-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.reportage-gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* =============================================
   VARIABLES ÉQUIPE
============================================= */
:root {
  --team-bg: #0e0e0e;
  --team-surface: #161616;
  --team-border: rgba(255,255,255,0.07);
  --team-accent: #c0392b;
  --team-accent2: #e8d5b0;
  --mono: 'DM Mono', monospace;
}

/* =============================================
   HERO ÉQUIPE
============================================= */
.hero-team {
  background: var(--team-bg);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Grain overlay */
.hero-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Big background text */
.hero-team-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero-team-content {
  position: relative;
  z-index: 3;
  padding: 0 0 64px;
}

.hero-team-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--team-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-team-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-team-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--team-accent2);
}

.hero-team-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-top: 28px;
}

.hero-team-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--team-border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* Photo side */
.hero-team-photo-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  z-index: 2;
}

.hero-team-photo-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--team-bg) 0%, transparent 40%);
  z-index: 1;
}

.hero-team-photo-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--team-bg), transparent);
  z-index: 1;
}

.hero-team-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.05);
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 40px;
}

.scroll-hint-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   SECTION VALEURS — DARK IMMERSIVE
============================================= */
.section-valeurs {
  background: var(--team-bg);
  padding: 100px 0;
  border-top: 1px solid var(--team-border);
}

.valeur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--team-border);
  border: 1px solid var(--team-border);
  border-radius: 16px;
  overflow: hidden;
}

.valeur-cell {
  background: var(--team-surface);
  padding: 40px 36px;
  transition: background 0.3s ease;
}

.valeur-cell:hover {
  background: #1f1f1f;
}

.valeur-cell-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--team-accent);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.valeur-cell-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.valeur-cell-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.valeur-cell-body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
}

/* =============================================
   SECTION MEMBRES — STYLE WTTJ
============================================= */
.section-membres {
  background: #f5f4f1;
  padding: 100px 0;
}

.membres-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--team-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.membres-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Membre card — WTTJ style horizontal */
.membre-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  border: 1px solid #e8e6e0;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
  height: 100%;
}

.membre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.membre-photo-wrap {
  flex-shrink: 0;
  width: 160px;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  overflow: hidden;
}

.membre-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.membre-card:hover .membre-photo-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.membre-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
}

.membre-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--team-accent);
}

.membre-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.membre-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0ede6;
  color: #555;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.membre-role-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--team-accent);
  flex-shrink: 0;
}

.membre-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  line-height: 1.15;
}

.membre-subtitle {
  font-size: 0.82rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 14px;
}

.membre-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 18px;
}

.membre-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.membre-skill {
  background: #f0ede6;
  color: #444;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.membre-funfact {
  border-top: 1px solid #f0ede6;
  padding-top: 14px;
  font-size: 0.78rem;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.membre-funfact i {
  color: #f0c040;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   SECTION ORGANISATION (RACI)
============================================= */
.section-orga {
  background: var(--team-bg);
  padding: 100px 0;
  border-top: 1px solid var(--team-border);
}

.orga-title-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--team-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.orga-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.orga-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 480px;
}

/* Organigramme visuel */
.orga-flow {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.orga-level {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--team-surface);
  border: 1px solid var(--team-border);
  border-radius: 12px;
  padding: 18px 24px;
  transition: border-color 0.3s ease;
}

.orga-level:hover {
  border-color: rgba(255,255,255,0.15);
}

.orga-level-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-red { background: rgba(192,57,43,0.2); }
.badge-amber { background: rgba(230,180,60,0.15); }
.badge-blue { background: rgba(80,140,220,0.15); }
.badge-green { background: rgba(60,180,100,0.15); }
.badge-purple { background: rgba(150,90,220,0.15); }

.orga-level-info {
  flex: 1;
}

.orga-level-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.orga-level-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--mono);
}

.orga-level-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.orga-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.tag-r { background: rgba(192,57,43,0.25); color: #e87060; }
.tag-a { background: rgba(230,180,60,0.2); color: #d4a830; }
.tag-c { background: rgba(80,140,220,0.2); color: #7ab0e8; }
.tag-i { background: rgba(150,150,150,0.15); color: rgba(255,255,255,0.3); }

.orga-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--team-border), transparent);
  margin-left: 30px;
}

/* =============================================
   SECTION REJOINDRE / CTA
============================================= */
.section-cta {
  background: #f5f4f1;
  padding: 80px 0;
  border-top: 1px solid #e8e6e0;
}

.cta-inner {
  background: var(--team-bg);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.btn-cta-primary {
  background: #fff;
  color: #111;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  transition: all 0.28s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: #111;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .hero-team-photo-col { display: none; }

  .valeur-grid {
    grid-template-columns: 1fr;
  }

  .membre-card {
    flex-direction: column;
  }

  .membre-photo-wrap {
    width: 100%;
    height: 200px;
  }

  .hero-team-stats {
    gap: 24px;
  }

  .cta-inner {
    padding: 36px 24px;
  }
}

@media (max-width: 576px) {
  .hero-team-title {
    font-size: 3rem;
  }
}