/* ==========================================================================
   GOTV Initiative — design system
   Palette sampled directly from the approved mockup. No greys are used for
   any text color anywhere in this file — body copy is always full ink black
   or pure white, per brand direction.

   Typography is scalable from the Customizer (Customize > Typography):
   every heading font-size is wrapped in calc(var(--gotv-heading-scale) * ...)
   and every body/paragraph font-size in calc(var(--gotv-body-scale) * ...),
   so the two global sliders there scale ALL headings or ALL body text at
   once without needing a control per element.
   ========================================================================== */

:root {
	--gotv-ink: #000000;
	--gotv-charcoal: #161616;
	--gotv-lime: #ebf678;
	--gotv-purple: #6d0379;
	--gotv-lavender: #d8bddb;
	--gotv-accent-purple: #9642fc;
	--gotv-white: #ffffff;

	--font-display: 'Special Gothic Expanded One', 'Arial Narrow', sans-serif;
	--font-body: 'Rokkitt', Georgia, serif;
	--gotv-heading-weight: 400;
	--gotv-body-weight: 400;
	--gotv-heading-scale: 1;
	--gotv-body-scale: 1;

	--container-width: 1440px;
	--gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: var(--gotv-body-weight);
	font-size: calc(var(--gotv-body-scale) * 18px);
	line-height: 1.5;
	color: var(--gotv-ink);
	background: var(--gotv-white);
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
}

h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: var(--gotv-heading-weight);
	text-transform: uppercase;
	line-height: 1.05;
	letter-spacing: -0.01em;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* Utility buttons ---------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.4vw, 2.6875rem));
	padding: 0.35em 1.6em;
	border: 3px solid var(--gotv-ink);
	background: transparent;
	color: var(--gotv-ink);
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn--solid {
	background: var(--gotv-lime);
	border-color: var(--gotv-ink);
}

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

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

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
	background: var(--gotv-ink);
	color: var(--gotv-white);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.25rem;
}

.site-logo {
	display: flex;
	align-items: center;
}

.site-logo img {
	max-height: 44px;
	width: auto;
}

.site-logo__text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--gotv-white);
	text-transform: uppercase;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--gotv-white);
	font-size: 1.75rem;
	cursor: pointer;
}

.site-nav ul {
	display: flex;
	gap: 2.25rem;
}

.site-nav a {
	font-weight: 700;
	color: var(--gotv-lime);
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.4vw, 2.1875rem));
	text-transform: lowercase;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.hero__content {
	padding: clamp(2rem, 6vw, 5rem) var(--gutter);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.75rem;
}

.hero__heading {
	font-size: calc(var(--gotv-heading-scale) * clamp(2.75rem, 6vw, 5rem));
	white-space: pre-line;
}

.hero__subheading {
	font-size: calc(var(--gotv-body-scale) * clamp(1.35rem, 2.4vw, 2.1875rem));
	font-weight: 700;
	white-space: pre-line;
	max-width: 30ch;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 34rem;
}

.hero__image-wrap {
	overflow: hidden;
}

.hero__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   Rotating stat ticker
   ========================================================================== */
.ticker {
	background: var(--gotv-lime);
	color: var(--gotv-ink);
	overflow: hidden;
	white-space: nowrap;
	border-block: 2px solid var(--gotv-ink);
}

.ticker__track {
	display: inline-flex;
	align-items: center;
	animation: gotv-ticker-scroll var(--ticker-speed, 25s) linear infinite;
	will-change: transform;
}

.ticker:hover .ticker__track {
	animation-play-state: paused;
}

.ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding-block: 1.25rem;
	padding-inline: 2.5rem;
}

.ticker__number {
	font-family: var(--font-display);
	font-weight: var(--gotv-heading-weight);
	font-size: calc(var(--gotv-heading-scale) * clamp(2.5rem, 5vw, 4.25rem));
	text-transform: uppercase;
}

.ticker__label {
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.4vw, 2.1875rem));
	font-weight: 600;
}

.ticker__star {
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
}

@keyframes gotv-ticker-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ticker__track {
		animation: none;
		flex-wrap: wrap;
	}
}

/* ==========================================================================
   CTA tiles
   ========================================================================== */
.cta-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.cta-tile {
	padding: clamp(2rem, 4vw, 3rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: 20rem;
	text-align: center;
	border-right: 1px solid var(--gotv-ink);
}

.cta-tile:last-child {
	border-right: 0;
}

.cta-tile__title {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.85rem, 4vw, 3.375rem));
	min-height: 2.15em;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.cta-tile__text {
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.4vw, 2.1875rem));
	line-height: 1.15;
	margin: 0.75rem 0 0;
	max-width: 30ch;
}

.cta-tile__arrow {
	width: 4rem;
	height: 4rem;
}

/* ==========================================================================
   Rotating quotes
   ========================================================================== */
.quotes {
	background: var(--gotv-charcoal);
	color: var(--gotv-white);
	padding-block: clamp(1.75rem, 3.5vw, 3rem);
	text-align: center;
	position: relative;
}

.quotes__inner {
	max-width: 50rem;
	margin-inline: auto;
	padding-inline: var(--gutter);
	position: relative;
	min-height: 6rem;
}

.quote-mark {
	width: 2rem;
	height: auto;
	margin-inline: auto;
	margin-bottom: 0.5rem;
}

.quote-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease;
}

.quote-slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.quote-slide__text {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.35rem, 3vw, 2rem));
	margin: 0 0 0.75rem;
}

.quote-slide__author {
	font-style: italic;
	font-size: calc(var(--gotv-body-scale) * 1.4rem);
}

/* ==========================================================================
   Photo grid / mission-impact teaser
   ========================================================================== */
.photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 3px solid var(--gotv-ink);
}

.photo-grid__cell {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.38 / 1;
	border-bottom: 3px solid var(--gotv-ink);
	border-right: 3px solid var(--gotv-ink);
}

.photo-grid__cell:nth-child(3n) {
	border-right: 0;
}

.photo-grid__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-grid__cell--text {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	background: var(--gotv-white);
}

.photo-grid__cell--text h3 {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.85rem, 3.4vw, 2.75rem));
}

.photo-grid__cell--arrow {
	background: var(--gotv-lime);
	display: flex;
	align-items: center;
	justify-content: center;
}

.photo-grid__cell--arrow img,
.photo-grid__cell--arrow svg {
	width: 3rem;
	height: 3rem;
	transition: transform 0.2s ease;
}

.photo-grid__cell--arrow:hover img,
.photo-grid__cell--arrow:hover svg {
	transform: translateX(6px);
}

.category-strip {
	background: var(--gotv-lime);
	border-top: 1px solid var(--gotv-ink);
}

.category-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: var(--container-width);
	margin-inline: auto;
}

.category-strip a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 2.5rem 0.75rem 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.2vw, 1.75rem));
	white-space: nowrap;
}

.category-strip .eyebrow {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.55em;
	letter-spacing: 0.03em;
}

/* ==========================================================================
   Toolkit band
   ========================================================================== */
.toolkit {
	background: var(--gotv-lime);
	color: var(--gotv-ink);
	padding-top: clamp(1.25rem, 3vw, 2.25rem);
	padding-bottom: clamp(2rem, 5vw, 4rem);
	text-align: center;
}

.toolkit__heading {
	font-size: calc(var(--gotv-heading-scale) * clamp(2.75rem, 11vw, 7.5rem));
	line-height: 1.02;
}

.toolkit__text {
	max-width: 85rem;
	margin: 1.5rem auto 0;
	font-size: calc(var(--gotv-body-scale) * clamp(1.35rem, 3vw, 2.75rem));
}

.toolkit__text a {
	font-weight: 700;
	text-decoration: underline;
}

/* ==========================================================================
   Deadlines
   ========================================================================== */
.deadlines {
	background: var(--gotv-ink);
	color: var(--gotv-white);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.deadlines__grid {
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	gap: 10rem;
	align-items: start;
}

.deadlines__heading {
	color: var(--gotv-white);
	font-size: calc(var(--gotv-heading-scale) * clamp(2.25rem, 6vw, 4.25rem));
	white-space: pre-line;
	margin-bottom: 1.5rem;
}

.deadlines__button {
	background: var(--gotv-lime);
	color: var(--gotv-ink);
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 1.9vw, 1.65rem));
	padding: 0.85em 1.4em;
	display: flex;
	width: 100%;
}

.deadline-row {
	display: grid;
	grid-template-columns: 8rem 1fr;
	gap: 3rem;
	align-items: baseline;
	padding-block: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.deadline-row__date,
.deadline-row__label {
	white-space: nowrap;
}

.deadline-row:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.deadline-row__date {
	font-family: var(--font-display);
	font-weight: var(--gotv-heading-weight);
	color: var(--gotv-lime);
	font-size: calc(var(--gotv-heading-scale) * clamp(1.35rem, 2.5vw, 2.25rem));
}

.deadline-row__label {
	font-weight: 600;
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.4vw, 2.1875rem));
}

/* ==========================================================================
   FAQs
   ========================================================================== */
.faq {
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
	text-align: center;
}

.faq__heading {
	font-size: calc(var(--gotv-heading-scale) * clamp(2.75rem, 11vw, 7.5rem));
	margin-bottom: 1.25rem;
}

.section-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: clamp(1.25rem, 3vw, 2rem);
}

.section-arrow__circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	border: 3px solid var(--gotv-ink);
	background: var(--gotv-lavender);
	transition: transform 0.2s ease;
}

.section-arrow__circle svg {
	width: 1.5rem;
	height: 1.5rem;
}

.section-arrow:hover .section-arrow__circle {
	transform: translateY(4px);
}

.faq-item {
	max-width: 50rem;
	margin: 0 auto 2.5rem;
}

.faq-item__question {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.35rem, 3vw, 2.6875rem));
	margin-bottom: 0.5rem;
}

.faq-item__answer {
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.8vw, 2.6875rem));
	line-height: 1.25;
}

.faq__link {
	display: inline-block;
	margin-top: 1rem;
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2.8vw, 2.6875rem));
	color: var(--gotv-purple);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* ==========================================================================
   Inner pages — band system (Deadlines, FAQs, Voting Toolkit, About, For
   Individuals/Nonprofits/Ambassadors, Share Your POV, Volunteer, ...)
   Used by page.php and page-standard.php. Full-bleed alternating bands,
   same rhythm as the homepage. Ported from the design package delivered
   30 Jul 2026 — see PAGE-CONTENT.md for the actual page markup/copy.
   ========================================================================== */

/* ── Page hero ── */
.page-hero {
	background: var(--gotv-white);
	color: var(--gotv-ink);
	padding-block: clamp(2.75rem, 7vw, 5.25rem);
	border-bottom: 1px solid var(--gotv-ink);
}

.page-hero__eyebrow {
	display: inline-block;
	background: var(--gotv-lime);
	color: var(--gotv-ink);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	padding: 0.45em 0.8em;
	margin-bottom: 1.5rem;
}

.page-hero__title {
	font-size: calc(var(--gotv-heading-scale) * clamp(2.5rem, 7vw, 5.5rem));
	line-height: 0.98;
}

.page-hero__lede {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.25rem, 2.6vw, 2rem));
	line-height: 1.3;
	margin-top: 1.5rem;
	max-width: 30ch;
}

.page-hero__intro {
	font-size: calc(var(--gotv-body-scale) * clamp(1.05rem, 1.6vw, 1.35rem));
	line-height: 1.55;
	margin-top: 1.1rem;
	max-width: 62ch;
}

.standard-page {
	/* Bands manage their own full-bleed background + padding, so no
	   container/max-width is applied at this level. */
}

.standard-page__content > * + * {
	margin-top: 0;
}

/* ── Bands ── */
.band {
	padding: clamp(2.75rem, 6vw, 4.5rem) var(--gutter, clamp(1.25rem, 4vw, 4rem));
}

.band--paper {
	background: var(--gotv-white);
	color: var(--gotv-ink);
}

.band--ink {
	background: var(--gotv-ink);
	color: var(--gotv-white);
}

.band--lime {
	background: var(--gotv-lime);
	color: var(--gotv-ink);
}

.band--lilac {
	background: var(--gotv-lavender);
	color: var(--gotv-ink);
}

.band__title {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.85rem, 4.2vw, 3.4rem));
	margin-bottom: 1.5rem;
}

.band--ink .band__title {
	color: var(--gotv-lime);
}

.band__lede {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 2vw, 1.7rem));
	line-height: 1.35;
	margin-bottom: 1.25rem;
	max-width: 44ch;
}

.band__prose {
	font-size: calc(var(--gotv-body-scale) * clamp(1.05rem, 1.6vw, 1.3rem));
	line-height: 1.6;
	max-width: 70ch;
}

.band__prose + .band__prose {
	margin-top: 1.1em;
}

.band__prose strong {
	font-weight: 700;
}

.band--ink .band__prose strong {
	color: var(--gotv-lime);
}

.band--paper .band__prose a,
.band--lime .band__prose a,
.band--lilac .band__prose a {
	color: var(--gotv-purple);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.band--ink .band__prose a {
	color: var(--gotv-lime);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.band__prose a:hover {
	opacity: 0.7;
}

.band--heading {
	padding-bottom: 0.5rem;
}

/* ── Numbered steps ── */
.steps {
	display: flex;
	flex-direction: column;
	margin-top: 0.5rem;
}

.step {
	display: flex;
	align-items: baseline;
	gap: 2rem;
	padding: 1.75rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.band--paper .step,
.band--lime .step,
.band--lilac .step {
	border-top-color: rgba(0, 0, 0, 0.18);
}

.step:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.band--paper .step:last-child,
.band--lime .step:last-child,
.band--lilac .step:last-child {
	border-bottom-color: rgba(0, 0, 0, 0.18);
}

.step__num {
	font-family: var(--font-display);
	font-weight: var(--gotv-heading-weight);
	font-size: calc(var(--gotv-heading-scale) * clamp(1.6rem, 3vw, 2.6rem));
	line-height: 1;
	color: var(--gotv-lime);
	flex: 0 0 auto;
	min-width: 2.2em;
}

.band--paper .step__num,
.band--lime .step__num,
.band--lilac .step__num {
	color: var(--gotv-purple);
}

.step__body {
	min-width: 0;
}

.step__title {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.1rem, 1.9vw, 1.55rem));
	line-height: 1.3;
	margin-bottom: 0.5rem;
}

.step__text {
	font-size: calc(var(--gotv-body-scale) * clamp(1rem, 1.4vw, 1.2rem));
	line-height: 1.55;
	max-width: 62ch;
}

.step__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 700;
	font-size: 1.05rem;
	margin-top: 0.85rem;
	color: var(--gotv-lime);
}

.band--paper .step__cta,
.band--lime .step__cta,
.band--lilac .step__cta {
	color: var(--gotv-purple);
}

.step__cta img {
	width: 1.35rem;
	height: auto;
	transition: transform 0.15s ease;
}

.step__cta:hover img {
	transform: translateX(5px);
}

/* ── Feature list ── */
.features {
	display: flex;
	flex-direction: column;
	margin-top: 0.5rem;
}

.feature {
	padding: 1.6rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.band--paper .feature,
.band--lime .feature,
.band--lilac .feature {
	border-top-color: rgba(0, 0, 0, 0.18);
}

.feature:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.band--paper .feature:last-child,
.band--lime .feature:last-child,
.band--lilac .feature:last-child {
	border-bottom-color: rgba(0, 0, 0, 0.18);
}

.feature__name {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.15rem, 2vw, 1.75rem));
	color: var(--gotv-lime);
	margin-bottom: 0.6rem;
}

.band--paper .feature__name,
.band--lime .feature__name,
.band--lilac .feature__name {
	color: var(--gotv-purple);
}

.feature__text {
	font-size: calc(var(--gotv-body-scale) * clamp(1rem, 1.4vw, 1.2rem));
	line-height: 1.55;
	max-width: 66ch;
}

/* ── FAQ list ── */
.faqlist {
	display: flex;
	flex-direction: column;
	margin-top: 0.5rem;
}

.faqlist__item {
	padding: 1.75rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.18);
	max-width: 78ch;
}

.faqlist__item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.band--ink .faqlist__item,
.band--ink .faqlist__item:last-child {
	border-color: rgba(255, 255, 255, 0.22);
}

.faqlist__q {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.15rem, 1.9vw, 1.65rem));
	line-height: 1.3;
	margin-bottom: 0.6rem;
}

.faqlist__a {
	font-size: calc(var(--gotv-body-scale) * clamp(1rem, 1.4vw, 1.25rem));
	line-height: 1.58;
}

.faqlist__a a {
	color: var(--gotv-purple);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.band--ink .faqlist__a a {
	color: var(--gotv-lime);
}

/* ── Deadlines list (reused on the Deadlines inner page) ── */
.deadlines__list {
	display: flex;
	flex-direction: column;
	margin-top: 0.5rem;
}

.deadlines__row {
	display: flex;
	align-items: baseline;
	gap: 2rem;
	padding: 1.4rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.deadlines__row:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.deadlines__date {
	font-family: var(--font-display);
	font-weight: var(--gotv-heading-weight);
	font-size: calc(var(--gotv-heading-scale) * clamp(1.35rem, 2.4vw, 2.2rem));
	color: var(--gotv-lime);
	flex: 0 0 auto;
	min-width: 5.5em;
}

.deadlines__what {
	font-size: calc(var(--gotv-body-scale) * clamp(1.05rem, 1.5vw, 1.4rem));
	line-height: 1.4;
}

/* ── Pull quote ── */
.pullquote {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.25rem;
}

.pullquote img {
	width: 2.75rem;
	height: auto;
}

.pullquote p {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.35rem, 2.8vw, 2.4rem));
	line-height: 1.3;
	max-width: 30ch;
}

/* ── Inline arrow link ── */
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1rem, 1.3vw, 1.25rem));
	margin-top: 1.75rem;
}

.band--ink .arrow-link {
	color: var(--gotv-lime);
}

.band--paper .arrow-link,
.band--lime .arrow-link,
.band--lilac .arrow-link {
	color: var(--gotv-ink);
}

.arrow-link img {
	width: 1.6rem;
	height: auto;
	transition: transform 0.15s ease;
}

.arrow-link:hover img {
	transform: translateX(5px);
}

/* ── Page-level tile row (reuses the homepage CTA tile look) ── */
.tiles--page {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.tiles--page .tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(2rem, 4vw, 3rem);
	min-height: 19rem;
	border-top: 1px solid var(--gotv-ink);
	border-bottom: 1px solid var(--gotv-ink);
	border-right: 1px solid var(--gotv-ink);
}

.tiles--page .tile:last-child {
	border-right: 0;
}

.tiles--page .tile__title {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.6rem, 2.6vw, 2.4rem));
}

.tiles--page .tile__body {
	font-size: calc(var(--gotv-body-scale) * 1.05rem);
	line-height: 1.5;
	margin-top: auto;
	max-width: 26ch;
}

.tile--grape {
	background: var(--gotv-purple);
	color: var(--gotv-white);
}

.tile--lilac {
	background: var(--gotv-lavender);
	color: var(--gotv-ink);
}

.tile--paper {
	background: var(--gotv-white);
	color: var(--gotv-ink);
}

/* ── Static quote stack (Share Your POV reuses the homepage quote look
     without JS rotation — every quote shown at once) ── */
.quotes-static {
	background: var(--gotv-charcoal);
	color: var(--gotv-white);
	padding: clamp(2.75rem, 6vw, 4.5rem) var(--gutter, clamp(1.25rem, 4vw, 4rem));
	text-align: center;
}

.quotes-static__mark {
	width: 2.5rem;
	height: auto;
	margin: 0 auto 1.25rem;
}

.quote-block {
	max-width: 40rem;
	margin-inline: auto;
}

.quote-block + .quote-block {
	margin-top: 2.5rem;
}

.quote-block__text {
	font-weight: 700;
	font-size: calc(var(--gotv-body-scale) * clamp(1.25rem, 2.4vw, 1.9rem));
	line-height: 1.35;
}

.quote-block__author {
	font-style: italic;
	font-size: calc(var(--gotv-body-scale) * 1.1rem);
	margin-top: 0.5rem;
}

/* ── Closing CTA band ── */
.cta-band {
	background: var(--gotv-lime);
	color: var(--gotv-ink);
	padding: clamp(3rem, 6.5vw, 5.25rem) var(--gutter, clamp(1.25rem, 4vw, 4rem));
}

.cta-band__title {
	font-size: calc(var(--gotv-heading-scale) * clamp(2.1rem, 5.5vw, 5.4rem));
	line-height: 0.98;
	max-width: 18ch;
}

.cta-band__text {
	font-size: calc(var(--gotv-body-scale) * clamp(1.05rem, 1.6vw, 1.4rem));
	line-height: 1.5;
	margin-top: 1.4rem;
	max-width: 56ch;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.25rem;
}

.cta-band .btn {
	width: auto;
	min-width: 16rem;
}

/* ── Generic WordPress editor fallback (for any plain content not using
     the band system above) ── */
.standard-page__content--plain {
	max-width: 55rem;
	margin-inline: auto;
	padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter, clamp(1.25rem, 4vw, 4rem));
}

/* Full-bleed breakout: if a page's content still contains (or mixes in)
   band-system elements inside the constrained/padded wrapper above, let
   them escape back out to the full viewport width rather than sitting
   awkwardly narrow and padded like plain prose. */
.standard-page__content--plain .band,
.standard-page__content--plain .cta-band,
.standard-page__content--plain .quotes-static,
.standard-page__content--plain .tiles--page {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.standard-page__content--plain > * + * {
	margin-top: 1.25em;
}

.standard-page__content--plain h2 {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.75rem, 4vw, 2.75rem));
	margin-top: 2em;
}

.standard-page__content--plain h3 {
	font-size: calc(var(--gotv-heading-scale) * clamp(1.4rem, 3vw, 2rem));
	margin-top: 1.75em;
}

.standard-page__content--plain p,
.standard-page__content--plain li {
	font-size: calc(var(--gotv-body-scale) * 1.1rem);
	line-height: 1.6;
}

.standard-page__content--plain ul,
.standard-page__content--plain ol {
	padding-left: 1.4em;
}

.standard-page__content--plain ul {
	list-style: disc;
}

.standard-page__content--plain ol {
	list-style: decimal;
}

.standard-page__content--plain a {
	color: var(--gotv-purple);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.standard-page__content--plain strong {
	font-weight: 700;
}

.standard-page__content--plain blockquote {
	margin: 1.5em 0;
	padding: 1.25em 1.5em;
	border-left: 4px solid var(--gotv-purple);
	background: var(--gotv-lavender);
	font-style: italic;
}

.standard-page__content--plain hr {
	margin: 2.5em 0;
	border: none;
	border-top: 2px solid var(--gotv-ink);
}

.standard-page__content--plain .wp-block-button__link,
.standard-page__content--plain .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.1rem;
	padding: 0.6em 1.6em;
	border: 3px solid var(--gotv-ink);
	background: var(--gotv-lime);
	color: var(--gotv-ink);
	text-decoration: none;
}

.standard-page__content--plain table {
	width: 100%;
	border-collapse: collapse;
}

.standard-page__content--plain th,
.standard-page__content--plain td {
	padding: 0.75em 1em;
	border-bottom: 1px solid var(--gotv-ink);
	text-align: left;
}

.standard-page__content--plain th {
	font-family: var(--font-display);
	text-transform: uppercase;
}

@media (max-width: 820px) {
	.step {
		flex-wrap: wrap;
		gap: 0.5rem 1.25rem;
	}

	.step__num {
		min-width: 0;
		flex-basis: 100%;
	}

	.tiles--page {
		grid-template-columns: 1fr;
	}

	.tiles--page .tile {
		border-right: 0;
	}

	.deadlines__row {
		flex-wrap: wrap;
		gap: 0.35rem 1.25rem;
	}

	.deadlines__date {
		min-width: 0;
		flex-basis: 100%;
	}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--gotv-ink);
	color: var(--gotv-white);
	padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.footer-logo img {
	max-height: 40px;
	width: auto;
}

.footer-logo__text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--gotv-lime);
	text-transform: uppercase;
}

.footer-col__title {
	font-family: var(--font-display);
	font-weight: var(--gotv-heading-weight);
	color: var(--gotv-lime);
	font-size: calc(var(--gotv-heading-scale) * 0.85rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-col a,
.footer-col li {
	font-family: var(--font-body);
	color: var(--gotv-white);
	font-size: calc(var(--gotv-body-scale) * 1rem);
}

.footer-col a:hover,
.footer-col a:focus-visible {
	text-decoration: underline;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: calc(var(--gotv-body-scale) * 0.9rem);
}

.site-footer__bottom a {
	color: var(--gotv-white);
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.hero__image-wrap {
		order: -1;
		min-height: 20rem;
	}

	.cta-tiles,
	.photo-grid,
	.category-strip__inner,
	.deadlines__grid {
		grid-template-columns: 1fr;
	}

	.cta-tile,
	.photo-grid__cell {
		border-right: 0;
		border-bottom: 1px solid var(--gotv-ink);
	}

	.photo-grid__cell {
		aspect-ratio: 16 / 10;
	}

	.site-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 700px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		display: none;
		position: absolute;
		inset-inline: 0;
		top: 100%;
		background: var(--gotv-ink);
		padding: 1.5rem var(--gutter);
	}

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

	.site-nav ul {
		flex-direction: column;
		gap: 1.25rem;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}
}
