/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
    /* Colors — from campaign logo */
    --navy: #1a2946;
    --navy-deep: #121D33;
    --navy-light: #253660;
    --red: #CC2027;
    --red-hover: #A81A20;
    --red-light: rgba(204, 32, 39, 0.08);
    --white: #FFFFFF;
    --cream: #F8F6F3;
    --cream-dark: #EFECE7;
    --text: #1a2236;
    --text-muted: #5A6070;
    --text-on-dark: #E8EAF0;
    --text-muted-on-dark: #9BA3B8;
    --border: rgba(26, 41, 70, 0.10);
    --border-on-dark: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Garamond', serif;
    --font-heading: Georgia, 'Gelasio', serif;
    --font-body: 'Libre Franklin', -apple-system, sans-serif;

    /* Scale — Perfect Fourth (1.333) with 18px base */
    --text-sm: 0.833rem;    /* ~15px */
    --text-base: 1.125rem;  /* 18px */
    --text-lg: clamp(1.125rem, 0.5vw + 1rem, 1.25rem);       /* 18-20px */
    --text-xl: clamp(1.25rem, 1vw + 0.875rem, 1.5rem);       /* 20-24px */
    --text-2xl: clamp(1.5rem, 1.5vw + 0.875rem, 2rem);       /* 24-32px */
    --text-3xl: clamp(2rem, 2.5vw + 0.75rem, 2.666rem);      /* 32-42px */
    --text-4xl: clamp(2.5rem, 5vw + 0.5rem, 3.5rem);  /* 40-56px */
    --text-5xl: clamp(3rem, 6vw + 0.5rem, 4.75rem);    /* 48-76px */
    --text-hero: clamp(3.5rem, 8vw + 0.5rem, 6.25rem); /* 56-100px */

    /* Spacing — 8px base grid */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 1rem;      /* 16px */
    --space-4: 1.5rem;    /* 24px */
    --space-5: 2rem;      /* 32px */
    --space-6: 3rem;      /* 48px */
    --space-7: 4rem;      /* 64px */
    --space-8: 5rem;      /* 80px */
    --space-9: 6rem;      /* 96px */
    --space-10: 7.5rem;   /* 120px */
    --space-section: clamp(4rem, 8vw, 7.5rem);

    /* Layout */
    --container: 1200px;
    --container-narrow: 800px;
    --side-pad: clamp(1rem, 4vw, 3rem);

    /* Depth — subtle single shadows */
    --shadow-sm: 0 1px 3px rgba(26, 41, 70, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 41, 70, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 41, 70, 0.10);

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}


/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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


/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
}

.container--narrow {
    max-width: var(--container-narrow);
}

section {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}


/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 600;
}

h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: var(--text-hero);
    letter-spacing: -0.02em;
    line-height: 1.0;
    font-weight: 700;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
    letter-spacing: -0.01em;
}

h4 {
    font-size: var(--text-xl);
}

p {
    max-width: 65ch;
}

.overline {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.875rem 2rem;
    min-height: 48px;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) ease;
    white-space: nowrap;
    gap: 0.5rem;
}

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

.btn--primary:hover {
    background: var(--red-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(204, 32, 39, 0.25);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

.btn--ghost {
    background: transparent;
    color: var(--red);
    padding-left: 0;
    padding-right: 0;
}

.btn--ghost:hover {
    color: var(--red-hover);
}

.btn--ghost::after {
    content: '\2192';
    transition: transform var(--duration-fast) ease;
}

.btn--ghost:hover::after {
    transform: translateX(4px);
}


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    background: var(--navy);
    transition: box-shadow var(--duration-base) ease;
}

.nav--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    height: 84px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.nav__link {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--duration-fast) ease;
}

.nav__link:hover {
    color: var(--white);
}

.nav--scrolled .nav__link {
    color: rgba(255, 255, 255, 0.85);
}

.nav--scrolled .nav__link:hover {
    color: var(--white);
}

.nav__cta {
    font-size: var(--text-sm);
    padding: 0.625rem 1.5rem;
    min-height: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration-base) ease;
}

.nav--scrolled .nav__toggle span {
    background: var(--white);
}

/* Mobile Nav */
@media (max-width: 899px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 5rem var(--space-5) var(--space-5);
        background: var(--navy-deep);
        transform: translateX(100%);
        transition: transform var(--duration-slow) var(--ease-out);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }

    .nav__links.is-open {
        transform: translateX(0);
    }

    .nav__link {
        color: var(--text-on-dark);
        font-size: 1rem;
        padding: var(--space-3) 0;
        width: 100%;
        border-bottom: 1px solid var(--border-on-dark);
    }

    .nav__link:hover {
        color: var(--white);
    }

    .nav__cta {
        margin-top: var(--space-4);
        width: 100%;
        text-align: center;
    }

    .nav--scrolled .nav__link {
        color: var(--text-on-dark);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* ============================================
   SUIT DIVIDER (Signature Element)
   ============================================ */

.suits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-6) 0;
    font-size: 1rem;
    color: var(--red);
    opacity: 0.35;
    user-select: none;
}

.suits--on-dark {
    color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.suits span {
    line-height: 1;
}


/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero > .container {
    width: 100%;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right 20%;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(18, 29, 51, 0.92) 0%,
        rgba(18, 29, 51, 0.80) 40%,
        rgba(18, 29, 51, 0.35) 70%,
        rgba(18, 29, 51, 0.15) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    padding-top: calc(var(--space-10) + 56px);
    padding-bottom: var(--space-10);
}

.hero__content {
    color: var(--white);
}

.hero__overline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-3);
}

.hero__title {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
}

.hero__title-pre {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 0.55em;
    margin-bottom: 0.1em;
}

.hero__subtitle {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48ch;
    margin-bottom: var(--space-6);
}

.hero__actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

@media (max-width: 899px) {
    .hero {
        min-height: 70vh;
    }

    .hero__bg::after {
        background: linear-gradient(
            to top,
            rgba(18, 29, 51, 0.92) 0%,
            rgba(18, 29, 51, 0.75) 50%,
            rgba(18, 29, 51, 0.40) 100%
        );
    }

    .hero__inner {
        padding-top: calc(var(--space-8) + 80px);
        padding-bottom: var(--space-8);
    }
}


/* ============================================
   SECTION: TRACK RECORD
   ============================================ */

.record {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.section-header .overline {
    color: var(--red);
    margin-bottom: var(--space-2);
}

.section-header h2 {
    margin-bottom: var(--space-3);
}

.section-header p {
    color: var(--text-muted);
    font-size: var(--text-lg);
    max-width: 55ch;
    margin: 0 auto;
}

.record__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.record__card {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-base) ease, transform var(--duration-base) ease;
}

.record__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.record__card-accent {
    width: 32px;
    height: 3px;
    background: var(--red);
    opacity: 0.4;
    margin-bottom: var(--space-3);
    border-radius: 2px;
}

.record__card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.record__card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.record__card li {
    position: relative;
    padding-left: var(--space-4);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.record__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.4;
}

@media (max-width: 899px) {
    .record__grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}


/* ============================================
   SECTION: ISSUES
   ============================================ */

.issues {
    background: var(--white);
}

.issue {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border);
}

.issue:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.issue:first-child {
    padding-top: 0;
}

.issue__header {
    display: flex;
    align-items: baseline;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.issue__number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 300;
    color: var(--red);
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
}

.issue__header h3 {
    margin: 0;
}

.issue__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: start;
}

.issue p {
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.issue__priorities {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.issue__priorities h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.issue__priorities li {
    position: relative;
    padding-left: var(--space-4);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

.issue__priorities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 2px;
    background: var(--red);
}

@media (max-width: 899px) {
    .issue__body {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}


/* ============================================
   SECTION: ABOUT (Dark Navy)
   ============================================ */

.about {
    background: var(--navy);
    color: var(--text-on-dark);
}

.about__inner {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: var(--space-7);
    align-items: center;
}

.about .overline {
    color: var(--red);
    margin-bottom: var(--space-2);
}

.about h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.about p {
    color: var(--text-muted-on-dark);
    margin-bottom: var(--space-3);
}

.about__photo {
    position: relative;
}

.about__photo img {
    border-radius: var(--radius-md);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 20%;
    width: 100%;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.about__photo::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(204, 32, 39, 0.3);
    border-radius: var(--radius-md);
    z-index: 0;
}

.about blockquote {
    margin-top: var(--space-5);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about blockquote p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--text-on-dark);
    line-height: 1.5;
}

.about__details {
    margin-top: var(--space-5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.about__detail h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-2);
}

.about__detail p {
    font-size: 1rem;
    color: var(--text-on-dark);
    margin-bottom: 0;
}

@media (max-width: 899px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .about__photo {
        order: -1;
    }

    .about__photo::after {
        display: none;
    }

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


/* ============================================
   SECTION: ENDORSEMENTS
   ============================================ */

.endorsements {
    background: var(--cream);
}

.endorsements__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.endorsement {
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.endorsement__quote {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: var(--space-4);
    position: relative;
    padding-top: var(--space-4);
}

.endorsement__quote::before {
    content: '\201C';
    position: absolute;
    top: -0.1em;
    left: 0;
    font-size: 3.5rem;
    color: var(--red);
    opacity: 0.2;
    line-height: 1;
    font-family: var(--font-display);
}

.endorsement__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.endorsement__title {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.endorsements__list {
    margin-top: var(--space-6);
}

.endorsements__list h3 {
    margin-bottom: var(--space-4);
    text-align: center;
}

.endorsements__names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-5);
    color: var(--text-muted);
    font-size: 1rem;
}

.endorsements__names li {
    position: relative;
}

.endorsements__names li + li::before {
    content: '\2666';
    position: absolute;
    left: calc(var(--space-5) / -2 - 0.25em);
    color: var(--red);
    opacity: 0.25;
    font-size: 0.6em;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 899px) {
    .endorsements__grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SECTION: GET INVOLVED
   ============================================ */

.involved {
    background: var(--white);
}

.involved__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: start;
}

.involved__text .overline {
    color: var(--red);
    margin-bottom: var(--space-2);
}

.involved__text h2 {
    margin-bottom: var(--space-3);
}

.involved__text p {
    color: var(--text-muted);
    margin-bottom: var(--space-5);
}

.involved__options {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.involved__option {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.involved__option-icon {
    flex-shrink: 0;
    width: 4px;
    height: 100%;
    min-height: 40px;
    background: var(--red);
    opacity: 0.25;
    border-radius: 2px;
}

.involved__option h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.involved__option p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Form */
.form {
    background: var(--cream);
    padding: var(--space-5);
    border-radius: var(--radius-md);
}

.form h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.form__field--full {
    grid-column: 1 / -1;
}

.form__field label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
}

.form__field input,
.form__field select,
.form__field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(26, 41, 70, 0.15);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--duration-fast) ease;
    min-height: 48px;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 41, 70, 0.08);
}

.form__field textarea {
    resize: vertical;
    min-height: 96px;
}

.form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-size: 1rem;
}

.form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--navy);
    cursor: pointer;
}

.form .btn {
    width: 100%;
}

@media (max-width: 899px) {
    .involved__inner {
        grid-template-columns: 1fr;
    }

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


/* ============================================
   SECTION: DONATE
   ============================================ */

.donate {
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.donate .overline {
    color: var(--red);
    margin-bottom: var(--space-2);
}

.donate h2 {
    color: var(--white);
    margin-bottom: var(--space-3);
    margin-left: auto;
    margin-right: auto;
}

.donate > .container > p {
    color: var(--text-muted-on-dark);
    font-size: var(--text-lg);
    max-width: 50ch;
    margin: 0 auto var(--space-6);
}

.donate__amounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.donate__amount {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
    border: 2px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    color: var(--white);
    background: transparent;
    transition: all var(--duration-fast) ease;
}

.donate__amount:hover,
.donate__amount.is-selected {
    border-color: var(--red);
    background: rgba(204, 32, 39, 0.15);
    color: var(--white);
}

.donate__cta {
    margin-bottom: var(--space-5);
}

.donate__legal {
    font-size: var(--text-sm);
    color: var(--text-muted-on-dark);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.5;
}


/* ============================================
   SECTION: VOTER INFO
   ============================================ */

.voter-info {
    background: var(--cream);
}

.voter-info__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: start;
}

.voter-info__text .overline {
    color: var(--red);
    margin-bottom: var(--space-2);
}

.voter-info__text h2 {
    margin-bottom: var(--space-3);
}

.voter-info__text p {
    color: var(--text-muted);
}

.voter-info__dates {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.voter-info__date {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.voter-info__date-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy);
}

.voter-info__date h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.voter-info__date p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.voter-info__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

@media (max-width: 899px) {
    .voter-info__inner {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-deep);
    color: var(--text-muted-on-dark);
    padding: var(--space-6) 0;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

.footer__logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
}

.footer__links {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.footer__link {
    font-size: var(--text-sm);
    color: var(--text-muted-on-dark);
}

.footer__link:hover {
    color: var(--white);
}

.footer__legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 50ch;
    line-height: 1.5;
}

.footer__suits {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.3em;
}


/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal--scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal--slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 500ms var(--ease-out),
                transform 500ms var(--ease-out);
}

.reveal--slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 500ms var(--ease-out),
                transform 500ms var(--ease-out);
}

.reveal.is-visible,
.reveal--scale.is-visible,
.reveal--slide-right.is-visible,
.reveal--slide-left.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger > [class*="reveal"] {
    transition-delay: calc(var(--reveal-i, 0) * 80ms);
}


/* ============================================
   ACCESSIBILITY
   ============================================ */

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

    .reveal,
    .reveal--scale,
    .reveal--slide-right,
    .reveal--slide-left {
        opacity: 1;
        transform: none;
    }
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--side-pad);
    background: var(--red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 200;
    transition: top var(--duration-fast) ease;
}

.skip-link:focus {
    top: var(--space-3);
    color: var(--white);
}
