:root {
  --navy: #061632;
  --navy-deep: #020914;
  --blue: #073a86;
  --blue-bright: #126ce2;
  --gold: #fac73e;
  --gold-dark: #d99512;
  --red: #d71924;
  --red-dark: #8b0710;
  --white: #ffffff;
  --ink: #061632;
  --muted: #5d6c85;
  --line: rgba(255, 255, 255, .38);
  --shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 120px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 88%, rgba(191, 16, 37, .28), transparent 28rem),
    linear-gradient(180deg, #061632 0, #031027 34rem, #f4f7fb 34rem);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 3.5vw, 48px) 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 8, 22, .98), rgba(5, 22, 50, .98)),
    radial-gradient(circle at top left, rgba(18, 108, 226, .2), transparent 28rem);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 560px;
  padding-left: 178px;
}
.brand img {
  position: absolute;
  left: clamp(18px, 2.1vw, 36px);
  top: 10px;
  z-index: 3;
  width: clamp(150px, 10.4vw, 184px);
  height: clamp(150px, 10.4vw, 184px);
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .35));
}
.brand-copy {
  display: grid;
  font-family: "Barlow Condensed", sans-serif;
  line-height: .88;
  text-transform: uppercase;
}
.brand-copy strong,
.brand-copy em {
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}
.brand-copy em {
  color: var(--gold);
  font-style: normal;
}
.brand-copy small {
  position: relative;
  width: max-content;
  margin-top: 6px;
  padding-inline: 28px;
  color: var(--white);
  font-size: clamp(.82rem, 1.25vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 1.6px;
}
.brand-copy small::before,
.brand-copy small::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
}
.brand-copy small::before { left: 0; }
.brand-copy small::after { right: 0; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.7vw, 28px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}
.nav-donate {
  margin-left: 8px;
  padding: 11px 24px;
  color: #08101f !important;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffe67b, var(--gold) 45%, #e0a11d);
  box-shadow: inset 0 1px rgba(255, 255, 255, .75), 0 10px 22px rgba(0, 0, 0, .25);
}
.nav-donate::after { display: none; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero-shell {
  position: relative;
  min-height: clamp(330px, 27vw, 390px);
  overflow: hidden;
  color: var(--white);
  background: #04142d;
  border-bottom: 2px solid rgba(255, 255, 255, .24);
  isolation: isolate;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 9, 20, .36), rgba(3, 13, 31, .92) 35%, rgba(3, 13, 31, .72) 62%, rgba(2, 9, 20, .32)),
    radial-gradient(circle at 45% 35%, rgba(18, 108, 226, .35), transparent 22rem);
}
.hero-collage,
.scene {
  position: absolute;
  inset: 0;
}
.scene {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.25) contrast(1.08);
}
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  border-inline: 2px solid rgba(255, 255, 255, .75);
}
.scene-police {
  right: auto;
  width: 33%;
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 62% 63%, rgba(18, 108, 226, .9) 0 7px, transparent 8px 36px),
    radial-gradient(circle at 75% 58%, rgba(215, 25, 36, .9) 0 7px, transparent 8px 30px),
    linear-gradient(90deg, rgba(2, 9, 20, .18), rgba(4, 20, 45, .38)),
    url("assets/hero-police.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.scene-fire {
  left: 58%;
  width: 27%;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  background:
    radial-gradient(circle at 58% 28%, rgba(255, 221, 98, .9) 0 5px, transparent 6px 15px),
    radial-gradient(circle at 55% 46%, rgba(255, 89, 0, .85), transparent 10rem),
    linear-gradient(120deg, rgba(52, 3, 5, .28), rgba(215, 25, 36, .55)),
    url("assets/hero-fire.jpg");
  background-size: cover;
  background-position: 48% center;
  background-repeat: no-repeat;
}
.scene-ems {
  left: 78%;
  width: 27%;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, .95) 0 4px, transparent 5px 20px),
    radial-gradient(circle at 32% 22%, rgba(18, 108, 226, .95) 0 8px, transparent 9px 42px),
    radial-gradient(circle at 62% 22%, rgba(215, 25, 36, .95) 0 8px, transparent 9px 40px),
    linear-gradient(100deg, rgba(2, 17, 38, .1), rgba(4, 40, 90, .48)),
    url("assets/hero-ems.jpg");
  background-size: cover;
  background-position: 54% center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  margin-inline: auto;
  padding: clamp(34px, 3.8vw, 52px) 0 38px;
  text-align: center;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .48);
}
h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(3.05rem, 4.65vw, 4.95rem);
  letter-spacing: .5px;
}
h1 span {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold);
}
.hero-content p {
  width: min(570px, 100%);
  margin: 12px auto 18px;
  color: var(--white);
  font-size: clamp(1.02rem, 1.45vw, 1.35rem);
  font-weight: 900;
  line-height: 1.2;
}
.star-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.star-line span {
  width: min(95px, 18vw);
  height: 3px;
  background: var(--red);
}
.star-line i {
  width: 23px;
  aspect-ratio: 1;
  background: var(--white);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}
.star-line i:first-of-type { background: var(--blue-bright); }
.star-line i:last-of-type { background: var(--red); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 30px;
  border: 0;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  cursor: pointer;
}
.button-red {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .32);
  background: linear-gradient(180deg, #f02c34, #bd101a);
  box-shadow: inset 0 1px rgba(255, 255, 255, .35), 0 8px 20px rgba(0, 0, 0, .3);
}
.button-red b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}
.button-gold {
  width: 100%;
  color: #090d18;
  background: linear-gradient(180deg, #ffe67b, var(--gold) 45%, #e0a11d);
  box-shadow: inset 0 1px rgba(255, 255, 255, .78), 0 9px 16px rgba(0, 0, 0, .26);
}

.service-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1920px, calc(100% - 72px));
  margin: -1px auto 14px;
}
.service-card {
  min-height: 166px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .76);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background-repeat: no-repeat;
}
.service-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2.1rem, 2.6vw, 3rem);
}
.service-card p {
  max-width: 380px;
  margin: 0;
  font-size: clamp(.95rem, 1.1vw, 1.15rem);
  font-weight: 800;
  line-height: 1.35;
}
.service-card.law {
  background:
    linear-gradient(90deg, rgba(4, 20, 45, .98) 0 48%, rgba(4, 20, 45, .58) 69%, rgba(4, 20, 45, .1)),
    radial-gradient(circle at 74% 52%, rgba(18, 108, 226, .75), transparent 12rem),
    url("assets/service-law.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-card.fire {
  background:
    linear-gradient(90deg, rgba(85, 5, 8, .98) 0 48%, rgba(85, 5, 8, .58) 69%, rgba(85, 5, 8, .08)),
    radial-gradient(circle at 76% 50%, rgba(255, 135, 25, .88), transparent 12rem),
    url("assets/service-fire.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-card.ems {
  background:
    linear-gradient(90deg, rgba(4, 22, 50, .98) 0 48%, rgba(4, 22, 50, .6) 69%, rgba(4, 22, 50, .08)),
    radial-gradient(circle at 78% 50%, rgba(18, 108, 226, .92), transparent 13rem),
    url("assets/service-ems.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .75);
  background: linear-gradient(180deg, #126ce2, #034091);
  box-shadow: inset 0 0 0 6px rgba(0, 0, 0, .14);
}
.fire .service-icon { background: linear-gradient(180deg, #ef242e, #a60710); }
.service-svg {
  width: 46px;
  height: 46px;
  color: var(--white);
  overflow: visible;
}
.service-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commitment-band {
  display: grid;
  grid-template-columns: 1.45fr 1fr 360px;
  gap: 28px;
  width: min(1920px, calc(100% - 72px));
  margin: 0 auto;
  padding: 28px 34px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f2f6fb);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.commitment-band h2,
.difference-copy h2 {
  color: #062a72;
  font-size: clamp(1.9rem, 2.3vw, 2.7rem);
}
.commitment-list h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-top: 8px;
  background: #0f52b8;
}
.commitment-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.commitment-list li {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 4px 13px;
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  border-right: 1px solid #c5cfdf;
}
.commitment-list li:last-child { border-right: 0; }
.difference-copy p {
  margin: 14px 0 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
}
.donation-callout {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px 20px;
  align-items: center;
  padding: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 12px;
  background: linear-gradient(135deg, #041632, #073a86);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
}
.donation-callout p {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.25;
}
.donation-callout .button { grid-column: 1 / -1; }

.mission-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 28px clamp(28px, 5vw, 72px);
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 12, 30, .96), rgba(5, 22, 50, .86)),
    radial-gradient(circle at 90% 20%, rgba(191, 16, 37, .48), transparent 22rem);
}
.mission-footer h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: .95;
  text-transform: none;
}

.mission-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 54px auto 0;
  padding: 38px;
  background: var(--white);
  border: 1px solid #dce4f1;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(9, 30, 66, .14);
}
.mission-panel h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.mission-copy {
  columns: 2 360px;
  column-gap: 44px;
  margin-top: 22px;
}
.mission-copy p {
  break-inside: avoid;
  margin: 0 0 16px;
  line-height: 1.65;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 520px);
  gap: 38px;
  width: min(1180px, calc(100% - 48px));
  margin: 54px auto 72px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.contact-panel h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.contact-panel p {
  max-width: 560px;
  line-height: 1.6;
}
.small-note {
  color: var(--muted);
  font-size: .95rem;
}
.mailing-address {
  margin-top: 22px;
  padding-left: 18px;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #dce4f1;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(9, 30, 66, .14);
}
label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
input,
textarea {
  width: 100%;
  border: 1px solid #bfcbe0;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}
input:focus,
textarea:focus {
  outline: 3px solid rgba(250, 199, 62, .36);
  border-color: var(--gold-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  color: var(--white);
  background: var(--navy-deep);
}
.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.heart,
.heart-icon,
.shield-icon,
.flame-icon,
.cross-icon,
.group-icon,
.partner-icon,
.star-icon,
.shield-outline,
.nav-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}
.heart,
.heart-icon {
  width: 22px;
  height: 20px;
  transform: rotate(-45deg);
  background: currentColor;
  border-radius: 3px;
}
.heart::before,
.heart::after,
.heart-icon::before,
.heart-icon::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
}
.heart::before,
.heart-icon::before { top: -10px; left: 0; }
.heart::after,
.heart-icon::after { top: 0; left: 10px; }
.nav-donate .heart,
.button-gold .heart { color: #050912; transform: scale(.82) rotate(-45deg); }

.shield-icon,
.shield-outline,
.nav-mark.shield {
  width: 34px;
  height: 40px;
  border: 4px solid currentColor;
  border-radius: 12px 12px 16px 16px;
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}
.nav-mark.shield::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  width: 13px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}
.service-icon .shield-icon { color: var(--white); }
.mini.shield-icon { color: #072b72; }
.shield-outline { color: var(--gold); }
.flame-icon {
  width: 34px;
  height: 42px;
  color: var(--white);
  background: currentColor;
  border-radius: 70% 0 70% 70%;
  transform: rotate(-45deg);
}
.cross-icon,
.nav-mark.cross {
  width: 36px;
  height: 36px;
  color: var(--white);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 100% no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 14px no-repeat;
}
.mini {
  width: 42px;
  height: 42px;
  color: #072b72;
}
.group-icon::before,
.group-icon::after {
  content: "";
  position: absolute;
  inset: 5px 11px auto;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -13px 5px 0 -1px currentColor, 13px 5px 0 -1px currentColor;
}
.group-icon::after {
  inset: auto 2px 3px;
  height: 18px;
  border-radius: 18px 18px 6px 6px;
}
.partner-icon::before,
.partner-icon::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 14px;
  top: 15px;
  border-radius: 5px;
  border: 6px solid currentColor;
}
.partner-icon::before { left: 0; transform: rotate(35deg); }
.partner-icon::after { right: 0; transform: rotate(-35deg); }
.star-icon {
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  background: currentColor;
}
.nav-mark {
  width: 24px;
  height: 24px;
  color: currentColor;
}
.nav-svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  overflow: visible;
}
.nav-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mini-svg {
  width: 44px;
  height: 44px;
  color: #072b72;
  overflow: visible;
}
.mini-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-mark.person::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.nav-mark.person::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 18px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 4px 4px;
}
.nav-mark.cap::before {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 0 0 8px 8px;
}
.nav-mark.cap::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 2px 2px;
}
.nav-mark.hands::before,
.nav-mark.hands::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  top: 8px;
  border: 2px solid currentColor;
  border-radius: 7px;
}
.nav-mark.hands::before { left: 0; transform: rotate(35deg); }
.nav-mark.hands::after { right: 0; transform: rotate(-35deg); }
.nav-mark.box::before {
  content: "";
  position: absolute;
  inset: 4px 3px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.nav-mark.box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;
  width: 7px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 92px;
  }
  .brand {
    min-width: 320px;
    padding-left: 0;
  }
  .brand img {
    position: static;
    width: 78px;
    height: 78px;
  }
  .brand-copy strong,
  .brand-copy em { white-space: normal; }
  .main-nav { gap: 12px; }
  .main-nav a:not(.nav-donate) .nav-mark { display: none; }
  .commitment-band {
    grid-template-columns: 1fr;
  }
  .donation-callout {
    grid-template-columns: 54px 1fr auto;
  }
  .donation-callout .button {
    grid-column: auto;
    width: auto;
  }
}

@media (max-width: 920px) {
  section[id] { scroll-margin-top: 96px; }
  .site-header {
    min-height: 84px;
  }
  .brand {
    min-width: 0;
  }
  .brand-copy strong,
  .brand-copy em {
    font-size: clamp(1.5rem, 6vw, 2.6rem);
  }
  .brand-copy small { display: none; }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    padding: 18px;
    background: #041126;
    border-top: 1px solid rgba(255, 255, 255, .12);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    justify-content: center;
  }
  .main-nav a.active::after { bottom: 0; }
  .hero-shell {
    min-height: 520px;
  }
  .scene-police {
    width: 55%;
    opacity: .45;
  }
  .scene-fire {
    left: 42%;
    width: 40%;
    opacity: .58;
  }
  .scene-ems {
    left: 70%;
    width: 36%;
    opacity: .45;
  }
  .service-strip,
  .commitment-band,
  .contact-panel {
    width: min(100% - 28px, 720px);
  }
  .service-strip,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .commitment-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-list li {
    border-right: 0;
    border-bottom: 1px solid #c5cfdf;
  }
  .donation-callout {
    grid-template-columns: 54px 1fr;
  }
  .donation-callout .button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .mission-footer { text-align: center; }
  .mission-panel {
    width: min(100% - 28px, 720px);
    padding: 28px 22px;
  }
  .mission-copy {
    columns: 1;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding-inline: 12px;
  }
  .brand img {
    width: 64px;
    height: 64px;
  }
  .brand-copy strong,
  .brand-copy em {
    font-size: 1.55rem;
  }
  .hero-content {
    padding-top: 58px;
    padding-inline: 14px;
    width: 100%;
  }
  h1 {
    font-size: clamp(2.1rem, 10.2vw, 2.55rem);
    line-height: .98;
  }
  .hero-content p {
    max-width: 320px;
    font-size: .96rem;
  }
  .button {
    font-size: 1.12rem;
  }
  .service-card h2 {
    font-size: 2.35rem;
  }
  .service-card p {
    max-width: 300px;
    font-size: .92rem;
  }
  .service-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-icon {
    margin: 0 auto;
  }
  .service-card p {
    margin-inline: auto;
  }
  .commitment-band {
    padding: 22px 18px;
  }
  .commitment-list ul {
    grid-template-columns: 1fr;
  }
}
