/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --purple:      #4b2e83;
  --purple-dk:   #3a2266;
  --purple-lt:   #6b48b0;
  --gold:        #b7a57a;
  --gold-dk:     #85754d;
  --gold-lt:     #d4c09a;
  --white:       #ffffff;
  --off:         #f7f5f1;
  --gray-lt:     #e8e4dd;
  --gray:        #9e9890;
  --text:        #1c1a18;
  --text-mid:    #504a42;

  --r:           12px;
  --r-lg:        20px;
  --sh-sm:       0 2px 10px rgba(0,0,0,.07);
  --sh-md:       0 6px 24px rgba(0,0,0,.10);
  --sh-hover:    0 10px 36px rgba(75,46,131,.18);

  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-hd:     'Fraunces', Georgia, serif;

  --nav-h:       66px;
  --wrap:        1160px;
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: var(--purple-dk);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-hd);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .2s;
  letter-spacing: .1px;
}
.nav-item:hover,
.nav-item--active { color: var(--gold-lt); }

.nav-ig {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 7px 15px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-ig:hover {
  background: var(--gold);
  color: var(--purple-dk);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #160a32 0%, #2a1060 100%);
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 80px 40px;
  gap: 60px;
  min-height: 90vh;
}

.hero-left {
  flex: 1;
  z-index: 2;
}

.hero-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 340px;
  height: 510px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: block;
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    padding: 60px 24px 40px;
    min-height: unset;
    gap: 40px;
  }
  .hero-img {
    width: 100%;
    height: 380px;
  }
}

.hero-body {
  display: none;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
  opacity: .9;
}

.hero-title {
  font-family: var(--font-hd);
  font-size: clamp(3.8rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .92;
  color: #fff;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 400px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.45);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--purple-dk);
  font-size: .9375rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  transition: background .2s, transform .15s;
  letter-spacing: .1px;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.section       { padding: 96px 0; }
.section-off   { background: var(--off); }
.section-purple{ background: var(--purple); }

.sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.sec-title {
  font-family: var(--font-hd);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-purple .sec-title { color: #fff; }

.sec-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-purple .sec-sub { color: rgba(255,255,255,.72); }

/* ═══════════════════════════════════════════════
   GROUP HEADERS (Candidate Slate / Campaign Team)
═══════════════════════════════════════════════ */
.group-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-lt);
}
.group-hd--spaced { margin-top: 80px; }

.group-pill {
  background: var(--purple);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.group-pill--gold {
  background: var(--gold-dk);
}
.group-note {
  font-size: .875rem;
  color: var(--gray);
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   CANDIDATE ROWS — ALTERNATING LAYOUT
═══════════════════════════════════════════════ */
.cands-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cand-row {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  min-height: 700px;
  transition: box-shadow .25s, transform .2s;
  position: relative;
  z-index: 1;
}
.cand-row:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
  z-index: 10;
}

/* Every other row: photo flips to the right */
.cand-row:nth-child(even) {
  flex-direction: row-reverse;
}

.cr-photo {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
}
.cr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.cr-text {
  flex: 1;
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cr-role {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 10px;
  display: block;
}

.cr-name {
  font-family: var(--font-hd);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
  margin-bottom: 24px;
}

.cr-why {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.cr-why-lbl {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 8px;
}

.cr-why-txt {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   STAFF CARDS
═══════════════════════════════════════════════ */
.staff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: center;
}

.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 170px;
  transition: transform .2s;
}
.staff-card:hover { transform: translateY(-4px); }

.staff-img-wrap {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.staff-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.staff-role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 5px;
  line-height: 1.4;
  display: block;
}
.staff-name {
  font-family: var(--font-hd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════
   POLICIES
═══════════════════════════════════════════════ */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.policy-card {
  background: #fff;
  border-radius: var(--r);
  padding: 30px;
  border: 1.5px solid var(--gray-lt);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.policy-card:hover {
  border-color: var(--purple-lt);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.policy-icon {
  width: 52px;
  height: 52px;
  background: rgba(75,46,131,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 18px;
}
.policy-title {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 8px;
}
.policy-blurb {
  font-size: .875rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   GET NOTIFIED
═══════════════════════════════════════════════ */
.notify-wrap {
  max-width: 580px;
  text-align: center;
}

.notify-title {
  font-family: var(--font-hd);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.notify-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 44px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.form-email {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .9375rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-email::placeholder { color: rgba(255,255,255,.4); }
.form-email:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.13);
}

.btn-submit { flex-shrink: 0; }

.form-fine {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  padding: 22px 28px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-success.hidden { display: none; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--purple-dk);
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-hd);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-ig {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
}
.footer-ig:hover { color: var(--gold-lt); }


/* individual staff photo adjustments */
#photo-marshall { object-position: center 0%;  }
#photo-sharon   { object-position: center 20%; }
#photo-ava      { object-position: center 5%;  }
#photo-amanuel  { object-position: center 15%; filter: brightness(1.4); }
#photo-blake    { object-position: center 0%;  }

/* ═══════════════════════════════════════════════
   SCROLL FADE-IN ANIMATION
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings */
.staff-grid .fade-up:nth-child(2) { transition-delay: .07s; }
.staff-grid .fade-up:nth-child(3) { transition-delay: .14s; }
.staff-grid .fade-up:nth-child(4) { transition-delay: .21s; }
.staff-grid .fade-up:nth-child(5) { transition-delay: .28s; }

.policy-grid .fade-up:nth-child(2) { transition-delay: .07s; }
.policy-grid .fade-up:nth-child(3) { transition-delay: .14s; }
.policy-grid .fade-up:nth-child(4) { transition-delay: .21s; }
.policy-grid .fade-up:nth-child(5) { transition-delay: .28s; }
.policy-grid .fade-up:nth-child(6) { transition-delay: .35s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .cr-photo { width: 260px; }
  .cr-text  { padding: 28px 36px; }
  .cr-name  { font-size: 1.75rem; }

  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --nav-h: 58px; }

  .nav-logo { font-size: .95rem; }

  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--purple-dk);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 32px;
    gap: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-item { font-size: 1.0625rem; }
  .nav-ig { font-size: .875rem; padding: 8px 16px; }

  .hero-body { padding: 0 22px 56px; }
  .hero-title { line-height: .95; }
  .hero-sub { max-width: 100%; }

  /* Candidate rows stack on mobile */
  .cand-row,
  .cand-row:nth-child(even) {
    flex-direction: column;
  }
  .cr-photo {
    width: 100%;
    height: 300px;
  }
  .cr-text {
    padding: 24px 22px;
  }
  .cr-name { font-size: 1.5rem; }

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

  .form-row {
    flex-direction: column;
  }
  .form-email { text-align: center; }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .staff-grid { gap: 36px 20px; }
  .staff-card { width: 140px; }
  .staff-img-wrap { width: 110px; height: 110px; }
}

@media (max-width: 400px) {
  .group-hd { flex-direction: column; align-items: flex-start; gap: 8px; }
  .staff-card { width: 130px; }
}

/* ═══════════════════════════════════════════════
   WHO WE ARE CARD
═══════════════════════════════════════════════ */
.who-we-are {
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid var(--gray-lt);
  border-left: 4px solid var(--purple);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.wwa-title {
  font-family: var(--font-hd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 14px;
}
.who-we-are p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}
.who-we-are p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   POLICY ACTIONS (Expand All + Download PDF)
═══════════════════════════════════════════════ */
.policy-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn-expand-all {
  background: none;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.btn-expand-all:hover {
  background: var(--purple);
  color: #fff;
}
.btn-dl-pdf {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--purple-dk);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s;
  border: 2px solid transparent;
}
.btn-dl-pdf:hover { background: var(--gold-lt); }
.btn-dl-pdf:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* Download dropdown */
.dl-wrap {
  position: relative;
  display: inline-block;
}
.dl-chevron {
  transition: transform .22s ease;
  flex-shrink: 0;
}
.btn-dl-pdf[aria-expanded="true"] .dl-chevron {
  transform: rotate(180deg);
}
.dl-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 240px;
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  padding: 6px 0;
  z-index: 300;
  animation: dl-open .15s ease;
}
@keyframes dl-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dl-menu[hidden] { display: none; }
.dl-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: .875rem;
  color: var(--text);
  font-family: var(--font);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dl-menu li a:hover,
.dl-menu li a:focus-visible {
  background: var(--purple);
  color: var(--white);
  outline: none;
}

/* ═══════════════════════════════════════════════
   POLICY QUICK NAV
═══════════════════════════════════════════════ */
.policy-quick-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--purple);
  border-bottom: 1px solid rgba(255,255,255,.12);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pqn-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 28px;
  white-space: nowrap;
}
.pqn-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-right: 8px;
  flex-shrink: 0;
}
.pqn-link {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 5px 12px;
  border-radius: 100px;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.pqn-link:hover,
.pqn-link.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ═══════════════════════════════════════════════
   POLICY LEGEND
═══════════════════════════════════════════════ */
.policy-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 40px;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid var(--gray-lt);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.legend-desc {
  font-size: .8125rem;
  color: var(--text-mid);
}

/* ── Policy Badges ── */
.pbadge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pbadge--asuw {
  background: rgba(75,46,131,.1);
  color: var(--purple);
  border: 1px solid rgba(75,46,131,.2);
}
.pbadge--advocacy {
  background: rgba(183,165,122,.15);
  color: var(--gold-dk);
  border: 1px solid rgba(183,165,122,.35);
}
.pbadge--senate {
  background: rgba(40,167,69,.1);
  color: #1a7d32;
  border: 1px solid rgba(40,167,69,.25);
}

/* ═══════════════════════════════════════════════
   POLICY PILLARS ACCORDION
═══════════════════════════════════════════════ */
.policy-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp {
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid var(--gray-lt);
  overflow: hidden;
  transition: box-shadow .2s;
}
.pp:has(.pp-body:not([hidden])) {
  border-color: var(--purple-lt);
  box-shadow: var(--sh-md);
}

.pp-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  transition: background .2s;
}
.pp-header:hover { background: rgba(75,46,131,.04); }
.pp-header[aria-expanded="true"] { background: rgba(75,46,131,.05); }

.pp-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pp-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--purple);
  color: #fff;
  font-size: .8125rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.pp-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3px;
}

.pp-tagline {
  display: block;
  font-size: .8125rem;
  color: var(--text-mid);
  font-weight: 400;
}

.pp-chevron {
  flex-shrink: 0;
  color: var(--purple);
  transition: transform .3s ease;
}
.pp-header[aria-expanded="true"] .pp-chevron {
  transform: rotate(180deg);
}

.pp-body {
  padding: 0 28px 28px;
}
.pp-body[hidden] { display: none; }

.pp-intro {
  font-size: .9375rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-lt);
  padding-top: 20px;
}

.pp-sub {
  margin-bottom: 24px;
}
.pp-sub:last-child { margin-bottom: 0; }

.pp-sub-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pp-sub-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--purple);
  background: rgba(75,46,131,.08);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .3px;
  flex-shrink: 0;
}

.pp-sub-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.pp-body p,
.pp-body li {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.7;
}

.pp-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 10px;
}
.pp-body ul li {
  margin-bottom: 8px;
}
.pp-body ul li:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   SKIP LINK
═══════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9375rem;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════════
   ACCESSIBILITY FAB + PANEL
═══════════════════════════════════════════════ */
.a11y-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 18px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(75,46,131,.40);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.a11y-fab:hover {
  background: var(--purple-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(75,46,131,.45);
}
.a11y-fab[aria-expanded="true"] {
  background: var(--purple-dk);
}

.a11y-panel {
  position: fixed;
  bottom: 82px;
  right: 28px;
  z-index: 499;
  width: 330px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  border: 1.5px solid var(--gray-lt);
}
.a11y-panel[hidden] { display: none; }

.a11y-panel-inner {
  padding: 20px;
}

.a11y-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-lt);
}

.a11y-panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
}

.a11y-close {
  background: none;
  border: none;
  color: var(--gray);
  padding: 4px;
  border-radius: 6px;
  display: flex;
  transition: color .2s, background .2s;
}
.a11y-close:hover {
  color: var(--text);
  background: var(--gray-lt);
}

.a11y-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-lt);
}
.a11y-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.a11y-section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ── Font Size Controls ── */
.font-size-controls {
  display: flex;
  gap: 8px;
}
.fs-btn {
  flex: 1;
  background: var(--off);
  border: 1.5px solid var(--gray-lt);
  border-radius: 8px;
  padding: 8px 4px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}
.fs-btn:hover {
  background: rgba(75,46,131,.08);
  border-color: var(--purple-lt);
}
.fs-btn--active,
.fs-btn[aria-pressed="true"] {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ── High Contrast Toggle ── */
.contrast-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ct-track {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--gray-lt);
  border-radius: 100px;
  transition: background .2s;
  flex-shrink: 0;
}
.ct-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .2s;
}
.contrast-toggle[aria-pressed="true"] .ct-track {
  background: var(--purple);
}
.contrast-toggle[aria-pressed="true"] .ct-thumb {
  transform: translateX(20px);
}
.ct-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── Screen Reader Info ── */
.a11y-info-text {
  font-size: .8125rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FONT SIZE ADJUSTMENTS
═══════════════════════════════════════════════ */
[data-font-size="sm"] { font-size: 14px; }
[data-font-size="md"] { font-size: 16px; }
[data-font-size="lg"] { font-size: 18px; }
[data-font-size="xl"] { font-size: 20px; }

/* ═══════════════════════════════════════════════
   HIGH CONTRAST MODE
═══════════════════════════════════════════════ */
[data-contrast="high"] {
  --purple:    #5a35a0;
  --text:      #000000;
  --text-mid:  #111111;
  --off:       #f0f0f0;
  --gray-lt:   #888888;
}
[data-contrast="high"] body {
  background: #fff;
  color: #000;
}
[data-contrast="high"] .nav,
[data-contrast="high"] .nav.scrolled {
  background: #000;
}
[data-contrast="high"] .section-off {
  background: #e8e8e8;
}
[data-contrast="high"] .pp {
  border-color: #000;
}
[data-contrast="high"] .pp-header:hover {
  background: #eee;
}
[data-contrast="high"] .pbadge--asuw {
  background: #d0c7f0;
  color: #1a0050;
  border-color: #5a35a0;
}
[data-contrast="high"] .pbadge--advocacy {
  background: #fdf0d0;
  color: #5a3800;
  border-color: #a07020;
}
[data-contrast="high"] .pbadge--senate {
  background: #d0f0d8;
  color: #003a10;
  border-color: #1a7d32;
}
[data-contrast="high"] .a11y-panel {
  border-color: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
[data-contrast="high"] a:focus,
[data-contrast="high"] button:focus,
[data-contrast="high"] input:focus {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   POLICY RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .pqn-inner { gap: 2px; padding: 8px 16px; }
  .pqn-link  { padding: 4px 10px; font-size: .75rem; }
  .pp-header { padding: 16px 18px; }
  .pp-body   { padding: 0 18px 22px; }
  .pp-sub-hd { gap: 7px; }
  .pp-sub-title { font-size: .875rem; }
  .a11y-fab  { bottom: 20px; right: 16px; padding: 11px 15px; }
  .a11y-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 70px;
  }
  .policy-legend { padding: 14px 16px; gap: 10px 16px; }
  .legend-item   { flex-direction: column; align-items: flex-start; gap: 4px; }
}
