/* ============================================================
   Reclaim Your Vote. Now! — Editorial Design System
   Palette and type system: Reclaim Your Vote editorial.
   ============================================================ */

:root {
	--cream:      #f4ede0;
	--cream-deep: #ebe1cd;
	--paper:      #faf5ea;
	--navy:       #0a1f3d;
	--navy-soft:  #1d345a;
	--red:        #c8102e;
	--red-deep:   #9d0c24;
	--gold:       #c9a449;
	--gold-soft:  #d9b969;
	--ink:        #161616;
	--ink-soft:   #3a3a3a;
	--muted:      #6a6a6a;
	--rule:       rgba(10,31,61,0.18);

	--serif: 'Fraunces', Georgia, 'Times New Roman', serif;
	--sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

	--maxw: 1200px;
	--gutter: clamp(1.25rem, 4vw, 2.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* ── Kicker / Eyebrow (editorial small caps) ── */
.kicker {
	font-family: var(--sans);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 1.1rem;
	display: inline-block;
	position: relative;
	padding-left: 42px;
}
.kicker::before {
	content: '';
	position: absolute;
	left: 0; top: 50%;
	width: 30px; height: 1.5px;
	background: var(--red);
	transform: translateY(-50%);
}

/* ── Headings — Fraunces editorial ── */
h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.018em;
	color: var(--navy);
	margin: 0;
	font-variation-settings: "opsz" 96, "SOFT" 50;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--red); }

h1 { font-size: clamp(2.4rem, 7vw, 5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 700; }

p { margin: 0 0 1rem; }
.lede { font-size: 1.18rem; line-height: 1.6; color: var(--ink-soft); font-weight: 400; }

/* ── Buttons (solid navy with gold underline accent) ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 1rem 1.85rem;
	background: var(--navy);
	color: var(--cream);
	font-family: var(--sans);
	font-weight: 600;
	font-size: 0.86rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1.5px solid var(--navy);
	border-radius: 0;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.btn--arrow::after { content: '→'; font-size: 1.1em; line-height: 1; transition: transform 0.2s; }
.btn--arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--cream);
	border-bottom: 1px solid var(--rule);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.15rem var(--gutter);
	max-width: var(--maxw);
	margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 1rem; color: var(--navy); }
.brand__logo { height: 44px; width: auto; }
.brand__divider { width: 1px; height: 36px; background: var(--rule); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__eyebrow {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1.08rem;
	font-style: italic;
	color: var(--navy);
	letter-spacing: -0.005em;
}
.brand__tagline {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 4px;
}
.nav__cta { font-size: 0.78rem; padding: 0.78rem 1.4rem; }

/* ============================================================
   HERO — three-line editorial structure
   ============================================================ */
.hero {
	background: var(--cream);
	padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: 20%; right: -120px;
	width: 420px; height: 420px;
	background: radial-gradient(circle, rgba(201,164,73,0.14) 0%, transparent 70%);
	pointer-events: none;
}
.hero__inner { position: relative; }
.hero__stamp {
	display: inline-block;
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 0.45rem 0.95rem;
	border: 1px solid var(--rule);
	border-radius: 999px;
	margin-bottom: 2rem;
	background: var(--paper);
}
.hero__kicker {
	font-family: var(--sans);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 1.4rem;
}
.hero__headline {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(4rem, 14vw, 11rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
	color: var(--navy);
	margin: 0 0 2rem;
	font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__headline em {
	font-style: italic;
	color: var(--red);
	font-weight: 400;
}
.hero__headline-line { display: block; }
.hero__headline-now {
	position: relative;
	display: inline-block;
	padding-bottom: 0.14em;
}
.hero__headline-now::after {
	content: '';
	position: absolute;
	left: 0;
	right: -0.05em;
	bottom: 0;
	height: 0.07em;
	background: var(--gold);
}
.hero__sub {
	font-family: var(--serif);
	font-size: 1.22rem;
	line-height: 1.55;
	color: var(--ink-soft);
	max-width: 56ch;
	margin: 0 0 2.25rem;
	font-weight: 400;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   NORTH STAR — magazine pull-quote band
   ============================================================ */
.northstar {
	background: var(--navy);
	color: var(--cream);
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
	position: relative;
}
.northstar::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--red) 0%, var(--red) 33%, var(--gold) 33%, var(--gold) 100%);
}
.northstar__inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
@media (max-width: 820px) { .northstar__inner { grid-template-columns: 1fr; } }
.northstar .kicker { color: var(--gold); }
.northstar .kicker::before { background: var(--gold); }
.northstar__statement {
	font-family: var(--serif);
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 500;
	font-style: italic;
	line-height: 1.22;
	color: var(--cream);
	margin: 0 0 1.25rem;
	letter-spacing: -0.015em;
}
.northstar__statement em { color: var(--red); font-style: normal; font-weight: 600; }
.northstar__subtext {
	font-family: var(--sans);
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(244,237,224,0.78);
	max-width: 56ch;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 1.25rem; }

/* ============================================================
   THE MOMENT — editorial cream w/ drop cap + pull line
   ============================================================ */
.moment { background: var(--cream); position: relative; }
.moment::before {
	content: '';
	position: absolute;
	top: 0; left: 50%; transform: translateX(-50%);
	width: 64px; height: 1.5px;
	background: var(--navy);
	opacity: 0.4;
}
.moment__body {
	max-width: 64ch;
	font-family: var(--serif);
	font-size: 1.22rem;
	line-height: 1.65;
	color: var(--ink);
	font-weight: 400;
}
.moment__body p { margin-bottom: 1.4rem; }
.moment__body p:first-of-type::first-letter {
	font-family: var(--serif);
	font-weight: 600;
	font-style: italic;
	font-size: 5rem;
	float: left;
	line-height: 0.82;
	margin: 0.5rem 0.65rem 0 0;
	color: var(--red);
}
.moment__pull {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	color: var(--navy);
	line-height: 1.25;
	margin: 2.25rem 0 2.25rem -1rem;
	padding-left: 1.5rem;
	border-left: 3px solid var(--red);
	font-weight: 500;
}

/* ============================================================
   THREE PILLARS — editorial card grid
   ============================================================ */
.pillars { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
@media (max-width: 880px) { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
	background: var(--cream);
	padding: 2.5rem 2rem 2.25rem;
	position: relative;
}
.pillar::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 60px; height: 4px;
	background: var(--red);
}
.pillar__num {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: 2.2rem;
	color: var(--red);
	display: block;
	margin-bottom: 0.75rem;
	line-height: 1;
}
.pillar__title { margin-bottom: 0.9rem; color: var(--navy); }
.pillar__body { color: var(--ink-soft); font-size: 1rem; line-height: 1.62; }

/* ============================================================
   THE STAKES
   ============================================================ */
.stakes { background: #ebe0d3; }
.stakes__lede { max-width: 64ch; font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 3rem; }

.stakes__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-bottom: 3.5rem;
	border-top: 1.5px solid var(--navy);
	border-bottom: 1.5px solid var(--navy);
}
@media (max-width: 880px) { .stakes__stats { grid-template-columns: 1fr; } }

.stat {
	padding: 2.25rem 1.75rem;
	border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
@media (max-width: 880px) {
	.stat { border-right: none; border-bottom: 1px solid var(--rule); }
	.stat:last-child { border-bottom: none; }
}
.stat__num {
	font-family: var(--serif);
	font-weight: 600;
	font-style: italic;
	font-size: clamp(2.6rem, 5vw, 4rem);
	color: var(--red);
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 0.95rem;
}
.stat__caption { font-size: 1rem; color: var(--ink-soft); line-height: 1.55; }

.win {
	background: var(--navy);
	color: var(--cream);
	padding: 2.75rem;
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	gap: 2.5rem;
	align-items: start;
	margin-bottom: 3rem;
	position: relative;
}
.win::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 4px;
	background: var(--red);
}
@media (max-width: 880px) { .win { grid-template-columns: 1fr; padding: 2rem; } }
.win .kicker { color: var(--gold); }
.win .kicker::before { background: var(--gold); }
.win__heading {
	font-family: var(--serif);
	font-size: 1.65rem;
	line-height: 1.2;
	color: var(--cream);
	margin-bottom: 0;
	font-weight: 600;
	font-style: italic;
}
.win__body { font-size: 1.05rem; line-height: 1.6; color: rgba(244,237,224,0.88); font-family: var(--serif); }

.stakes__cta {
	text-align: center;
	padding-top: 2.5rem;
	border-top: 1px solid var(--rule);
}
.stakes__cta h3 {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	color: var(--navy);
	max-width: 32ch;
	margin: 0 auto 1rem;
	line-height: 1.25;
}
.stakes__cta-sub {
	font-size: 1.02rem;
	color: var(--ink-soft);
	max-width: 50ch;
	margin: 0 auto 1.85rem;
}

/* ============================================================
   IMPACT / WHERE YOUR MONEY GOES
   ============================================================ */
.impact { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.impact__lede { max-width: 60ch; font-size: 1.13rem; color: var(--ink-soft); margin-bottom: 2.75rem; }

.tiers {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }

.tier {
	background: var(--cream);
	padding: 1.7rem 1.85rem;
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 1.4rem;
	align-items: center;
	border-left: 4px solid var(--red);
	transition: transform 0.18s, border-color 0.18s;
}
.tier:hover { transform: translateX(3px); border-left-color: var(--navy); }
.tier__amount {
	font-family: var(--serif);
	font-weight: 600;
	font-style: italic;
	font-size: 2rem;
	color: var(--red);
	line-height: 1;
	letter-spacing: -0.02em;
}
.tier__buys { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   REAL-TIME RECAPS (new section)
   ============================================================ */
.recap { background: var(--cream); }
.recap__heading { max-width: 26ch; margin-bottom: 1.25rem; }
.recap__lede { max-width: 60ch; font-size: 1.13rem; color: var(--ink-soft); margin-bottom: 3rem; }

.recap__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1.5px solid var(--navy);
	background: var(--paper);
}
@media (max-width: 880px) { .recap__grid { grid-template-columns: 1fr; } }
.recap__item {
	padding: 2rem 1.85rem;
	border-right: 1px solid var(--rule);
}
.recap__item:last-child { border-right: none; }
@media (max-width: 880px) {
	.recap__item { border-right: none; border-bottom: 1px solid var(--rule); }
	.recap__item:last-child { border-bottom: none; }
}
.recap__label {
	font-family: var(--sans);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.75rem;
	display: block;
}
.recap__title {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 1.35rem;
	line-height: 1.2;
	color: var(--navy);
	margin-bottom: 0.85rem;
}
.recap__body { font-size: 0.98rem; line-height: 1.6; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA / ANONYMOUS RESISTANCE
   ============================================================ */
.final {
	background: var(--navy);
	color: var(--cream);
	position: relative;
}
.final::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--gold) 0%, var(--gold) 50%, var(--red) 50%, var(--red) 100%);
}
.final .kicker { color: var(--gold); }
.final .kicker::before { background: var(--gold); }
.final h2 {
	color: var(--cream);
	max-width: 22ch;
	margin-bottom: 1.5rem;
	font-style: italic;
	font-weight: 500;
}
.final__body {
	max-width: 56ch;
	font-family: var(--serif);
	font-size: 1.18rem;
	line-height: 1.6;
	color: rgba(244,237,224,0.9);
	margin-bottom: 2.25rem;
}
.final__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.final .btn { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.final .btn:hover { background: var(--red); color: var(--cream); border-color: var(--red); }
.final .btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.final .btn--ghost:hover { background: var(--cream); color: var(--navy); }

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-page { padding: clamp(3rem, 7vw, 6rem) 0; min-height: 80vh; background: var(--cream); }
.donate__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .donate__grid { grid-template-columns: 1fr; } }
.donate__heading { margin-bottom: 1.25rem; }
.donate__lede { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 2rem; font-family: var(--serif); }
.donate__assurance {
	margin-top: 2rem;
	padding: 1.25rem;
	background: var(--paper);
	border-left: 3px solid var(--gold);
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.55;
}
.donate__form { background: var(--paper); padding: 2.25rem; border-top: 4px solid var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(244,237,224,0.78); padding: 3.5rem 0 2rem; border-top: 4px solid var(--gold); }
.site-footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .site-footer__inner { grid-template-columns: 1fr; } }

.footer__brand-line {
	font-family: var(--serif);
	font-size: 1.6rem;
	color: var(--cream);
	line-height: 1.15;
	margin-bottom: 1rem;
	font-weight: 500;
}
.footer__brand-line em { color: var(--red); font-style: normal; }
.footer__desc { font-size: 0.95rem; line-height: 1.55; max-width: 42ch; }

.footer__col h4 {
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1rem;
}
.footer__col a {
	display: block;
	color: rgba(244,237,224,0.78);
	font-size: 0.95rem;
	padding: 0.3rem 0;
	transition: color 0.15s;
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(244,237,224,0.18);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.84rem;
	color: rgba(244,237,224,0.55);
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   PAGE TEMPLATES — Donate, Real Time, secondary pages
   ============================================================ */

/* ── Page hero (shared by secondary pages) ── */
.page-hero, .donate-hero, .rt-hero {
	background: var(--cream);
	padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
	border-bottom: 1px solid var(--rule);
	position: relative;
}
.page-hero::after, .donate-hero::after, .rt-hero::after {
	content: '';
	position: absolute;
	bottom: -2px; left: 50%;
	transform: translateX(-50%);
	width: 90px; height: 4px;
	background: var(--red);
}
.page-hero__inner, .donate-hero__inner, .rt-hero__inner { max-width: 56ch; }
.page-hero__heading, .donate-hero__heading, .rt-hero__heading {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	line-height: 1.04;
	letter-spacing: -0.025em;
	margin: 0.5rem 0 1.5rem;
	font-weight: 500;
	font-variation-settings: "opsz" 96, "SOFT" 30;
}
.page-hero__heading em, .donate-hero__heading em, .rt-hero__heading em { color: var(--red); font-style: italic; }
.page-hero__lede, .donate-hero__lede, .rt-hero__lede {
	font-family: var(--serif);
	font-size: 1.18rem;
	line-height: 1.55;
	color: var(--ink-soft);
	max-width: 54ch;
}

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-tiers { background: var(--paper); border-bottom: 1px solid var(--rule); }
.dtier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
@media (max-width: 880px) { .dtier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dtier-grid { grid-template-columns: 1fr; } }

.dtier {
	background: var(--cream);
	border: 1.5px solid var(--rule);
	padding: 2rem 1.75rem;
	text-align: left;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	font: inherit;
	color: inherit;
}
.dtier:hover {
	border-color: var(--red);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(10,31,61,0.08);
}
.dtier.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.dtier.is-active .dtier__amount { color: var(--gold); }
.dtier.is-active .dtier__impact { color: rgba(244,237,224,0.85); }
.dtier.is-featured { border-color: var(--gold); border-width: 2px; }
.dtier__flag {
	position: absolute;
	top: -10px; left: 1.75rem;
	background: var(--gold);
	color: var(--navy);
	font-family: var(--sans);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
}
.dtier__amount {
	font-family: var(--serif);
	font-weight: 600;
	font-style: italic;
	font-size: 2.5rem;
	color: var(--red);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
}
.dtier__impact {
	font-size: 0.97rem;
	line-height: 1.55;
	color: var(--ink-soft);
}

.donate-form-section { background: var(--cream); }
.donate-form__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
@media (max-width: 880px) { .donate-form__grid { grid-template-columns: 1fr; } }
.donate-form__heading { margin: 0.5rem 0 1.5rem; }
.donate-form__assurance {
	padding: 1.25rem;
	background: var(--paper);
	border-left: 3px solid var(--gold);
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.55;
}
.donate-form__panel {
	background: var(--paper);
	padding: 2.5rem;
	border-top: 4px solid var(--red);
	min-height: 480px;
}

.donate-other { background: var(--paper); border-top: 1px solid var(--rule); }
.donate-other__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
@media (max-width: 720px) { .donate-other__grid { grid-template-columns: 1fr; } }
.donate-other__item {
	background: var(--cream);
	padding: 1.85rem 2rem;
	border-left: 3px solid var(--gold);
}
.donate-other__item h3 {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.25rem;
	color: var(--navy);
	margin-bottom: 0.75rem;
}
.donate-other__item p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; margin: 0; }

/* ============================================================
   REAL TIME PAGE
   ============================================================ */


/* ============================================================
   SECONDARY PAGES (Host, Partner, Press, Contact)
   ============================================================ */
.page-body { background: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; }
.page-body .section-head { margin-bottom: 2.5rem; }

.numbered-list {
	list-style: none;
	padding: 0;
	max-width: 64ch;
	counter-reset: numlist;
}
.numbered-list li {
	counter-increment: numlist;
	position: relative;
	padding: 1.5rem 0 1.5rem 4rem;
	border-bottom: 1px solid var(--rule);
	font-family: var(--serif);
	font-size: 1.13rem;
	line-height: 1.55;
	color: var(--ink);
}
.numbered-list li::before {
	content: counter(numlist, decimal-leading-zero);
	position: absolute;
	left: 0; top: 1.4rem;
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	font-size: 1.5rem;
	color: var(--gold);
}
.numbered-list li:last-child { border-bottom: none; }

.page-contact {
	margin-top: 2.5rem;
	padding: 1.5rem 1.85rem;
	background: var(--paper);
	border-left: 3px solid var(--red);
	font-size: 1rem;
	color: var(--ink-soft);
	line-height: 1.6;
	max-width: 64ch;
}

.partner-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}
@media (max-width: 880px) { .partner-tiers { grid-template-columns: 1fr; } }
.partner-tier {
	background: var(--paper);
	padding: 2rem 1.85rem;
	border-top: 4px solid var(--gold);
}
.partner-tier h3 {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--navy);
	margin-bottom: 0.9rem;
}
.partner-tier p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; margin: 0; }

.press-card {
	background: var(--paper);
	padding: 2.5rem;
	border-top: 4px solid var(--red);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (max-width: 720px) { .press-card { grid-template-columns: 1fr; } }
.press-card__contact h3 {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.45rem;
	color: var(--navy);
	margin-bottom: 0.75rem;
}
.press-card__contact a { color: var(--red); font-weight: 600; }
.press-card__contact p { margin: 0.3rem 0; color: var(--ink-soft); }
.press-card__links { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
	background: var(--paper);
	padding: 1.75rem 1.85rem;
	border-left: 3px solid var(--red);
}
.contact-block h3 {
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 0.75rem;
}
.contact-block a {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.3rem;
	color: var(--red);
	font-weight: 500;
	transition: color 0.15s;
}
.contact-block a:hover { color: var(--navy); }
.contact-meta {
	padding: 1.5rem 1.85rem;
	background: var(--paper);
	border-left: 3px solid var(--gold);
	max-width: 64ch;
}
.contact-meta p { margin: 0.3rem 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   PRIMARY NAV
   ============================================================ */
.site-nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-links {
	display: flex;
	align-items: center;
	gap: 1.85rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a:not(.btn) {
	font-family: var(--sans);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--ink);
	padding: 0.5rem 0;
	transition: color 0.15s;
	display: inline-block;
}
.nav-links > li > a:not(.btn):hover { color: var(--red); }

.nav-has-sub > a { cursor: pointer; }
.nav-sub {
	position: absolute;
	top: 100%;
	left: -0.85rem;
	background: var(--cream);
	border-top: 3px solid var(--red);
	min-width: 220px;
	list-style: none;
	padding: 0.5rem 0;
	margin: 0;
	box-shadow: 0 12px 32px rgba(10,31,61,0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 200;
}
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-sub a {
	display: block;
	padding: 0.7rem 1.1rem;
	font-family: var(--sans);
	font-size: 0.88rem;
	color: var(--ink);
	transition: background 0.15s, color 0.15s;
}
.nav-sub a:hover { background: var(--paper); color: var(--red); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--navy);
	transition: transform 0.2s;
}

@media (max-width: 980px) {
	.nav-toggle { display: flex; order: 2; }
	.nav-links {
		position: absolute;
		top: 100%;
		right: var(--gutter);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--cream);
		padding: 1.25rem 1.5rem;
		min-width: 240px;
		border-top: 3px solid var(--red);
		box-shadow: 0 12px 32px rgba(10,31,61,0.12);
		opacity: 0;
		visibility: hidden;
		transform: translateY(6px);
		transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	}
	.nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
	.nav-links > li { padding: 0.4rem 0; }
	.nav-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0.5rem 0 0 1rem; min-width: 0; }
	.nav-links > li > a.btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
}

/* ── Form confirmation banner ── */
.form-confirm {
	display: none;
	margin-top: 1rem;
	padding: 1rem 1.25rem;
	background: var(--gold);
	color: var(--navy);
	font-family: var(--sans);
	font-weight: 600;
	font-size: 0.95rem;
	border-left: 4px solid var(--navy);
}
.form-confirm.is-visible { display: block; }
.form-confirm strong { display: block; font-family: var(--serif); font-style: italic; font-size: 1.15rem; margin-bottom: 0.25rem; }

/* ── Blackbaud embed slot (placeholder until embed code is pasted in) ── */
.blackbaud-slot {
	min-height: 520px;
	border: 2px dashed var(--rule);
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 12px,
		rgba(10,31,61,0.025) 12px,
		rgba(10,31,61,0.025) 24px
	);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2.5rem 1.5rem;
	color: var(--muted);
}
.blackbaud-slot__label {
	font-family: var(--sans);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.85rem;
}
.blackbaud-slot__title {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.65rem;
	color: var(--navy);
	margin-bottom: 1rem;
	line-height: 1.2;
}
.blackbaud-slot__help {
	font-size: 0.92rem;
	max-width: 32ch;
	line-height: 1.55;
	color: var(--ink-soft);
}
.blackbaud-slot__help code {
	display: inline-block;
	background: var(--paper);
	padding: 0.15rem 0.45rem;
	font-family: 'SF Mono', Monaco, monospace;
	font-size: 0.85em;
	color: var(--navy);
	border-radius: 2px;
}

/* ============================================================
   PARTNER INQUIRY FORM
   ============================================================ */
.partner-form-section {
	background: var(--paper);
	border-top: 1px solid var(--rule);
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}
.partner-form__lede {
	max-width: 56ch;
	font-size: 1.08rem;
	color: var(--ink-soft);
	line-height: 1.55;
}
.partner-form {
	background: var(--cream);
	padding: clamp(1.75rem, 3vw, 2.75rem);
	border-top: 4px solid var(--red);
	max-width: 880px;
}
.partner-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}
@media (max-width: 720px) { .partner-form__grid { grid-template-columns: 1fr; } }
.partner-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}
.partner-form__field--full { grid-column: 1 / -1; }
.partner-form__field label {
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--navy);
}
.partner-form__field .req { color: var(--red); }
.partner-form__field input,
.partner-form__field select,
.partner-form__field textarea {
	padding: 0.9rem 1rem;
	border: 1.5px solid var(--rule);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 1rem;
	color: var(--ink);
	border-radius: 0;
	transition: border-color 0.15s, background 0.15s;
}
.partner-form__field input:focus,
.partner-form__field select:focus,
.partner-form__field textarea:focus {
	outline: none;
	border-color: var(--navy);
	background: #fff;
}
.partner-form__field textarea {
	resize: vertical;
	min-height: 140px;
	font-family: var(--sans);
	line-height: 1.5;
}
.partner-form__field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%),
	                  linear-gradient(135deg, var(--navy) 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
	background-size: 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}
.partner-form__actions {
	margin-top: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	align-items: flex-start;
}
.partner-form__legal {
	font-size: 0.82rem;
	color: var(--muted);
	max-width: 56ch;
	margin: 0;
	line-height: 1.5;
}
.partner-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px; height: 1px;
	overflow: hidden;
}
.partner-form__alert {
	padding: 1.1rem 1.35rem;
	border-left: 4px solid var(--navy);
	background: var(--cream);
	font-family: var(--sans);
	margin-bottom: 1.75rem;
	max-width: 880px;
	line-height: 1.5;
}
.partner-form__alert strong {
	display: block;
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.2rem;
	margin-bottom: 0.3rem;
	color: var(--navy);
}
.partner-form__alert--success { border-left-color: var(--gold); background: rgba(201,164,73,0.12); }
.partner-form__alert--error   { border-left-color: var(--red);  background: rgba(200,16,46,0.08); color: var(--ink); }
.partner-form__alert--error strong { color: var(--red); }

/* ============================================================
   REAL TIME — PRESS RELEASE FEED
   ============================================================ */
.rt-press { background: var(--paper); padding-top: clamp(2.5rem, 5vw, 4rem); }
.rt-press__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
@media (max-width: 880px) { .rt-press__grid { grid-template-columns: 1fr; } }

.rt-pr {
	background: var(--cream);
	padding: 2rem 1.85rem 1.75rem;
	border-top: 4px solid var(--red);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rt-pr:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(10,31,61,0.1); }

.rt-pr__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	gap: 0.85rem;
}
.rt-pr__date {
	font-family: var(--sans);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}
.rt-pr__tag {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy);
	background: rgba(201,164,73,0.18);
	padding: 0.32rem 0.7rem;
}
.rt-pr__title {
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
	line-height: 1.22;
	color: var(--navy);
	margin: 0 0 0.85rem;
	letter-spacing: -0.01em;
}
.rt-pr__title a { color: var(--navy); transition: color 0.15s; }
.rt-pr__title a:hover { color: var(--red); }
.rt-pr__excerpt {
	font-size: 0.98rem;
	color: var(--ink-soft);
	line-height: 1.55;
	margin-bottom: 1.25rem;
	flex: 1;
}
.rt-pr__link {
	font-family: var(--sans);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--red);
	margin-top: auto;
	display: inline-block;
	transition: color 0.15s, transform 0.15s;
}
.rt-pr__link:hover { color: var(--navy); transform: translateX(2px); }

.rt-press__more { text-align: center; padding-bottom: 1rem; }

/* ============================================================
   TAKE ACTION APP SECTION
   ============================================================ */
.rt-app { background: var(--cream); border-top: 1px solid var(--rule); }
.rt-app__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
@media (max-width: 880px) { .rt-app__grid { grid-template-columns: 1fr; } }
.rt-app__heading {
	font-size: clamp(2rem, 3.6vw, 2.75rem);
	margin: 0.5rem 0 1.5rem;
	max-width: 18ch;
}
.rt-app__body {
	font-family: var(--serif);
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--ink-soft);
	max-width: 52ch;
	margin-bottom: 2rem;
}

/* ── Phone mockup ── */
.rt-app__device { display: flex; justify-content: center; align-items: center; }
.rt-app__phone {
	width: 280px;
	height: 560px;
	background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
	border-radius: 38px;
	padding: 14px;
	box-shadow:
		0 30px 60px rgba(10,31,61,0.22),
		0 12px 24px rgba(10,31,61,0.15),
		inset 0 0 0 1px rgba(244,237,224,0.12);
	position: relative;
}
.rt-app__phone::before {
	content: '';
	position: absolute;
	left: -3px;
	top: 110px;
	width: 3px;
	height: 30px;
	background: var(--navy);
	border-radius: 2px;
}
.rt-app__phone::after {
	content: '';
	position: absolute;
	left: -3px;
	top: 160px;
	width: 3px;
	height: 50px;
	background: var(--navy);
	border-radius: 2px;
	box-shadow: 0 65px 0 var(--navy);
}
.rt-app__screen {
	background: var(--cream);
	width: 100%;
	height: 100%;
	border-radius: 26px;
	overflow: hidden;
	position: relative;
	padding: 38px 14px 18px;
}
.rt-app__notch {
	position: absolute;
	top: 14px; left: 50%;
	transform: translateX(-50%);
	width: 92px; height: 22px;
	background: var(--navy);
	border-radius: 14px;
}
.rt-app__feed {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 6px;
}
.rt-app__feed-item {
	background: #fff;
	padding: 12px 14px;
	border-left: 3px solid var(--gold);
	border-radius: 4px;
}
.rt-app__feed-item--alert { border-left-color: var(--red); background: rgba(200,16,46,0.05); }
.rt-app__feed-label {
	font-family: var(--sans);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
	display: block;
	margin-bottom: 4px;
}
.rt-app__feed-item:not(.rt-app__feed-item--alert) .rt-app__feed-label { color: var(--navy); }
.rt-app__feed-title {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1.2;
	color: var(--navy);
	margin-bottom: 4px;
	letter-spacing: -0.005em;
}
.rt-app__feed-sub {
	font-family: var(--sans);
	font-size: 0.72rem;
	color: var(--muted);
	line-height: 1.3;
}

/* ============================================================
   QUARTERLY NEWSLETTER OPT-IN
   ============================================================ */
.rt-newsletter {
	background: var(--navy);
	color: var(--cream);
	text-align: center;
	padding: clamp(4rem, 8vw, 6rem) 0;
	position: relative;
}
.rt-newsletter::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--red) 0%, var(--red) 50%, var(--gold) 50%, var(--gold) 100%);
}
.rt-newsletter .kicker { color: var(--gold); margin-left: auto; margin-right: auto; }
.rt-newsletter .kicker::before { background: var(--gold); }
.rt-newsletter__heading {
	color: var(--cream);
	max-width: 26ch;
	margin: 0 auto 1.5rem;
	font-style: italic;
	font-weight: 500;
}
.rt-newsletter__body {
	font-family: var(--serif);
	font-size: 1.15rem;
	max-width: 56ch;
	margin: 0 auto 2.5rem;
	color: rgba(244,237,224,0.85);
	line-height: 1.6;
}
.rt-newsletter__form {
	max-width: 560px;
	margin: 0 auto;
	text-align: left;
}
.rt-newsletter__fields {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .rt-newsletter__fields { grid-template-columns: 1fr; } }
.rt-newsletter__field { display: flex; flex-direction: column; gap: 0.45rem; }
.rt-newsletter__field label {
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}
.rt-newsletter__field .req { color: var(--red); }
.rt-newsletter__field input {
	padding: 0.95rem 1.1rem;
	border: 1.5px solid rgba(244,237,224,0.35);
	background: rgba(244,237,224,0.06);
	color: var(--cream);
	font-family: var(--sans);
	font-size: 1rem;
	border-radius: 0;
	transition: border-color 0.15s, background 0.15s;
}
.rt-newsletter__field input::placeholder { color: rgba(244,237,224,0.4); }
.rt-newsletter__field input:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(244,237,224,0.1);
}

/* Required opt-in checkbox */
.rt-newsletter__consent {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1.1rem 1.25rem;
	background: rgba(244,237,224,0.06);
	border-left: 3px solid var(--gold);
	margin-bottom: 1.5rem;
	cursor: pointer;
	transition: background 0.15s;
}
.rt-newsletter__consent:hover { background: rgba(244,237,224,0.09); }
.rt-newsletter__consent input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 22px; height: 22px;
	border: 2px solid var(--gold);
	background: transparent;
	margin: 0;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
}
.rt-newsletter__consent input[type="checkbox"]:checked {
	background: var(--gold);
}
.rt-newsletter__consent input[type="checkbox"]:checked::after {
	content: '✓';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	color: var(--navy);
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
}
.rt-newsletter__consent span {
	font-family: var(--sans);
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--cream);
}
.rt-newsletter__consent .req { color: var(--gold); margin-left: 0.25rem; }

.rt-newsletter__form .btn {
	background: var(--gold);
	color: var(--navy);
	border-color: var(--gold);
	width: 100%;
	justify-content: center;
}
.rt-newsletter__form .btn:hover { background: var(--red); color: var(--cream); border-color: var(--red); }

.rt-newsletter__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px; height: 1px;
	overflow: hidden;
}
.rt-newsletter__fine {
	font-size: 0.82rem;
	color: rgba(244,237,224,0.6);
	margin-top: 1.25rem;
	line-height: 1.5;
	text-align: center;
}

/* ============================================================
   INTERACTIVE ENHANCEMENTS
   ============================================================ */

/* Smooth scroll for anchor links */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

/* Scroll-progress bar at the very top */
.scroll-progress {
	position: fixed;
	top: 0; left: 0;
	height: 3px;
	width: 0;
	background: linear-gradient(to right, var(--red), var(--gold));
	z-index: 9999;
	transition: width 0.05s linear;
	pointer-events: none;
}

/* Header gains a subtle shadow + slight compact-state when user scrolls */
.site-header {
	transition: box-shadow 0.25s ease, padding 0.25s ease, background 0.25s ease;
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--cream);
}
.site-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(10,31,61,0.10);
	background: rgba(244,237,224,0.96);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.site-header.is-scrolled .site-header__inner {
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

/* Tier cards lift on hover (interactive feel) */
.tier {
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-left-color 0.22s ease;
}
.tier:hover {
	transform: translateY(-4px) translateX(3px);
	box-shadow: 0 14px 32px rgba(10,31,61,0.08);
}

/* Pillar cards lift on hover */
.pillar {
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(10,31,61,0.10);
}

/* Stat cards pulse subtly on hover */
.stat {
	transition: transform 0.22s ease;
}
.stat:hover {
	transform: scale(1.03);
}
.stat__num {
	transition: color 0.22s ease;
}
.stat:hover .stat__num {
	color: var(--navy);
}

/* Buttons get more pronounced press-down feedback */
.btn {
	transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }

/* Nav links underline animation on hover */
.nav-links > li > a:not(.btn) {
	position: relative;
}
.nav-links > li > a:not(.btn)::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	bottom: 0.25rem;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
}
.nav-links > li > a:not(.btn):hover::after {
	transform: scaleX(1);
}

/* ============================================================
   HERO ENTRANCE CHOREOGRAPHY
   First impression on page load — sequence:
   stamp → kicker → headline lines (one at a time) → gold bar
   draws in under Now! → subhead → buttons
   ============================================================ */
@keyframes ryv-fade-up   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ryv-fade-down { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ryv-bar-draw  { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__stamp,
.hero__kicker,
.hero__headline-line,
.hero__sub,
.hero__actions {
	opacity: 0;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.16, 0.84, 0.44, 1);
}
.hero__stamp                     { animation: ryv-fade-down 0.6s 0.1s forwards; }
.hero__kicker                    { animation: ryv-fade-up   0.6s 0.2s forwards; }
.hero__headline-line:nth-child(1) { animation: ryv-fade-up 0.75s 0.35s forwards; }
.hero__headline-line:nth-child(2) { animation: ryv-fade-up 0.75s 0.5s  forwards; }
.hero__headline-line:nth-child(3) { animation: ryv-fade-up 0.75s 0.65s forwards; }
.hero__sub                       { animation: ryv-fade-up  0.6s 0.95s forwards; }
.hero__actions                   { animation: ryv-fade-up  0.6s 1.1s  forwards; }

/* Gold bar under "Now!" draws from left after the line lands */
.hero__headline-now::after {
	transform: scaleX(0);
	transform-origin: left center;
	animation: ryv-bar-draw 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) 1.05s forwards;
}

/* ============================================================
   STAGGER REVEAL — grid children come in one after another
   ============================================================ */
.stagger-prep {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s cubic-bezier(0.2, 0.7, 0.3, 1),
	            transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.stagger-in {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   PRIMARY HERO CTA — subtle pulse to draw the eye
   ============================================================ */
@keyframes ryv-cta-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.45); }
	50%      { box-shadow: 0 0 0 12px rgba(200, 16, 46, 0); }
}
.hero__actions .btn--arrow:first-child {
	animation: ryv-cta-pulse 2.4s ease-in-out infinite;
	animation-delay: 2s;
}
.hero__actions .btn--arrow:first-child:hover {
	animation: none;
}

/* ============================================================
   ELEVATED HOVER STATES — cards feel more reactive
   ============================================================ */
.pillar {
	transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1),
	            box-shadow 0.32s ease;
	position: relative;
	overflow: visible;
}
.pillar::before {
	transition: height 0.28s ease, background 0.28s ease;
}
.pillar:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 44px rgba(10, 31, 61, 0.12);
}
.pillar:hover::before {
	height: 8px;
}

.rt-pr {
	overflow: visible;
}
.rt-pr__title a {
	transition: color 0.22s ease;
}
.rt-pr:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(10, 31, 61, 0.11);
}

.dtier {
	transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1),
	            box-shadow 0.28s ease,
	            border-left-color 0.28s ease;
}
.dtier:hover {
	transform: translateX(4px) translateY(-3px);
	box-shadow: 0 14px 30px rgba(10, 31, 61, 0.09);
}

/* ============================================================
   PROGRESSIVE LINK UNDERLINE (footer links, body anchors)
   ============================================================ */
.site-footer a,
.footer__col a,
.rt-pr__link {
	position: relative;
	background-image: linear-gradient(to right, currentColor, currentColor);
	background-size: 0% 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), color 0.2s;
}
.site-footer a:hover,
.footer__col a:hover,
.rt-pr__link:hover {
	background-size: 100% 1px;
}

/* ============================================================
   PREFERS-REDUCED-MOTION OVERRIDES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	.hero__stamp, .hero__kicker, .hero__headline-line,
	.hero__sub, .hero__actions {
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
	}
	.hero__headline-now::after {
		transform: scaleX(1) !important;
		animation: none !important;
	}
	.stagger-prep, .stagger-in {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.hero__actions .btn--arrow:first-child {
		animation: none !important;
	}
}

/* ============================================================
   HERO — TWO-COLUMN LAYOUT WITH ELECTION COUNTDOWN
   ============================================================ */
.hero__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
@media (max-width: 980px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.hero__side { order: 2; }
}

.hero__main { min-width: 0; }

/* Countdown panel — sits on the right of the hero */
.hero__side {
	display: flex;
	justify-content: flex-end;
}
@media (max-width: 980px) {
	.hero__side { justify-content: flex-start; }
}

.hero__countdown {
	background: var(--cream);
	border: 1px solid var(--rule);
	border-top: 6px solid var(--red);
	padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
	max-width: 360px;
	width: 100%;
	box-shadow: 0 18px 44px rgba(10, 31, 61, 0.08);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px) scale(0.97);
	animation: ryv-fade-up-scale 0.75s cubic-bezier(0.2, 0.7, 0.3, 1) 1.25s forwards;
}

@keyframes ryv-fade-up-scale {
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Decorative corner ornament */
.hero__countdown::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 0; height: 0;
	border-style: solid;
	border-width: 0 32px 32px 0;
	border-color: transparent var(--gold) transparent transparent;
	opacity: 0.5;
}

.hero__countdown-eyebrow {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.65rem;
}

.hero__countdown-num {
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(4.5rem, 11vw, 8.5rem);
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: var(--navy);
	margin: 0;
	font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero__countdown-label {
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink);
	margin-top: 0.75rem;
	line-height: 1.3;
}

.hero__countdown-sub {
	font-family: var(--serif);
	font-style: italic;
	font-size: 0.92rem;
	color: var(--ink-soft);
	margin-top: 0.5rem;
	line-height: 1.4;
}

/* Subtle ambient glow behind the countdown */
.hero__countdown::after {
	content: '';
	position: absolute;
	bottom: -50%; right: -30%;
	width: 80%; height: 100%;
	background: radial-gradient(circle, rgba(201, 164, 73, 0.18) 0%, transparent 70%);
	pointer-events: none;
	animation: ryv-glow 6s ease-in-out infinite;
}
@keyframes ryv-glow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50%      { opacity: 1;   transform: scale(1.15); }
}

/* ============================================================
   PAPER GRAIN TEXTURE — adds editorial print feel to the whole site
   ============================================================ */
body::before {
	content: '';
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	pointer-events: none;
	z-index: 9998;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.12 0 0 0 0 0.24 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 200px 200px;
	mix-blend-mode: multiply;
}

/* ============================================================
   HERO ACCENT — diagonal red rule between hero and next section
   ============================================================ */
.hero::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right,
		var(--red) 0%,
		var(--red) 33%,
		var(--gold) 33%,
		var(--gold) 50%,
		var(--navy) 50%,
		var(--navy) 100%);
	transform: scaleX(0);
	transform-origin: left center;
	animation: ryv-bar-draw 1s cubic-bezier(0.2, 0.7, 0.3, 1) 1.4s forwards;
}

/* ============================================================
   PRIMARY CTA — slightly more presence
   ============================================================ */
.hero__actions .btn--arrow:first-child {
	padding: 1.05rem 1.85rem;
	font-size: 0.95rem;
}

/* ============================================================
   INTERACTIVE ELECTION MAP
   ============================================================ */
.emap {
	background: var(--paper);
	padding: clamp(4rem, 7vw, 6rem) 0;
	border-top: 1px solid var(--rule);
}
.emap__lede {
	max-width: 64ch;
	font-size: 1.08rem;
	color: var(--ink-soft);
	line-height: 1.55;
}

.emap__layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: flex-start;
	margin-top: 2.5rem;
}
@media (max-width: 980px) {
	.emap__layout { grid-template-columns: 1fr; }
}

/* ── Tile grid map ── */
.emap__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(8, auto);
	gap: 6px;
	aspect-ratio: 12 / 8;
}
.emap__tile {
	background: var(--cream);
	border: 1.5px solid var(--rule);
	color: var(--ink-soft);
	font-family: var(--sans);
	font-size: clamp(0.62rem, 1.1vw, 0.85rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
	aspect-ratio: 1;
}
.emap__tile:hover {
	background: var(--navy);
	color: var(--cream);
	border-color: var(--navy);
	transform: scale(1.08);
	z-index: 2;
	position: relative;
	box-shadow: 0 4px 14px rgba(10, 31, 61, 0.2);
}
.emap__tile.is-active {
	background: var(--red);
	color: var(--cream);
	border-color: var(--red);
}
.emap__tile--priority {
	background: var(--gold);
	color: var(--navy);
	border-color: var(--gold);
}
.emap__tile--priority:hover {
	background: var(--red);
	color: var(--cream);
	border-color: var(--red);
}

/* ── Legend ── */
.emap__legend {
	display: flex;
	gap: 1.5rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
	font-family: var(--sans);
	font-size: 0.78rem;
	color: var(--ink-soft);
}
.emap__legend-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.emap__swatch {
	width: 14px; height: 14px;
	background: var(--cream);
	border: 1.5px solid var(--rule);
	display: inline-block;
}
.emap__swatch--priority { background: var(--gold); border-color: var(--gold); }

/* ── Selector dropdown (Option C) ── */
.emap__selector {
	margin-top: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.emap__selector label {
	font-family: var(--sans);
	font-size: 0.85rem;
	color: var(--ink);
	font-weight: 600;
}
.emap__selector select {
	padding: 0.7rem 0.95rem;
	border: 1.5px solid var(--rule);
	background: var(--cream);
	font-family: var(--sans);
	font-size: 0.9rem;
	color: var(--ink);
	min-width: 220px;
	cursor: pointer;
}
.emap__selector select:focus {
	outline: none;
	border-color: var(--navy);
	background: #fff;
}

/* ── Detail panel ── */
.emap__detail {
	background: var(--cream);
	border-top: 6px solid var(--red);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	box-shadow: 0 12px 32px rgba(10, 31, 61, 0.08);
	position: sticky;
	top: 110px;
}
@media (max-width: 980px) {
	.emap__detail { position: static; }
}
.emap__detail-eyebrow {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.65rem;
}
.emap__detail-title {
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
	line-height: 1.15;
	color: var(--navy);
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
}
.emap__detail-body {
	font-family: var(--serif);
	font-size: 1rem;
	color: var(--ink-soft);
	line-height: 1.55;
}

.emap__detail-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
	margin: 1.5rem 0 1.25rem;
}
.emap__stat {
	background: var(--paper);
	padding: 1rem 1.1rem;
	border-left: 3px solid var(--red);
}
.emap__stat--alt {
	border-left-color: var(--gold);
}
.emap__stat-num {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--navy);
	letter-spacing: -0.02em;
}
.emap__stat-label {
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-top: 0.35rem;
	line-height: 1.3;
}

.emap__detail-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--rule);
	font-family: var(--sans);
	font-size: 0.92rem;
}
.emap__detail-row:last-of-type { border-bottom: none; }
.emap__detail-key {
	font-weight: 700;
	color: var(--ink-soft);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.74rem;
	flex-shrink: 0;
	padding-top: 0.15rem;
}
.emap__detail-val {
	text-align: right;
	color: var(--navy);
	font-weight: 500;
	line-height: 1.4;
}

.emap__detail-actions {
	margin-top: 1.5rem;
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.emap__detail-actions .btn {
	font-size: 0.85rem;
	padding: 0.75rem 1.1rem;
}

/* ============================================================
   REAL TIME — Take Action App as page lead
   ============================================================ */
.rt-app--lead {
	padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 5vw, 5rem);
	border-top: none;
}
.rt-app--lead .rt-app__heading {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	max-width: 16ch;
}
.rt-app__actions {
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}
.rt-hero--secondary {
	background: var(--paper);
	padding: clamp(2.5rem, 4vw, 3.5rem) 0;
	border-top: 1px solid var(--rule);
}
.rt-hero--secondary .rt-hero__heading {
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

/* ============================================================
   GIVE PAGE — Two-column: News Releases + Donation Form
   ============================================================ */
.give-hero {
	background: var(--cream);
	padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2rem, 3vw, 3rem);
}
.give-hero__heading {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--navy);
	margin: 0 0 1.25rem;
	max-width: 22ch;
}
.give-hero__heading em { color: var(--red); font-style: italic; font-weight: 400; }
.give-hero__lede {
	max-width: 64ch;
	font-size: 1.1rem;
	color: var(--ink-soft);
	line-height: 1.55;
}
.give-hero__selected {
	margin-top: 1.5rem;
	display: inline-block;
	padding: 0.85rem 1.25rem;
	background: rgba(201, 164, 73, 0.18);
	border-left: 3px solid var(--gold);
	font-family: var(--sans);
	font-size: 0.95rem;
	color: var(--navy);
}
.give-hero__selected strong { color: var(--red); }

.give-body {
	background: var(--paper);
	padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
}
.give-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
@media (max-width: 980px) {
	.give-layout { grid-template-columns: 1fr; }
}

/* Left column — news releases */
.give-news__heading {
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	color: var(--navy);
	letter-spacing: -0.015em;
	margin: 0.4rem 0 0.85rem;
}
.give-news__lede {
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 2rem;
}
.give-news__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.give-news__item {
	background: var(--cream);
	padding: 1.75rem;
	border-top: 4px solid var(--red);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.give-news__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(10, 31, 61, 0.1);
}
.give-news__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.85rem;
	gap: 0.85rem;
}
.give-news__date {
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}
.give-news__tag {
	font-family: var(--sans);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy);
	background: rgba(201, 164, 73, 0.18);
	padding: 0.3rem 0.65rem;
}
.give-news__title {
	font-family: var(--serif);
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--navy);
	margin: 0 0 0.7rem;
	letter-spacing: -0.01em;
}
.give-news__title a {
	color: var(--navy);
	transition: color 0.15s;
}
.give-news__title a:hover { color: var(--red); }
.give-news__excerpt {
	font-size: 0.94rem;
	color: var(--ink-soft);
	line-height: 1.55;
	margin-bottom: 1rem;
}
.give-news__link {
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--red);
	transition: color 0.15s, transform 0.15s;
	display: inline-block;
}
.give-news__link:hover { color: var(--navy); transform: translateX(2px); }
.give-news__more { margin-top: 2rem; }

/* Right column — donation form (sticky on desktop) */
.give-form__sticky {
	position: sticky;
	top: 100px;
}
@media (max-width: 980px) {
	.give-form__sticky { position: static; }
}
.give-form__header { margin-bottom: 1.25rem; }
.give-form__heading {
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(1.6rem, 2.6vw, 2rem);
	color: var(--navy);
	letter-spacing: -0.015em;
	margin: 0.35rem 0 0;
}
.give-form__panel {
	background: var(--cream);
	padding: 1.5rem;
	border-top: 4px solid var(--red);
	min-height: 480px;
}
.give-form__assurance {
	margin-top: 1.25rem;
	padding: 1rem 1.25rem;
	background: var(--cream);
	border-left: 3px solid var(--gold);
	font-family: var(--sans);
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--ink-soft);
}

/* ============================================================
   DONATE PAGE — Two-column hero with form
   ============================================================ */
.donate-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
@media (max-width: 980px) {
	.donate-hero__grid { grid-template-columns: 1fr; }
}
.donate-hero__copy { min-width: 0; padding-top: 0; }
.donate-hero__assurance {
	margin-top: 1.75rem;
	padding: 1rem 1.25rem;
	background: rgba(201, 164, 73, 0.12);
	border-left: 3px solid var(--gold);
	font-family: var(--sans);
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--ink-soft);
}
.donate-hero__form {
	background: var(--paper);
	padding: 1.5rem;
	border-top: 4px solid var(--red);
	min-height: 360px;
	max-width: 440px;
	width: 100%;
	margin-left: auto;
}
@media (max-width: 980px) {
	.donate-hero__form { margin-left: 0; max-width: 100%; }
}

/* ============================================================
   DONATE PAGE — Tier cards as clickable links
   ============================================================ */
.donate-tiers__lede {
	max-width: 56ch;
	font-size: 1rem;
	color: var(--ink-soft);
	line-height: 1.55;
	margin-top: 0.5rem;
}
a.dtier {
	text-decoration: none;
	cursor: pointer;
}
.dtier__cta {
	display: block;
	margin-top: 1rem;
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--red);
	transition: color 0.18s ease, transform 0.18s ease;
}
.dtier:hover .dtier__cta {
	color: var(--navy);
	transform: translateX(3px);
}

/* ============================================================
   OTHER WAYS TO GIVE — cards as clickable form-anchors
   ============================================================ */
.donate-other__lede {
	max-width: 56ch;
	font-size: 1rem;
	color: var(--ink-soft);
	line-height: 1.55;
	margin-top: 0.5rem;
}
a.donate-other__item {
	display: block;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
	            box-shadow 0.22s ease,
	            border-color 0.22s ease;
	color: inherit;
}
a.donate-other__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(10, 31, 61, 0.10);
	border-color: var(--red);
}
.donate-other__cta {
	display: block;
	margin-top: 1.25rem;
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--red);
	transition: color 0.18s ease, transform 0.18s ease;
}
a.donate-other__item:hover .donate-other__cta {
	color: var(--navy);
	transform: translateX(3px);
}

/* ============================================================
   DONATE HERO — pull top padding tighter (text closer to header)
   ============================================================ */
.donate-hero {
	padding-top: clamp(2rem, 4vw, 3rem) !important;
	padding-bottom: clamp(2.5rem, 4vw, 3.5rem) !important;
}
.donate-hero .kicker {
	margin-bottom: 0.5rem;
}
.donate-hero__heading {
	margin-top: 0 !important;
	margin-bottom: 1.25rem !important;
}
