@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --navy: #071b3b;
  --navy-deep: #04132b;
  --blue: #214ed1;
  --blue-soft: #dfe8ff;
  --red: #e52b32;
  --red-deep: #b7192a;
  --red-soft: #fbe4e1;
  --gold: #f4be3c;
  --paper: #f5f0e7;
  --paper-light: #fbfaf6;
  --ink: #10131a;
  --muted: #5e6470;
  --line: #d7d5cf;
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --mono: 'DM Mono', monospace;
  --shadow: 0 18px 36px rgba(4, 19, 43, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection { color: #fff; background: var(--red); }

a { color: inherit; }

button, input, select { font: inherit; }

button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  transform: translateY(-160%);
}

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

.top-ribbon {
  min-height: 34px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: var(--red);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
}

.ribbon-left, .ribbon-right { display: inline-flex; align-items: center; gap: 9px; }
.star { color: var(--gold); font-size: 15px; line-height: 1; }
.ribbon-arrow { color: var(--gold); font-size: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--navy);
  background: rgba(251, 250, 246, .96);
  border-bottom: 1px solid rgba(7, 27, 59, .14);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark em, .footer-brand em { color: var(--red); font-style: normal; }
.wordmark-star, .footer-star { color: var(--red); font-size: 21px; }

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); margin-left: auto; }
.desktop-nav a { color: #252a34; font-size: 14px; font-weight: 600; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--red); }

.nav-button, .button, .outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-button { color: #fff; background: var(--navy); }
.nav-button:hover, .nav-button:focus-visible, .button:hover, .button:focus-visible, .outline-button:hover, .outline-button:focus-visible { transform: translateY(-2px); }
.menu-toggle { display: none; padding: 10px; color: var(--navy); background: transparent; border: 0; }
.menu-icon { display: grid; gap: 5px; }
.menu-icon i { display: block; width: 24px; height: 2px; background: currentColor; }
.mobile-nav { display: none; }
.mobile-nav:not([hidden]) { display: block; }

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

.hero::before, .hero::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  height: 8px;
  background: var(--red);
}

.hero::before { top: 0; }
.hero::after { bottom: 0; background: var(--gold); }

.hero-stars {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle, #fff 1.3px, transparent 1.6px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.hero-inner, .hero-stats { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hero-inner { min-height: 610px; padding: 100px 0 74px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 72px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.2;
}

.eyebrow.light { color: var(--gold); }
.eyebrow-line { display: inline-block; width: 28px; height: 2px; background: currentColor; }

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(72px, 10.3vw, 150px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 span { color: var(--red); text-shadow: 7px 7px 0 var(--gold); }
.hero-lede { max-width: 580px; margin: 32px 0 28px; color: #d6e0f3; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.button-red { color: #fff; background: var(--red); box-shadow: 5px 5px 0 rgba(244, 190, 60, .95); }
.button-red:hover, .button-red:focus-visible { background: var(--red-deep); }
.text-link { font-size: 14px; font-weight: 700; text-decoration: none; }
.light-link { color: #fff; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 3px; }
.hero-footnote { display: flex; align-items: center; gap: 10px; max-width: 470px; margin-top: 48px; color: #94a7c8; font-family: var(--mono); font-size: 10px; letter-spacing: .03em; line-height: 1.55; }
.check-seal { width: 23px; height: 23px; display: inline-grid; place-items: center; flex: 0 0 auto; color: var(--navy); background: var(--gold); border-radius: 50%; font-family: var(--body); font-weight: 800; font-size: 14px; }

.hero-branding { justify-self: end; width: min(100%, 420px); }
.logo-frame { position: relative; padding: 16px; background: #fff; box-shadow: 18px 18px 0 var(--red); transform: rotate(2.2deg); }
.logo-frame::before, .logo-frame::after { position: absolute; content: '★'; color: var(--gold); font-size: 34px; line-height: 1; }
.logo-frame::before { top: -23px; left: -22px; }
.logo-frame::after { right: -27px; bottom: -23px; }
.logo-frame img { display: block; width: 100%; height: auto; }
.logo-note { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin: 40px 0 0; padding: 16px 0 0 12px; border-top: 1px solid rgba(255,255,255,.28); }
.note-label { max-width: 112px; color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; line-height: 1.5; }
.logo-note p { max-width: 220px; margin: 0; color: #b9c7df; font-size: 14px; line-height: 1.45; }

.hero-stats { min-height: 80px; padding: 0 0 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.hero-stats > div { display: flex; align-items: center; gap: 15px; padding: 18px 22px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-stats strong { color: var(--gold); font-family: var(--display); font-size: 31px; font-weight: 500; line-height: 1; }
.hero-stats span { color: #b9c7df; font-size: 12px; line-height: 1.35; }

.section-pad { padding: 112px max(24px, 5vw); }
.plan-section { background: var(--paper); border-bottom: 1px solid var(--line); }
.section-intro { margin: 0 auto 44px; }
.intro-wide { max-width: 1180px; }
.section-intro h2, .article-header h2 { max-width: 690px; margin: 0 0 16px; color: var(--navy); font-family: var(--display); font-size: clamp(42px, 5.8vw, 74px); font-weight: 600; letter-spacing: -.025em; line-height: .98; text-transform: uppercase; }
.section-intro p:not(.eyebrow) { max-width: 570px; margin: 0; color: var(--muted); font-size: 17px; }

.path-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path-card { position: relative; min-height: 230px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; color: var(--navy); background: var(--paper-light); border: 1px solid var(--line); transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.path-card:hover, .path-card:focus-visible { transform: translateY(-5px); border-color: var(--navy); }
.path-card.active { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 9px 9px 0 var(--red); }
.path-number { position: absolute; top: 18px; right: 20px; color: var(--red); font-family: var(--mono); font-size: 12px; }
.path-card.active .path-number { color: var(--gold); }
.path-icon { margin-bottom: 24px; color: var(--red); font-size: 35px; line-height: 1; }
.path-card.active .path-icon { color: var(--gold); }
.path-title { font-family: var(--display); font-size: 31px; font-weight: 600; line-height: 1; text-transform: uppercase; }
.path-copy { max-width: 230px; margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.path-card.active .path-copy { color: #c9d5e9; }
.path-arrow { position: absolute; right: 20px; bottom: 19px; color: var(--red); font-size: 20px; }
.path-card.active .path-arrow { color: var(--gold); }
.plan-callout { width: min(900px, 100%); margin: 46px auto 0; padding: 18px 20px; display: flex; align-items: center; gap: 16px; color: var(--navy); background: #fff; border-left: 5px solid var(--red); box-shadow: var(--shadow); }
.callout-mark { color: var(--red); font-size: 26px; line-height: 1; }
.plan-callout p { flex: 1; margin: 0; font-size: 14px; line-height: 1.45; }
.plan-callout a { color: var(--red); font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }

.article-wrap { background: var(--paper-light); }
.article-layout { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 210px minmax(0, 760px); justify-content: space-between; gap: 66px; }
.article-rail { min-width: 0; }
.rail-sticky { position: sticky; top: 106px; }
.rail-label { margin: 0 0 13px; color: var(--navy); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; }
.rail-rule { width: 100%; height: 2px; margin-bottom: 14px; background: var(--red); }
.rail-link { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; color: #90939b; font-family: var(--display); font-size: 16px; font-weight: 500; line-height: 1.15; text-decoration: none; text-transform: uppercase; }
.rail-link span { width: 23px; color: #b7bbc1; font-family: var(--mono); font-size: 10px; }
.rail-link:hover, .rail-link.active { color: var(--navy); }
.rail-link.active span { color: var(--red); }
.rail-bottom { margin-top: 42px; padding: 20px 0 0; display: flex; gap: 10px; border-top: 1px solid var(--line); }
.rail-star { color: var(--red); font-size: 19px; line-height: 1; }
.rail-bottom p { margin: 0; color: #7a7d85; font-size: 12px; line-height: 1.4; }

.guide-article { min-width: 0; }
.article-header { margin-bottom: 102px; }
.article-header h2 { font-size: clamp(48px, 6vw, 80px); }
.article-dek { max-width: 630px; margin: 0; color: var(--muted); font-family: Georgia, serif; font-size: 21px; line-height: 1.55; }
.guide-section { scroll-margin-top: 112px; padding: 0 0 112px; margin-bottom: 112px; border-bottom: 1px solid var(--line); }
.section-marker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--red); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; line-height: 1; }
.section-marker > span { color: #fff; background: var(--red); padding: 6px 7px; font-size: 11px; }
.section-marker i { width: 32px; height: 1px; background: currentColor; }
.section-marker b { font-weight: 500; }
.guide-section h3, .rights-section h3, .finish-section h3 { max-width: 700px; margin: 0 0 18px; color: var(--navy); font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 600; letter-spacing: -.025em; line-height: .98; text-transform: uppercase; }
.section-lede { max-width: 660px; margin: 0 0 34px; color: #444a55; font-family: Georgia, serif; font-size: 21px; line-height: 1.55; }
.two-column-copy { display: grid; grid-template-columns: 1fr .82fr; gap: 34px; align-items: start; }
.two-column-copy p { margin: 0 0 17px; color: #4f535d; font-size: 16px; line-height: 1.7; }
.two-column-copy a, .guide-section a:not(.button):not(.outline-button), .small-source a { color: var(--red); font-weight: 700; text-decoration-color: rgba(229, 43, 50, .35); text-underline-offset: 3px; }
.fact-card { padding: 25px; }
.navy-card { color: #fff; background: var(--navy); box-shadow: 8px 8px 0 var(--gold); }
.fact-label { display: block; margin-bottom: 18px; color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .15em; }
.fact-card strong { display: block; font-family: var(--display); font-size: 36px; font-weight: 500; line-height: 1; text-transform: uppercase; }
.fact-card p { margin: 10px 0 21px; color: #c3d0e4; font-size: 13px; line-height: 1.5; }
.card-link { color: #fff !important; font-size: 12px; font-weight: 700; text-decoration: none !important; }
.tip-strip { display: flex; align-items: flex-start; gap: 12px; margin-top: 30px; padding: 15px 17px; color: #353a44; background: var(--red-soft); border-top: 2px solid var(--red); }
.tip-icon { width: 22px; height: 22px; display: inline-grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--red); border-radius: 50%; font-size: 13px; font-weight: 800; }
.tip-strip p { margin: 0; font-size: 13px; line-height: 1.45; }

.check-list { margin: 36px 0 28px; border-top: 1px solid var(--line); }
.check-row { display: flex; gap: 17px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.check-box { width: 25px; height: 25px; display: inline-grid; place-items: center; flex: 0 0 auto; color: var(--navy); background: var(--gold); font-size: 16px; font-weight: 800; }
.check-row strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 16px; }
.check-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.outline-button { color: var(--navy); border-color: var(--navy); background: transparent; }
.outline-button:hover, .outline-button:focus-visible { color: #fff; background: var(--navy); }

.method-table { margin-top: 30px; border-top: 3px solid var(--navy); }
.method-row { display: grid; grid-template-columns: 1.05fr 1.1fr 1fr; gap: 22px; padding: 17px 0; align-items: start; border-bottom: 1px solid var(--line); color: #565b65; font-size: 13px; line-height: 1.45; }
.method-row strong { display: flex; align-items: center; gap: 9px; color: var(--navy); font-size: 14px; }
.method-head { padding: 10px 0; color: #888d94; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.method-dot, .legend-dot { display: inline-block; width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; }
.method-dot.red, .legend-dot.red { background: var(--red); }
.method-dot.blue, .legend-dot.blue { background: var(--blue); }
.method-dot.gold, .legend-dot.gold { background: var(--gold); }
.small-source { margin: 24px 0 0; color: #81858c; font-family: var(--mono); font-size: 11px; line-height: 1.6; }

.ballot-card { max-width: 570px; margin: 30px 0; padding: 26px; color: var(--navy); background: #fff; border: 1px solid var(--line); box-shadow: 8px 8px 0 var(--blue); }
.ballot-card-top, .ballot-card-bottom { display: flex; justify-content: space-between; gap: 15px; }
.ballot-label { color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.ballot-stars { color: var(--red); font-size: 14px; }
.ballot-lines { display: grid; gap: 12px; margin: 25px 0 20px; }
.ballot-lines span { display: block; width: 100%; height: 10px; background: #edf0f6; }
.ballot-lines span:nth-child(2) { width: 88%; }.ballot-lines span:nth-child(3) { width: 93%; }.ballot-lines span:nth-child(4) { width: 66%; }
.ballot-card-bottom { align-items: baseline; padding-top: 15px; border-top: 1px solid var(--line); }
.ballot-card-bottom strong { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.ballot-card-bottom span { color: var(--muted); font-size: 12px; }
.inline-note { display: flex; gap: 15px; margin: 17px 0; }
.note-number { width: 24px; height: 24px; display: inline-grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--navy); border-radius: 50%; font-family: var(--mono); font-size: 11px; }
.inline-note p { margin: 0; color: #555a63; font-size: 14px; line-height: 1.55; }

.location-guide { border-bottom: 0; margin-bottom: 30px; padding-bottom: 0; }
.locator-shell { display: grid; grid-template-columns: .86fr 1.14fr; margin-top: 34px; background: #fff; border: 1px solid var(--navy); box-shadow: 10px 10px 0 var(--navy); }
.locator-form-side { padding: 32px 29px; color: var(--navy); }
.locator-heading, .map-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--red); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; }
.locator-heading { justify-content: flex-start; }
.locator-pin-mini { font-size: 14px; }
.locator-form-side h4 { margin: 25px 0 9px; font-family: var(--display); font-size: 33px; font-weight: 600; line-height: 1; text-transform: uppercase; }
.locator-copy { margin: 0 0 24px; color: #626773; font-size: 13px; line-height: 1.5; }
#locatorForm { display: grid; gap: 8px; }
#locatorForm label { color: var(--navy); font-size: 12px; font-weight: 700; }
#locatorForm label span:not(.optional) { color: var(--red); }
#locatorForm .optional { color: #92969d; font-size: 10px; font-weight: 500; }
#locatorForm input, #locatorForm select { width: 100%; height: 43px; padding: 0 12px; color: var(--navy); background: #fbfaf6; border: 1px solid #cfd0ce; border-radius: 0; outline: none; }
#locatorForm input:focus, #locatorForm select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
#locatorForm select { appearance: auto; }
.form-row { display: grid; grid-template-columns: 1fr .75fr; gap: 11px; }
.form-row > div { display: grid; gap: 8px; }
.form-button { width: 100%; min-height: 48px; margin-top: 14px; border: 0; box-shadow: 4px 4px 0 var(--gold); }
.form-privacy { margin: 19px 0 0; color: #8b8f97; font-family: var(--mono); font-size: 10px; line-height: 1.45; }
.form-privacy span { color: var(--blue); font-size: 16px; }
.locator-result { margin-top: 22px; padding: 17px; color: var(--navy); background: var(--blue-soft); border-left: 4px solid var(--blue); }
.locator-result strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.locator-result p { margin: 0 0 12px; color: #4d5565; font-size: 12px; line-height: 1.45; }
.result-links { display: grid; gap: 7px; }
.result-links a { color: var(--blue); font-size: 11px; font-weight: 700; text-decoration: none; }

.map-side { padding: 24px; background: var(--navy); }
.map-header { color: var(--gold); }
.map-status { display: inline-flex; align-items: center; gap: 7px; color: #b4c2da; font-size: 9px; }
.map-status i { width: 7px; height: 7px; display: inline-block; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(244,190,60,.14); }
.map-canvas { position: relative; min-height: 405px; margin-top: 18px; overflow: hidden; background: #092651; border: 1px solid rgba(255,255,255,.18); }
.map-canvas::before { position: absolute; inset: 0; content: ''; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 34px 34px; }
.us-map { position: absolute; inset: 0; width: 100%; height: 100%; padding: 25px; }
.map-shadow { fill: rgba(0,0,0,.19); transform: translate(4px, 6px); }
.map-outline { fill: #f8f2e5; stroke: #fff; stroke-width: 2; stroke-linejoin: round; }
.map-lake { fill: #092651; }
.map-route { fill: none; stroke: #d8aa38; stroke-width: 2; stroke-dasharray: 5 7; opacity: .7; }
.map-route.thin { stroke: #d5544f; stroke-width: 1.3; opacity: .5; }
.map-labels text { fill: #7a818d; font-family: var(--mono); font-size: 8px; letter-spacing: .15em; }
.guide-pin { position: absolute; top: 45%; left: 53%; display: flex; flex-direction: column; align-items: center; transform: translate(-50%, -50%); transition: top .45s cubic-bezier(.2,.8,.2,1), left .45s cubic-bezier(.2,.8,.2,1); }
.pin-head { position: relative; z-index: 2; width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--red); border: 3px solid #fff; border-radius: 50% 50% 50% 0; box-shadow: 3px 3px 0 var(--navy); font-size: 10px; transform: rotate(-45deg); }
.pin-head::first-letter { transform: rotate(45deg); }
.pin-pulse { position: absolute; top: 0; left: 0; width: 28px; height: 28px; background: rgba(229,43,50,.34); border: 1px solid var(--red); border-radius: 50%; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .7; } 60% { transform: scale(2.1); opacity: 0; } }
.pin-label { margin-top: 9px; padding: 4px 7px; color: var(--navy); background: var(--gold); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; white-space: nowrap; }
.map-card-label { position: absolute; left: 17px; bottom: 17px; max-width: 230px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; color: #fff; background: rgba(4,19,43,.88); font-family: var(--mono); font-size: 9px; line-height: 1.35; }
.tiny-pin { color: var(--red); font-size: 14px; line-height: 1; }
.map-watermark { position: absolute; top: 20px; right: 20px; color: rgba(255,255,255,.55); font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: .04em; line-height: .8; text-align: right; }
.map-watermark span { color: var(--red); font-family: var(--mono); font-size: 8px; letter-spacing: .15em; }
.map-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 17px; color: #b5c4db; font-family: var(--mono); font-size: 9px; }
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.location-source { margin: 25px 0 0; color: #7f848d; font-family: var(--mono); font-size: 11px; line-height: 1.55; }

.booth-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; padding: 0; margin: 36px 0 0; list-style: none; counter-reset: booth; }
.booth-steps li { display: flex; gap: 15px; padding: 19px 0; border-top: 1px solid var(--line); }
.booth-steps li > span { width: 31px; height: 31px; display: inline-grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--red); font-family: var(--mono); font-size: 10px; }
.booth-steps strong { display: block; color: var(--navy); font-family: var(--display); font-size: 25px; font-weight: 500; line-height: 1; text-transform: uppercase; }
.booth-steps p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.rights-section { scroll-margin-top: 112px; margin: 0 0 112px; padding: 45px; display: grid; grid-template-columns: 1fr .72fr; gap: 40px; color: #fff; background: var(--red); }
.light-marker { color: var(--gold); }
.light-marker > span { color: var(--navy); background: var(--gold); }
.rights-section h3 { color: #fff; }
.rights-copy > p { max-width: 480px; margin: 0; color: #ffe8df; font-family: Georgia, serif; font-size: 18px; line-height: 1.55; }
.rights-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.rights-links a { color: #fff; font-size: 12px; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 4px; }
.help-card { align-self: center; padding: 25px; color: var(--navy); background: var(--gold); box-shadow: 8px 8px 0 var(--navy); }
.help-card-label { display: block; margin-bottom: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: .15em; }
.help-card strong { display: block; font-family: var(--display); font-size: 42px; font-weight: 600; letter-spacing: -.02em; line-height: .9; }
.help-card p { margin: 15px 0; color: #3c3b2c; font-size: 13px; line-height: 1.45; }
.help-card a { color: var(--navy); font-size: 12px; font-weight: 800; text-decoration: none; }

.faq-section { margin-bottom: 90px; }
.faq-list { margin-top: 30px; border-top: 2px solid var(--navy); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 20px 38px 20px 0; color: var(--navy); font-family: var(--display); font-size: 25px; font-weight: 500; line-height: 1.1; text-transform: uppercase; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 16px; right: 4px; content: '+'; color: var(--red); font-family: var(--body); font-size: 28px; font-weight: 400; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { max-width: 625px; margin: -3px 0 22px; color: var(--muted); font-size: 15px; line-height: 1.6; }

.finish-section { scroll-margin-top: 112px; margin: 0 0 90px; padding: 45px; display: grid; grid-template-columns: 1fr .95fr; gap: 54px; color: #fff; background: var(--navy); box-shadow: 10px 10px 0 var(--red); }
.finish-section h3 { color: #fff; }
.finish-copy > p:not(.eyebrow) { max-width: 390px; color: #c5d2e8; font-size: 15px; }
.button-white { margin-top: 26px; color: var(--navy); background: #fff; }
.button-white:hover, .button-white:focus-visible { color: var(--navy); background: var(--gold); }
.plan-checklist { align-self: center; }
.plan-checklist label { display: flex; align-items: center; gap: 12px; padding: 12px 0; color: #fff; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.18); cursor: pointer; }
.plan-checklist input { position: absolute; opacity: 0; }
.custom-check { width: 22px; height: 22px; display: inline-grid; place-items: center; color: transparent; background: transparent; border: 1px solid var(--gold); font-size: 15px; font-weight: 800; }
.plan-checklist label:has(input:focus-visible) .custom-check { outline: 3px solid rgba(244,190,60,.35); outline-offset: 2px; }
.plan-checklist label:has(input:checked) .custom-check { color: var(--navy); background: var(--gold); }
.plan-checklist label:has(input:checked) > span:last-child { color: #9eafc9; text-decoration: line-through; }
.check-progress { margin-top: 22px; color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; }
.progress-track { height: 5px; margin-top: 9px; overflow: hidden; background: rgba(255,255,255,.18); }
.progress-track span { display: block; width: 0; height: 100%; background: var(--gold); transition: width .3s ease; }

.article-footer { padding-top: 55px; border-top: 1px solid var(--line); }
.footer-brand { margin-bottom: 16px; font-size: 23px; }
.article-footer > p { max-width: 560px; margin: 0; color: #686d76; font-size: 13px; line-height: 1.5; }
.source-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 42px 0 30px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.source-grid div { display: flex; flex-direction: column; gap: 7px; }
.source-grid span { color: #969aa0; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.source-grid a { color: var(--navy); font-family: var(--display); font-size: 22px; font-weight: 500; line-height: 1; text-decoration: none; text-transform: uppercase; }
.source-grid a:hover { color: var(--red); }
.reviewed { color: #979ba1 !important; font-family: var(--mono); font-size: 10px !important; }

@media (max-width: 1000px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 12px; }
  .nav-button { padding: 0 14px; font-size: 12px; }
  .hero-inner { gap: 40px; }
  .article-layout { grid-template-columns: 170px minmax(0, 1fr); gap: 40px; }
  .locator-shell { grid-template-columns: 1fr 1fr; }
  .map-side { padding: 20px; }
  .map-canvas { min-height: 350px; }
}

@media (max-width: 760px) {
  .top-ribbon { min-height: 31px; padding: 0 18px; font-size: 8px; }
  .ribbon-right { display: none; }
  .nav-shell, .hero-inner, .hero-stats { width: min(100% - 36px, 600px); }
  .nav-shell { min-height: 66px; }
  .wordmark { font-size: 17px; }
  .wordmark-star { font-size: 18px; }
  .desktop-nav, .nav-button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { padding: 4px 18px 20px; background: var(--paper-light); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { display: block; padding: 12px 0; color: var(--navy); border-top: 1px solid var(--line); font-family: var(--display); font-size: 20px; text-decoration: none; text-transform: uppercase; }
  .hero-inner { min-height: auto; padding: 82px 0 58px; display: block; }
  .hero h1 { font-size: clamp(69px, 22vw, 130px); }
  .hero-lede { margin-top: 27px; font-size: 16px; }
  .hero-footnote { margin-top: 35px; }
  .hero-branding { width: min(82%, 340px); margin: 66px auto 0; }
  .logo-frame { box-shadow: 12px 12px 0 var(--red); }
  .logo-note { margin-top: 28px; }
  .hero-stats { padding-bottom: 28px; display: block; }
  .hero-stats > div { padding: 14px 0; }
  .section-pad { padding: 76px 18px; }
  .section-intro h2, .article-header h2 { font-size: clamp(45px, 13vw, 70px); }
  .section-intro p:not(.eyebrow) { font-size: 16px; }
  .path-grid { display: block; }
  .path-card { min-height: 150px; margin-bottom: 13px; padding: 20px; }
  .path-icon { margin-bottom: 15px; font-size: 26px; }
  .path-title { font-size: 28px; }
  .path-copy { max-width: calc(100% - 48px); margin-top: 8px; }
  .plan-callout { align-items: flex-start; margin-top: 34px; padding: 15px; flex-wrap: wrap; }
  .plan-callout p { flex: 1 1 calc(100% - 50px); }
  .plan-callout a { margin-left: 42px; }
  .article-layout { display: block; }
  .article-rail { display: none; }
  .article-header { margin-bottom: 70px; }
  .article-dek { font-size: 18px; }
  .guide-section { padding-bottom: 75px; margin-bottom: 75px; }
  .guide-section h3, .rights-section h3, .finish-section h3 { font-size: clamp(39px, 12vw, 61px); }
  .section-lede { font-size: 18px; }
  .two-column-copy, .locator-shell, .rights-section, .finish-section { display: block; }
  .fact-card { margin-top: 24px; }
  .method-table { overflow-x: auto; }
  .method-row { min-width: 660px; }
  .ballot-card { margin-right: 8px; }
  .locator-shell { box-shadow: 7px 7px 0 var(--navy); }
  .locator-form-side { padding: 27px 22px; }
  .map-side { padding: 18px; }
  .map-canvas { min-height: 315px; }
  .booth-steps { display: block; }
  .booth-steps li { padding: 17px 0; }
  .rights-section { padding: 31px 24px; }
  .help-card { margin-top: 34px; }
  .finish-section { padding: 31px 24px; box-shadow: 7px 7px 0 var(--red); }
  .plan-checklist { margin-top: 40px; }
  .source-grid { grid-template-columns: 1fr; gap: 18px; }
}

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