: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 { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.hub {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(9, 24, 54, .9), rgba(113, 18, 28, .86)),
    url("./assets/kanegop/gallery-01.jpg") 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: 190px; 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: 178px; max-height: 58px; object-fit: contain; }
.brand.compact img { width: 148px; 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); margin: 10px 0 24px; }

.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; }

.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; }
.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)),
    url("./assets/kanegop/gallery-07.jpg") 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)),
    url("./assets/kanegop/gallery-02.jpg") 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; }

.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)),
    url("./assets/kanegop/gallery-03.jpg") 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; }

.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: 150px; }
.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)),
    url("./assets/kanegop/gallery-01.jpg") 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)), url("./assets/kanegop/gallery-01.jpg"); }
.events-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.95), rgba(22,59,114,.82) 50%, rgba(127,29,29,.9)), url("./assets/kanegop/gallery-04.jpg"); }
.township-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.88) 52%, rgba(127,29,29,.86)), url("./assets/kanegop/gallery-07.jpg"); }
.volunteer-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.84) 52%, rgba(185,28,28,.82)), url("./assets/kanegop/gallery-06.jpg"); }
.donate-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.82) 52%, rgba(185,28,28,.86)), url("./assets/kanegop/gallery-03.jpg"); }
.contact-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.84) 52%, rgba(185,28,28,.78)), url("./assets/kanegop/gallery-02.jpg"); }
.news-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.96), rgba(22,59,114,.84) 52%, rgba(185,28,28,.82)), url("./assets/kanegop/news-vote-by-mail.png"); }
.policy-hero { background-image: linear-gradient(135deg, rgba(7,24,47,.98), rgba(22,59,114,.88) 54%, rgba(127,29,29,.82)), url("./assets/kanegop/gallery-05.jpg"); }
.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;
}
.feature-event {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(185,28,28,.9)),
    url("./assets/kanegop/lincoln-retirement.png") center/cover;
}
.feature-event p,
.feature-event time { color: rgba(255,255,255,.84); }
.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)),
    url("./assets/kanegop/gallery-03.jpg") 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)),
    url("./assets/kanegop/gallery-04.jpg") 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)),
    url("./assets/kanegop/gallery-04.jpg") 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;
}

@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, .info-columns, .event-calendar, .donation-panel, .profile-hero, .profile-content { grid-template-columns: 1fr; }
  .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 { grid-template-columns: 1fr; }
  .section-summary { max-width: none; }
  .township-grid, .township-directory, .feature-resource-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  form, .premium-signup form { grid-template-columns: 1fr; }
  .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; }
}

@media (max-width: 560px) {
  .hub-shell { padding: 22px; }
  .site-header { min-height: 74px; }
  .brand img { width: 135px; }
  h2 { font-size: clamp(27px, 8vw, 34px); line-height: 1.2; }
  .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-dates { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .township-directory, .feature-resource-grid, .faq-grid, .donation-amounts { 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; }
  .township-grid { grid-template-columns: 1fr; }
  .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; }
}
