@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/archivo-black-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/manrope-latin.woff2") format("woff2");
}

:root {
  --blue: #114499;
  --blue-dark: #062a71;
  --blue-ink: #031d50;
  --yellow: #ffee44;
  --green: #079455;
  --green-deep: #006b42;
  --white: #fff;
  --paper: #f7f8f4;
  --ink: #071a39;
  --muted: #617086;
  --line: rgba(7, 26, 57, 0.16);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 26, 57, 0.1);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-shell {
  width: min(1360px, calc(100% - 32px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  height: 190svh;
  min-height: 1360px;
  background: var(--white);
  --hero-name-x: -14vw;
  --hero-name-y: 0px;
  --hero-number-x: 14vw;
  --hero-number-y: 0px;
  --hero-name-scale: 0.72;
  --hero-number-scale: 0.72;
  --hero-person-scale: 0.48;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, var(--white) 0 50%, var(--blue) 50% 100%);
}

.hero-particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.hero-copy,
.hero-vote {
  position: absolute;
  left: 50%;
  width: min(440px, 38vw);
  will-change: transform;
}

.hero-copy {
  top: 45%;
  transform: translate(-50%, -50%) translate3d(var(--hero-name-x), var(--hero-name-y), 0) scale(var(--hero-name-scale));
}

.hero-logo-art {
  width: 100%;
  height: auto;
  margin: 0;
}

.hero-vote {
  top: 45%;
  transform: translate(-50%, -50%) translate3d(var(--hero-number-x), var(--hero-number-y), 0) scale(var(--hero-number-scale));
}

.hero-vote img {
  width: 100%;
  height: auto;
}

.hero-person {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  display: block;
  width: min(980px, 72vw);
  max-width: none;
  height: auto;
  transform: translateX(-50%) scale(var(--hero-person-scale));
  transform-origin: center bottom;
  will-change: transform;
  pointer-events: none;
}

.hero-person img {
  width: 100%;
  max-width: none;
  height: auto;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.text-link svg {
  width: 21px;
  height: 21px;
}

.text-link:focus-visible,
.main-nav a:focus-visible,
.instagram-post:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.legal-ribbon {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-ribbon span {
  padding-inline: 6px;
  color: var(--yellow);
}

.section {
  padding-block: 140px;
}

.section-heading h2,
.numbers-title-row h2,
.election h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  column-gap: clamp(54px, 7vw, 112px);
  row-gap: 70px;
  align-items: start;
}

.about-grid > .section-heading {
  grid-column: 1;
}

.about-intro {
  grid-column: 2;
  max-width: 680px;
  padding-top: 24px;
}

.about-intro .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.about-intro p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.about-portrait {
  position: relative;
  grid-column: 1;
  height: auto;
  aspect-ratio: 1400 / 1123;
  margin: 0;
  overflow: hidden;
  background: var(--blue-dark);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-portrait figcaption {
  position: absolute;
  inset: auto 22px 18px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.about-portrait figcaption span {
  margin-right: 10px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.timeline {
  position: relative;
  grid-column: 2;
  margin-top: 8px;
  padding-left: 52px;
}

.timeline-track {
  position: absolute;
  top: 12px;
  bottom: 20px;
  left: 13px;
  width: 2px;
  background: rgba(17, 68, 153, 0.15);
  transform: translateX(-50%);
}

.timeline-track span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--green);
}

.timeline-item {
  position: relative;
  min-height: 155px;
  transition: transform 260ms ease;
}

.timeline-item.active {
  transform: none;
}

.timeline-dot {
  position: absolute;
  top: 7px;
  left: -47px;
  width: 16px;
  height: 16px;
  background: var(--paper);
  border: 3px solid rgba(17, 68, 153, 0.36);
  border-radius: 50%;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.timeline-item.active .timeline-dot {
  background: var(--yellow);
  border-color: var(--green);
  transform: scale(1.18);
}

.timeline-label {
  margin: 0 0 4px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.2;
}

.timeline-item p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.commitments {
  color: var(--white);
  background: var(--blue-dark);
}

.section-heading-light {
  display: block;
  max-width: 900px;
  margin-bottom: 80px;
}

.section-heading-light .kicker {
  grid-column: 1 / -1;
  color: var(--yellow);
}

.section-heading-light p:last-child {
  max-width: 480px;
  margin: 0 0 4px auto;
  color: rgba(255, 255, 255, 0.7);
}

.commitment-panels {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.commitment-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.commitment-panel summary {
  display: grid;
  grid-template-columns: 64px 1fr 44px;
  align-items: center;
  gap: 22px;
  min-height: 124px;
  list-style: none;
  cursor: pointer;
}

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

.commitment-panel summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.panel-number {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.panel-title {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 46px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.panel-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.panel-toggle::before,
.panel-toggle::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 12px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.panel-toggle::after {
  transform: rotate(90deg);
}

.commitment-panel[open] .panel-toggle::after {
  transform: rotate(0);
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 0 66px 42px 86px;
}

.panel-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.panel-tag {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-numbers {
  padding-block: 128px;
  background: var(--yellow);
}

.numbers-title-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  margin-bottom: 72px;
}

.numbers-title-row .kicker {
  color: var(--blue-dark);
}

.numbers-title-row h2 {
  grid-column: 1 / -1;
  color: var(--blue-dark);
}

.number-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  border-top: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
}

.number-grid article {
  min-width: 0;
  padding: 44px 28px 40px;
  border-right: 1px solid rgba(6, 42, 113, 0.42);
}

.number-grid article:first-child {
  padding-left: 0;
}

.number-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.number-grid h3 {
  margin: 20px 0 4px;
  color: var(--blue-dark);
  font-size: 16px;
  text-transform: uppercase;
}

.number-grid p {
  margin: 0;
  color: rgba(6, 42, 113, 0.7);
  font-size: 13px;
}

.odometer {
  display: flex;
  height: clamp(42px, 5.2vw, 76px);
  overflow: hidden;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.085em;
}

.odometer-digit {
  position: relative;
  display: inline-block;
  width: 0.68em;
  height: 1em;
  overflow: hidden;
}

.odometer-separator {
  display: inline-block;
  width: 0.24em;
  text-align: center;
}

.odometer-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.odometer-strip span {
  flex: 0 0 1em;
  height: 1em;
  text-align: center;
}

.agenda {
  overflow: hidden;
  background: var(--white);
}

.agenda-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.agenda-copy {
  padding-bottom: 8px;
}

.agenda-copy p {
  max-width: 470px;
  margin: 0 0 28px;
  color: var(--muted);
}

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

.instagram-feed {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--blue) transparent;
  scrollbar-width: thin;
  cursor: grab;
}

.instagram-feed.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.instagram-post {
  flex: 0 0 clamp(240px, 22vw, 300px);
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: start;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.instagram-post:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-5px);
}

.instagram-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blue-dark);
}

.instagram-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-post:first-child .instagram-media img {
  object-position: center;
}

.instagram-post:hover .instagram-media img {
  transform: scale(1.025);
}

.instagram-caption {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.instagram-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-meta strong {
  color: var(--blue);
}

.instagram-title {
  display: block;
  margin-top: 22px;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.instagram-summary {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-cta svg {
  width: 18px;
  height: 18px;
}

.election {
  padding-block: 110px;
  color: var(--white);
  background: var(--blue-ink);
}

.election-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.election-content {
  min-width: 0;
}

.election-art {
  display: flex;
  justify-content: center;
  margin: 0;
}

.election-art img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 680px;
  height: auto;
  object-fit: contain;
}

.election .kicker {
  color: var(--yellow);
}

.election h2 {
  max-width: none;
  font-size: clamp(42px, 4.3vw, 66px);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 46px;
}

.countdown > div {
  min-width: 0;
  padding: 18px 10px 15px;
  border-top: 2px solid var(--yellow);
  background: rgba(255, 255, 255, 0.07);
}

.countdown strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.countdown span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vote-reminder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.vote-reminder span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.vote-reminder-number {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin-block: 8px;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 72px;
}

.footer-logo {
  min-width: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-logo-candidate {
  width: min(100%, 380px);
}

.footer-logo-party {
  width: min(100%, 380px);
  justify-self: end;
}

.mobile-support {
  display: none;
}

@media (max-width: 1023px) {
  :root {
    --shell: min(100% - 44px, 920px);
  }

  .hero-copy {
    width: min(390px, 40vw);
  }

  .hero-vote {
    width: min(390px, 40vw);
  }

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

  .about-intro {
    grid-column: 2;
  }

  .about-portrait {
    grid-column: 1;
  }

  .timeline {
    grid-column: 2;
  }

  .instagram-feed {
    gap: 16px;
  }

  .instagram-caption {
    min-height: 250px;
    padding: 20px;
  }

  .election-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .election-art {
    width: min(760px, calc(100% - 18px));
  }

  .election h2 {
    max-width: 760px;
  }

  .countdown {
    max-width: 700px;
  }

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

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-copy {
    width: clamp(265px, 34vw, 380px);
  }

  .hero-vote {
    width: clamp(265px, 34vw, 380px);
  }

}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: 58px;
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand-logo {
    width: 138px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 64px 0 auto;
    min-height: calc(100svh - 64px);
    padding: 50px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    color: var(--white);
    background: var(--blue-dark);
    font-size: 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), visibility 220ms;
  }

  .main-nav.open {
    transform: none;
    visibility: visible;
  }

  .nav-cta {
    margin-top: 20px;
    color: var(--blue-dark);
    background: var(--yellow);
    font-size: 16px;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    --hero-name-x: -25vw;
    --hero-number-x: 25vw;
    --hero-name-scale: 0.52;
    --hero-number-scale: 0.62;
    --hero-person-scale: 1.05;
  }

  .hero-stage {
    position: relative;
    top: auto;
    height: 100%;
    min-height: 0;
    overflow: visible;
  }

  .hero-visual {
    inset: 0 0 auto;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .hero-particles {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    position: sticky;
    z-index: 2;
    top: calc(35svh - clamp(52px, 7svh, 88px) - 8vw);
    inset-inline: 0;
    height: 16vw;
    min-height: 0;
  }

  .hero-copy {
    top: 50%;
    width: 86vw;
  }

  .hero-logo-art {
    margin: 0;
  }

  .hero-vote {
    top: 50%;
    width: 68vw;
  }

  .hero-person {
    bottom: clamp(-64px, -7svh, -44px);
    width: min(116vw, calc(58svh - 42px));
  }

  .legal-ribbon {
    display: none;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading h2,
  .numbers-title-row h2,
  .election h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .about-grid,
  .about-intro,
  .about-portrait,
  .timeline,
  .section-heading-light,
  .agenda-heading {
    display: block;
  }

  .about-intro {
    padding-top: 24px;
  }

  .about-intro .lead {
    font-size: 22px;
  }

  .about-portrait {
    position: relative;
    top: auto;
    margin-top: 42px;
  }

  .about-portrait img {
    padding: 0;
  }

  .timeline {
    margin-top: 70px;
  }

  .timeline-item {
    min-height: 142px;
  }

  .section-heading-light {
    margin-bottom: 52px;
  }

  .section-heading-light h2 {
    margin-bottom: 24px;
  }

  .section-heading-light p:last-child {
    margin-left: 0;
  }

  .commitment-panel summary {
    grid-template-columns: 34px 1fr 34px;
    min-height: 108px;
    gap: 10px;
  }

  .panel-title {
    font-size: 24px;
  }

  .panel-toggle {
    width: 34px;
    height: 34px;
  }

  .panel-toggle::before,
  .panel-toggle::after {
    top: 16px;
    left: 9px;
    width: 14px;
  }

  .panel-content {
    display: block;
    padding: 0 8px 32px 44px;
  }

  .panel-content p {
    font-size: 15px;
  }

  .panel-tag {
    display: block;
    margin-top: 20px;
  }

  .campaign-numbers {
    padding-block: 82px;
  }

  .numbers-title-row {
    display: block;
    margin-bottom: 45px;
  }

  .number-grid {
    display: block;
  }

  .number-grid article,
  .number-grid article:first-child,
  .number-grid article:last-child {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 42, 113, 0.42);
  }

  .number-grid article:last-child {
    border-bottom: 0;
  }

  .odometer {
    height: 68px;
    font-size: clamp(50px, 16vw, 68px);
  }

  .agenda-heading {
    margin-bottom: 44px;
  }

  .agenda-copy {
    margin-top: 24px;
  }

  .instagram-feed {
    width: auto;
    gap: 14px;
    padding: 0 18px 20px;
  }

  .instagram-post {
    flex: 0 0 68vw;
  }

  .instagram-caption {
    min-height: 190px;
  }

  .election {
    padding-block: 84px;
  }

  .election-grid {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .election-content {
    display: contents;
  }

  .election .kicker {
    grid-row: 1;
  }

  .election h2 {
    grid-row: 2;
  }

  .election-art {
    grid-row: 3;
    justify-self: center;
    margin-top: 40px;
  }

  .countdown {
    grid-row: 4;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-top: 40px;
  }

  .countdown > div {
    padding: 14px 6px 12px;
  }

  .countdown strong {
    font-size: clamp(30px, 10vw, 40px);
  }

  .countdown span {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .vote-reminder {
    grid-row: 5;
    align-items: flex-start;
    margin-top: 48px;
  }

  .vote-reminder-number {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-block: 48px;
  }

  .footer-logo-candidate,
  .footer-logo-party {
    width: 100%;
    justify-self: center;
  }

  .mobile-support {
    position: fixed;
    z-index: 49;
    inset: auto 14px max(14px, env(safe-area-inset-bottom)) auto;
    min-height: 40px;
    padding-inline: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue-ink);
    background: var(--yellow);
    border: 1px solid rgba(3, 29, 80, 0.12);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(3, 29, 80, 0.16);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

}

@media (max-width: 374px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .instagram-post {
    flex-basis: 74vw;
  }
}

@media (min-width: 1440px) {
  :root {
    --shell: min(1320px, calc(100% - 96px));
  }

  .hero-copy {
    width: 510px;
  }

  .hero-vote {
    width: 510px;
  }

  .about-grid {
    gap: 72px;
  }
}

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

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

  .hero-particles {
    display: none;
  }

  .timeline-track span {
    height: 100% !important;
  }

  .timeline-item {
    opacity: 1;
  }
}
