:root {
  --ink: #010033;
  --muted: #6a5d65;
  --ocean: #010033;
  --deep-ocean: #010033;
  --leaf: #C40275;
  --gold: #C40275;
  --coral: #E65AA6;
  --mist: #fff0f7;
  --paper: #fff8fb;
  --white: #ffffff;
  --line: rgba(1, 0, 51, 0.14);
  --shadow: 0 22px 60px rgba(1, 0, 51, 0.2);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: 6px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: var(--header-height);
  background: rgba(255, 248, 251, 0.93);
  border-bottom: 1px solid rgba(1, 0, 51, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(128px, 13vw, 190px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(9px, 1.05vw, 17px);
  color: var(--deep-ocean);
  font-size: clamp(0.8rem, 0.88vw, 0.9rem);
  font-weight: 800;
}

.nav-links a:not(.nav-button) {
  position: relative;
  padding: 10px 0;
}

.nav-links a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-button,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.nav-button {
  background: var(--deep-ocean);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(196, 2, 117, 0.22);
}

.nav-button.donate-button {
  background: var(--gold);
  color: var(--white);
}

.button.primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(196, 2, 117, 0.32);
}

.button.donate {
  background: var(--deep-ocean);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(196, 2, 117, 0.28);
}

.button.secondary {
  background: var(--white);
  color: var(--ocean);
  border-color: rgba(196, 2, 117, 0.28);
}

.button.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  height: clamp(520px, 64svh, 650px);
  min-height: 0;
  margin-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  color: var(--white);
  background: var(--deep-ocean);
}

.hero::before {
  content: none;
}

.hero-media,
.hero-media::after {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #2f2f2f 0%, #373737 36%, #6f6f6f 72%, #c4c4c4 100%);
}

.hero-media img {
  width: min(82%, 940px);
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.hero-media::after {
  content: none;
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  width: min(520px, calc(100% - 44px));
  justify-self: end;
  margin-right: clamp(18px, 3vw, 44px);
  padding: 30px 0 38px 24px;
  border-left: 8px solid var(--gold);
  background: var(--deep-ocean);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 1.02;
}

h1 {
  max-width: 11.7ch;
  font-size: clamp(2.7rem, 4.25vw, 4.1rem);
  text-shadow: none;
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.3rem);
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-panel p:not(.eyebrow) {
  max-width: 500px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.22vw, 1.13rem);
  font-weight: 650;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding: 14px 22px;
  background: rgba(255, 240, 247, 0.96);
  color: var(--deep-ocean);
  font-weight: 950;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.page-hero {
  margin-top: var(--header-height);
  padding: 88px 0;
  background: var(--deep-ocean);
  color: var(--white);
}

.volunteer-hero {
  padding-bottom: 46px;
}

.volunteer-form-section {
  padding-top: 50px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 650;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-hero-photo {
  object-position: center 18%;
}

.hero-photo-collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  align-self: stretch;
  min-height: 420px;
}

.hero-photo-collage img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  grid-row: 1 / span 2;
  object-position: 82% center;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-band {
  padding: 92px 0;
  background: var(--white);
}

.home-pages {
  padding-top: 58px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

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

.detail-card {
  position: relative;
  display: block;
  min-height: 190px;
  padding: 30px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(196, 2, 117, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(1, 0, 51, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
  transform: scaleY(0.38);
  transform-origin: top;
  transition: transform 160ms ease;
}

.detail-card::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep-ocean);
  color: var(--white);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.detail-card:hover,
.detail-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(196, 2, 117, 0.5);
  box-shadow: 0 22px 46px rgba(1, 0, 51, 0.13);
}

.detail-card:hover::before,
.detail-card:focus-visible::before {
  transform: scaleY(1);
}

.detail-card:hover::after,
.detail-card:focus-visible::after {
  transform: translateX(3px);
  background: var(--gold);
}

.detail-card h3 {
  padding-right: 42px;
  color: var(--ocean);
  font-size: 1.35rem;
}

.detail-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-panel {
  padding: 104px 0;
  background: var(--paper);
}

.endorsements-section {
  padding: 104px 0;
  background: var(--paper);
}

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

.endorsement-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.endorsement-logo-card {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(1, 0, 51, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(1, 0, 51, 0.06);
}

.endorsement-logo-card.wide {
  grid-column: span 2;
}

.endorsement-logo-card img {
  width: 100%;
  max-width: 260px;
  max-height: 160px;
  object-fit: contain;
}

.endorsement-logo-card.wide img {
  max-width: 520px;
  max-height: 135px;
}

.endorsement-logo-card.tall img {
  max-height: 190px;
}

.endorsement-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(196, 2, 117, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(1, 0, 51, 0.07);
}

.endorsement-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.endorsement-card h3 {
  color: var(--deep-ocean);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.endorsement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.delivers-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
}

.deliver-stat-panel {
  display: grid;
  gap: 16px;
}

.deliver-stat-panel div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.deliver-stat-panel span {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: 0.94;
}

.deliver-stat-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.deliver-map-section {
  padding: 92px 0;
  background: var(--white);
}

.deliver-heading {
  max-width: 800px;
}

.deliver-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(1, 0, 51, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 46px rgba(1, 0, 51, 0.1);
}

.deliver-map {
  min-height: 640px;
  background: #f1eef2;
}

.deliver-project-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  border-left: 1px solid rgba(1, 0, 51, 0.12);
  background: var(--paper);
}

.deliver-panel-top {
  padding: 20px;
  border-bottom: 1px solid rgba(1, 0, 51, 0.12);
}

.deliver-panel-top label {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-ocean);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.deliver-panel-top input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(1, 0, 51, 0.2);
  border-radius: 6px;
  background: var(--white);
  color: var(--deep-ocean);
}

.deliver-list {
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: 560px;
  overflow: auto;
  padding: 20px;
}

.deliver-project-card {
  width: 100%;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(196, 2, 117, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-ocean);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(1, 0, 51, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.deliver-project-card:hover,
.deliver-project-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 2, 117, 0.5);
  box-shadow: 0 16px 30px rgba(1, 0, 51, 0.11);
  outline: none;
}

.deliver-project-card span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.deliver-project-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.deliver-project-card small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.deliver-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.deliver-source a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.deliver-pin {
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(1, 0, 51, 0.32);
}

.deliver-pin span {
  font-size: 0.86rem;
  font-weight: 950;
}

.deliver-popup {
  color: var(--deep-ocean);
}

.deliver-popup strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 950;
}

.deliver-popup article + article {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(1, 0, 51, 0.12);
}

.deliver-popup h3 {
  margin: 0 0 6px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.deliver-popup p {
  margin: 0;
}

.deliver-popup .popup-amount {
  margin-bottom: 5px;
  color: var(--gold);
  font-weight: 950;
}

.map-error {
  margin: 0;
  padding: 24px;
  color: var(--deep-ocean);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(196, 2, 117, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-ocean);
  font-weight: 900;
}

.bio-section {
  padding: 104px 0;
  background: var(--white);
}

.bio-list {
  display: grid;
  gap: 20px;
}

.bio-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.bio-item:nth-child(even) img {
  order: 2;
}

.bio-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(1, 0, 51, 0.12);
}

.bio-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.bio-item p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-gallery {
  padding: 94px 0;
  background: var(--mist);
}

.section-heading.compact {
  max-width: 760px;
}

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

.about-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(1, 0, 51, 0.1);
}

.intro-band {
  padding: 72px 0;
  background: var(--deep-ocean);
  color: var(--white);
}

.intro-grid,
.split-grid,
.district-grid,
.volunteer-grid,
.updates-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-grid p:last-child {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.split-section {
  padding: 104px 0;
  background: var(--paper);
}

.image-stack {
  position: relative;
  min-height: 590px;
}

.image-stack img,
.photo-slide img,
.priority-card img {
  object-fit: cover;
}

.image-large {
  width: 88%;
  height: 490px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 260px;
  border: 10px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.copy-block p {
  color: var(--muted);
  font-size: 1.04rem;
}

.copy-block .eyebrow,
.section-heading .eyebrow,
.district-copy .eyebrow,
.volunteer-copy .eyebrow,
.updates .eyebrow {
  color: var(--leaf);
}

.fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fact-strip span,
.district-list span {
  padding: 10px 12px;
  border: 1px solid rgba(196, 2, 117, 0.22);
  border-radius: 6px;
  background: var(--mist);
  color: var(--deep-ocean);
  font-weight: 850;
}

.priorities {
  padding: 104px 0;
  background: var(--mist);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.priority-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(1, 0, 51, 0.08);
}

.priority-card img {
  width: 100%;
  height: 220px;
  flex: 0 0 220px;
  object-fit: cover;
}

.priority-card div {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 24px;
  background: var(--white);
}

.priority-card h3 {
  color: var(--ocean);
}

.priority-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.district {
  padding: 86px 0;
  background: var(--white);
}

.district-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.district-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.district-list span:nth-child(3n + 1) {
  background: #fde0ef;
  border-color: rgba(196, 2, 117, 0.34);
}

.district-list span:nth-child(3n + 2) {
  background: #f2edf0;
  border-color: rgba(1, 0, 51, 0.16);
}

.photo-band {
  position: relative;
  overflow: hidden;
  background: var(--deep-ocean);
}

.photo-window {
  overflow: hidden;
}

.photo-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.photo-slide {
  flex: 0 0 33.3333%;
  margin: 0;
  background: var(--deep-ocean);
}

.photo-slide img {
  width: 100%;
  height: clamp(260px, 32vw, 430px);
  object-fit: cover;
}

.photo-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(1, 0, 51, 0.76);
  color: var(--white);
  cursor: pointer;
  font-size: 2.3rem;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.photo-arrow:hover,
.photo-arrow:focus-visible {
  background: var(--gold);
  transform: translateY(-50%) scale(1.04);
}

.photo-arrow-prev {
  left: 16px;
}

.photo-arrow-next {
  right: 16px;
}

.photo-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(1, 0, 51, 0.64);
  transform: translateX(-50%);
}

.photo-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.photo-dot[aria-current="true"] {
  width: 24px;
  background: var(--gold);
}

.volunteer {
  padding: 104px 0;
  background: var(--deep-ocean);
  color: var(--white);
}

.volunteer-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 16px;
  height: 4px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: translateY(-50%) rotate(-45deg);
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label,
legend {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--gold);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #ffd4e7;
  font-weight: 800;
}

.updates {
  padding: 62px 0;
  background: var(--gold);
}

.updates-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.updates h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.updates .eyebrow {
  color: var(--white);
}

.mini-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.mini-form input {
  border-color: rgba(1, 0, 51, 0.2);
}

.site-footer {
  padding: 60px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(180px, 0.5fr);
}

.footer-brand .brand-logo {
  width: min(230px, 100%);
  height: 74px;
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 42px auto 0;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100svh - var(--header-height));
    padding: 28px;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 16px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .intro-grid,
  .split-grid,
  .district-grid,
  .volunteer-grid,
  .updates-grid,
  .footer-grid,
  .page-hero-grid,
  .delivers-hero .page-hero-grid,
  .contact-grid,
  .deliver-map-shell,
  .bio-item {
    grid-template-columns: 1fr;
  }

  .deliver-project-panel {
    border-top: 1px solid rgba(1, 0, 51, 0.12);
    border-left: 0;
  }

  .deliver-list {
    max-height: none;
  }

  .hero-photo-collage {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .hero-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-photo-collage img {
    aspect-ratio: 4 / 3;
  }

  .bio-item:nth-child(even) img {
    order: 0;
  }

  .priority-grid,
  .detail-grid,
  .endorsement-grid,
  .endorsement-logo-grid,
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .district-list {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .nav {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-logo {
    width: 118px;
    height: 48px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-media,
  .hero-media::after {
    grid-column: 1;
    grid-row: 1;
    height: min(82vw, 360px);
    min-height: 0;
  }

  .hero-media img {
    width: 100%;
    object-position: center 24%;
  }

  .hero-media::after {
    content: "";
    background:
      linear-gradient(0deg, var(--deep-ocean), rgba(1, 0, 51, 0) 42%),
      linear-gradient(90deg, rgba(196, 2, 117, 0.16), rgba(1, 0, 51, 0));
  }

  .hero::before {
    content: none;
  }

  .hero-panel {
    grid-column: 1;
    grid-row: 2;
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 26px 0 42px 18px;
    border-left-width: 5px;
  }

  h1 {
    max-width: 10.6ch;
    font-size: clamp(2.75rem, 13vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.25rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-ribbon {
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.82rem;
  }

  .intro-band,
  .split-section,
  .priorities,
  .volunteer,
  .page-hero,
  .detail-band,
  .contact-panel,
  .endorsements-section,
  .deliver-map-section,
  .bio-section,
  .about-gallery {
    padding: 72px 0;
  }

  .deliver-map-shell,
  .deliver-map {
    min-height: 440px;
  }

  .volunteer-hero {
    padding-bottom: 34px;
  }

  .volunteer-form-section {
    padding-top: 36px;
  }

  .image-stack {
    min-height: auto;
  }

  .image-large,
  .image-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

  .image-small {
    margin-top: 14px;
  }

  .priority-grid,
  .detail-grid,
  .endorsement-grid,
  .endorsement-logo-grid,
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .endorsement-logo-card,
  .endorsement-logo-card.wide {
    grid-column: auto;
  }

  .endorsement-logo-card {
    min-height: 190px;
  }

  .endorsement-logo-card img,
  .endorsement-logo-card.wide img,
  .endorsement-logo-card.tall img {
    max-width: 100%;
    max-height: 140px;
  }

  .photo-slide {
    flex-basis: 100%;
  }

  .photo-slide img {
    height: min(78vw, 360px);
  }

  .photo-arrow {
    width: 40px;
    height: 48px;
    font-size: 2rem;
  }

  .photo-arrow-prev {
    left: 10px;
  }

  .photo-arrow-next {
    right: 10px;
  }

  .priority-card {
    min-height: auto;
  }

  .priority-card img {
    height: 210px;
    flex-basis: 210px;
  }

  .form-row.two,
  .checkbox-grid,
  .mini-form {
    grid-template-columns: 1fr;
  }

  .updates-grid {
    gap: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}
