:root {
  --navy: #182941;
  --blue: #2b6d89;
  --teal: #44a8a8;
  --mint: #e6f5f2;
  --cream: #fbf7ef;
  --gold: #f2b84b;
  --coral: #de6d5a;
  --ink: #223042;
  --muted: #66758a;
  --white: #ffffff;
  --border: rgba(24, 41, 65, 0.12);
  --shadow: 0 24px 70px rgba(24, 41, 65, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #ffffff 28%, var(--mint) 100%);
  line-height: 1.6;
}

a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 1rem; color: var(--navy); }
h1 { font-size: clamp(2.55rem, 6vw, 5.75rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.04em; }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
ul { padding-left: 1.2rem; margin: 0; }
li { margin-bottom: 0.55rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  margin-right: auto;
}

.brand-logo {
  width: 128px;
  border-radius: 4px;
  object-fit: contain;
  background: white;
  box-shadow: 0 8px 18px rgba(24, 41, 65, 0.16);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 25px rgba(43, 109, 137, 0.25);
}

.brand-text { white-space: nowrap; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.primary-nav a, .site-footer nav a {
  text-decoration: none;
}
.primary-nav a:hover, .site-footer nav a:hover { color: var(--blue); }
.menu-button { display: none; }

.donate-button, .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.donate-button, .button.primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(222, 109, 90, 0.22);
}
.button.secondary {
  color: var(--navy);
  background: white;
  border-color: var(--border);
}
.button:hover, .donate-button:hover { transform: translateY(-1px); }

.section-pad { padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5rem); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 760px;
}
.lede { font-size: clamp(1.1rem, 2vw, 1.32rem); color: var(--muted); max-width: 780px; }
.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  background: radial-gradient(circle at 25% 25%, #ffffff 0, #e7f7f4 26%, #b9e3dd 55%, #2b6d89 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.5);
}
.orbit {
  position: absolute;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 999px;
  transform: rotate(-25deg);
}
.orbit-one { width: 520px; height: 180px; left: -80px; top: 135px; }
.orbit-two { width: 400px; height: 140px; right: -80px; bottom: 150px; }
.node {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 18px 45px rgba(24,41,65,.22);
}
.node-a { top: 88px; right: 90px; }
.node-b { left: 70px; bottom: 130px; background: var(--coral); }
.node-c { right: 120px; bottom: 80px; background: white; }
.hero-card-text {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  padding: 1.5rem;
  border-radius: 26px;
  color: white;
  background: rgba(24,41,65,.62);
  backdrop-filter: blur(14px);
}
.hero-card-text strong { display: block; font-size: 3.4rem; line-height: 1; letter-spacing: -0.06em; }
.hero-card-text span { display: block; margin-top: 0.5rem; font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }
.info-panel, .registry-box, .cta {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.info-panel.light { background: var(--navy); color: rgba(255,255,255,.84); }
.info-panel.light h3 { color: white; }
.check-list { list-style: none; padding-left: 0; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}
.small-note { color: var(--muted); font-size: 0.92rem; }
.light .small-note { color: rgba(255,255,255,.7); }

.registry { background: linear-gradient(135deg, rgba(68,168,168,.18), rgba(242,184,75,.18)); }
.registry-box { max-width: 1180px; margin: 0 auto; }
.grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .story-card {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 14px 35px rgba(24, 41, 65, 0.08);
}
.large-card { min-height: 300px; }
.news-card .date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--coral); font-weight: 900; }

.foundation { background: var(--cream); }
.dash-list { list-style: none; padding-left: 0; }
.dash-list li { padding-left: 1.2rem; position: relative; }
.dash-list li::before { content: "–"; position: absolute; left: 0; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.timeline article {
  padding: 1.5rem;
  border-left: 3px solid var(--teal);
  background: rgba(255,255,255,.75);
  border-radius: 0 22px 22px 0;
}
.timeline span {
  display: inline-flex;
  color: var(--coral);
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.stories { background: #ffffff; }
.story-card { text-align: center; }
.avatar {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: white;
  font-size: 2.5rem;
  font-weight: 900;
}
.story-card a { font-weight: 800; color: var(--blue); }
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: clamp(2rem, 4vw, 4rem) clamp(1rem, 5vw, 5rem);
  background: var(--navy);
  color: rgba(255,255,255,.8);
}
.cta h2 { color: white; }
.cta .eyebrow { color: var(--gold); }
.site-footer {
  padding: 3rem clamp(1rem, 5vw, 5rem);
  background: #101b2b;
  color: rgba(255,255,255,.72);
}
.site-footer h2 { color: white; font-size: 1.6rem; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  color: white;
  font-weight: 700;
}
.copyright { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; margin-top: 2rem; }

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    border: 1px solid var(--border);
    background: white;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 800;
  }
  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .hero, .split, .two, .three, .timeline { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { min-height: 380px; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .brand-text { display: none; }
  .donate-button { display: none; }
  .section-pad { padding-left: 1rem; padding-right: 1rem; }
  .hero-card-text strong { font-size: 2.6rem; }
}
