:root {
  --blue-950: #071a34;
  --blue-900: #0f2b53;
  --blue-800: #12386d;
  --blue-600: #145da0;
  --cyan-500: #00adf0;
  --red-600: #e31b2f;
  --red-700: #c51328;
  --ink: #142033;
  --muted: #5d6b7f;
  --line: #d9e1eb;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --ice: #eaf4ff;
  --shadow: 0 26px 70px rgba(7, 26, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only,
.hidden {
  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: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 16px clamp(18px, 4vw, 56px) 13px;
  background: rgba(7, 26, 52, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
}

.brand img {
  width: min(620px, 84vw);
  height: auto;
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  transition: filter 180ms ease, opacity 150ms ease;
}

body:not(.home-page) .brand:hover img,
body:not(.home-page) .brand:focus-visible img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)) drop-shadow(0 0 11px rgba(179, 219, 244, 0.08));
}

body:not(.home-page) .brand:active img {
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 7px 16px 10px;
  opacity: 0.9;
  text-decoration: none;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: opacity 150ms ease, text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
  background: transparent;
  opacity: 1;
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.62), 0 0 20px rgba(179, 219, 244, 0.3);
}

.site-nav a[aria-current="page"] {
  color: white;
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.28);
}

.site-nav a:active {
  color: white;
  background: transparent;
  opacity: 0.72;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.22);
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 17px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.6rem;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--blue-950);
  font-size: clamp(2.55rem, 5.2vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: none;
  text-wrap: balance;
}

h2 {
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-950);
  font-size: 1.24rem;
  line-height: 1.15;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  grid-template-rows: auto auto;
  column-gap: clamp(34px, 6vw, 74px);
  row-gap: clamp(24px, 3vw, 38px);
  align-items: start;
  padding: clamp(42px, 6vw, 78px) 0 clamp(46px, 6vw, 82px);
}

.hero > h1 {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 1080px);
  margin-bottom: 0;
  text-align: center;
}

.no-break {
  white-space: nowrap;
}

.hero-copy {
  width: min(100%, 450px);
  justify-self: center;
  padding-top: clamp(20px, 2vw, 31px);
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
}

.hero-actions,
.icon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--red-600);
  box-shadow: 0 12px 30px rgba(227, 27, 47, 0.24);
}

.button.primary:hover {
  background: var(--red-700);
}

.button.secondary {
  color: var(--blue-900);
  border-color: var(--blue-900);
  background: white;
}

.text-link {
  display: inline-flex;
  color: var(--blue-800);
  font-weight: 900;
  text-decoration-color: var(--red-600);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.hero-stage {
  position: relative;
  min-height: min(610px, 64vw);
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 9% 5% 5% 0;
  z-index: -3;
  border: 1px solid rgba(20, 93, 160, 0.18);
  border-radius: 8px;
  background: var(--ice);
  transform: rotate(-3deg);
}

.motion-disc {
  position: absolute;
  top: 5%;
  left: 50%;
  width: min(86%, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.14) contrast(1.08);
  transform: translateX(2.6%) scale(1.07);
}

.candidate-lockup {
  position: absolute;
  left: -2%;
  bottom: 1.5%;
  z-index: 3;
  width: min(92%, 500px);
  height: 220px;
}

.portrait-badge {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 2;
  width: 205px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 9px solid white;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
}

.portrait-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: translateX(5%) scale(1.12);
}

.history-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(62%, 310px);
  padding: 24px 24px 23px 30px;
  color: white;
  background: var(--blue-900);
  border-left: 6px solid var(--red-600);
  box-shadow: var(--shadow);
}

.history-card span {
  display: block;
}

.history-card .stat {
  width: max-content;
  max-width: 100%;
  margin-bottom: 6px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
}

.history-card .role-line,
.history-card .riding-line {
  width: max-content;
  white-space: nowrap;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-style: italic;
  font-weight: 600;
}

.history-card .role-line {
  font-size: 1.05rem;
}

.history-card .riding-line {
  margin-top: 5px;
  font-size: 1.2rem;
}

.priority-band {
  background-color: var(--blue-950);
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 14px);
}

.priority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: clamp(58px, 7vw, 92px) 0;
}

.priority-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 55px rgba(7, 26, 52, 0.09);
}

.priority-media {
  display: grid;
  align-items: center;
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf4ff 0%, #ffffff 100%);
}

.priority-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer-card img {
  object-position: center bottom;
}

.priority-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 5vw, 58px);
}

.priority-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.kurt-band {
  position: relative;
  overflow: hidden;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.kurt-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(58px, 8vw, 105px) 0;
}

.kurt-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 14px;
  border-radius: 8px;
  background: rgba(225, 239, 252, 0.68);
  border: 1px solid rgba(20, 93, 160, 0.24);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.92), 0 22px 58px rgba(7, 26, 52, 0.17);
  backdrop-filter: blur(24px) saturate(1.08);
}

.kurt-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background-color: #0b2442;
  background-image: linear-gradient(rgba(5, 24, 49, 0.08), rgba(5, 24, 49, 0.16)), url("assets/kurt-royal-blue-flag-bg.png");
  background-position: center right;
  background-size: cover;
  box-shadow: inset 0 18px 42px rgba(255, 255, 255, 0.04), inset 0 -24px 46px rgba(0, 0, 0, 0.28);
}

.kurt-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border-radius: 5px;
  background-image: radial-gradient(ellipse 31% 52% at 50% 50%, rgba(205, 232, 255, 0.52) 0%, rgba(116, 184, 239, 0.3) 22%, rgba(62, 139, 209, 0.13) 43%, transparent 64%), radial-gradient(ellipse 29% 48% at 50% 50%, rgba(183, 224, 255, 0.46) 0%, rgba(60, 172, 229, 0.25) 20%, rgba(0, 122, 190, 0.11) 42%, transparent 62%);
  background-position: -18% -8%, 118% 108%;
  background-size: 132% 132%, 136% 136%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  opacity: 0.97;
  animation: texture-spotlights 8.5s ease-in-out infinite alternate;
}

.kurt-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 447px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 17px 14px rgba(0, 0, 0, 0.38));
}

@keyframes texture-spotlights {
  from {
    background-position: -18% -8%, 118% 108%;
    opacity: 0.86;
  }

  to {
    background-position: 30% 26%, 70% 68%;
    opacity: 1;
  }
}

.kurt-copy h2 {
  color: var(--blue-950);
}

.kurt-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.kurt-copy .social-intro {
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.kurt-copy .office-intro {
  margin-top: 26px;
  margin-bottom: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.icon-actions {
  margin-top: 26px;
}

.kurt-copy .icon-actions {
  margin-top: 0;
}

.icon-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.icon-actions i {
  font-size: 1.18rem;
}

.icon-actions a:hover {
  color: white;
  background: var(--blue-900);
}

.kurt-copy .icon-actions a {
  color: var(--blue-900);
  background: white;
  border-color: rgba(15, 43, 83, 0.3);
  box-shadow: 0 8px 20px rgba(7, 26, 52, 0.08);
}

.kurt-copy .icon-actions a:hover {
  color: var(--blue-950);
  background: var(--cyan-500);
  border-color: var(--cyan-500);
}

.office-actions {
  align-items: center;
}

.social-actions {
  gap: 10px;
}

.reveal-slot {
  position: relative;
  z-index: 1;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.reveal-slot > .contact-reveal {
  position: absolute;
  top: 0;
  left: 0;
}

.reveal-slot:hover,
.reveal-slot:focus-within {
  z-index: 6;
}

.contact-reveal {
  --contact-width: 304px;
  position: relative;
  display: flex;
  align-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: var(--blue-900);
  background: white;
  border: 1px solid rgba(15, 43, 83, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(7, 26, 52, 0.08);
  transition: width 190ms ease-out, box-shadow 150ms ease;
}

.contact-reveal:hover,
.contact-reveal:focus-within {
  width: var(--contact-width);
  box-shadow: 0 9px 22px rgba(7, 26, 52, 0.11);
}

.social-reveal {
  --contact-width: 220px;
}

.social-reveal .contact-value {
  font-size: 0.76rem;
}

.social-reveal .copy-contact {
  right: 5px;
  width: 36px;
}

.social-reveal:hover .contact-direct,
.social-reveal:focus-within .contact-direct {
  padding-right: 46px;
}

.website-reveal {
  --contact-width: 260px;
}

.phone-reveal {
  --contact-width: 212px;
}

.kurt-copy .contact-reveal .contact-direct {
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: padding-right 220ms ease, background 160ms ease;
}

.contact-reveal:hover .contact-direct,
.contact-reveal:focus-within .contact-direct {
  padding-right: 54px;
}

.kurt-copy .contact-reveal .contact-direct:hover {
  color: var(--blue-900);
  background: var(--ice);
}

.contact-direct i {
  flex: 0 0 20px;
  text-align: center;
}

.contact-value {
  opacity: 0;
  font-size: 0.87rem;
  font-weight: 800;
  transition: opacity 110ms ease 35ms;
}

.contact-reveal:hover .contact-value,
.contact-reveal:focus-within .contact-value {
  opacity: 1;
}

.copy-contact {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  padding: 0;
  color: var(--blue-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 110ms ease 35ms, transform 150ms ease-out, background 140ms ease;
}

.contact-reveal:hover .copy-contact,
.contact-reveal:focus-within .copy-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.copy-contact:hover,
.copy-contact.is-copied {
  color: white;
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.newsletter-button {
  margin: 0;
}

.engage-band {
  background-color: #f7f9fc;
  background-image: repeating-linear-gradient(135deg, rgba(15, 43, 83, 0.055) 0, rgba(15, 43, 83, 0.055) 1px, transparent 1px, transparent 14px);
  border-top: 1px solid var(--line);
}

.engage-layout {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(56px, 7vw, 96px) 0;
}

.engage-heading h2 {
  max-width: none;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

.engage-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: left;
}

.engage-heading {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.membership-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 26, 52, 0.1);
}

.membership-media {
  position: relative;
  align-self: center;
  width: 100%;
  overflow: hidden;
  background: var(--blue-950);
}

.membership-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 2464 / 1332;
  object-fit: contain;
}

.convention-caption {
  margin: 0;
  padding: 13px 18px 14px;
  color: white;
  background: var(--blue-950);
  border-left: 5px solid var(--red-600);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
}

.membership-copy {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: clamp(30px, 5vw, 58px);
}

.membership-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.membership-point > i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--blue-900);
  border-radius: 6px;
  font-size: 1.35rem;
}

.membership-point h3,
.membership-point p {
  margin-bottom: 0;
}

.membership-point p {
  margin-top: 6px;
  color: var(--muted);
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.membership-eda-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: none;
}

.membership-eda-link:hover {
  color: var(--red-600);
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 22px clamp(18px, 4vw, 56px);
  color: #d7e3f0;
  background: var(--blue-950);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.authorization {
  max-width: 760px;
  margin: 0;
  color: rgba(215, 227, 240, 0.82);
  font-size: 0.78rem;
}

.form-page {
  background: linear-gradient(180deg, white 0, var(--soft) 100%);
}

.form-hero {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(42px, 6vw, 84px) 0 38px;
}

.form-hero-simple {
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: clamp(28px, 4vw, 46px);
}

.form-hero-simple > div {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.form-hero-simple .hero-lede {
  margin-right: auto;
  margin-left: auto;
}

.form-hero-simple h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.65rem);
  line-height: 0.98;
}

.form-hero img,
.form-art {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-hero img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: white;
}

.form-art {
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue-900);
  border-bottom: 8px solid var(--red-600);
}

.form-art i {
  font-size: clamp(5rem, 12vw, 9rem);
}

.form-section {
  padding: 0 0 clamp(58px, 8vw, 100px);
}

.volunteer-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: clamp(44px, 6vw, 72px);
}

.volunteer-paths article {
  padding: clamp(24px, 3vw, 34px);
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue-600);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(7, 26, 52, 0.08);
}

.volunteer-paths article:nth-child(2) {
  border-top-color: var(--blue-600);
}

.volunteer-paths i {
  color: var(--red-600);
  font-size: 1.45rem;
}

.volunteer-paths h2 {
  margin-top: 18px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.volunteer-paths p,
.convention-feature p {
  color: var(--muted);
}

.convention-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding-bottom: clamp(48px, 7vw, 84px);
}

.full-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-form {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(7, 26, 52, 0.12);
}

.panel-form h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label,
legend {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c8d3df;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(20, 93, 160, 0.22);
  border-color: var(--blue-600);
}

fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
  margin: 8px 0 18px;
  padding: 0;
  border: 0;
}

fieldset label,
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (min-width: 981px) and (max-width: 1125px) {
  .portrait-badge {
    width: min(44%, 191px);
  }

  .history-card {
    width: 65%;
    padding-left: 34px;
  }
}

@media (max-width: 980px) {
  .hero,
  .priority-card,
  .kurt-feature,
  .form-hero,
  .convention-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-stage {
    min-height: 570px;
  }

  .motion-disc {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

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

  .kurt-feature {
    max-width: 760px;
  }

  .membership-feature {
    grid-template-columns: 1fr;
  }

  .engage-heading h2 {
    white-space: normal;
  }

  .volunteer-paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 78px;
    align-content: center;
    justify-items: start;
    padding: 14px 18px;
  }

  .brand img {
    width: min(310px, calc(100vw - 86px));
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    width: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: var(--blue-950);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  h1 {
    font-size: 2.31rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-stage {
    min-height: 470px;
  }

  .motion-disc {
    top: 0;
    width: 90%;
  }

  .candidate-lockup {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 160px;
  }

  .portrait-badge {
    bottom: 24px;
    width: 38%;
  }

  .history-card {
    right: 0;
    width: 64%;
    padding: 17px 14px 16px 21px;
  }

  .history-card .stat {
    font-size: 1.45rem;
  }

  .history-card .role-line {
    font-size: 0.8rem;
  }

  .history-card .riding-line {
    margin-top: 3px;
    font-size: 0.94rem;
  }

  .hero-actions .button,
  .priority-copy .button,
  .panel-form .button {
    width: 100%;
  }

  .field-grid,
  fieldset {
    grid-template-columns: 1fr;
  }

  .membership-actions .button {
    width: 100%;
  }

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

  .social-actions {
    display: flex;
    width: auto;
  }

  .social-actions .reveal-slot,
  .office-actions .reveal-slot {
    width: 100%;
  }

  .social-actions .reveal-slot {
    flex: 0 0 48px;
    width: 48px;
  }

  .social-row .newsletter-button {
    width: 100%;
  }

  .contact-reveal,
  .contact-reveal:hover,
  .contact-reveal:focus-within {
    width: 100%;
  }

  .contact-value,
  .copy-contact {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .contact-reveal .contact-direct {
    padding-right: 54px;
  }

  .social-actions .contact-reveal,
  .social-actions .contact-reveal:hover,
  .social-actions .contact-reveal:focus-within {
    width: 48px;
  }

  .social-actions .contact-value,
  .social-actions .copy-contact {
    display: none;
  }

  .social-actions .contact-direct,
  .social-actions .contact-reveal:hover .contact-direct,
  .social-actions .contact-reveal:focus-within .contact-direct {
    padding-right: 13px;
  }

  .form-hero img,
  .form-art {
    min-height: 250px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.7rem;
  }

  .brand img {
    width: min(280px, calc(100vw - 108px));
  }
}

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

  .button {
    transition: none;
  }

  .contact-reveal,
  .contact-value,
  .copy-contact {
    transition: none;
  }

  .hero-video {
    display: none;
  }

  .kurt-photo::after {
    animation: none;
  }

}
