:root {
    --green: #008f45;
    --green-dark: #006934;
    --green-soft: #eaf5ee;
    --ink: #102018;
    --muted: #58645d;
    --line: #d8dfda;
    --paper: #ffffff;
    --off-white: #f7f9f7;
    --max: 1180px;
    --radius: 18px;
    --shadow: 0 20px 55px rgba(13, 42, 25, .12);
}

.greentext{
	color:var(--green);
}

.supporter-section {
    width: 100%;
    padding: 72px 0;
    background: #fff;
}

.supporter-inner {
    width: min(calc(100% - 44px), 1180px);
    margin: 0 auto;
}

.supporter-headline {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.supporter-button-wrap {
    display: flex;
    justify-content: center;
    margin: 28px 0 42px;
}

.supporter-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

.supporter-button:hover,
.supporter-button:focus-visible {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.supporter-name-list {
    columns: 3;
    column-gap: 55px;
    font-size: .95rem;
    line-height: 1.32;
    font-weight: 400;
}

.supporter-name-list p {
    margin: 0 0 4px;
    break-inside: avoid;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
    position: fixed;
    left: 14px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    background: #111;
}
.skip-link:focus { transform: translateY(0); }

.container {
    width: min(calc(100% - 44px), var(--max));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: 0 7px 25px rgba(0,0,0,.08);
    border-color: var(--line);
}
.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}
.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.brand-image {
    display: block;
    width: min(360px, 44vw);
    height: auto;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--green); }
.nav-toggle { display: none; }

.hero {
    min-height: 92vh;
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
}
.hero::before,
.photo-break::before {
    content: "";
    position: absolute;
    inset: -11%;
    z-index: -3;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
    will-change: transform;
}
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(2,27,13,.78) 0%, rgba(2,27,13,.58) 46%, rgba(2,27,13,.38) 100%),
        linear-gradient(0deg, rgba(0,0,0,.36), transparent 55%);
}
.hero-layout {
    padding-top: 120px;
    padding-bottom: 86px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: end;
}
.hero-title-block {
    border-left: 6px solid #fff;
    padding-left: 26px;
}
.hero-title-image-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-title-image {
    width: min(100%, 760px);
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.18));
}
.hero-subtitle {
    margin: 20px 0 0;
    font-size: clamp(0.5rem, 2vw, 1.32rem);
    font-weight: 700;
}
p.hero-subtitle2 {
    margin: 20px 0 0;
    font-size: 20px;
    font-weight: 700;
}

.hero-subtitle-large {
    margin: 20px 0 0;
    font-size: clamp(1.25rem, 2vw, 1.32rem);
    font-weight: 700;
} 
.hero-statement {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}
.hero-statement p {
    margin: 0 0 20px;
    font-size: clamp(1.45rem, 3.1vw, 2.7rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.035em;
}
.hero-link {
    display: inline-block;
    color: #fff;
    font-weight: 800;
    text-underline-offset: 4px;
}
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
}

.section { padding: 72px 0; }
.kicker {
    margin: 0 0 12px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 900;
}
h2 {
    margin: 0;
    font-size: clamp(2.15rem, 4.2vw, 3.9rem);
    line-height: .98;
    letter-spacing: -.055em;
}
.display-heading {
    max-width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.about-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 46px;
    align-items: start;
}
.about-copy {
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}
.about-copy p { margin: 0 0 25px; }
.intro-copy {
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.27;
}
.text-link {
    color: var(--green-dark);
    font-weight: 800;
    text-underline-offset: 4px;
}
.fact-box {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
}
.fact-box h3 {
    margin: 0;
    padding: 22px 26px;
    background: #00903d;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
}
.fact-box dl { margin: 0; padding: 12px 26px 22px; }
.fact-box dl > div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.fact-box dl > div:last-child { border-bottom: 0; }
.fact-box dt {
    margin-bottom: 4px;
    color: var(--green-dark);
    font-weight: 900;
}
.fact-box dd { margin: 0; color: var(--muted); }

.green-headline {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 24px 0;
}
.green-headline p {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.055em;
}
.changes-section { background: #fff; }
.full-intro {
    max-width: 1050px;
    margin-bottom: 36px;
}
.full-intro h2 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    line-height: 1.04;
}
.full-intro p {
    margin: 16px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--muted);
}
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
.info-column {
    position: relative;
    padding: 32px 28px 36px;
    min-height: 390px;
    border-right: 1px solid var(--line);
}
.info-column:first-child { padding-left: 0; }
.info-column:last-child { border-right: 0; padding-right: 0; }
.number {
    display: block;
    color: var(--green);
    font-size: .82rem;
    letter-spacing: .14em;
    font-weight: 900;
}
.info-column h3 {
    margin: 16px 0 24px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.15;
}
.info-column p {
    margin: 0;
    color: #242b27;
    font-size: 1.04rem;
}
.source-strip {
    margin-top: 30px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    color: var(--muted);
    font-size: .9rem;
}
.source-strip span {
    color: var(--green-dark);
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
}
.source-strip a { font-weight: 700; text-underline-offset: 3px; }

.photo-break {
    min-height: 58vh;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.photo-break::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(0deg, rgba(0,0,0,.44), rgba(0,0,0,.08));
}
.quote-panel {
    width: min(calc(100% - 44px), 820px);
    padding: 38px 44px;
    background: rgba(5, 29, 15, .66);
    backdrop-filter: blur(9px);
    color: #fff;
    text-align: center;
}
.quote-panel p {
    margin: 0;
   font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.04em;
}
.quote-panel-wide { width: min(calc(100% - 44px), 920px); }
.photo-break-open-space { min-height: 63vh; }


.voter-section { background: #fff; }
.voter-heading { margin-bottom: 40px; }
.voter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.voter-card {
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--off-white);
}
.voter-date {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--green);
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.045em;
}
.voter-card h3 {
    margin: 0 0 13px;
    font-size: 1.35rem;
}
.voter-card p { margin: 0; color: var(--muted); }
.voter-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 18px;
    border: 2px solid var(--green);
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}
.button:hover { background: var(--green-dark); border-color: var(--green-dark); }

a.button:hover { color: #ffffff; }

.button-outline {
    background: #fff;
    color: var(--green-dark);
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #101712;
    color: #fff;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
}
.footer-grid p {
    margin: 5px 0 0;
    color: #b9c1bb;
    font-size: .88rem;
}
.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #fff;
    font-size: .86rem;
    text-underline-offset: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
        padding: 9px 12px;
        border: 1px solid currentColor;
        border-radius: 7px;
        background: transparent;
        color: #fff;
        font: inherit;
        font-weight: 800;
    }
    .scrolled .nav-toggle { color: var(--ink); }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 22px;
        right: 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(255,255,255,.99);
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav a,
    .scrolled .site-nav a { color: var(--ink); padding: 12px 10px; }
    .hero-layout { grid-template-columns: 1fr; gap: 34px; }
    .hero-statement { max-width: 680px; }
    .about-grid { grid-template-columns: 1fr; gap: 38px; }
    .fact-box { max-width: 680px; }
    .section-heading-row { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 30px), var(--max)); }
    .section { padding: 56px 0; }
    .hero { min-height: 100svh; }
    .hero-layout { padding-top: 118px; padding-bottom: 86px; }
    .hero-title-block { border-left-width: 4px; padding-left: 18px; }
    .hero-statement { padding: 24px; }
    .three-col-grid { grid-template-columns: 1fr; }
    .info-column,
    .info-column:first-child,
    .info-column:last-child {
        min-height: auto;
        padding: 32px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .info-column:last-child { border-bottom: 0; }
    .source-strip { align-items: flex-start; flex-direction: column; gap: 3px; }
    .photo-break,
    .photo-break-open-space { min-height: 48vh; }
    .quote-panel { width: calc(100% - 30px); padding: 28px 22px; }
    .voter-grid { grid-template-columns: 1fr; }
    .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .hero::before,
    .photo-break::before { transform: none !important; }
    .reveal { opacity: 1; transform: none; }
}


@media (max-width: 960px) {
    .brand-image {
        width: min(290px, 58vw);
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }
    .hero-title-image {
        width: min(100%, 620px);
    }
}

@media (max-width: 720px) {
    .nav-wrap {
        gap: 16px;
    }
    .brand-image {
        width: min(230px, 62vw);
    }
    .hero-title-block {
        border-left-width: 4px;
        padding-left: 16px;
    }
    .hero-statement {
        padding: 24px;
    }
    .hero-statement p {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }
}


@media (max-width: 900px) {
    .supporter-name-list {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .supporter-section {
        padding: 56px 0;
    }

    .supporter-headline {
        font-size: 48px;
    }

    .supporter-button-wrap {
        margin: 24px 0 34px;
    }

    .supporter-name-list {
        columns: 1;
    }
}
