/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Accessibility ===== */
/* Skip navigation link - visible only when focused */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green-dark, #006837);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* Beau LaFave Campaign Colors - HUNTER GREEN from campaign sign */
    --green-dark: #006837;
    --green: #00873a;
    --green-light: #3a9d5c;
    --green-accent: #6fbf73;
    --white: #ffffff;
    --off-white: #f9faf9;
    --cream: #f5faf6;
    --gray-light: #e8ebe8;
    --gray: #6b7c6e;
    --gray-dark: #3d4a3f;
    --text: #2c3e2f;
    --text-light: #4a5d4d;

    /* Fonts */
    --font-accent: 'Oswald', sans-serif;

    /* Semantic aliases */
    --primary: var(--green-dark);
    --primary-light: var(--green);
    --accent: var(--green-light);
    --accent-light: var(--green-accent);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll from ticker animations */
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll from ticker animations */
}

h1, h2, h3, h4 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-top: 16px;
    margin-bottom: 60px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 104, 55, 0.3);
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

.btn-primary:hover {
    background: var(--green);
    border-color: var(--green);
}

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

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

.btn-secondary {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--cream);
    border-color: var(--cream);
}

/* ===== Navigation ===== */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
}

/* ===== Sticky Navigation ===== */
.sticky-nav {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--green-dark);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: top 0.3s ease-in-out;
}

.sticky-nav.visible {
    top: 0;
}

.sticky-nav .nav-links {
    gap: 24px;
}

.sticky-nav .nav-links a {
    font-size: 0.85rem;
}

.sticky-nav .logo {
    font-size: 1.1rem;
}

.hero-nav {
    position: absolute;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-accent);
}

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

/* ===== Hero ===== */
.hero {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 200px 24px 160px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(102, 187, 106, 0.1) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

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

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero h1 span {
    display: block;
    font-size: 2rem;
    margin-top: 16px;
    color: var(--green-accent);
    letter-spacing: 6px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
}

.hero .btn {
    margin: 0 10px 16px;
}

/* ===== About / Meet Beau ===== */
.about {
    background: var(--white);
    padding-top: 40px;
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 350px) 1fr;
    gap: 60px;
    align-items: start;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
    box-shadow: 20px 20px 0 var(--green-dark);
}

.photo-placeholder {
    width: 100%;
    max-width: 350px;
    height: 420px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 600;
    border: 3px dashed var(--gray-light);
}

.about-text h3 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-highlights li {
    padding: 16px 20px;
    padding-left: 52px;
    position: relative;
    font-weight: 600;
    color: var(--text);
    background: var(--cream);
    border-left: 4px solid var(--green-dark);
}

.about-highlights li::before {
    content: '\2713';
    position: absolute;
    left: 16px;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 1.2rem;
}

/* ===== Issues / Fighting For ===== */
.issues {
    background: var(--cream);
}

.issues h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.issue-card {
    background: var(--white);
    padding: 40px 32px;
    border-bottom: 5px solid var(--green-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 104, 55, 0.15);
}

.issue-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.issue-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.issue-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Record / Accomplishments ===== */
.record-section {
    background: var(--green-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.record-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.record-section h2 {
    text-align: center;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.record-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9); /* Improved contrast for accessibility */
}

.record-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.record-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 36px 32px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, background 0.3s;
}

.record-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
}

.record-card h3 {
    font-size: 1.2rem;
    color: var(--green-accent);
    margin-bottom: 16px;
}

.record-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Stats ===== */
.stats-section {
    background: var(--white);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--cream);
    border-top: 6px solid var(--green-dark);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-context {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== Compare ===== */
.compare {
    background: var(--cream);
}

.compare h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.compare-table th,
.compare-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1rem;
}

.compare-table thead th {
    background: var(--green-dark);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-table thead th:first-child {
    border-radius: 0;
}

.compare-table .highlight-col {
    background: rgba(0, 104, 55, 0.08);
}

.compare-table thead .highlight-col {
    background: var(--green);
}

.compare-table tbody tr:hover {
    background: var(--white);
}

.compare-table tbody .highlight-col {
    background: rgba(0, 104, 55, 0.06);
    font-weight: 600;
    color: var(--green-dark);
}

/* ===== Social Media Cards Section ===== */
.social-section {
    background: var(--cream);
}

.social-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

/* Social Cards Grid */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Social Card */
.social-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Header with Icon */
.social-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--gray-light);
}

.social-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-card-facebook .social-card-icon {
    background: #1877f2;
    color: white;
}

.social-card-twitter .social-card-icon {
    background: #000;
    color: white;
}

.social-card-email .social-card-icon {
    background: var(--green-dark);
    color: white;
}

.social-card-platform {
    display: flex;
    flex-direction: column;
}

.platform-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-handle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 2px;
}

/* Card Content */
.social-card-content {
    padding: 20px 24px;
    flex: 1;
}

.social-card-description {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.social-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-card-features li {
    background: var(--cream);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Card Footer with Follow Button */
.social-card-footer {
    padding: 16px 24px 24px;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-follow-facebook {
    background: #1877f2;
    color: white;
}

.social-follow-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-follow-twitter {
    background: #000;
    color: white;
}

.social-follow-twitter:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-follow-email {
    background: var(--green-dark);
    color: white;
}

.social-follow-email:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 104, 55, 0.4);
}

/* Quick Connect Bar */
.social-quick-connect {
    background: var(--white);
    border-radius: 50px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quick-connect-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.quick-connect-links {
    display: flex;
    gap: 12px;
}

.quick-connect-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-connect-btn:hover {
    transform: scale(1.15);
}

.quick-connect-facebook {
    background: #1877f2;
}

.quick-connect-facebook:hover {
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5);
}

.quick-connect-twitter {
    background: #000;
}

.quick-connect-twitter:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.quick-connect-email {
    background: var(--green-dark);
}

.quick-connect-email:hover {
    box-shadow: 0 4px 15px rgba(0, 104, 55, 0.5);
}

.quick-connect-ballotpedia {
    background: #666;
}

.quick-connect-ballotpedia:hover {
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.5);
}

/* Social Cards Responsive */
@media (max-width: 992px) {
    .social-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .social-cards-grid {
        grid-template-columns: 1fr;
    }

    .social-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .social-quick-connect {
        flex-direction: column;
        gap: 16px;
        border-radius: 20px;
        padding: 20px 24px;
    }

    .quick-connect-label {
        margin-bottom: 4px;
    }
}

/* ===== Email Signup ===== */
.signup-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    position: relative;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.signup-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.signup-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.signup-box > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.15rem;
}

.signup-form .form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-form input {
    padding: 18px 24px;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    min-width: 180px;
}

.signup-form input:focus {
    outline: 3px solid var(--green-accent);
}

.signup-form .btn {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.signup-form .btn:hover {
    background: var(--cream);
    border-color: var(--cream);
}

.form-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.signup-success p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== Action ===== */
.action {
    background: var(--cream);
}

.action h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 60px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.action-card {
    background: var(--white);
    border-bottom: 5px solid var(--green-dark);
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 104, 55, 0.15);
}

.action-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.action-card p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Resources ===== */
.records {
    background: var(--white);
}

.records h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.resource-link {
    display: block;
    padding: 20px 28px;
    background: var(--cream);
    text-decoration: none;
    color: var(--green-dark);
    font-weight: 600;
    border-left: 4px solid var(--green-dark);
    transition: all 0.2s;
}

.resource-link:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateX(8px);
}

/* ===== Endorsements ===== */
.endorsements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.endorsement-card {
    background: var(--cream);
    padding: 40px 32px;
    border-left: 5px solid var(--green-dark);
}

.endorsement-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.endorsement-source {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1rem;
}

.testimonial-placeholder {
    border-left-color: var(--gray-light);
    background: var(--white);
    border: 2px dashed var(--gray-light);
    border-left: 5px solid var(--gray-light);
}

.testimonial-placeholder .endorsement-quote {
    color: var(--gray);
    font-style: normal;
}

.testimonial-placeholder .endorsement-source {
    color: var(--gray);
}

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

/* ===== Record Highlights ===== */
.record-highlights {
    max-width: 900px;
    margin: 0 auto;
}

.beau-highlights {
    list-style: none;
    padding: 0;
}

.beau-highlights li {
    padding: 24px 32px;
    padding-left: 64px;
    position: relative;
    background: var(--cream);
    border-left: 5px solid var(--green-dark);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.beau-highlights li::before {
    content: '\2713';
    position: absolute;
    left: 24px;
    top: 24px;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 1.3rem;
}

.beau-highlights li strong {
    color: var(--green-dark);
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

/* ===== Better Choice Grid (used in about) ===== */
.better-choice-grid {
    display: grid;
    grid-template-columns: minmax(280px, 350px) 1fr;
    gap: 60px;
    align-items: start;
}

.better-choice-content h2 {
    font-size: 2.8rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.better-choice-content .lead {
    font-size: 1.3rem;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 24px;
}

.better-choice-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.beau-photo img {
    width: 100%;
    max-width: 350px;
    box-shadow: 20px 20px 0 var(--green-dark);
}

@media (max-width: 900px) {
    .better-choice-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .beau-photo {
        text-align: center;
    }

    .beau-photo img {
        max-width: 300px;
        margin: 0 auto;
        box-shadow: 15px 15px 0 var(--green-dark);
    }
}

/* ===== Better Choice Section ===== */
.better-choice-section {
    background: var(--white);
}

/* ===== Footer Slogan ===== */
.footer-slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: var(--green-accent);
}

/* ===== Contrast Section (Issues) ===== */
.contrast {
    background: var(--green-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contrast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contrast h2 {
    text-align: center;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.contrast .section-subtitle {
    color: rgba(255, 255, 255, 0.9); /* Improved contrast for accessibility */
    position: relative;
    z-index: 1;
}

.contrast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.contrast-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 36px 32px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, background 0.3s;
}

.contrast-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
}

.contrast-card h3 {
    font-size: 1.2rem;
    color: var(--green-accent);
    margin-bottom: 16px;
}

.contrast-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

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

/* ===== Hero with Photo Background ===== */
.hero-photo {
    background: linear-gradient(rgba(0, 104, 55, 0.85), rgba(0, 104, 55, 0.9)), url('images/beau-hero.jpg');
    background-size: cover;
    background-position: center top;
}

/* ===== Split Hero Layout ===== */
.hero-split {
    padding: 140px 24px 80px;
    background: var(--green-dark);
}

.hero-split::after {
    display: none;
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-column {
    text-align: left;
}

.hero-text-column .hero-subtitle {
    text-align: left;
    margin-bottom: 16px;
}

.hero-text-column h1 {
    font-size: 6rem;
    text-align: left;
    line-height: 0.95;
    margin-bottom: 16px;
}

.hero-slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--green-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.hero-text-column .hero-tagline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.2rem;
}

.hero-text-column .countdown-container {
    margin: 32px 0;
}

.hero-text-column .countdown {
    justify-content: flex-start;
}

.hero-text-column .hero-buttons {
    text-align: left;
}

.hero-text-column .hero-buttons .btn {
    margin: 0 16px 16px 0;
}

.hero-image-column {
    position: relative;
}

.hero-photo-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 0;
    box-shadow: 30px 30px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .hero-text-column h1 {
        font-size: 4.5rem;
    }

    .hero-slogan {
        font-size: 1.4rem;
    }
}

@media (max-width: 900px) {
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-column {
        text-align: center;
        order: 1;
    }

    .hero-text-column .hero-subtitle,
    .hero-text-column h1,
    .hero-text-column .hero-tagline,
    .hero-text-column .hero-buttons {
        text-align: center;
    }

    .hero-text-column .countdown {
        justify-content: center;
    }

    .hero-text-column .hero-buttons .btn {
        margin: 0 8px 16px;
    }

    .hero-image-column {
        order: 2;
        text-align: center;
    }

    .hero-photo-img {
        max-width: 350px;
        margin: 0 auto;
        box-shadow: 20px 20px 0 rgba(255, 255, 255, 0.1);
    }

    .hero-text-column h1 {
        font-size: 3.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-split {
        padding: 120px 16px 60px;
    }

    .hero-text-column h1 {
        font-size: 2.8rem;
    }

    .hero-slogan {
        font-size: 1rem;
    }

    .hero-photo-img {
        max-width: 280px;
        box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.1);
    }
}

/* ===== Countdown Timer ===== */
.countdown-container {
    margin: 40px 0;
}

.countdown-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-accent);
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px 24px;
    min-width: 90px;
    text-align: center;
}

.countdown-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    display: block;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons .btn {
    margin: 0 10px 16px;
}

/* ===== Nav Donate Button ===== */
.nav-donate {
    background: var(--green-accent) !important;
    color: var(--green-dark) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
}

.nav-donate:hover {
    background: var(--white) !important;
}

/* ===== Photo Gallery ===== */
.gallery-section {
    background: var(--cream);
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== Featured Endorsement Section (Kayla) ===== */
.featured-endorsement-section {
    background: var(--green-dark);
    color: var(--white);
}

.featured-endorsement-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--white);
}

.featured-endorsement-section .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.featured-endorsement-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-endorsement-photo img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.featured-endorsement-content {
    padding: 20px;
}

.featured-endorsement-content .quote-mark {
    font-size: 5rem;
    color: var(--green-accent);
    line-height: 1;
    margin-bottom: -20px;
}

.featured-endorsement-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.featured-endorsement-source {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 1.5rem;
}

.featured-endorsement-content .btn {
    background: var(--white);
    color: var(--green-dark);
}

.featured-endorsement-content .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .featured-endorsement-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-endorsement-photo img {
        max-width: 300px;
        margin: 0 auto;
    }

    .featured-endorsement-quote {
        font-size: 1.25rem;
    }
}

/* ===== Impeachment Courage Section ===== */
.impeachment-section {
    background: var(--off-white);
}

.impeachment-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.impeachment-photo img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.impeachment-content h2 {
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.impeachment-content .lead {
    font-size: 1.3rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.impeachment-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.impeachment-quote {
    background: var(--green-dark);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.impeachment-quote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.impeachment-quote span {
    font-weight: 600;
    color: var(--green-accent);
}

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

    .impeachment-photo {
        text-align: center;
    }

    .impeachment-photo img {
        max-width: 300px;
    }

    .impeachment-content h2 {
        font-size: 2rem;
        text-align: center;
    }
}

/* ===== District Map Section ===== */
.district-section {
    background: var(--white);
}

.district-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.district-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.district-map {
    text-align: center;
}

.map-placeholder-box {
    background: transparent;
    overflow: hidden;
}

.map-placeholder-box img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
    height: auto;
}

.map-placeholder-box svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-caption {
    margin-top: 16px;
}

.map-caption a {
    color: var(--green-dark);
    font-weight: 600;
}

.district-info h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.county-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    background: var(--white);
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.county-column {
    flex: 1;
    min-width: 150px;
}

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

.county-column li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
    border-bottom: 1px solid var(--gray-light);
    font-size: 1rem;
    font-weight: 500;
}

.county-column li:last-child {
    border-bottom: none;
}

.county-column li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--green-dark);
    font-weight: 700;
}

.county-column li.partial-county {
    color: var(--text-light);
    font-style: italic;
}

.county-column li.partial-county::before {
    content: '\2713';
    top: 10px;
    color: var(--gray);
}

.district-note {
    margin-top: 24px;
    padding: 20px;
    background: var(--cream);
    border-left: 4px solid var(--green-dark);
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .district-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Media Coverage Section ===== */
.media-section {
    background: var(--cream);
}

.media-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-card {
    background: var(--white);
    padding: 28px;
    text-decoration: none;
    border-bottom: 4px solid var(--green-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 104, 55, 0.15);
}

.media-source {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.media-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
}

.media-date {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== Footer Donate Button ===== */
.footer-donate {
    margin: 20px 0;
}

/* ===== Scrolling Quote Bar ===== */
.quote-ticker {
    background: var(--green-dark);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.quote-ticker-content {
    display: flex;
    white-space: nowrap;
    gap: 0;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    flex-shrink: 0;
    width: max-content;
    align-items: center;
}

.quote-ticker-item {
    color: var(--white);
    padding: 0 32px;
    font-size: 0.9rem;
    font-style: italic;
    flex-shrink: 0;
    display: inline-block;
}

.quote-ticker-item strong {
    color: var(--green-accent);
    font-style: normal;
}

/* scroll-left keyframes removed - using JS requestAnimationFrame for glitch-free scrolling */

/* ===== Past Endorsements Ticker ===== */
.endorsements-ticker {
    background: var(--cream);
    padding: 16px 0;
    overflow: hidden;
    border-top: 2px solid var(--gray-light);
    border-bottom: 2px solid var(--gray-light);
    /* Prevent any overflow issues */
    -webkit-overflow-scrolling: touch;
    /* GPU acceleration - parent perspective for smooth 3D transforms */
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.endorsements-ticker-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 12px;
    font-weight: 600;
}

.endorsements-ticker-content {
    display: flex;
    white-space: nowrap;
    /* GPU acceleration for smooth animation */
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    align-items: center;
    /* Ensure content doesn't wrap */
    flex-shrink: 0;
}

.endorsements-ticker-item {
    padding: 0 12px;
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    /* Prevent items from shrinking */
    flex-shrink: 0;
}

/* Text-based endorsement styling */
.endorsements-ticker-item.endorsement-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 8px;
    /* Prevent items from shrinking */
    flex-shrink: 0;
}

/* Separator dot between endorsements */
.endorsement-separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--green-dark);
    border-radius: 50%;
    margin: 0 8px;
    flex-shrink: 0;
}

/* Legacy SVG logo styles (can be removed if no longer needed) */
.endorsements-ticker-item img,
.endorsements-ticker-item svg.endorsement-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.endorsements-ticker-item img:hover,
.endorsements-ticker-item svg.endorsement-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* scroll-right keyframes removed - using JS requestAnimationFrame for glitch-free scrolling */


/* ===== Responsive Countdown ===== */
@media (max-width: 600px) {
    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px 12px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-unit {
        font-size: 0.7rem;
    }
}

/* ===== Share Float ===== */
.share-float {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 500; /* Between nav (100) and sticky-nav (1000) */
}

.share-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.share-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-email { background: var(--green-dark); }
.share-copy { background: var(--gray); }

/* ===== Footer ===== */
footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 48px 24px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--green-accent);
}

.disclaimer {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Blog Page ===== */
.hero-small {
    padding: 140px 24px 80px;
}

.hero-small::after {
    height: 50px;
}

.hero-small h1 {
    font-size: 3rem;
}

.blog-section {
    background: var(--white);
}

.blog-grid {
    display: grid;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.blog-card {
    background: var(--cream);
    padding: 40px;
    border-left: 5px solid var(--green-dark);
}

.blog-card.blog-placeholder {
    border-left-color: var(--gray-light);
    text-align: center;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-card h2 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.blog-card p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-card ul {
    margin: 20px 0;
    padding-left: 28px;
    color: var(--text);
}

.blog-card li {
    margin-bottom: 10px;
}

.blog-card a {
    color: var(--green-dark);
    font-weight: 600;
}

.blog-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tag {
    background: var(--green-dark);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Video Section ===== */
.video-section {
    background: var(--white);
}

.video-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.video-card {
    background: var(--cream);
    padding: 24px;
    border-bottom: 5px solid var(--green-dark);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--gray-light);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.video-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== Video Feature Cards (New) ===== */
.video-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.video-feature-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, var(--green-dark) 0%, #004d2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-feature-card:hover .video-placeholder-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
}

/* Video Thumbnail Styles (New Styled Cards) */
.video-thumbnail-link {
    display: block;
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    min-height: 220px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-thumbnail-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-source-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-play-overlay {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-link:hover .video-play-overlay {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-play-overlay svg {
    margin-left: 4px; /* Visual centering for play icon */
}

.video-title-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: white;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 14px;
    border-radius: 4px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.video-feature-content {
    padding: 24px;
}

.video-feature-content h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    font-family: var(--font-accent);
}

.video-feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.video-feature-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Video Social CTA */
.video-social-cta {
    text-align: center;
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.video-social-cta h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    font-family: var(--font-accent);
}

.video-social-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
}

.video-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.video-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-social-facebook {
    background: #1877f2;
    color: white;
}

.video-social-facebook:hover {
    background: #166fe5;
    color: white;
}

.video-social-twitter {
    background: #000;
    color: white;
}

.video-social-twitter:hover {
    background: #333;
    color: white;
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-placeholder-icon {
        width: 60px;
        height: 60px;
    }

    .video-placeholder-icon svg {
        width: 48px;
        height: 48px;
    }

    .video-play-overlay {
        width: 64px;
        height: 64px;
    }

    .video-play-overlay svg {
        width: 48px;
        height: 48px;
    }

    .video-title-overlay {
        font-size: 0.9rem;
    }

    .video-feature-content {
        padding: 20px;
    }

    .video-feature-content h3 {
        font-size: 1.15rem;
    }

    .video-social-cta {
        padding: 28px 20px;
    }

    .video-social-cta h3 {
        font-size: 1.3rem;
    }

    .video-social-links {
        flex-direction: column;
        gap: 12px;
    }

    .video-social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-feature-content {
        padding: 16px;
    }

    .video-feature-content h3 {
        font-size: 1.05rem;
    }

    .video-feature-content p {
        font-size: 0.9rem;
    }

    .video-placeholder-label {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .video-source-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        top: 10px;
        left: 10px;
    }

    .video-title-overlay {
        font-size: 0.85rem;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h1 span {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo {
        text-align: center;
    }

    .about-photo img,
    .photo-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

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

    .compare-table th,
    .compare-table td {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .share-float {
        left: 12px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .signup-form .form-row {
        flex-direction: column;
    }

    .signup-form input {
        width: 100%;
    }

    h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 16px 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

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

    .section {
        padding: 70px 0;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* ===== Mobile Comparison Table - Card Layout ===== */
@media (max-width: 768px) {
    .compare-table-wrapper {
        overflow-x: visible;
    }

    .compare-table {
        display: block;
    }

    .compare-table thead {
        display: none;
    }

    .compare-table tbody {
        display: block;
    }

    .compare-table tr {
        display: block;
        background: var(--white);
        margin-bottom: 24px;
        padding: 0;
        border-radius: 8px;
        border-left: 5px solid var(--green-dark);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .compare-table td {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid var(--gray-light);
        text-align: left;
        font-size: 0.95rem;
    }

    .compare-table td:last-child {
        border-bottom: none;
    }

    .compare-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        font-size: 0.8rem;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .compare-table td:first-child {
        background: var(--green-dark);
        color: var(--white);
        padding: 16px 20px;
        margin: 0;
        font-weight: 700;
        font-size: 1.05rem;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .compare-table td:first-child strong {
        color: var(--white);
    }

    .compare-table td:first-child::before {
        display: none;
    }

    .compare-table .highlight-col {
        background: rgba(0, 104, 55, 0.06);
        padding: 14px 20px;
        margin: 0;
        border-left: 4px solid var(--green-accent);
        font-weight: 600;
        color: var(--green-dark);
    }

    .compare-table tbody .highlight-col {
        background: rgba(0, 104, 55, 0.06);
    }

    /* Mobile Sticky Nav */
    .sticky-nav .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .sticky-nav .nav-links.active {
        display: flex;
    }

    .sticky-mobile-toggle {
        display: block;
    }
}

/* ===== Mobile Share Float Fix ===== */
@media (max-width: 600px) {
    .share-float {
        position: fixed;
        left: auto;
        right: 12px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        background: var(--white);
        padding: 8px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .share-label {
        display: none;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .share-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== Mobile Action Grid Fix ===== */
@media (max-width: 600px) {
    .action-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .action-card {
        padding: 28px 24px;
    }

    .action-card h3 {
        font-size: 1.2rem;
    }

    .action-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .action-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== Mobile Countdown Timer Fix ===== */
@media (max-width: 400px) {
    .countdown {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        padding: 12px 10px;
        min-width: 60px;
        flex: 0 0 auto;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-unit {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .countdown-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}

/* ===== Additional Mobile Fixes ===== */
@media (max-width: 480px) {
    .district-note {
        font-size: 0.85rem;
        padding: 16px;
    }

    .endorsements-grid {
        gap: 16px;
    }

    .endorsement-card {
        padding: 24px 20px;
    }

    .endorsement-quote {
        font-size: 1rem;
    }
}

/* ===== Consolidated Section Title Styles ===== */
/* Note: The following sections share identical h2 styles and could be consolidated
   into a single class like .section-title in a future refactor:
   - .about h2
   - .issues h2
   - .stats-section h2
   - .compare h2
   - .social-section h2
   - .records h2
   - .gallery-section h2
   - .district-section h2
   - .media-section h2
   - .video-section h2
   All use: text-align: center; font-size: 2.8rem; color: var(--green-dark);
*/

/* ===== Accessibility: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    /* Tickers handled by JS which checks prefers-reduced-motion */

    .btn:hover,
    .issue-card:hover,
    .action-card:hover,
    .record-card:hover,
    .contrast-card:hover,
    .stat-card:hover,
    .media-card:hover,
    .gallery-item:hover img {
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }

    .urgency-pulse,
    .btn-donate-pulse {
        animation: none;
    }
}

/* ===== PSYCHOLOGY-DRIVEN ENHANCEMENTS ===== */

/* Social Proof Banner in Hero */
.social-proof-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.proof-item {
    color: var(--green-accent);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-item strong {
    color: var(--white);
    font-weight: 700;
}

.proof-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Urgency Banner */
.urgency-banner {
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.4);
    padding: 16px 24px;
    margin: 24px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: #fff;
}

.urgency-pulse {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Donate Button Pulse Animation */
.btn-donate-pulse {
    animation: donate-pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes donate-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
}

/* Credentials Bar */
.credentials-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--cream);
    border-top: 4px solid var(--green-dark);
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credential-icon {
    font-size: 1.5rem;
}

.credential-text {
    font-size: 0.95rem;
    color: var(--text);
}

.credential-text strong {
    color: var(--green-dark);
    font-weight: 700;
}

/* Photo Caption */
.photo-caption {
    background: var(--green-dark);
    color: var(--white);
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    font-style: normal;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    border-left: 4px solid var(--green-accent, #6fbf73);
    text-align: left;
}

/* Hometown Banner */
.hometown-banner {
    background: var(--green-dark);
    color: var(--white);
    padding: 20px 32px;
    margin: 32px 0;
    text-align: center;
    border-top: 3px solid var(--gold, #d4a843);
    border-bottom: 3px solid var(--gold, #d4a843);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hometown-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.hometown-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .hometown-banner {
        padding: 16px 20px;
        gap: 10px;
    }
    .hometown-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .hometown-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hometown-text {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    .hometown-icon {
        font-size: 1.3rem;
    }
}

/* Free Resource Box (Reciprocity) */
.free-resource-box {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
}

.free-resource-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-resource-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.free-resource-box .btn {
    background: var(--white);
    color: var(--green-dark);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Testimonials Section */
.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--green-dark);
}

.endorsements-grid {
    grid-template-columns: repeat(3, 1fr);
}

.endorsement-card {
    position: relative;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--green-accent);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.5;
}

.featured-testimonial {
    background: var(--green-dark);
    color: var(--white);
    border-left-color: var(--green-accent);
}

.featured-testimonial .endorsement-quote {
    color: rgba(255, 255, 255, 0.95);
}

.featured-testimonial .endorsement-source {
    color: var(--green-accent);
}

.featured-testimonial .quote-mark {
    color: var(--green-accent);
    opacity: 0.3;
}

.testimonial-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonial-cta p {
    margin-bottom: 16px;
    color: var(--text-light);
}

/* Commitment Options (Email Signup) */
.signup-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.commitment-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.commitment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.commitment-option.active {
    color: var(--white);
}

.commitment-check {
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.commitment-option.active .commitment-check {
    background: var(--green-accent);
    border-color: var(--green-accent);
    color: var(--green-dark);
}

.signup-next-step {
    margin-top: 16px;
}

.signup-next-step a {
    color: var(--green-accent);
    font-weight: 600;
}

/* Stakes Box (Loss Aversion) */
.stakes-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 32px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stakes-box h3 {
    color: #856404;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.stakes-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stakes-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #856404;
}

.stakes-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Action Card Featured */
.action-card-featured {
    position: relative;
    border-color: var(--green-accent);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    z-index: 1;
    overflow: visible;
    margin-top: 12px;
}

.action-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Footer Final CTA */
.footer-final-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-final-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-final-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Mobile Responsiveness for Psychology Elements */
@media (max-width: 768px) {
    .social-proof-banner {
        flex-direction: column;
        gap: 8px;
    }

    .proof-divider {
        display: none;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .credentials-bar {
        gap: 20px;
    }

    .credential {
        flex: 0 0 45%;
        justify-content: center;
    }

    .trust-indicators {
        gap: 30px;
    }

    .trust-number {
        font-size: 2.5rem;
    }

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

    .commitment-options {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .stakes-box {
        padding: 24px 20px;
    }

    .footer-final-cta {
        padding: 24px 16px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .footer-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .credentials-bar {
        flex-direction: column;
        gap: 16px;
    }

    .credential {
        flex: 0 0 100%;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 24px;
    }

    .free-resource-box {
        padding: 20px 16px;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS IMPROVEMENTS ===== */

/* ===== Large Tablets (1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero h1 span {
        font-size: 1.8rem;
    }

    .about-grid,
    .better-choice-grid {
        gap: 40px;
    }

    .stats-grid {
        gap: 24px;
    }

    .video-grid {
        gap: 30px;
    }

    .district-grid {
        gap: 40px;
    }
}

/* ===== Small Phones (375px - iPhone SE, etc.) ===== */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 50px 0;
    }

    /* Hero adjustments */
    .hero {
        padding: 120px 12px 80px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h1 span {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
        margin: 8px 0;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        margin: 0;
    }

    /* Navigation */
    .logo {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 12px;
    }

    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-context {
        font-size: 0.8rem;
    }

    .stat-card {
        padding: 32px 16px;
    }

    /* Section titles */
    h2 {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    /* Cards */
    .issue-card,
    .action-card,
    .record-card,
    .contrast-card {
        padding: 24px 16px;
    }

    .issue-card h3,
    .action-card h3,
    .record-card h3,
    .contrast-card h3 {
        font-size: 1.1rem;
    }

    .issue-card p,
    .action-card p,
    .record-card p,
    .contrast-card p {
        font-size: 0.9rem;
    }

    /* About section */
    .about-text p,
    .better-choice-content p {
        font-size: 0.95rem;
    }

    .about-highlights li {
        padding: 12px 16px 12px 44px;
        font-size: 0.9rem;
    }

    .about-highlights li::before {
        left: 12px;
        font-size: 1rem;
    }

    /* Media cards */
    .media-card {
        padding: 20px;
    }

    .media-card h3 {
        font-size: 1rem;
    }

    /* Endorsement cards */
    .endorsement-card {
        padding: 20px 16px;
    }

    .endorsement-quote {
        font-size: 0.9rem;
    }

    /* Blog cards */
    .blog-card {
        padding: 24px 16px;
    }

    .blog-card h2 {
        font-size: 1.3rem;
    }

    /* Video section */
    .video-card {
        padding: 16px;
    }

    .video-card h3 {
        font-size: 1rem;
    }

    /* District section */
    .county-column li {
        font-size: 0.9rem;
        padding: 8px 0 8px 24px;
    }

    .county-column li::before {
        top: 8px;
    }

    .county-column li.partial-county::before {
        top: 8px;
    }

    .district-note {
        font-size: 0.8rem;
        padding: 12px;
    }

    /* Footer */
    footer {
        padding: 36px 12px;
        font-size: 0.85rem;
    }

    .footer-slogan {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .disclaimer {
        font-size: 0.75rem;
    }

    /* Forms */
    .signup-box h2 {
        font-size: 1.8rem;
    }

    .signup-box > p {
        font-size: 1rem;
    }

    .signup-form input {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Countdown */
    .countdown {
        gap: 4px;
    }

    .countdown-item {
        padding: 10px 8px;
        min-width: 55px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .countdown-unit {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* ===== Very Small Phones (320px) ===== */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }

    .section {
        padding: 40px 0;
    }

    /* Hero */
    .hero {
        padding: 100px 8px 60px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero h1 span {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-top: 8px;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* Section titles */
    h2 {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-context {
        font-size: 0.7rem;
    }

    .stat-card {
        padding: 24px 12px;
    }

    /* Cards */
    .issue-card,
    .action-card,
    .record-card,
    .contrast-card {
        padding: 20px 12px;
    }

    .issue-card h3,
    .action-card h3,
    .record-card h3,
    .contrast-card h3 {
        font-size: 1rem;
    }

    .issue-card p,
    .action-card p,
    .record-card p,
    .contrast-card p {
        font-size: 0.85rem;
    }

    /* Countdown - stack in 2x2 grid */
    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 180px;
        margin: 0 auto;
    }

    .countdown-item {
        min-width: unset;
        padding: 12px 8px;
    }

    /* Navigation */
    .logo {
        font-size: 0.9rem;
    }

    .mobile-toggle {
        font-size: 1.3rem;
        padding: 8px;
    }

    /* Forms */
    .signup-form input {
        padding: 12px;
        font-size: 0.85rem;
    }

    .signup-box h2 {
        font-size: 1.5rem;
    }

    .signup-box > p {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 28px 8px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-slogan {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .disclaimer {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* ===== Touch Target Improvements (44px minimum) ===== */
@media (max-width: 768px) {
    /* Navigation touch targets */
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 16px;
    }

    .nav-donate {
        min-height: 44px !important;
        padding: 12px 20px !important;
    }

    /* Buttons */
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Share buttons */
    .share-btn {
        min-width: 44px;
        min-height: 44px;
    }

    /* Footer social links */
    .footer-social a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Resource links */
    .resource-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Media cards */
    .media-card {
        min-height: 44px;
    }

    /* Form inputs */
    .signup-form input {
        min-height: 44px;
    }

    .signup-form button {
        min-height: 44px;
    }

    /* Tags */
    .tag {
        min-height: 32px;
        display: inline-flex;
        align-items: center;
    }
}

/* ===== Quote Ticker Mobile Improvements ===== */
@media (max-width: 768px) {
    .quote-ticker {
        padding: 10px 0;
        overflow: hidden;
    }

    .quote-ticker-content {
        display: flex;
        white-space: nowrap;
        width: max-content;
    }

    .quote-ticker-item {
        padding: 0 20px;
        font-size: 0.8rem;
        display: inline-block;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .quote-ticker {
        padding: 8px 0;
    }

    .quote-ticker-item {
        padding: 0 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .quote-ticker {
        padding: 6px 0;
    }

    .quote-ticker-item {
        padding: 0 10px;
        font-size: 0.7rem;
    }
}

/* ===== Endorsements Ticker Mobile Improvements ===== */
@media (max-width: 768px) {
    .endorsements-ticker {
        padding: 12px 0;
    }

    .endorsements-ticker-label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .endorsements-ticker-item {
        padding: 0 20px;
        font-size: 0.85rem;
    }

    .endorsements-ticker-item.endorsement-text {
        font-size: 0.85rem;
        padding: 0 6px;
    }

    .endorsement-separator {
        margin: 0 6px;
    }

    .endorsements-ticker-item img,
    .endorsements-ticker-item svg.endorsement-logo {
        height: 32px;
        max-width: 110px;
    }
}

@media (max-width: 480px) {
    .endorsements-ticker-item {
        padding: 0 14px;
    }

    .endorsements-ticker-item.endorsement-text {
        font-size: 0.8rem;
        padding: 0 4px;
    }

    .endorsement-separator {
        width: 5px;
        height: 5px;
        margin: 0 4px;
    }

    .endorsements-ticker-item img,
    .endorsements-ticker-item svg.endorsement-logo {
        height: 28px;
        max-width: 90px;
    }
}

/* ===== Hero Section Enhanced Mobile ===== */
@media (max-width: 768px) {
    .hero::after {
        height: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        margin: 0;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero::after {
        height: 30px;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }
}

/* ===== Navigation Mobile Improvements ===== */
@media (max-width: 768px) {
    nav {
        padding: 16px 0;
    }

    .nav-links {
        top: 70px;
        padding: 24px 16px;
        gap: 8px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 16px;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .sticky-nav {
        padding: 12px 0;
    }

    .sticky-nav .nav-links {
        top: 52px;
    }
}

/* ===== Photo Gallery Enhanced Mobile ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 375px) {
    .gallery-grid {
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }
}

/* ===== Comparison Table Enhanced Mobile ===== */
@media (max-width: 480px) {
    .compare-table tr {
        padding: 0;
        margin-bottom: 16px;
    }

    .compare-table td {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .compare-table td::before {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .compare-table td:first-child {
        padding: 14px 16px;
        margin: 0;
        font-size: 1rem;
    }

    .compare-table .highlight-col {
        padding: 10px 16px;
        margin: 0;
    }
}

@media (max-width: 375px) {
    .compare-table tr {
        padding: 0;
        margin-bottom: 12px;
    }

    .compare-table td {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .compare-table td:first-child {
        padding: 12px;
        margin: 0;
        font-size: 0.9rem;
    }

    .compare-table .highlight-col {
        padding: 8px 12px;
        margin: 0;
    }
}

/* ===== Forms Enhanced Mobile ===== */
@media (max-width: 480px) {
    .signup-form .form-row {
        gap: 12px;
    }

    .signup-form input {
        min-width: 100%;
    }

    .form-note {
        font-size: 0.8rem;
        margin-top: 12px;
    }
}

/* ===== Footer Enhanced Mobile ===== */
@media (max-width: 480px) {
    footer {
        padding: 32px 16px;
    }

    .footer-social {
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer-social a svg {
        width: 28px;
        height: 28px;
    }

    .footer-donate {
        width: 100%;
        margin: 16px 0;
    }

    footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    footer {
        padding: 24px 12px;
    }

    .footer-social a svg {
        width: 24px;
        height: 24px;
    }

    footer p {
        font-size: 0.8rem;
    }
}

/* ===== Share Float Enhanced Mobile ===== */
@media (max-width: 480px) {
    .share-float {
        right: 8px;
        bottom: 12px;
        padding: 6px;
        gap: 8px;
    }

    .share-btn {
        width: 44px;
        height: 44px;
    }

    .share-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 375px) {
    .share-float {
        right: 6px;
        bottom: 10px;
        padding: 4px;
        gap: 6px;
    }
}

/* ===== Video Embeds Enhanced Mobile ===== */
@media (max-width: 480px) {
    .video-card {
        padding: 16px;
    }

    .video-embed {
        margin-bottom: 16px;
    }

    .video-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .video-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .video-card {
        padding: 12px;
    }

    .video-card h3 {
        font-size: 0.95rem;
    }

    .video-card p {
        font-size: 0.8rem;
    }
}

/* ===== Map Section Enhanced Mobile ===== */
@media (max-width: 768px) {
    .district-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-placeholder-box svg {
        max-width: 100%;
    }

    .district-info h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
}

/* County list stacks vertically on mobile */
@media (max-width: 600px) {
    .county-list {
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }

    .county-column {
        flex: 1;
        min-width: 100%;
    }

    .county-column:first-child {
        border-bottom: 1px solid var(--gray-light);
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .county-column li {
        padding: 8px 0 8px 24px;
        font-size: 0.9rem;
    }

    .county-column li::before {
        top: 8px;
    }

    .county-column li.partial-county::before {
        top: 8px;
    }

    .district-note {
        margin-top: 16px;
        padding: 14px;
        font-size: 0.85rem;
    }

    .map-caption {
        margin-top: 12px;
        font-size: 0.85rem;
    }
}

/* ===== Stats Grid Enhanced Mobile ===== */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 28px 16px;
    }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Overflow Prevention ===== */
@media (max-width: 768px) {
    /* Prevent horizontal overflow from any element */
    .container,
    .hero-content,
    .about-grid,
    .better-choice-grid,
    .issues-grid,
    .stats-grid,
    .record-grid,
    .contrast-grid,
    .action-grid,
    .media-grid,
    .social-grid,
    .gallery-grid,
    .video-grid,
    .district-grid,
    .endorsements-grid,
    .resources-grid,
    .blog-grid {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure SVGs don't overflow */
    svg {
        max-width: 100%;
        height: auto;
    }

    /* Ensure tables don't overflow */
    table {
        max-width: 100%;
    }

    /* Ensure embeds don't overflow */
    iframe {
        max-width: 100%;
    }

    /* Ensure about photo doesn't overflow */
    .about-photo img,
    .beau-photo img {
        max-width: 100%;
        box-shadow: 12px 12px 0 var(--green-dark);
    }
}

@media (max-width: 480px) {
    .about-photo img,
    .beau-photo img {
        box-shadow: 8px 8px 0 var(--green-dark);
    }
}

/* ===== Social Feeds Mobile ===== */
@media (max-width: 768px) {
    .social-grid {
        gap: 24px;
    }

    .social-feed h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .feed-embed {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .feed-embed {
        min-height: 350px;
    }

    .social-feed .btn {
        width: 100%;
    }
}

/* ===== Record Section Mobile ===== */
@media (max-width: 480px) {
    .record-card {
        padding: 24px 20px;
    }

    .record-card h3 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .record-card p {
        font-size: 0.9rem;
    }
}

/* ===== Beau Highlights Mobile ===== */
@media (max-width: 480px) {
    .beau-highlights li {
        padding: 20px 20px 20px 48px;
        margin-bottom: 16px;
        font-size: 0.95rem;
    }

    .beau-highlights li::before {
        left: 16px;
        top: 20px;
        font-size: 1.1rem;
    }

    .beau-highlights li strong {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .beau-highlights li {
        padding: 16px 16px 16px 40px;
        font-size: 0.9rem;
    }

    .beau-highlights li::before {
        left: 12px;
        top: 16px;
        font-size: 1rem;
    }

    .beau-highlights li strong {
        font-size: 0.95rem;
    }
}

/* ===== Hero Small (Blog pages) Mobile ===== */
@media (max-width: 768px) {
    .hero-small {
        padding: 120px 16px 60px;
    }

    .hero-small::after {
        height: 30px;
    }

    .hero-small h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-small {
        padding: 100px 12px 50px;
    }

    .hero-small h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 375px) {
    .hero-small {
        padding: 90px 10px 40px;
    }

    .hero-small h1 {
        font-size: 1.5rem;
    }
}

/* ===== Social Proof Banner (if present in hero) ===== */
@media (max-width: 768px) {
    .social-proof-banner {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.85rem;
    }

    .proof-divider {
        display: none;
    }

    .proof-item {
        flex: 1 1 45%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-proof-banner {
        flex-direction: column;
        gap: 4px;
    }

    .proof-item {
        flex: 1 1 100%;
    }
}

/* ===== Urgency Banner (if present in hero) ===== */
@media (max-width: 768px) {
    .urgency-banner {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .urgency-banner {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

@media (max-width: 375px) {
    .urgency-banner {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}

/* ===== Action Cards Enhanced Mobile ===== */
@media (max-width: 768px) {
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

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

/* ===== Contrast Cards (Issues) Mobile ===== */
@media (max-width: 600px) {
    .contrast-grid {
        gap: 16px;
    }

    .contrast-card {
        padding: 24px 20px;
    }
}

@media (max-width: 375px) {
    .contrast-card {
        padding: 20px 16px;
    }

    .contrast-card h3 {
        font-size: 1rem;
    }

    .contrast-card p {
        font-size: 0.85rem;
    }
}

/* ===== Media Cards Enhanced Mobile ===== */
@media (max-width: 480px) {
    .media-grid {
        gap: 16px;
    }

    .media-card {
        padding: 20px 16px;
    }

    .media-source {
        font-size: 0.7rem;
    }

    .media-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .media-date {
        font-size: 0.75rem;
    }
}

/* ===== Resource Links Mobile ===== */
@media (max-width: 480px) {
    .resources-grid {
        gap: 12px;
    }

    .resource-link {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .resource-link {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
}
