@font-face {
  font-family: "MCDP Display";
  src: url("../fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "MCDP Sans";
  src: url("../fonts/source-sans-3.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --navy: #192057;
  --blue: #1645d6;
  --sky: #79c8ff;
  --red: #e8493f;
  --ivory: #fdf9f5;
  --ink: #12152d;
  --white: #fff;
  --line: rgba(25, 32, 87, 0.24);
  --display: "MCDP Display", "Arial Narrow", Impact, sans-serif;
  --sans: "MCDP Sans", "Segoe UI", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1.075rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  line-height: 1.05;
}

button,
a {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.draft-banner {
  padding: 7px 20px;
  color: var(--navy);
  background: #ffd34e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--ivory);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: inherit;
  font-family: var(--display);
  line-height: 0.86;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.wordmark strong {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.wordmark-header {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
}

.wordmark-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--sky);
}

.site-nav .nav-cta {
  padding: 12px 18px;
  color: var(--navy);
  background: var(--ivory);
  border: 2px solid var(--ivory);
}

.site-nav .nav-cta:hover {
  color: var(--ivory);
  background: transparent;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -7px;
}

.menu-icon::after {
  position: absolute;
  top: 7px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: skewY(-4deg) scale(1.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 730px;
  padding-block: clamp(76px, 10vw, 1px) 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.section-label,
.event-category {
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  display: inline-block;
  width: 30px;
  height: 3px;
  margin-right: 10px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

.hero h1 {
  max-width: 1060px;
  margin-bottom: 48px;
  font-size: clamp(4.5rem, 10vw, 9.2rem);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 28px;
}

.hero-bottom > p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.32;
}

.hero-stripe {
    position: absolute;
    right: -6%;
    bottom: -90px;
    width: 130%;
    height: 140px;
    background: var(--red);
    transform: rotate(-4deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 13px 18px;
  border: 2px solid transparent;
}

.button span,
.text-link span {
  font-size: 1.15rem;
  transition: transform 140ms ease;
}

/* Bootstrap Icons (MIT): arrow-right and arrow-up-right. */
.link-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon-arrow-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1 7.5a.5.5 0 0 0 0 1h11.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L12.793 7.5H1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1 7.5a.5.5 0 0 0 0 1h11.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L12.793 7.5H1z'/%3E%3C/svg%3E");
}

.icon-arrow-up-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z'/%3E%3C/svg%3E");
}

.button:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.button-red {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-red:hover {
  color: var(--red);
  background: transparent;
}

.button-ivory {
  color: var(--navy);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-ivory:hover {
  color: var(--ivory);
  background: transparent;
}

.text-link {
  padding-block: 6px;
  border-bottom: 2px solid currentColor;
}

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

.section-pad {
    padding-block: clamp(50px, 1vw, 142px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 72px;
}

.split-heading h2,
.section-intro h1,
.section-intro h2,
.resources-grid h1,
.resources-grid h2,
.contact-grid h2 {
  max-width: 880px;
  margin-bottom: 32px;
  color: var(--navy);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.lede,
.page-lede {
  max-width: 760px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.action-band {
  background: var(--blue);
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.action-card {
  min-height: 600px;
  padding: clamp(60px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action-card-event {
  color: var(--navy);
  background: var(--sky);
}

.action-card-vote {
  color: var(--white);
  background: var(--blue);
}

.action-card h2 {
  max-width: 450px;
  margin: 24px 0;
  color: inherit;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.action-card .text-link,
.action-card .button {
  margin-top: auto;
}

.date-block {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.date-block span {
  font-size: 0.38em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.verify-note {
  padding-left: 12px;
  border-left: 3px solid var(--red);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
}

.priorities {
  color: var(--navy);
  background: var(--ivory);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 68px;
}

.section-intro h1,
.section-intro h2 {
  margin-bottom: 0;
}

.section-intro.compact {
  display: block;
}

.section-intro.compact h1,
.section-intro.compact h2 {
  max-width: 750px;
}

.section-intro.compact > p:last-child {
  max-width: 720px;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.priority-card {
  min-height: 290px;
  padding: 30px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.priority-card > span,
.three-grid article > span {
  color: var(--red);
  font-family: var(--display);
  font-weight: 800;
}

.priority-card h3,
.three-grid h3,
.belief-grid h3 {
  margin: 52px 0 14px;
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.priority-card p {
  margin-bottom: 0;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.closing-cta::after {
  position: absolute;
  right: -7%;
  bottom: -110px;
  width: 460px;
  height: 230px;
  background: var(--red);
  transform: rotate(-12deg);
  content: "";
}

.closing-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 12vw, 170px);
}

.closing-inner h2 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 9vw, 8rem);
}

.closing-inner > p:not(.section-label) {
  max-width: 660px;
  margin-bottom: 36px;
  font-size: 1.35rem;
}

.closing-cta-ivory {
  color: var(--navy);
  background: var(--ivory);
}

.page-hero {
    padding-block: clamp(60px, 1vw, 170px);
}

.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 40px;
  font-size: clamp(4.6rem, 11vw, 10rem);
}

.page-hero .page-lede {
  margin: 0 0 0 auto;
}

.page-hero-blue {
  color: var(--white);
  background: var(--blue);
}

.page-hero-red {
  color: var(--white);
  background: var(--red);
}

.page-hero-navy {
  color: var(--white);
  background: var(--navy);
}

.page-hero-ivory {
  color: var(--navy);
  background: var(--ivory);
  border-bottom: 2px solid var(--navy);
}

.election-feature {
  color: var(--white);
  background: var(--navy);
}

.feature-grid {
  padding-block: 78px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.feature-grid > div + div {
  padding-left: 70px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.feature-grid h2 {
  max-width: 580px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.feature-grid p:not(.mega-date):not(.section-label) {
  max-width: 610px;
  margin-bottom: 30px;
}

.mega-date {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.78;
}

.mega-date strong {
  display: block;
  font-size: 2.45em;
}

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

.candidate-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.candidate-intro h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
}

.candidate-intro > p {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.candidate-card {
  display: grid;
  grid-template-columns: minmax(175px, 0.8fr) minmax(0, 1.2fr);
  min-height: 350px;
  background: var(--white);
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.candidate-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-right: 2px solid var(--navy);
}

.candidate-media::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  content: "";
  background: var(--red);
  transform: rotate(45deg);
}

.candidate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidate-media-cindy-holscher img {
  object-fit: contain;
  background: var(--blue);
}

.candidate-media-dinah-sykes img {
  object-position: 47% center;
}

.candidate-monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 800;
}

.candidate-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px 30px;
}

.candidate-office {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.candidate-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

.candidate-copy > p:not(.candidate-office):not(.candidate-link-unavailable) {
  margin-bottom: 24px;
  font-size: 1rem;
}

.candidate-link,
.candidate-link-unavailable {
  margin-top: auto;
  font-weight: 800;
}

.candidate-link {
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.candidate-link-unavailable {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.candidate-note {
  max-width: 850px;
  margin: 32px 0 0;
  padding-left: 18px;
  border-left: 5px solid var(--red);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--navy);
}

.timeline li {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 44px;
  align-items: center;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--red);
  font-family: var(--display);
  text-transform: uppercase;
}

.timeline time span {
  font-size: 1.4rem;
}

.timeline time strong {
  font-size: 3.6rem;
}

.timeline h3,
.event-copy h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.timeline p {
  max-width: 720px;
  margin-bottom: 0;
}

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

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

.three-grid,
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.three-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.three-grid article > span {
  color: var(--white);
  font-size: 2rem;
}

.three-grid h3 {
  font-size: 2.8rem;
}

.resource-strip {
  color: var(--white);
  background: var(--blue);
}

.link-list {
  border-top: 2px solid currentColor;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 6px;
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.link-list a:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.link-list span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-list strong {
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.link-list small,
.link-list em {
  font-size: 0.96rem;
  font-style: normal;
}

.link-list b {
  font-size: 2rem;
}

.numbered-list {
  border-top: 2px solid var(--navy);
}

.numbered-list article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 50px;
  padding-block: 55px;
  border-bottom: 1px solid var(--line);
}

.numbered-list article > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.numbered-list h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.numbered-list article > div > p {
  max-width: 650px;
}

.quote-band {
  color: var(--white);
  background: var(--blue);
}

.quote-band p {
  max-width: 1000px;
  margin: 0;
  padding-block: 110px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.event-list {
  border-top: 2px solid var(--navy);
}

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr 300px;
  gap: 44px;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.event-row time {
  color: var(--red);
  font-family: var(--display);
  line-height: 0.8;
  text-transform: uppercase;
}

.event-row time span {
  display: block;
  font-size: 1.5rem;
}

.event-row time strong {
  font-size: 4.8rem;
}

.event-category {
  margin-bottom: 8px;
  color: var(--blue);
}

.event-copy p {
  max-width: 560px;
}

.event-meta {
  font-size: 0.95rem;
}

.empty-state {
  padding: 60px;
  border: 2px solid var(--navy);
}

.empty-state h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 2.5rem;
  text-transform: uppercase;
}

.contact-band {
  color: var(--white);
  background: var(--red);
}

.contact-band-inner {
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.contact-band h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5rem);
}

.contact-band a {
  font-weight: 800;
}

.beliefs-section {
  color: var(--white);
  background: var(--blue);
}

.belief-grid {
  margin-top: 48px;
}

.belief-grid article {
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.belief-grid h3 {
  margin-top: 70px;
  font-size: 2.4rem;
}

.leadership-section {
  background: var(--sky);
}

.officer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.officer-grid article {
  min-height: 220px;
  padding: 34px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.officer-grid article > p {
  margin-bottom: 55px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.officer-grid h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 2.5rem;
  text-transform: uppercase;
}

.officer-grid span {
  font-size: 0.8rem;
  font-weight: 700;
}

.resources-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.link-list-dark {
  color: var(--navy);
}

.link-list-dark small {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-list-dark em {
  color: var(--ink);
}

.contact-section {
  padding-block: 110px;
  color: var(--white);
  background: var(--navy);
}

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

.contact-grid address {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-style: normal;
}

.contact-grid address > div {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-grid address span {
  display: block;
  margin-bottom: 5px;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid address a,
.contact-grid address > div > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 80px;
  color: var(--navy);
  background: var(--sky);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 60px;
  padding-bottom: 70px;
}

.wordmark-footer strong {
  font-size: 3rem;
}

.footer-belief {
  max-width: 360px;
  margin-top: 24px;
  font-size: 1.2rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-contact p {
  margin-bottom: 4px;
}

.footer-legal {
  padding-block: 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 2px solid var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.footer-legal p {
  margin: 0;
}

.political-disclosure {
  width: min(100%, 760px);
  padding: 16px 22px;
  border: 2px solid var(--navy);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  line-height: 1.45;
}

.footer-copyright {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .menu-button {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 26px 20px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding-block: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    text-align: center;
  }

  .hero-bottom,
  .split-heading,
  .section-intro,
  .feature-grid,
  .resources-grid,
  .contact-grid,
  .contact-band-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-grid > div + div {
    padding: 42px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .priority-grid,
  .three-grid,
  .belief-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-row {
    grid-template-columns: 110px 1fr;
  }

  .event-meta {
    grid-column: 2;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 82px;
  }

  .wordmark span {
    font-size: 0.62rem;
  }

  .wordmark strong {
    font-size: 1.75rem;
  }

  .wordmark-header {
    gap: 9px;
  }

  .wordmark-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero-inner {
    min-height: 650px;
    padding-block: 65px 100px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .action-grid,
  .priority-grid,
  .candidate-grid,
  .three-grid,
  .belief-grid,
  .officer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .candidate-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .candidate-card {
    grid-template-columns: 1fr;
  }

  .candidate-media {
    min-height: 300px;
    border-right: 0;
    border-bottom: 2px solid var(--navy);
  }

  .action-card {
    min-height: 540px;
    padding: 50px 26px;
  }

  .priority-card {
    min-height: 250px;
  }

  .split-heading h2,
  .section-intro h1,
  .section-intro h2,
  .resources-grid h1,
  .resources-grid h2,
  .contact-grid h2 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .timeline li,
  .numbered-list article,
  .event-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline time {
    justify-content: flex-start;
  }

  .numbered-list article > span {
    font-size: 2.6rem;
  }

  .event-meta {
    grid-column: auto;
  }

  .event-row time {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .event-row time span {
    display: inline;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-legal {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
