* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #17213a;
}

.site-header {
    background-color: #102957;
    border-bottom: 5px solid #c62828;
}

.nav-container {
    width: min(1200px, 92%);
    min-height: 90px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.campaign-name {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

.campaign-name span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    letter-spacing: 1px;
}

.campaign-name small {
    display: block;
    margin-top: 4px;
    color: #ef3f3f;
    font-size: 0.82rem;
    letter-spacing: 1.4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    padding: 34px 0 28px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ff4a4a;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;

    height: 3px;
    background-color: #ff3434;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background-color: #f7f4ec;
}

.hero-waves {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-container {
    position: relative;
    z-index: 2;

    width: min(1200px, 92%);
    min-height: 620px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
}

.hero-copy {
    padding: 125px 0 90px;
    color: #ffffff;
}

.hero-eyebrow {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 7vw, 6.8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.hero-copy h1 span {
    display: block;
    margin-top: 12px;
    font-size: 0.72em;
}

.hero-office {
    margin: 28px 0 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-intro {
    max-width: 600px;
    margin: 24px 0 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 4px;

    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background-color: #d62828;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.button-primary:hover {
    background-color: #b91f1f;
}

.button-secondary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #102957;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.button-secondary:hover {
    background-color: #ececec;
    color: #102957;
}

.hero-photo-area {
    position: relative;
    align-self: end;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.hero-photo-area::before {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.12) 48%,
        rgba(255, 255, 255, 0) 72%
    );

    filter: blur(10px);
    pointer-events: none;
}

.hero-photo {
    position: relative;
    z-index: 1;

    display: block;
    width: 640px;              /* was 560px */
    max-width: 640px;
    max-height: none;          /* remove the height restriction */

    object-fit: contain;
    object-position: center bottom;

    transform: translate(20px, 25px);   /* let him overlap the bottom */

    filter:
        drop-shadow(0 4px 5px rgba(255,255,255,.18))
        drop-shadow(0 15px 22px rgba(0,0,0,.55));
}

/* ===========================
   ENDORSEMENTS
=========================== */

.endorsements-section {
    padding: 90px 0;
    background: #1f2b5c;
}

.endorsements-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    text-align: center;
}

.endorsements-container h2 {
    margin: 10px 0 18px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    color: white;
}

.endorsements-intro {
    max-width: 760px;
    margin: 0 auto 55px;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
}

.endorsement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.endorsement-card {
    background: white;
    padding: 35px;
    border-top: 5px solid #d62828;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    text-align: left;
}

.endorsement-title {
    margin: 0 0 18px;
    font-size: .85rem;
    font-weight: 700;
    color: #d62828;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.endorsement-card blockquote {
    margin: 0;
    color: #303747;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: normal;
    white-space: normal;
}

.endorsement-name {
    margin-top: 36px;
    padding-left: 18px;

    text-indent: -18px;

    font-weight: 700;
    color: #102957;
}

.endorsement-name::before {
    content: "— ";
}

.endorsement-name span {
    display: block;
    margin-top: 4px;

    padding-left: 18px;

    font-weight: 400;
    color: #666;
    font-size: 0.95rem;
}

.site-footer {
    background-color: #102957;
    color: #ffffff;
}

.footer-grid {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 48px 0 36px;

    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 60px;
}

.footer-brand h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.footer-brand p {
    margin: 8px 0 0;
    color: #ff4a4a;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h3,
.footer-contact h3 {
    margin: 0 0 14px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-links a {
    margin-bottom: 7px;
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff4a4a;
}

.footer-contact p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    margin: 4px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a,
.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-bottom a:hover {
    color: #d62828;
    text-decoration: underline;
}

/* ===========================
   INNER PAGE HERO
=========================== */

.page-hero {
    padding: 80px 0;
    background-color: #102957;
    color: #ffffff;
    text-align: center;
}

.page-hero-container {
    width: min(900px, 92%);
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.page-hero p:last-child {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.7;
}


/* ===========================
   BIO PAGE
=========================== */

.bio-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.bio-layout {
    width: min(1100px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.bio-photo-card {
    padding: 24px;
    border-radius: 10px;
    background-color: #f5f2eb;
    box-shadow: 0 8px 24px rgba(16, 41, 87, 0.08);
}

.bio-photo-card img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.bio-copy h2 {
    margin: 0 0 24px;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.bio-copy p {
    margin: 0 0 20px;
    color: #303747;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ===========================
   EXPERIENCE
=========================== */

.experience-section {
    padding: 76px 0;
    background-color: #f5f2eb;
}

.experience-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.experience-card {
    display: flex;
    flex-direction: column;

    padding: 34px;
    border-top: 5px solid #d62828;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 41, 87, 0.08);

    height: 100%;
}

.experience-card h3 {
    margin: 0 0 14px;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.experience-card p {
    margin: 0;
    color: #303747;
    line-height: 1.7;
}

.bio-list {
    margin: 0;
    padding-left: 18px;
    color: #303747;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bio-list li {
    margin-bottom: 8px;
}

.bio-list li:last-child {
    margin-bottom: 0;
}

/* ===========================
   VISION
=========================== */

.vision-section {
    padding: 64px 0;
    background-color: #102957;
    color: #ffffff;
}

.vision-container {
    width: min(1100px, 92%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.vision-container h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.vision-container p {
    max-width: 750px;
    margin: 0;
    line-height: 1.75;
}

/* ===========================
   GALLERY PAGE
=========================== */

.gallery-section {
    padding: 76px 0;
    background-color: #ffffff;
}

.gallery-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ---------- Gallery Cards ---------- */

.gallery-card {
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 41, 87, 0.10);
    display: flex;
    flex-direction: column;
}

.gallery-card:first-child {
    border-top: 5px solid #d62828;
}

/* ---------- Photos ---------- */

.gallery-photo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}

.gallery-placeholder {
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #e9e6df;
    color: #102957;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Card Content ---------- */

.gallery-card-copy {
    padding: 28px;
    flex: 1;
}

.gallery-card-copy h3 {
    margin: 0 0 18px;
    padding-bottom: 14px;

    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.2;

    border-bottom: 1px solid #e5e5e5;
}

.gallery-card-copy p {
    margin: 0;
    color: #303747;
    font-size: 1rem;
    line-height: 1.75;
}

.gallery-card-copy p + p {
    margin-top: 14px;
}

/* ---------- Callout ---------- */

.gallery-callout {
    padding: 64px 0;
    background-color: #f5f2eb;
}

.gallery-callout-container {
    width: min(1100px, 92%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.gallery-callout h2 {
    margin: 0 0 14px;

    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.gallery-callout p:last-child {
    max-width: 700px;
    margin: 0;

    color: #303747;
    line-height: 1.7;
}

/* ===========================
   DONATE PAGE
=========================== */

.donation-options-section {
    padding: 76px 0;
    background-color: #ffffff;
}

.donation-options-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.donation-options-intro {
    max-width: 700px;
    margin: 14px auto 0;
    color: #303747;
    line-height: 1.7;
}

.donation-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 42px;
    align-items: stretch;
}

.payment-card {
    padding: 40px 34px;
    border-top: 6px solid #d62828;
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 41, 87, 0.12);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-label {
    margin: 0 0 10px;
    color: #d62828;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.payment-card h3 {
    margin: 0 0 16px;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.payment-description {
    max-width: 430px;
    margin: 0 auto 26px;
    color: #303747;
    line-height: 1.7;
}

.venmo-qr {
    width: min(290px, 100%);
    margin: 0 auto 18px;
    padding: 14px;
    border: 1px solid #d8dce5;
    border-radius: 10px;
    background-color: #ffffff;
}

.venmo-qr img {
    display: block;
    width: 100%;
    height: auto;
}

.payment-account {
    margin: 0 0 24px;
    color: #102957;
    font-size: 1.05rem;
}

.square-payment-mark {
    width: min(290px, 100%);
    min-height: 290px;
    margin: 0 auto 28px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8dce5;
    border-radius: 10px;
    background-color: #f5f2eb;
}

.square-icon {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 24px;
    border-radius: 24px;
    background-color: #111111;
}

.square-icon::after {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 9px;
    background-color: #ffffff;
}

.square-logo-image {
    display: block;
    width: 95px;
    max-width: 70%;
    height: auto;
    margin-bottom: 24px;
}

.payment-card .button {
    margin-top: auto;
}

.donation-thanks {
    max-width: 760px;
    margin: 38px auto 0;
    color: #303747;
    text-align: center;
    line-height: 1.7;
}

.donation-use-section {
    padding: 76px 0;
    background-color: #f5f2eb;
}

.donation-use-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.donation-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.donation-use-card {
    padding: 30px;
    border-top: 5px solid #d62828;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 41, 87, 0.08);
}

.donation-use-card h3 {
    margin: 0 0 14px;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.donation-use-card p {
    margin: 0;
    color: #303747;
    line-height: 1.7;
}

.donate-thank-you {
    padding: 64px 0;
    background-color: #102957;
    color: #ffffff;
}

.donate-thank-you-container {
    width: min(1100px, 92%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.donate-thank-you h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.donate-thank-you p:last-child {
    max-width: 720px;
    margin: 0;
    line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-layout {
    width: min(1100px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.contact-copy h2 {
    margin: 0 0 20px;
    color: #102957;
    font-family: Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
}

.contact-copy>p {
    color: #303747;
    line-height: 1.8;
}

.direct-contact {
    margin-top: 40px;
    padding: 28px;

    border-left: 5px solid #d62828;

    background: #f5f2eb;
}

.direct-contact h3 {
    margin-bottom: 8px;
    color: #102957;
}

.direct-contact h3:not(:first-child) {
    margin-top: 22px;
}

.direct-contact a {
    color: #102957;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact a:hover {
    color: #d62828;
}

.contact-form {
    padding: 40px;
    border-top: 6px solid #d62828;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(16, 41, 87, .10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #102957;
    font-weight: 700;
}

.form-field span {
    color: #666;
    font-size: .8rem;
}

.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    padding: 14px;

    border: 1px solid #b9bec9;

    border-radius: 5px;

    font: inherit;

}

.form-field textarea {

    resize: vertical;

}

.form-submit {

    border: none;

    cursor: pointer;

}

.involved-section{

    padding:70px 0;

    background:#102957;

    color:white;

}

.involved-container{

    width:min(1100px,92%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.involved-container h2{

    margin:0 0 15px;

    font-family:Georgia,serif;

    font-size:3rem;

}

.involved-container p:last-child{

    max-width:650px;

    line-height:1.7;

}

@media (max-width: 800px) {
    .nav-container {
        padding: 20px 0;
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    .main-nav a {
        padding: 5px 0 10px;
    }

    .main-nav a.active::after {
        bottom: 2px;
    }
        .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        padding: 95px 0 25px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-copy h1 span {
        font-size: 0.56em;
    }

    .hero-intro {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-photo-area {
        align-self: auto;
    }

    .hero-photo {
    width: min(340px, 108%);
    max-height: 420px;
    margin-bottom: 35px;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.55));
    }

    .why-reasons {
        grid-template-columns: 1fr;
    }

    .reason-card {
        min-height: auto;
    }

    .home-actions-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bio-layout {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .vision-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-callout-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-options-grid {
        grid-template-columns: 1fr;
    }

    .donation-use-grid {
        grid-template-columns: 1fr;
    }

    .donate-thank-you-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-card {
        padding: 34px 24px;
    }

    .square-payment-mark {
        min-height: 240px;
    }

    .qr-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px dashed #b9bfcb;
    border-radius: 10px;
    background-color: #f5f2eb;
    color: #102957;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

    .contact-info{
    grid-template-columns:1fr;
}

.involved-container{
    flex-direction:column;
    align-items:flex-start;
}

.contact-layout{
    grid-template-columns:1fr;
}

.form-row{
    grid-template-columns:1fr;
    gap:0;
}

.contact-form{
    padding:30px 24px;
}

.endorsements-section {
    padding: 90px 0;
    background: #1f2b5c;
}

}
/* ===========================
   WHY I'M RUNNING
=========================== */

.why-home {
    padding: 72px 0;
    background-color: #ffffff;
}

.why-home-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.why-home-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 10px;
    color: #d62828;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.why-home-heading h2 {
    margin: 0;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.why-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.reason-card {
    position: relative;
    min-height: 330px;
    padding: 36px 30px 32px;
    border: 1px solid #d8dce5;
    border-top: 6px solid #d62828;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 41, 87, 0.08);
}

.reason-number {
    display: block;
    margin-bottom: 16px;
    color: rgba(16, 41, 87, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.reason-card h3 {
    margin: 0 0 16px;
    color: #102957;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.reason-card p {
    margin: 0;
    color: #303747;
    font-size: 1rem;
    line-height: 1.7;
}

.why-home-action {
    margin-top: 34px;
    text-align: center;
}

.home-actions {
    padding: 46px 0 52px;
    background-color: #f5f2eb;
}

.home-actions-grid {
    width: min(900px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.visitor-card {
    padding: 34px 28px;
    border: 1px solid #d8dce5;
    border-radius: 8px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 41, 87, 0.08);
}

.visitor-card h2,
.involved-card h2 {
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.visitor-card h2 {
    color: #102957;
}

.live-counter {
    margin: 18px auto;
    text-align: center;
}

.live-counter a {
    display: block;
    margin-top: 8px;
    color: #666666;
    font-size: 0.72rem;
    text-decoration: none;
}

.live-counter img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.counter-display {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 24px 0 18px;
}

.counter-display span {
    min-width: 36px;
    padding: 8px 5px;
    border-radius: 4px;
    background-color: #222222;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
}

.visitor-card p {
    margin: 0;
    color: #303747;
    line-height: 1.5;
}

.involved-card {
    padding: 34px 28px;
    border-radius: 8px;
    background-color: #102957;
    color: #ffffff;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.involved-card h2 {
    color: #ffffff;
}

.involved-card p {
    margin: 0 0 22px;
    line-height: 1.55;
}

/* ===========================
   MOBILE HOMEPAGE CLEANUP
=========================== */

@media (max-width: 800px) {

    /* ---------- Header ---------- */

    .site-header {
        position: relative;
    }

    .nav-container {
        min-height: auto;
        padding: 18px 0 14px;
        flex-direction: column;
        gap: 14px;
    }

    .campaign-name {
        text-align: center;
    }

    .main-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .main-nav a {
        font-size: 0.78rem;
    }


    /* ---------- Homepage Hero ---------- */

    .hero {
        width: 100%;
        min-height: auto;
        overflow: hidden;

        background-color: #1f2b5c;
        border-top: 14px solid #c7362f;
        border-bottom: 14px solid #c7362f;
    }

    /* Remove decorative river only on mobile */
    .hero-waves {
        display: none;
    }

    .hero-container {
        width: min(92%, 520px);
        min-height: auto;

        margin: 0 auto;
        padding: 52px 0;

        display: block;

        text-align: center;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;

        margin: 0 auto;
        padding: 0;

        text-align: center;
    }

    .hero-eyebrow {
        margin: 0 0 12px;
        text-align: center;
    }

    .hero-copy h1 {
        width: 100%;
        margin: 0 auto;

        font-size: clamp(3rem, 13vw, 4rem);
        line-height: 0.92;

        text-align: center;
    }

    .hero-copy h1 span {
        display: block;
        margin-top: 8px;

        font-size: 0.58em;
        line-height: 1;

        white-space: nowrap;
    }

    .hero-office {
        width: 100%;
        margin: 24px auto 16px;

        font-size: clamp(1.1rem, 5vw, 1.45rem);
        line-height: 1.3;

        text-align: center;
    }

    .hero-intro {
        width: 100%;
        max-width: 390px;

        margin: 0 auto;

        font-size: 1rem;
        line-height: 1.65;

        text-align: center;
    }

    .hero-buttons {
        width: 100%;

        margin: 28px auto 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .button {
        width: min(300px, 100%);
        margin: 0 auto;

        text-align: center;
    }

    /* Hide Denny's hero photo on phones */
    .hero-photo-area {
        display: none;
    }


    /* ---------- Why I'm Running ---------- */

    .why-home {
        padding: 64px 0;
    }

    .why-home-container {
        width: min(92%, 520px);
        margin: 0 auto;
    }

    .why-home-heading h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    .why-reasons {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reason-card {
        min-height: auto;
        padding: 28px;
    }

    .why-home-action .button {
        width: min(320px, 100%);
        text-align: center;
    }


    /* ---------- Visitor / Get Involved ---------- */

    .home-actions {
        padding: 55px 0;
    }

    .home-actions-grid {
        width: min(92%, 520px);

        margin: 0 auto;

        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visitor-card,
    .involved-card {
        min-height: auto;
        padding: 32px 24px;
    }


    /* ---------- Endorsements ---------- */

    .endorsements-section {
        padding: 65px 0;
    }

    .endorsements-container {
        width: min(92%, 520px);
        margin: 0 auto;
    }

    .endorsements-container h2 {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
        line-height: 1.05;
    }

    .endorsement-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .endorsement-card {
        padding: 30px 24px;
    }


    /* ---------- Footer ---------- */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

