:root {
  --navy: #071d3c;
  --blue: #0b4dad;
  --red: #ed2338;
  --cream: #f5f1e8;
  --white: #fff;
  --ink: #101b2c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(22px, 5vw, 76px);
  background: white;
  border-bottom: 1px solid #dce2ea;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  min-width: 195px;
}
.brand-name {
  color: var(--navy);
  font-weight: 950;
  font-size: 28px;
  letter-spacing: -1.5px;
}
.brand-office {
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2.5px;
  margin-top: 8px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav a:hover {
  color: var(--red);
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: 0.2s ease;
  border: 2px solid transparent;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #051a3830;
}
.button-red {
  color: white;
  background: var(--red);
}
.button-outline {
  border-color: white;
  color: white;
}
.button-blue {
  background: var(--blue);
  color: white;
}
.header-donate {
  min-height: 46px;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 100px solid #ffffff0b;
  border-radius: 50%;
  left: -220px;
  bottom: -210px;
}
.hero-copy {
  padding: clamp(70px, 8vw, 120px) clamp(32px, 7vw, 108px);
  position: relative;
  z-index: 2;
  align-self: center;
}
.eyebrow,
.section-kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 900;
  font-size: 12px;
}
h1 {
  font-size: clamp(52px, 6.3vw, 94px);
  line-height: 0.91;
  letter-spacing: -4px;
  max-width: 720px;
  margin: 22px 0 28px;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-intro {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.65;
  color: #dfe8f6;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.photo-slot {
  background: linear-gradient(135deg, #b8c6da, #e2e8f0);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #5d6b7d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
}
.photo-slot small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero-photo {
  min-height: 690px;
  background: linear-gradient(145deg, #233d61, #7890ad);
  color: #dce8f7;
}
.district-stamp {
  position: absolute;
  right: clamp(20px, 4vw, 70px);
  bottom: 36px;
  z-index: 3;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
  transform: rotate(-6deg);
  box-shadow: 0 12px 30px #0004;
}
.district-stamp strong {
  font-size: 45px;
  letter-spacing: -2px;
}
.statement-band {
  background: var(--red);
  color: white;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 1.5px;
}
.statement-band p {
  margin: 0;
}
.section {
  padding: 110px clamp(24px, 7vw, 110px);
}
.meet {
  max-width: 1500px;
  margin: auto;
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  margin-top: 20px;
}
h2 {
  color: var(--navy);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -2.7px;
  margin: 18px 0 28px;
  font-weight: 950;
  text-transform: uppercase;
}
.lead {
  font-size: 23px !important;
  color: var(--navy) !important;
  font-weight: 700;
}
.meet p,
.section-heading p {
  font-size: 17px;
  line-height: 1.75;
  color: #475469;
}
blockquote {
  border-left: 5px solid var(--red);
  margin: 36px 0 0;
  padding: 8px 0 8px 25px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 800;
}
.meet-photo {
  min-height: 530px;
  box-shadow: 22px 22px 0 var(--red);
}
.priorities {
  background: white;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: end;
  max-width: 1400px;
  margin: auto;
}
.section-heading p {
  padding-bottom: 14px;
}
.issue-grid {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd6df;
  border-bottom: 1px solid #cfd6df;
}
.issue-grid article {
  padding: 42px 30px 45px 0;
  margin-right: 30px;
  border-right: 1px solid #cfd6df;
}
.issue-grid article:last-child {
  border: 0;
  margin-right: 0;
}
.issue-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.issue-grid h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 28px 0 18px;
}
.issue-grid p {
  color: #556176;
  font-size: 15px;
  line-height: 1.7;
}
.workers {
  background: var(--blue);
  color: white;
  padding: 100px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.workers h2 {
  color: white;
}
.workers p,
.workers li {
  color: #dce8fb;
  font-size: 17px;
  line-height: 1.65;
}
.workers ul {
  padding: 0;
  list-style: none;
  margin: 28px 0 0;
}
.workers li {
  border-top: 1px solid #ffffff3b;
  padding: 16px 0 16px 32px;
  position: relative;
  font-weight: 700;
}
.workers li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: white;
  font-weight: 900;
}
.section-kicker.light {
  color: #ff7f8d;
}
.dark-slot {
  min-height: 500px;
  background: #092e6a;
  color: #adc2e4;
  border: 1px solid #ffffff30;
}
.cta {
  text-align: center;
  padding: 120px 24px;
  background: var(--cream);
}
.cta h2 {
  max-width: 970px;
  margin: 20px auto 35px;
}
.centered {
  justify-content: center;
}
footer {
  background: var(--navy);
  color: white;
  padding: 55px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
}
.footer-brand .brand-name {
  color: white;
}
.footer-links {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.disclaimer {
  grid-column: 1/-1;
  border: 2px solid #ffffff5e;
  margin: 10px 0 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
@media (max-width: 1000px) {
  nav {
    display: none;
  }
  .header-donate {
    margin-left: auto;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    min-height: 440px;
    order: -1;
  }
  .hero-copy {
    padding-top: 65px;
    padding-bottom: 75px;
  }
  .issue-grid {
    grid-template-columns: 1fr 1fr;
  }
  .issue-grid article:nth-child(2) {
    border-right: 0;
  }
  .workers,
  .meet-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 74px;
    padding: 0 18px;
  }
  .brand {
    min-width: 0;
  }
  .brand-name {
    font-size: 22px;
  }
  .brand-office {
    font-size: 9px;
    letter-spacing: 1.8px;
  }
  .header-donate {
    min-height: 40px;
    padding: 0 16px;
  }
  .hero-photo {
    min-height: 355px;
  }
  h1 {
    letter-spacing: -2.5px;
  }
  .statement-band {
    gap: 8px;
    padding: 18px 10px;
    font-size: 10px;
    text-align: center;
  }
  .statement-band span {
    display: none;
  }
  .section {
    padding: 78px 24px;
  }
  .meet-photo {
    min-height: 360px;
    box-shadow: 12px 12px 0 var(--red);
  }
  .issue-grid {
    grid-template-columns: 1fr;
  }
  .issue-grid article {
    border-right: 0;
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid #cfd6df;
  }
  .workers {
    padding: 78px 24px;
    gap: 45px;
  }
  .dark-slot {
    min-height: 330px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
