﻿:root {
  --red: #b91c1c;
  --red-dark: #7f1d1d;
  --blue: #163b72;
  --blue-dark: #07182f;
  --ink: #111827;
  --muted: #667085;
  --line: #d7dce5;
  --soft: #f4f6fa;
  --white: #fff;
  --gold: #d6a73a;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--gold);
  color: #07182f;
  border: 2px solid #07182f;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 900;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.hub {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(9, 24, 54, .9), rgba(113, 18, 28, .86)),
    image-set(url("./assets/kanegop/generated/gallery-01-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-01.jpg") type("image/jpeg")) center/cover;
  padding: 28px;
}

.hub-shell {
  width: min(980px, 100%);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.hub-logo { width: min(280px, 72vw); margin-bottom: 24px; }
.hub h1 { margin: 0 0 12px; font-size: clamp(36px, 7vw, 72px); line-height: .96; max-width: 760px; }
.lede { color: #344054; font-size: 18px; line-height: 1.55; max-width: 760px; }
.demo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.demo-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--white); min-height: 230px; display: flex; flex-direction: column; gap: 12px; transition: transform .18s, box-shadow .18s; }
.demo-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(12, 23, 43, .14); }
.demo-card span { color: var(--blue); font-weight: 800; text-transform: uppercase; font-size: 13px; }
.demo-card strong { font-size: 27px; }
.demo-card p { color: var(--muted); line-height: 1.5; margin: 0; }
.demo-card-red span { color: var(--red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.dark { background: rgba(5, 16, 34, .94); border-bottom-color: rgba(255, 255, 255, .1); color: var(--white); }
.brand img { width: min(270px, 42vw); max-height: 76px; object-fit: contain; }
.brand.compact img { width: min(230px, 42vw); filter: drop-shadow(0 10px 20px rgba(0,0,0,.25)); }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; }
.main-nav a { white-space: nowrap; }
.nav-donate { color: var(--white); background: var(--red); padding: 11px 16px; border-radius: var(--radius); }
.menu-button { display: none; border: 1px solid currentColor; background: transparent; border-radius: var(--radius); padding: 9px 12px; color: inherit; }

.eyebrow { margin: 0 0 10px; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: 0; color: var(--red); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { text-wrap: balance; }
h2 { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.16; margin: 0 0 14px; padding-bottom: 2px; }
h3 { margin: 0 0 8px; line-height: 1.22; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }
.button { border: 1px solid transparent; border-radius: var(--radius); padding: 12px 18px; font-weight: 850; display: inline-flex; align-items: center; justify-content: center; min-height: 46px; cursor: pointer; }
.primary { color: var(--white); background: var(--red); }
.secondary { color: var(--blue); border-color: var(--blue); background: var(--white); }
.ghost { color: var(--white); border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.08); }
.inline-link { display: inline-flex; margin-top: 16px; color: var(--red); font-weight: 900; }
.light-button {
  color: var(--white);
  border-color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08);
  margin: 10px 0 24px;
}
.light-button:hover,
.light-button:focus-visible { background: rgba(255,255,255,.18); border-color: var(--white); }

.a-hero { min-height: 660px; display: grid; grid-template-columns: 1.12fr .88fr; }
.hero-slider { position: relative; min-height: 660px; overflow: hidden; background: var(--blue-dark); }
.hero-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 800ms ease; }
.hero-slider img.active { opacity: 1; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 70px); background: linear-gradient(180deg, #fff, #f6f8fb); }
.hero-copy h1 { font-size: clamp(40px, 5.4vw, 70px); line-height: 1.03; margin: 0 0 20px; padding-bottom: 2px; }
.hero-copy p:not(.eyebrow) { color: #344054; font-size: 18px; line-height: 1.55; margin: 0 0 24px; }

.meeting-band, .mission-bar { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; padding: 34px clamp(18px, 5vw, 64px); background: var(--blue); color: var(--white); }
.meeting-band .eyebrow, .mission-bar .eyebrow { color: #ffd66b; }
.meeting-band p { margin: 0; color: rgba(255,255,255,.84); }
.date-card { min-width: 260px; padding: 18px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); background: rgba(255,255,255,.09); }
.date-card span { font-size: 34px; font-weight: 900; color: #ffd66b; display: block; }
.date-card small { color: rgba(255,255,255,.75); }
.election-dates { display: grid; grid-template-columns: repeat(2, minmax(170px, 1fr)); gap: 18px; min-width: min(520px, 100%); }
.election-dates > div + div { border-left: 1px solid rgba(255,255,255,.22); padding-left: 18px; }

.election-center {
  padding: clamp(40px, 6vw, 76px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .96), rgba(22, 59, 114, .9) 52%, rgba(127, 29, 29, .84)),
    image-set(url("./assets/kanegop/generated/gallery-01-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-01.jpg") type("image/jpeg")) center/cover;
}
.election-shell {
  display: grid;
  grid-template-columns: minmax(220px, .62fr) minmax(360px, 1fr) minmax(300px, .82fr);
  grid-template-areas: "date main quick";
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(5, 16, 34, .82), rgba(10, 34, 69, .68));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
  backdrop-filter: blur(10px);
}
.election-center .eyebrow { color: #ffd66b; }
.election-main {
  align-self: center;
  padding: clamp(6px, 1vw, 12px) 0;
}
.election-center h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.02;
}
.election-main p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.6;
}
.election-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.election-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  color: #07182f;
  background: #ffd66b;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}
.election-button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}
.election-date-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 292px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: linear-gradient(160deg, #fff, #fff4d4);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .2);
  overflow: hidden;
}
.election-date-hero span,
.quick-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.election-date-hero strong {
  margin: 10px 0;
  font-size: clamp(58px, 6.2vw, 84px);
  line-height: .92;
  overflow-wrap: normal;
  word-break: normal;
}
.election-date-hero p {
  max-width: 240px;
  margin: 0;
  color: #344054;
  font-weight: 850;
  line-height: 1.4;
}
.election-quick-list {
  display: grid;
  gap: 14px;
}
.election-quick-list article {
  min-height: 156px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
}
.quick-date {
  grid-row: span 2;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 112px;
  border-radius: var(--radius);
  color: #07182f;
  background: #ffd66b;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 950;
  line-height: .95;
  text-align: center;
}
.quick-date-action {
  color: var(--white);
  background: var(--red);
}
.quick-kicker {
  display: block;
  margin-bottom: 7px;
  color: #ffd66b;
}
.election-quick-list strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}
.election-quick-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  line-height: 1.4;
}
.election-date-hero { grid-area: date; }
.election-main { grid-area: main; }
.election-quick-list { grid-area: quick; }

/* Tablet / medium: drop the 3-col crush zone — headline spans the top,
   date rail + reminder cards sit side by side beneath it. */
@media (max-width: 1200px) {
  .election-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "date quick";
  }
  .election-main { align-self: start; }
}

/* Phone: single column, full-width buttons. */
@media (max-width: 700px) {
  .election-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "date"
      "quick";
  }
  .election-actions { width: 100%; }
  .election-button { flex: 1 1 100%; }
}

.action-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.action-strip article { background: var(--white); padding: 34px clamp(18px, 3vw, 44px); min-height: 260px; display: flex; flex-direction: column; align-items: flex-start; }
.icon { width: 50px; height: 50px; border-radius: 999px; background: #eef2ff; color: var(--blue); display: grid; place-items: center; font-weight: 900; margin-bottom: 18px; }
.action-strip p, .feature-card p, .township-section p, .news-grid p { color: var(--muted); line-height: 1.5; }
.action-strip a { color: var(--red); font-weight: 800; }
.donate-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; width: 100%; }
.donate-row a { border: 1px solid var(--line); background: var(--soft); border-radius: var(--radius); min-height: 38px; font-weight: 800; display: grid; place-items: center; }
.action-note { display: block; margin-top: 12px; color: var(--muted); line-height: 1.4; }

.split-section, .content-band, .township-section, .news-section, .signup-panel, .candidate-command, .briefing, .premium-signup, .resource-panel, .action-paths, .contact-panel {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 64px);
}
.resource-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: center;
  background: #fff;
}
.resource-panel p { color: var(--muted); line-height: 1.6; }
.resource-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.resource-grid a {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 18px 42px rgba(12,23,43,.12);
}
.resource-grid a:nth-child(2),
.resource-grid a:nth-child(4) { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.resource-grid span { color: #ffd66b; font-size: 12px; font-weight: 950; text-transform: uppercase; }
.resource-grid strong { font-size: 22px; line-height: 1.12; }
.action-paths { background: linear-gradient(180deg, #f8fafc, #fff); }
.path-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.path-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(12,23,43,.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.path-grid a:hover,
.path-grid a:focus-visible { transform: translateY(-4px); border-color: rgba(185,28,28,.35); box-shadow: 0 24px 58px rgba(12,23,43,.14); }
.path-grid span { color: var(--red); font-weight: 950; }
.path-grid strong { font-size: 24px; line-height: 1.12; }
.path-grid small { color: var(--muted); line-height: 1.45; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.event-list { display: grid; gap: 12px; margin-top: 22px; }
.event-list article { display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.event-list time { grid-row: span 2; background: var(--red); color: white; border-radius: var(--radius); min-height: 62px; display: grid; place-items: center; font-weight: 900; }
.event-list span { color: var(--muted); }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 0 18px 42px rgba(12,23,43,.08); }
.feature-card img { width: 100%; height: 330px; object-fit: cover; background: #eee; }
.feature-card div { padding: 24px; }

.content-band { background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading a { color: var(--red); font-weight: 850; }
.section-summary { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.55; }
.candidate-summary { margin: -12px 0 24px; }
.quick-summary {
  padding: 28px clamp(18px, 5vw, 64px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.quick-summary h2 {
  max-width: 920px;
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 36px);
}
.quick-summary p:not(.eyebrow) {
  max-width: 980px;
  margin: 0;
  color: #344054;
  font-size: 17px;
  line-height: 1.6;
}
.summary-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.summary-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--blue);
  background: var(--soft);
  font-weight: 850;
}
.summary-links a:hover,
.summary-links a:focus-visible {
  border-color: rgba(185, 28, 28, .4);
  color: var(--red);
  background: #fff;
}
.candidate-grid, .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.candidate-grid a, .candidate-grid article, .news-grid article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.candidate-grid a {
  display: block;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(12,23,43,.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.candidate-grid a:hover,
.candidate-grid a:focus-visible { transform: translateY(-4px); border-color: rgba(185,28,28,.45); box-shadow: 0 26px 62px rgba(12,23,43,.16); }
.candidate-grid img { width: 100%; height: 260px; object-fit: cover; object-position: top; background: #eef1f6; }
.candidate-grid h3, .candidate-grid p, .candidate-grid span, .news-grid h3, .news-grid span, .news-grid a { margin-left: 16px; margin-right: 16px; }
.candidate-grid h3 { margin-top: 16px; }
.candidate-grid p { color: var(--muted); margin-bottom: 18px; }
.candidate-grid span { display: inline-block; color: var(--red); font-weight: 900; margin-bottom: 18px; }
.township-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .96), rgba(22, 59, 114, .88) 46%, rgba(127, 29, 29, .94)),
    image-set(url("./assets/kanegop/generated/gallery-07-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-07.jpg") type("image/jpeg")) center/cover;
}
.township-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 74%);
  pointer-events: none;
}
.township-section > * { position: relative; z-index: 1; }
.township-section .eyebrow { color: #ffd66b; }
.township-section > p { max-width: 760px; margin: 0 auto 30px; color: rgba(255,255,255,.82); font-size: 17px; }
.township-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 1180px; margin: 0 auto; }
.township-card {
  position: relative;
  isolation: isolate;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.township-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
}
.township-card::after {
  content: "Visit site";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.township-card:hover,
.township-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255,214,107,.78);
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.township-card span { color: #ffd66b; font-size: 13px; font-weight: 950; text-transform: uppercase; }
.township-card strong { max-width: 82%; font-size: 23px; line-height: 1.08; text-wrap: balance; }
.township-card small { color: rgba(255,255,255,.78); line-height: 1.35; }
.tone-blue { background: linear-gradient(135deg, rgba(0,128,248,.4), rgba(7,24,47,.94)); }
.tone-red { background: linear-gradient(135deg, rgba(185,28,28,.5), rgba(7,24,47,.94)); }
.tone-gold { background: linear-gradient(135deg, rgba(214,167,58,.52), rgba(7,24,47,.94)); }
.tone-navy { background: linear-gradient(135deg, rgba(22,59,114,.7), rgba(7,24,47,.96)); }
.news-grid { grid-template-columns: repeat(3, 1fr); }
.news-feature {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) 1.08fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f7f9fc);
  box-shadow: 0 24px 60px rgba(12,23,43,.1);
}
.news-feature img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; background: #eef1f6; }
.news-feature div { padding: clamp(24px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.news-feature span,
.news-grid span,
.contact-news-card span { color: #65728a; display: block; margin-top: 16px; font-weight: 800; }
.news-feature span { margin-top: 0; }
.news-feature h3 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.08; margin-bottom: 14px; }
.news-feature p,
.news-grid p { color: var(--muted); line-height: 1.55; margin: 0 16px 16px; }
.news-feature p { margin: 0 0 20px; font-size: 17px; }
.news-feature a,
.news-grid a,
.contact-news-card a { color: var(--red); font-weight: 900; }
.news-feature a { align-self: flex-start; }
.news-grid img { width: 100%; height: 210px; object-fit: cover; background: #eef1f6; }
.news-grid h3 { line-height: 1.24; }
.news-grid a { display: inline-block; margin-bottom: 18px; color: var(--red); font-weight: 850; }
.contact-news-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 312px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.86) 54%, rgba(185,28,28,.92)),
    image-set(url("./assets/kanegop/generated/gallery-02-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-02.jpg") type("image/jpeg")) center/cover;
}
.contact-news-card span,
.contact-news-card a { color: #ffd66b; }
.contact-news-card h3,
.contact-news-card p { margin-left: 0; margin-right: 0; }
.contact-news-card p { color: rgba(255,255,255,.82); }
.signup-panel, .premium-signup { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: center; background: var(--blue-dark); color: var(--white); }
.signup-panel .eyebrow, .premium-signup .eyebrow { color: #ffd66b; }
form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 10px; }
input, select { border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; min-width: 0; }
input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

#contact-routing-form {
  width: min(620px, 100%);
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .18);
}

#contact-routing-form input {
  width: 100%;
  min-height: 52px;
  border-color: rgba(255, 255, 255, .7);
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(17, 24, 39, .04);
}

#contact-routing-form input::placeholder {
  color: #475467;
  opacity: 1;
}

#contact-routing-form input[aria-label="Topic"] {
  grid-column: 1 / -1;
}

#contact-routing-form button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 52px;
  white-space: normal;
}

#contact-routing-form button:disabled {
  cursor: wait;
  opacity: .74;
}

#contact-routing-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-weight: 800;
  line-height: 1.4;
}

#contact-routing-form .form-status:empty {
  display: none;
}

#contact-routing-form .form-status[data-state="success"] {
  border-color: rgba(187, 247, 208, .75);
  background: rgba(22, 101, 52, .58);
}

#contact-routing-form .form-status[data-state="error"] {
  border-color: rgba(254, 202, 202, .78);
  background: rgba(127, 29, 29, .72);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 28px;
  align-items: center;
  background: #fff;
}
.contact-panel p { color: var(--muted); line-height: 1.6; }
.contact-card {
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.94), rgba(22,59,114,.82) 52%, rgba(185,28,28,.9)),
    image-set(url("./assets/kanegop/generated/gallery-03-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-03.jpg") type("image/jpeg")) center/cover;
  box-shadow: 0 24px 60px rgba(12,23,43,.2);
}
.contact-card strong { display: block; font-size: 22px; line-height: 1.2; }
.contact-card p { color: rgba(255,255,255,.82); }
.contact-card a { color: #ffd66b; font-weight: 950; font-size: 24px; }

.connect-page main {
  display: grid;
  gap: 24px;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.connect-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: stretch;
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .96), rgba(22, 59, 114, .9) 58%, rgba(185, 28, 28, .86)),
    image-set(url("./assets/kanegop/generated/gallery-02-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-02.jpg") type("image/jpeg")) center/cover;
  box-shadow: 0 22px 58px rgba(12, 23, 43, .16);
}

.connect-hero h1 {
  max-width: 850px;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.connect-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.58;
}

.connect-social-panel {
  display: grid;
  gap: 14px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}

.connect-social-panel span {
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
}

.social-icon-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-icon-link {
  min-height: 104px;
  display: grid;
  gap: 10px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(5, 16, 34, .32);
  text-align: center;
  text-decoration: none;
}

.social-icon-link svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.social-icon-link.facebook-link {
  background: #1877f2;
  border-color: rgba(255, 255, 255, .44);
}

.social-icon-link.instagram-link {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  border-color: rgba(255, 255, 255, .44);
}

.social-icon-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.connect-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(12, 23, 43, .08);
}

.connect-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.connect-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.connect-address-card {
  background: #f8fafc;
}

.site-footer { display: grid; grid-template-columns: 170px 1fr 1fr 1fr; gap: 28px; padding: 34px clamp(18px, 5vw, 64px); background: #f9fafb; border-top: 1px solid var(--line); }
.site-footer img { width: min(240px, 70vw); }
.site-footer a, .site-footer p { display: block; color: var(--muted); margin: 6px 0; }
.dark-footer { background: #050f20; color: var(--white); border-top-color: rgba(255,255,255,.1); }

.demo-b { background: #07101f; color: var(--white); }
.b-hero { position: relative; min-height: 760px; display: grid; grid-template-columns: 1fr; overflow: hidden; }
.b-hero-media { position: absolute; inset: 0; }
.b-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .46; filter: saturate(.9) contrast(1.04); }
.b-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,16,34,.96), rgba(5,16,34,.68) 48%, rgba(126,22,30,.42)); }
.b-hero-copy { position: relative; z-index: 1; align-self: center; width: min(860px, 100%); padding: clamp(56px, 9vw, 124px) clamp(18px, 6vw, 76px); }
.b-hero-copy h1 { font-size: clamp(48px, 8vw, 96px); line-height: .9; margin: 0 0 20px; }
.b-hero-copy p:not(.eyebrow) { max-width: 670px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.55; }
.status-rail { position: absolute; right: clamp(18px, 5vw, 60px); bottom: 36px; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: min(650px, calc(100% - 36px)); }
.status-rail article { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.09); backdrop-filter: blur(16px); border-radius: var(--radius); padding: 16px; }
.status-rail span { display: block; color: #ffd66b; font-size: 28px; font-weight: 950; }
.status-rail strong { display: block; font-size: 13px; }
.mission-bar { grid-template-columns: auto 1fr; background: #faf3dd; color: #2b2113; }

.action-center { padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px); background: #0b1b35; }
.inverted .eyebrow { color: #ffd66b; }
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.action-grid button { text-align: left; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); color: var(--white); border-radius: var(--radius); padding: 20px; min-height: 220px; cursor: pointer; }
.action-grid button:hover, .action-grid button.active { border-color: #ffd66b; background: rgba(214,167,58,.12); }
.action-grid span { color: #ffd66b; font-weight: 950; }
.action-grid strong { display: block; font-size: 24px; margin: 22px 0 12px; }
.action-grid small { color: rgba(255,255,255,.72); line-height: 1.45; }
.action-result { margin-top: 14px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); border-radius: var(--radius); padding: 18px; color: rgba(255,255,255,.83); }

.township-finder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px); background: #f8fafc; color: var(--ink); }
.township-finder p { color: var(--muted); line-height: 1.55; }
.township-finder label { display: block; font-weight: 850; margin: 18px 0 8px; }
.township-finder select { width: min(420px, 100%); }
.township-card-live { min-height: 300px; border-radius: var(--radius); padding: 30px; background: linear-gradient(135deg, var(--blue), var(--red-dark)); color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.township-card-live span { color: #ffd66b; font-weight: 900; text-transform: uppercase; font-size: 12px; }
.township-card-live h3 { font-size: 42px; line-height: 1; margin: 10px 0; }
.township-card-live p { color: rgba(255,255,255,.82); }

.candidate-command { background: #fff; color: var(--ink); }
.command-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.command-grid article { display: grid; grid-template-columns: 150px 1fr; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.command-grid img { width: 150px; height: 150px; object-fit: cover; object-position: top; border-radius: var(--radius); background: var(--soft); }
.command-grid span { color: var(--red); font-weight: 850; font-size: 13px; }
.command-grid p { color: var(--muted); line-height: 1.45; }

.operations-grid { display: grid; grid-template-columns: 1.3fr .85fr; gap: 14px; padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px); background: #07101f; }
.ops-card { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,.06); }
.ops-card.large { grid-row: span 2; }
.ops-card p, .ops-card li { color: rgba(255,255,255,.75); line-height: 1.5; }
.ops-card img { width: 100%; max-height: 430px; object-fit: contain; background: rgba(255,255,255,.04); border-radius: var(--radius); margin-top: 20px; }
.ops-card ul { padding-left: 20px; }
.briefing { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: #f6f8fb; color: var(--ink); align-items: start; }
.briefing p { color: var(--muted); line-height: 1.6; }
.briefing-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.briefing-list article { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 18px; }
.briefing-list span { color: var(--muted); display: block; margin-top: 8px; }
.premium-signup { background: linear-gradient(135deg, #7f1d1d, #08172f); }
.premium-signup form { grid-template-columns: repeat(2, 1fr); }
.premium-signup button { grid-column: span 2; }

.interior-page { background: #f6f8fb; }
.interior-hero {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 5vw, 64px) clamp(46px, 7vw, 86px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.88) 52%, rgba(185,28,28,.88)),
    image-set(url("./assets/kanegop/generated/gallery-01-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-01.jpg") type("image/jpeg")) center/cover;
}
.interior-hero h1 {
  max-width: 1050px;
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .96;
}
.interior-hero p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.55;
}
.vote-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.86) 52%, rgba(185,28,28,.82)), image-set(url("./assets/kanegop/generated/gallery-01-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-01.jpg") type("image/jpeg")); }
.events-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.95), rgba(22,59,114,.82) 50%, rgba(127,29,29,.9)), image-set(url("./assets/kanegop/generated/gallery-04-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-04.jpg") type("image/jpeg")); }
.township-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.88) 52%, rgba(127,29,29,.86)), image-set(url("./assets/kanegop/generated/gallery-07-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-07.jpg") type("image/jpeg")); }
.volunteer-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.84) 52%, rgba(185,28,28,.82)), image-set(url("./assets/kanegop/generated/gallery-06-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-06.jpg") type("image/jpeg")); }
.donate-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.82) 52%, rgba(185,28,28,.86)), image-set(url("./assets/kanegop/generated/gallery-03-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-03.jpg") type("image/jpeg")); }
.contact-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.84) 52%, rgba(185,28,28,.78)), image-set(url("./assets/kanegop/generated/gallery-02-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-02.jpg") type("image/jpeg")); }
.news-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.84) 52%, rgba(185,28,28,.82)), image-set(url("./assets/kanegop/generated/news-vote-by-mail-1200.webp") type("image/webp"), url("./assets/kanegop/news-vote-by-mail.png") type("image/png")); }
.policy-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.98), rgba(22,59,114,.88) 54%, rgba(127,29,29,.82)), image-set(url("./assets/kanegop/generated/gallery-05-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-05.jpg") type("image/jpeg")); }
.donation-page {
  background: #f6f8fb;
}

.vote-duty-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 64px);
  background: #07182f;
  color: var(--white);
}
.vote-duty-band h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: .98;
}
.vote-duty-band p:not(.eyebrow) {
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.58;
}
.vote-duty-band .source-note {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.66);
}
.vote-duty-band a {
  color: #ffd66b;
  font-weight: 900;
}
.vote-plan-section,
.official-vote-links,
.vote-callout {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
}
.vote-plan-section {
  background: #fff;
}
.vote-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.vote-plan-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f7f9fc);
  box-shadow: 0 16px 40px rgba(12,23,43,.07);
}
.vote-plan-grid span,
.official-vote-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.vote-plan-grid h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}
.vote-plan-grid p {
  color: var(--muted);
  line-height: 1.5;
}
.vote-plan-grid a,
.official-vote-list a {
  align-self: end;
  color: var(--red);
  font-weight: 950;
}
.official-vote-links {
  display: grid;
  grid-template-columns: minmax(240px, .45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: #f6f8fb;
}
.official-vote-links h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}
.official-vote-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.official-vote-list a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
}
.official-vote-list strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}
.vote-callout {
  background: linear-gradient(135deg, var(--blue), var(--red-dark));
  color: var(--white);
}
.vote-callout h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .98;
}
.vote-callout p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.55;
}
.donation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  min-height: 680px;
  padding: clamp(86px, 11vw, 138px) clamp(18px, 5vw, 64px) clamp(44px, 7vw, 82px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.82) 48%, rgba(185,28,28,.78)),
    image-set(url("./assets/kanegop/generated/gop-officers-swearing-in-1200.webp") type("image/webp"), url("./assets/kanegop/gop-officers-swearing-in.jpg") type("image/jpeg")) center/cover;
}
.donation-hero h1 {
  max-width: 1040px;
  margin: 0 0 18px;
  font-size: clamp(46px, 7.4vw, 94px);
  line-height: .94;
}
.donation-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  line-height: 1.55;
}
.donation-goal-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.13);
  box-shadow: 0 24px 58px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.donation-goal-card span {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.donation-goal-card strong {
  font-size: clamp(42px, 6vw, 68px);
  line-height: .95;
}
.donation-goal-card p {
  margin: 0;
}
.donation-progress {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.donation-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.chairwoman-note,
.donor-trust-band {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
  background: var(--white);
}
.chairwoman-note img,
.donor-trust-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(12,23,43,.12);
}
.chairwoman-note blockquote {
  margin: 0;
  padding: clamp(22px, 4vw, 38px);
  border-left: 7px solid var(--red);
  background: #f8fbff;
}
.chairwoman-note blockquote p {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 850;
  line-height: 1.18;
}
.chairwoman-note blockquote footer {
  color: var(--red);
  font-weight: 950;
}
.donation-layout {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(48px, 8vw, 94px) clamp(18px, 5vw, 64px);
}
.donation-intro {
  position: sticky;
  top: 110px;
}
.donation-intro p,
.impact-section p,
.donor-trust-band p,
.donation-setup-note,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}
.donation-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.donation-check-list li {
  padding: 12px 14px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 850;
}
.donation-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(12,23,43,.1);
}
.donation-form [hidden] {
  display: none !important;
}
.donation-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.donation-form legend {
  padding: 0 8px;
  color: var(--blue);
  font-weight: 950;
}
.donation-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.donation-tier-grid-onetime {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.donation-tier {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f8fbff);
  cursor: pointer;
}
.donation-tier input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.donation-tier span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.donation-tier strong {
  color: var(--blue-dark);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: .98;
}
.donation-tier small {
  color: var(--muted);
  line-height: 1.35;
}
.donation-tier.is-selected {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(185,28,28,.1);
}
.donation-tier-other {
  align-content: start;
}
.other-amount-input {
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
}
.other-amount-error {
  display: block;
  margin-top: 6px;
  color: var(--red-dark, #991b1b);
  font-weight: 850;
  line-height: 1.35;
}
/* Donate restructure (2026-07-14): landing choice cards + branch-page selection UX. */
.donation-hero-landing,
.donation-hero-branch {
  grid-template-columns: minmax(0, 1fr);
}
.donation-breadcrumb {
  margin: 0 0 10px;
}
.donation-breadcrumb a {
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}
.donation-breadcrumb a:hover {
  color: var(--red);
}
.donation-page-switch {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 850;
}
.donation-page-switch a {
  color: var(--red);
}
.donation-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  padding: 0 clamp(18px, 5vw, 64px) clamp(36px, 6vw, 64px);
}
.donation-choice-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(24px, 4vw, 40px);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f8fbff);
  box-shadow: 0 20px 48px rgba(12,23,43,.1);
}
.donation-choice-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}
.donation-choice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.donation-choice-amounts {
  color: var(--blue-dark) !important;
  font-weight: 950;
}
.donation-choice-cta {
  justify-self: start;
  min-height: 54px;
  font-size: 17px;
}
.donation-tier {
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.donation-tier:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(185,28,28,.14);
}
.tier-cta {
  justify-self: start;
  margin-top: 2px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.donation-tier.is-selected .tier-cta {
  background: var(--blue-dark);
}
.donation-tier.is-selected .tier-cta::after {
  content: "ed \2713";
}
.donation-selection-banner {
  margin: 0;
  padding: 14px 16px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fdf2f2;
  color: var(--ink);
  font-weight: 850;
}
.donation-selection-banner strong {
  color: var(--red-dark, #991b1b);
}
.donation-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.donation-field-grid label,
.donation-checkbox {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}
.donation-field-wide {
  grid-column: 1 / -1;
}
.donation-field-grid input,
.donation-field-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.donation-checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  min-height: 52px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  line-height: 1.38;
}
.donation-checkbox input {
  margin-top: 3px;
  accent-color: var(--red);
}
.donation-submit {
  justify-self: start;
}
.donation-alert {
  padding: 14px 16px;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: #fff5f5;
  color: var(--red-dark);
  font-weight: 850;
  line-height: 1.45;
}
.impact-section {
  display: grid;
  grid-template-columns: .4fr 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 64px);
  background: var(--blue-dark);
  color: var(--white);
}
.impact-section h2,
.impact-section .eyebrow {
  color: var(--white);
}
.impact-section p {
  color: rgba(255,255,255,.78);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.impact-grid article {
  min-height: 185px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.impact-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.impact-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}
.donor-trust-band {
  background: #fff;
}
.donor-trust-band .button {
  margin-top: 10px;
}
.donation-faq {
  background: #f6f8fb;
}
.donation-disclaimer {
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--blue-dark);
  color: rgba(255,255,255,.82);
  text-align: center;
}
.donation-disclaimer p {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.5;
}
.feature-resource-grid { grid-template-columns: repeat(4, 1fr); }
.info-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px);
  background: #fff;
}
.info-columns article,
.faq-grid article,
.event-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(12,23,43,.07);
}
.info-columns p,
.faq-grid p,
.event-card p,
.policy-content p,
.donation-panel p { color: var(--muted); line-height: 1.58; }
.faq-section,
.event-calendar,
.township-directory,
.donation-panel,
.policy-content {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.event-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.event-card time {
  display: inline-flex;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 10px;
}
.event-calendar-toolbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  padding: 22px;
}
.event-calendar-toolbar h2 {
  margin: 6px 0 8px;
}
.event-calendar-toolbar p {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}
.calendar-subscribe {
  flex: 0 0 auto;
}
.calendar-feed-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px !important;
  padding: 5px 9px;
  text-transform: uppercase;
}
.event-card.cancelled {
  border-color: #fecaca;
  background: #fffafa;
}
.room-reservations-module {
  display: grid;
  gap: 18px;
  margin: clamp(38px, 6vw, 64px) clamp(18px, 5vw, 64px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(12,23,43,.08);
}
.room-reservation-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}
.room-reservation-summary h2 {
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 34px);
}
.room-reservation-summary p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.55;
}
.room-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.room-actions .button {
  margin-top: 0;
  white-space: nowrap;
}
.room-label-note {
  margin-top: 10px !important;
  color: #667085 !important;
  font-size: 14px !important;
}
.room-calendar {
  display: block;
  padding: 0;
  margin: 0;
}
.room-calendar .kg-calendar {
  gap: 12px;
}
.room-calendar .kg-calendar-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #07182f, #173f72);
}
.room-calendar .kg-calendar-layout {
  gap: 12px;
}
.room-calendar .kg-calendar-month,
.room-calendar .kg-calendar-detail-panel,
.room-calendar .kg-calendar-agenda {
  box-shadow: none;
}
.room-calendar .kg-calendar-day {
  min-height: 112px;
}
.room-card {
  background: #fbfdff;
}
.room-card h2 {
  color: #0038b0;
}
.room-request-hero {
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.88) 52%, rgba(185,28,28,.82)),
    image-set(url("./assets/kanegop/generated/gallery-02-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-02.jpg") type("image/jpeg")) center/cover;
}
.room-request-review-note {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(22, 59, 114, .18);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--muted);
  line-height: 1.45;
}
.room-request-review-note strong {
  color: var(--ink);
}

.volunteer-page {
  background: #f6f8fb;
}
.volunteer-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.88) 52%, rgba(185,28,28,.82)),
    image-set(url("./assets/kanegop/generated/gallery-06-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-06.jpg") type("image/jpeg")) center/cover;
}
.volunteer-hero-panel h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: .96;
}
.volunteer-hero-panel p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.58;
}
.volunteer-hero-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  box-shadow: 0 22px 56px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}
.volunteer-hero-card strong {
  font-size: 28px;
}
.volunteer-hero-card span {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.84);
  font-weight: 850;
}
.volunteer-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 64px);
  background: #fff;
}
.volunteer-paths a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f7f9fc);
  box-shadow: 0 14px 34px rgba(12,23,43,.07);
}
.volunteer-paths a:target,
.volunteer-paths a:hover,
.volunteer-paths a:focus-visible {
  border-color: rgba(185,28,28,.45);
  box-shadow: 0 24px 58px rgba(12,23,43,.13);
}
.volunteer-paths span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.volunteer-paths strong {
  font-size: 26px;
}
.volunteer-paths small {
  color: var(--muted);
  line-height: 1.4;
}
.volunteer-form-shell {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 64px);
}
.volunteer-form-intro {
  position: sticky;
  top: 110px;
}
.volunteer-form-intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}
.volunteer-intake-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(12,23,43,.09);
}
.volunteer-intake-form *,
.volunteer-intake-form *::before,
.volunteer-intake-form *::after {
  box-sizing: border-box;
}
.volunteer-intake-form fieldset {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.volunteer-intake-form legend {
  padding: 0 8px;
  color: var(--blue);
  font-weight: 950;
}
.volunteer-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.volunteer-field-grid label,
.volunteer-intake-form fieldset > label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.25;
}
.volunteer-field-wide {
  grid-column: 1 / -1;
}
.volunteer-intake-form input:not([type="checkbox"]),
.volunteer-intake-form select,
.volunteer-intake-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.volunteer-intake-form input:not([type="checkbox"]),
.volunteer-intake-form select {
  min-height: 48px;
}
.volunteer-intake-form textarea {
  min-height: 130px;
  resize: vertical;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.volunteer-sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  font-size: 0.9rem;
  line-height: 1.4;
}
.volunteer-sms-consent[hidden] {
  display: none;
}
.volunteer-sms-consent input {
  margin-top: 3px;
  accent-color: var(--red);
}
.checkbox-grid label.priority-interest {
  border-color: rgba(185,28,28,.32);
  background: #fff7f7;
  box-shadow: inset 4px 0 0 var(--red);
}
.checkbox-grid input {
  margin-top: 3px;
  accent-color: var(--red);
}
.checkbox-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.volunteer-submit {
  justify-self: start;
}
.kg-calendar {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  width: 100%;
}
.kg-calendar-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7,24,47,.98), rgba(13,57,108,.92)),
    url("./assets/kanegop/meeting.png") center/cover;
  color: var(--white);
  padding: clamp(22px, 4vw, 34px);
}
.kg-calendar-header .eyebrow,
.kg-calendar-header p {
  color: rgba(255,255,255,.78);
}
.kg-calendar-header h2 {
  color: var(--white);
  margin: 6px 0 0;
}
.kg-calendar-title-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  min-width: min(100%, 560px);
}
.kg-calendar-title-nav > div {
  min-width: 0;
  text-align: center;
}
.kg-calendar-nav-button {
  min-width: 78px;
}
.kg-calendar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.kg-calendar-button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}
.kg-calendar-button:hover,
.kg-calendar-button:focus-visible {
  background: rgba(255,255,255,.16);
}
.kg-calendar-subscribe {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.kg-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 18px;
  align-items: start;
}
.kg-calendar-month,
.kg-calendar-detail-panel,
.kg-calendar-agenda {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.kg-calendar-weekdays,
.kg-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.kg-calendar-weekdays {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kg-calendar-weekdays span {
  padding: 14px 10px;
  text-align: center;
}
.kg-calendar-day {
  min-height: 132px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px;
}
.kg-calendar-day:nth-child(7n) {
  border-right: 0;
}
.kg-calendar-day.is-outside {
  background: #f7f9fc;
}
.kg-calendar-day.has-events {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.kg-calendar-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 950;
}
.kg-calendar-event {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(0,56,176,.16);
  border-radius: 8px;
  background: #eef6ff;
  color: #07182f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  padding: 8px;
  text-align: left;
}
.kg-calendar-event:hover,
.kg-calendar-event:focus-visible,
.kg-calendar-event.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,56,176,.12);
}
.kg-calendar-event.cancelled {
  background: #fff1f1;
  border-color: #fecaca;
}
.kg-calendar-detail-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
}
.calendar-detail {
  outline: 0;
}
.calendar-detail-date {
  color: var(--red) !important;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  margin: 0 0 8px !important;
  text-transform: uppercase;
}
.calendar-detail h3 {
  margin: 0 0 12px;
}
.calendar-detail-line {
  color: var(--ink) !important;
  font-weight: 800;
  margin: 8px 0 !important;
}
.calendar-detail-description {
  color: var(--ink);
  line-height: 1.58;
}
/* Approved event flyer. Constrained rather than full-bleed: these are
   submitter-supplied images of unpredictable aspect ratio, and an unbounded
   portrait flyer would push the event details off-screen. aspect-ratio is
   deliberately NOT set — cropping someone's flyer can cut off the date. */
.calendar-detail-figure {
  margin: 14px 0 0;
}
.calendar-detail-image {
  display: block;
  width: 100%;
  max-width: 460px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  border: 1px solid #dce6f2;
  border-radius: 10px;
  background: #fff;
}
.kg-calendar-agenda {
  display: none;
  padding: 18px;
}
.kg-calendar-agenda h3 {
  margin-top: 0;
}
.kg-calendar-empty {
  color: var(--muted);
  padding: 10px 0;
}
.feature-event {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(185,28,28,.9)),
    image-set(url("./assets/kanegop/generated/lincoln-retirement-1200.webp") type("image/webp"), url("./assets/kanegop/lincoln-retirement.png") type("image/png")) center/cover;
}
.feature-event p,
.feature-event time { color: rgba(255,255,255,.84); }

.training-page {
  background: #f6f8fc;
}

.training-hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 6vw, 82px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .96), rgba(22, 59, 114, .82) 48%, rgba(185, 28, 28, .82)),
    image-set(url("/assets/kanegop/generated/gallery-04-1200.webp") type("image/webp"), url("/assets/kanegop/gallery-04.jpg") type("image/jpeg")) center/cover;
}

.training-hero-copy h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: .88;
  letter-spacing: 0;
}

.training-hero-copy,
.training-rsvp-card {
  min-width: 0;
}

.training-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.training-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.training-meta-row div,
.training-rsvp-card,
.training-detail-band article {
  border-radius: var(--radius);
}

.training-meta-row div {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.training-meta-row span,
.training-card-badge {
  display: block;
  color: #dbeafe;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.training-meta-row strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.training-primary-cta {
  background: var(--gold);
  color: var(--blue-dark);
}

.training-rsvp-card {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 28px 84px rgba(0, 0, 0, .32);
}

.training-rsvp-card h2 {
  margin: 10px 0 18px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.training-card-badge {
  width: max-content;
  border-radius: 999px;
  background: #fee2e2;
  color: var(--red-dark);
  padding: 8px 12px;
}

.training-rsvp-form {
  display: grid;
  gap: 14px;
}

.training-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.training-rsvp-form label,
.training-guest-fieldset legend {
  color: #344054;
  font-size: .9rem;
  font-weight: 850;
}

.training-rsvp-form input {
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  border: 1px solid #c9d8ea;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.training-rsvp-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 192, 248, .18);
}

.training-guest-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  margin: 2px 0 0;
  padding: 0;
}

.training-guest-fieldset legend {
  grid-column: 1 / -1;
}

.training-guest-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid #c9d8ea;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f8fbff;
}

.training-guest-fieldset input {
  width: auto;
  min-height: 0;
  margin: 0;
}

.training-submit-button {
  width: 100%;
  min-height: 48px;
}

.training-rsvp-alert {
  border-radius: 10px;
  margin: 0 0 14px;
  padding: 12px 14px;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.45;
}

.training-rsvp-alert-success {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.training-rsvp-alert-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.event-request-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 7vw, 96px);
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 192, 248, .20), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(255, 8, 48, .16), transparent 30%),
    linear-gradient(135deg, #081830 0%, #123b7a 58%, #900020 100%);
  color: #fff;
}

.event-request-hero h1 {
  margin: 10px 0 14px;
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: .92;
}

.event-request-hero p:not(.eyebrow) {
  max-width: 840px;
  color: #dbeafe;
  font-size: clamp(1rem, 1.65vw, 1.16rem);
  line-height: 1.6;
}

.event-request-shell {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 36px;
  padding: clamp(24px, 4vw, 46px) clamp(18px, 6vw, 88px);
  background: #f8fbff;
}

/* Solo variant: the intro sidebar is folded into the hero, so the form spans a
   single centered column instead of leaving an empty 360px rail. */
.event-request-shell--solo {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.event-request-shell--solo .event-request-form {
  width: 100%;
  max-width: 960px;
}

.event-request-intro h2,
.event-request-panel h3 {
  color: var(--ink);
}

.event-request-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  border: 1px solid #dce6f2;
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 22px 70px rgba(8, 24, 48, .10);
}

.event-request-form,
.event-request-form * {
  box-sizing: border-box;
}

.event-request-form > *,
.event-request-panel > *,
.event-request-form .form-grid > * {
  min-width: 0;
}

.event-request-type,
.event-request-panel {
  border: 1px solid #e5edf7;
  border-radius: var(--radius);
  padding: 18px;
  min-inline-size: 0;
}

.event-request-type {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  background: #f8fbff;
}

.event-request-type legend {
  color: var(--ink);
  font-weight: 900;
}

.event-request-help {
  margin: 0 0 14px;
  color: #667085;
  font-size: .95rem;
  line-height: 1.55;
}

.event-request-form .event-request-type label,
.event-request-form .event-request-check-grid label,
.event-request-form .event-request-inline-choice label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  min-height: 46px;
  border: 1px solid #dce6f2;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 800;
  line-height: 1.25;
}

.event-request-form .event-request-type label,
.event-request-form .event-request-inline-choice label {
  align-items: center;
}

.event-request-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-request-inline-choice {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  border: 0;
  padding: 0;
  min-inline-size: 0;
}

.event-request-inline-choice legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.event-request-room-subrequest {
  display: grid;
  gap: 16px;
}

.recurrence-controls {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 1px solid #e5edf7;
  border-radius: var(--radius);
  background: #f8fbff;
  padding: 18px;
  min-inline-size: 0;
}

.recurrence-controls legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.recurrence-weekdays {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.recurrence-weekdays span {
  color: #344054;
  font-size: .92rem;
  font-weight: 900;
}

.event-request-form .recurrence-weekdays label {
  flex-direction: row;
  align-items: center;
  width: auto;
  min-height: 38px;
  border: 1px solid #dce6f2;
  border-radius: 999px;
  background: #fff;
  padding: 8px 11px;
}

.room-subrequest-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.event-request-form label.is-defined-location input {
  background: #f8fafc;
  color: #475467;
}

.room-availability-result {
  flex: 1 1 280px;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.35;
}

.room-availability-result.is-checking {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
}

.room-availability-result.is-available {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.room-availability-result.is-conflict {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.event-image-preview {
  display: grid;
  gap: 12px;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 14px;
}

.event-image-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-image-preview-header strong {
  color: var(--ink);
}

.event-image-preview-clear {
  min-height: 36px;
  padding: 8px 12px;
  font-size: .86rem;
}

.event-image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.event-image-preview-card {
  display: grid;
  gap: 8px;
  margin: 0;
}

.event-image-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid #d0d7e2;
  border-radius: 8px;
  background: #fff;
}

.event-image-preview-card figcaption {
  color: #475467;
  font-size: .82rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.event-request-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.event-request-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #344054;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.25;
  min-width: 0;
}

.event-request-form input,
.event-request-form select,
.event-request-form textarea {
  display: block;
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 10px 12px;
}

.event-request-form input[type="radio"],
.event-request-form input[type="checkbox"] {
  accent-color: var(--red);
  flex: 0 0 auto;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
}

.event-request-form input[type="file"] {
  min-height: auto;
  line-height: 1.35;
}

.event-request-form textarea {
  line-height: 1.5;
  min-height: 120px;
  resize: vertical;
}

.event-request-form input:focus,
.event-request-form select:focus,
.event-request-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 192, 248, .16);
  outline: none;
}

.event-request-submit {
  justify-self: end;
}

.event-request-alert {
  border-radius: 10px;
  padding: 13px 15px;
  font-weight: 800;
}

/* Submit progress indicator. The public event request takes ~15s to be received
   (two Graph sends happen before the response), and the static "Please wait"
   text alone was too easy to miss (Lance, 2026-07-19). Decorative only — the
   alert is a role="status" live region, so the message is announced separately.
   Sized deliberately larger than the copy it sits beside: motion is the primary
   cue here, so it must not read as a small decoration next to bold text. */
.fv-spinner {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.25em;
  height: 1.25em;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: fv-spin .7s linear infinite;
}

@keyframes fv-spin {
  to { transform: rotate(360deg); }
}

@keyframes fv-spinner-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* PENDING is its own state — deliberately NOT the green success style. Reusing
   success made an in-flight request look already-complete at a glance, which is
   the opposite of what a 15-second wait needs to communicate. Green stays
   reserved for the actual "was received" confirmation. */
.event-request-alert-pending {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #bfd4ee;
  background: #eef4fc;
  color: #14356b;
}

.event-request-alert-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.event-request-alert-hint {
  font-size: 13.5px;
  font-weight: 600;
  opacity: .82;
}

.event-request-submit[aria-busy="true"] {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

/* While the form is busy, fade the inputs so the page reads as "working" rather
   than "frozen". The alert is a sibling of these blocks, so it stays full
   strength. pointer-events guards against edits racing the in-flight POST. */
.event-request-form[aria-busy="true"] .event-request-type,
.event-request-form[aria-busy="true"] .form-grid,
.event-request-form[aria-busy="true"] .event-request-panel {
  opacity: .5;
  pointer-events: none;
  transition: opacity .2s ease;
}

/* Reduced motion: drop the rotation (vestibular trigger) but keep a gentle
   opacity pulse so the "something is happening" signal still survives. */
@media (prefers-reduced-motion: reduce) {
  .fv-spinner {
    animation: fv-spinner-fade 1.4s ease-in-out infinite;
  }
}

.event-request-alert-success {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.event-request-alert-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.event-request-form [hidden],
.event-request-alert[hidden],
.room-availability-result[hidden],
.event-image-preview[hidden] {
  display: none !important;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.training-detail-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 5vw, 64px);
}

.training-detail-band article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 14px 40px rgba(7, 24, 47, .08);
}

.training-detail-band h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}
.township-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.donation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 22px;
  align-items: stretch;
}
.donation-panel > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.donation-amounts a {
  display: grid;
  min-height: 64px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}
.trust-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.82) 52%, rgba(185,28,28,.9)),
    image-set(url("./assets/kanegop/generated/gallery-03-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-03.jpg") type("image/jpeg")) center/cover;
}
.trust-card p { color: rgba(255,255,255,.84); }
.fine-print { font-size: 14px; }
.fine-print a { color: var(--red); font-weight: 900; }
.policy-content {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
}
.policy-content h2 { margin-top: 28px; font-size: 28px; }
.policy-content a { color: var(--red); font-weight: 900; }
.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.98), rgba(22,59,114,.9) 52%, rgba(185,28,28,.86)),
    image-set(url("./assets/kanegop/generated/gallery-04-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-04.jpg") type("image/jpeg")) center/cover;
}
.profile-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: .98;
}
.profile-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.55;
}
.profile-hero img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: top;
  border: 6px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
}
.profile-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px);
}
.profile-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(12,23,43,.07);
}
.profile-content dl { display: grid; grid-template-columns: 140px 1fr; gap: 10px 18px; }
.profile-content dt { color: var(--red); font-weight: 950; }
.profile-content dd { margin: 0; color: var(--muted); line-height: 1.45; }
.profile-content a { color: var(--red); font-weight: 900; }
.profile-content li { color: var(--muted); margin: 8px 0; line-height: 1.45; }

.candidate-page { background: #f6f8fb; color: var(--ink); }
.candidate-page .site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.candidate-hero {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 64px) clamp(42px, 7vw, 82px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.9) 48%, rgba(185,28,28,.9)),
    image-set(url("./assets/kanegop/generated/gallery-04-1200.webp") type("image/webp"), url("./assets/kanegop/gallery-04.jpg") type("image/jpeg")) center/cover;
}
.candidate-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .94;
}
.candidate-hero p:not(.eyebrow) {
  max-width: 860px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.55;
}
.candidate-directory {
  padding: clamp(40px, 7vw, 82px) clamp(18px, 5vw, 64px);
}
.candidate-source-note {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(22,59,114,.16);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  line-height: 1.55;
}
.candidate-source-note strong { color: var(--ink); }
.candidate-group {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.candidate-group h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.directory-grid a {
  position: relative;
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #fff, #f7f9fc);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(12,23,43,.07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.directory-grid a::after {
  content: "Official link";
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.directory-grid a:hover,
.directory-grid a:focus-visible { transform: translateY(-3px); border-color: rgba(185,28,28,.42); box-shadow: 0 24px 58px rgba(12,23,43,.13); }
.directory-grid span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.directory-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.08;
}
.directory-grid small {
  display: block;
  margin-top: 10px;
  padding-right: 110px;
  color: var(--muted);
  line-height: 1.35;
}

.candidate-page .directory-grid {
  align-items: stretch;
}

.candidate-page .directory-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(246, 248, 251, .94)),
    linear-gradient(135deg, rgba(22, 59, 114, .09), rgba(185, 28, 28, .1));
}

.candidate-page .directory-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.candidate-page .directory-grid a::after {
  content: "View profile";
  position: static;
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.candidate-page .directory-grid a:hover::after,
.candidate-page .directory-grid a:focus-visible::after {
  background: var(--red);
}

.candidate-page .directory-grid small {
  padding-right: 0;
}

.candidate-page .directory-grid strong {
  font-size: clamp(23px, 2.2vw, 31px);
  letter-spacing: 0;
}

/* Option A — candidate headshot banner (photo or monogram fallback) */
.candidate-page .directory-grid a {
  padding: 0;
  min-height: 0;
}
.candidate-page .directory-grid .candidate-card-media {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #16315f, #0d2347);
}
.candidate-page .directory-grid .candidate-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.candidate-page .directory-grid .candidate-card-monogram {
  color: #fff;
  font-size: 58px;
  font-weight: 950;
  letter-spacing: .03em;
}
.candidate-page .directory-grid .candidate-card-info {
  padding: 16px 18px 0;
}
.candidate-page .directory-grid a::after {
  margin: 16px 18px 18px;
}

.candidate-profile-page {
  background: #f6f8fb;
  overflow-x: hidden;
}

.candidate-profile-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(7, 24, 47, .97), rgba(22, 59, 114, .92) 46%, rgba(185, 28, 28, .9)),
    image-set(url("/assets/kanegop/generated/gallery-01-1200.webp") type("image/webp"), url("/assets/kanegop/gallery-01.jpg") type("image/jpeg")) center/cover;
}

.candidate-profile-copy {
  max-width: 840px;
  min-width: 0;
}

.candidate-profile-hero > *,
.candidate-profile-content > *,
.candidate-action-band > * {
  min-width: 0;
}

.candidate-profile-copy .eyebrow {
  color: #ffd66b;
}

.candidate-profile-copy h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.candidate-office-pill {
  width: fit-content;
  margin: 24px 0 20px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.18;
}

.candidate-profile-lede {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.55;
}

.candidate-cta-row .secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.08);
}

.candidate-portrait-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(255,214,107,.34), rgba(185,28,28,.3));
  box-shadow: 0 36px 90px rgba(0,0,0,.32);
}

.candidate-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.candidate-monogram {
  height: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,214,107,.32), transparent 42%),
    linear-gradient(145deg, var(--blue), var(--blue-dark) 58%, var(--red-dark));
}

.candidate-monogram span {
  width: min(250px, 58%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.58);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffd66b;
  font-size: clamp(70px, 10vw, 126px);
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.05);
}

.candidate-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(7,24,47,.84);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.candidate-badge span {
  color: #ffd66b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.candidate-badge strong {
  text-align: right;
}

.candidate-profile-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 24px;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.candidate-story-card,
.candidate-facts-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(12,23,43,.09);
  padding: clamp(24px, 4vw, 38px);
}

.candidate-story-card p:not(.eyebrow) {
  color: #344054;
  font-size: 17px;
  line-height: 1.65;
}

.candidate-facts-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.candidate-facts-card div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.candidate-facts-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.candidate-facts-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.candidate-facts-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}

.candidate-action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #fff, #f8fafc);
  border-top: 1px solid var(--line);
}

.candidate-action-band h2,
.candidate-action-band p:not(.eyebrow) {
  max-width: 780px;
}

.candidate-action-band p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.news-page {
  background: #f6f8fb;
}

.news-page .news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .42fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 47, .96), rgba(22, 59, 114, .88) 58%, rgba(127, 29, 29, .82)),
    url("/assets/kanegop/gallery-01.jpg") center/cover;
}

.news-page .news-hero .eyebrow,
.news-action-band .eyebrow {
  color: #ffd66b;
}

.news-hero-copy {
  max-width: 860px;
}

.news-page .news-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.02;
}

.news-page .news-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.58;
}

.news-brief-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.news-brief-card span {
  color: #ffd66b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-brief-card a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: var(--white);
  font-weight: 900;
}

.news-lead-section,
.news-board,
.news-action-band {
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 64px);
}

.news-lead-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(12, 23, 43, .1);
}

.news-lead-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #eef1f6;
}

.news-lead-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.news-lead-card span,
.news-card-grid span {
  color: #65728a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-lead-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.news-lead-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.news-board {
  background: var(--white);
}

.news-card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 23, 43, .07);
}

.news-card-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #eef1f6;
}

.news-card-grid div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.news-card-grid h3 {
  margin: 9px 0 10px;
  font-size: 25px;
  line-height: 1.16;
}

.news-card-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.news-card-grid a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.news-contact-tile {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 59, 114, .94), rgba(127, 29, 29, .9)),
    url("/assets/kanegop/kane-gop-pledge.jpg") center/cover;
}

.news-contact-tile span,
.news-contact-tile p,
.news-contact-tile a {
  color: rgba(255, 255, 255, .86);
}

.news-contact-tile h3 {
  color: var(--white);
}

.news-action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: var(--blue-dark);
}

.news-action-band h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.12;
}

.news-action-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-action-links a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, .08);
}

.utility-page main {
  background: #f8fafc;
}

.utility-hero {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.86) 56%, rgba(185,28,28,.86)), url("/assets/kanegop/gop-officers-swearing-in.jpg") center/cover;
  color: #fff;
}

.utility-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  margin: 0 0 16px;
}

.utility-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255,255,255,.86);
  margin: 0;
}

.utility-shell {
  display: grid;
  gap: 22px;
  padding: clamp(38px, 7vw, 76px) clamp(18px, 5vw, 70px);
}

.utility-card {
  max-width: 980px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.utility-card h2,
.utility-card h3 {
  margin-top: 0;
}

.utility-card p,
.utility-card li {
  color: var(--muted);
  line-height: 1.65;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(30px, 6vw, 58px) clamp(18px, 5vw, 70px);
  background: #fff;
}

.utility-grid a {
  display: block;
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.utility-grid a:hover {
  border-color: var(--red);
}

.utility-grid span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.utility-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

@media (max-width: 980px) {
  .menu-button { display: inline-flex; }
  .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 76px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); flex-direction: column; align-items: stretch; }
  .site-header.dark .main-nav { background: #07101f; color: var(--white); border-color: rgba(255,255,255,.18); }
  .main-nav.open { display: flex; }
  .a-hero, .split-section, .meeting-band, .signup-panel, .township-finder, .briefing, .premium-signup, .resource-panel, .contact-panel, .connect-hero, .info-columns, .event-calendar, .donation-panel, .donation-hero, .chairwoman-note, .donation-layout, .impact-section, .donor-trust-band, .profile-hero, .profile-content, .candidate-profile-hero, .candidate-profile-content, .candidate-action-band, .event-request-hero, .event-request-shell, .volunteer-hero-panel, .volunteer-form-shell, .news-page .news-hero, .news-lead-card, .news-action-band, .vote-duty-band, .official-vote-links { grid-template-columns: 1fr; }
  .training-hero,
  .training-detail-band { grid-template-columns: 1fr; }
  .event-calendar-toolbar { align-items: start; flex-direction: column; }
  .room-reservation-summary { grid-template-columns: 1fr; align-items: start; }
  .room-actions { justify-content: flex-start; }
  .kg-calendar-header { align-items: start; flex-direction: column; }
  .kg-calendar-title-nav { width: 100%; }
  .kg-calendar-controls { justify-content: flex-start; }
  .kg-calendar-layout { grid-template-columns: 1fr; }
  .kg-calendar-detail-panel { position: static; }
  .kg-calendar-day { min-height: 112px; padding: 8px; }
  .election-dates { min-width: 0; }
  .mission-bar { grid-template-columns: 1fr; gap: 10px; align-items: start; }
  .hero-slider { min-height: 420px; }
  .hero-copy h1 { font-size: clamp(38px, 8vw, 58px); }
  .action-strip, .candidate-grid, .action-grid, .news-grid, .command-grid, .operations-grid, .demo-grid, .news-feature, .path-grid, .directory-grid, .volunteer-paths, .news-card-grid, .vote-plan-grid, .utility-grid { grid-template-columns: 1fr; }
  .volunteer-form-intro { position: static; }
  .donation-intro { position: static; }
  .section-summary { max-width: none; }
  .township-grid, .township-directory, .feature-resource-grid, .faq-grid, .connect-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-grid, .official-vote-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  form, .premium-signup form { grid-template-columns: 1fr; }
  #contact-routing-form {
    justify-self: stretch;
    grid-template-columns: 1fr;
  }
  #contact-routing-form input[aria-label="Topic"],
  #contact-routing-form button {
    grid-column: auto;
  }
  .premium-signup button { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; }
  .status-rail { position: relative; right: auto; bottom: auto; padding: 0 18px 22px; grid-template-columns: 1fr; width: 100%; }
  .b-hero { min-height: auto; }
  .candidate-profile-hero { min-height: auto; }
  .candidate-portrait-card,
  .candidate-portrait-card img,
  .candidate-monogram { min-height: 420px; }
  .candidate-action-band .button-row { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .hub-shell { padding: 22px; }
  .site-header { min-height: 74px; }
  .site-header { left: 0; right: 0; width: 100vw; max-width: 100vw; justify-content: space-between; gap: 12px; padding-left: 18px; padding-right: 18px; }
  .brand { min-width: 0; }
  .brand img { width: min(178px, 52vw); max-height: 64px; }
  .menu-button { position: absolute; top: 18px; right: 18px; flex: 0 0 auto; margin-left: auto; max-width: 96px; }
  .training-page .menu-button { display: none; }
  h2 { font-size: clamp(27px, 8vw, 34px); line-height: 1.2; }
  .kg-calendar {
    gap: 12px;
  }
  .room-reservations-module {
    margin: 28px 18px;
    padding: 18px;
  }
  .room-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .room-actions .button {
    justify-content: center;
    width: 100%;
    white-space: normal;
  }
  .kg-calendar-header {
    gap: 14px;
    padding: 20px;
  }
  .kg-calendar-header h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .kg-calendar-title-nav {
    gap: 8px;
  }
  .kg-calendar-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .kg-calendar-button,
  .kg-calendar-subscribe {
    min-width: 0;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
  }
  .kg-calendar-subscribe {
    grid-column: 1 / -1;
  }
  .kg-calendar-layout { display: block; }
  .training-meta-row { grid-template-columns: 1fr; }
  .training-hero { width: 100vw; max-width: 100vw; min-height: auto; overflow: hidden; padding: 32px 18px; }
  .training-page * { max-width: 100%; }
  .training-hero-copy,
  .training-lede { width: 100%; max-width: min(330px, calc(100vw - 36px)); }
  .training-hero-copy h1 { max-width: min(330px, calc(100vw - 36px)); font-size: clamp(42px, 13vw, 52px); line-height: .98; }
  .training-lede,
  .training-rsvp-alert { overflow-wrap: anywhere; white-space: normal; }
  .training-lede { font-size: 1.02rem; line-height: 1.55; }
  .training-form-grid,
  .training-guest-fieldset,
  .event-request-form .form-grid { grid-template-columns: 1fr; }
  .event-request-hero { padding: 32px 18px; }
  .event-request-shell { padding: 22px 18px; }
  .event-request-form { padding: 20px; gap: 18px; }
  .event-request-type,
  .event-request-panel { padding: 16px; }
  .event-request-form .event-request-type label { align-items: center; }
  .event-request-submit { justify-self: stretch; text-align: center; }
  .volunteer-hero-panel { padding-top: 46px; padding-bottom: 46px; }
  .volunteer-hero-panel h1 { font-size: clamp(42px, 12vw, 56px); }
  .volunteer-field-grid,
  .checkbox-grid,
  .checkbox-grid-compact,
  .donation-tier-grid,
  .donation-tier-grid-onetime,
  .donation-field-grid,
  .donation-choice-grid,
  .impact-grid { grid-template-columns: 1fr; }
  .donation-choice-cta { justify-self: stretch; text-align: center; }
  .donation-hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 42px;
  }
  .donation-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: .98;
  }
  .chairwoman-note,
  .donation-layout,
  .impact-section,
  .donor-trust-band {
    padding-left: 18px;
    padding-right: 18px;
  }
  .chairwoman-note blockquote {
    padding: 20px;
  }
  .chairwoman-note blockquote p {
    font-size: clamp(23px, 7vw, 31px);
  }
  .donation-form,
  .donation-form fieldset {
    padding: 16px;
  }
  .donation-field-wide {
    grid-column: auto;
  }
  .donation-tier {
    min-height: 132px;
  }
  .donation-submit {
    justify-self: stretch;
  }
  .volunteer-intake-form { padding: 18px; }
  .volunteer-intake-form fieldset { padding: 16px; }
  .volunteer-submit { justify-self: stretch; text-align: center; }
  .kg-calendar-month { overflow-x: visible; }
  .kg-calendar-weekdays,
  .kg-calendar-grid { min-width: 0; }
  .kg-calendar-weekdays span {
    padding: 10px 2px;
    font-size: 10px;
    letter-spacing: 0;
  }
  .kg-calendar-day {
    min-height: 52px;
    padding: 4px;
  }
  .kg-calendar-day-number {
    min-width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .kg-calendar-event {
    width: 11px;
    height: 11px;
    margin: 5px auto 0;
    overflow: hidden;
    border-radius: 999px;
    padding: 0;
    text-indent: 999px;
    white-space: nowrap;
  }
  .kg-calendar-detail-panel { display: none; }
  .kg-calendar-agenda { display: grid; gap: 14px; }
  .hero-copy, .b-hero-copy { padding: 36px 18px; }
  .hero-copy h1 { font-size: clamp(35px, 11vw, 48px); line-height: 1.08; }
  .meeting-band { padding-top: 38px; padding-bottom: 38px; }
  .election-center { padding-top: 42px; padding-bottom: 42px; }
  .election-center h2 { font-size: clamp(35px, 10vw, 48px); }
  .election-date-hero strong { font-size: clamp(48px, 14vw, 58px); }
  .election-date-hero,
  .election-quick-list article { min-height: 0; }
  .election-quick-list article { grid-template-columns: 1fr; gap: 10px; }
  .quick-date { grid-row: auto; align-self: start; justify-self: stretch; min-height: 56px; padding: 10px 16px; }
  .election-quick-list .quick-kicker + strong,
  .election-quick-list p { grid-column: 1; }
  .election-dates { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .township-directory, .feature-resource-grid, .faq-grid, .donation-amounts, .connect-grid, .social-icon-row, .official-vote-list { grid-template-columns: 1fr; }
  .election-dates > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); padding-left: 0; padding-top: 16px; }
  .section-heading { display: block; text-align: center; }
  .section-heading .eyebrow { margin-bottom: 10px; }
  .section-heading a { display: inline-block; margin-top: 12px; }
  .command-grid article { grid-template-columns: 100px 1fr; }
  .command-grid img { width: 100px; height: 120px; }
  .candidate-grid img { height: 230px; }
  .candidate-profile-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 58px);
    line-height: .98;
  }
  .candidate-profile-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }
  .candidate-profile-hero,
  .candidate-profile-content,
  .candidate-action-band { padding-left: 18px; padding-right: 18px; }
  .candidate-profile-lede { display: none; }
  .candidate-profile-lede,
  .candidate-office-pill { max-width: calc(100vw - 36px); }
  .candidate-portrait-card,
  .candidate-portrait-card img,
  .candidate-monogram { min-height: 340px; }
  .candidate-badge { position: static; margin: 14px; }
  .township-grid { grid-template-columns: 1fr; }
  .connect-page main { padding-left: 18px; padding-right: 18px; }
  .connect-hero { padding: 22px; }
  .connect-card { min-height: 0; }
  .button-row,
  form {
    width: 100%;
  }
  .button,
  form button {
    width: 100%;
    min-height: 48px;
  }
  .directory-grid a,
  .township-card,
  .resource-grid a {
    min-height: 48px;
  }
  .township-card { min-height: 160px; }
  .township-card strong { max-width: 100%; font-size: 21px; }
  .township-card::after { position: static; align-self: flex-start; order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-slider img {
    transition: none;
  }
}

/* Footer tracking opt-out. Deliberately quiet: it must be findable (the privacy
   policy points at it) without competing with the footer's real navigation. */
.footer-tracking-optout {
  margin: 14px 0 0;
  font-size: 13px;
  opacity: 0.75;
}
.footer-tracking-optout a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Engage Kane Bash event landing page */
.engage-bash-page {
  --engage-navy: #07182f;
  --engage-blue: #163b72;
  --engage-red: #b91c1c;
  --engage-red-dark: #7f1d1d;
  --engage-gold: #f4c95d;
  background: #f4f6f9;
  color: var(--engage-navy);
}

.engage-bash-page main {
  overflow: hidden;
}

.engage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 720px;
  padding: clamp(70px, 9vw, 120px) max(24px, calc((100vw - 1220px) / 2));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 15%, rgba(244, 201, 93, .18), transparent 25%),
    linear-gradient(125deg, var(--engage-navy) 0%, var(--engage-blue) 66%, #1d4f91 100%);
}

.engage-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, .32) 49%, transparent 50%),
    linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, .2) 49%, transparent 50%);
  background-size: 76px 76px;
}

.engage-hero::after {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(185, 28, 28, .42);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.engage-hero-copy,
.engage-poster {
  position: relative;
  z-index: 1;
}

.engage-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--engage-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.engage-hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .8;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.engage-hero h1 strong {
  margin-top: 12px;
  color: var(--engage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86em;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.035em;
}

.engage-lede {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.engage-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.engage-facts div {
  padding: 20px 20px 20px 0;
}

.engage-facts div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.engage-facts dt {
  margin-bottom: 8px;
  color: var(--engage-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.engage-facts dd {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 750;
  line-height: 1.35;
}

.engage-coming-soon {
  max-width: 690px;
  padding: 20px 24px;
  border-left: 6px solid var(--engage-gold);
  border-radius: 0 14px 14px 0;
  background: var(--engage-red);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.engage-coming-soon span {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.engage-coming-soon strong {
  display: block;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.12;
}

.engage-coming-soon p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.45;
}

.engage-poster {
  margin: 0;
  transform: rotate(1.5deg);
}

.engage-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid #fff;
  border-radius: 10px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, .44);
}

.engage-poster figcaption {
  margin: 15px 12px 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  text-align: center;
}

.engage-ticket-preview,
.engage-venue,
.engage-sponsors,
.engage-closing {
  padding: clamp(66px, 8vw, 108px) max(24px, calc((100vw - 1160px) / 2));
}

.engage-ticket-preview {
  background:
    linear-gradient(rgba(7, 24, 47, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 47, .035) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
}

.engage-section-heading {
  max-width: 770px;
  margin: 0 auto 42px;
  text-align: center;
}

.engage-section-heading h2,
.engage-venue h2,
.engage-closing h2 {
  margin: 8px 0 14px;
  color: var(--engage-navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.engage-section-heading > p:last-child,
.engage-venue > div:first-child > p:last-child,
.engage-closing > div:first-child > p:last-child {
  color: #536174;
  font-size: 18px;
  line-height: 1.6;
}

.engage-bash-page .eyebrow {
  margin: 0;
  color: var(--engage-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.engage-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 830px;
  margin: 0 auto;
}

.engage-price-grid article {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #dbe2ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 24, 47, .1);
  text-align: center;
}

.engage-price-grid article.featured {
  color: #fff;
  border-color: var(--engage-blue);
  background: linear-gradient(145deg, var(--engage-blue), var(--engage-navy));
}

.engage-price-grid article.featured::after {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(244, 201, 93, .32);
  border-radius: 50%;
  content: "";
}

.engage-price-grid p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.engage-price-grid strong {
  display: block;
  color: var(--engage-red);
  font-size: clamp(52px, 7vw, 80px);
  line-height: 1;
}

.engage-price-grid .featured strong {
  color: var(--engage-gold);
}

.engage-price-grid span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.engage-sales-note {
  max-width: 830px;
  margin: 24px auto 0;
  padding: 15px 20px;
  border: 1px solid #efc7c7;
  border-radius: 10px;
  color: var(--engage-red-dark);
  background: #fff5f5;
  text-align: center;
}

.engage-venue {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  background: #f2f4f8;
}

.engage-address-card {
  padding: clamp(30px, 4vw, 48px);
  border-top: 7px solid var(--engage-red);
  border-radius: 5px 5px 18px 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 24, 47, .12);
}

.engage-address-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--engage-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.engage-address-card strong {
  display: block;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.engage-address-card .button {
  margin-top: 26px;
}

.engage-sponsors {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0, rgba(185, 28, 28, .3), transparent 26%),
    linear-gradient(145deg, #061326, var(--engage-navy) 60%, #102c53);
}

.engage-section-heading.light h2,
.engage-section-heading.light > p:last-child {
  color: #fff;
}

.engage-section-heading.light .eyebrow {
  color: var(--engage-gold);
}

.engage-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.engage-sponsor-grid article {
  grid-column: span 2;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(7px);
}

.engage-sponsor-grid article.dinner {
  grid-column: 3 / span 2;
  border-color: rgba(244, 201, 93, .65);
  background: linear-gradient(145deg, rgba(185, 28, 28, .58), rgba(127, 29, 29, .42));
}

.engage-sponsor-grid span {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--engage-gold);
  background: rgba(244, 201, 93, .1);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.engage-sponsor-grid h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-size: 21px;
}

.engage-sponsor-grid strong {
  color: var(--engage-gold);
  font-size: 34px;
}

.engage-closing {
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.engage-closing > div:first-child {
  max-width: 790px;
}

.engage-closing .button-row {
  flex: 0 0 auto;
}

@media (max-width: 1050px) {
  .engage-hero {
    grid-template-columns: 1fr;
  }

  .engage-poster {
    width: min(720px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .engage-sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engage-sponsor-grid article,
  .engage-sponsor-grid article.dinner {
    grid-column: auto;
  }

  .engage-sponsor-grid article.dinner {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .engage-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .engage-hero h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .engage-facts,
  .engage-price-grid,
  .engage-venue,
  .engage-sponsor-grid {
    grid-template-columns: 1fr;
  }

  .engage-facts div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-left: 0;
  }

  .engage-sponsor-grid article.dinner {
    grid-column: auto;
  }

  .engage-closing {
    display: block;
  }

  .engage-closing .button-row {
    margin-top: 28px;
  }
}

@media (max-width: 500px) {
  .engage-hero,
  .engage-ticket-preview,
  .engage-venue,
  .engage-sponsors,
  .engage-closing {
    padding-right: 18px;
    padding-left: 18px;
  }

  .engage-hero h1 {
    font-size: 51px;
  }

  .engage-coming-soon {
    padding: 18px;
  }

  .engage-poster img {
    border-width: 5px;
  }
}
