*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --red:    #de120c;
  --navy:   #011e6b;
  --green:  #13aa22;
  --white:  #ffffff;
  --ink:    #0d0d0d;
  --rule:   #e2e2e2;
  --f: 'Montserrat', sans-serif;
}

body { font-family: var(--f); background: var(--white); color: var(--ink); overflow-x: hidden; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center;
  padding: 0 60px;
  justify-content: space-between;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-text-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  text-decoration: none;
}
.nav-cta {
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 11px 26px; transition: background 0.15s;
}
.nav-cta:hover { background: #b80f09; }

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 60px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-bg-text {
  position: absolute;
  right: -40px; bottom: -60px;
  font-size: 38vw; font-weight: 900;
  color: rgba(1,30,107,0.04);
  line-height: 1; letter-spacing: -0.04em;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero-inner { position: relative; z-index: 1; max-width: 1100px; }
.hero-kicker {
  font-size: 12px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-dot {
  width: 7px; height: 7px; background: var(--red);
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-headline {
  font-size: clamp(64px, 11vw, 148px);
  font-weight: 900;
  color: var(--navy);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-headline span {
  color: var(--red);
  display: block;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.hero-desc {
  font-size: 17px; font-weight: 300;
  line-height: 1.75; color: var(--ink);
  max-width: 500px; opacity: 0.7;
}
.hero-ctas { display: flex; gap: 14px; flex-shrink: 0; }
.btn-primary {
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; transition: background 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #b80f09; }
.btn-secondary {
  background: transparent; color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 36px;
  border: 1.5px solid var(--ink);
  transition: all 0.15s; display: inline-block;
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

/* ─── DONATE ─── */
.donate {
  background: var(--red);
  padding: 52px 60px;
}
.donate-inner {
  display: flex; align-items: center;
  gap: 60px; flex-wrap: wrap;
}
.donate-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; color: var(--white);
  line-height: 1; text-transform: uppercase;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.donate-right { flex: 1; }
.donate-amounts {
  display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap;
}
.amt {
  flex: 1; min-width: 80px;
  padding: 16px 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 17px; font-weight: 800;
  font-family: var(--f);
  cursor: pointer; transition: all 0.15s;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.amt:hover, .amt.sel {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}
.amt.other {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
}
.donate-meta {
  display: flex; justify-content: space-between;
  align-items: center;
}
.donate-note {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.donate-note strong { font-weight: 700; color: var(--white); }
.monthly-link {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.monthly-link:hover { color: var(--white); }

/* ─── MISSION ─── */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--rule);
}
.mission-left {
  background: var(--navy);
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.mission-overline {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-style: italic;
}
.mission-headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900; color: var(--white);
  line-height: 0.92; text-transform: uppercase;
  letter-spacing: -0.02em;
}
.mission-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
  display: block;
  font-size: 0.75em;
  margin-bottom: 4px;
}

.mission-right {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mission-body {
  font-size: 17px; font-weight: 300;
  line-height: 1.8; color: var(--ink);
  opacity: 0.7; margin-bottom: 56px;
}
.mission-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 2px solid var(--ink);
}
.mp-item {
  padding: 28px 0 0;
  border-right: 1px solid var(--rule);
  padding-right: 24px;
}
.mp-item:last-child { border-right: none; padding-right: 0; }
.mp-item + .mp-item { padding-left: 24px; }
.mp-num {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; color: var(--red);
  margin-bottom: 10px;
}
.mp-num.green { color: var(--green); }
.mp-title {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 8px;
}
.mp-body {
  font-size: 13px; font-weight: 300;
  line-height: 1.65; color: var(--ink); opacity: 0.6;
}

/* ─── STATS ─── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.stat-item {
  padding: 52px 60px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 8px;
}
.stat-num.red { color: var(--red); }
.stat-num.navy { color: var(--navy); }
.stat-num.green { color: var(--green); }
.stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); opacity: 0.4; line-height: 1.5;
}

/* ─── SIX FIGHTS ─── */
.pillars {
  padding: 80px 60px;
  background: var(--ink);
}
.pillars-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pillars-title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900; color: var(--white);
  line-height: 0.9; text-transform: uppercase;
  letter-spacing: -0.02em;
}
.pillars-title em {
  font-style: italic;
  color: rgba(255,255,255,0.35);
  display: block;
}
.pillars-desc {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 320px; line-height: 1.7;
  text-align: right;
}
.pillar-row {
  display: grid;
  grid-template-columns: 88px 1fr 1fr;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  transition: all 0.2s;
  position: relative;
}
.pillar-row::before {
  content: '';
  position: absolute; left: -60px; top: 0; bottom: 0;
  width: 3px; background: var(--red);
  transform: scaleY(0); transition: transform 0.2s;
}
.pillar-row:hover::before { transform: scaleY(1); }
.pillar-row:hover .p-num { color: var(--red); }

.p-num {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300; color: rgba(255,255,255,0.15);
  letter-spacing: -0.03em; transition: color 0.2s;
  line-height: 1;
}
.p-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white);
}
.p-desc {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6; text-align: right;
}

/* ─── BATTLEGROUND ─── */
.battleground {
  padding: 80px 60px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.bg-year {
  position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  font-size: 28vw; font-weight: 900;
  color: rgba(1,30,107,0.04);
  letter-spacing: -0.06em; line-height: 1;
  pointer-events: none;
}
.bg-kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.bg-headline {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900; color: var(--navy);
  line-height: 0.88; text-transform: uppercase;
  letter-spacing: -0.03em; margin-bottom: 28px;
}
.bg-body {
  font-size: 17px; font-weight: 300;
  line-height: 1.75; color: var(--ink);
  opacity: 0.65; max-width: 540px;
}
.bg-body strong { font-weight: 700; opacity: 1; color: var(--ink); }
.bg-ctas {
  display: flex; flex-direction: column;
  gap: 14px; flex-shrink: 0; position: relative;
}

/* ─── NEWS ─── */
.news {
  padding: 80px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.news-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 48px;
}
.news-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; font-style: italic;
  color: var(--ink); line-height: 1;
  letter-spacing: -0.03em;
}
.news-all a {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  opacity: 0.4; transition: opacity 0.15s;
}
.news-all a:hover { opacity: 1; }
.news-items {}
.news-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.news-item:first-child { border-top: 1px solid var(--rule); }
.news-item-left {}
.news-tag {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 10px;
}
.tag-press { color: var(--red); }
.tag-announce { color: var(--navy); }
.tag-field { color: var(--green); }
.news-headline {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700; color: var(--ink);
  line-height: 1.35;
}
.news-item-right {
  font-size: 11px; font-weight: 400;
  color: var(--ink); opacity: 0.35;
  white-space: nowrap; text-align: right;
}
.news-item:hover .news-headline { color: var(--red); }

/* ─── EVENTS ─── */
.events {
  background: var(--navy);
  padding: 80px 60px;
}
.events-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 48px;
}
.events-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; color: var(--white);
  line-height: 1; text-transform: uppercase;
  letter-spacing: -0.02em;
}
.events-title em {
  font-style: italic; color: rgba(255,255,255,0.35);
}
.events-all a {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.15s;
}
.events-all a:hover { color: var(--white); }
.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.event-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.1); }
.e-date { text-align: left; }
.e-month {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 2px;
}
.e-day {
  font-size: 56px; font-weight: 900;
  color: var(--red); line-height: 0.9;
  letter-spacing: -0.03em;
}
.e-info {}
.e-name {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--white);
  margin-bottom: 8px;
}
.e-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.e-meta span {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.45);
}
.e-meta strong {
  font-weight: 700; color: rgba(255,255,255,0.7);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-right: 4px;
}
.e-rsvp a {
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 12px 24px;
  display: inline-block; white-space: nowrap;
  transition: background 0.15s;
}
.e-rsvp a:hover { background: #b80f09; }
.e-rsvp a.volunteer {
  background: var(--green);
}
.e-rsvp a.volunteer:hover { background: #0e8c1b; }

/* ─── CTA ─── */
.cta {
  background: var(--red);
  padding: 100px 60px;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; right: -40px; bottom: -80px;
  font-size: 36vw; font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1; letter-spacing: -0.05em;
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-over {
  font-size: 13px; font-weight: 300;
  font-style: italic; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.cta-headline {
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 900; color: var(--white);
  line-height: 0.88; text-transform: uppercase;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.cta-sub {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900; font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px; line-height: 1;
  letter-spacing: -0.01em;
}
.cta-body {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 48px;
}
.cta-btns { display: flex; gap: 16px; }
.btn-white {
  background: var(--white); color: var(--red);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  display: inline-block; transition: all 0.15s;
}
.btn-white:hover { background: var(--ink); color: var(--white); }
.btn-green {
  background: var(--green); color: var(--white);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  display: inline-block; transition: background 0.15s;
}
.btn-green:hover { background: #0e8c1b; }
.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.15s;
}
.btn-ghost-white:hover { border-color: var(--white); color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 36px 60px;
}
.footer-top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.footer-logo img {
  height: 34px; width: auto;
  opacity: 0.95;
}
.footer-nav {
  display: flex; gap: 32px; list-style: none;
}
.footer-nav a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-socials {
  display: flex; gap: 16px;
}
.footer-socials a {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.15s;
}
.footer-socials a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
}
.footer-legal {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.22);
  line-height: 1.6; max-width: 580px;
}
.footer-copy {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
}