/* ============================================================
   VOTE NO on Missouri Amendments 4 & 5 — IBEW Local 1
   Palette: deep navy + gold. NO RED anywhere (per standing rule).
   ============================================================ */

:root {
  --navy:        #1e3a5f;
  --navy-dark:   #14273f;
  --navy-deep:   #0e1c2e;
  --navy-tint:   #eef2f8;
  --navy-line:   #d3ddea;
  --gold:        #e6a817;
  --gold-soft:   #f4d47a;
  --gold-tint:   #fbf3dd;
  --amber:       #c47f0e;      /* warnings — amber, never red */
  --ink:         #16233a;
  --muted:       #5a6b82;
  --paper:       #ffffff;
  --wash:        #f6f8fc;
  --ok:          #1f7a54;
  --radius:      14px;
  --shadow:      0 6px 24px rgba(20,39,63,.10);
  --shadow-lg:   0 18px 48px rgba(20,39,63,.18);
  --maxw:        1080px;
  --font:         "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-label:   "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--wash);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }

h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.02; letter-spacing: .005em;
  text-transform: uppercase; color: var(--navy);
}
h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); letter-spacing: -.005em; }
p  { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--tint { background: var(--navy-tint); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2 { color: #fff; }
.eyebrow {
  position: relative; display: inline-block; padding-left: 2em;
  font-family: var(--font-label); font-size: 1rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
}
.eyebrow::before {
  content: "\2717"; position: absolute; left: 0; top: -.06em;
  width: 1.3em; height: 1.3em; display: grid; place-items: center;
  border: 2px solid currentColor; border-radius: 3px; font-size: .82em; line-height: 1; font-weight: 700;
}
.section--navy .eyebrow { color: var(--gold-soft); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }
.section--navy .lead { color: #cdd9e8; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; height: 84px; }

/* wordmark: ballot-mark logo tile + VOTE NO */
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-badge {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--gold); color: var(--navy-dark); border-radius: 8px;
  font-family: var(--font); font-weight: 900; font-size: 1.7rem; line-height: 1;
}
.brand-txt { display: flex; flex-direction: column; gap: 3px; }
.brand-vote {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 1.95rem; letter-spacing: .02em; color: #fff; line-height: .86;
}
.brand-sub { font-family: var(--font-label); font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  color: #cdd9e8; text-decoration: none; font-family: var(--font-label); font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .07em; padding: 11px 12px; border-radius: 6px;
  position: relative; white-space: nowrap;
}
.nav a:not(.cta)::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 7px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.nav a:not(.cta):hover { color: #fff; }
.nav a:not(.cta):hover::after { transform: scaleX(1); }
.nav a.cta {
  background: var(--gold); color: var(--navy-dark); font-weight: 700; margin-left: 10px;
  padding: 10px 16px; border-radius: 8px; letter-spacing: .05em; font-size: .95rem;
}
.nav a.cta:hover { background: var(--gold-soft); }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-label); font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .04em; text-decoration: none;
  padding: 12px 24px; border-radius: 10px; border: 2px solid transparent;
  transition: transform .08s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--navy-dark); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy-deep);
  color: #fff; position: relative; overflow: hidden;
  border-bottom: 5px solid var(--gold);
}
.hero .wrap { padding-top: 44px; padding-bottom: 52px; position: relative; z-index: 2; }

/* video-forward hero */
.hero-kicker {
  font-family: var(--font-label); font-size: 1rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px;
}
.hero-lede { display: grid; grid-template-columns: 1fr; gap: 6px; margin-bottom: 26px; }
.hero-stage { max-width: 900px; margin: 0 auto; }
.hero-stage .video-frame { border-width: 4px; }
.name-plate {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; margin-top: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 12px 16px;
}
.name-plate .who { font-weight: 800; color: #fff; line-height: 1.2; }
.name-plate .who small { display: block; font-family: var(--font-label); font-weight: 600; font-size: .92rem; color: var(--gold-soft); letter-spacing: .04em; text-transform: uppercase; }
.name-plate .watch { margin-left: auto; color: #b9c8dc; font-weight: 600; font-size: .9rem; }
.hero-under { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 26px; }
.hero-under .datechip { margin: 0; }
.hero-flag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 14px; border-radius: 999px; font-weight: 700; font-size: .85rem;
  letter-spacing: .04em;
}
.hero-flag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.3rem, 8.5vw, 5.4rem); letter-spacing: .01em;
  margin: 0 0 18px; line-height: .94;
}
.hero h1 .no {
  color: var(--navy-deep); background: var(--gold);
  padding: 0 .16em; border-radius: 8px; display: inline-block;
  box-shadow: 0 6px 0 rgba(0,0,0,.18);
}
.hero h1 .amdt { color: var(--gold-soft); }
.hero p.sub { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: #d7e2f0; max-width: 40ch; margin-bottom: 6px; }
.hero .datechip {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
  font-weight: 800; font-size: 1.05rem; color: #fff;
}
.hero .datechip b { color: var(--gold-soft); }

/* stat strip */
.statstrip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--navy-line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-top: 40px;
}
.statstrip .stat { background: #fff; padding: 22px 18px; text-align: center; }
.statstrip .num { font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 900; color: var(--navy); line-height: 1; }
.statstrip .lbl { font-size: .82rem; color: var(--muted); margin-top: 8px; font-weight: 600; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--navy-line);
}
.card--gold { background: #fffdf7; }
.card .ico { font-size: 1.8rem; line-height: 1; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

/* amendment blocks */
.amdt-head { margin-bottom: 14px; }
.amdt-num {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-label); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); font-size: 1.15rem; margin-bottom: 14px;
}
.amdt-num::before {
  content: "\2717"; width: 1.5em; height: 1.5em; display: grid; place-items: center;
  border: 2.5px solid var(--gold); border-radius: 5px; color: var(--gold);
  font-family: var(--font); font-weight: 900; font-size: .9em; line-height: 1;
}
.amdt-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.3rem, 7vw, 3.8rem); color: var(--navy);
  letter-spacing: .01em; line-height: 1.0; margin: 0;
}
.amdt-title .hl {
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  box-shadow: inset 0 -.24em 0 var(--gold-soft);
}
.tag {
  display: inline-block; background: var(--gold-tint); color: var(--amber);
  border: 1px solid var(--gold-soft); font-family: var(--font-label); font-weight: 700; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}

.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .mk {
  flex: none; width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center;
  font-weight: 900; font-size: 1rem; background: var(--navy); color: var(--gold-soft); margin-top: 2px;
}
.checklist .mk::before { content: "\203A"; }        /* › neutral fact/harm */
.checklist .mk--ok { background: var(--gold); color: var(--navy-dark); }
.checklist .mk--ok::before { content: "\2713"; }    /* ✓ win */
.checklist li b { color: var(--ink); }
.checklist li span { color: var(--muted); }

/* taxed-items chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chips .chip {
  background: var(--navy-tint); border: 1px solid var(--navy-line);
  border-radius: 8px; padding: 8px 14px; font-weight: 600; font-size: .95rem; color: var(--navy);
}

/* quote */
.quote {
  background: var(--navy-dark); color: #fff; border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-lg); position: relative;
  border-left: 6px solid var(--gold);
}
.quote p { font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 600; line-height: 1.4; color: #eaf1f9; }
.quote .who { margin-top: 14px; font-weight: 800; color: var(--gold-soft); font-size: .95rem; }
.quote .who small { display: block; color: #a9bcd4; font-weight: 600; letter-spacing: .02em; }

/* video */
.video-frame {
  background: #000; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 3px solid var(--gold);
}
.video-frame video { width: 100%; height: auto; display: block; }
.video-frame video::cue {
  background: rgba(14,28,46,.85); color: #fff;
  font-family: var(--font); font-size: .85em; line-height: 1.35;
}
.video-meta { margin-top: 16px; color: #cdd9e8; }

/* callout / warning (amber, not red) */
.callout {
  background: var(--gold-tint); border: 1px solid var(--gold-soft);
  border-left: 6px solid var(--amber); border-radius: 12px; padding: 20px 22px;
}
.callout strong { color: var(--amber); }

/* ---------- Canvasser page ---------- */
.toolkit-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; }
.sched-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.loc {
  background: #fff; border-radius: 12px; padding: 20px; border: 1px solid var(--navy-line);
  box-shadow: var(--shadow);
}
.loc h4 { display: flex; align-items: center; gap: 10px; margin: 0 0 6px; font-family: var(--font-label); font-size: 1.2rem; color: var(--navy); font-weight: 700; letter-spacing: .01em; text-transform: uppercase; }
.loc .addr { color: var(--muted); font-size: .95rem; }
.loc .pin {
  flex: none; width: 13px; height: 13px; background: var(--gold);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
}

.when-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.when {
  display: inline-flex; align-items: center; gap: 8px; background: var(--navy);
  color: #fff; font-family: var(--font-label); font-weight: 600; letter-spacing: .03em;
  padding: 8px 18px; border-radius: 999px; font-size: 1.05rem;
}

.step {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 0;
  border-bottom: 1px solid var(--navy-line);
}
.step:last-child { border-bottom: 0; }
.step .n {
  flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  color: var(--navy-dark); font-weight: 900; display: grid; place-items: center; font-size: 1.05rem;
}
.step h4 { margin: 2px 0 4px; }
.step p { margin: 0; color: var(--muted); }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--navy-line); border-radius: 12px;
  padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 800; color: var(--navy); padding: 16px 0;
  list-style: none; display: flex; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "＋"; color: var(--gold); font-weight: 900; font-size: 1.2rem; flex: none;
}
.faq details[open] summary::before { content: "－"; }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }
.faq details p:first-of-type { padding-top: 4px; }
.faq .pushback { font-style: italic; color: var(--navy); font-weight: 700; }

/* pill talking points */
.tp { display: grid; gap: 14px; }
.tp .item {
  background: #fff; border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow);
  border: 1px solid var(--navy-line);
}
.tp .item b { color: var(--navy); display: block; margin-bottom: 4px; }
.tp .item span { color: var(--muted); }

/* schedule image cards */
.flyer {
  background: #fff; border-radius: 12px; padding: 12px; box-shadow: var(--shadow);
  border: 1px solid var(--navy-line);
}
.flyer img { border-radius: 8px; }
.flyer figcaption { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 10px; font-weight: 600; }

/* materials */
.mats { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; }
.mat { background: var(--navy-dark); color: #fff; border-radius: 12px; padding: 22px; text-align: center; }
.mat .ico { font-size: 2rem; }
.mat b { display: block; margin-top: 8px; }
.mat span { color: #b9c8dc; font-size: .88rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); color: var(--navy-dark); text-align: center; }
.cta-band h2 { color: var(--navy-dark); }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b9c8dc; padding: 44px 0 30px; font-size: .92rem; }
.site-footer a { color: var(--gold-soft); }
.site-footer .foot-top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; margin-bottom: 24px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.sources { font-size: .84rem; color: #8ea3bd; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; }
.sources a { word-break: break-word; }
.disclaimer { margin-top: 14px; color: #7d92ad; font-size: .8rem; }

/* ---------- utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 16px; }
.anchor { scroll-margin-top: 84px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .statstrip { grid-template-columns: 1fr; }
  .statstrip .stat { padding: 18px; }
  .site-header .wrap { height: 88px; }
  /* hamburger frees the row — let VOTE NO grow */
  .brand-badge { width: 54px; height: 54px; font-size: 2rem; border-radius: 9px; }
  .brand-vote { font-size: 2.5rem; }
  .brand-sub { font-size: 1rem; letter-spacing: .1em; }
  .nav { display: none; position: absolute; top: 88px; left: 0; right: 0;
         flex-direction: column; align-items: stretch; background: var(--navy-dark);
         padding: 10px; gap: 2px; box-shadow: var(--shadow-lg);
         border-bottom: 3px solid var(--gold); }
  .nav.open { display: flex; }
  .nav a { padding: 15px 14px; border-radius: 8px; font-size: 1.05rem; }
  .nav a:not(.cta)::after { display: none; }
  .nav a:not(.cta):hover, .nav a:not(.cta):active { background: rgba(255,255,255,.08); }
  .nav a.cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle {
    display: inline-grid; place-items: center; margin-left: auto;
    width: 44px; height: 44px; background: rgba(255,255,255,.12); border: 0;
    border-radius: 9px; color: #fff; font-size: 1.4rem; cursor: pointer;
  }
}
@media (min-width: 861px) {
  .video-split { display: grid; grid-template-columns: 1.3fr .9fr; gap: 34px; align-items: center; }
}
