:root {
  --navy: #09224b;
  --red: #b21f2d;
  --cream: #f8f5ed;
  --gold: #d6a32f;
  --text: #162033;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: url("Images/memorial-current.jpg") center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(5, 20, 48, .72); }
.hero-content { position: relative; max-width: 980px; padding: 3rem 1.25rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: var(--gold); }
h1 { font-size: clamp(3rem, 8vw, 6.5rem); line-height: .9; margin: .25rem 0; text-transform: uppercase; }
.tagline { font-size: clamp(1.25rem, 3vw, 2rem); font-style: italic; margin-bottom: 2rem; }
.button { display: inline-block; background: var(--red); color: white; padding: .9rem 1.35rem; border-radius: 6px; text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.button:hover { background: #8f1824; }

.section { max-width: 1120px; margin: 0 auto; padding: 4rem 1.25rem; }
h2 { color: var(--navy); text-transform: uppercase; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin: 0 0 1rem; }
h3 { color: var(--red); font-size: 1.6rem; margin: 0 0 1rem; text-transform: uppercase; }
img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.intro, .impact { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.check-list { padding-left: 1.2rem; font-weight: 700; }
.check-list li { margin: .5rem 0; }
.plan { text-align: center; background: white; max-width: none; }
.plan img { max-width: 980px; }

.sponsorships { background: var(--navy); color: white; max-width: none; }
.sponsorships h2, .sponsorships p { max-width: 1120px; margin-left: auto; margin-right: auto; color: white; }
.tiers { max-width: 760px; margin: 2rem auto 0; background: white; color: var(--text); border-radius: 10px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.tiers div { display: grid; grid-template-columns: 36px 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid #e6e6e6; }
.tiers div:last-child { border-bottom: 0; }
.dot { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #777; display: inline-block; }
.red { background: #c92030; } .white { background: white; } .blue { background: #064a9b; } .bronze { background: #a6652a; } .silver { background: #aaa; } .gold { background: #d6a32f; } .platinum { background: linear-gradient(135deg,#e8e8e8,#7d8aa2); }

.cta { text-align: center; background: white; border-top: 8px solid var(--red); border-bottom: 8px solid var(--navy); }
.cta a:not(.button) { color: var(--navy); font-weight: 700; }
footer { text-align: center; padding: 2rem 1rem; background: var(--navy); color: white; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 760px) {
  .intro, .impact { grid-template-columns: 1fr; }
  .hero { min-height: 430px; }
}
