:root {
    --red: #ff2a3a;
    --red-dark: #d90023;
    --white: #fff;
    --off-white: #fff8f7;
    --ink: #191516;
    --muted: #675f61;
    --border: #191516;

    --font-heading:
        "DM Sans", "Arial Black", "Helvetica Neue", Arial, sans-serif;

    --font-body: "Inter", "DM Sans", "Helvetica Neue", Arial, sans-serif;

    --page-width: 80rem;
    --page-gutter: clamp(1.25rem, 4vw, 4rem);
    --section-space: clamp(4rem, 9vw, 8rem);
    --border-width: 3px;
    --shadow-offset: 0.55rem;
}

/* ---------- Reset ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
    line-height: 1.65;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

:focus-visible {
    outline: 4px solid var(--ink);
    outline-offset: 4px;
}

/* ---------- Typography ---------- */

h1,
h2,
h3 {
    margin: 0;
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 0.96;
    /* letter-spacing: -0.045em; */
}

h1 {
    max-width: 11ch;
    color: var(--white);
    font-size: clamp(3.75rem, 11vw, 9.5rem);
    text-transform: uppercase;
}

h2 {
    max-width: 17ch;
    font-size: clamp(2.5rem, 6vw, 5.75rem);
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

p {
    margin-block: 0 1.25em;
}

p:last-child {
    margin-bottom: 0;
}

.eyebrow {
    margin-bottom: 1rem;
    color: currentColor;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ---------- Shared layout ---------- */

.content-section,
.contrast-section,
.quote-section,
.vote-section,
.statement {
    padding: var(--section-space) var(--page-gutter);
}

.content-section > *,
.contrast-section > *,
.quote-section > *,
.vote-section > *,
.statement > * {
    width: min(100%, var(--page-width));
    margin-inline: auto;
}

.section-heading {
    display: grid;
    gap: 0.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading--light {
    color: var(--white);
}

.section-heading--light h2 {
    color: var(--white);
}

/* ---------- Accessibility ---------- */

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--ink);
    font-weight: 800;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ---------- Header ---------- */

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 5.5rem;
    padding: 1rem var(--page-gutter);
    border-bottom: var(--border-width) solid var(--ink);
    background: var(--white);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-right: auto;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.site-logo__mark {
    display: grid;
    width: 2.25rem;
    aspect-ratio: 1;
    place-items: center;
    color: var(--white);
    background: var(--red);
    font-size: 1.35rem;
    transform: rotate(-4deg);
}

.site-logo__text {
    letter-spacing: -0.03em;
}

.site-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a,
.site-footer nav a {
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.3em;
}

.site-nav a:not(:hover) {
    text-decoration: none;
}

/* ---------- Buttons and links ---------- */

.button {
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border: var(--border-width) solid var(--ink);
    color: var(--white);
    background: var(--red);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink);
    transition:
        transform 120ms ease,
        box-shadow 120ms ease,
        background-color 120ms ease;
}

.button:hover {
    background: var(--red-dark);
    box-shadow: 0.3rem 0.3rem 0 var(--ink);
    transform: translate(0.25rem, 0.25rem);
}

.button:active {
    box-shadow: none;
    transform: translate(var(--shadow-offset), var(--shadow-offset));
}

.button--small {
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    box-shadow: 0.3rem 0.3rem 0 var(--ink);
}

.button--light {
    border-color: var(--white);
    color: var(--red);
    background: var(--white);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink);
}

.button--light:hover {
    color: var(--white);
    background: var(--ink);
}

.button--dark {
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--white);
}

.button--dark:hover {
    color: var(--ink);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-underline-offset: 0.35em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 1.5em;
    line-height: 0;
}

.text-link--light {
    color: var(--white);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    display: grid;
    min-height: min(52rem, calc(100svh - 5.5rem));
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.32fr);
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(115deg, transparent 0 68%, rgb(0 0 0 / 8%) 68% 100%),
        var(--red);
}

.hero::before {
    position: absolute;
    top: -9rem;
    right: 15%;
    width: 22rem;
    aspect-ratio: 1;
    border: 5rem solid rgb(255 255 255 / 10%);
    border-radius: 50%;
    content: "";
}

.hero__content {
    position: relative;
    z-index: 1;
    align-self: center;
    width: min(100%, 72rem);
    padding: clamp(4rem, 9vw, 8rem) var(--page-gutter);
}

.hero__lede {
    max-width: 42rem;
    margin-top: 2rem;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.45;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.hero__badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    border-left: var(--border-width) solid var(--ink);
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-heading);
    text-align: center;
    transform: rotate(2deg) scale(1.04);
}

.hero__badge strong {
    color: var(--red);
    font-size: clamp(5rem, 10vw, 10rem);
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.hero__badge span + strong {
    margin-top: 1.5rem;
}

.hero__badge-small {
    max-width: 20ch;
    margin-block: 1rem;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin-top: -0.25em;
}

/* ---------- Statement ---------- */

.statement {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    border-bottom: var(--border-width) solid var(--ink);
    background: var(--white);
}

.statement > * {
    width: auto;
    margin: 0;
}

.section-number {
    color: var(--red);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.75;
}

.statement__content {
    max-width: 66rem;
}

.statement__lede {
    max-width: 45rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

/* ---------- General content ---------- */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.prose {
    max-width: 45rem;
}

.prose h3 {
    margin-bottom: 1.25rem;
}

.prose p {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}

.callout {
    padding: clamp(1.5rem, 4vw, 3rem);
    border: var(--border-width) solid var(--ink);
    background: var(--off-white);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--red);
}

.callout__label {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.65rem;
    color: var(--white);
    background: var(--red);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.callout h3 {
    margin-bottom: 1.25rem;
}

/* ---------- Reasons ---------- */

.contrast-section {
    color: var(--white);
    background: var(--red);
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: var(--border-width) solid var(--white);
    border-left: var(--border-width) solid var(--white);
}

.reason-card {
    min-height: 22rem;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    border-right: var(--border-width) solid var(--white);
    border-bottom: var(--border-width) solid var(--white);
}

.reason-card__number {
    display: block;
    margin-bottom: clamp(4rem, 7vw, 7rem);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

.reason-card h3 {
    margin-bottom: 1.25rem;
    color: var(--white);
}

.reason-card p {
    max-width: 30rem;
}

/* ---------- Quote ---------- */

.quote-section {
    border-bottom: var(--border-width) solid var(--ink);
    background: linear-gradient(
        135deg,
        var(--white) 0 72%,
        var(--off-white) 72% 100%
    );
}

.quote-section blockquote {
    margin-block: 0;
}

.quote-section blockquote p {
    max-width: 22ch;
    margin-bottom: 2rem;
    color: var(--red);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.quote-section footer {
    font-size: 0.9rem;
    font-weight: 800;
}

/* ---------- FAQ ---------- */

.faq-list {
    border-top: var(--border-width) solid var(--ink);
}

.faq-list details {
    border-bottom: var(--border-width) solid var(--ink);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 0;
    color: var(--red);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.1;
    list-style: none;
}

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

.faq-list summary::after {
    flex: 0 0 auto;
    content: "+";
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    max-width: 48rem;
    padding: 0 0 2rem;
    color: var(--muted);
}

/* ---------- Vote CTA ---------- */

.vote-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    gap: clamp(3rem, 8vw, 8rem);
    color: var(--white);
    background: var(--red);
}

.vote-section > * {
    width: auto;
    margin: 0;
}

.vote-section h2 {
    color: var(--white);
}

.vote-section__message p:last-child {
    max-width: 42rem;
    margin-top: 1.75rem;
    font-size: 1.15rem;
}

.vote-section__details {
    display: grid;
    gap: 1.5rem;
    align-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: var(--border-width) solid var(--white);
}

.vote-section__details > div {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgb(255 255 255 / 55%);
}

.detail-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vote-section__details strong {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1;
}

/* ---------- Footer ---------- */

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
    padding: clamp(3rem, 6vw, 5rem) var(--page-gutter);
    color: var(--white);
    background: var(--ink);
}

.site-footer > div {
    max-width: 36rem;
}

.site-logo--footer {
    margin-bottom: 1.5rem;
}

.site-footer nav {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.disclaimer {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(255 255 255 / 35%);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 58rem) {
    .site-header {
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        padding-top: 0.75rem;
        border-top: 1px solid var(--ink);
        overflow-x: auto;
    }

    .site-nav a {
        white-space: nowrap;
    }

    .hero {
        display: block;
        min-height: auto;
    }

    .hero__badge {
        width: calc(100% - (2 * var(--page-gutter)));
        margin: 0 var(--page-gutter) clamp(3rem, 8vw, 5rem);
        padding-block: 2.5rem;
        border: var(--border-width) solid var(--ink);
        transform: rotate(-1deg);
    }

    .hero__badge strong {
        font-size: clamp(5rem, 22vw, 8rem);
    }

    .statement,
    .two-column,
    .vote-section {
        grid-template-columns: 1fr;
    }

    .section-number {
        margin-bottom: 1rem;
    }

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

    .reason-card {
        min-height: auto;
    }

    .reason-card__number {
        margin-bottom: 3rem;
    }
}

@media (max-width: 38rem) {
    :root {
        --border-width: 2px;
        --shadow-offset: 0.4rem;
    }

    .site-header {
        gap: 1rem;
    }

    .site-logo__text {
        max-width: 9rem;
    }

    .button--small {
        padding-inline: 0.75rem;
    }

    .hero__content {
        padding-top: 4rem;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .statement {
        gap: 1.5rem;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .disclaimer {
        grid-column: auto;
    }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

.vote {
    display: inline-block;
}

.no {
    border: 2px solid #333;
    border-radius: 5px;
}

.yes {
}
