:root {
  --red: #c92826;
  --red-dark: #a91f20;
  --yellow: #fcea3e;
  --cream: #fff8e6;
  --cream-strong: #fff1c8;
  --ink: #383838;
  --muted: #6d6760;
  --line: rgba(56, 56, 56, 0.18);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(80, 30, 16, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 104px;
  padding: 12px clamp(18px, 5vw, 76px);
  background: rgba(255, 248, 230, 0.94);
  border-bottom: 1px solid rgba(201, 40, 38, 0.12);
  backdrop-filter: blur(18px);
}

.logo {
  width: clamp(150px, 15vw, 218px);
}

.logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--red);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
}

.primary-nav a,
.site-footer a,
.sticky-actions a,
.action-strip a,
.button,
.donate-block,
.donate-submit {
  text-decoration: none;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.donate-block {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  background: var(--yellow);
  color: var(--red);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--red);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.donate-block:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--red);
}

.menu-toggle {
  display: none;
}

.premium-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 92px) 116px;
  background:
    linear-gradient(90deg, var(--cream) 0 62%, var(--red) 62% 100%);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 108px;
  background: var(--yellow);
  border-top: 8px solid var(--red);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--red);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}

.premium-hero h1,
.section-copy h2,
.section-heading h2,
.district-band h2,
.premium-page-hero h1,
.volunteer-copy h2,
.contact-copy h1,
.donation-panel h2,
.newsletter-panel h2 {
  margin: 0;
  font-family: Poppins, Montserrat, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.premium-hero h1 {
  max-width: 830px;
  color: var(--red);
  font-size: clamp(4.2rem, 9vw, 9.4rem);
  text-transform: uppercase;
}

.hero-lede {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: Poppins, Montserrat, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary,
.button-dark {
  background: var(--red);
  color: var(--white);
}

.button-secondary {
  background: var(--cream);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 46px;
}

.hero-proof span {
  min-height: 92px;
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-proof strong {
  display: block;
  color: var(--red);
  font: 900 2rem/1 Poppins, Montserrat, sans-serif;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(12px, 2vw, 22px);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 26px -20px -20px 26px;
  z-index: -1;
  background: var(--red-dark);
}

.hero-portrait img {
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  object-position: center bottom;
  background: var(--cream);
}

.hero-portrait figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 240px;
  padding: 12px 14px;
  background: var(--red);
  color: var(--yellow);
  font: 900 0.9rem/1.2 Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  overflow: hidden;
  border-top: 8px solid var(--red);
  background: var(--yellow);
  color: var(--red);
  font: 900 clamp(1.2rem, 2.8vw, 2.7rem)/1 Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-ticker div {
  padding: 28px 22px;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}

.action-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.action-strip a {
  display: grid;
  min-height: 152px;
  align-content: center;
  gap: 8px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
  color: var(--red);
  font: 900 clamp(1.6rem, 3vw, 3.1rem)/1 Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.action-strip a:last-child {
  border-right: 0;
}

.action-strip span {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
}

.action-strip a:hover {
  background: var(--red);
  color: var(--yellow);
}

.action-strip a:hover span {
  color: var(--white);
}

.story-split,
.issues-section,
.district-band,
.support-section,
.volunteer-section,
.contact-section,
.premium-page-hero {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 6vw, 92px);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  background: var(--cream);
}

.section-copy h2,
.section-heading h2,
.district-band h2,
.premium-page-hero h1,
.volunteer-copy h2,
.contact-copy h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.section-copy p:not(.eyebrow),
.premium-page-hero p:not(.eyebrow),
.volunteer-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
}

.story-card div {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-top: 8px solid var(--yellow);
}

.story-card h3,
.issue-card h3,
.volunteer-options h3 {
  margin: 0;
  font: 900 clamp(1.35rem, 2vw, 2.1rem)/1 Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
}

.story-card p,
.issue-card p,
.volunteer-options p {
  margin: 0;
  font-weight: 700;
}

.issues-section {
  background: var(--red);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 42px;
}

.issues-section .eyebrow,
.newsletter-panel .eyebrow {
  color: var(--yellow);
}

.issues-section .section-heading h2 {
  color: var(--white);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.issue-card {
  display: grid;
  min-height: 280px;
  align-content: space-between;
  gap: 22px;
  padding: 26px;
  border-top: 8px solid var(--yellow);
  background: var(--cream);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(65, 10, 10, 0.22);
}

.issue-card span,
.volunteer-options span {
  color: var(--red);
  font: 900 0.82rem/1 Poppins, Montserrat, sans-serif;
  letter-spacing: 0.28em;
}

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

.district-band {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  background: var(--yellow);
  border-top: 8px solid var(--red);
  border-bottom: 8px solid var(--red);
}

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

.district-band h2 {
  max-width: 860px;
  color: var(--red);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  background: var(--cream);
}

.photo-wall img {
  width: 100%;
  height: clamp(360px, 42vw, 620px);
  object-fit: cover;
}

.photo-wall img:nth-child(2) {
  height: clamp(300px, 35vw, 520px);
  align-self: center;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  background: var(--red);
  padding: 0;
}

.donation-panel {
  display: grid;
  align-content: center;
  min-height: 760px;
  padding: clamp(54px, 8vw, 108px) clamp(24px, 8vw, 112px);
  background: var(--cream);
}

.donation-panel h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4.7rem);
}

.donation-panel p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-weight: 800;
}

.donation-widget {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset:last-of-type {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.donation-widget label {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(56, 56, 56, 0.34);
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.donation-widget input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation-widget label:has(input:checked) {
  border-color: var(--red);
  background: var(--cream-strong);
  color: var(--red);
}

.other-amount {
  grid-column: span 2;
}

.custom-amount {
  display: none;
  width: 80px;
  min-height: 32px;
  border: 1px solid rgba(56, 56, 56, 0.25);
  padding: 0 8px;
}

.donation-widget label:has(input[value="other"]:checked) .custom-amount {
  display: inline-block;
}

.donate-submit,
.capture-form button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--red);
  color: var(--white);
  font: 900 0.95rem Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.donate-submit:hover,
.capture-form button:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

.newsletter-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 760px;
  padding: clamp(54px, 8vw, 108px) clamp(24px, 9vw, 132px);
  background: var(--red);
  color: var(--white);
}

.newsletter-panel h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.7rem);
}

.capture-form {
  display: grid;
  width: 100%;
  max-width: 560px;
  gap: 14px;
  margin-top: 34px;
}

.capture-form label span {
  position: absolute;
  left: -9999px;
}

.capture-form input {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font: 800 0.95rem Montserrat, Arial, sans-serif;
  padding: 0 16px;
}

.capture-form input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.red-form button {
  background: var(--yellow);
  color: var(--red);
}

.form-note {
  min-height: 1.2em;
  margin: 0;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.adult-search-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(252, 234, 62, 0.24), transparent 28%),
    linear-gradient(135deg, #171717 0%, #2d2220 46%, #6d1f24 100%);
  color: var(--white);
}

.avs-shell {
  min-height: 100vh;
  padding: clamp(18px, 4vw, 48px);
}

.avs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 86px) 0 34px;
}

.avs-copy h1 {
  max-width: 860px;
  margin: 0;
  color: var(--yellow);
  font: 900 clamp(3.2rem, 8vw, 8.2rem)/0.92 Poppins, Montserrat, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.avs-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 800;
}

.avs-gate,
.avs-panel,
.avs-results-wrap {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.avs-gate {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.avs-gate h2,
.avs-panel h2,
.avs-results-head h2,
.avs-card h3 {
  margin: 0;
  font-family: Poppins, Montserrat, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.avs-gate label,
.avs-check {
  display: flex;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.avs-gate input[type="checkbox"],
.avs-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--yellow);
  flex: 0 0 auto;
}

.avs-gate button,
.avs-panel button,
.avs-results-head button,
.avs-card a {
  min-height: 46px;
  border: 0;
  background: var(--yellow);
  color: #341516;
  cursor: pointer;
  font: 900 0.88rem/1 Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}

.avs-gate button,
.avs-panel button,
.avs-results-head button {
  padding: 0 18px;
}

.avs-app {
  max-width: 1240px;
  margin: 0 auto;
}

.avs-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.45fr));
  gap: 10px;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.avs-toolbar label,
.avs-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.avs-toolbar input,
.avs-toolbar select,
.avs-panel input,
.avs-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(13, 13, 13, 0.66);
  color: var(--white);
  font: 800 0.96rem/1 Montserrat, Arial, sans-serif;
}

.avs-toolbar input,
.avs-panel input {
  padding: 0 14px;
}

.avs-toolbar select,
.avs-panel select {
  padding: 0 10px;
}

.avs-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 10px;
}

.avs-panel {
  padding: 22px;
}

.avs-panel form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.avs-note,
.avs-gate p {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.avs-results-wrap {
  min-height: 620px;
  padding: 22px;
}

.avs-results-head {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.avs-warning {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 6px solid var(--yellow);
  background: rgba(252, 234, 62, 0.16);
  color: var(--white);
  font-weight: 900;
}

.avs-results {
  display: grid;
  gap: 12px;
}

.avs-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.avs-thumb {
  display: grid;
  min-height: 150px;
  place-items: end start;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(252, 234, 62, 0.18), transparent 52%),
    repeating-linear-gradient(45deg, #262626 0 10px, #1c1c1c 10px 20px);
}

.avs-thumb span,
.avs-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.avs-thumb span {
  padding: 0 10px;
  background: var(--yellow);
  color: #341516;
}

.avs-card-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.avs-card h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.avs-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.avs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.avs-tags span {
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.avs-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0 16px;
  border-radius: 6px;
}

.premium-page-hero {
  display: grid;
  justify-items: center;
  min-height: 520px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(252, 234, 62, 0.24), rgba(255, 248, 230, 0) 70%),
    var(--cream);
}

.premium-page-hero h1 {
  max-width: 940px;
  color: var(--red);
  font-size: clamp(3.3rem, 7vw, 7rem);
  text-transform: uppercase;
}

.premium-page-hero p:not(.eyebrow) {
  max-width: 660px;
}

.volunteer-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--red);
}

.volunteer-copy h2,
.contact-copy h1 {
  color: var(--white);
}

.volunteer-copy .eyebrow,
.contact-copy .eyebrow {
  color: var(--yellow);
}

.volunteer-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.contact-copy address {
  color: rgba(255, 255, 255, 0.82);
}

.volunteer-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.volunteer-options article {
  min-height: 220px;
  padding: 22px;
  border-top: 8px solid var(--yellow);
  background: var(--cream);
}

.volunteer-options h3 {
  margin: 26px 0 12px;
  color: var(--red);
}

.volunteer-form,
.contact-form {
  max-width: none;
  margin: 0;
  padding: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.volunteer-form button,
.contact-form button {
  background: var(--red);
}

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

.contact-copy h1 {
  color: var(--red);
}

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

.contact-copy > p:not(.eyebrow),
.contact-copy address {
  color: var(--muted);
}

.contact-copy address {
  margin-top: 34px;
  font-style: normal;
  font-weight: 800;
}

.contact-copy address a {
  color: var(--red);
  text-decoration: none;
}

.contact-form {
  background: var(--red);
}

.contact-form button {
  background: var(--yellow);
  color: var(--red);
}

.compact-support .donation-panel,
.compact-support .newsletter-panel {
  min-height: 650px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr) minmax(220px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 64px clamp(22px, 7vw, 110px);
  background: var(--cream);
  color: var(--red);
  font-family: Poppins, Montserrat, sans-serif;
  font-weight: 900;
}

.site-footer nav {
  display: grid;
  gap: 14px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand img {
  width: min(240px, 70vw);
}

.footer-social {
  display: flex;
  gap: 12px;
  color: var(--ink);
}

.footer-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

.footer-brand p {
  margin: 10px 0 0;
  color: rgba(201, 40, 38, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer address {
  justify-self: end;
  font-style: normal;
  line-height: 1.7;
  text-align: right;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  overflow: hidden;
  border: 2px solid var(--red);
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(65, 10, 10, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-actions a {
  padding: 12px 16px;
  color: var(--red);
  font: 900 0.78rem Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
}

.sticky-actions a:last-child {
  background: var(--yellow);
  border-left: 2px solid var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .primary-nav {
    justify-content: end;
    font-size: 0.86rem;
  }

  .donate-block {
    padding: 0 18px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .premium-hero,
  .story-split,
  .volunteer-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    background: linear-gradient(180deg, var(--cream) 0 62%, var(--red) 62% 100%);
  }

  .hero-portrait {
    max-width: 620px;
    justify-self: center;
  }

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

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

  .avs-hero,
  .avs-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: auto;
    padding: 12px 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    min-height: 42px;
    align-items: center;
    border: 0;
    background: var(--red);
    color: var(--white);
    padding: 0 16px;
    font: 900 0.82rem Poppins, Montserrat, sans-serif;
    text-transform: uppercase;
  }

  .primary-nav {
    position: fixed;
    inset: 73px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 18px;
    background: var(--cream);
    border-bottom: 2px solid var(--red);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .donate-block {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 50px;
  }

  .premium-hero {
    min-height: auto;
    padding: 46px 18px 104px;
  }

  .premium-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-proof,
  .action-strip,
  .support-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-portrait::before {
    inset: 14px -10px -10px 14px;
  }

  .hero-ticker div {
    padding: 20px 14px;
  }

  .action-strip a {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-split,
  .issues-section,
  .district-band,
  .volunteer-section,
  .contact-section,
  .premium-page-hero {
    padding: 64px 18px;
  }

  .district-band {
    display: grid;
  }

  .issue-grid,
  .photo-wall {
    grid-template-columns: 1fr;
  }

  .photo-wall img,
  .photo-wall img:nth-child(2) {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .donation-panel,
  .newsletter-panel,
  .compact-support .donation-panel,
  .compact-support .newsletter-panel {
    min-height: auto;
    padding: 64px 18px;
  }

  fieldset,
  fieldset:last-of-type {
    grid-template-columns: 1fr;
  }

  .other-amount {
    grid-column: auto;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
    padding-bottom: 104px;
  }

  .site-footer address {
    justify-self: center;
    text-align: center;
  }

  .avs-shell {
    padding: 16px;
  }

  .avs-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .avs-toolbar,
  .avs-card {
    grid-template-columns: 1fr;
  }

  .avs-thumb {
    min-height: 112px;
  }

  .avs-results-head {
    display: grid;
  }
}

@media (max-width: 520px) {
  .section-copy h2,
  .section-heading h2,
  .district-band h2,
  .premium-page-hero h1,
  .volunteer-copy h2,
  .contact-copy h1,
  .donation-panel h2,
  .newsletter-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .logo {
    width: 128px;
  }

  .hero-proof span {
    min-height: auto;
  }

  .hero-portrait figcaption {
    position: static;
    max-width: none;
  }

  .sticky-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .sticky-actions a {
    flex: 1;
    text-align: center;
  }
}
