/* =========================================================
   Eid Charity Europe — Système de design
   ========================================================= */

:root {
  /* Couleurs */
  --green-900: #123c2c;
  --green-800: #18563e;
  --green-700: #1f6f54;
  --green-600: #268063;
  --green-500: #2e9a74;
  --green-100: #e3efe9;

  --gold-600: #c08a2e;
  --gold-500: #d9a441;
  --gold-400: #e6bd6b;
  --gold-300: #eac77e;
  --gold-100: #f6e9cc;

  --cream: #fbf5e9;
  --sand: #f1e6cf;
  --card: #ffffff;
  --terracotta: #c8623d;

  --ink: #2a2520;
  --ink-soft: #6b6356;
  --ink-faint: #9b9485;
  --line: #ece2cd;

  /* Typo */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espacements & rayons */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(42, 37, 32, 0.06);
  --shadow: 0 14px 40px rgba(42, 37, 32, 0.10);
  --shadow-lg: 0 30px 70px rgba(18, 60, 44, 0.16);
  --container: 1180px;
  --header-h: 84px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 6px; }

/* ----- Typographie ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.text-highlight { color: var(--gold-600); }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { font-size: 1.06rem; }
.bg-sand { background: var(--sand); }
.bg-green { background: var(--green-800); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: #fff; }
.bg-green p { color: rgba(255,255,255,0.78); }

.grid { display: grid; gap: 26px; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

/* ----- Boutons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.38);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217, 164, 65, 0.5); }
.btn-green {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 111, 84, 0.32);
}
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border: 1.6px solid var(--green-700);
}
.btn-ghost:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.6px solid rgba(255,255,255,0.4);
}
.btn-light:hover { background: #fff; color: var(--green-900); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 233, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--green-900); }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  transition: background 0.16s ease, color 0.16s ease;
}
.nav a:hover { background: var(--green-100); color: var(--green-800); }
.nav a.active { color: var(--green-800); background: var(--green-100); }
.nav > .btn { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 10px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--green-900); border-radius: 2px; transition: 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold-100), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--green-100), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero h1 { margin: 18px 0 20px; }
.hero-lead { font-size: 1.16rem; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-strip-item { display: flex; flex-direction: column; }
.hero-strip-item b { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-800); }
.hero-strip-item span { font-size: 0.88rem; color: var(--ink-soft); }
.hero-strip-item + .hero-strip-item { padding-left: 22px; border-left: 1px solid var(--line); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--green-700), var(--green-900));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .placeholder {
  text-align: center;
  color: rgba(255,255,255,0.85);
  padding: 30px;
}
.hero-visual .placeholder img { width: 120px; height: 120px; margin: 0 auto 18px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)); }
.hero-visual .placeholder p { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.hero-badge {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge.tl { top: 18px; left: 16px; }
.hero-badge.br { bottom: 18px; right: 16px; }
.hero-badge .dot { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-100); display: grid; place-items: center; }
.hero-badge .dot svg { width: 22px; height: 22px; color: var(--gold-600); }
.hero-badge b { display: block; font-family: var(--font-display); color: var(--green-900); font-size: 1.05rem; }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); }

/* ----- Cartes génériques ----- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-100);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 28px; height: 28px; color: var(--green-700); }
.icon-badge.gold { background: var(--gold-100); }
.icon-badge.gold svg { color: var(--gold-600); }

/* ----- Concept / étapes ----- */
.steps { grid-template-columns: repeat(4, 1fr); }
.step-card { position: relative; overflow: hidden; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-300);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.96rem; }

/* ----- Impact / compteurs ----- */
.impact-grid { grid-template-columns: repeat(4, 1fr); }
.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 36px 22px;
}
.bg-green .stat-card .icon-badge { background: rgba(255,255,255,0.12); }
.bg-green .stat-card .icon-badge svg { color: var(--gold-300); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .label { color: rgba(255,255,255,0.82); font-weight: 600; font-size: 0.98rem; }
.impact-note { text-align: center; margin-top: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ----- Formules de dons ----- */
.donation-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.donation-card { display: flex; flex-direction: column; position: relative; }
.donation-card.highlight {
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow);
}
.donation-card .ribbon {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.donation-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green-800);
  margin: 6px 0 4px;
}
.donation-card .desc { font-size: 0.95rem; margin-bottom: 18px; }
.donation-card .features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.donation-card .features li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--ink); }
.donation-card .features svg { width: 17px; height: 17px; color: var(--green-600); flex-shrink: 0; }
.donation-card .btn { margin-top: auto; }

/* ----- Widget HelloAsso intégré ----- */
.widget-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin-inline: auto;
  overflow: hidden;
}
.widget-wrap iframe {
  width: 100%;
  height: 750px;
  border: 0;
  display: block;
  border-radius: var(--radius);
}

/* ----- Galerie des actions ----- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.4px solid var(--line);
  background: var(--card);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: 0.16s;
}
.filter-btn:hover { border-color: var(--green-500); color: var(--green-700); }
.filter-btn.active { background: var(--green-700); border-color: var(--green-700); color: #fff; }

.actions-grid { grid-template-columns: repeat(3, 1fr); }
.action-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.action-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--green-600), var(--green-900));
  position: relative;
  display: grid; place-items: center;
}
.action-media img { width: 100%; height: 100%; object-fit: cover; }
.action-media .ph-sheep { width: 64px; height: 64px; opacity: 0.85; }
.action-country {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(251,245,233,0.95);
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}
.action-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.action-meta { display: flex; gap: 14px; font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; margin-bottom: 8px; }
.action-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.action-body p { font-size: 0.93rem; }
.action-benef {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-700);
}
.action-benef svg { width: 16px; height: 16px; }

/* ----- Actualités ----- */
.news-grid { grid-template-columns: repeat(3, 1fr); }
.news-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.news-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, var(--gold-300), var(--gold-500));
  display: grid; place-items: center;
  position: relative;
}
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-media .play {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
}
.news-media .play svg { width: 22px; height: 22px; color: var(--green-800); margin-left: 3px; }
.news-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.news-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.news-body .date { font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; margin-bottom: 12px; }
.news-body p { font-size: 0.93rem; }
.news-body .read-more {
  margin-top: 16px;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Article détaillé (modal) */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(18, 60, 44, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 200;
  padding: 30px 18px;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; align-items: flex-start; justify-content: center; }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-media { aspect-ratio: 16/9; background: var(--green-800); }
.modal-media img, .modal-media iframe, .modal-media video { width: 100%; height: 100%; object-fit: cover; border: 0; }
.modal-body { padding: 32px 36px 38px; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  font-size: 1.3rem; color: var(--green-900);
  box-shadow: var(--shadow-sm);
}

/* ----- Témoignages ----- */
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial-card { display: flex; flex-direction: column; gap: 14px; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; color: var(--gold-500); }
.testimonial-card blockquote { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-author .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-100);
  display: grid; place-items: center;
  font-weight: 800; color: var(--green-700);
}
.testimonial-author b { display: block; color: var(--ink); }
.testimonial-author span { font-size: 0.85rem; color: var(--ink-faint); }

/* ----- Valeurs / À propos ----- */
.values-grid { grid-template-columns: repeat(2, 1fr); }
.value-card { display: flex; gap: 18px; }
.value-card .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-500);
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-100);
  display: grid; place-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  aspect-ratio: 4/3.4;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .ph { text-align: center; color: rgba(255,255,255,0.8); padding: 30px; }
.about-img .ph img { width: 110px; margin: 0 auto 14px; }

/* ----- FAQ ----- */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--green-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform 0.22s ease; flex-shrink: 0; color: var(--green-600); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); }

/* ----- Partenaires / garanties ----- */
.partners-grid { grid-template-columns: repeat(3, 1fr); }
.partner-card { text-align: center; }
.partner-card .icon-badge { margin-inline: auto; }
.partner-card b { font-family: var(--font-display); font-size: 1.15rem; color: var(--green-900); display: block; margin-bottom: 4px; }
.partner-card span { font-size: 0.9rem; color: var(--ink-soft); }

/* ----- Bandeau CTA ----- */
.cta-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(217,164,65,0.16);
}
.cta-band::before { width: 320px; height: 320px; top: -160px; left: -80px; }
.cta-band::after { width: 260px; height: 260px; bottom: -150px; right: -60px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 28px; font-size: 1.08rem; }

/* ----- Page header (sous-pages) ----- */
.page-hero {
  background: linear-gradient(160deg, var(--sand), var(--cream));
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 600px; margin-inline: auto; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--green-700); }

/* ----- Contact ----- */
.contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; }
.contact-line .icon-badge { width: 46px; height: 46px; margin: 0; flex-shrink: 0; }
.contact-line .icon-badge svg { width: 22px; height: 22px; }
.contact-line b { display: block; color: var(--green-900); }
.contact-line a, .contact-line span { color: var(--ink-soft); }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; color: var(--green-900); }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.97rem;
  background: var(--card);
  color: var(--ink);
  transition: border-color 0.16s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--green-500); outline: none; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 14px; }

/* ----- Footer ----- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.72); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 14px; font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.93rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-300); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background 0.16s;
}
.socials a:hover { background: var(--gold-500); }
.socials svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

/* ----- CTA flottant mobile ----- */
.floating-cta {
  position: fixed;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 90;
  display: none;
  box-shadow: var(--shadow-lg);
}

/* ----- Animations ----- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .steps, .impact-grid, .actions-grid, .news-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .donation-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 28px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }
  .nav.open { display: flex; transform: translateY(0); }
  .nav a { padding: 13px 16px; font-size: 1.02rem; }
  .nav .btn { display: inline-flex; margin-top: 8px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3.2; max-width: 460px; }
  .hero-badge.tl { left: 12px; }
  .hero-badge.br { right: 12px; }
  .values-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .floating-cta { display: inline-flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .steps, .impact-grid, .actions-grid, .news-grid, .partners-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-strip-item + .hero-strip-item { padding-left: 14px; }
  .modal-body { padding: 26px 22px 30px; }
}
