/* ============================================
   Moeller for Orange City Council - Campaign Site
   Color Palette: Orange (#E87722), Navy (#1B2A4A),
   White, Light Gray
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c2c2c;
    line-height: 1.7;
    background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #E87722; text-decoration: none; transition: color 0.3s; }
a:hover { color: #c9631a; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(27, 42, 74, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; align-items: center; }
.nav-logo-img {
    height: 54px; width: auto;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
}
.logo-name {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: 1.5rem; font-weight: 900; color: #E87722;
    letter-spacing: 1px; line-height: 1.1;
}
.logo-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.65rem; color: #b0bec5; letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links {
    list-style: none; display: flex; gap: 8px; align-items: center;
}
.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem; color: #e0e0e0; padding: 8px 16px;
    border-radius: 6px; text-decoration: none; transition: all 0.3s;
    letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
    color: #fff; background: rgba(232, 119, 34, 0.2);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: #e0e0e0;
    margin: 5px 0; transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
    position: relative; min-height: 85vh;
    background-size: cover; background-position: center 30%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(27,42,74,0.6) 0%, rgba(27,42,74,0.4) 50%, rgba(27,42,74,0.7) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px 60px; }
.hero h1 {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-family: 'Arial', sans-serif;
    letter-spacing: 3px; text-transform: uppercase;
    opacity: 0.9; margin-bottom: 16px;
}
.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic; opacity: 0.85; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-buttons .btn { min-width: 200px; text-align: center; }

/* Hero Sign Up Form */
.hero-signup {
    position: relative; z-index: 1;
    max-width: 820px; margin: 0 auto; text-align: left;
}
.hero-signup-fields {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 14px;
}
.hero-signup-fields input {
    width: 100%; padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.35); border-radius: 8px;
    font-size: 0.95rem; font-family: inherit;
    background: rgba(255,255,255,0.95); color: #222;
}
.hero-signup-fields input::placeholder { color: #777; }
.hero-signup-fields input:focus { outline: none; border-color: #E87722; background: #fff; }
.hero-signup-actions {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 14px; flex-wrap: wrap;
}
.hero-signup-btn {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 14px 36px; border: none; cursor: pointer;
}
.hero-signup-checks {
    display: flex; gap: 20px; flex-wrap: wrap;
}
.hero-signup-checks label {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Arial', sans-serif; font-size: 0.85rem;
    color: rgba(255,255,255,0.9); cursor: pointer;
}
.hero-signup-checks input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: #E87722; cursor: pointer;
}
.hero-signup-disclaimer {
    font-size: 0.7rem; color: rgba(255,255,255,0.5);
    line-height: 1.5; text-align: left;
}
.hero-signup-disclaimer a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.hero-signup-disclaimer a:hover { color: #fff; }

@media (max-width: 768px) {
    .hero-signup-fields { grid-template-columns: 1fr 1fr; }
    .hero-signup-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .hero-signup-fields { grid-template-columns: 1fr; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block; padding: 14px 32px;
    font-family: 'Arial', sans-serif; font-size: 0.95rem;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    border-radius: 6px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-primary {
    background: #E87722; color: #fff; border-color: #E87722;
}
.btn-primary:hover { background: #c9631a; border-color: #c9631a; color: #fff; }
.btn-secondary {
    background: transparent; color: #fff; border-color: #fff;
}
.btn-secondary:hover { background: #fff; color: #1B2A4A; }
.btn-outline {
    background: transparent; color: #E87722; border-color: #E87722;
}
.btn-outline:hover { background: #E87722; color: #fff; }

/* ============ ORANGE "O" LOGO MARK ============ */
.orange-o {
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: 0.04em;
}
.orange-o svg {
    height: 0.72em;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
}
/* Footer uses smaller text */
.footer .orange-o svg {
    height: 0.75em;
}

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-title {
    font-family: 'Arial', sans-serif;
    font-size: 2rem; font-weight: 700; text-align: center;
    color: #1B2A4A; margin-bottom: 48px;
    position: relative;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: #E87722; margin: 16px auto 0;
}
.section-cta { text-align: center; margin-top: 40px; }

/* Intro */
.intro-section { background: #f9f9f7; }
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.intro-image img { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.intro-text h2 {
    font-family: 'Arial', sans-serif;
    font-size: 2rem; color: #1B2A4A; margin-bottom: 20px;
}
.intro-text p { margin-bottom: 16px; font-size: 1.05rem; color: #444; }

/* Priorities */
.priorities-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.priorities-section { background: #f9f9f7; }
.priority-card {
    background: #fff; border-radius: 12px;
    padding: 36px 28px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #E87722;
    transition: transform 0.3s, box-shadow 0.3s;
}
.priority-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.priority-card h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.15rem; color: #1B2A4A; margin-bottom: 12px;
}
.priority-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }
a.priority-card-link {
    text-decoration: none; color: inherit; display: block; cursor: pointer;
}
a.priority-card-link:hover { color: inherit; }

/* Quote */
.quote-section {
    position: relative; background-size: cover; background-position: center;
    background-attachment: fixed; color: #fff; text-align: center;
    padding: 100px 0;
}
.quote-container { position: relative; z-index: 1; }
blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic; line-height: 1.8;
    max-width: 800px; margin: 0 auto 20px;
}
cite {
    font-family: 'Arial', sans-serif;
    font-size: 1rem; font-style: normal;
    letter-spacing: 2px; text-transform: uppercase;
    opacity: 0.8;
}

/* Endorsements Preview */
.endorsements-preview { background: #f9f9f7; }
.endorsement-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.endorsement-badge {
    background: #fff; border-radius: 10px;
    padding: 24px; text-align: center;
    border-left: 4px solid #E87722;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.endorsement-badge strong {
    display: block; font-family: 'Arial', sans-serif;
    font-size: 1.05rem; color: #1B2A4A; margin-bottom: 4px;
}
.endorsement-badge span { font-size: 0.85rem; color: #777; }

/* Donate Section */
.donate-section {
    background: #E87722;
    text-align: center; padding: 50px 0;
}
.donate-heading {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-transform: uppercase; letter-spacing: 2px;
    color: #fff; margin-bottom: 28px;
}
.donate-amounts {
    display: flex; justify-content: center;
    gap: 12px; flex-wrap: wrap;
    max-width: 900px; margin: 0 auto;
}
.donate-amount {
    flex: 1; min-width: 120px; max-width: 160px;
    padding: 18px 12px;
    background: #1B2A4A; color: #fff;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: 1.3rem; text-decoration: none;
    border-radius: 8px; border: 2px solid transparent;
    transition: all 0.3s; text-align: center;
}
.donate-amount:hover {
    background: #fff; color: #1B2A4A;
    border-color: #1B2A4A;
}
.donate-max {
    background: #1B2A4A; color: #fff;
    border: 2px solid transparent;
}
.donate-max .max-label {
    display: block; font-size: 0.6rem; letter-spacing: 2px;
    margin-top: 2px; font-weight: bold; color: #E87722;
}
.donate-max:hover {
    background: #fff; color: #1B2A4A;
    border-color: #1B2A4A;
}
.donate-max:hover .max-label {
    color: #E87722;
}
.donate-other {
    background: #c9631a; color: #fff;
}
.donate-other:hover {
    background: #fff; color: #c9631a;
    border-color: #c9631a;
}
@media (max-width: 768px) {
    .donate-amounts { gap: 10px; justify-content: center; }
    .donate-amount { min-width: 100px; max-width: 140px; font-size: 1.15rem; padding: 16px 10px; }
}
@media (max-width: 480px) {
    .donate-amounts { gap: 8px; }
    .donate-amount { min-width: 0; max-width: none; flex: 1 1 calc(33% - 8px); font-size: 1rem; padding: 14px 8px; }
    .donate-max .max-label { font-size: 0.5rem; }
}

/* CTA / Sign Up Section */
.cta-section {
    background: linear-gradient(135deg, #1B2A4A 0%, #2a3f6e 100%);
    color: #fff; text-align: center;
    padding: 36px 0 40px;
}
.cta-container h2 {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.cta-subtitle {
    font-size: 0.95rem; opacity: 0.85; margin-bottom: 18px;
    font-family: 'Georgia', serif; font-style: italic;
}
.cta-container p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 32px; }

/* Sign Up Form */
.signup-form { max-width: 900px; margin: 0 auto; text-align: left; }
.signup-fields {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-bottom: 12px;
}
.signup-fields input {
    width: 100%; padding: 10px 14px;
    border: 2px solid rgba(255,255,255,0.3); border-radius: 6px;
    font-size: 0.9rem; font-family: inherit;
    background: #fff; color: #222;
    transition: border-color 0.3s;
}
.signup-fields input::placeholder { color: #888; }
.signup-fields input:focus { outline: none; border-color: #E87722; }
.signup-actions {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 12px; flex-wrap: wrap;
}
.signup-btn {
    padding: 10px 28px; font-size: 0.9rem;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    text-transform: uppercase; letter-spacing: 1px;
    border: none; cursor: pointer;
}
.signup-checkboxes {
    display: flex; gap: 18px; flex-wrap: wrap;
}
.signup-checkboxes label {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Arial', sans-serif; font-size: 0.82rem;
    color: rgba(255,255,255,0.85); cursor: pointer;
}
.signup-checkboxes input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: #E87722; cursor: pointer;
}
.signup-disclaimer {
    font-size: 0.75rem; color: rgba(255,255,255,0.55);
    line-height: 1.6; max-width: 900px; margin: 0 auto;
}
.signup-disclaimer a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.signup-disclaimer a:hover { color: #fff; }

@media (max-width: 768px) {
    .signup-fields { grid-template-columns: 1fr 1fr; }
    .signup-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .signup-fields { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
    background: #111; color: #999; padding: 40px 0;
    text-align: center; font-family: 'Arial', sans-serif;
}
.footer .logo-name { font-size: 1.2rem; }
.footer .logo-subtitle { display: block; margin-bottom: 12px; }
.footer-disclaimer { font-size: 0.8rem; color: #999; margin-top: 0; }
.footer-disclaimers-box {
    border: 1px solid #333; border-radius: 6px;
    padding: 14px 18px;
    display: inline-block; max-width: 600px;
    background: rgba(255,255,255,0.03);
    margin-top: 16px;
}

/* ============ PAGE-SPECIFIC ============ */

/* About Page */
.page-hero {
    position: relative; padding: 140px 0 60px;
    background-size: cover; background-position: center center;
    color: #fff; text-align: center;
}
.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(27,42,74,0.75) 0%, rgba(27,42,74,0.6) 100%);
}
.page-hero h1 {
    position: relative; z-index: 1;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.page-hero p {
    position: relative; z-index: 1;
    font-size: 1.15rem; opacity: 0.9; margin-top: 12px;
}
.content-section { padding: 60px 0; }
.content-section p { margin-bottom: 16px; font-size: 1.05rem; color: #444; }
.content-section h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem; color: #1B2A4A; margin: 40px 0 16px;
}
.content-section h2:first-child { margin-top: 0; }

/* About grid */
/* About Page */
.about-bio-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.about-sidebar img { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.about-main h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem; color: #1B2A4A; margin-bottom: 16px;
}
.about-main p { margin-bottom: 14px; font-size: 1.02rem; color: #444; }
.about-community-section { background: #fff; }
.about-community-grid {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 48px; align-items: center;
}
.about-community-text h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem; color: #1B2A4A; margin-bottom: 16px;
}
.about-community-text p { margin-bottom: 14px; font-size: 1.02rem; color: #444; }
.about-community-image img {
    width: 100%; border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-timeline-section .timeline {
    max-width: 700px; margin: 0 auto;
}

/* Timeline */
.timeline { margin: 32px 0; }
.timeline-item {
    display: flex; gap: 24px; margin-bottom: 28px;
    padding-bottom: 28px; border-bottom: 1px solid #e8e8e8;
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-year {
    font-family: 'Arial Black', sans-serif;
    color: #E87722; font-size: 1.1rem; min-width: 100px;
    padding-top: 2px;
}
.timeline-desc h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem; color: #1B2A4A; margin-bottom: 4px;
}
.timeline-desc p { font-size: 0.95rem; color: #555; margin-bottom: 0; }

/* Issues Page */
.issue-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
    margin-bottom: 60px; padding-bottom: 60px;
    border-bottom: 1px solid #e8e8e8;
}
.issue-block:last-child { border-bottom: none; }
.issue-block.reverse { direction: rtl; }
.issue-block.reverse > * { direction: ltr; }
.issue-block img { border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.issue-content h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem; color: #1B2A4A; margin-bottom: 16px;
}
.issue-content p { font-size: 1.02rem; color: #444; margin-bottom: 12px; }

/* Endorsements Page */
.endorsement-full {
    background: #fff; border-radius: 12px; padding: 36px;
    margin-bottom: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #E87722;
}
.endorsement-full blockquote {
    font-size: 1.05rem; font-style: italic; color: #444;
    margin-bottom: 16px; text-align: left; line-height: 1.7;
}
.endorsement-full cite {
    font-size: 0.95rem; color: #1B2A4A; font-weight: 700;
    letter-spacing: 0; text-transform: none;
}
.endorsement-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 40px;
}
.endorsement-card {
    background: #fff; border-radius: 10px; padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-top: 3px solid #E87722;
}
.endorsement-card strong {
    display: block; font-family: 'Arial', sans-serif;
    color: #1B2A4A; margin-bottom: 4px;
}
.endorsement-card span { font-size: 0.88rem; color: #777; }

/* Media Page */
.media-intro p {
    color: #444; font-size: 1rem; line-height: 1.7; max-width: 700px; margin: 0 auto;
}
.media-note {
    font-family: 'Arial', sans-serif; font-size: 0.85rem;
    color: #777; font-style: italic; margin-bottom: 8px;
}
.video-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; margin-top: 24px;
}
.video-placeholder {
    aspect-ratio: 16 / 9;
    background: #1B2A4A; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.photo-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 24px;
}
.photo-placeholder {
    aspect-ratio: 4 / 3;
    background: #ddd; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.placeholder-inner {
    text-align: center; padding: 20px;
}
.placeholder-icon {
    font-size: 2.5rem; color: #E87722; display: block; margin-bottom: 10px;
}
.video-placeholder .placeholder-inner p {
    color: #fff; font-family: 'Arial', sans-serif;
    font-size: 1rem; font-weight: 600; margin-bottom: 4px;
}
.video-placeholder .placeholder-note {
    color: rgba(255,255,255,0.5); font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
}
.photo-placeholder .placeholder-note {
    color: #666; font-size: 0.85rem;
    font-family: 'Arial', sans-serif; font-weight: 600;
}
.photo-card {
    border-radius: 8px; overflow: hidden;
    background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.photo-card:hover {
    transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.photo-card img {
    width: 100%; height: 220px; object-fit: cover; display: block;
}
.photo-caption {
    display: block; padding: 10px 12px;
    font-family: 'Arial', sans-serif; font-size: 0.82rem;
    font-weight: 600; color: #1B2A4A; text-align: center;
}
.photo-grid img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 8px; cursor: pointer;
    transition: transform 0.3s;
}
.photo-grid img:hover { transform: scale(1.03); }
@media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .photo-grid { grid-template-columns: 1fr; }
}

/* Contact Page */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem; color: #1B2A4A; margin-bottom: 16px;
}
.contact-info p { margin-bottom: 16px; color: #444; }
.contact-form label {
    display: block; font-family: 'Arial', sans-serif;
    font-size: 0.9rem; color: #1B2A4A; margin-bottom: 6px; font-weight: 600;
}
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 12px 16px; border: 2px solid #ddd;
    border-radius: 8px; font-size: 1rem; font-family: inherit;
    margin-bottom: 20px; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: #E87722;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.volunteer-options { margin: 20px 0; }
.volunteer-options label {
    display: flex; align-items: center; gap: 10px;
    font-weight: 400; margin-bottom: 10px; cursor: pointer;
}
.volunteer-options input[type="checkbox"] { width: auto; margin-bottom: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute;
        top: 70px; left: 0; right: 0;
        background: rgba(27, 42, 74, 0.98);
        flex-direction: column; padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 20px; }
    .hero { min-height: 70vh; }
    .intro-grid, .issue-block, .about-grid, .about-community-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .issue-block.reverse { direction: ltr; }
    .about-sidebar { text-align: center; }
    .about-sidebar img { max-width: 280px; margin: 0 auto; }
    .about-community-image { order: -1; text-align: center; }
    .about-community-image img { max-width: 360px; margin: 0 auto; }
    .timeline-item { flex-direction: column; gap: 8px; }
    .section { padding: 60px 0; }
    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .quote-section { background-attachment: scroll; }
    .contact-grid .donate-amounts { justify-content: center !important; }
    .military-stats { gap: 20px; flex-wrap: wrap; }
    .military-stat .stat-number { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; }
    .page-hero { padding: 100px 0 32px; }
    .page-hero p { font-size: 0.95rem; }
    .military-stat .stat-number { font-size: 1.2rem; }
    .military-stats { gap: 16px; }
    .endorsement-grid { grid-template-columns: 1fr; }
    .priorities-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ADDITIONS ============ */
.footer-dod {
    font-size: 0.75rem; color: #888; margin-top: 10px;
    font-style: italic; line-height: 1.5;
}
.footer-links {
    margin-top: 12px;
}
.footer-links a {
    font-size: 0.8rem; color: #888;
    text-decoration: underline; margin: 0 8px;
}
.footer-links a:hover { color: #E87722; }
.footer-built {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem; color: #555;
    letter-spacing: 0.5px;
}
.footer-built a {
    color: #888; text-decoration: none;
    transition: color 0.3s;
}
.footer-built a:hover { color: #E87722; }

/* ============ SMS OPT-IN ============ */
.sms-optin {
    margin-top: -12px; margin-bottom: 20px;
}
.optin-label {
    display: flex; align-items: flex-start; gap: 10px;
    font-weight: 400; font-size: 0.82rem; color: #666;
    line-height: 1.5; cursor: pointer;
}
.optin-label input[type="checkbox"] {
    width: auto; margin: 3px 0 0 0; flex-shrink: 0;
}
.optin-label a { color: #E87722; text-decoration: underline; }

/* ============ PRIVACY POLICY PAGE ============ */
.policy-content h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem; color: #1B2A4A;
    margin: 32px 0 12px; padding-top: 16px;
    border-top: 1px solid #e8e8e8;
}
.policy-content h2:first-of-type { border-top: none; padding-top: 0; }
.policy-content p { margin-bottom: 14px; font-size: 0.98rem; color: #444; line-height: 1.7; }

/* ============ COOKIE CONSENT BANNER ============ */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(27, 42, 74, 0.97);
    backdrop-filter: blur(8px);
    padding: 18px 24px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
#cookie-banner.cookie-banner-hidden {
    transform: translateY(100%); opacity: 0;
}
.cookie-banner-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.cookie-banner-inner p {
    color: #d0d0d0; font-family: 'Arial', sans-serif;
    font-size: 0.88rem; line-height: 1.5; margin: 0; flex: 1;
}
.cookie-banner-inner a { color: #E87722; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 24px; border: none; border-radius: 6px;
    font-family: 'Arial', sans-serif; font-size: 0.85rem;
    font-weight: 700; cursor: pointer; transition: all 0.3s;
    letter-spacing: 0.5px;
}
.cookie-btn-accept { background: #E87722; color: #fff; }
.cookie-btn-accept:hover { background: #c9631a; }
.cookie-btn-decline { background: transparent; color: #b0bec5; border: 1px solid #555; }
.cookie-btn-decline:hover { border-color: #b0bec5; color: #fff; }

/* ============ ACCESSIBILITY WIDGET ============ */
#a11y-toggle {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 9998;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #1B2A4A; color: #fff;
    border: 2px solid #E87722;
    font-family: 'Arial', sans-serif;
    font-size: 1rem; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
#a11y-toggle:hover { background: #E87722; color: #fff; }
#a11y-panel {
    position: fixed; bottom: 80px; right: 24px;
    z-index: 9998;
    background: #fff; border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    padding: 0; width: 200px;
    opacity: 0; pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}
#a11y-panel.a11y-panel-visible {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
.a11y-panel-header {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    color: #1B2A4A; padding: 14px 16px 10px;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.a11y-option {
    display: block; width: 100%;
    padding: 12px 16px; border: none; background: none;
    font-family: 'Arial', sans-serif; font-size: 0.9rem;
    color: #444; text-align: left; cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.a11y-option:hover { background: #f5f5f5; color: #E87722; }
.a11y-option:last-child { border-radius: 0 0 10px 10px; }

/* ============ HIGH CONTRAST MODE ============ */
body.high-contrast { background: #000; color: #fff; }
body.high-contrast .navbar { background: #000; }
body.high-contrast .section, body.high-contrast .content-section { background: #000; }
body.high-contrast .intro-section, body.high-contrast .endorsements-preview { background: #111; }
body.high-contrast .priority-card, body.high-contrast .endorsement-badge,
body.high-contrast .endorsement-card, body.high-contrast .endorsement-full {
    background: #111; color: #fff; border-color: #E87722;
}
body.high-contrast .priority-card h3, body.high-contrast .issue-content h2,
body.high-contrast .content-section h2, body.high-contrast .section-title,
body.high-contrast .contact-info h2 { color: #E87722; }
body.high-contrast .priority-card p, body.high-contrast .content-section p,
body.high-contrast .issue-content p, body.high-contrast .endorsement-full blockquote,
body.high-contrast .contact-info p { color: #ddd; }
body.high-contrast .endorsement-badge strong, body.high-contrast .endorsement-card strong,
body.high-contrast .endorsement-full cite { color: #fff; }
body.high-contrast .endorsement-badge span, body.high-contrast .endorsement-card span { color: #aaa; }
body.high-contrast .footer { background: #000; }
body.high-contrast .contact-form input, body.high-contrast .contact-form textarea,
body.high-contrast .contact-form select {
    background: #111; color: #fff; border-color: #555;
}
body.high-contrast .policy-content h2 { color: #E87722; border-color: #333; }
body.high-contrast .policy-content p { color: #ddd; }

/* ============ MILITARY SERVICE BANNER ============ */
.military-banner {
    background: #1B2A4A;
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.military-banner::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 6px; height: 100%;
    background: #E87722;
}
.military-banner-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.military-photo {
    flex-shrink: 0;
    width: 200px; height: 260px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.military-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.military-badge {
    flex-shrink: 0;
    width: 100px; height: 120px;
    border-radius: 12px;
    background: #E87722;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    text-align: center;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.military-badge svg {
    width: 40px; height: 40px;
}
.military-badge .badge-label {
    font-family: 'Arial Black', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.military-text h2 {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}
.military-text p {
    font-family: 'Georgia', serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #c0c8d4;
    margin-bottom: 8px;
}
.military-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px;
}
.military-stat {
    text-align: center;
}
.military-stat .stat-number {
    display: block;
    font-family: 'Arial Black', sans-serif;
    font-size: 1.8rem;
    color: #E87722;
    line-height: 1.1;
}
.military-stat .stat-label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7a8da6;
    margin-top: 4px;
}

/* Green accent details */
.timeline-item.military-item {
    border-left: 3px solid #E87722;
    padding-left: 20px;
    margin-left: 0;
}

/* Donate nav link */
.nav-links .nav-donate {
    background: #E87722;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 700;
}
.nav-links .nav-donate:hover {
    background: #c9631a;
}

@media (max-width: 768px) {
    .military-banner-inner { flex-direction: column; text-align: center; }
    .military-banner::before { width: 100%; height: 4px; }
    .military-stats { justify-content: center; }
    .military-photo { width: 160px; height: 210px; margin: 0 auto; }
    .military-badge { width: 80px; height: 100px; }
    .military-badge svg { width: 32px; height: 32px; }
    .military-badge .badge-label { font-size: 0.55rem; }
    .timeline-item.military-item { border-left: none; padding-left: 0; border-top: 3px solid #E87722; padding-top: 16px; }
}

@media (max-width: 768px) {
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
    #a11y-toggle { bottom: 16px; right: 16px; }
    #a11y-panel { bottom: 72px; right: 16px; }
}
