/* ============================================================
   Tabitha Lewis for City Council: Design Tokens (see DESIGN.md)
   ============================================================ */
:root {
  --navy-900: oklch(0.2469 0.0749 260.8);
  --navy-700: oklch(0.3188 0.0891 259.3);
  --red-700:  oklch(0.4152 0.1604 27.0);
  --red-600:  oklch(0.4997 0.1933 27.1);

  --ink:      oklch(0.2308 0.0143 266.9);
  --bg:       oklch(0.9764 0.0013 286.4);
  --surface:  oklch(1 0 0);
  --muted:    oklch(0.42 0.02 265);
  --border:   oklch(0.88 0.01 265);
  --gold:     oklch(0.728 0.138 89.7);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);

  --z-sticky-nav: 10;
  --z-toast: 60;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --container: 1180px;
  --header-h: 72px;
  --header-reminder-h: 40px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; max-width: 68ch; text-wrap: pretty; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: var(--z-toast);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms var(--ease-out-quint), background-color 180ms var(--ease-out-quint), box-shadow 180ms var(--ease-out-quint);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 6px 16px -6px oklch(0.4997 0.1933 27.1 / 0.5);
}
.btn-primary:hover { background: var(--red-700); box-shadow: 0 10px 24px -8px oklch(0.4997 0.1933 27.1 / 0.6); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }

.btn-lg { padding: 1.05rem 2.25rem; font-size: 1.1rem; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky-nav);
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 2px 12px oklch(0 0 0 / 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: oklch(0.85 0.03 30);
  text-transform: uppercase;
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}
.primary-nav a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--red-600);
  transition: right 220ms var(--ease-out-quint);
}
.primary-nav a:not(.nav-donate):hover::after,
.primary-nav a:not(.nav-donate):focus-visible::after { right: 0; }

.primary-nav a.nav-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--red-600);
  padding: 0.4rem 1.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
}
.primary-nav a.nav-donate:hover { background: var(--red-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 220ms var(--ease-out-quint), opacity 220ms var(--ease-out-quint);
}

.header-reminder {
  background: var(--navy-700);
}
.header-reminder a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold);
  transition: gap 180ms var(--ease-out-quint);
}
.header-reminder a:hover, .header-reminder a:focus-visible { gap: 0.6rem; }
.header-reminder-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 100% at 12% 0%, var(--navy-700) 0%, var(--navy-900) 55%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - var(--header-reminder-h));
  min-height: calc(100svh - var(--header-h) - var(--header-reminder-h));
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 24%;
}
.stars {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 60%;
}
.star {
  position: absolute;
  color: #fff;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  background: oklch(1 0 0 / 0.1);
  border: 1px solid oklch(1 0 0 / 0.18);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.hero-locale svg { width: 15px; height: 15px; flex-shrink: 0; }

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.6em;
}
.hero-name {
  font-size: clamp(2.5rem, 6vw + 1rem, 4.25rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-office {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw + 0.6rem, 1.5rem);
  letter-spacing: -0.01em;
  color: oklch(0.82 0.03 265);
}

.hero-slogan {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw + 0.8rem, 2rem);
  color: var(--gold);
  line-height: 1.3;
  margin: 0.25rem 0 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 1.25rem;
}

.hero .btn-outline,
.donate .btn-outline {
  color: #fff;
  border-color: #fff;
}
.hero .btn-outline:hover,
.donate .btn-outline:hover { background: #fff; color: var(--navy-900); }

.hero-portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}
.portrait-frame {
  position: relative;
  aspect-ratio: 1 / 1;
}
.hero-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px oklch(1 0 0 / 0.14),
    0 24px 48px oklch(0 0 0 / 0.45);
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-locale, .hero h1, .hero-slogan, .hero-actions, .hero-portrait {
  animation: hero-rise 700ms var(--ease-out-quint) both;
}
.hero-locale  { animation-delay: 40ms; }
.hero h1      { animation-delay: 120ms; }
.hero-portrait { animation-delay: 180ms; }
.hero-slogan  { animation-delay: 240ms; }
.hero-actions { animation-delay: 320ms; }

.portrait-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: rotate(-90deg);
}
.portrait-ring-track {
  stroke: oklch(0.728 0.138 89.7 / 0.25);
  stroke-width: 4;
}
.portrait-ring-draw {
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1357;
  stroke-dashoffset: 1357;
  animation: ring-draw 1400ms var(--ease-out-quint) 600ms forwards;
}
@keyframes ring-draw { to { stroke-dashoffset: 0; } }

.portrait-stars {
  position: relative;
  width: 100%;
  height: 60px;
  margin-top: 1.25rem;
}
.portrait-stars .star { transform: translate(-50%, -50%); }

.pillar-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px -20px oklch(0.24 0.07 260 / 0.45);
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.pillar {
  background: var(--navy-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.1rem 0.75rem;
  transition: background-color 200ms var(--ease-out-quint);
}
.pillar:hover, .pillar:focus-visible { background: var(--navy-700); }

.pillar-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--red-600);
  flex-shrink: 0;
}
.pillar-icon svg { width: 20px; height: 20px; }

.pillar-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.pillar-line {
  font-size: 0.78rem;
  color: oklch(0.85 0.02 265);
  line-height: 1.45;
}

/* ============================================================
   About
   ============================================================ */
.about { padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem); }

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.about-photo {
  display: flex;
  flex-direction: column;
}
.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2100 / 1500;
  border-radius: var(--radius-md);
  box-shadow:
    0 24px 48px -14px oklch(0.24 0.07 260 / 0.32),
    0 6px 16px -8px oklch(0.24 0.07 260 / 0.2);
}
.about-caption {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
}

.about-copy { padding-top: clamp(1rem, 3vw, 2.25rem); }
.about-copy h2 { color: var(--navy-900); font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }

.about-copy .lead {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.4vw + 1rem, 1.7rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  padding-left: 1.6rem;
  text-wrap: pretty;
}
.about-copy .quote-mark {
  position: absolute;
  left: 0.2rem;
  top: -0.35rem;
  font-size: 2.75rem;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.about-copy .quote-mark-end {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 0;
  color: var(--ink);
  vertical-align: -0.28em;
}

.about-copy .credentials {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 1rem 0 2rem;
  max-width: 60ch;
}

.about-copy p { color: var(--ink); }

.election-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 20px 40px -16px oklch(0.24 0.07 260 / 0.5);
}
.election-card-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.election-card-icon { width: 22px; height: 22px; flex-shrink: 0; }
.election-card-list { margin: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.election-card-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
}
.election-card-list > div:last-child { padding-bottom: 0; border-bottom: none; }
.election-card-list dt { font-size: 1rem; color: oklch(0.85 0.02 265); margin: 0; font-weight: 400; }
.election-card-list dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.election-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.4rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  transition: gap 180ms var(--ease-out-quint);
}
.election-card-link:hover, .election-card-link:focus-visible { gap: 0.6rem; }

/* ============================================================
   Platform
   ============================================================ */
.platform {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--surface);
}

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head h2 { color: var(--navy-900); font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }
.section-sub { color: var(--muted); font-size: 1.05rem; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem 2rem;
}

.platform-item h3 {
  color: var(--navy-900);
  font-size: 1.25rem;
  margin-top: 1rem;
}
.platform-item h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-top: 0.65rem;
  background: var(--red-600);
}
.platform-item:nth-child(2) h3::after { background: var(--navy-700); }
.platform-item:nth-child(3) h3::after { background: oklch(0.55 0.13 89.7); }

.platform-item p { color: var(--ink); font-size: 0.98rem; }

.platform-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--red-600);
  color: var(--red-600);
  box-shadow: 0 6px 16px -8px oklch(0.24 0.07 260 / 0.35);
}
.platform-icon svg { width: 24px; height: 24px; }

.platform-item:nth-child(2) .platform-icon { border-color: var(--navy-700); color: var(--navy-700); }
.platform-item:nth-child(3) .platform-icon { border-color: var(--gold); color: oklch(0.55 0.13 89.7); }

/* ============================================================
   Donate
   ============================================================ */
.donate {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
}

.donate-inner { max-width: 640px; }
.donate h2 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }
.donate-copy p { color: oklch(0.9 0.01 265); }

#donateCta { margin-top: 0.5rem; }

.donate-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: oklch(0.85 0.03 30);
  max-width: 50ch;
}
.donate-note-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* ============================================================
   Contact
   ============================================================ */
.contact { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.contact-inner { max-width: 640px; }
.contact h2 { color: var(--navy-900); font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 180ms var(--ease-out-quint), box-shadow 180ms var(--ease-out-quint);
}
.field input:focus, .field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px oklch(0.3188 0.0891 259.3 / 0.15);
  outline: none;
}
.field.has-error input, .field.has-error textarea {
  border-color: var(--red-600);
}
.field-error {
  font-size: 0.82rem;
  color: var(--red-700);
  min-height: 1em;
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

#contactSubmit { align-self: flex-start; position: relative; }
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid oklch(1 0 0 / 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin 700ms linear infinite;
}
#contactSubmit.is-loading .btn-spinner { display: inline-block; }
#contactSubmit.is-loading .btn-label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: oklch(0.5 0.14 150); }
.form-status.error { color: var(--red-700); }
.form-status.info { color: var(--gold); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: oklch(0.85 0.02 265);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.footer-brand { color: #fff; display: flex; flex-direction: column; }
.footer-brand .brand-sub { color: oklch(0.85 0.02 265); text-transform: none; letter-spacing: 0; font-size: 0.85rem; }

.social-links { display: flex; gap: 0.85rem; }
.social-links a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.08);
  transition: background-color 180ms var(--ease-out-quint), transform 180ms var(--ease-out-quint);
}
.social-links a:hover { background: var(--red-600); transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; }

.social-links a[aria-disabled="true"] {
  opacity: 0.45;
  cursor: default;
}
.social-links a[aria-disabled="true"]:hover {
  background: oklch(1 0 0 / 0.08);
  transform: none;
}

.footer-resources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.5rem;
  font-size: 0.8rem;
}
.footer-resources a {
  display: inline-block;
  padding: 0.6rem 0;
  color: oklch(0.7 0.02 265);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: oklch(1 0 0 / 0.25);
  transition: color 180ms var(--ease-out-quint), text-decoration-color 180ms var(--ease-out-quint);
}
.footer-resources a:hover, .footer-resources a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.footer-legal {
  width: 100%;
  font-size: 0.8rem;
  color: oklch(0.7 0.02 265);
  border-top: 1px solid oklch(1 0 0 / 0.1);
  padding-top: 1.25rem;
  margin: 0;
}

/* ============================================================
   Reveal-on-scroll (progressive enhancement)
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-out-quint), transform 500ms var(--ease-out-quint);
}
.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-portrait { order: -1; max-width: 280px; margin: 0 auto; }
  .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .about-copy { padding-top: 0; }
}

@media (max-width: 640px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms var(--ease-out-quint), transform 220ms var(--ease-out-quint), visibility 0s linear 220ms;
  }
  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 220ms var(--ease-out-quint), transform 220ms var(--ease-out-quint), visibility 0s linear 0s;
  }
  .primary-nav a { width: 100%; padding: 0.75rem 0; }
  .nav-donate { margin-top: 0.5rem; text-align: center; }
  .nav-toggle { display: flex; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .pillar-strip { grid-template-columns: 1fr; }
  .pillar { padding: 1.25rem 0.5rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
