/* ==========================================================================
   Z Events — VZW | Feuille de style partagée (toutes les pages)
   Palette : Violet profond #4A2E6B · Lavande #EDE7F6 · Fuchsia #E63986
   Fond : blanc cassé · Texte : anthracite #2B2B2B
   ========================================================================== */

:root {
  --primary: #4A2E6B;
  --primary-dark: #38224f;
  --primary-deep: #2b1a3f;
  --primary-soft: #6b4d8f;
  --secondary: #EDE7F6;
  --secondary-soft: #f4f0fa;
  --accent: #E63986;
  --accent-dark: #c71e6e;
  --bg: #F7F5FA;
  --white: #ffffff;
  --text: #2B2B2B;
  --text-muted: #5c5768;
  --border: #e4dfee;
  --shadow-sm: 0 2px 10px rgba(74, 46, 107, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 46, 107, 0.12);
  --shadow-lg: 0 20px 50px rgba(74, 46, 107, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--primary-dark);
  line-height: 1.2;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(230, 57, 134, .35); }
.btn-primary:hover { background: var(--accent-dark); }

.btn-dark { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(74,46,107,.3); }
.btn-dark:hover { background: var(--primary-dark); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--secondary); }

.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ---------- Topbar (contact strip) ---------- */
.topbar {
  background: var(--primary-deep);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar .topbar-left, .topbar .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; color: #ff8fc4; flex-shrink: 0; }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(74,46,107,.35);
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-dark);
  letter-spacing: -.02em;
}
.brand-name em { font-style: normal; color: var(--accent); }

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

.nav-links a.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  transition: color .15s ease, background-color .15s ease;
}
.nav-links a.nav-link:hover { color: var(--accent); background: var(--secondary); text-decoration: none; }
.nav-links a.nav-link.active { color: var(--accent); background: var(--secondary); }
.nav-links .btn-nav { margin-left: 6px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--secondary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 480px at 85% -10%, rgba(230,57,134,.28), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(107,77,143,.45), transparent 60%),
    linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 55%, var(--primary-soft) 100%);
  color: #fff;
  padding: 84px 0 96px;
}
.hero-art-bg { position: absolute; inset: 0; opacity: .5; pointer-events: none; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 48px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, #ff8fc4, #ffd166);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 em { font-style: italic; color: #ffd166; font-weight: 800; }

.hero p.lead { font-size: 1.13rem; color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 30px; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge svg { width: 15px; height: 15px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--secondary); }
.section-white { background: var(--white); }

.section-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Cards / Values ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  margin-bottom: 18px;
}
.icon-box svg { width: 30px; height: 30px; }
.icon-box.pink { background: rgba(230,57,134,.12); }
.icon-box.purple { background: rgba(74,46,107,.12); }

.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Two columns (text + illustration) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col .text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 18px; }
.two-col .text p { color: var(--text-muted); margin-bottom: 14px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text);
}
.check-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

.art {
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-soft) 100%);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.art svg { width: 100%; max-width: 420px; height: auto; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-soft) 100%);
  color: #fff;
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.stat-number .plus { color: #ffd166; }
.stat-label { color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, var(--primary-soft) 100%);
  color: #fff;
  padding: 76px 0 84px;
}
.page-hero .crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.page-hero .crumb a { color: rgba(255,255,255,.85); }
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; letter-spacing: -.02em; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 640px; font-size: 1.1rem; }

/* ---------- Prose (pages légales, mission, etc.) ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 {
  font-size: 1.45rem;
  margin: 38px 0 14px;
  padding-top: 10px;
  scroll-margin-top: 100px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; color: var(--text-muted); }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose ul { list-style: disc; }
.prose li { margin-bottom: 8px; color: var(--text-muted); }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); }
.prose blockquote {
  border-left: 4px solid var(--accent);
  background: var(--secondary);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 22px 0;
  font-style: italic;
  color: var(--primary-dark);
}
.prose .toc { background: var(--secondary); border-radius: var(--radius-sm); padding: 22px 26px; margin-bottom: 30px; }
.prose .toc ul { list-style: none; margin: 0; }
.prose .toc a { color: var(--primary); font-weight: 600; }
.prose .meta-box {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 26px 0;
  font-size: .95rem;
}
.prose .meta-box p { margin-bottom: 6px; }

/* ---------- Info / contact cards ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.info-card .icon-box { margin-bottom: 14px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.info-card p, .info-card a { color: var(--text-muted); font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }

/* ---------- Forms ---------- */
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary-dark); }
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 4px rgba(74,46,107,.12);
}
.form-note { font-size: .85rem; color: var(--text-muted); margin-top: 12px; }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
}
.form-status.ok { display: block; background: #e7f6ec; color: #1e7e43; }
.form-status.err { display: block; background: #fdecea; color: #b3261e; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 380px;
  background: var(--secondary);
}
.map-wrap iframe, .map-wrap .leaflet-container { width: 100%; height: 100%; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin: 10px 0 0 6px; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--accent), var(--primary));
}
.timeline li { position: relative; margin-bottom: 30px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--secondary);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline .tl-year { font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: 1.05rem; }
.timeline .tl-title { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.timeline p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Board / team ---------- */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 8px 20px rgba(74,46,107,.3);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-role { color: var(--accent); font-weight: 700; font-size: .9rem; font-family: var(--font-head); }
.team-card p { color: var(--text-muted); font-size: .92rem; margin-top: 10px; }

/* ---------- Program cards ---------- */
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-card .art { border: none; border-radius: 0; padding: 26px; background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-soft) 100%); }
.program-card .art svg { max-width: 260px; }
.program-card .p-body { padding: 24px 26px 28px; }
.program-card .p-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.program-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.program-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 14px; }
.program-card ul { margin: 0; }
.program-card ul li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--text-muted); font-size: .93rem; }
.program-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Donate ---------- */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.amount-box {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 14px;
}
.amount-box h4 { font-size: 1rem; margin-bottom: 4px; }
.amount-box p { font-size: .9rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding: 64px 20px 44px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,.78); }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo em { font-style: normal; color: #ff8fc4; }
.footer-vzw {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff8fc4;
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px;
  border-radius: 999px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); text-decoration: none; }
.socials svg { width: 18px; height: 18px; }

.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .88rem;
}
.footer-legal ul { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.7); }
.footer-legal a:hover { color: #fff; text-decoration: none; }

/* ---------- Back to top ---------- */
.backtop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.backtop.show { opacity: 1; pointer-events: auto; }
.backtop:hover { transform: translateY(-3px); background: var(--accent-dark); text-decoration: none; }
.backtop svg { width: 20px; height: 20px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 120px 20px; }
.notfound .nf-code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 12vw, 7rem); color: var(--primary); line-height: 1; }
.notfound .nf-code span { color: var(--accent); }
.notfound h1 { margin: 10px 0 12px; }
.notfound p { color: var(--text-muted); margin-bottom: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col .art { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .contact-grid, .donate-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 14px 20px 22px;
    gap: 6px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a.nav-link { display: block; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-links .btn-nav { margin-left: 0; justify-content: center; margin-top: 8px; }
  .section { padding: 64px 0; }
  .hero { padding: 60px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}
