:root {
  --navy: #062b66;
  --navy-deep: #041e4a;
  --navy-mid: #0b3477;
  --crimson: #c4262e;
  --crimson-dark: #a51e25;
  --ink: #1c2740;
  --muted: #5f6d86;
  --line: #d8dfec;
  --panel: #f4f6fa;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(6, 43, 102, 0.1);
  --header-h: 4.5rem;
  --wrap: 70rem;
  --radius: 10px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: var(--crimson);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section,
.screen,
.support {
  scroll-margin-top: 4.5rem;
}

.section {
  padding: 4rem 0;
}

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

.section-head {
  max-width: 40rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-head p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.initiative-lead {
  margin: 0 0 2.4rem;
  color: var(--muted);
}

.initiative-lead p {
  margin: 0;
}

.initiative-lead p + p {
  margin-top: 0.9rem;
}

.intro-term {
  color: var(--navy);
  font-weight: 700;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(6, 43, 102, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-back {
  display: none;
  align-items: center;
  gap: 0.1rem;
  margin: 0 0.15rem 0 0;
  padding: 0.3rem 0.15rem 0.3rem 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-back svg {
  width: 1.2rem;
  height: 1.2rem;
}

.brand span {
  min-width: 0;
}

.brand-title,
.brand-tag {
  display: block;
}

.brand-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-tag {
  margin-top: 0.15rem;
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.2;
}

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

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 1.3rem;
  height: 2.5px;
  background: var(--navy);
  border-radius: 99px;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

.header-cta.btn {
  display: none;
}

.nav-drawer {
  display: none;
  padding: 0.5rem 0 1.2rem;
  border-top: 1px solid var(--line);
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer a {
  display: block;
  padding: 0.75rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.nav-drawer .btn {
  margin-top: 1rem;
  width: 100%;
  color: var(--white);
  border-bottom: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.btn--navy:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.btn:disabled {
  background: #cfd3dc;
  color: #6b7380;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.btn--crimson {
  background: var(--crimson);
  color: var(--white);
}

.btn--crimson:hover {
  background: var(--crimson-dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn--ghost-dark {
  background: var(--white);
  border-color: var(--navy);
  color: var(--navy);
}

.btn--ghost-dark:hover {
  background: var(--panel);
}

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

.btn--white:hover {
  background: #eef3fb;
  color: var(--navy);
}

.btn--outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  text-decoration: none;
}

.card .text-link {
  color: var(--navy);
}

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

.link-arrow {
  color: var(--crimson);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 32rem;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 30, 74, 0.28) 0%, rgba(4, 30, 74, 0.55) 42%, rgba(4, 30, 74, 0.82) 100%),
    url("../assets/images/u-s-capitol-east-front-steve-gadomski.jpg") center 18% / cover no-repeat;
}

.hero__copy {
  padding: 2.4rem 0 2.2rem;
  max-width: 36rem;
  margin-right: auto;
}

.hero .eyebrow {
  color: var(--white);
  margin-bottom: 0.9rem;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.hero-inline-cta {
  display: none;
}

.hero p {
  margin: 0 0 1.4rem;
  max-width: 32rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: grid;
  gap: 0.7rem;
}

.home-cta {
  display: none;
}

.btn--cta {
  width: 100%;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-height: 3.15rem;
  padding-inline: 1.15rem;
  border-radius: 10px;
}

/* ——— Support ——— */
.support {
  background: var(--white);
  padding: 1.6rem 0 1.8rem;
  border-bottom: 1px solid var(--line);
}

.support h2 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.45rem;
}

.support p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

@media (min-width: 520px) {
  .amounts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amount {
  min-height: 3rem;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

.amount.is-selected,
.amount:hover {
  border-color: var(--navy);
  background: var(--panel);
}

.other-amount {
  display: none;
  margin-bottom: 0.8rem;
}

.other-amount.is-open {
  display: block;
}

.other-amount input {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.55rem 0.8rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
}

.support-hint {
  margin: 0.15rem 0 0.75rem;
  color: var(--crimson);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.support-hint[hidden] {
  display: none;
}

.support .btn--crimson {
  width: 100%;
}

.support .btn--crimson:disabled {
  background: #cfd3dc;
  color: #6b7380;
  cursor: not-allowed;
  box-shadow: none;
}

.support .btn--crimson:not(:disabled) {
  box-shadow: 0 8px 18px rgba(196, 38, 46, 0.28);
}

/* ——— Initiative cards ——— */
.cards {
  display: grid;
  gap: 1.1rem;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8eef8;
  color: var(--navy);
}

.card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.card p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.card .btn {
  align-self: flex-start;
  width: 50%;
  min-width: 0;
  margin-top: auto;
}

/* ——— Accordion ——— */
.principles {
  display: grid;
  gap: 0.7rem;
  max-width: 52rem;
  margin: 0 auto;
}

.accord-preamble {
  max-width: 52rem;
  margin: 0 auto 1.6rem;
  color: var(--muted);
}

.accord-preamble p + p {
  margin-top: 0.85rem;
}

.principle {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.principle.is-open {
  background: #eef3fb;
  border-color: #c9d6ea;
}

.principle__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--navy);
}

.principle__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 2rem;
}

.principle__title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.principle__icon {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  flex: 0 0 auto;
}

.principle__icon::before,
.principle__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.85rem;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
}

.principle__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.principle.is-open .principle__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.principle__panel {
  display: none;
  padding: 0 1.1rem 1.15rem 3.95rem;
}

.principle.is-open .principle__panel {
  display: block;
}

.principle__panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.principle__panel li + li {
  margin-top: 0.55rem;
}

.accord-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem 1rem;
  margin-top: 1.6rem;
}

.accord-cta .btn {
  min-width: 15.5rem;
}

.accord-cta .btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* ——— Signatories ——— */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 3.4rem;
  height: 1px;
  background: var(--line);
}

.label-star {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 auto 1.15rem;
  background: var(--crimson);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.signatories {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.signatories::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 68% at 50% 46%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.62) 52%, #fff 78%),
    url("../assets/images/capitol-dome.jpg") center 40% / min(70vw, 46rem) auto no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.signatories .wrap {
  position: relative;
  z-index: 1;
}

.signatories .section-head {
  margin-bottom: 1.6rem;
}

.signatories .text-link {
  color: var(--navy);
}

.signatories .text-link span,
.signatories .text-link {
  color: var(--navy);
}

.signatory-list {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.signatory-empty {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.signatory-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.signatory-actions .btn {
  min-width: min(100%, 16rem);
}

.signatory-actions .btn--crimson {
  box-shadow: 0 8px 22px rgba(196, 38, 46, 0.28);
}

.signatory-actions .btn--crimson:hover {
  box-shadow: 0 10px 26px rgba(196, 38, 46, 0.36);
}

.footer-nav {
  display: none;
}

/* ——— Forms ——— */
.forms {
  display: grid;
  gap: 1.25rem;
}

.form-card {
  max-width: 36rem;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.4rem;
}

.form-card > p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.form-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}

.form-icon--crimson {
  background: var(--crimson);
}

.form-icon--navy {
  background: var(--navy);
}

.form-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.field {
  display: block;
  margin-bottom: 0.85rem;
}

.field span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
}

.field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.field-row {
  display: grid;
  gap: 0.75rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.3rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  display: none;
  margin-top: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  background: #e8f6ee;
  color: #14532d;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fde8e8;
  color: #8a1f1f;
}

.form-switch {
  margin: 1rem 0 0;
  text-align: center;
}

/* ——— About ——— */
.about-copy {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 0.9rem;
}

.about-copy p:has(.ns-lockup) {
  margin-top: 1.35rem;
  text-align: center;
}

.ns-mark {
  display: block;
  width: 1.7rem;
  height: auto;
}

.ns-mark--section {
  width: 4.6rem;
  margin: 0 auto 0.9rem;
}

.nav-ns {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-drawer .nav-ns {
  display: flex;
}

.footer-nav .nav-ns .ns-mark {
  width: 1.15rem;
}

.ns-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
  padding: 0.5rem 1.15rem 0.5rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6, 43, 102, 0.08);
}

.ns-lockup:hover,
.site-footer .ns-lockup:hover {
  border-color: var(--navy);
  text-decoration: none;
}

.ns-lockup__mark {
  display: grid;
  place-items: center;
  width: 3.65rem;
  height: 2.35rem;
  padding: 0.2rem 0.28rem;
  flex-shrink: 0;
}

.ns-lockup__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.ns-lockup__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  text-align: left;
}

.ns-lockup__name {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
}

.ns-lockup__hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--crimson);
}

.ns-lockup--footer {
  padding: 0.18rem 0.6rem 0.18rem 0.18rem;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  color: var(--white);
  border-radius: 10px;
}

.ns-lockup--footer:hover,
.site-footer .ns-lockup--footer:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.ns-lockup--footer .ns-lockup__mark {
  width: 2.35rem;
  height: 1.5rem;
  padding: 0.1rem 0.14rem;
}

.ns-lockup--footer .ns-lockup__name {
  font-size: 0.88rem;
}

#scorecard .section-head {
  max-width: 42rem;
  margin-bottom: 0;
}

#scorecard .section-head p:not(.eyebrow) {
  text-align: left;
}

.scorecard-note {
  max-width: 42rem;
  margin: 0.9rem auto 0;
  text-align: left;
  color: var(--muted);
}

.scorecard-note p {
  margin: 0;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 1.6rem 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-brand .brand-title,
.footer-brand .brand-tag {
  color: var(--white);
}

.footer-brand .copyright {
  margin: 0.28rem 0 0;
  font-size: 0.72rem;
  line-height: 1.25;
  opacity: 0.75;
}

.footer-meta {
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0.92;
}

.footer-address,
.footer-ein {
  margin: 0;
}

.footer-address span,
.footer-address a {
  display: block;
}

.footer-ein {
  margin-top: 0.35rem;
}

.footer-ein--brand {
  display: none;
}

.footer-meta a {
  color: inherit;
}

.footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
}

.footer-social a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

.footer-social svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
}

.copyright {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (min-width: 760px) {
  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 960px) {
  .wrap {
    width: min(100% - 3rem, var(--wrap));
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-title {
    font-size: 0.74rem;
  }

  .menu-toggle,
  .nav-drawer {
    display: none !important;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
  }

  .header-cta.btn {
    display: inline-flex;
  }

  .hero {
    min-height: 38rem;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(4, 30, 74, 0.82) 0%, rgba(4, 30, 74, 0.55) 42%, rgba(4, 30, 74, 0.12) 100%),
      url("../assets/images/u-s-capitol-east-front-steve-gadomski.jpg") center 22% / cover no-repeat;
  }

  .hero__copy {
    padding: 5rem 0 4.5rem;
  }

  .support {
    background: var(--navy);
    color: var(--white);
    padding: 1.35rem 0;
    border-bottom: 0;
  }

  .support__inner {
    display: grid;
    grid-template-columns: 1.3fr 1.4fr auto;
    gap: 1.2rem;
    align-items: start;
  }

  .support h2,
  .support p {
    color: var(--white);
  }

  .support p {
    margin: 0;
  }

  .support h2 {
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
  }

  .support .btn--crimson {
    width: auto;
    min-height: 3rem;
    white-space: nowrap;
  }

  .support-hint {
    margin: 0.45rem 0 0;
    color: #ffd4d6;
    text-align: center;
  }

  .support p.support-hint {
    margin: 0.45rem 0 0;
  }

  .support .btn--crimson:disabled {
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.55);
  }

  .amounts {
    margin: 0;
  }

  .amount {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
  }

  .amount.is-selected,
  .amount:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
  }

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

  .signatories::after {
    inset: -6% 0 -8%;
    width: auto;
    height: auto;
    left: 0;
    right: 0;
    background:
      radial-gradient(ellipse 58% 64% at 50% 44%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.58) 54%, #fff 80%),
      url("../assets/images/capitol-dome.jpg") center 38% / min(64vw, 50rem) auto no-repeat;
    opacity: 0.32;
  }

  .footer-nav {
    display: none;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 1.25rem;
    row-gap: 0.65rem;
  }

  .footer-brand {
    justify-self: start;
  }

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

  .footer-address span,
  .footer-address a {
    display: inline;
  }

  .footer-address span + span::before,
  .footer-address span + a::before {
    content: " · ";
  }

  .footer-ein {
    margin-top: 0.2rem;
  }

  .footer-end {
    justify-self: end;
  }

  .footer-social {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 959px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  body {
    display: flex;
    flex-direction: column;
    height: 100dvh;
  }

  .site-header {
    position: relative;
    flex: 0 0 auto;
  }

  body.is-subpage .nav-back {
    display: inline-flex;
  }

  body.is-subpage .brand-tag {
    display: none;
  }

  .nav-drawer.is-open {
    position: relative;
    z-index: 20;
    background: var(--white);
  }

  main {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    overflow: hidden;
  }

  .screen {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s;
    -webkit-overflow-scrolling: touch;
  }

  .screen--home {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }

  .screen.is-active {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    z-index: 3;
  }

  .screen.is-under {
    transform: translate3d(-22%, 0, 0);
    visibility: visible;
    pointer-events: none;
    z-index: 2;
  }

  .screen--home .hero {
    min-height: min(26rem, 48dvh);
    align-items: flex-end;
  }

  .hero-inline-cta {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0.1rem 0 0 0.15rem;
    padding: 0.32rem 0.72rem 0.28rem;
    border-radius: 6px;
    background: var(--crimson);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
    max-width: 11.5rem;
    text-align: center;
  }

  .hero-actions {
    display: none;
  }

  .home-cta {
    display: block;
    padding: 1.35rem 0 1.7rem;
    background: var(--white);
  }

  .home-intro {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .home-intro p {
    margin: 0;
  }

  .home-intro p + p {
    margin-top: 0.9rem;
  }

  .home-intro-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
  }

  .home-intro-cta__btn {
    width: min(100%, 22rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 10px;
  }

  #initiative .initiative-lead {
    display: none;
  }

  .accord-cta {
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0.75rem;
  }

  .accord-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .support {
    display: none;
  }

  .section {
    padding: 2.1rem 0 2.4rem;
    min-height: 100%;
  }

  .signatories {
    min-height: 100%;
    background: var(--white);
  }

  .signatories::after {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 48%;
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 22%, rgba(255, 255, 255, 0.18) 100%),
      url("../assets/images/capitol-dome.jpg") center 18% / cover no-repeat;
    opacity: 0.38;
  }

  .signatory-list {
    padding-bottom: 1.4rem;
  }

  .site-footer {
    flex: 0 0 auto;
    padding: 0.4rem 0 0.45rem;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.55rem;
    row-gap: 0.28rem;
    align-items: center;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 0.35rem;
    justify-content: flex-start;
    align-self: start;
    text-align: left;
  }

  .footer-brand .brand-mark {
    width: 1.55rem;
    height: 1.55rem;
  }

  .footer-brand .brand-title {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .footer-brand .brand-tag {
    display: none;
  }

  .footer-brand .copyright {
    margin-top: 0.1rem;
    font-size: 0.55rem;
    line-height: 1.15;
  }

  .footer-ein--brand {
    display: none;
  }

  .site-footer .footer-meta {
    display: contents;
  }

  .site-footer .footer-address {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    text-align: right;
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .site-footer .footer-ein--meta {
    display: none;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-self: center;
    gap: 0.12rem 0.45rem;
    margin-top: 0;
    /* Align with brand text / EIN (star mark + brand gap) */
    padding-left: calc(1.55rem + 0.35rem);
    font-size: 0.68rem;
  }

  .footer-social {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    justify-content: flex-end;
    gap: 0.28rem;
  }

  .footer-social a {
    width: 1.55rem;
    height: 1.55rem;
  }

  .footer-social svg {
    width: 0.72rem;
    height: 0.72rem;
  }

  .footer-end,
  .site-footer .footer-links {
    display: none;
  }
}

/* ——— Legal / Privacy ——— */
.legal-page {
  padding: 3.2rem 0 4rem;
}

.legal-page h1 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.legal-page .legal-updated {
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-page h2 {
  margin: 1.8rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  max-width: 46rem;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page a {
  color: var(--crimson);
}

@media (prefers-reduced-motion: reduce) {
  .screen {
    transition: none;
  }
}
