:root {
  --navy: #08285f;
  --navy-2: #0f377d;
  --navy-3: #163f8f;
  --red: #cf2430;
  --red-dark: #ad1b25;
  --white: #ffffff;
  --offwhite: #f3f5fa;
  --soft: #eef2f9;
  --ink: #1a2640;
  --muted: #5b6781;
  --line: rgba(8, 40, 95, 0.12);
  --shadow: 0 10px 30px rgba(8, 40, 95, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 30%, #f7f9fd 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8,40,95,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  display: inline-block;
  object-fit: contain;
  background: transparent;
}

.brand-copy { min-width: 0; }
.brand-copy strong {
  display: block;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.brand-copy span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.96rem;
}
.nav-links a:hover { background: rgba(8,40,95,0.06); }

main { padding: 18px 0 40px; }

.hero-card,
.news-shell,
.involve-card,
.message-card,
.pillar-card,
.news-card,
.footer-panel,
.program-card,
.feature-card,
.join-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  margin-top: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #072457 0%, #072457 46%, #0d3578 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  min-height: 620px;
}
.hero-card-inner { min-height: 520px; }

.hero-copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff4f59;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}
.eyebrow::after {
  content: "";
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.8rem, 5vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 720px;
}
.hero-underline, .quote-underline {
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
}
.hero-underline { margin: 0 0 18px; }
.quote-underline { margin-bottom: 24px; background: rgba(255,255,255,0.9); }
.hero-copy p {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.88);
  max-width: 650px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
  font-size: 1rem;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.72); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-light { border: 1px solid var(--navy); color: var(--navy); background: #fff; }

.hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  z-index: 1;
}
.hero-media::before {
  display: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section { padding-top: 22px; }
.news-shell {
  background: #f5f7fb;
  padding: 26px 26px 18px;
  margin-top: 18px;
}
.section-kicker {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-title.small-title { font-size: clamp(1.8rem, 2.5vw, 2.4rem); }
.section-lead {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 760px;
  margin-bottom: 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.news-grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.news-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}
.news-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.news-body { padding: 16px 16px 14px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.tag.navy { background: var(--navy); }
.tag.red { background: var(--red); }
.news-card h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 10px;
}
.news-card p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.arrow {
  display: flex;
  justify-content: flex-end;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.twoup, .join-grid, .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.involve-card, .message-card, .join-card { padding: 28px; }
.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.involve-card h3, .message-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 520px;
}
.checklist {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.04rem;
}
.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.message-card,
.message-side {
  background: linear-gradient(135deg, var(--red) 0%, #c31f2d 50%, #991b26 100%);
  color: #fff;
}
.message-card .icon-badge,
.message-side .icon-badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
}
.message-card .section-kicker,
.message-side .section-kicker { color: #ffe0e5; }
.message-card p,
.message-side p { color: rgba(255,255,255,0.9); }
.quote, .small-quote {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: inherit;
  font-weight: 800;
  max-width: 600px;
  margin-bottom: 16px;
}
.small-quote { font-size: clamp(1.6rem, 2.2vw, 2.2rem); }

.pillars-wrap {
  margin-top: 16px;
  padding: 26px;
  background: #f5f7fb;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pillars-wrap.light { background: #f8f9fc; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.pillar-card, .program-card {
  padding: 18px 16px;
  border-radius: 16px;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.program-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.program-card li + li { margin-top: 6px; }
.pillar-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.pillar-card h4, .program-card h4 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.pillar-card p, .program-card p, .feature-card p { color: var(--muted); }
.feature-card { overflow: hidden; }
.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.feature-body { padding: 18px; }
.feature-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.join-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.join-option {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  color: var(--navy);
}

footer {
  background: var(--navy);
  margin-top: 18px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-main {
  padding: 26px 0 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.footer-clear {
  background: transparent;
  border: none;
  box-shadow: none;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand .brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: none;
}
.footer-brand strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 6px;
}
.footer-brand small {
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 0.98rem;
  margin-bottom: 14px;
}
.footer-brand p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.94);
}
.footer-panel h4 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.1;
}
.footer-links, .footer-actions {
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}
.footer-action {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}
.footer-action.red { background: var(--red); border-color: var(--red); }
.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.32);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 14px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 1180px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; }
  .hero-media::before { display: none; }
  .news-grid, .news-grid-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .program-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 12px 0 14px; }
  .brand-copy strong { font-size: 1.45rem; }
  .brand-copy span { font-size: 0.88rem; }
  .nav-links { justify-content: flex-start; }
  .hero-copy { padding: 34px 24px; }
  h1 { font-size: 2.5rem; }
  .hero-copy p { font-size: 1rem; }
  .hero-media { min-height: 300px; }
  .news-shell, .involve-card, .message-card, .join-card, .pillars-wrap { padding: 20px; }
  .news-grid, .news-grid-five, .twoup, .feature-grid, .join-grid, .join-options, .pillars-grid, .program-grid, .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { gap: 12px; }
}


.donate-why-red {
  background: linear-gradient(135deg, var(--red) 0%, #c31f2d 50%, #991b26 100%) !important;
  color: #fff !important;
}
.donate-why-red .section-kicker { color: #ffe0e5 !important; }
.donate-why-red p { color: rgba(255,255,255,0.92) !important; }
.donate-why-red .quote,
.donate-why-red .small-quote { color: #fff !important; }
.donate-why-red .quote-underline { background: rgba(255,255,255,0.9) !important; }
.donate-why-red .note-item,
.donate-why-red .benefit {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color: #fff !important;
}
