:root {
  --navy: #0d1b2a;
  --navy-2: #102b43;
  --teal: #009aa6;
  --teal-dark: #007f8a;
  --gold: #ffd200;
  --white: #f6f7f8;
  --paper: #ffffff;
  --ink: #101820;
  --muted: #5d6975;
  --line: rgba(13, 27, 42, 0.14);
  --shadow: 0 18px 42px rgba(13, 27, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.top-bar {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 260px;
}

.brand img {
  width: 260px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.35vw, 1.25rem);
  font-size: clamp(0.88rem, 1.15vw, 1.05rem);
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.92;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--teal-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-button {
  display: none;
  min-width: 62px;
  min-height: 42px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  border-radius: 0;
  border: 2px solid transparent;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.button-primary:hover,
.button-primary:focus {
  background: var(--teal-dark);
}

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

.button-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

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

.button-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(0, 154, 166, 0.3);
}

.button-teal:hover,
.button-teal:focus {
  background: #00aeb8;
}

.button-black {
  background: #000000;
  color: var(--white);
}

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  min-height: calc(100vh - 148px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96) 0%, rgba(13, 27, 42, 0.86) 38%, rgba(13, 27, 42, 0.36) 100%),
    linear-gradient(180deg, rgba(13, 27, 42, 0.12) 0%, rgba(13, 27, 42, 0.3) 100%);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}

.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.02);
  animation: heroCarousel 24s infinite;
}

.hero-carousel img:nth-child(1) {
  object-position: center 42%;
  animation-delay: 0s;
}

.hero-carousel img:nth-child(2) {
  object-position: center 40%;
  animation-delay: 6s;
}

.hero-carousel img:nth-child(3) {
  object-position: center 45%;
  animation-delay: 12s;
}

.hero-carousel img:nth-child(4) {
  object-position: center 45%;
  animation-delay: 18s;
}

@keyframes heroCarousel {
  0%,
  24% {
    opacity: 1;
  }

  32%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  z-index: 3;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.45fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.82rem;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-navy .eyebrow,
.feature-band .eyebrow,
.donate-panel-head .eyebrow {
  color: var(--gold);
}

.hero .eyebrow {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  letter-spacing: 0.09em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 8vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(246, 247, 248, 0.9);
}

.hero-district-line {
  max-width: 760px;
  margin: 0.35rem 0 0;
  color: var(--white);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-parishes {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold);
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  letter-spacing: 0.14em;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-card {
  background: rgba(246, 247, 248, 0.97);
  color: var(--navy);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-top: 7px solid var(--gold);
}

.hero-card img {
  width: 86px;
  margin-bottom: 1rem;
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}

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

.amount-grid a,
.amount-grid button {
  min-height: 64px;
  border-radius: 0;
  border: 2px solid var(--navy);
  background: #000000;
  color: var(--white);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.amount-grid a:hover,
.amount-grid button:hover {
  background: var(--gold);
  color: var(--navy);
}

.amount-grid .amount-other {
  background: var(--paper);
  color: #000000;
  border-color: #000000;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.section {
  padding: 4.6rem 0;
}

.section-watermark {
  position: relative;
  overflow: hidden;
}

.section-watermark::before {
  content: "";
  position: absolute;
  inset: 8% 4% 8% auto;
  width: min(430px, 58vw);
  aspect-ratio: 1;
  background: url("assets/media/bh-round.png") center/contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.section-watermark > .container {
  position: relative;
  z-index: 1;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 0.8rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.22;
  margin-bottom: 0.55rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
}

.section-navy .lead,
.section-navy .muted {
  color: rgba(246, 247, 248, 0.78);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 1.25rem;
  align-items: start;
}

.donate-side {
  display: grid;
  gap: 1rem;
}

.donate-embed-card {
  min-height: 680px;
}

.gc-embed-wrap {
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background: rgba(13, 27, 42, 0.04);
  border: 1px solid rgba(13, 27, 42, 0.1);
}

.gc-embed-wrap iframe {
  width: 100%;
  border: 0;
  display: block;
}

.contribution-note p {
  font-size: 0.94rem;
}

.policy-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.check-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.check-list li {
  margin-bottom: 0.55rem;
}

.policy-list {
  display: grid;
  gap: 0.85rem;
}

.policy-list details {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(246, 247, 248, 0.18);
}

.policy-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  list-style: none;
}

.policy-list summary::-webkit-details-marker {
  display: none;
}

.policy-list summary span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.policy-list summary::after {
  content: "+";
  margin-left: auto;
  color: var(--teal-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.policy-list details[open] summary::after {
  content: "-";
}

.policy-body {
  padding: 0 1.25rem 1.35rem 4.1rem;
}

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

.policy-body ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.policy-body li {
  margin-bottom: 0.45rem;
}

.media-resources {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.media-preview {
  background: var(--navy);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.media-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.resource-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0;
}

.resource-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--paper);
  border-left: 8px solid var(--teal);
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.08);
}

.resource-item h3,
.resource-item p {
  margin-bottom: 0.25rem;
}

.card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.07);
}

.card-accent {
  border-top: 6px solid var(--teal);
}

.card-gold {
  border-top-color: var(--gold);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border-left: 5px solid var(--gold);
  padding-left: 1rem;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.candidate-mark {
  background: var(--navy);
  min-height: 440px;
  display: grid;
  place-items: center;
  border-radius: 0;
  padding: 2rem;
}

.candidate-mark img {
  width: min(360px, 82%);
}

.candidate-mark.photo {
  padding: 0;
  overflow: hidden;
}

.candidate-mark.photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--teal-dark);
}

.feature-band {
  background: var(--navy);
  color: var(--white);
  padding: 1.8rem 0;
}

.feature-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.request-form {
  gap: 1rem;
}

.request-form fieldset {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(13, 27, 42, 0.14);
}

.request-form legend {
  padding: 0 0.4rem;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(13, 27, 42, 0.25);
  border-radius: 6px;
  min-height: 46px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  background: var(--paper);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.fine-print {
  font-size: 0.82rem;
  color: var(--muted);
}

.hidden-field {
  display: none;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.68) 45%, rgba(13, 27, 42, 0.12) 100%),
    url("assets/media/page-hero-district-landscape-ai-v2.png") center center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
}

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

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

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.date-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.footer {
  background: #081421;
  color: rgba(246, 247, 248, 0.88);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.footer img {
  width: 175px;
  margin-bottom: 1rem;
}

.footer h3 {
  color: var(--gold);
}

.footer a {
  display: block;
  color: rgba(246, 247, 248, 0.88);
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 247, 248, 0.14);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: rgba(246, 247, 248, 0.65);
}

.donate-gate {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.82);
}

.donate-gate.is-open {
  display: grid;
}

.donate-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 860px);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  overflow: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: block;
  border: 6px solid #000000;
}

.donate-panel-head {
  display: none;
}

.donate-panel-head img,
.donate-panel-head .eyebrow,
.donate-panel-head h2 {
  display: none;
}


.donate-panel-body {
  padding: clamp(1.35rem, 4vw, 3rem);
  display: grid;
  align-content: center;
  text-align: center;
}

.donate-panel-mark {
  width: clamp(150px, 18vw, 240px);
  margin: 0 auto 1rem;
}

.donate-panel-title {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.donate-panel-body > p {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  color: #343434;
}

.donate-panel .amount-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.45rem 0;
}

.donate-now-button {
  min-width: min(100%, 300px);
  min-height: 58px;
  padding: 0.9rem 1.8rem;
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
}

.close-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.skip-button {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  font-size: 0;
  cursor: pointer;
}

.skip-button::before,
.skip-button::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.skip-button::before {
  transform: rotate(45deg);
}

.skip-button::after {
  transform: rotate(-45deg);
}

.volunteer-feature {
  background: var(--white);
  color: #333333;
  border: 8px solid #000000;
  box-shadow: 0 0 0 30px #000000;
  padding: clamp(3rem, 7vw, 7rem) 1.5rem;
  text-align: center;
  margin: 2rem auto;
}

.volunteer-feature img {
  width: 76px;
  margin: 0 auto 2rem;
  filter: brightness(0);
}

.volunteer-feature h1,
.volunteer-feature h2 {
  max-width: none;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 1.7rem;
}

.volunteer-feature p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.18rem, 2.2vw, 1.75rem);
  font-weight: 700;
}

.volunteer-feature .button {
  min-width: 190px;
  margin-top: 1.6rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-row a {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.social-icon {
  min-height: 42px;
  border-radius: 999px;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0;
  padding: 0.45rem 0.75rem;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.press-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.press-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-highlight {
  padding: 3.5rem 0;
}

.video-highlight .video-placeholder {
  margin-top: 0;
}

.video-placeholder {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 1.5rem;
  align-items: center;
  background: rgba(246, 247, 248, 0.08);
  border: 1px solid rgba(246, 247, 248, 0.18);
  padding: 1.25rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(13, 27, 42, 0.36), rgba(13, 27, 42, 0.72)),
    url("assets/media/byron-headshot.jpg") center top/cover no-repeat;
  border: 2px solid rgba(246, 247, 248, 0.82);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-area: 1 / 1;
}

.play-mark {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.65rem;
  padding-left: 0.15rem;
}

.video-placeholder h3,
.video-placeholder p {
  color: var(--white);
}

@media (max-width: 940px) {
  .nav {
    min-height: 76px;
  }

  .brand {
    min-width: 210px;
  }

  .brand img {
    width: 210px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 0.7rem 1rem 1rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 0;
    border-top: 1px solid var(--line);
  }

  .hero-inner,
  .split,
  .grid-2,
  .donate-layout,
  .media-resources,
  .press-feature,
  .footer-grid,
  .video-placeholder {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 27, 42, 0.97) 0%, rgba(13, 27, 42, 0.9) 48%, rgba(13, 27, 42, 0.56) 100%),
      linear-gradient(180deg, rgba(13, 27, 42, 0.14) 0%, rgba(13, 27, 42, 0.42) 100%);
  }

  .hero-carousel img {
    object-position: center center;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 20px, 1280px);
    gap: 0.5rem;
  }

  .brand {
    min-width: 138px;
  }

  .brand img {
    width: 138px;
  }

  .nav-actions .button {
    min-height: 40px;
    padding: 0.55rem 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .menu-button {
    min-width: 54px;
    padding: 0 0.4rem;
    font-size: 0.74rem;
  }

  .hero-inner {
    padding: 3.2rem 0 4rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .grid-3,
  .stat-row,
  .form-row,
  .timeline-item,
  .news-item,
  .resource-item {
    grid-template-columns: 1fr;
  }

  .feature-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .donate-panel .amount-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-feature {
    box-shadow: 0 0 0 14px #000000;
    border-width: 5px;
    margin: 1.2rem auto;
  }
}
