:root {
  --purple: #533afd;
  --purple-hover: #4434d4;
  --navy: #061b31;
  --slate: #64748d;
  --label: #273951;
  --border: #e5edf5;
  --dark: #1c1e54;
  --success: #15be53;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --shadow: rgba(50,50,93,0.25) 0 30px 45px -30px, rgba(0,0,0,0.1) 0 18px 36px -18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: "ss01";
  color: var(--navy);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
code { font-family: 'Source Code Pro', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; color: var(--purple); font-size: .9em; }
.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(229,237,245,.75); }
.nav { min-height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.brand-mark { width: 30px; height: 30px; display: grid; place-items: center; color: white; border-radius: 6px; background: linear-gradient(135deg, var(--purple), var(--ruby) 55%, var(--magenta)); box-shadow: var(--shadow); }
.nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 15px; color: var(--label); align-items:center; }
.nav-links a:hover { color: var(--purple); }
.button, .wp-block-button__link { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 4px; border: 1px solid var(--purple); background: var(--purple); color: #fff; font-weight: 400; box-shadow: rgba(50,50,93,.18) 0 12px 24px -12px; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover, .wp-block-button__link:hover { background: var(--purple-hover); transform: translateY(-1px); color:#fff; }
.button-small { padding: 8px 14px; font-size: 14px; }
.button-ghost { background: transparent; color: var(--purple); border-color: #b9b9f9; box-shadow: none; }
.button-ghost:hover { background: rgba(83,58,253,.05); color: var(--purple); }
.hero { min-height: 640px; display: grid; grid-template-columns: minmax(0, 1.1fr) 390px; gap: 54px; align-items: center; padding: 72px 0; }
.hero h1, .section h2, .page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 64px); font-weight: 300; line-height: 1.03; letter-spacing: -1.4px; }
.section h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.96px; }
.lede { max-width: 650px; color: var(--slate); font-size: 20px; line-height: 1.45; font-weight: 300; }
.eyebrow { margin: 0 0 12px; color: var(--purple); font-family: 'Source Code Pro', monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.eyebrow.light { color: #b9b9f9; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 12px; }
.fine-print, .caption { color: var(--slate); font-size: 14px; }
.summary-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.summary-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--purple), var(--ruby), var(--magenta)); }
.summary-row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--slate); }
.summary-row strong { color: var(--navy); font-size: 24px; font-feature-settings: "tnum"; }
.summary-row.balance { border-bottom: 0; }
.meter { height: 10px; background: #f3f6fb; border-radius: 999px; overflow: hidden; margin: 18px 0; }
.meter span { display: block; height: 100%; background: linear-gradient(90deg, var(--success), var(--purple)); }
.section { padding: 88px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.donation-grid, .gallery-grid, .project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.donation-card { padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.08); }
.donation-card h3, .gallery-card h3, .project-card h3 { margin: 0 0 8px; font-size: 22px; font-weight: 300; }
.donation-card p { min-height: 42px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.feature-card, .gallery-card, .project-card { padding: 26px; border: 1px solid var(--border); border-radius: 8px; box-shadow: rgba(23,23,23,.06) 0 3px 16px; background:#fff; }
.feature-card h3 { margin: 0 0 10px; font-size: 26px; font-weight: 300; letter-spacing: -.26px; }
.feature-card p, .gallery-card p, .project-card p { margin: 0 0 12px; color: var(--slate); line-height: 1.45; }
.card-image { width:100%; aspect-ratio: 16/10; border-radius:6px; object-fit: cover; background: linear-gradient(135deg,#f6f9fc,#d6d9fc); margin-bottom:16px; border:1px solid var(--border); }
.placeholder-image { display:grid; place-items:center; color:var(--purple); font-family:'Source Code Pro', monospace; font-size:12px; text-transform:uppercase; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-heading h2 { margin: 0 0 8px; font-size: 42px; font-weight: 300; letter-spacing: -.64px; }
.section-heading p { margin: 0; color: var(--slate); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 760px; background: white; }
th, td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--label); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
td { color: var(--slate); }
td.amount { color: var(--navy); font-weight: 500; font-feature-settings: "tnum"; white-space: nowrap; }
.proof-link { color: var(--purple); font-weight: 500; }
.status-badge { display: inline-block; background: rgba(21,190,83,.2); color: #108c3d; border: 1px solid rgba(21,190,83,.4); border-radius: 4px; padding: 2px 7px; font-size: 12px; }
.page-hero { padding: 82px 0 48px; }
.content-area { padding-bottom: 88px; }
.footer { padding: 28px 0 46px; border-top: 1px solid var(--border); color: var(--slate); }
.footer p { margin: 8px 0; }
@media (max-width: 820px) { .nav { flex-wrap:wrap; padding:14px 0; } .nav-links { order:3; width:100%; margin-left:0; flex-wrap:wrap; } .hero, .split { grid-template-columns: 1fr; } .hero { min-height: auto; padding: 52px 0; } .donation-grid, .feature-grid, .gallery-grid, .project-grid { grid-template-columns: 1fr; } .section-heading { display: block; } }
