/* Design tokens */
:root {
  --plum: #572c51;
  --plum-deep: #3d1f39;
  --plum-mid: #6b3862;
  --peach: #f9b482;
  --peach-light: #fde8d2;
  --gold: #766d24;
  --gold-bright: #c6ba68;
  --cream: #faf4ec;
  --cream-2: #ede4d2;
  --ink: #1e1020;
  --muted: #6d5665;
  --white: #fff;
  --font-display: "Montserrat", "League Spartan", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-script: "Allura", "Great Vibes", cursive;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--plum-mid);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--peach);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  color: var(--plum-deep);
  background: var(--peach);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
}

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

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--plum {
  color: var(--peach);
  background: var(--plum-deep);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2,
.home-cta h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.section-heading h2 {
  max-width: 720px;
  color: inherit;
  font-size: clamp(2.35rem, 5vw, 3.75rem);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-label {
  margin: 0 0 0.55rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label--gold {
  color: var(--gold);
}

.section--plum .section-label--gold,
.section--plum .text-link {
  color: var(--gold-bright);
}

/* Links and buttons */
.text-link {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.text-link::after {
  content: " \2192";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.55rem;
  border: 1.5px solid transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.btn::after {
  content: " \2192";
}

.btn--peach {
  color: var(--plum-deep);
  background: var(--peach);
}

.btn--peach:hover {
  color: var(--plum-deep);
  background: var(--peach-light);
}

.btn--outline-peach {
  color: var(--peach);
  border-color: var(--peach);
  background: transparent;
}

.btn--outline-peach:hover {
  color: var(--plum-deep);
  background: var(--peach);
}

.btn--outline-plum {
  color: var(--plum);
  border-color: var(--plum);
  background: transparent;
}

.btn--outline-plum:hover {
  color: var(--peach);
  background: var(--plum);
}

.btn--plum {
  color: var(--peach);
  background: var(--plum);
}

.btn--plum:hover {
  color: var(--peach-light);
  background: var(--plum-deep);
}

.btn--full {
  width: 100%;
}

.btn--small {
  min-height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.75rem;
}

/* Shared content blocks */
.muted {
  max-width: 680px;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-intro {
  max-width: 700px;
  margin: 0 0 3rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.prose {
  max-width: 740px;
}

.prose p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.prose h2 {
  margin: 2.25rem 0 0.75rem;
  color: var(--plum-deep);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}

.prose--large p {
  font-size: 1.18rem;
  line-height: 1.65;
}

.policy-page .page-intro {
  margin-bottom: 1rem;
}

.policy-section {
  padding-top: 0.25rem;
}

.prose blockquote,
.record-role blockquote {
  margin: 2rem 0 0;
  color: var(--plum);
}

.prose blockquote {
  max-width: 520px;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.prose blockquote.pull-quote {
  position: relative;
  max-width: 860px;
  margin: 2.25rem 0 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 1.8rem;
  color: var(--plum-deep);
  background: linear-gradient(
    90deg,
    rgb(249 180 130 / 38%),
    rgb(253 232 210 / 72%)
  );
  border-left: 6px solid var(--plum);
  font-family: var(--font-script);
  font-size: clamp(2.45rem, 5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
}

.pull-quote::before {
  content: "“";
  margin-right: 0.15em;
  color: var(--gold);
  font-size: 1.2em;
  line-height: 0;
}

.pull-quote::after {
  content: "”";
  margin-left: 0.08em;
  color: var(--gold);
  font-size: 1.2em;
  line-height: 0;
}

.page-inline-cta {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 1.5px solid rgb(87 44 81 / 16%);
  background: rgb(253 232 210 / 52%);
}

.page-inline-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.page-inline-cta .section-label {
  margin-bottom: 0.55rem;
  color: var(--plum);
  font-size: 0.75rem;
}

.page-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--plum-deep);
  box-shadow: 0 2px 16px rgb(0 0 0 / 30%);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.75rem;
  color: var(--peach);
  text-decoration: none;
}

.nav__brand:hover {
  color: var(--peach);
}

.nav__brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.nav__brand-sub {
  display: block;
  margin-top: 0.2rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.nav__brand:hover .nav__brand-sub {
  color: var(--gold-bright);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.35rem 0.62rem;
  border-bottom: 2px solid transparent;
  color: rgb(249 180 130 / 78%);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.nav__links a[aria-current="page"],
.nav__links a:hover {
  border-bottom-color: var(--peach);
  color: var(--peach);
}

.nav__get-involved,
.nav__donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__get-involved {
  border: 1.5px solid rgb(249 180 130 / 45%);
  color: var(--peach) !important;
  background: transparent;
}

.nav__get-involved:hover,
.nav__get-involved[aria-current="page"] {
  color: var(--plum-deep) !important;
  background: var(--peach);
}

.nav__donate {
  color: var(--plum-deep) !important;
  background: var(--peach);
}

.nav__links .nav__get-involved,
.nav__links .nav__donate {
  display: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  order: 3;
}

.nav__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgb(249 180 130 / 32%);
  background: transparent;
}

.nav__toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.27rem auto;
  background: var(--peach);
}

/* Hero */
.hero {
  padding-top: 4.5rem;
  color: var(--peach);
  background: var(--plum-deep);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__content {
  padding: 3.25rem 0 4.25rem;
  min-width: 0;
}

.hero__eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-bright);
}

.hero__name {
  margin: 0;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero__name span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__body {
  max-width: 540px;
  margin: 1.5rem 0 0;
  color: rgb(249 180 130 / 85%);
  font-size: 1.18rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.hero__election {
  margin: 1.8rem 0 0;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.85;
  text-transform: uppercase;
}

.photo-frame {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background: repeating-linear-gradient(
    135deg,
    #4a2745 0 14px,
    #3a1f35 14px 28px
  );
}

.photo-frame img,
.photo-frame picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame span {
  max-width: 65%;
  padding: 0.45rem 0.55rem;
  color: rgb(253 232 210 / 78%);
  background: var(--plum-deep);
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.hero__photo {
  align-self: stretch;
  aspect-ratio: 5 / 4;
  width: 100%;
  min-height: 480px;
  max-height: 620px;
}

.hero__photo img {
  object-position: center 34%;
}

.tagline-strip {
  padding: 1.5rem 0;
  color: var(--plum-deep);
  background: var(--peach);
  text-align: center;
}

.tagline-strip p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tagline-strip span {
  display: block;
  margin-top: 0.25rem;
  color: var(--plum);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-wrap: balance;
}

/* Home sections */
.record-roadmap {
  overflow: hidden;
  background: var(--cream);
}

.record-roadmap__proof {
  padding: 4.75rem 0 5.5rem;
}

.record-roadmap__proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.record-roadmap__intro h2 {
  margin: 0;
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

.record-roadmap__intro h2 span {
  display: block;
}

.record-roadmap__intro h2 span + span {
  color: var(--gold);
}

.record-roadmap__intro p:not(.section-label) {
  max-width: 420px;
  margin: 1.6rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.record-roadmap__record-heading,
.record-roadmap__priority-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.record-roadmap__record-heading {
  padding-bottom: 1.15rem;
  border-bottom: 1.5px solid rgb(87 44 81 / 28%);
}

.record-roadmap__record-heading .section-label {
  margin: 0;
}

.record-roadmap__list {
  display: grid;
  counter-reset: record-proof;
}

.record-roadmap__item {
  counter-increment: record-proof;
  display: grid;
  grid-template-columns: 4.9rem minmax(0, 1fr);
  gap: 1.45rem;
  align-items: center;
  padding: 1.28rem 0;
  border-bottom: 1.5px solid rgb(87 44 81 / 18%);
}

.record-roadmap__item h3,
.record-roadmap__priority h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.record-roadmap__item h3 {
  color: var(--plum-deep);
  font-size: 1.38rem;
}

.record-roadmap__item p {
  margin: 0.34rem 0 0;
  color: rgb(53 43 49 / 78%);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.record-roadmap__icon,
.record-roadmap__priority-icon {
  display: inline-grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
}

.record-roadmap__icon {
  position: relative;
  width: 3.8rem;
  height: 3.8rem;
  overflow: hidden;
  color: var(--plum-deep);
  background: linear-gradient(
    135deg,
    rgb(170 160 91 / 30%),
    rgb(249 180 130 / 22%)
  );
  border: 1px solid rgb(87 44 81 / 18%);
  box-shadow: 0 0.75rem 1.8rem rgb(53 43 49 / 10%);
}

.record-roadmap__icon::before {
  content: "0" counter(record-proof);
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.record-roadmap svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.record-roadmap__icon svg {
  position: absolute;
  right: -0.18rem;
  bottom: -0.18rem;
  width: 2.35rem;
  height: 2.35rem;
  opacity: 0.16;
}

.record-roadmap__priorities {
  position: relative;
  margin-top: -2rem;
  padding: 6.5rem 0 4.75rem;
  color: var(--peach);
  background: var(--plum-deep);
  clip-path: polygon(0 4.5vw, 100% 0, 100% 100%, 0 100%);
}

.record-roadmap__priority-heading {
  margin-bottom: 2.5rem;
}

.record-roadmap__priority-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.record-roadmap__priority-heading p:not(.section-label) {
  max-width: 520px;
  margin: 1rem 0 0;
  color: rgb(249 180 130 / 78%);
  font-size: 1rem;
  line-height: 1.5;
}

.record-roadmap__priority-grid,
.endorsement-preview-grid,
.endorsement-list,
.accomplishments-grid {
  display: grid;
}

.record-roadmap__priority-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.35rem;
  margin-bottom: 2.2rem;
}

.record-roadmap__priority {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  padding-right: 1.8rem;
}

.record-roadmap__priority:not(:last-child) {
  border-right: 1px solid rgb(249 180 130 / 28%);
}

.record-roadmap__priority-icon {
  width: 4.35rem;
  height: 4.35rem;
  color: var(--plum-deep);
  background: var(--peach);
}

.record-roadmap__priority h3 {
  color: var(--peach);
  font-size: 1.45rem;
}

.record-roadmap__priority p {
  margin: 0.75rem 0 0;
  color: rgb(249 180 130 / 76%);
  font-size: 0.95rem;
  line-height: 1.55;
}

.endorsements-strip {
  color: var(--peach);
  background: var(--plum);
}

.endorsement-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(249 180 130 / 25%);
}

.endorsement-preview-grid--cards {
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.endorsement-preview-card {
  display: grid;
  grid-template-columns: minmax(7rem, 34%) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 10.25rem;
  padding: 0;
  border-bottom: 1px solid rgb(249 180 130 / 18%);
  background: rgb(255 255 255 / 4%);
  overflow: hidden;
}

.endorsement-preview-card__avatar {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--plum-deep);
  background: var(--peach);
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.endorsement-preview-card__avatar img,
.endorsement-preview-card__avatar picture {
  width: 100%;
  height: 100%;
}

.endorsement-preview-card__avatar picture {
  display: block;
}

.endorsement-preview-card__avatar img {
  display: block;
  object-fit: cover;
}

.endorsement-preview-card__avatar span {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.endorsement-preview-card h3 {
  margin: 0;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}

.endorsement-preview-card p {
  margin: 0.35rem 0 0;
  color: rgb(249 180 130 / 78%);
  font-size: 0.88rem;
  line-height: 1.45;
}

.endorsement-preview-card > div:last-child {
  padding: 1rem 1rem 1rem 0;
}

.home-cta {
  color: var(--plum-deep);
  background: var(--peach);
}

.home-cta__grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.9fr);
  gap: 4rem;
  align-items: start;
}

.script-accent {
  margin: 0 0 0.2rem;
  color: var(--plum);
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.home-cta h2 {
  max-width: 520px;
  font-size: clamp(3rem, 7vw, 3.75rem);
}

.home-cta p:not(.script-accent, .form-status) {
  max-width: 470px;
  margin: 1.2rem 0 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.campaign-form--compact h3 {
  margin: 0 0 1rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.1rem 0 1.25rem;
}

.campaign-form fieldset label {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--plum);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

/* Shared page layouts */
.page-hero {
  padding: 4rem 0 3.25rem;
  color: var(--peach);
  background: var(--plum-deep);
}

.page-hero h1 {
  max-width: 900px;
  color: var(--peach);
  font-size: clamp(3.4rem, 8vw, 5rem);
}

.page-hero .section-label {
  color: var(--gold-bright);
}

.about-grid,
.split-form-section {
  display: grid;
  align-items: start;
  gap: 4rem;
}

.summary-strip,
.record-summary,
.vote-actions,
.vote-date-grid,
.vote-info-grid {
  display: grid;
}

.summary-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(87 44 81 / 18%);
}

.summary-strip--about {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-strip article,
.record-summary article {
  min-width: 0;
}

.summary-strip--about article {
  min-height: 9rem;
  padding: 1.35rem 1.5rem 1.2rem;
  border-top: 4px solid var(--gold);
  background: transparent;
}

.summary-strip span,
.record-summary span {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.summary-strip p,
.record-summary p {
  margin: 0.45rem 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-grid {
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
}

.about-grid .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 520px;
}

.about-grid .photo-frame img {
  object-position: 24% center;
}

.roles-list-section,
.record-roles,
.tag-list-section,
.split-form-section {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--plum);
}

.roles-list-section h2,
.record-roles h2,
.tag-list-section h2,
.page-inline-cta h2 {
  max-width: 760px;
  margin: 0 0 0.75rem;
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.tag-list-section {
  padding-top: 0;
  border-top: 0;
}

.record-intro-panel {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgb(87 44 81 / 16%);
}

.record-intro-panel__copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.4vw, 3.05rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.record-intro-panel__copy p:not(.section-label) {
  max-width: 620px;
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.65;
}

.record-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.record-summary--strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 2.5rem;
}

.record-summary article {
  min-height: 11rem;
  padding: 1.05rem;
  border: 1px solid rgb(87 44 81 / 16%);
  background: rgb(253 232 210 / 34%);
}

.record-summary--strip article {
  min-height: 0;
  border-top: 2.5px solid var(--gold);
  background: var(--cream);
}

.record-summary p {
  color: var(--muted);
}

.inpage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.65rem 0;
  border-bottom: 2px solid var(--plum);
}

.inpage-nav a {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgb(87 44 81 / 20%);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.inpage-nav a:hover {
  color: var(--plum-deep);
  background: var(--peach-light);
}

.inpage-nav a[aria-current="location"],
.inpage-nav a.is-current {
  color: var(--peach);
  border-color: var(--plum);
  background: var(--plum);
}

/* Record and priorities */
.record-feature-photo,
.vote-feature-photo,
.priority-row__photo {
  overflow: hidden;
}

.record-feature-photo,
.vote-feature-photo {
  aspect-ratio: 16 / 7;
  margin: 0 0 2.5rem;
  background: var(--plum-deep);
}

.record-feature-photo img,
.record-feature-photo picture,
.vote-feature-photo img,
.vote-feature-photo picture,
.priority-row__photo img,
.priority-row__photo picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roles-list article,
.record-role {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgb(87 44 81 / 14%);
}

.roles-list article > div {
  min-width: 0;
}

.roles-list span,
.record-role span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.roles-list h3,
.record-role h3,
.ways-list h3,
.endorsement-list h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.roles-list p,
.record-role > div:first-child p,
.ways-list p,
.endorsement-list p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.roles-list__description {
  max-width: 720px;
  margin-top: 0.55rem;
  color: var(--ink);
  line-height: 1.55;
}

.priority-row {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgb(87 44 81 / 18%);
}

.priority-row:first-child {
  padding-top: 0;
}

.priority-row__heading {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.priority-row__num {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.65;
}

.priority-row h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.priority-row__sub {
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
}

.priority-row__photo {
  aspect-ratio: 16 / 9;
  margin-top: 2rem;
  background: var(--plum-deep);
}

.priority-row__photo--state-advocacy {
  max-width: 620px;
}

.priority-row__photo img {
  object-position: center 42%;
}

.vote-feature-photo img {
  object-position: center 38%;
}

.priority-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--plum-deep);
}

.priority-cta h2 {
  margin: 0;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.accomplishments-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 5rem;
}

.accomplishments-grid article {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  min-height: 7.1rem;
  padding: 1.15rem;
  border: 1px solid rgb(87 44 81 / 14%);
  background: rgb(255 255 255 / 34%);
}

.accomplishments-grid span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--plum);
}

.accomplishments-grid svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accomplishments-grid p {
  margin: 0;
  line-height: 1.55;
}

.record-role {
  align-items: start;
  padding: 2rem 0;
}

.record-role > div:nth-child(2) > p {
  margin: 0.5rem 0 0.8rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.record-role blockquote {
  padding-left: 0.9rem;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  line-height: 1.55;
}

.record-role blockquote b {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
}

.community-list li {
  padding-left: 0.1rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 404 */
.not-found-section {
  padding-top: 3.5rem;
}

.not-found-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.not-found-panel__intro {
  padding: 2rem;
  border: 1.5px solid var(--plum);
  color: var(--plum-deep);
  background: var(--peach);
}

.not-found-panel__intro h2 {
  max-width: 12ch;
  margin: 0.25rem 0 1rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
}

.not-found-panel__intro p:not(.section-label) {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.not-found-links {
  display: grid;
  gap: 1rem;
}

.not-found-links a {
  display: grid;
  align-content: center;
  min-height: 8rem;
  padding: 1.25rem;
  border: 1.5px solid rgb(87 44 81 / 18%);
  color: var(--ink);
  background: var(--cream-2);
  text-decoration: none;
}

.not-found-links a:hover {
  background: var(--peach-light);
}

.not-found-links span {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.not-found-links span::after {
  content: " \2192";
}

.not-found-links p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

/* Endorsements */
.endorsement-groups {
  display: grid;
  gap: 4rem;
}

.endorsement-group__heading {
  display: block;
  max-width: 760px;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--plum);
}

.endorsement-group__heading .section-label {
  margin-bottom: 0.35rem;
  color: var(--plum);
}

.endorsement-group__heading h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.endorsement-group__heading p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.endorsement-list--officials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.endorsement-list--officials article {
  display: grid;
  grid-template-columns: minmax(7rem, 34%) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  min-height: 10rem;
  padding: 0;
  border: 1px solid rgb(87 44 81 / 15%);
  background: var(--cream-2);
  overflow: hidden;
}

.endorsement-headshot {
  display: grid;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: var(--peach);
  background: var(--plum);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.endorsement-headshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.endorsement-headshot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.endorsement-list--officials article > div:last-child {
  padding: 1rem 1rem 1rem 0;
}

.endorsement-list--leaders,
.endorsement-list--supporters,
.endorsement-list--organizations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.5rem;
  border-top: 0;
}

.endorsement-list--leaders article,
.endorsement-list--supporters article,
.endorsement-list--organizations article {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgb(87 44 81 / 18%);
  min-width: 0;
}

.endorsement-list--supporters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.endorsement-list h3 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.endorsement-list--leaders h3,
.endorsement-list--supporters h3,
.endorsement-list--organizations h3 {
  font-size: 1.28rem;
}

.endorsement-placeholder {
  max-width: 520px;
  padding: 1.35rem;
  border: 2px dashed rgb(87 44 81 / 36%);
  background: rgb(253 232 210 / 36%);
}

.endorsement-placeholder h3 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.endorsement-placeholder p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.endorsement-action {
  margin: 1.25rem 0 2rem;
}

.endorsement-list small {
  display: block;
  margin-top: 0.35rem;
  color: rgb(109 86 101 / 76%);
  font-size: 0.68rem;
  line-height: 1.25;
}

.split-form-section {
  grid-template-columns: 1fr 1.15fr;
}

.split-form-section h2 {
  margin: 0 0 1rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.split-form-section p {
  max-width: 520px;
}

.involved-signup {
  padding-top: 0;
  background: var(--plum-deep);
}

.involved-signup__inner {
  max-width: 900px;
}

.involved-signup__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 4rem;
  align-items: start;
}

.involved-signup .page-intro {
  max-width: 660px;
  margin: 0 0 1.5rem;
  color: var(--peach-light);
}

.ways-list article {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(87 44 81 / 15%);
}

.ways-card {
  display: grid;
  gap: 0.75rem;
}

.ways-card .btn,
.ways-card .text-link {
  justify-self: start;
}

/* Forms */
.campaign-form {
  padding: 2.25rem;
  border: 1.5px solid var(--plum-deep);
  background: var(--cream-2);
}

.campaign-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.campaign-form .field {
  display: block;
  margin-bottom: 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 1.5px solid rgb(87 44 81 / 28%);
}

.field__label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field:has([required]) .field__label::after {
  content: " *";
}

.field__input,
.campaign-form input:not([type="checkbox"]) {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.campaign-form .field--dark {
  border-bottom-color: rgb(249 180 130 / 50%);
}

.field--dark .field__label {
  color: rgb(249 180 130 / 75%);
}

.field--dark .field__input {
  color: var(--peach);
}

.campaign-form--dark .field__input,
.campaign-form--dark input:not([type="checkbox"]) {
  color: var(--peach);
}

.field--dark .field__input::placeholder {
  color: rgb(249 180 130 / 45%);
  font-style: italic;
}

.campaign-form--dark .field__input::placeholder {
  color: rgb(249 180 130 / 45%);
}

.field--dark .field-error {
  color: #ffd8d8;
}

.campaign-form .field.is-invalid {
  border-bottom-color: #9e1b32;
  box-shadow: 0 1px 0 #9e1b32;
}

.campaign-form input.is-invalid {
  border-bottom-color: #9e1b32;
  box-shadow: 0 1px 0 #9e1b32;
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  color: #9e1b32;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.campaign-form--dark {
  border-color: rgb(249 180 130 / 50%);
  background: rgb(255 255 255 / 10%);
}

.campaign-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 1.5rem;
  padding: 0;
  border: 0;
}

.campaign-form legend {
  width: 100%;
  margin-bottom: 0.4rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.campaign-form--dark legend {
  color: rgb(249 180 130 / 85%);
}

.campaign-form--dark .form-status {
  color: var(--peach-light);
}

.campaign-form fieldset label,
.campaign-form .interest-option {
  margin: 0;
}

.campaign-form .interest-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  cursor: pointer;
}

.campaign-form .interest-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.campaign-form .interest-option span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.52rem 0.85rem 0.52rem 1.22rem;
  border: 1.5px solid transparent;
  color: var(--plum);
  background: rgb(253 232 210 / 62%);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.campaign-form--dark .interest-option span {
  color: var(--peach);
  border-color: rgb(249 180 130 / 60%);
  background: transparent;
}

.campaign-form .interest-option span::before {
  content: "✓";
  position: absolute;
  left: 0.55rem;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  opacity: 0;
}

.campaign-form .interest-option input:checked + span {
  color: var(--peach);
  border-color: var(--plum);
  background: var(--plum);
}

.campaign-form .interest-option input:checked + span::before {
  opacity: 1;
}

.campaign-form--dark .interest-option input:checked + span {
  color: var(--plum-deep);
  border-color: var(--peach);
  background: var(--peach);
}

.campaign-form .interest-option input:focus-visible + span {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--peach);
}

.fine-print,
.form-status {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-status {
  text-align: left;
}

.form-status:not(:empty) {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.8rem 0.95rem;
  border: 2px solid currentcolor;
  font-weight: 800;
  line-height: 1.4;
}

.form-status--success {
  color: #1f5e38;
  background: #e7f6ec;
}

.form-status--success::before {
  content: "✓";
  flex: 0 0 auto;
  font-family: var(--font-display);
}

.form-status--warning,
.form-status--error {
  color: #9e1b32;
  background: #fff0f0;
}

.campaign-form--dark .form-status--success {
  color: #d8f5df;
  background: #1f5e38;
}

.campaign-form--dark .form-status--warning,
.campaign-form--dark .form-status--error {
  color: #ffd8d8;
  background: rgb(158 27 50 / 22%);
}

/* FAQ and voting */
.faq-container {
  max-width: 860px;
}

.faq-section {
  margin-bottom: 3.5rem;
}

.faq-section h2 {
  margin: 0.35rem 0 1.2rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.1;
}

.faq-list {
  border-top: 2px solid var(--plum);
}

.faq-list details {
  border-bottom: 1px solid rgb(87 44 81 / 18%);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  color: var(--plum);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-size: 1.25rem;
  font-weight: 800;
}

.review-note {
  max-width: 820px;
  margin: -1rem 0 2rem;
  padding: 0.95rem 1rem;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  background: var(--cream-2);
  font-size: 0.9rem;
}

.review-note b {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vote-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 3.5rem;
}

.vote-next-deadline {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1.5px solid rgb(87 44 81 / 18%);
  background: linear-gradient(
    135deg,
    rgb(253 232 210 / 72%),
    rgb(255 255 255 / 68%)
  );
}

.vote-next-deadline h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.05;
}

.vote-next-deadline p {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.vote-actions a {
  min-height: 170px;
  padding: 1.25rem;
  border: 1.5px solid var(--plum);
  color: var(--ink);
  background: var(--cream-2);
  text-decoration: none;
}

.vote-actions a:hover {
  color: var(--ink);
  background: var(--peach-light);
}

.vote-actions span {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.vote-actions span::after {
  content: " \2192";
}

.vote-actions p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.vote-dates {
  margin-bottom: 3.5rem;
}

.vote-date-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 2px solid var(--plum);
}

.vote-date-grid article {
  padding: 1.25rem 1rem 1.5rem;
  border-right: 1px solid rgb(87 44 81 / 16%);
}

.vote-date-grid article:last-child {
  border-right: 0;
}

.vote-date-grid time {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vote-date-grid h3,
.vote-info-card h2,
.official-resources h2 {
  margin: 0.55rem 0 0.4rem;
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
}

.vote-date-grid h3 {
  font-size: 1.05rem;
}

.vote-date-grid p,
.vote-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.vote-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  margin-bottom: 4rem;
}

.vote-info-card {
  padding-top: 1.25rem;
  border-top: 1.5px solid var(--plum);
}

.vote-info-card h2,
.official-resources h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.vote-info-card p + p {
  margin-top: 0.7rem;
}

.vote-info-card ul,
.official-resources ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.vote-info-card a,
.official-resources a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
}

.vote-info-card a::after,
.official-resources a::after {
  content: " \2197";
  font-size: 0.82em;
}

.official-resources {
  padding: 1.5rem;
  border: 2px solid var(--plum);
  background: rgb(253 232 210 / 42%);
}

.official-resources .section-label {
  color: var(--plum);
}

.vote-closing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
  padding: 1.35rem 1.5rem;
  border: 1.5px solid rgb(87 44 81 / 18%);
  background: var(--cream-2);
}

.vote-closing h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.05;
}

.vote-closing p {
  max-width: 700px;
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.vote-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.faq-list p {
  margin: 0;
  padding: 0 0 1.5rem;
}

.faq-closing {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
  border: 1.5px solid rgb(87 44 81 / 18%);
  background: var(--cream-2);
}

.faq-closing h2 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.05;
}

/* Footer */
.footer {
  color: var(--peach);
  background: var(--plum-deep);
  border-top: 3px solid var(--gold-bright);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.footer__wordmark {
  color: var(--peach);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-decoration: none;
}

.footer__wordmark:hover {
  color: var(--peach);
}

.footer__sub {
  margin: 0.5rem 0 0;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.footer__script {
  margin: 1rem 0 0;
  color: rgb(249 180 130 / 78%);
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.footer__contact {
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.footer .footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer .footer__social-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  min-height: 0;
  height: 28px;
  border: 1px solid rgb(249 180 130 / 35%);
  border-radius: 50%;
  color: var(--gold-bright);
  text-decoration: none;
}

.footer__social-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer h2 {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  color: rgb(249 180 130 / 78%);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer a:hover {
  color: var(--peach);
}

.footer__reviewed {
  margin: 0.9rem 0 0;
  color: rgb(249 180 130 / 78%);
  font-size: 0.76rem;
}

.footer__bottom {
  border-top: 1px solid rgb(249 180 130 / 20%);
}

.footer__bottom-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  color: rgb(249 180 130 / 78%);
  font-size: 0.72rem;
}

.footer__bottom a {
  display: inline;
  min-height: 0;
  color: var(--peach);
  text-decoration: underline;
}

/* Responsive */
@media (width <= 960px) {
  .nav__inner {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    flex: 0 0 calc(100% + 3rem);
    order: 4;
    margin: 0 -1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--plum-deep);
    box-shadow: 0 18px 24px rgb(0 0 0 / 24%);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }

  .nav__links .nav__get-involved,
  .nav__links .nav__donate {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.5rem;
    width: 100%;
  }

  .nav__action--inline {
    display: none;
  }

  .hero__grid,
  .about-grid,
  .record-roadmap__proof-grid,
  .home-cta__grid,
  .involved-signup__grid,
  .split-form-section,
  .vote-info-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero__photo {
    max-width: 520px;
    min-height: 0;
  }

  .about-grid .photo-frame {
    justify-self: start;
    width: 100%;
    max-width: 520px;
    min-height: 0;
  }

  .record-roadmap__proof {
    padding-bottom: 4.75rem;
  }

  .record-roadmap__intro p:not(.section-label) {
    max-width: 620px;
  }

  .record-roadmap__priority-grid {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  .record-roadmap__priority {
    padding: 0 0 1.65rem;
    border-bottom: 1px solid rgb(249 180 130 / 22%);
    border-right: 0;
  }

  .record-roadmap__priority:not(:last-child) {
    border-right: 0;
  }

  .summary-strip,
  .record-summary,
  .vote-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .record-intro-panel,
  .endorsement-group__heading {
    grid-template-columns: 1fr;
  }

  .endorsement-list--officials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vote-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vote-date-grid article:nth-child(even),
  .vote-date-grid article:last-child {
    border-right: 0;
  }

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

@media (width <= 680px) {
  .container {
    padding: 0 1rem;
  }

  .nav__links {
    flex-basis: calc(100% + 2rem);
    margin: 0 -1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-heading--split {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__grid {
    gap: 2.25rem;
  }

  .hero__name {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  .hero__body {
    font-size: 1.05rem;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    overflow-wrap: break-word;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 9.2vw, 3rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .endorsement-preview-grid,
  .endorsement-list,
  .accomplishments-grid,
  .summary-strip,
  .record-summary,
  .endorsement-list--officials,
  .endorsement-list--leaders,
  .endorsement-list--supporters,
  .endorsement-list--organizations,
  .vote-actions,
  .vote-date-grid {
    grid-template-columns: 1fr;
  }

  .record-intro-panel {
    gap: 1.5rem;
  }

  .record-summary article,
  .accomplishments-grid article {
    min-height: 0;
  }

  .community-list {
    grid-template-columns: 1fr;
  }

  .not-found-panel {
    grid-template-columns: 1fr;
  }

  .not-found-panel__intro {
    padding: 1.5rem;
  }

  .endorsement-list--officials article {
    grid-template-columns: minmax(5.8rem, 34%) minmax(0, 1fr);
    min-height: 0;
  }

  .endorsement-headshot {
    min-height: 0;
  }

  .record-roadmap__proof {
    padding: 3.5rem 0 4.2rem;
  }

  .record-roadmap__intro h2 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .record-roadmap__record-heading,
  .record-roadmap__priority-heading {
    align-items: start;
    flex-direction: column;
  }

  .record-roadmap__item,
  .record-roadmap__priority {
    grid-template-columns: 3.65rem minmax(0, 1fr);
    gap: 1rem;
  }

  .record-roadmap__icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .record-roadmap__priority-icon {
    width: 3.45rem;
    height: 3.45rem;
  }

  .record-roadmap svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .record-roadmap__priorities {
    margin-top: -1.35rem;
    padding: 5rem 0 3.5rem;
    clip-path: polygon(0 2.5rem, 100% 0, 100% 100%, 0 100%);
  }

  .record-roadmap__priority-heading h2 {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .vote-date-grid article {
    border-right: 0;
    border-bottom: 1px solid rgb(87 44 81 / 16%);
  }

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

  .roles-list article,
  .record-role {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .priority-row {
    padding: 2.75rem 0;
  }

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

  .record-feature-photo,
  .vote-feature-photo,
  .priority-row__photo {
    aspect-ratio: 4 / 3;
  }

  .campaign-form {
    padding: 1.5rem;
  }

  .campaign-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__grid,
  .footer__bottom-inner {
    grid-template-columns: 1fr;
  }

  .footer__grid li a {
    min-height: 2.75rem;
    padding: 0.2rem 0;
  }

  .footer .footer__social-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .footer__bottom-inner {
    display: grid;
  }
}
