/*
Theme Name: Bridge Community Outreach
Theme URI: https://bridgethecommunityoutreach.org
Author: Bridge The Community Outreach Inc.
Description: A bold red, black, and white nonprofit outreach theme for Bridge The Community Outreach Inc.
Version: 1.0.0
Text Domain: bridge-community-outreach
*/

:root {
  --red: #d71920;
  --red-dark: #ad1419;
  --ink: #111111;
  --charcoal: #2f2f2f;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 25, 32, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.08), transparent 22rem),
    #050505;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 280px;
}

.brand img {
  width: min(280px, 48vw);
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.3vw, 1.2rem);
  color: var(--paper);
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding: 0.7rem 0;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  border: 2px solid var(--red);
  padding: 0.75rem 1rem !important;
}

.menu-button {
  display: none;
  border: 2px solid var(--red);
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.82) 46%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 52%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -2rem;
  width: 42vw;
  min-width: 320px;
  height: 160px;
  transform: skewX(-18deg);
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: 7rem 0 6.5rem;
}

.hero-text {
  max-width: 860px;
}

.hero-sign {
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.92);
  padding: clamp(1rem, 3vw, 1.6rem);
  transform: rotate(-3deg);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  text-align: center;
  text-transform: uppercase;
}

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

.hero-sign span,
.hero-sign strong,
.hero-sign small {
  display: block;
  line-height: 0.92;
}

.hero-sign span {
  color: var(--paper);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
}

.hero-sign strong {
  color: var(--red);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.4rem, 9vw, 8rem);
  font-style: italic;
}

.hero-sign small {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ink);
  background: var(--paper);
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  box-shadow: 6px 6px 0 var(--red);
}

.eyebrow {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

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

h1,
h2 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-top: 1rem;
  font-size: clamp(4.4rem, 11vw, 9.5rem);
}

h2 {
  font-size: clamp(3rem, 6.5vw, 6rem);
}

h3 {
  font-size: 1.3rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 680px;
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  padding: 0.85rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.42);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--red);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.impact-strip div {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-strip strong,
.impact-strip span {
  display: block;
}

.impact-strip strong {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.impact-strip span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.mission-section,
.programs-section,
.help-section,
.support-section {
  position: relative;
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
  background: var(--paper);
  border-top: 7px solid var(--red);
  border-bottom: 7px solid var(--ink);
  padding-right: clamp(1rem, 3vw, 2rem);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.mission-section::before,
.programs-section::before,
.help-section::before,
.support-section::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  top: 1.1rem;
  height: 2px;
  background: var(--ink);
  opacity: 0.18;
}

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

.mission-copy {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--charcoal);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.58;
}

.programs-section,
.help-section {
  border-top: 1px solid var(--line);
}

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

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

.program-card,
.support-grid article {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.25rem;
  box-shadow: 8px 8px 0 rgba(215, 25, 32, 0.22);
}

.program-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.program-card span {
  color: var(--red);
  font-weight: 900;
}

.program-card h3 {
  margin-top: auto;
  font-weight: 900;
}

.program-card p,
.support-grid p {
  margin-top: 0.8rem;
  color: var(--charcoal);
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 650;
}

.help-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: start;
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: 12px 12px 0 rgba(215, 25, 32, 0.24);
}

.help-panel > div > p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--charcoal);
  font-weight: 650;
  line-height: 1.75;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--ink);
  border: 3px solid var(--red);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
}

.full,
.request-form button,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 800;
}

.support-section {
  border-top: 1px solid var(--line);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.support-grid h3 {
  color: var(--red);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.volunteer-banner {
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) auto minmax(2rem, 1fr);
  gap: clamp(0.8rem, 3vw, 2rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 1rem clamp(0.8rem, 3vw, 1.6rem);
  background: var(--paper);
  border-block: 5px solid var(--ink);
  color: var(--ink);
  transform: rotate(-1deg);
  box-shadow: 0 16px 0 var(--red);
}

.volunteer-banner span {
  height: 4px;
  background: var(--red);
}

.volunteer-banner strong {
  color: var(--ink);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.support-actions .button {
  box-shadow: 8px 8px 0 var(--paper);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(90deg, var(--red), #a80f14);
  color: var(--paper);
  border-top: 7px solid var(--paper);
  padding: clamp(3rem, 7vw, 5rem) max(16px, calc((100vw - 1180px) / 2));
}

.contact-band h2 {
  margin-top: 0.8rem;
  max-width: 720px;
}

.contact-band p:not(.eyebrow) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 700;
}

.donation-contact-page {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.donation-contact-copy {
  color: var(--paper);
  border-left: 8px solid var(--red);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.donation-contact-copy h1 {
  margin-top: 0.8rem;
  font-size: clamp(4rem, 10vw, 8rem);
}

.donation-contact-copy p {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
  line-height: 1.65;
}

.donation-contact-details {
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.36);
  padding: 1rem;
}

.donation-contact-details strong {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.donation-contact-details a {
  color: var(--paper);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.donation-contact-form {
  border-color: var(--red);
  box-shadow: 12px 12px 0 rgba(215, 25, 32, 0.28);
}

.volunteer-page .donation-contact-form {
  align-self: center;
}

.monthly-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.donation-form-stack {
  display: grid;
  gap: 1rem;
  align-self: center;
}

.form-donation-cta {
  display: grid;
}

.form-donation-cta .button {
  justify-content: center;
  width: 100%;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.42);
}

.monthly-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
  color: var(--paper);
}

.monthly-copy {
  border-left: 8px solid var(--red);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.monthly-copy h1 {
  max-width: 880px;
  margin-top: 0.8rem;
  font-size: clamp(4rem, 10vw, 8.5rem);
}

.monthly-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
  line-height: 1.65;
}

.monthly-note {
  display: grid;
  gap: 0.35rem;
  max-width: 560px;
  margin-top: 2rem;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.36);
}

.monthly-note strong {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.monthly-note span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.monthly-impact-card {
  display: grid;
  gap: 0.1rem;
  align-content: center;
  justify-self: center;
  width: min(100%, 360px);
  min-height: 330px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--paper);
  border: 6px solid var(--red);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(1.25deg);
  box-shadow: 12px 14px 0 rgba(215, 25, 32, 0.35);
}

.monthly-impact-card span,
.monthly-impact-card strong {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  line-height: 0.9;
}

.monthly-impact-card span {
  font-size: clamp(3.4rem, 5vw, 5.2rem);
}

.monthly-impact-card strong {
  color: var(--red);
  font-size: clamp(4.2rem, 6vw, 6.4rem);
}

.monthly-impact-card small {
  margin-top: 1rem;
  max-width: 100%;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.monthly-section {
  border-top: 1px solid var(--line);
}

.monthly-section .section-heading h2 {
  color: var(--paper);
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.monthly-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 350px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.monthly-card.featured {
  background: var(--paper);
  border-color: var(--red);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}

.monthly-amount {
  color: var(--red);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.85;
}

.monthly-card.featured .monthly-amount {
  color: var(--red);
}

.monthly-amount span {
  margin-left: 0.25rem;
  color: inherit;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.monthly-card h3 {
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.monthly-card p:not(.monthly-amount) {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.6;
}

.monthly-card.featured p:not(.monthly-amount) {
  color: rgba(17, 17, 17, 0.75);
}

.monthly-card .button {
  align-self: end;
  justify-content: center;
  margin-top: auto;
}

.custom-monthly {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--red);
  color: var(--paper);
}

.custom-monthly h2 {
  margin-top: 0.4rem;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.custom-monthly p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.custom-monthly-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--ink);
  border: 3px solid var(--paper);
  padding: 1.1rem;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.28);
}

.custom-monthly-form .button,
.custom-monthly-form .form-status {
  grid-column: 1 / -1;
}

.custom-monthly-form .button {
  justify-content: center;
}

.donate-hero {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(2rem, 5vw, 4rem) auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  color: var(--paper);
}

.donate-hero-copy {
  border-left: 8px solid var(--red);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.donate-hero h1 {
  max-width: 900px;
  margin-top: 0.8rem;
  font-size: clamp(4rem, 10vw, 8.5rem);
}

.donate-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 750;
  line-height: 1.65;
}

.donation-callout {
  border: 3px solid var(--paper);
  padding: clamp(1rem, 3vw, 1.6rem);
  background: rgba(0, 0, 0, 0.42);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(2deg);
  box-shadow: 12px 12px 0 var(--red);
}

.donation-callout span,
.donation-callout strong,
.donation-callout small {
  display: block;
}

.donation-callout span,
.donation-callout strong {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  line-height: 0.9;
}

.donation-callout span {
  color: var(--paper);
  font-size: clamp(4rem, 8vw, 7rem);
}

.donation-callout strong {
  color: var(--red);
  font-size: clamp(4.4rem, 9vw, 8rem);
}

.donation-callout small {
  margin-top: 0.9rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.donation-page-section,
.donation-goods-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(1rem, 3vw, 2rem) auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 3vw, 2rem);
  background: var(--paper);
  border-top: 7px solid var(--red);
  border-bottom: 7px solid var(--ink);
}

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

.donation-card {
  border: 3px solid var(--ink);
  padding: 1.2rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(215, 25, 32, 0.25);
}

.donation-card.featured {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--red);
}

.donation-card span {
  color: var(--red);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.9;
}

.donation-card h3 {
  margin-top: auto;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-card p {
  margin-top: 0.8rem;
  color: inherit;
  font-weight: 700;
  line-height: 1.6;
}

.donation-form-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  background: var(--red);
  color: var(--paper);
  border-block: 7px solid var(--paper);
  padding: clamp(3rem, 7vw, 5rem) max(16px, calc((100vw - 1180px) / 2));
}

.donation-form-band h2 {
  margin-top: 0.7rem;
}

.donation-form-band p:not(.eyebrow) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  line-height: 1.7;
}

.donation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--ink);
  border: 3px solid var(--paper);
  padding: 1.25rem;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.22);
}

.donation-form button,
.donation-form .form-status {
  grid-column: 1 / -1;
}

.goods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.goods-list span {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--red);
}

.footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 5px solid var(--red);
  padding: 1.4rem max(16px, calc((100vw - 1180px) / 2));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer img {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
}

.footer p {
  max-width: 560px;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: flex-end;
  align-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a:hover {
  color: var(--red);
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    padding: 0.7rem;
  }

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

  .nav-links a {
    padding: 0.9rem !important;
  }

  .impact-strip,
  .section-grid,
  .help-panel,
  .support-grid,
  .monthly-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer nav {
    justify-content: flex-start;
  }

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

  .hero-sign {
    max-width: 420px;
  }

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

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

  .donate-hero,
  .monthly-hero,
  .donation-contact-page,
  .donation-form-band {
    grid-template-columns: 1fr;
  }

  .monthly-impact-card {
    max-width: 440px;
    min-height: 300px;
  }

  .custom-monthly {
    grid-template-columns: 1fr;
  }

  .donation-callout {
    max-width: 420px;
  }

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

@media (max-width: 620px) {
  .brand {
    flex-basis: 210px;
  }

  .brand img {
    width: min(210px, 52vw);
    height: 54px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.55));
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .hero-actions .button,
  .contact-band .button,
  .monthly-inline-actions .button,
  .custom-monthly .button {
    width: 100%;
  }

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

  .volunteer-banner span {
    display: none;
  }

  .support-actions .button {
    width: 100%;
    justify-content: center;
  }

  .program-grid,
  .request-form,
  .donation-form,
  .custom-monthly-form,
  .donation-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 210px;
  }

  .impact-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .monthly-hero {
    min-height: auto;
    padding-block: 2.5rem;
  }

  .monthly-copy {
    border-left-width: 5px;
  }

  .monthly-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .monthly-impact-card {
    width: min(100%, 340px);
    min-height: 260px;
    transform: none;
    box-shadow: 8px 10px 0 rgba(215, 25, 32, 0.35);
  }

  .monthly-impact-card span {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .monthly-impact-card strong {
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

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