/* ==========================================================================
   Abolish the Brockport Village Court — "Vote YES on June 16"
   Civic Broadside: official public-notice typography, calm editorial flow,
   one bold lawn-sign moment. Brand system per the supplied brand kit.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand palette (verbatim from brand kit) */
    --navy: #213A63;
    --navy-deep: #15294A;
    --navy-ink: #0E1D36;
    --orange: #D8531F;
    --orange-deep: #AE3F14;
    --cream: #F1ECE1;
    --paper: #FAF7EF;
    --gold: #E8A12B;
    --white: #FFFFFF;

    /* Action color (AA-safe): white-on-it 5.96:1; small text on paper 5.57:1.
       Bright --orange is reserved for large type / fills / decoration. */
    --orange-ink: #AE3F14;

    /* Surfaces & hairlines */
    --card: #FFFFFF;
    --line: rgba(14, 29, 54, 0.12);      /* hairline on light */
    --line-strong: rgba(14, 29, 54, 0.20);
    --navy-line: rgba(241, 236, 225, 0.16); /* hairline on dark */

    /* Text tints */
    --ink-soft: rgba(14, 29, 54, 0.66);  /* AA on paper: 5.34 */
    --cream-soft: rgba(241, 236, 225, 0.90); /* AA on navy & navy-deep */

    /* Type */
    --display: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
    --cond: 'Oswald', 'Arial Narrow', sans-serif;
    --slab: 'Zilla Slab', Georgia, serif;
    --body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Spacing rhythm */
    --gutter: clamp(1.25rem, 5vw, 4rem);
    --section-y: clamp(3.25rem, 5.5vw, 5rem);
    --grid-gap: clamp(1.25rem, 2.5vw, 1.75rem);
    --card-pad: clamp(1.5rem, 3vw, 2.25rem);
    --radius: 6px;

    /* One restrained soft elevation, used sparingly */
    --lift: 0 14px 30px -18px rgba(14, 29, 54, 0.5);

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --nav-h: 80px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--navy-ink);
    line-height: 1.65;
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

strong {
    font-weight: 700;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/* --------------------------------------------------------------------------
   3. Helpers
   -------------------------------------------------------------------------- */
.wrap {
    width: min(1140px, 100% - (var(--gutter) * 2));
    margin-inline: auto;
}

.wrap--narrow {
    width: min(760px, 100% - (var(--gutter) * 2));
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 200;
    background: var(--orange-ink);
    color: var(--white);
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.7em 1.2em;
    border-radius: var(--radius);
    text-decoration: none;
    transition: top 0.2s var(--ease);
}

.skip-link:focus {
    top: 12px;
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    /* Cream inner ring fills the offset gap so the indicator keeps >=3:1 on the
       dark navy sections (orange alone is ~2.8:1 there); the orange outline
       carries contrast on light grounds. Outline is the non-clipping baseline. */
    box-shadow: 0 0 0 3px var(--cream);
    border-radius: 2px;
}

.dol {
    color: var(--orange);
    font-weight: inherit;
}

.ink-yes {
    color: var(--orange-ink);
}

/* Visually hidden, but available to assistive technology */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   4. Kickers & section titles
   -------------------------------------------------------------------------- */
.kicker {
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(0.76rem, 0.72rem + 0.2vw, 0.9rem);
    color: var(--orange-ink);
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 1.4rem;
}

.kicker--light {
    color: var(--gold);
}

.kicker .num {
    font-family: var(--display);
    font-size: 1.5em;
    line-height: 1;
    color: var(--navy);
    letter-spacing: 0;
    position: relative;
    top: 0.04em;
}

.kicker--light .num {
    color: var(--cream);
}

.section__title {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    font-size: clamp(1.85rem, 1.2rem + 2.8vw, 3.3rem);
    color: var(--navy);
    max-width: 18ch;
    margin-bottom: 1.4rem;
}

.section__title--light {
    color: var(--cream);
}

.lede {
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem);
    line-height: 1.6;
    max-width: 58ch;
    margin-bottom: 1.4rem;
    color: var(--ink-soft);
}

.lede strong {
    color: var(--navy-ink);
}

.lede--light {
    color: var(--cream-soft);
}

.lede--light strong {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   5. Inline links
   -------------------------------------------------------------------------- */
.ilink {
    color: var(--orange-ink);
    text-decoration: none;
    font-weight: 600;
    box-shadow: inset 0 -0.07em 0 rgba(174, 63, 20, 0.28);
    transition: box-shadow 0.2s var(--ease);
}

.ilink:hover {
    box-shadow: inset 0 -0.55em 0 rgba(174, 63, 20, 0.16);
}

.ilink--light {
    color: var(--gold);
    box-shadow: inset 0 -0.07em 0 rgba(232, 161, 43, 0.4);
    white-space: nowrap;
}

.ilink--light:hover {
    box-shadow: inset 0 -0.55em 0 rgba(232, 161, 43, 0.2);
}

/* --------------------------------------------------------------------------
   6. Buttons — the one place the hard "planted sign" offset stays
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease), background 0.2s var(--ease);
}

.btn--solid {
    background: var(--orange-ink);
    color: var(--white);
    border-color: var(--navy-deep);
    box-shadow: 3px 3px 0 var(--navy-deep);
}

.btn--solid:hover {
    background: var(--orange-deep);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--navy-deep);
}

.btn--solid:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--navy-deep);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(241, 236, 225, 0.5);
}

.btn--ghost:hover {
    background: rgba(241, 236, 225, 0.1);
    border-color: var(--cream);
}

/* a ghost button on light backgrounds */
.section--paper .btn--ghost,
.section--vote .btn--ghost {
    color: var(--navy);
    border-color: var(--line-strong);
}

.section--paper .btn--ghost:hover,
.section--vote .btn--ghost:hover {
    background: rgba(14, 29, 54, 0.04);
    border-color: var(--navy);
}

.btn--sm {
    font-size: 0.92rem;
    padding: 0.72em 1.3em;
}

.btn--lg {
    font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
    padding: 0.92em 1.7em;
}

.btn--xl {
    font-size: clamp(1.05rem, 1rem + 0.6vw, 1.4rem);
    padding: 1em 2.1em;
}

.cta-row {
    margin-top: clamp(2rem, 4vw, 2.6rem);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* In-section CTAs anchor to the content column (centered floats read as orphaned
   in the section's whitespace); the closing finale stays centered. */
.section .cta-row,
.cta-row--left {
    justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   7. Nav
   -------------------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(33, 58, 99, 0);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.nav.is-scrolled {
    background: rgba(21, 41, 74, 0.97);
    box-shadow: 0 1px 0 var(--navy-line), 0 10px 30px -16px rgba(14, 29, 54, 0.6);
    backdrop-filter: blur(8px);
}

.nav__inner {
    width: min(1140px, 100% - (var(--gutter) * 2));
    margin-inline: auto;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4em;
    text-decoration: none;
    font-family: var(--display);
    color: var(--cream);
    font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav__dol {
    color: var(--orange);
    font-size: 1.3em;
}

.nav__brandtext em {
    font-style: normal;
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.nav__links>a:not(.nav__cta) {
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.98rem;
    color: var(--cream);
    text-decoration: none;
    padding: 0.4em 0;
    position: relative;
    transition: color 0.2s var(--ease);
}

.nav__links>a:not(.nav__cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
}

.nav__links>a:not(.nav__cta):hover {
    color: var(--white);
}

.nav__links>a:not(.nav__cta):hover::after {
    transform: scaleX(1);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 52px;
    height: 52px;
    background: transparent;
    border: 2px solid rgba(241, 236, 225, 0.6);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0 11px;
}

.nav__toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav.is-open .nav__toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--cream);
    margin-top: calc(var(--nav-h) * -1);
    padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
    padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(115% 80% at 88% -10%, rgba(232, 161, 43, 0.12), transparent 55%),
        var(--navy);
}

.hero__ghost {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--display);
    font-size: clamp(20rem, 50vw, 44rem);
    line-height: 0.7;
    color: rgba(241, 236, 225, 0.03);
    user-select: none;
    pointer-events: none;
}

.hero__grid {
    width: min(1140px, 100% - (var(--gutter) * 2));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

/* Lawn-sign lockup — the single bold "planted sign" moment */
.sign {
    background: var(--navy-deep);
    border: 3px solid var(--cream);
    border-radius: 6px;
    padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3vw, 1.8rem);
    text-align: center;
    box-shadow: 8px 8px 0 var(--orange);
    position: relative;
    container-type: inline-size;
}

.sign::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1.5px solid rgba(241, 236, 225, 0.3);
    border-radius: 3px;
    pointer-events: none;
}

.sign__kicker {
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    font-size: clamp(0.8rem, 3.4cqi, 1.15rem);
    margin-bottom: 0.5rem;
}

.sign__yes {
    font-family: var(--display);
    color: var(--cream);
    line-height: 0.86;
    font-size: clamp(3.2rem, 19cqi, 6rem);
    letter-spacing: 0.01em;
}

.sign__abolish {
    font-family: var(--display);
    color: var(--cream);
    line-height: 0.9;
    font-size: clamp(1.7rem, 10cqi, 3.1rem);
    margin-top: 0.15em;
}

.sign__strip {
    margin-top: 0.9rem;
    padding-top: 0.7rem;
    border-top: 2.5px solid var(--orange);
    font-family: var(--slab);
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
    font-size: clamp(0.8rem, 3.4cqi, 1.1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    flex-wrap: wrap;
}

.hero__photo {
    margin-top: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
}

.hero__photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero__photo figcaption,
.vote__photo figcaption {
    font-family: var(--cond);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
    color: var(--cream-soft);
    padding: 0.8em 0.2em 0;
}

.hero__headline {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.004em;
    font-size: clamp(2.3rem, 1.3rem + 5vw, 4.4rem);
    color: var(--cream);
    margin: 0.4rem 0 1.2rem;
}

.hero__headline .hl {
    color: var(--gold);
    display: block;
}

.hero__sub {
    font-family: var(--cond);
    font-weight: 500;
    font-size: clamp(1.15rem, 1rem + 0.9vw, 1.6rem);
    color: var(--cream);
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
    max-width: 32ch;
}

.hero__sub strong {
    color: var(--gold);
    font-weight: 700;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.hero__lede {
    font-size: clamp(1rem, 0.96rem + 0.3vw, 1.12rem);
    color: var(--cream-soft);
    max-width: 54ch;
    line-height: 1.65;
}

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

/* CSS-driven hero entrance so the LCP text paints immediately and the hero
   is visible without JS (overrides the generic [data-reveal] hide). */
.hero [data-reveal] {
    opacity: 0;
    animation: heroIn 0.6s var(--ease) both;
}

.hero__headline { animation-delay: 0.04s; }
.hero .kicker--light { animation-delay: 0.12s; }
.hero__sub { animation-delay: 0.18s; }
.hero__cta { animation-delay: 0.26s; }
.hero__lede { animation-delay: 0.34s; }
.hero__photo { animation-delay: 0.42s; }

@keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   9. Section shells — light is the ground; dark is punctuation
   -------------------------------------------------------------------------- */
.section {
    padding-block: var(--section-y);
    position: relative;
}

.section--paper {
    background: var(--paper);
    color: var(--navy-ink);
}

.section--navy {
    background: var(--navy);
    color: var(--cream);
}

.section--deep {
    background: var(--navy-deep);
    color: var(--cream);
}

.section--vote {
    background: var(--cream);
    color: var(--navy-ink);
}

/* A tone change (light→dark) is its own divider. Same-tone seams have no such
   cue, so they used to blur together. Zero the section's own top padding and put
   a hairline + matching padding on the inner wrap instead: every boundary — tone
   change or same-tone seam — then resolves to the same rhythm, and the seam gets
   a clean editorial rule the reader can feel. */
:is(.section--paper, .section--vote) + :is(.section--paper, .section--vote) {
    padding-top: 0;
}

:is(.section--paper, .section--vote) + :is(.section--paper, .section--vote) > .wrap {
    border-top: 1px solid var(--line);
    padding-top: var(--section-y);
}

/* --------------------------------------------------------------------------
   10. The short version — quad cards
   -------------------------------------------------------------------------- */
.quad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.qcard {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--card-pad);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

/* Shared interactive lift for the linkable / standalone cards */
.qcard:hover,
.voterinfo__link:hover,
.fcard:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: var(--lift);
}

.qcard h3 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
    line-height: 1.04;
    color: var(--navy);
    margin-bottom: 0.7rem;
    max-width: 16ch;
}

.qcard h3::before {
    content: "$";
    color: var(--orange);
    margin-right: 0.3em;
}

.qcard p {
    color: var(--navy-ink);
    font-size: 1.0625rem;
    line-height: 1.62;
}

/* --------------------------------------------------------------------------
   11. The numbers — stats + ledger (on navy)
   -------------------------------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    margin: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.stat {
    border-top: 3px solid var(--orange);
    padding-top: 1rem;
}

.stat__num {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    line-height: 0.92;
    font-size: clamp(2.4rem, 1.4rem + 4vw, 4.2rem);
    color: var(--gold);
    letter-spacing: 0.005em;
}

.stat__num small {
    font-size: 0.32em;
    color: var(--cream-soft);
    letter-spacing: 0.04em;
    padding: 0 0.15em;
}

.stat__label {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.92rem;
    color: var(--cream-soft);
    max-width: 22ch;
}

.ledger {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 0;
    max-width: 68ch;
}

.ledger li {
    position: relative;
    padding-left: 2rem;
    color: var(--cream-soft);
}

.ledger li::before {
    content: "$";
    position: absolute;
    left: 0;
    top: -0.05em;
    font-family: var(--display);
    color: var(--orange);
    font-size: 1.2rem;
}

.ledger strong {
    color: var(--white);
}

.section--navy .lede:last-of-type {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. Where it goes — across the street
   -------------------------------------------------------------------------- */
.across {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.across__text p {
    color: var(--ink-soft);
}

.across__text p+p {
    margin-top: 1rem;
}

.across__text strong {
    color: var(--navy);
}

.across__map {
    display: grid;
    gap: 1rem;
    text-align: center;
    color: var(--navy);
}

.across__node {
    border: 1.5px dashed var(--line-strong);
    border-radius: var(--radius);
    padding: 1.4rem 1rem;
    background: var(--card);
}

.across__node--to {
    border: none;
    background: var(--navy);
    color: var(--cream);
}

.across__tag {
    display: block;
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange-ink);
    margin-bottom: 0.4rem;
}

.across__node--to .across__tag {
    color: var(--gold);
}

.across__node strong {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem);
    line-height: 1;
}

.across__arrow {
    color: var(--orange);
    display: grid;
    justify-items: center;
    gap: 0.3rem;
}

.across__arrow span {
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.across__arrow svg {
    width: 120px;
    max-width: 60%;
}

/* --------------------------------------------------------------------------
   13. Will not / Will (on light) — one navy emphasis card
   -------------------------------------------------------------------------- */
.willgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.will {
    border-radius: var(--radius);
    padding: var(--card-pad);
}

.will--not {
    background: var(--card);
    border: 1px solid var(--line);
}

.will--yes {
    background: var(--navy);
    color: var(--cream);
}

.will__head {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem);
    line-height: 1;
    margin-bottom: 1.4rem;
    color: var(--navy);
}

.will--yes .will__head {
    color: var(--cream);
}

.will__head span {
    color: var(--orange-ink);
}

.will--yes .will__head span {
    color: var(--gold);
}

.will ul {
    list-style: none;
    display: grid;
    gap: 1.1rem;
}

.will li {
    position: relative;
    padding-left: 2rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.will--yes li {
    color: var(--cream-soft);
}

.will li strong {
    color: var(--navy);
}

.will--yes li strong {
    color: var(--white);
}

.will li::before {
    position: absolute;
    left: 0;
    top: 0.05em;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
}

.will--not li::before {
    content: "\00D7";
    color: var(--line-strong);
}

.will--yes li::before {
    content: "\2713";
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   14. Myth vs fact
   -------------------------------------------------------------------------- */
.myths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.myth {
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: var(--card-pad);
}

.myth__tag {
    display: inline-block;
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.66rem;
    font-weight: 600;
    padding: 0.25em 0.6em;
    border-radius: 2px;
    margin-right: 0.5em;
    background: rgba(14, 29, 54, 0.07);
    color: var(--ink-soft);
    vertical-align: 0.12em;
}

.myth__tag--true {
    background: var(--orange-ink);
    color: var(--white);
}

.myth__claim {
    font-family: var(--slab);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.1rem, 1rem + 0.6vw, 1.3rem);
    color: var(--ink-soft);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.myth__fact {
    color: var(--navy-ink);
}

/* --------------------------------------------------------------------------
   15. Timeline + last one (on light)
   -------------------------------------------------------------------------- */
/* Timeline (chronology, stays single-column) sits beside the "last one" callout
   so the dense section fills its width instead of stranding a right-hand void. */
.why-now__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

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

.why-now__aside {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.why-now__aside .lede {
    margin: 0;
}

.tl {
    position: relative;
    padding: 0 0 1.8rem 2.2rem;
    border-left: 2px solid var(--line);
    margin-left: 6px;
}

.tl:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.tl::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0.2em;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--paper);
    border: 3px solid var(--navy);
}

.tl--final::before {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(216, 83, 31, 0.18);
}

.tl__date {
    display: block;
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    color: var(--orange-ink);
    margin-bottom: 0.2rem;
}

.tl--final .tl__date {
    font-size: 1.15rem;
}

.tl p {
    color: var(--ink-soft);
    max-width: 56ch;
}

.lastone {
    background: rgba(232, 161, 43, 0.1);
    border-left: 5px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--card-pad);
}

.lastone__head {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.2rem);
    line-height: 1;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.lastone p {
    color: var(--ink-soft);
    max-width: 68ch;
}

.lastone strong {
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   16. Fair questions
   -------------------------------------------------------------------------- */
.fairs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.fair {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--card-pad) var(--card-pad) var(--card-pad) clamp(3.4rem, 6vw, 4.5rem);
}

.fair::before {
    content: "?";
    position: absolute;
    left: clamp(1.1rem, 2.5vw, 1.6rem);
    top: clamp(1rem, 2.5vw, 1.6rem);
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--orange);
    line-height: 1;
}

.fair p {
    font-size: clamp(1.05rem, 1rem + 0.5vw, 1.22rem);
    color: var(--navy-ink);
}

.fair strong {
    color: var(--orange-ink);
}

/* --------------------------------------------------------------------------
   17. Endorsements (on deep)
   -------------------------------------------------------------------------- */
.endorse {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.ecard {
    background: rgba(241, 236, 225, 0.04);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius);
    padding: var(--card-pad);
    transition: border-color 0.2s var(--ease);
}

.ecard:hover {
    border-color: rgba(232, 161, 43, 0.45);
}

.ecard blockquote {
    font-family: var(--slab);
    font-weight: 700;
    font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem);
    line-height: 1.28;
    color: var(--cream);
    margin-bottom: 1.2rem;
    position: relative;
    padding-top: 1.7rem;
}

.ecard blockquote::before {
    content: "\201C";
    position: absolute;
    top: 0;
    left: -0.1rem;
    font-family: var(--slab);
    font-size: 3rem;
    line-height: 1;
    color: var(--orange);
}

.ecard__name {
    display: block;
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.ecard__role {
    display: block;
    font-size: 0.92rem;
    color: var(--cream-soft);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   18. How to vote (on cream)
   -------------------------------------------------------------------------- */
.vote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.vote__facts {
    display: grid;
    gap: 1.3rem;
    margin-bottom: 1.8rem;
}

.vote__facts>div {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.vote__facts dt {
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
    color: var(--orange-ink);
    margin-bottom: 0.3rem;
}

.vote__facts dd {
    font-size: clamp(1.05rem, 1rem + 0.5vw, 1.22rem);
    color: var(--navy-ink);
}

.vote__facts dd em {
    font-family: var(--slab);
    font-style: italic;
    font-weight: 600;
}

.vote__do {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
    color: var(--navy);
    line-height: 1;
}

.vote__do strong {
    color: var(--orange-ink);
    font-weight: 400;
}

/* sample ballot — a focal artifact, allowed one soft elevation */
.ballot {
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: var(--lift);
    font-family: var(--body);
}

.ballot__title {
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 1.05rem;
    color: var(--navy-ink);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--navy-ink);
}

.ballot__q {
    text-align: center;
    font-size: 1.02rem;
    color: var(--navy-ink);
    margin-bottom: 1.4rem;
}

.ballot__options {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.ballot__opt {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.1rem;
    color: var(--navy-ink);
}

.ballot__opt--yes {
    font-weight: 700;
}

.bubble {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--navy-ink);
    display: inline-block;
}

.bubble--filled {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: inset 0 0 0 3px var(--white);
}

.vote__photo {
    margin-top: 1.4rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.vote__photo figcaption {
    color: var(--ink-soft);
}

/* Official voter-information links */
.voterinfo {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--line);
}

.voterinfo__label {
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
    color: var(--orange-ink);
    margin-bottom: 1rem;
}

.voterinfo__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
}

.voterinfo__link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    padding: 1.1rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.voterinfo__src {
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.voterinfo__name {
    font-family: var(--cond);
    font-weight: 700;
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
    color: var(--navy);
}

.voterinfo__name::after,
.fcard__title::after {
    content: " \2197";
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   19. See the facts
   -------------------------------------------------------------------------- */
.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.fcard {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

.fcard__tag {
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange-ink);
}

.fcard__title {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.18rem;
    line-height: 1.04;
    color: var(--navy);
}

.fcard__title::after {
    font-family: var(--body);
}

.fcard__desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.fcard__sub {
    color: var(--navy);
    font-weight: 600;
}

.facts__opinion {
    margin-top: 1.8rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   20. FAQ (on light)
   -------------------------------------------------------------------------- */
.faq {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid var(--line);
}

.qa {
    border-bottom: 1px solid var(--line);
}

.qa summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 2.6rem 1.2rem 0;
    position: relative;
    font-family: var(--cond);
    font-weight: 600;
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
    color: var(--navy);
    transition: color 0.2s var(--ease);
}

.qa summary::-webkit-details-marker {
    display: none;
}

.qa summary:hover {
    color: var(--orange-ink);
}

.qa summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--orange-ink);
    transition: transform 0.25s var(--ease);
}

.qa[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.qa__body {
    overflow: hidden;
    padding: 0 2.6rem 1.4rem 0;
}

.qa__body p {
    color: var(--ink-soft);
    max-width: 70ch;
}

.qa[open] .qa__body {
    animation: qaOpen 0.3s var(--ease);
}

@keyframes qaOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   21. Closing (finale, on deep)
   -------------------------------------------------------------------------- */
.closing {
    position: relative;
    background: var(--navy-deep);
    color: var(--cream);
    text-align: center;
    padding-block: clamp(4.5rem, 11vw, 8.5rem);
    overflow: hidden;
    isolation: isolate;
}

.closing__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(85% 85% at 50% 120%, rgba(216, 83, 31, 0.22), transparent 60%),
        var(--navy-deep);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.closing__kick {
    justify-content: center;
}

.closing__head {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.02;
    font-size: clamp(1.9rem, 1.2rem + 3.4vw, 3.7rem);
    color: var(--cream);
    max-width: 20ch;
    margin: 0.5rem auto 1.3rem;
}

.closing__sub {
    font-size: clamp(1.05rem, 1rem + 0.5vw, 1.28rem);
    color: var(--cream-soft);
    margin-bottom: 2rem;
}

.closing__big {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2rem, 1.2rem + 4vw, 4.2rem);
    color: var(--cream);
    line-height: 1;
}

.closing__big .ink-yes {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.foot {
    background: var(--navy-ink);
    color: var(--cream-soft);
    padding-block: clamp(2.75rem, 6vw, 4rem);
    text-align: center;
}

.foot__inner {
    display: grid;
    gap: 1.2rem;
    justify-items: center;
}

.foot__sharelabel {
    display: block;
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.foot__btns {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.chip {
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    color: var(--cream);
    background: transparent;
    border: 1.5px solid rgba(241, 236, 225, 0.4);
    border-radius: 999px;
    padding: 0.55em 1.4em;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip:hover {
    background: var(--orange-ink);
    border-color: var(--orange-ink);
    color: var(--white);
}

.foot__copied {
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    color: var(--gold);
}

.foot__mark {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(1.4rem, 1rem + 2vw, 2.1rem);
    color: var(--cream);
    letter-spacing: 0.03em;
    margin-top: 0.6rem;
}

.foot__contact {
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.foot__contactlabel {
    font-family: var(--cond);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold);
}

/* Email reuses the nav link's left-origin underline-wipe so it reads as native. */
.foot__email {
    position: relative;
    font-family: var(--cond);
    font-weight: 600;
    font-size: clamp(1.02rem, 0.92rem + 0.55vw, 1.22rem);
    letter-spacing: 0.015em;
    color: var(--cream);
    text-decoration: none;
    padding-bottom: 3px;
    transition: color 0.2s var(--ease);
}

.foot__email::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
}

.foot__email:hover {
    color: var(--white);
}

.foot__email:hover::after {
    transform: scaleX(1);
}

.foot__disclaimer {
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
    color: var(--cream);
}

.foot__fine {
    font-size: 0.82rem;
    color: rgba(241, 236, 225, 0.55);
    max-width: 60ch;
}

.foot__top {
    display: inline-block;
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    color: var(--gold);
    text-decoration: none;
    margin-top: 0.4rem;
    padding: 0.4rem 0.3rem;
}

.foot__top:hover {
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   23. Scroll reveal
   -------------------------------------------------------------------------- */
/* Hero items animate via .hero [data-reveal] (higher specificity); these are
   the rest of the page, revealed on scroll. */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.hero [data-reveal] {
    transform: none;
    transition: none;
}

[data-reveal].is-in,
[data-reveal-group].is-in [data-reveal] {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__left {
        order: 2;
    }

    .hero__right {
        order: 1;
    }

    .across,
    .vote,
    .why-now__grid {
        grid-template-columns: 1fr;
    }

    .why-now__aside {
        position: static;
    }

    .across__map {
        max-width: 420px;
    }
}

@media (max-width: 760px) {
    .nav {
        background: rgba(21, 41, 74, 0.97);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--navy-deep);
        border-top: 2px solid var(--orange);
        padding: 0.5rem var(--gutter) 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.3s var(--ease);
        box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.7);
        max-height: calc(100dvh - var(--nav-h));
        overflow-y: auto;
    }

    .nav.is-open .nav__links {
        transform: translateY(0);
    }

    .nav__links>a:not(.nav__cta) {
        padding: 0.95rem 0;
        border-bottom: 1px solid var(--navy-line);
        font-size: 1rem;
    }

    .nav__links>a:not(.nav__cta)::after {
        display: none;
    }

    .nav__cta {
        margin-top: 1rem;
        width: 100%;
    }

    .quad,
    .myths,
    .endorse,
    .willgrid,
    .facts,
    .fairs,
    .voterinfo__links {
        grid-template-columns: 1fr;
    }

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

    .cta-row .btn {
        width: 100%;
    }

    .hero__cta .btn {
        flex: 1 1 auto;
    }
}

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

    .ballot__options {
        gap: 1.6rem;
    }
}

/* --------------------------------------------------------------------------
   25. Reduced motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media print {

    .nav,
    .foot__btns,
    .foot__top,
    .hero__ghost,
    .closing__bg {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
