:root {
  --navy: #0c2b3d;
  --navy-deep: #071d2a;
  --blue: #075d83;
  --blue-bright: #0b729d;
  --teal: #168c91;
  --aqua: #73ced4;
  --gold: #f1b541;
  --red: #b42332;
  --red-deep: #8f1825;
  --ink: #173443;
  --muted: #536874;
  --line: #d9e3e7;
  --mist: #edf6f7;
  --cream: #fbf7ed;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(7, 35, 51, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 35, 51, 0.16);
  --radius-sm: 0.55rem;
  --radius: 1rem;
  --radius-lg: 1.6rem;
  --container: 74rem;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--blue);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--navy);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  color: var(--navy);
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 48rem);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.event-spotlight {
  color: var(--white);
  background:
    radial-gradient(circle at 70% -70%, rgba(115, 206, 212, 0.25), transparent 28rem),
    linear-gradient(112deg, var(--navy-deep), var(--blue));
  border-bottom: 0.35rem solid var(--gold);
}

.event-spotlight__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-block: clamp(1.35rem, 3vw, 2.2rem);
}

.event-spotlight__date {
  display: grid;
  place-items: center;
  width: 6.25rem;
  min-height: 6.25rem;
  padding: 0.55rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.event-spotlight__date span,
.event-spotlight__date small {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.event-spotlight__date strong {
  font-family: var(--font-display);
  font-size: 2.65rem;
}

.event-spotlight__copy h2 {
  margin: 0.15rem 0 0.35rem;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  letter-spacing: -0.025em;
}

.event-spotlight__copy p {
  margin: 0;
  color: #d8edf1;
  font-size: 0.95rem;
}

.event-spotlight__kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-spotlight__actions {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 15rem);
  text-align: center;
}

.event-spotlight__flyer {
  min-height: 2.25rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.event-spotlight__flyer:hover {
  color: var(--gold);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section--compact {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.section--mist {
  background: var(--mist);
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  color: #dcebf0;
  background: var(--navy);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-heading.centered {
  margin-inline: auto;
}

.section-heading p {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.section-heading.centered p {
  margin-inline: auto;
}

.section--navy .section-heading p {
  color: #bdd1d9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero__content,
.hero__media,
.page-hero__content,
.split > *,
.event-detail > *,
.program-band > *,
.giving-grid > *,
.profile-card > *,
.event-card > *,
.section-heading,
.brand {
  min-width: 0;
}

.eyebrow::before {
  width: 1.8rem;
  height: 0.18rem;
  background: var(--gold);
  border-radius: 999px;
  content: "";
}

.eyebrow--light {
  color: var(--aqua);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.small {
  font-size: 0.88rem;
}

.muted {
  color: var(--muted);
}

.text-ink {
  color: var(--ink);
}

.lead--light {
  color: #c6dae2;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-1-5 {
  margin-top: 1.5rem;
}

.mt-2-5 {
  margin-top: 2.5rem;
}

.button-row--center {
  justify-content: center;
}

.address {
  font-style: normal;
}

.error-page {
  display: grid;
  min-height: 70vh;
  align-items: center;
}

.kicker {
  color: var(--blue);
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  color: var(--blue);
  background: var(--mist);
  border: 1px solid #cee2e6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tag--gold {
  color: var(--navy);
  background: #fff3d5;
  border-color: #f0d58d;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.72rem 1.15rem;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 25px rgba(7, 35, 51, 0.15);
  transform: translateY(-2px);
}

.button--danger {
  background: var(--red);
  border-color: var(--red);
}

.button--danger:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.button--gold {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.button--gold:hover {
  color: var(--white);
}

.button--outline {
  color: var(--blue);
  background: transparent;
  border-color: #93bbc9;
}

.button--outline:hover {
  color: var(--white);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.2rem);
}

.crisis-bar {
  color: var(--white);
  background: var(--navy-deep);
  font-size: 0.84rem;
  line-height: 1.4;
}

.crisis-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding-block: 0.45rem;
  text-align: center;
  overflow-wrap: anywhere;
}

.crisis-bar a {
  color: var(--white);
  font-weight: 850;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 18px rgba(7, 35, 51, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(12rem, 17rem) 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(100%, 16rem);
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li + li {
  margin-top: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.6rem 0.72rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
  background: var(--mist);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.nav-mobile-only {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-actions .button {
  min-height: 2.75rem;
  padding-inline: 0.9rem;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before {
  position: absolute;
  top: -0.4rem;
}

.nav-toggle__bars::after {
  position: absolute;
  top: 0.4rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(115, 206, 212, 0.3), transparent 25rem),
    linear-gradient(135deg, #f6fbfc 0%, #ffffff 55%, #fbf7ed 100%);
}

.hero::before {
  position: absolute;
  inset: auto -7rem -12rem auto;
  width: 30rem;
  height: 30rem;
  background: transparent;
  border: 5rem solid rgba(241, 181, 65, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(25rem, 0.97fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  min-height: 42rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__content {
  max-width: 43rem;
}

.hero__content h1 {
  max-width: 11ch;
}

.hero__content .lead {
  max-width: 39rem;
}

.hero__media {
  position: relative;
}

.video-card {
  overflow: hidden;
  background: var(--navy);
  border: 0.55rem solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-launch {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 0;
  cursor: pointer;
}

.video-launch::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 29, 42, 0.76));
  content: "";
}

.video-launch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-launch:hover img {
  transform: scale(1.02);
}

.video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  color: var(--white);
  background: rgba(7, 29, 42, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.video-play__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding-left: 0.15rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.85rem;
}

.video-noscript {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.84rem;
}

.video-caption a {
  color: var(--aqua);
  font-weight: 750;
}

.trust-strip {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--blue);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 1.35rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.trust-item span {
  color: #d6f0f3;
  font-size: 0.82rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
}

.card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.card__rule {
  width: 3rem;
  height: 0.28rem;
  margin-bottom: 1.25rem;
  background: var(--aqua);
  border-radius: 99px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card .text-link {
  margin-top: auto;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.event-card__image {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.event-card__image--pattern {
  object-position: center;
}

.event-card__content {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.event-date {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.event-date__day {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.9;
}

.event-date__meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.event-card__content .text-link,
.event-card__content .button {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.split--top {
  align-items: start;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  max-height: 38rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split__media::after {
  position: absolute;
  z-index: -1;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 52%;
  height: 48%;
  background: var(--gold);
  border-radius: var(--radius-lg);
  content: "";
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.76rem;
  font-weight: 900;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
}

.profile-card--greg img {
  object-position: 68% center;
}

.profile-card--philip img {
  object-position: 52% 28%;
}

.profile-card__content {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.profile-card__role {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.donation-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(7, 35, 51, 0.96), rgba(7, 93, 131, 0.9)),
    url("../images/comec-pattern.webp") center / cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.donation-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.donation-panel h2 {
  max-width: 15ch;
  color: var(--white);
}

.donation-panel p {
  max-width: 39rem;
  color: #d4e9ef;
}

.qr-card {
  width: min(100%, 15rem);
  padding: 0.8rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(115, 206, 212, 0.32), transparent 23rem),
    linear-gradient(135deg, #eff8fa, #ffffff 63%);
}

.page-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border: 3.5rem solid rgba(241, 181, 65, 0.15);
  border-radius: 50%;
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 49rem;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-hero .lead {
  max-width: 43rem;
  margin-bottom: 0;
}

.emergency-panel {
  color: var(--white);
  background: var(--red);
}

.emergency-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-block: 2rem;
}

.emergency-panel h2 {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.emergency-panel p {
  margin-bottom: 0;
  color: #ffe7e9;
}

.emergency-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.emergency-panel .button {
  color: var(--red-deep);
  background: var(--white);
  border-color: var(--white);
}

.emergency-panel .button:hover {
  color: var(--white);
  background: var(--red-deep);
  border-color: var(--white);
}

.scenario-list {
  display: grid;
  gap: 1rem;
}

.scenario {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.scenario:hover {
  color: inherit;
  border-color: #8bb9c8;
  box-shadow: 0 14px 36px rgba(7, 35, 51, 0.12);
}

.scenario__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.scenario h3 {
  margin-bottom: 0.15rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
}

.scenario p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.scenario__arrow {
  color: var(--blue);
  font-size: 1.6rem;
}

.help-section {
  scroll-margin-top: 7rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.help-section + .help-section {
  margin-top: 1.25rem;
}

.help-section__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.help-section__top h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.help-section__top .tag {
  flex: 0 0 auto;
}

.steps {
  counter-reset: help-steps;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 2.25rem;
  padding-left: 3.1rem;
  counter-increment: help-steps;
}

.steps li::before {
  position: absolute;
  top: -0.15rem;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  content: counter(help-steps);
  font-weight: 850;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resource-card h2,
.resource-card h3 {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  line-height: 1.3;
}

.resource-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.resource-card .text-link,
.resource-card .button {
  margin-top: auto;
}

.phone-link {
  display: inline-block;
  margin: 0.25rem 0 0.9rem;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.notice {
  padding: 1.25rem 1.4rem;
  background: #fff8e5;
  border: 1px solid #ecd89f;
  border-left: 0.35rem solid var(--gold);
  border-radius: var(--radius-sm);
}

.notice--blue {
  background: var(--mist);
  border-color: #c9e2e7;
  border-left-color: var(--blue);
}

.notice strong {
  color: var(--navy);
}

.program-band {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.program-band:first-child {
  padding-top: 0;
  border-top: 0;
}

.program-band:last-child {
  padding-bottom: 0;
}

.program-band__title {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.program-band__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1.4rem;
  background: var(--mist);
  border-radius: var(--radius);
}

.mini-card h3 {
  font-family: var(--font-sans);
  font-size: 1.08rem;
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  scroll-margin-top: 7rem;
}

.event-detail + .event-detail {
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-top: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.event-detail__media {
  position: sticky;
  top: 8rem;
}

.event-detail__media img {
  width: 100%;
  min-height: 30rem;
  max-height: 43rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.event-detail__media .event-card__image--pattern {
  object-position: center;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 13rem;
  gap: 0.85rem;
}

.photo-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.photo-gallery figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.photo-gallery figure:nth-child(2),
.photo-gallery figure:nth-child(3) {
  grid-column: span 5;
}

.photo-gallery figure:nth-child(4),
.photo-gallery figure:nth-child(5),
.photo-gallery figure:nth-child(6) {
  grid-column: span 4;
}

.photo-gallery figure:nth-child(7),
.photo-gallery figure:nth-child(8) {
  grid-column: span 6;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.photo-gallery figure:hover img {
  transform: scale(1.025);
}

.photo-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1rem 0.85rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7, 29, 42, 0.9));
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.3;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.event-meta__item {
  padding: 1rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
}

.event-meta__item strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-meta__item span,
.event-meta__item a {
  display: block;
  margin-top: 0.18rem;
  color: var(--ink);
  font-weight: 650;
}

.price-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.price-table caption {
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 0.8rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 7rem;
  text-align: right;
  white-space: nowrap;
}

.price-table thead th {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fact {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fact strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--navy);
  border-left: 0.35rem solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.35;
}

.transparency-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transparency-list li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.transparency-list strong {
  color: var(--navy);
}

.giving-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.giving-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.giving-card--primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.giving-card--primary h2,
.giving-card--primary h3 {
  color: var(--white);
}

.giving-card--primary p {
  color: #c9dce3;
}

.giving-card .qr-card {
  margin-top: 1.5rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  color: var(--ink);
  background: var(--mist);
  border-radius: var(--radius-lg);
}

.contact-card h2,
.contact-card h3 {
  color: var(--navy);
}

.contact-card address {
  font-style: normal;
}

.contact-card .phone-link {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.site-footer {
  color: #bdd0d9;
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(17rem, 1.2fr) repeat(3, minmax(9rem, 0.6fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-brand img {
  width: min(100%, 16rem);
  margin-bottom: 1.25rem;
  padding: 0.35rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.footer-brand p {
  max-width: 28rem;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  color: #dbe8ed;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--aqua);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
}

.volunteer-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(115, 206, 212, 0.24), transparent 22rem),
    linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 54%, var(--blue) 100%);
}

.volunteer-hero::before {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 34rem;
  height: 34rem;
  border: 5.5rem solid rgba(241, 181, 65, 0.13);
  border-radius: 50%;
  content: "";
}

.volunteer-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  min-height: 39rem;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.volunteer-hero__content,
.volunteer-hero__panel,
.volunteer-role,
.volunteer-callout > * {
  min-width: 0;
}

.volunteer-hero h1 {
  max-width: 11ch;
  color: var(--white);
}

.volunteer-hero .lead {
  max-width: 43rem;
}

.volunteer-hero__panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.volunteer-hero__panel-label {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.volunteer-path {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.4rem;
  padding-block: 1rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.volunteer-path:hover {
  color: var(--gold);
}

.volunteer-path__number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.volunteer-path strong,
.volunteer-path small {
  display: block;
}

.volunteer-path strong {
  font-size: 1rem;
}

.volunteer-path small {
  margin-top: 0.15rem;
  color: #c8dce4;
  font-size: 0.8rem;
  line-height: 1.4;
}

.volunteer-path > span:last-child {
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.volunteer-path:hover > span:last-child {
  transform: translateX(0.2rem);
}

.volunteer-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.volunteer-role {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0.4rem solid var(--aqua);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 7rem;
}

.volunteer-role:nth-child(2) {
  border-top-color: var(--gold);
}

.volunteer-role:nth-child(3) {
  border-top-color: var(--teal);
}

.volunteer-role__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.35rem, 2.5vw, 2rem) 0;
}

.volunteer-role__number {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
}

.volunteer-role__body {
  flex: 1;
  padding: 1.15rem clamp(1.35rem, 2.5vw, 2rem) 1.75rem;
}

.volunteer-role__body h3 {
  margin-bottom: 0.45rem;
}

.volunteer-role__intro {
  min-height: 5.2rem;
  color: var(--muted);
}

.volunteer-role__body h4 {
  margin-top: 1.5rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.volunteer-role__body .check-list {
  margin-bottom: 0;
}

.volunteer-role__body .check-list li {
  font-size: 0.92rem;
}

.volunteer-role__footer {
  padding: 1.15rem clamp(1.35rem, 2.5vw, 2rem);
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.volunteer-role__footer strong,
.volunteer-role__footer span {
  display: block;
}

.volunteer-role__footer strong {
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volunteer-role__footer span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.volunteer-photo {
  position: relative;
  margin: 0;
}

.volunteer-photo::after {
  position: absolute;
  z-index: -1;
  right: -1.1rem;
  bottom: -1.1rem;
  width: 54%;
  height: 48%;
  background: var(--gold);
  border-radius: var(--radius-lg);
  content: "";
}

.volunteer-photo img {
  width: 100%;
  min-height: 30rem;
  max-height: 38rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.volunteer-photo figcaption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  background: rgba(7, 29, 42, 0.9);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  line-height: 1.35;
}

.volunteer-steps {
  display: grid;
  gap: 0;
}

.volunteer-step {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.volunteer-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
}

.volunteer-step h3 {
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
}

.volunteer-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.volunteer-formats .fact {
  border-top: 0.28rem solid var(--gold);
}

.volunteer-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.volunteer-callout__intro h2 {
  max-width: 12ch;
}

.volunteer-callout__roles {
  display: grid;
  gap: 0.75rem;
}

.volunteer-callout__role {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  text-decoration: none;
}

.volunteer-callout__role:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.volunteer-callout__role > span:first-child {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.volunteer-callout__role strong,
.volunteer-callout__role small {
  display: block;
}

.volunteer-callout__role small {
  margin-top: 0.08rem;
  color: #bcd1da;
  font-size: 0.78rem;
}

.volunteer-callout__role > span:last-child {
  font-size: 1.25rem;
}

@media (max-width: 70rem) {
  .header-inner {
    grid-template-columns: minmax(11rem, 15rem) 1fr auto;
    gap: 0.75rem;
  }

  .site-nav a {
    padding-inline: 0.5rem;
    font-size: 0.82rem;
  }

  .header-actions .button--outline {
    display: none;
  }

  .event-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.6fr);
    gap: 2rem;
  }
}

@media (max-width: 60rem) {
  .volunteer-hero__inner,
  .volunteer-callout {
    grid-template-columns: 1fr;
  }

  .volunteer-hero__inner {
    min-height: auto;
    gap: 2.75rem;
  }

  .volunteer-hero__panel {
    width: min(100%, 42rem);
  }

  .volunteer-role-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-role__intro {
    min-height: 0;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: minmax(0, 16rem) auto;
    min-height: 5rem;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 0.2rem;
  }

  .nav-mobile-only {
    display: list-item;
  }

  .site-nav a {
    display: flex;
    min-height: 3.25rem;
    padding-inline: 0.9rem;
    font-size: 1rem;
  }

  .site-nav a[aria-current="page"] {
    background: var(--mist);
    box-shadow: inset 4px 0 0 var(--gold);
  }

  .header-actions {
    display: none;
  }

  .event-spotlight__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .event-spotlight__actions {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 15rem) auto;
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    max-width: 48rem;
  }

  .hero__content h1 {
    max-width: 12ch;
  }

  .hero__media {
    width: min(100%, 42rem);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-detail,
  .giving-grid {
    grid-template-columns: 1fr;
  }

  .event-detail__media {
    position: relative;
    top: auto;
  }

  .event-detail__media img {
    min-height: 24rem;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 15rem;
  }

  .photo-gallery figure,
  .photo-gallery figure:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-gallery figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 46rem) {
  .volunteer-hero__inner {
    padding-block: 3.75rem;
  }

  .volunteer-hero h1 {
    max-width: none;
  }

  .volunteer-hero__panel {
    padding: 1rem 1.15rem;
  }

  .volunteer-path {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .volunteer-photo::after {
    right: 0;
    bottom: -0.75rem;
  }

  .volunteer-photo img {
    min-height: 22rem;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .crisis-bar__inner {
    display: block;
    padding-block: 0.65rem;
  }

  .header-inner {
    grid-template-columns: minmax(0, 13rem) auto;
    justify-content: space-between;
  }

  .event-spotlight__date {
    width: 5.25rem;
    min-height: 5.25rem;
  }

  .event-spotlight__date strong {
    font-size: 2.15rem;
  }

  .event-spotlight__copy h2 {
    font-size: 1.35rem;
  }

  .event-spotlight__actions {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-spotlight__actions .button {
    width: 100%;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero__inner {
    gap: 2.5rem;
    padding-block: 3.5rem;
  }

  .video-card {
    border-width: 0.3rem;
    transform: none;
  }

  .video-caption {
    display: block;
  }

  .video-caption a {
    display: inline-block;
    margin-top: 0.35rem;
  }

  .card-grid,
  .card-grid--2,
  .card-grid--4,
  .resource-grid,
  .about-facts,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .profile-card,
  .split,
  .program-band {
    grid-template-columns: 1fr;
  }

  .split__media::after {
    right: 0;
    bottom: -0.75rem;
  }

  .event-card__image {
    min-height: 15rem;
    max-height: 18rem;
  }

  .profile-card img {
    min-height: 22rem;
    max-height: 28rem;
  }

  .program-band__title {
    position: relative;
    top: auto;
  }

  .donation-panel__inner {
    grid-template-columns: 1fr;
  }

  .qr-card {
    width: min(100%, 13rem);
  }

  .emergency-panel__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .emergency-panel__actions,
  .emergency-panel__actions .button {
    width: 100%;
  }

  .scenario {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .scenario__number {
    width: 2.75rem;
    height: 2.75rem;
  }

  .scenario__arrow {
    display: none;
  }

  .help-section__top {
    display: block;
  }

  .help-section__top .tag {
    margin-bottom: 0.8rem;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 16rem;
  }

  .photo-gallery figure,
  .photo-gallery figure:nth-child(n),
  .photo-gallery figure:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .price-table {
    font-size: 0.84rem;
  }

  .price-table th,
  .price-table td {
    padding-inline: 0.35rem;
  }

  .transparency-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 0.65rem;
  }
}

@media (max-width: 28rem) {
  h1 {
    font-size: 2.45rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .crisis-bar,
  .site-header,
  .site-footer,
  .button,
  .video-card {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .page-hero {
    padding-block: 1rem;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .card,
  .help-section,
  .resource-card,
  .volunteer-role,
  .volunteer-photo img {
    box-shadow: none;
    break-inside: avoid;
  }

  .volunteer-hero {
    color: #000;
    background: #fff;
  }

  .volunteer-hero h1,
  .volunteer-path,
  .volunteer-path small {
    color: #000;
  }
}
