/* ============================================
   saletta.gop — Campaign Site Styles
   Colors: Navy #002868, Red #bf0a30, White #f5f5f5
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen reader only — visually hidden but accessible */
.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;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: #1a1a2e;
    background-color: #ffffff;
    line-height: 1.6;
}

/* ---- Flag Bar Accent ---- */
.flag-bar {
    display: flex;
    height: 5px;
    width: 100%;
}

.flag-bar span:nth-child(1) { flex: 1; background: #bf0a30; }
.flag-bar span:nth-child(2) { flex: 1; background: #ffffff; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.flag-bar span:nth-child(3) { flex: 1; background: #002868; }

/* ---- Navigation ---- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #002868;
    padding: 0;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.nav-brand {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.9rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.25rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1rem 0.9rem;
    display: block;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(135deg, #002868 0%, #001a4a 100%);
    color: #ffffff;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-split {
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
}

.hero-photo-col {
    flex-shrink: 0;
    position: relative;
}

.hero-headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: block;
    object-fit: cover;
    object-position: center top;
}

.hero-punch-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #bf0a30;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-text-col {
    flex: 1;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.hero .office-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ff6b6b;
    margin-bottom: 0.3rem;
}

.hero .election-info {
    display: inline-block;
    background: #bf0a30;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.6rem 1.6rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}

.hero .tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 1.2rem;
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn:active {
    transform: scale(0.98);
}

.btn-white {
    background: #ffffff;
    color: #002868;
}

.btn-white:hover {
    background: #e8e8e8;
}

.btn-red {
    background: #bf0a30;
    color: #ffffff;
}

.btn-red:hover {
    background: #a00828;
}

.btn-navy {
    background: #002868;
    color: #ffffff;
}

.btn-navy:hover {
    background: #001a4a;
}

/* ---- Sections (shared) ---- */
.section {
    padding: 4.5rem 1.5rem;
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-alt {
    background: #f5f5f5;
}

.section-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: #002868;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #bf0a30;
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

/* ---- About Section ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-photo {
    width: 100%;
    border-radius: 6px;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo-placeholder {
    width: 100%;
    border-radius: 6px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.values-statement {
    background: #f8f9fc;
    border-left: 4px solid #bf0a30;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1a1a2e;
}

.about-content h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    color: #002868;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.7;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.about-content ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #333;
}

.about-content ul li::before {
    content: "\2605";
    color: #bf0a30;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 0.55rem;
}

/* ---- Platform / Vision Section ---- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.platform-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #bf0a30;
}

.platform-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    color: #002868;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.platform-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- Gallery Section ---- */
.gallery-intro {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.gallery-category {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    color: #002868;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e0e0e0;
}

.gallery-category:first-of-type {
    margin-top: 0;
}

.gallery-subcaption {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: -0.5rem 0 1.25rem;
}

.vote-urgency {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: none; /* removed from hero, kept for other pages */
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.gallery-item.gallery-wide {
    grid-column: span 3;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.gallery-item.gallery-wide img {
    height: 360px;
}

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    background: #fff;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.gallery-wide {
        grid-column: span 2;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-item.gallery-wide img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.gallery-wide {
        grid-column: span 1;
    }
}

/* ---- News / Press Section ---- */
.news-section-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: #f8f9fc;
    border-radius: 8px;
    border-left: 4px solid #bf0a30;
}

.news-section-header:first-of-type {
    margin-top: 0;
}

.news-section-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.news-section-header .news-category {
    margin: 0 0 0.5rem;
}

.news-section-header .news-intro {
    margin-bottom: 0;
}

.news-category {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: #002868;
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
}

.news-category:first-of-type {
    margin-top: 0;
}

.news-intro {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.news-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.news-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: #ffffff;
    border-radius: 6px;
    padding: 1.25rem 1.25rem;
    border-left: 4px solid #002868;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.news-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.news-outlet {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bf0a30;
}

.news-headline {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.news-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: #bf0a30;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
}

.news-link-card:hover .news-cta {
    text-decoration: underline;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-video {
    margin: 2rem auto 1rem;
    max-width: 550px;
}

@media (max-width: 768px) {
    .news-links {
        grid-template-columns: 1fr;
    }
}

/* ---- Engagement / Get Involved Forms ---- */
.engage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.engage-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #bf0a30;
    min-width: 0;
}

.engage-card-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.engage-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    color: #002868;
    margin-bottom: 0.5rem;
}

.engage-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.engage-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.engage-form input,
.engage-form select {
    padding: 0.65rem 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.engage-form input:focus,
.engage-form select:focus {
    outline: none;
    border-color: #002868;
}

.engage-form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
    min-width: 0;
}

.engage-form input,
.engage-form select {
    min-width: 0;
}

.engage-form .btn {
    margin-top: 0.25rem;
}

.thank-you-banner {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ---- News Video Caption ---- */
.news-video-caption {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
    font-style: italic;
}

/* ---- Contact Section ---- */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #002868;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid #002868;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: #002868;
    color: #ffffff;
}

/* ---- Contribute Page ---- */
.contribute-hero {
    background: linear-gradient(135deg, #002868 0%, #001a4a 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 1.5rem 3.5rem;
}

.contribute-container {
    max-width: 640px;
}

.contribute-step {
    margin-bottom: 2.5rem;
}

.contribute-step-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: #002868;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8e8e8;
}

/* Amount buttons */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.amount-btn {
    background: #ffffff;
    border: 2px solid #002868;
    color: #002868;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.amount-btn:hover {
    background: #f0f4fa;
}

.amount-btn.selected {
    background: #002868;
    color: #ffffff;
    border-color: #002868;
}

.custom-amount-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-amount-row label {
    font-size: 0.95rem;
    color: #555;
    white-space: nowrap;
}

.custom-amount-input {
    position: relative;
    flex: 1;
    max-width: 180px;
}

.custom-amount-input .dollar-sign {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.custom-amount-input input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #002868;
}

/* Donor form */
.donor-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.form-group label .required {
    color: #bf0a30;
}

.form-group input {
    padding: 0.65rem 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    min-width: 0;
}

.form-group input:focus {
    outline: none;
    border-color: #002868;
}

.contribute-submit {
    margin-top: 0.75rem;
    font-size: 1.15rem;
    padding: 1rem 2rem;
    width: 100%;
}

.nav-active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
}

/* Disclaimer & mail-in */
.contribute-disclaimer {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.contribute-disclaimer p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

.contribute-mail {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 2px dashed #ddd;
    border-radius: 6px;
}

.contribute-mail h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #002868;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contribute-mail p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contribute-mail address {
    font-style: normal;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
}

/* ---- Vote Page ---- */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

.vote-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vote-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 1.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #002868;
    transition: transform 0.15s, box-shadow 0.15s;
}

.vote-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vote-tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vote-tool-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    color: #002868;
    margin-bottom: 0.75rem;
}

.vote-tool-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.vote-tool-link {
    color: #bf0a30;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Key Dates */
.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.date-item-primary {
    border: 2px solid #bf0a30;
    background: #fff8f8;
}

.date-badge {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: #002868;
    padding: 0.6rem 0.9rem;
    border-radius: 4px;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
}

.date-item-primary .date-badge {
    background: #bf0a30;
}

.date-info h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    color: #002868;
    margin-bottom: 0.2rem;
}

.date-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .vote-tools-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .date-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ---- Footer ---- */
.site-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.85rem;
}

.site-footer p {
    margin-bottom: 0.3rem;
}

.site-footer .disclaimer {
    font-style: italic;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .hero-headshot {
        width: 120px;
        height: 120px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 0.95rem;
    }

    .hero .election-info {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-photo,
    .about-photo-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .engage-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile nav */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #002868;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1.25rem 2rem;
    }

    .hero-headshot {
        width: 100px;
        height: 100px;
    }

    .hero-punch-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.9rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .office-title {
        font-size: 0.85rem;
    }

    .news-item {
        padding: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
