:root {
  --navy: #0b1c2c;
  --navy-2: #123047;
  --ink: #15202b;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --gold: #d4a017;
  --gold-2: #f0c14b;
  --pulse: #c41e6a;
  --pulse-2: #7b2d8e;
  --teal: #1f6f6a;
  --muted: #5c6b76;
  --line: rgba(11, 28, 44, 0.12);
  --shadow: 0 18px 50px rgba(11, 28, 44, 0.12);
  --radius: 18px;
  --max: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 28, 44, 0.94);
  backdrop-filter: blur(14px);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--pulse));
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px rgba(212,160,23,.35);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.brand-text span { font-size: 11px; color: var(--gold-2); letter-spacing: .16em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  color: #e8eef3; text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 8px 10px; border-radius: 999px; letter-spacing: .02em;
}
nav a:hover, nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; text-decoration: none;
  border: 0; cursor: pointer; font-size: 14px; letter-spacing: .02em;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-pulse { background: var(--pulse); color: #fff; }
.btn-pulse:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.menu-toggle {
  display: none; background: none; border: 0; color: #fff; font-size: 22px; cursor: pointer;
}

/* Hero */
.hero {
  background:
    linear-gradient(105deg, rgba(11,28,44,.88) 0%, rgba(123,45,142,.55) 55%, rgba(196,30,106,.45) 100%),
    url("../assets/candidate.jpg") center 20% / cover no-repeat;
  color: #fff;
  min-height: 88vh;
  display: grid;
  align-items: end;
}
.hero-inner { padding: 80px 0 56px; max-width: 720px; }
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  line-height: .95;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero p.lede { font-size: 20px; max-width: 560px; color: #f3ece4; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections */
section { padding: 72px 0; }
.section-kicker {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--pulse); font-weight: 800; margin-bottom: 8px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sub { color: var(--muted); max-width: 640px; margin-bottom: 32px; font-size: 17px; }

.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 20px; margin-bottom: 8px; font-family: var(--serif); }
.card p { color: var(--muted); font-size: 15px; }
.num {
  font-family: var(--serif); font-size: 36px; color: var(--pulse); line-height: 1; margin-bottom: 8px;
}

.portrait {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.portrait img { width: 100%; height: 520px; object-fit: cover; object-position: center 15%; }

.mantra {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.mantra blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
}
.mantra p { margin-top: 12px; color: var(--gold-2); letter-spacing: .16em; text-transform: uppercase; font-size: 12px; font-weight: 700; }

.issue {
  border-left: 4px solid var(--pulse);
  padding: 8px 0 8px 18px;
  margin-bottom: 28px;
}
.issue h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.issue h4 { font-size: 15px; margin: 12px 0 4px; color: var(--navy-2); }
.issue p { color: var(--muted); }

.band { background: #fff; }
.band-gold { background: linear-gradient(90deg, #f6e7b8, #f3d48a); color: var(--navy); }

form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); font: inherit; background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.amounts { display: flex; flex-wrap: wrap; gap: 8px; }
.amounts button {
  border: 2px solid var(--navy); background: #fff; border-radius: 999px;
  padding: 10px 16px; font-weight: 700; cursor: pointer;
}
.amounts button.on { background: var(--navy); color: #fff; }

.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold-2);
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
}

footer {
  background: var(--navy); color: #d7dee4; padding: 40px 0 24px; font-size: 13px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
footer a { color: #fff; }
.disclaimer {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; color: #9aa7b1; font-size: 12px;
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 40px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 { font-family: var(--serif); font-size: clamp(32px, 5vw, 52px); }

.event { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.event-date {
  min-width: 72px; text-align: center; background: var(--navy); color: #fff;
  border-radius: 12px; padding: 10px 8px;
}
.event-date b { display: block; font-size: 22px; line-height: 1; }
.event-date span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); }

.toast {
  display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px;
  background: #e8f6ef; color: #14532d; font-weight: 600;
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 12px 20px 20px;
    border-bottom: 3px solid var(--gold);
  }
  nav.open { display: flex; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; background-position: center 10%; }
  .portrait img { height: 380px; }
}
