:root {
  --v-red: #ed1b2f;
  --black: #330000;
  --paper: #f6f2e8;
  --paper-2: #fffdf6;
  --muted: #d8d1c3;
  --max: 1160px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--black);
}

body::selection {
  color: var(--paper);
  background: var(--v-red);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--paper);
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background: rgba(5, 5, 5, .88);
  background: color-mix(in srgb, var(--black) 88%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav a,
.button,
.text-link {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.nav a {
  padding: .72rem .95rem;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--paper);
  background: rgba(255,255,255,.08);
}

.nav .nav-cta {
  color: var(--black);
  background: var(--paper);
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  width: min(var(--max), 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--paper);
  font-size: clamp(.86rem, 1.6vw, 1rem);
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.slogan {
  display: block;
  width: min(100%, 1180px);
  margin: -1rem auto .5rem;
  overflow: visible;
}

.slogan text {
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: 152px;
  font-weight: 950;
  letter-spacing: .02em;
  dominant-baseline: middle;
}

.slogan-stroke {
  fill: var(--paper);
  stroke: var(--paper);
  stroke-width: 45px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke;
}

.slogan-fill {
  fill: var(--v-red);
}

.lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--paper-2);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--paper);
}

.button-primary {
  color: var(--paper);
  background: var(--v-red);
  border-color: var(--v-red);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.08);
}

.button-secondary {
  color: var(--paper);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--black);
  background: var(--paper);
}


.vote-panel {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto clamp(2rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: stretch;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(246, 242, 232, .18);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, rgba(237, 27, 47, .28), rgba(246, 242, 232, .045));
}

.vote-panel-copy {
  padding: clamp(1rem, 4vw, 2.25rem);
}

.vote-panel-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
}

.vote-panel-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--paper-2);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.vote-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: var(--radius);
  color: var(--black);
  background: var(--paper);
}

.vote-message {
  padding: .9rem 1rem;
  border-radius: 18px;
  color: var(--paper);
  background: var(--v-red);
  font-weight: 900;
}

.current-vote {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -.03em;
}

.current-vote strong {
  color: var(--v-red);
}

.vote-hint {
  margin: 0;
  color: #413c35;
  line-height: 1.45;
}

.vote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: .25rem;
}

.vote-button {
  min-height: 74px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
  letter-spacing: -.04em;
  cursor: pointer;
  transition: transform .14s ease, filter .14s ease;
}

.vote-button:hover,
.vote-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.vote-yes {
  color: var(--paper);
  background: var(--v-red);
}

.vote-no {
  color: var(--black);
  background: var(--paper-2);
  border: 2px solid rgba(5, 5, 5, .12);
}

.vote-count {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-top: .5rem;
  color: #413c35;
}

.vote-count strong {
  color: var(--black);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.privacy-note {
  margin: .2rem 0 0;
  color: #5d554b;
  font-size: .92rem;
  line-height: 1.45;
}

.statement,
.content-section,
.split,
.footer {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.statement {
  margin-top: 1rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: var(--radius);
  color: var(--black);
  background: var(--paper);
}

.statement p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.board-statement {
  width: min(var(--max), calc(100% - 3rem));
  margin: clamp(1rem, 4vw, 3rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4.5rem) 0;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--paper);
  overflow: hidden;
}

.board-statement-text {
  align-self: start;
  max-width: 760px;
  padding-bottom: clamp(2rem, 5vw, 4.5rem);
}

.board-statement-text p {
  margin: 0 0 1.15rem;
  color: #181613;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.58;
}

.board-statement-text p:last-child {
  margin-bottom: 0;
}

.board-closing {
  margin-top: 1.25rem !important;
  color: var(--v-red) !important;
  font-size: clamp(1.15rem, 1.65vw, 1.4rem) !important;
  line-height: 1.58 !important;
  font-weight: 950;
  letter-spacing: normal;
}

.board-signature {
  align-self: end;
  justify-self: end;
  width: min(100%, 460px);
  margin: 0;
  text-align: left;
}

.board-signature img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.board-signature figcaption {
  margin: .75rem 0 1.15rem;
  color: #181613;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.58;
  font-weight: 400;
  text-align: center;
}

.candidate-statement {
  width: min(var(--max), calc(100% - 3rem));
  margin: clamp(1rem, 4vw, 3rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  color: var(--black);
  background: var(--paper);
}

.candidate-text {
  max-width: 760px;
}

.candidate-text p {
  margin: 0 0 1.15rem;
  color: #181613;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.candidate-text p:last-child {
  margin-bottom: 0;
}

.candidate-closing {
  margin-top: 1.8rem !important;
  color: var(--v-red) !important;
  font-size: clamp(2rem, 5vw, 4.1rem) !important;
  line-height: .95 !important;
  font-weight: 950;
  letter-spacing: -.06em;
}

.candidate-card {
  justify-self: end;
  width: min(100%, 440px);
  margin: 0;
  text-align: center;
}

.candidate-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}

.candidate-card figcaption {
  margin-top: 1rem;
}

.candidate-card strong,
.candidate-card span {
  display: block;
}

.candidate-card strong {
  color: var(--black);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.candidate-card span {
  margin-top: .35rem;
  color: #5d554b;
  font-weight: 850;
  line-height: 1.35;
}


.content-section {
  padding: clamp(4rem, 9vw, 7rem) 0 2rem;
}

.section-heading {
  max-width: 800px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.4rem, 7vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.card {
  min-height: 260px;
  padding: 1.6rem;
  border: 1px solid rgba(246, 242, 232, .18);
  border-radius: var(--radius);
  background: rgba(246, 242, 232, .055);
}

.card h2 {
  margin-bottom: .9rem;
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.card p,
.split-copy p,
.footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(246, 242, 232, .18);
}

.split-copy {
  padding-top: .45rem;
}

.text-link {
  display: inline-flex;
  margin-top: .6rem;
  color: var(--paper);
  border-bottom: 3px solid var(--v-red);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--v-red);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(246, 242, 232, .18);
}

.footer p {
  margin: 0;
}

.footer strong {
  color: var(--paper);
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .brand span {
    max-width: 12ch;
    line-height: 1.05;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .slogan text {
    font-size: 126px;
  }

  .slogan-stroke {
    stroke-width: 48px;
  }

  .cards,
  .split,
  .vote-panel,
  .candidate-statement,
  .board-statement {
    grid-template-columns: 1fr;
  }

  .board-statement {
    padding-bottom: 0;
  }

  .board-statement-text {
    padding-bottom: 0;
  }

  .board-signature {
    justify-self: center;
    width: min(88vw, 520px);
  }

  .candidate-card {
    justify-self: center;
    width: min(86vw, 420px);
  }

  .card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: .9rem 1rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero,
  .vote-panel,
  .statement,
  .candidate-statement,
  .board-statement,
  .content-section,
  .split,
  .footer {
    width: min(100% - 2rem, var(--max));
  }

  .candidate-statement,
  .board-statement {
    padding: 1.5rem 1.5rem 0;
  }

  .candidate-text p,
  .board-statement-text p {
    font-size: 1.02rem;
  }

  .board-signature figcaption {
    margin-left: .25rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .slogan {
    margin-top: -2rem;
    margin-bottom: -1rem;
  }

  .slogan text {
    font-size: 102px;
  }

  .slogan-stroke {
    stroke-width: 40px;
  }

  .button {
    width: 100%;
  }
}


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