/* ==========================================================================
   Kim Thomas for Governor of Michigan — Campaign Website Styles
   Design Direction: "Grounded Editorial" — premium magazine feel with warmth
   ========================================================================== */

/* ==========================================================================
   CSS Variables
   CUSTOMIZE: Change these 10 values to re-theme the entire site
   ========================================================================== */
:root {
    --primary: #166534;        /* Forest green (7.1:1 on white) */
    --primary-dark: #14532d;   /* Deep green (8.5:1 on white) */
    --accent: #0891b2;         /* Electric teal (4.4:1 — large text only) */
    --accent-dark: #0e7490;    /* Deeper teal (5.8:1 — body text safe) */
    --navy: #0f172a;           /* Deep patriotic navy */
    --cream: #f0fdf4;          /* Warm green-white */
    --light: #f8fafc;          /* Near white */
    --white: #ffffff;
    --text: #1e293b;           /* Slate body text */
    --text-muted: #64748b;     /* Secondary text */
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animation base state */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Accessibility — Focus Styles
   ========================================================================== */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.hero :focus-visible,
.cta :focus-visible,
footer :focus-visible {
    outline-color: var(--accent);
}

.newsletter :focus-visible {
    outline-color: var(--primary-dark);
}

/* ==========================================================================
   Accessibility — Reduced Motion
   ========================================================================== */
@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;
    }

    .animate-in {
        opacity: 1;
        transform: none;
    }
}

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

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ==========================================================================
   HERO SECTION
   Background: Deep green gradient + dot-grid overlay + teal radial glow
   ========================================================================== */
.hero {
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Dot-grid pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.035'/%3E%3C/svg%3E");
}

/* Teal radial glow (upper right) */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out both;
}

/* ==========================================================================
   Logo Lockup — KIM4 / GOVERNOR
   ========================================================================== */
.hero-logo {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out both;
}

.logo-line-1 {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.logo-kim {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: var(--accent);
    margin-left: 0.1em;
}

.logo-line-2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.35em;
    margin-top: -0.15em;
}

/* Hero intro line (full name) */
.hero-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ==========================================================================
   Headshot Placeholder
   Green-to-teal gradient card with "KT" initials + decorative border frame
   ========================================================================== */
.hero-image {
    position: relative;
    animation: scaleIn 0.9s ease-out 0.2s both;
}

.headshot-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

/* Dot-grid texture inside placeholder */
.headshot-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.placeholder-initials {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* Decorative teal offset border frame */
.hero-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: calc(100% - 30px);
    max-width: 370px;
    height: calc(100% + 32px);
    border: 3px solid var(--accent);
    border-radius: 8px;
    z-index: 1;
}

/* Decorative gradient circle */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

/* Primary button — teal on dark backgrounds */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.4);
}

/* Outline button — white border on dark backgrounds */
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

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

/* Primary button for light backgrounds */
.btn-primary-dark {
    background: var(--primary);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(22, 101, 52, 0.3);
}

.btn-primary-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 101, 52, 0.4);
}

/* Outline button for light backgrounds */
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    padding: 1.1rem 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

/* ==========================================================================
   NEWSLETTER SECTION — Bright accent band
   ========================================================================== */
.newsletter {
    background: var(--accent-dark);
    padding: 4rem 2rem;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Libre Franklin', sans-serif;
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-form button {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 2rem;
    min-height: 44px;
    border: none;
    border-radius: 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
    background: var(--navy);
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    color: #bbf7d0;
}

.form-message.error {
    color: #fecaca;
}

/* ==========================================================================
   ABOUT SECTION — White background, centered text layout
   ========================================================================== */
.about {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.section-label {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-title {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.about-text > p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   Pull Quote — Decorative editorial treatment
   ========================================================================== */
.pull-quote {
    margin: 2.5rem 0;
    text-align: center;
}

.pull-quote-rule {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 0;
}

.pull-quote blockquote {
    padding: 2rem 1.5rem;
    font-family: 'Archivo', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.5;
    position: relative;
}

.decorative-quote {
    font-family: 'Archivo', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    font-style: normal;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 0.2em;
    margin-right: 0.05em;
}

/* ==========================================================================
   Bio Dropdown
   ========================================================================== */
.bio-dropdown {
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.bio-dropdown summary {
    padding: 1rem 1.5rem;
    background: var(--light);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.bio-dropdown summary::-webkit-details-marker {
    display: none;
}

.bio-dropdown summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.bio-dropdown[open] summary::after {
    content: '\2212';
}

.bio-dropdown summary:hover {
    background: #ecfdf5;
}

.bio-content {
    padding: 1.5rem;
    background: var(--white);
    max-height: 500px;
    overflow-y: auto;
}

.bio-content h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.bio-content h3:first-child {
    margin-top: 0;
}

.bio-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

/* Custom scrollbar */
.bio-content::-webkit-scrollbar {
    width: 6px;
}

.bio-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.bio-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.bio-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   Credentials Row
   ========================================================================== */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    justify-content: center;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credential-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.credential-text {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ==========================================================================
   PRIORITIES SECTION — Light background with detailed policy cards
   ========================================================================== */
.priorities {
    padding: 6rem 2rem;
    background: var(--light);
}

.priorities-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

/* Policy Cards — white with gradient left border */
.priority-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border-left: 4px solid var(--primary);
    border-image: linear-gradient(to bottom, var(--primary), var(--accent)) 1;
}

.priority-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.priority-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.priority-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.priority-card ul li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    line-height: 1.6;
}

.priority-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.priority-card blockquote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--primary-dark);
    padding: 1rem 1.25rem;
    background: rgba(240, 253, 244, 0.7);
    border-left: 3px solid var(--accent);
    border-radius: 0 6px 6px 0;
    position: relative;
    line-height: 1.6;
}

.card-quote-mark {
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    font-style: normal;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 0.15em;
    margin-right: 0.05em;
    opacity: 0.6;
}

/* ==========================================================================
   CTA / DONATE SECTION — Dark primary background
   ========================================================================== */
.cta {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(8, 145, 178, 0.12) 50%, transparent 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   VOLUNTEER CTA SECTION — Cream background (new, not in Norton)
   ========================================================================== */
.volunteer-cta {
    padding: 6rem 2rem;
    background: var(--cream);
    text-align: center;
}

.volunteer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-cta h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.volunteer-cta p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ==========================================================================
   FOOTER — Darkest background
   ========================================================================== */
footer {
    background: var(--navy);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.15em;
}

.footer-logo-4 {
    color: var(--accent);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.footer-donate-link {
    display: inline-block;
    color: var(--accent);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(8, 145, 178, 0.4);
    transition: border-color 0.2s ease;
}

.footer-donate-link:hover {
    border-color: var(--accent);
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
    }

    .hero-text { order: 1; }
    .hero-image { order: 2; }

    .logo-line-1 {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-intro {
        text-align: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .hero-image::before { display: none; }
    .hero-image::after { display: none; }

    .headshot-placeholder {
        max-width: 300px;
    }

    .hero-buttons { justify-content: center; }

    .priorities-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .logo-kim { font-size: 3rem; }
    .logo-4 { font-size: 3.75rem; }
    .logo-line-2 { font-size: 1.15rem; letter-spacing: 0.3em; }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .section-title { font-size: 1.75rem; }
    .cta h2 { font-size: 1.75rem; }
    .volunteer-cta h2 { font-size: 1.75rem; }

    .pull-quote blockquote {
        font-size: 1.15rem;
    }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { min-width: 100%; }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline,
    .cta-buttons .btn-primary-dark,
    .cta-buttons .btn-outline-dark {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .credentials {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .priorities {
        padding: 4rem 1.5rem;
    }

    .cta {
        padding: 4rem 1.5rem;
    }

    .volunteer-cta {
        padding: 4rem 1.5rem;
    }
}
