/* ============================================================
   UNISSONS CHARITY — Feuille de styles principale
   Version : 1.0  •  Date : Mai 2026
   Auteur  : Site conçu et développé par Brain2Strategy
   ============================================================ */

:root {
  --indigo: #3D2A6E; --indigo-deep: #2A1E4D; --midnight: #1A1825;
  --lilac: #8B6FAA; --amber: #E8A637; --amber-dark: #C68A1F;
  --cream: #FAF8F5; --cream-warm: #F2EDF2;
  --text: #1F1A2E; --muted: #6B6680; --border: #E5E0EA; --white: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', system-ui, sans-serif;
  color: var(--text); background: var(--cream);
  line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.display { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.01em; }

/* ===== HEADER ===== */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { max-width: 1320px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px;
  font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 22px;
  color: var(--indigo); letter-spacing: -0.01em; }
.logo-mark { width: 44px; height: 44px; border-radius: 50%;
  background: url('../photos/logo.png') center/cover;
  flex-shrink: 0; transition: transform .5s ease; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text small { font-family: 'Geist', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
nav.menu ul { list-style: none; display: flex; gap: 26px; align-items: center; }
nav.menu a { font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--text); transition: color .2s; position: relative; }
nav.menu a:hover { color: var(--indigo); }
nav.menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1.5px; background: var(--indigo); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease; }
nav.menu a:hover::after { transform: scaleX(1); }

.menu-toggle { display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border-radius: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--indigo);
  transition: transform .3s ease, opacity .3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cta-amber {
  background: var(--amber); color: var(--midnight);
  padding: 12px 22px; font-family: 'Geist', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 0.3px; border-radius: 999px;
  transition: all .2s ease; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 1px 0 var(--amber-dark); position: relative; overflow: hidden;
  min-height: 44px; line-height: 1; white-space: nowrap;
}
.cta-amber::before { content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .8s ease; }
.cta-amber:hover::before { transform: translateX(100%); }
.cta-amber:hover { background: var(--amber-dark); transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232,166,55,0.35); }
.cta-amber.large { padding: 16px 32px; font-size: 16px; min-height: 52px; }
.cta-outline { border: 1.5px solid var(--cream); color: var(--cream);
  padding: 14px 28px; font-family: 'Geist', sans-serif; font-size: 15px; font-weight: 500;
  border-radius: 999px; transition: all .25s ease; min-height: 48px;
  display: inline-flex; align-items: center; }
.cta-outline:hover { background: var(--cream); color: var(--midnight); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; color: var(--cream); }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(26,24,37,0.55) 0%, rgba(26,24,37,0.85) 100%),
    url('../photos/hero.jpg') center/cover,
    var(--midnight);
  will-change: transform; }
.hero-bg::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 20% 40%, rgba(232,166,55,0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(2px 2px at 85% 65%, rgba(232,166,55,0.3), transparent 50%),
    radial-gradient(1.5px 1.5px at 35% 85%, rgba(255,255,255,0.25), transparent 50%);
  animation: twinkle 6s ease-in-out infinite; opacity: 0.7; }
@keyframes twinkle { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.85; } }
.hero-inner { max-width: 1320px; margin: 0 auto; padding: 80px 24px 100px;
  width: 100%; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Geist', sans-serif; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber); font-weight: 500;
  margin-bottom: 24px; opacity: 0;
  animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--amber); }
.hero h1 { font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(44px, 8vw, 132px); line-height: 0.95;
  letter-spacing: -0.025em; margin-bottom: 24px; color: var(--cream); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .word { display: inline-block; transform: translateY(120%);
  animation: wordReveal .9s cubic-bezier(.2,.85,.25,1) forwards; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--amber);
  font-family: 'Instrument Serif', serif; letter-spacing: -0.02em; }
.hero h1 em .word { transform: translateY(140%); }
@keyframes wordReveal { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); } }
.hero p.lede { font-family: 'Geist', sans-serif; font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1.55; max-width: 580px; margin-bottom: 32px;
  color: rgba(250,248,245,0.82); font-weight: 300; opacity: 0;
  animation: fadeUp 1s cubic-bezier(.2,.7,.3,1) forwards; animation-delay: 1.4s; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0;
  animation: fadeUp 1s cubic-bezier(.2,.7,.3,1) forwards; animation-delay: 1.7s; }
.hero-meta { position: absolute; bottom: 28px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: end; z-index: 2;
  opacity: 0; animation: fadeUp 1s cubic-bezier(.2,.7,.3,1) forwards;
  animation-delay: 2s; gap: 16px; }
.hero-meta-text { font-family: 'Geist', sans-serif; font-size: 11px;
  color: rgba(250,248,245,0.6); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.5; }
.hero-meta-text strong { color: var(--amber); font-weight: 500; }
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Geist', sans-serif; font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(250,248,245,0.5);
  animation: float 2.5s ease-in-out infinite; flex-shrink: 0; }
.scroll-cue::after { content: ''; width: 1px; height: 24px; background: rgba(232,166,55,0.6); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== MARQUEE ===== */
.marquee { background: var(--indigo); color: var(--cream); padding: 24px 0;
  overflow: hidden; border-top: 1px solid rgba(232,166,55,0.15);
  border-bottom: 1px solid rgba(232,166,55,0.15); position: relative; }
.marquee::before, .marquee::after { content: ''; position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--indigo), transparent); }
.marquee::after { right: 0; background: linear-gradient(90deg, transparent, var(--indigo)); }
.marquee-track { display: flex; gap: 36px;
  animation: scroll 60s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-family: 'Instrument Serif', serif; font-size: clamp(17px, 2vw, 22px);
  color: rgba(250,248,245,0.65); letter-spacing: 0.01em; white-space: nowrap;
  display: flex; align-items: center; gap: 36px; }
.marquee-item .flag { font-size: clamp(17px, 2vw, 22px); margin-right: 8px; }
.marquee-item::after { content: '·'; color: var(--amber); font-size: 28px; line-height: 0; }
.marquee-item.highlight { color: var(--amber); font-style: italic; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STATS ===== */
.stats { background: var(--midnight); color: var(--cream); padding: 80px 24px;
  position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; left: 50%; top: 50%;
  width: 800px; height: 800px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,166,55,0.06), transparent 60%);
  pointer-events: none; }
.stats-inner { max-width: 1320px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: start;
  position: relative; z-index: 2; }
.stat-eyebrow { grid-column: 1 / -1; font-family: 'Geist', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px; font-weight: 500; }
.stat-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--amber); margin-right: 12px; vertical-align: middle; }
.stat { border-left: 1px solid rgba(232, 166, 55, 0.25); padding-left: 24px; }
.stat .num { font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6vw, 96px); font-weight: 400; line-height: 0.95;
  color: var(--amber); letter-spacing: -0.03em; margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 4px; }
.stat .num .suffix { font-size: 0.45em; vertical-align: super; }
.stat .label { font-family: 'Geist', sans-serif; font-size: 13px;
  color: rgba(250,248,245,0.7); letter-spacing: 0.3px; line-height: 1.45; font-weight: 400; }

/* ===== SECTIONS ===== */
section.block { padding: 100px 24px; }
.block-inner { max-width: 1320px; margin: 0 auto; }
.section-eyebrow { font-family: 'Geist', sans-serif; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--lilac);
  font-weight: 500; margin-bottom: 16px; display: inline-flex;
  align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--lilac); }
.section-title { font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--indigo); font-weight: 400; max-width: 22ch; margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--amber);
  font-family: 'Instrument Serif', serif; }
.section-lede { font-family: 'Geist', sans-serif; font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted); max-width: 60ch; line-height: 1.6;
  margin-bottom: 48px; font-weight: 400; }

/* ===== EXPERTISE ===== */
.expertise { display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center; }
.expertise-img-wrap { position: relative; aspect-ratio: 4/5; }
.expertise-img { position: absolute; inset: 0;
  background: url('../photos/story.jpg') center/cover, linear-gradient(135deg, var(--indigo), var(--lilac));
  border-radius: 4px; z-index: 2; }
.expertise-img-wrap::after { content: ''; position: absolute;
  bottom: -24px; right: -24px; width: 65%; height: 65%;
  background: var(--amber); border-radius: 4px; z-index: 1; }
.expertise-img-wrap::before { content: ''; position: absolute;
  top: 24px; left: -32px; width: 64px; height: 1px;
  background: var(--indigo); z-index: 3; }
.expertise-text .section-title { color: var(--indigo); margin-bottom: 28px; }
.expertise p { font-size: clamp(15px, 1.2vw, 17px); color: var(--text);
  margin-bottom: 20px; line-height: 1.7; }
.expertise p strong { color: var(--indigo); font-weight: 600; }
.expertise .pill-stats { margin-top: 36px; padding-top: 32px;
  border-top: 1px solid var(--border); display: flex; gap: 40px; flex-wrap: wrap; }
.pill-stat .num { font-family: 'Instrument Serif', serif; font-size: 40px;
  color: var(--indigo); font-weight: 400; line-height: 1; letter-spacing: -0.02em; }
.pill-stat .lab { font-size: 12px; color: var(--muted);
  letter-spacing: 0.3px; margin-top: 6px; line-height: 1.3; max-width: 16ch; }

/* ===== NETWORK ===== */
.network { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative; overflow: hidden; }
.network::before { content: ''; position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,111,170,0.08), transparent 60%);
  pointer-events: none; }
.network-header { display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-bottom: 64px; align-items: end; }
.network-header .section-title { margin-bottom: 0; }
.network-header p { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted);
  line-height: 1.6; max-width: 50ch; }
.countries-grid { display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border-top: 1px solid rgba(139,111,170,0.22); border-bottom: 1px solid rgba(139,111,170,0.22); }
.country-card { padding: 22px 20px 26px;
  border-right: 1px solid rgba(139,111,170,0.18); position: relative;
  transition: background .3s ease; cursor: pointer; }
.country-card:last-child { border-right: none; }
.country-card:first-child { padding-left: 0; }
.country-card:hover { background: rgba(232, 166, 55, 0.06); }
.country-thumb { width: 100%; aspect-ratio: 4/3; border-radius: 4px;
  overflow: hidden; margin-bottom: 16px; position: relative;
  background: var(--border) center/cover; }
.country-thumb-img { position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.country-card:hover .country-thumb-img { transform: scale(1.06); }
.country-thumb::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(26,24,37,0.25) 100%); }
.country-flag-pulse { position: absolute; top: 12px; right: 12px;
  z-index: 2; width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 0 4px rgba(232, 166, 55, 0.35);
  animation: pulse 2.5s ease-in-out infinite; }
.country-card:nth-child(2) .country-flag-pulse { animation-delay: 0.4s; }
.country-card:nth-child(3) .country-flag-pulse { animation-delay: 0.8s; }
.country-card:nth-child(4) .country-flag-pulse { animation-delay: 1.2s; }
.country-card:nth-child(5) .country-flag-pulse { animation-delay: 1.6s; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 166, 55, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(232, 166, 55, 0); }
}
.country-name { font-family: 'Instrument Serif', serif; font-size: 24px;
  color: var(--indigo); margin-bottom: 4px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px; line-height: 1.1; }
.country-name .flag { font-size: 22px; }
.country-detail { font-family: 'Geist', sans-serif; font-size: 13px;
  color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
.country-price { font-family: 'Geist', sans-serif; font-size: 12px;
  color: var(--amber); font-weight: 600; letter-spacing: 0.5px; }
.network-footnote { margin-top: 36px; padding: 32px 0; text-align: center;
  font-family: 'Instrument Serif', serif; font-size: clamp(18px, 2.4vw, 32px);
  color: var(--indigo); line-height: 1.3; font-style: italic; letter-spacing: -0.01em;
  max-width: 32ch; margin-left: auto; margin-right: auto; }
.network-footnote em { color: var(--amber); font-style: italic; }

/* ===== MISSIONS ===== */
.missions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mission-card { background: var(--white); border-radius: 4px; overflow: hidden;
  transition: all .35s ease; cursor: pointer; border: 1px solid rgba(139,111,170,0.18);
  display: flex; flex-direction: column; position: relative; }
.mission-card:hover { transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(61, 42, 110, 0.14); border-color: var(--lilac); }
.mission-img { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.mission-img-inner { position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.mission-card:hover .mission-img-inner { transform: scale(1.08); }
.mission-img::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,24,37,0.55) 100%);
  z-index: 2; }
.mission-1 .mission-img-inner { background-image: url('../photos/mission-puits.jpg'); }
.mission-2 .mission-img-inner { background-image: url('../photos/mission-pack-continue.jpg'); }
.mission-3 .mission-img-inner { background-image: url('../photos/mission-gaza.jpg'); }
.mission-4 .mission-img-inner { background-image: url('../photos/mission-grenoble.jpg'); }
.mission-body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.mission-tag { font-family: 'Geist', sans-serif; font-size: 10px;
  letter-spacing: 1.8px; text-transform: uppercase; color: var(--amber);
  font-weight: 600; margin-bottom: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.mission-tag .flag { font-size: 13px; }
.mission-card h3 { font-family: 'Instrument Serif', serif; font-size: clamp(22px, 2vw, 26px);
  font-weight: 400; color: var(--indigo); margin-bottom: 10px;
  line-height: 1.1; letter-spacing: -0.015em; }
.mission-card p { font-family: 'Geist', sans-serif; font-size: 14px;
  color: var(--muted); margin-bottom: 18px; flex: 1; line-height: 1.5; }
.mission-link { color: var(--indigo); font-family: 'Geist', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; display: inline-flex; align-items: center;
  gap: 8px; transition: gap .3s ease; }
.mission-card:hover .mission-link { gap: 14px; color: var(--amber); }

/* ===== ZAKAT ===== */
.zakat-teaser { background: var(--indigo); color: var(--cream);
  position: relative; overflow: hidden; padding: 80px 24px; }
.zakat-teaser::before { content: ''; position: absolute;
  right: -150px; top: -150px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,166,55,0.18), transparent 60%);
  pointer-events: none; animation: slowSpin 40s linear infinite; }
.zakat-teaser::after { content: ''; position: absolute;
  left: -100px; bottom: -150px; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,111,170,0.18), transparent 60%);
  pointer-events: none; }
@keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.zakat-inner { max-width: 1320px; margin: 0 auto; display: grid;
  grid-template-columns: auto 1fr auto; gap: 60px; align-items: center;
  position: relative; z-index: 2; }
.zakat-arabic { font-family: 'Amiri', serif; font-size: clamp(64px, 9vw, 130px);
  color: var(--amber); line-height: 1; letter-spacing: 0;
  font-weight: 400; transform: translateY(-6px); }
.zakat-content .zakat-eyebrow { font-family: 'Geist', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 12px; }
.zakat-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--amber); }
.zakat-content h2 { font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3.2vw, 44px); color: var(--cream);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; margin-bottom: 12px; }
.zakat-content h2 em { font-style: italic; color: var(--amber); }
.zakat-content p { font-family: 'Geist', sans-serif; font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(250,248,245,0.75); max-width: 50ch; line-height: 1.55; }
.zakat-cta-wrap { display: flex; flex-direction: column; gap: 8px; align-items: end; }
.zakat-cta-wrap small { font-family: 'Geist', sans-serif; font-size: 10px;
  color: rgba(250,248,245,0.5); letter-spacing: 1px; text-transform: uppercase; text-align: right; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream-warm); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 36px; }
.test-card { background: var(--white); padding: 36px 28px 28px;
  border-radius: 4px; position: relative; border: 1px solid rgba(139,111,170,0.2);
  transition: transform .35s ease; }
.test-card:hover { transform: translateY(-3px); }
.test-card::before { content: '\201C'; position: absolute; top: -8px; left: 22px;
  font-family: 'Instrument Serif', serif; font-size: 110px; color: var(--lilac);
  opacity: 0.30; line-height: 1; font-weight: 400; }
.test-card blockquote { font-family: 'Instrument Serif', serif; font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.4; font-weight: 400; color: var(--text); margin-bottom: 26px;
  position: relative; z-index: 2; letter-spacing: -0.005em; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-family: 'Instrument Serif', serif;
  font-size: 20px; font-weight: 400; }
.test-avatar.av-1 { background: var(--lilac); }
.test-avatar.av-2 { background: var(--indigo); }
.test-avatar.av-3 { background: var(--amber); color: var(--midnight); }
.test-author-info .name { font-family: 'Geist', sans-serif; font-weight: 600;
  font-size: 14px; color: var(--indigo); display: flex; align-items: center; gap: 6px; }
.test-author-info .name .flag { font-size: 15px; }
.test-author-info .place { font-family: 'Geist', sans-serif; font-size: 12px;
  color: var(--muted); letter-spacing: 0.3px; margin-top: 2px; }

/* ===== BLOG ===== */
.blog-section { background: var(--cream); }
.blog-header { display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.blog-header .section-title { margin-bottom: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid rgba(139,111,170,0.18);
  border-radius: 4px; overflow: hidden; transition: all .35s ease;
  display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(61,42,110,0.1); border-color: var(--lilac); }
.blog-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.blog-img-inner { position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.blog-card:hover .blog-img-inner { transform: scale(1.06); }
.blog-1 .blog-img-inner { background-image: url('../photos/blog-congo.jpg'); }
.blog-2 .blog-img-inner { background-image: url('../photos/country-madagascar.jpg'); }
.blog-3 .blog-img-inner { background-image: url('../photos/blog-yemen.jpg'); }
.blog-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-family: 'Geist', sans-serif; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--lilac);
  font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.blog-meta .flag { font-size: 13px; }
.blog-card h4 { font-family: 'Instrument Serif', serif; font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15; font-weight: 400; color: var(--indigo);
  margin-bottom: 10px; letter-spacing: -0.015em; }
.blog-card p { font-family: 'Geist', sans-serif; font-size: 14px;
  color: var(--muted); line-height: 1.55; margin-bottom: 22px; flex: 1; }
.blog-byline { display: flex; align-items: center; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--border); }
.byline-avatar { width: 30px; height: 30px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-family: 'Instrument Serif', serif;
  font-size: 14px; font-weight: 400; background: var(--indigo); }
.byline-avatar.lilac { background: var(--lilac); }
.byline-avatar.amber { background: var(--amber); color: var(--midnight); }
.byline-text { font-family: 'Geist', sans-serif; line-height: 1.2; }
.byline-text .by-name { font-size: 13px; font-weight: 600; color: var(--indigo); }
.byline-text .by-meta { font-size: 11px; color: var(--muted);
  letter-spacing: 0.3px; margin-top: 2px; }

/* ===== DONATE BAND ===== */
.donate-band { background: linear-gradient(135deg, var(--indigo) 0%, var(--midnight) 100%);
  color: var(--cream); padding: 90px 24px; text-align: center;
  position: relative; overflow: hidden; }
.donate-band::before, .donate-band::after { content: ''; position: absolute;
  border-radius: 50%; pointer-events: none; }
.donate-band::before { left: -100px; top: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,166,55,0.12), transparent 70%);
  animation: floatX 18s ease-in-out infinite alternate; }
.donate-band::after { right: -150px; bottom: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,111,170,0.18), transparent 70%);
  animation: floatX 22s ease-in-out infinite alternate-reverse; }
@keyframes floatX { from { transform: translate(0, 0); }
  to { transform: translate(40px, -30px); } }
.donate-band-inner { position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; }
.donate-band h2 { font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 5vw, 72px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--cream); font-weight: 400; margin-bottom: 20px; }
.donate-band h2 em { font-style: italic; color: var(--amber); }
.donate-band p.lede { font-family: 'Geist', sans-serif; font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(250,248,245,0.75); margin: 0 auto 36px; line-height: 1.55;
  max-width: 56ch; font-weight: 300; }
.donate-presets { display: grid; grid-template-columns: repeat(5, auto);
  gap: 10px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.preset-btn { background: transparent; border: 1.5px solid rgba(232,166,55,0.4);
  color: var(--cream); padding: 12px 22px; border-radius: 999px;
  font-size: 16px; font-weight: 400; transition: all .25s ease;
  font-family: 'Instrument Serif', serif; letter-spacing: 0.3px;
  min-height: 44px; min-width: 70px; }
.preset-btn:hover, .preset-btn.active { background: var(--amber);
  border-color: var(--amber); color: var(--midnight); transform: translateY(-1px); }
.donate-meta { margin-top: 28px; font-family: 'Geist', sans-serif;
  font-size: 11px; color: rgba(250,248,245,0.5); letter-spacing: 0.5px; }
.donate-meta strong { color: var(--amber); font-weight: 500; }

/* ===== FOOTER ===== */
footer.site { background: var(--midnight); color: var(--cream); padding: 70px 24px 32px; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 48px; margin-bottom: 48px; }
footer h5 { font-family: 'Geist', sans-serif; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber);
  margin-bottom: 20px; font-weight: 500; }
footer .logo { color: var(--cream); margin-bottom: 18px; }
footer p, footer li { font-family: 'Geist', sans-serif; font-size: 14px;
  color: rgba(250,248,245,0.7); line-height: 1.7; }
footer ul { list-style: none; }
footer a { color: rgba(250,248,245,0.7); transition: color .2s; }
footer a:hover { color: var(--amber); }
.contact-line { display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: 14px; flex-wrap: wrap; }
.contact-line .lab { font-family: 'Geist', sans-serif;
  color: rgba(250,248,245,0.5); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; min-width: 80px; }
.contact-line .val { color: var(--cream); font-weight: 500; word-break: break-all; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-btn { width: 44px; height: 44px;
  border: 1px solid rgba(250,248,245,0.2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream); transition: all .25s ease; }
.social-btn:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.footer-bottom { padding-top: 32px;
  border-top: 1px solid rgba(250,248,245,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: 'Geist', sans-serif; font-size: 12px; color: rgba(250,248,245,0.5); }
.footer-bottom a { font-size: 12px; }
.footer-credit { padding-top: 20px; margin-top: 20px;
  border-top: 1px solid rgba(250,248,245,0.05);
  font-family: 'Geist', sans-serif; font-size: 11px; color: rgba(250,248,245,0.35);
  text-align: center; letter-spacing: 0.4px; }
.footer-credit a { color: var(--amber); font-weight: 500; transition: color .2s; }
.footer-credit a:hover { color: var(--cream); text-decoration: underline; }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); z-index: 50;
  transition: all .3s ease; }
.whatsapp-float::before { content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid #25D366; opacity: 0.5;
  animation: pulseRing 2.5s ease-out infinite; }
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white;
  position: relative; z-index: 1; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--midnight); color: var(--cream); padding: 20px 24px;
  z-index: 90; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text { font-family: 'Geist', sans-serif; font-size: 13px;
  line-height: 1.5; max-width: 720px; flex: 1; min-width: 280px; }
.cookie-banner-text a { color: var(--amber); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 10px 18px; border-radius: 999px; font-size: 13px;
  font-family: 'Geist', sans-serif; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(232,166,55,0.4); color: var(--cream);
  background: transparent; transition: all .2s ease; min-height: 40px; }
.cookie-btn:hover { background: rgba(232,166,55,0.1); }
.cookie-btn.primary { background: var(--amber); color: var(--midnight); border-color: var(--amber); }
.cookie-btn.primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

/* ============================================================
   PAGES INTÉRIEURES (legal, contact, etc.)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--cream); padding: 80px 24px 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,166,55,0.08), transparent 60%);
  pointer-events: none; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .section-eyebrow { color: var(--amber); }
.page-hero .section-eyebrow::before { background: var(--amber); }
.page-hero h1 { font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(40px, 6vw, 80px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--cream); margin-bottom: 16px; max-width: 22ch; }
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p { font-family: 'Geist', sans-serif; font-size: 17px;
  color: rgba(250,248,245,0.8); max-width: 60ch; line-height: 1.6; font-weight: 300; }

.legal-content { max-width: 800px; margin: 0 auto; padding: 80px 24px 100px; }
.legal-content h2 { font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3vw, 38px); color: var(--indigo); font-weight: 400;
  margin-top: 56px; margin-bottom: 18px; line-height: 1.15; letter-spacing: -0.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-family: 'Instrument Serif', serif;
  font-size: clamp(20px, 2vw, 26px); color: var(--indigo); font-weight: 400;
  margin-top: 32px; margin-bottom: 12px; line-height: 1.2; }
.legal-content p { font-size: 16px; color: var(--text); line-height: 1.7;
  margin-bottom: 16px; }
.legal-content p strong { color: var(--indigo); font-weight: 600; }
.legal-content ul, .legal-content ol { margin: 12px 0 20px 24px; }
.legal-content li { font-size: 16px; color: var(--text); line-height: 1.7;
  margin-bottom: 8px; }
.legal-content a { color: var(--indigo); text-decoration: underline;
  text-decoration-color: var(--amber); text-decoration-thickness: 2px;
  text-underline-offset: 3px; transition: color .2s; }
.legal-content a:hover { color: var(--amber); }
.legal-content .info-box { background: var(--cream-warm);
  border-left: 3px solid var(--amber); padding: 22px 26px;
  margin: 24px 0; border-radius: 0 4px 4px 0; }
.legal-content .info-box p { margin-bottom: 8px; font-size: 15px; }
.legal-content .info-box p:last-child { margin-bottom: 0; }
.legal-content .meta-line { font-family: 'Geist', sans-serif; font-size: 13px;
  color: var(--muted); padding: 16px 0 32px; border-bottom: 1px solid var(--border);
  margin-bottom: 32px; }

/* ===== TABLE (used in cookies + privacy) ===== */
.legal-content table { width: 100%; border-collapse: collapse;
  margin: 20px 0; font-size: 14px; }
.legal-content thead { background: var(--cream-warm); }
.legal-content th { font-family: 'Geist', sans-serif; font-weight: 600;
  text-align: left; padding: 14px 16px; color: var(--indigo);
  border-bottom: 2px solid var(--border); font-size: 13px;
  letter-spacing: 0.3px; text-transform: uppercase; }
.legal-content td { padding: 14px 16px; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: top; line-height: 1.5; }
.legal-content tr:hover td { background: rgba(232,166,55,0.04); }

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1100px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .missions { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .country-card { border-right: none; border-bottom: 1px solid var(--border); padding: 22px; }
  .country-card:nth-child(odd) { border-right: 1px solid var(--border); padding-left: 0; }
  .country-card:nth-child(even) { padding-left: 22px; }
  .country-card:nth-last-child(-n+1) { border-bottom: none; }
  .expertise, .network-header, .zakat-inner { grid-template-columns: 1fr; gap: 40px; }
  .zakat-inner { gap: 28px; text-align: center; }
  .zakat-cta-wrap { align-items: center; }
  .zakat-cta-wrap small { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section.block { padding: 70px 22px; }
  .test-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav { padding: 12px 18px; gap: 10px; }
  nav.menu { position: fixed; inset: 60px 0 0 0; background: var(--cream);
    padding: 32px 24px; transform: translateX(100%); transition: transform .3s ease;
    z-index: 99; overflow-y: auto; }
  nav.menu.open { transform: translateX(0); }
  nav.menu ul { flex-direction: column; gap: 0; align-items: stretch; }
  nav.menu li { border-bottom: 1px solid var(--border); }
  nav.menu a { font-size: 18px; padding: 18px 0; display: block; min-height: 44px; }
  nav.menu a::after { display: none; }
  .menu-toggle { display: flex; }
  .logo { font-size: 20px; }
  .logo-mark { width: 38px; height: 38px; }
  .cta-amber { padding: 11px 16px; font-size: 13px; }
  .cta-amber.large { padding: 14px 24px; font-size: 15px; min-height: 48px; }

  .hero { min-height: 84vh; }
  .hero-inner { padding: 60px 22px 90px; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); margin-bottom: 20px; }
  .hero p.lede { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px;
    bottom: 20px; left: 22px; right: 22px; }
  .hero-meta-text { font-size: 10px; line-height: 1.6; }
  .scroll-cue { display: none; }

  .marquee { padding: 18px 0; }
  .marquee-item { font-size: 17px; gap: 24px; }
  .marquee-item .flag { font-size: 17px; margin-right: 6px; }
  .marquee-track { gap: 24px; }

  .stats { padding: 56px 22px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .stat { padding-left: 16px; }
  .stat .num { font-size: 44px; }
  .stat .label { font-size: 11px; }

  section.block { padding: 56px 22px; }
  .section-title { font-size: clamp(28px, 7vw, 44px); margin-bottom: 18px; }
  .section-lede { margin-bottom: 36px; }

  .expertise { gap: 36px; }
  .expertise-img-wrap::after { bottom: -16px; right: -16px; }
  .expertise .pill-stats { gap: 24px; padding-top: 24px; margin-top: 28px; }
  .pill-stat .num { font-size: 32px; }
  .pill-stat .lab { font-size: 11px; }

  .countries-grid { grid-template-columns: 1fr; }
  .country-card,
  .country-card:nth-child(odd),
  .country-card:nth-child(even) { border-right: none !important;
    padding: 22px 0 !important; border-bottom: 1px solid var(--border); }
  .country-card:last-child { border-bottom: none; }

  .missions { grid-template-columns: 1fr; gap: 16px; }
  .mission-img { aspect-ratio: 16/10; }

  .zakat-teaser { padding: 60px 22px; }
  .zakat-arabic { font-size: 80px; }
  .zakat-content h2 { font-size: 26px; }
  .zakat-cta-wrap { width: 100%; }
  .zakat-cta-wrap a { width: 100%; justify-content: center; }

  .test-grid { grid-template-columns: 1fr; gap: 16px; }
  .test-card { padding: 28px 22px 22px; }
  .test-card blockquote { font-size: 17px; margin-bottom: 22px; }

  .blog-header { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }

  .donate-band { padding: 60px 22px; }
  .donate-presets { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 360px;
    margin-left: auto; margin-right: auto; margin-bottom: 24px; }
  .preset-btn[data-amount="custom"] { grid-column: 1 / -1; }
  .preset-btn { padding: 11px 14px; font-size: 14px; min-width: 0; width: 100%; }

  footer.site { padding: 56px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .page-hero { padding: 60px 22px 50px; }
  .legal-content { padding: 56px 22px 70px; }
  .legal-content h2 { margin-top: 40px; }

  .cookie-banner { flex-direction: column; padding: 18px 20px; gap: 14px;
    align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
}

/* ===== REVEAL ===== */
html.js [data-reveal] { opacity: 0; transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1),
              transform .9s cubic-bezier(.2,.7,.3,1); }
html.js [data-reveal].in { opacity: 1; transform: translateY(0); }
html.js [data-reveal-delay] { transition-delay: var(--rd, 0s); }
