/* ═══════════════════════════════════════════
   ROOT / TOKENS
═══════════════════════════════════════════ */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #0D1526;
  --navy-mid:    #2A4070;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07C30;
  --gold-pale:   #F0DC9A;
  --crimson:     #7A1C1C;
  --parchment:   #F5EFE0;
  --charcoal:    #2D2D2D;
  --mid-gray:    #6B6B6B;
  --light-gray:  #E8E8E8;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'Montserrat', Arial, sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(72px, 10vw, 120px);
  --container:   1140px;
  --radius:      3px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);

  --transition: 0.25s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, textarea, select {
  font: inherit;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
  font-style: italic;
  color: var(--mid-gray);
}

.body-lg {
  font-size: 18px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--deep {
  background: var(--navy-deep);
  color: var(--white);
}

.section--parchment {
  background: var(--parchment);
}

.section--crimson {
  background: var(--crimson);
  color: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-crimson { color: var(--crimson); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  flex-shrink: 0;
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}

#site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo .the {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-logo .reconstruction {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1;
}

.nav-logo .pac {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  padding: 40px 32px;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(122,28,28,0.06) 0%, transparent 60%);
}

/* Structural grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Vertical rule */
.hero-bg::after {
  content: '';
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  top: var(--nav-h);
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3) 20%, rgba(201,168,76,0.3) 80%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  padding-left: calc(clamp(20px, 5vw, 80px) + 24px);
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.hero-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.hero-year-badge::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════
   TICKER / STATEMENT BAR
═══════════════════════════════════════════ */
.statement-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.statement-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.statement-bar-inner span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 48px;
}

.statement-bar-inner .dot {
  color: var(--navy-mid);
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   THE MANDATE (intro section)
═══════════════════════════════════════════ */
#mandate {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.mandate-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.mandate-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 32px;
}

.mandate-quote em {
  color: var(--gold);
  font-style: italic;
}

.mandate-body {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.mandate-aside {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 36px;
}

.mandate-aside-year {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: -12px;
}

.mandate-aside-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 12px;
}

.mandate-aside-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.mandate-aside hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin: 20px 0;
}

/* ═══════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════ */
#timeline {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.timeline-track {
  position: relative;
  margin-top: 64px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  margin-bottom: 56px;
  align-items: start;
}

.timeline-item:nth-child(even) .timeline-left { order: 3; }
.timeline-item:nth-child(even) .timeline-center { order: 2; }
.timeline-item:nth-child(even) .timeline-right { order: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-left { text-align: left; }
.timeline-item:nth-child(odd) .timeline-right { text-align: left; }
.timeline-item:nth-child(odd) .timeline-left { text-align: right; }

.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--parchment);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
}

.timeline-dot--crimson {
  background: var(--crimson);
  box-shadow: 0 0 0 2px var(--crimson);
}

.timeline-dot--navy {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 8px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.timeline-card {
  padding: 0 28px;
}

.timeline-card-year {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.timeline-card-year--crimson {
  color: var(--crimson);
}

.timeline-card-year--current {
  color: var(--navy);
}

.timeline-card-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.timeline-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 380px;
}

.timeline-item:nth-child(even) .timeline-card-body { margin-left: auto; }

/* ═══════════════════════════════════════════
   PILLARS (Our Work)
═══════════════════════════════════════════ */
#our-work {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
  margin-top: 56px;
  border: 2px solid var(--light-gray);
}

.pillar-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: background var(--transition);
}

.pillar-card:hover {
  background: var(--parchment);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: -16px;
  transition: color var(--transition);
}

.pillar-card:hover .pillar-num {
  color: rgba(201,168,76,0.15);
}

.pillar-icon {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pillar-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

.pillar-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.pillar-example {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pillar-example::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band {
  background: var(--navy);
  padding: 72px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(201,168,76,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════
   PRIORITY FOCUS (Issues)
═══════════════════════════════════════════ */
#issues {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.issue-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(27,42,74,0.1);
}

.issue-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(27,42,74,0.1);
  transition: background var(--transition);
}

.issue-row:hover {
  background: rgba(201,168,76,0.05);
}

.issue-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: rgba(27,42,74,0.12);
  line-height: 1;
  padding-top: 4px;
}

.issue-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.issue-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 2px;
}

.issue-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════
   ENDORSEMENTS
═══════════════════════════════════════════ */
#endorsements {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
}

.endorsements-intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.candidate-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
}

.candidate-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.candidate-photo {
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.candidate-photo-placeholder {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
}

.candidate-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,21,38,0.8) 100%);
}

.candidate-endorsed-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 2px;
}

.candidate-info {
  padding: 24px;
}

.candidate-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.candidate-race {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.candidate-bio {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.candidate-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.candidate-card-link:hover {
  gap: 12px;
}

.endorsements-cta {
  text-align: center;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   TAKE ACTION / DONATE
═══════════════════════════════════════════ */
#take-action {
  background: var(--navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

#take-action::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

#take-action::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  pointer-events: none;
}

.action-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}

.action-headline em {
  color: var(--gold);
  font-style: italic;
}

.action-subhead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 40px;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.action-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 36px 32px;
  transition: all var(--transition);
}

.action-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.action-card--featured {
  background: var(--gold);
  border-color: var(--gold);
}

.action-card--featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.action-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.action-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.action-card--featured .action-card-title {
  color: var(--navy);
}

.action-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.action-card--featured .action-card-body {
  color: rgba(27,42,74,0.75);
}

/* Donation amounts */
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.donate-amt {
  background: rgba(27,42,74,0.08);
  border: 1px solid rgba(27,42,74,0.2);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.donate-amt:hover,
.donate-amt.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.donate-custom {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: 12px;
}

.donate-custom input {
  flex: 1;
  background: rgba(27,42,74,0.08);
  border: 1px solid rgba(27,42,74,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
}

.donate-custom input:focus {
  border-color: var(--navy);
}

.donate-custom input::placeholder {
  color: rgba(27,42,74,0.4);
}

/* Email form */
.email-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.email-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.email-form input:focus {
  border-color: rgba(201,168,76,0.5);
}

/* ═══════════════════════════════════════════
   PRESS / NEWS
═══════════════════════════════════════════ */
#press {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.press-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.press-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.press-card {
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.press-card--featured {
  grid-row: span 2;
}

.press-img {
  aspect-ratio: 16/9;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-img-placeholder {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
}

.press-card--featured .press-img {
  aspect-ratio: 4/3;
}

.press-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.press-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.press-source {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.press-date {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--mid-gray);
}

.press-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}

.press-card--featured .press-title {
  font-size: 24px;
}

.press-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.press-link {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition), color var(--transition);
}

.press-link:hover {
  gap: 12px;
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════ */
.quote-section {
  background: var(--crimson);
  padding: var(--section-pad) 0;
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.35;
  position: relative;
}

.quote-section blockquote::before {
  content: '\201C';
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: -40px;
  left: -20px;
  font-style: normal;
  line-height: 1;
}

.quote-section cite {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 32px;
  font-style: normal;
}

/* ═══════════════════════════════════════════
   NEWSLETTER STRIP
═══════════════════════════════════════════ */
.newsletter-strip {
  background: var(--parchment);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  padding: 64px 0;
}

.newsletter-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.newsletter-strip p {
  font-size: 15px;
  color: var(--mid-gray);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 480px;
  flex-shrink: 0;
}

.newsletter-form input {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--gold-dark);
}

.newsletter-form input::placeholder {
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
}

.footer-main {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo-the {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-logo-reconstruction {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.footer-logo-pac {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-fec {
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.3);
  max-width: 600px;
}

.footer-fec strong {
  color: rgba(255,255,255,0.5);
}

.footer-copyright {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: right;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mandate-grid { grid-template-columns: 1fr; gap: 48px; }
  .mandate-aside { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .press-card--featured { grid-row: auto; grid-column: span 2; }
  .stats-grid { grid-template-columns: 2fr 2fr; gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.15); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --section-pad: 64px;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero-content {
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
  }
  .hero-bg::after { display: none; }
  .hero-scroll { display: none; }
  /* Increase touch targets */
  .btn { min-height: 48px; }
  .nav-links a { padding: 12px 14px; }
  .donate-amt { min-height: 44px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr; gap: 2px; }
  .candidate-grid { grid-template-columns: 1fr; }
  .action-cards { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .press-card--featured { grid-column: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.15); }

  /* Timeline — simplified single-column layout on mobile */
  .timeline-track::before { left: 20px; transform: none; }
  .timeline-item { grid-template-columns: 40px 1fr; }

  /* Reset even-item desktop ordering */
  .timeline-item:nth-child(even) .timeline-left,
  .timeline-item:nth-child(even) .timeline-center,
  .timeline-item:nth-child(even) .timeline-right { order: unset; text-align: left; }

  /* Odd items: swap center before left so dot stays in narrow column */
  .timeline-item:nth-child(odd) .timeline-center { order: 1; }
  .timeline-item:nth-child(odd) .timeline-left  { order: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-right { display: none; }

  /* Even items: center before right, hide left */
  .timeline-item:nth-child(even) .timeline-center { order: 1; }
  .timeline-item:nth-child(even) .timeline-right  { order: 2; display: block; }
  .timeline-item:nth-child(even) .timeline-left   { display: none; }

  .timeline-card { padding: 0 0 0 12px; }
  .timeline-card-body { max-width: none; }
  .timeline-card-year { font-size: 28px; }
  .timeline-item:nth-child(even) .timeline-card-body { margin-left: 0; }

  /* Issue rows */
  .issue-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .issue-body { grid-column: 2; }

  /* Newsletter */
  .newsletter-strip-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: none; width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .footer-copyright { text-align: left; }

  /* Press header */
  .press-header { flex-direction: column; align-items: flex-start; }

  /* Statement bar */
  .statement-bar-inner span { padding: 0 24px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-top: 1px solid rgba(201,168,76,0.15); }
  .stat-item:first-child { border-top: none; }
  .donate-amounts { flex-wrap: wrap; }
  .donate-custom { flex-direction: column; }
  .donate-custom .btn { width: 100%; justify-content: center; }
  .email-form { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  /* Reduce inner padding on small screens */
  .pillar-card { padding: 32px 24px; }
  .action-card { padding: 28px 24px; }
  .mandate-aside { padding: 24px; }
  /* Quote decoration contained on small screens */
  .quote-section blockquote::before { left: 0; font-size: 80px; top: -20px; }
  /* Candidate info more compact */
  .candidate-info { padding: 18px; }
  /* Footer social link size */
  .footer-social a { width: 40px; height: 40px; }
  /* Issue row more compact */
  .issue-row { padding: 28px 0; gap: 12px; }
  .issue-title { font-size: 18px; }
}

/* ═══════════════════════════════════════════
   FOCUS / ACCESSIBILITY
═══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Print */
@media print {
  #site-nav, .hero-scroll, .statement-bar { display: none; }
}

/* ═══════════════════════════════════════════
   INTERIOR PAGE HERO
═══════════════════════════════════════════ */
.page-hero {
  background: var(--navy-deep);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}

.page-hero .lead {
  color: rgba(255,255,255,0.6);
  max-width: 640px;
}

/* ═══════════════════════════════════════════
   FORM STYLES (interior pages)
═══════════════════════════════════════════ */
.form-section {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   PROSE / LEGAL CONTENT
═══════════════════════════════════════════ */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 56px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 36px;
}

.prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.prose ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.prose ul li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.prose a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--gold-dark);
}

.prose .last-updated {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 40px;
  display: block;
}
