/* ============================================================
   POUR UNE JEUNESSE EN MOUVEMENT — Feuille de style principale
   ============================================================ */

/* --- Google Fonts ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600;1,9..144,700&family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --- Variables CSS ---------------------------------------- */
:root {
  --cream:       #f5f1e8;
  --ink:         #14201a;
  --forest:      #1f4d3a;
  --orange:      #ee5a24;
  --orange-soft: #f97444;
  --orange-pale: #fdf0ea;
  --ink-mid:     #2e3d35;
  --ink-light:   #4a6156;
  --cream-dark:  #ede9df;
  --white:       #ffffff;

  --font-title: 'Fraunces', Georgia, serif;
  --font-body:  'Inter Tight', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --max-width: 1200px;
  --section-pad: 96px 24px;
  --header-h: 72px;
  --banner-h: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   BANDEAU D'ANNONCE
   ============================================================ */
.announcement-banner {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.announcement-banner .sep {
  opacity: 0.5;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: var(--banner-h);
  z-index: 100;
  height: var(--header-h);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--ink) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-title);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-social-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   COMPOSANTS COMMUNS
   ============================================================ */

/* --- Boutons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--ink); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(20,32,26,0.25);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #d44f1f; }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover {
  background: var(--white);
  color: var(--ink);
}

/* --- Label / Badge ---------------------------------------- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.badge-orange { background: var(--orange); color: var(--white); }
.badge-forest { background: var(--forest); color: var(--white); }
.badge-ink    { background: var(--ink);    color: var(--white); }
.badge-outline { background: transparent; border: 1.5px solid var(--cream-dark); color: var(--ink-light); }
.badge-study  { background: var(--orange-pale); color: var(--orange); border: 1.5px solid rgba(238,90,36,0.2); }

/* --- Tag -------------------------------------------------- */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 2px;
  background: var(--cream-dark);
  color: var(--ink-light);
}

/* --- Page header ------------------------------------------ */
.page-header {
  background: var(--ink);
  color: var(--white);
  padding: 80px 24px 72px;
}

.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-header-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
}

.page-header p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* --- Section label --------------------------------------- */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ============================================================
   PAGE ACCUEIL — HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--banner-h) - var(--header-h));
  padding: 80px 24px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { }

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-value {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-meta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* --- Visuel décoratif hero -------------------------------- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circles-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid;
}

.circle-ring-1 {
  width: 380px;
  height: 380px;
  border-color: rgba(31,77,58,0.1);
  animation: pulse-ring 4s ease-in-out infinite;
}

.circle-ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(31,77,58,0.15);
  animation: pulse-ring 4s ease-in-out 0.5s infinite;
}

.circle-ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(31,77,58,0.2);
  animation: pulse-ring 4s ease-in-out 1s infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  z-index: 2;
}

.circle-center-stat {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.circle-center-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* Orbit container */
.orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 3;
}

.orbit-bubble {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  animation: orbit-anim 7s linear infinite;
  box-shadow: 0 4px 20px rgba(238,90,36,0.4);
}

.orbit-bubble-text {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

@keyframes orbit-anim {
  from {
    transform: rotate(0deg) translateX(155px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(155px) rotate(-360deg);
  }
}

/* ============================================================
   PAGE ACCUEIL — STATS
   ============================================================ */
.stats-section {
  background: var(--ink);
  color: var(--white);
  padding: var(--section-pad);
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.stats-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.stats-header-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.stats-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 440px;
}

.stats-header p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  line-height: 1.65;
  margin-top: 8px;
  align-self: flex-end;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.07);
}

.stat-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-card:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 12px;
}

.stat-source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ============================================================
   PAGE ACCUEIL — MISSION
   ============================================================ */
.mission-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.mission-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.mission-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.mission-top h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mission-top p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pillar-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.pillar-card:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.pillar-card:hover::before { transform: scaleY(1); }

.pillar-number {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 24px;
}

.pillar-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pillar-text {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ============================================================
   PAGE ACCUEIL — CITATION
   ============================================================ */
.quote-section {
  padding: 80px 24px;
  background: var(--cream-dark);
  border-top: 1px solid rgba(20,32,26,0.08);
  border-bottom: 1px solid rgba(20,32,26,0.08);
}

.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-title);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: 8px;
}

.quote-text {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-source {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ============================================================
   PAGE ACCUEIL — CTA BANDEAU
   ============================================================ */
.cta-banner {
  background: var(--forest);
  color: var(--white);
  padding: 72px 24px;
}

.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 560px;
  line-height: 1.25;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--orange-soft);
}

.cta-banner p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   PAGE NOTRE HISTOIRE
   ============================================================ */
.histoire-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky founder card */
.founder-card {
  position: sticky;
  top: calc(var(--banner-h) + var(--header-h) + 32px);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 20px;
}

.founder-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.founder-divider {
  width: 32px;
  height: 2px;
  background: var(--orange);
  margin: 20px auto;
}

.founder-assoc {
  font-size: 0.78rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* Article content */
.histoire-article {
  max-width: 680px;
}

.histoire-article h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 60px;
  margin-bottom: 20px;
}

.histoire-article h2:first-of-type { margin-top: 0; }

.histoire-article p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 20px;
}

.histoire-article p:last-child { margin-bottom: 0; }

.histoire-article .drop-cap::first-letter {
  font-family: var(--font-title);
  font-size: 4.2rem;
  font-weight: 700;
  float: left;
  line-height: 0.75;
  margin: 8px 12px 0 0;
  color: var(--forest);
}

.histoire-article .highlight-stat {
  display: inline;
  font-family: var(--font-title);
  font-size: 1.1em;
  font-weight: 700;
  color: var(--forest);
}

.histoire-article blockquote {
  border-left: 3px solid var(--orange);
  margin: 40px 0;
  padding: 24px 32px;
  background: var(--cream-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.histoire-article blockquote p {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}

.histoire-article blockquote cite {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-style: normal;
}

.histoire-article .source-note {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-style: italic;
  border-top: 1px solid var(--cream-dark);
  padding-top: 8px;
  margin-top: -10px;
}

/* ============================================================
   PAGE NOS ACTIONS
   ============================================================ */
.actions-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.action-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
  position: relative;
}

.action-row:first-child { border-top: 1px solid var(--cream-dark); }

.action-row:hover { }

.action-row::before {
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  background: var(--white);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s;
}

.action-row:hover::before { opacity: 1; }

.action-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  padding-top: 6px;
}

.action-body { }

.action-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.action-desc {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 580px;
  margin-bottom: 20px;
}

.action-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.action-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 6px;
  min-width: 160px;
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.status-launch { background: var(--forest); color: var(--white); }
.status-study  { background: var(--orange-pale); color: var(--orange); }
.status-dev    { background: rgba(31,77,58,0.1); color: var(--forest); }

/* ============================================================
   PAGE SOUTENIR
   ============================================================ */
.soutenir-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.soutenir-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.soutenir-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

.soutenir-intro h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.soutenir-intro p {
  font-size: 0.98rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.support-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, transform 0.25s;
}

.support-card:hover {
  border-color: var(--forest);
  transform: translateY(-4px);
}

.support-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  position: relative;
}

.support-card.featured:hover {
  border-color: var(--forest);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.support-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-icon.icon-forest { background: rgba(31,77,58,0.12); }
.support-card-icon.icon-orange { background: rgba(238,90,36,0.12); }
.support-card-icon.icon-white  { background: rgba(255,255,255,0.1); }

.support-card-icon svg {
  width: 24px;
  height: 24px;
}

.support-card-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.support-card.featured .support-card-type {
  color: rgba(255,255,255,0.45);
}

.support-card-title {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.support-card.featured .support-card-title {
  color: var(--white);
}

.support-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-light);
  flex: 1;
}

.support-card.featured .support-card-desc {
  color: rgba(255,255,255,0.65);
}

.support-card-note {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}

.support-card.featured .support-card-note {
  color: rgba(255,255,255,0.4);
  border-top-color: rgba(255,255,255,0.1);
}

.support-legal {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 640px;
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { }

.contact-info h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-info-value a:hover { color: var(--orange); }

.contact-socials {
  padding: 24px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
}

.contact-socials-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 10px;
}

.contact-socials-note {
  font-size: 0.85rem;
  color: var(--ink-light);
  font-style: italic;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-heading {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 0.95rem;
  padding: 16px;
  justify-content: center;
}

.form-note {
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--ink-light);
  text-align: center;
}

/* Select arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink-light);
  pointer-events: none;
}

/* ============================================================
   PHOTOS — PAGE NOTRE HISTOIRE
   ============================================================ */

.histoire-photo {
  margin: 40px 0;
}

.histoire-photo.portrait {
  float: right;
  margin: 6px 0 28px 40px;
  width: 260px;
}

.histoire-photo.cinematic {
  clear: both;
  width: 100%;
  margin: 56px 0;
}

.histoire-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 28px rgba(20,32,26,0.14);
  display: block;
}

.histoire-photo.cinematic img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 30%;
}

.histoire-photo figcaption {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.histoire-photo-legend {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ink-light);
}

.histoire-photo-credit {
  font-size: 0.7rem;
  color: var(--ink-light);
  opacity: 0.55;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Clearfix */
.histoire-article::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 560px) {
  .histoire-photo.portrait {
    float: none;
    width: 100%;
    margin: 32px 0;
  }
}

/* ============================================================
   ANIMATIONS GLOBALES
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fade-up 0.65s ease both;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — 1000px
   ============================================================ */
@media (max-width: 1000px) {

  :root { --section-pad: 72px 24px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-subtitle { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr; gap: 2px; }
  .stat-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .stat-card:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }

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

  .mission-top { grid-template-columns: 1fr; gap: 24px; }

  .histoire-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-card { position: static; }

  .support-cards { grid-template-columns: 1fr; max-width: 480px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {

  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--banner-h) + var(--header-h));
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }

  .nav-cta {
    margin: 12px 24px;
    border-radius: var(--radius-sm);
    display: block;
    text-align: center;
  }

  .nav-toggle { display: flex; }

  .action-row { grid-template-columns: 56px 1fr; }
  .action-meta { flex-direction: row; align-items: center; grid-column: 2; }
}

/* ============================================================
   RESPONSIVE — 560px
   ============================================================ */
@media (max-width: 560px) {

  :root {
    --section-pad: 56px 20px;
    --header-h: 64px;
  }

  .announcement-banner { font-size: 0.7rem; gap: 10px; }

  .hero { padding: 56px 20px; }

  .circles-wrap { width: 280px; height: 280px; }
  .circle-ring-1 { width: 280px; height: 280px; }
  .circle-ring-2 { width: 220px; height: 220px; }
  .circle-ring-3 { width: 160px; height: 160px; }
  .circle-center { width: 110px; height: 110px; }
  .circle-center-stat { font-size: 1.4rem; }
  .orbit-bubble { width: 64px; height: 64px; }

  @keyframes orbit-anim {
    from { transform: rotate(0deg) translateX(115px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
  }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .cta-banner-inner { flex-direction: column; align-items: flex-start; }

  .action-row { grid-template-columns: 1fr; gap: 12px; }
  .action-number { font-size: 1.6rem; }
  .action-meta { flex-direction: row; flex-wrap: wrap; align-items: center; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 32px 24px; }

  .histoire-layout { padding: 48px 20px; }
  .histoire-article .drop-cap::first-letter {
    font-size: 3rem;
    margin-right: 8px;
  }

  .stats-header { flex-direction: column; }
}

/* ============================================================
   AJOUT — Photo du fondateur + confirmation formulaire
   ============================================================ */
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 16px rgba(20,32,26,0.15);
}

.form-success {
  background: rgba(31,77,58,0.1);
  border: 1.5px solid var(--forest);
  color: var(--forest);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}
