:root {
  --color-primary: #003f7f;
  --color-primary-dark: #002b58;
  --color-accent: #ffde59;
  --color-background: #fff;
  --color-surface: #f3f6f9;
  --color-text: #223346;
  --color-muted: #526476;
  --color-border: #d9e1e8;
  --max-content-width: 1200px;
  --section-spacing: clamp(3.5rem, 7vw, 6.5rem);
  --header-height: 114px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-wrap: anywhere;
}
a {
  color: var(--color-primary);
  text-underline-offset: 5px;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  overflow-wrap: anywhere;
  color: var(--color-primary);
  line-height: 1.12;
}
h1 {
  font-size: clamp(3.7rem, 8vw, 7rem);
  letter-spacing: -0.055em;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}
p {
  margin-bottom: 1.3rem;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #996d00;
  outline-offset: 5px;
}
section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}
.container {
  width: min(calc(100% - 2.5rem), var(--max-content-width));
  margin-inline: auto;
}
.section {
  padding-block: var(--section-spacing);
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
}
.prose {
  max-width: 68ch;
}
.muted,
.small {
  color: var(--color-muted);
}
.small {
  font-size: 0.9rem;
}
.surface {
  background: var(--color-surface);
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  background: var(--color-accent);
  padding: 1rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.identity {
  min-width: 0;
  overflow-wrap: anywhere;
  text-decoration: none;
  line-height: 1.1;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.identity strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}
.identity span {
  font-size: 0.72rem;
  max-width: 160px;
  border-left: 1px solid var(--color-border);
  padding-left: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.header-cta {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--color-accent);
}
.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.6rem 0.35rem;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current] {
  border-color: var(--color-accent);
  background: var(--color-surface);
}
.menu-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  color: var(--color-primary);
  font-weight: 700;
}
.hero {
  background: var(--color-surface);
  padding: clamp(2.5rem, 5vw, 4.8rem) 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero h1 span {
  display: block;
}
.hero-message {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  max-width: 26ch;
}
.hero-message span {
  display: block;
  font-weight: 400;
  font-size: 0.85em;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 0.8rem 1.25rem;
  min-height: 48px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  line-height: 1.4;
}
.button:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.button.secondary {
  background: transparent;
  color: var(--color-primary);
}
.button.secondary:hover {
  background: #e5edf4;
}
.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.portrait {
  margin: 0;
  background: white;
  aspect-ratio: 10 / 11;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bottom {
  margin-top: 3rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.hero-bottom a {
  text-decoration: none;
  font-weight: 700;
}
.editorial {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.section-index {
  display: block;
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.quote {
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 2rem 0 0;
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.5;
}
.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.role-card {
  background: white;
  padding: 1.7rem;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
}
.role-card p {
  margin: 0;
  font-size: 1rem;
}
.role-card:last-child {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background: var(--color-primary);
  color: white;
}
.role-card:last-child h3 {
  color: var(--color-accent);
}
.dark {
  background: var(--color-primary-dark);
  color: white;
}
.dark h2,
.dark h3,
.dark .eyebrow,
.dark .section-index {
  color: white;
}
.dark .quote {
  color: var(--color-accent);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2rem 0 3rem;
  border: 1px solid var(--color-border);
}
.comparison article {
  padding: 2rem;
}
.comparison article + article {
  background: var(--color-primary);
  color: white;
}
.comparison article + article h3 {
  color: var(--color-accent);
}
.comparison p {
  margin: 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.authority-grid article {
  padding: 1.5rem 0;
  border-top: 2px solid var(--color-border);
}
.authority-grid p {
  margin: 0;
  max-width: 58ch;
}
.ready-panel {
  border-left: 8px solid var(--color-accent);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--color-primary);
  color: white;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.ready-panel h2 {
  color: white;
}
.ready-panel p {
  margin: 0;
  font-size: 1.1rem;
}
.endorsement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.draft-note {
  font-size: 0.9rem;
  background: #fff7d8;
  border-left: 3px solid var(--color-accent);
  padding: 1rem;
}
.endorser-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.endorser {
  border: 1px dashed #a5b5c5;
  padding: 1rem;
}
.endorser strong,
.endorser span {
  display: block;
}
.endorser span {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.form-panel {
  background: white;
  border: 1px solid var(--color-border);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}
.form-panel h3 {
  font-size: 1.8rem;
}
.field {
  margin-bottom: 1.2rem;
}
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.field input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid #91a2b2;
  border-radius: 3px;
  padding: 0.6rem 0.8rem;
  background: #fff;
  color: var(--color-text);
}
.field label span {
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.field-error {
  display: block;
  color: #a32323;
  font-size: 0.9rem;
}
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.consent input {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 4px 0;
}
.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.form-status:empty {
  display: none;
}
.donation {
  background: #fff8dd;
}
.donation .editorial {
  align-items: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.contact-email {
  overflow-wrap: anywhere;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}
.campaign-art {
  border: 1px solid var(--color-border);
}
.site-footer {
  padding: 3rem 0;
  background: var(--color-primary-dark);
  color: #dce7f2;
  font-size: 0.88rem;
}
.site-footer a {
  color: white;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-legal {
  max-width: 90ch;
}
.privacy {
  margin-top: 1.5rem;
  max-width: 90ch;
}
.privacy summary {
  cursor: pointer;
  color: white;
  min-height: 44px;
}
.back-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px #002b5826;
}
.back-top[hidden] {
  display: none;
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 1050px) {
  html:not(.js) .site-header {
    position: static;
  }
  :root {
    --header-height: 76px;
  }
  .header-top {
    min-height: 76px;
  }
  .header-cta {
    display: none;
  }
  .js .menu-toggle {
    display: block;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
  .nav-links a {
    white-space: normal;
    font-size: 0.95rem;
    padding: 0.65rem;
  }
  .js .site-nav {
    display: none;
  }
  .js .site-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    padding: 1rem;
  }
  .js .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
  .role-card:last-child {
    grid-column: span 2;
    display: block;
  }
  .editorial {
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
  }
  .endorsement-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 2.5rem);
  }
  .identity {
    gap: 0.6rem;
  }
  .identity strong {
    font-size: 1.25rem;
  }
  .identity span {
    display: none;
  }
  .hero-grid,
  .editorial,
  .endorsement-grid,
  .contact-grid,
  .ready-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .hero h1 span {
    display: inline;
  }
  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3.6rem, 15vw, 5.5rem);
  }
  .hero-bottom {
    margin-top: 2rem;
  }
  .hero-bottom span {
    display: none;
  }
  .role-grid,
  .comparison,
  .authority-grid {
    grid-template-columns: 1fr;
  }
  .role-card:last-child {
    grid-column: auto;
  }
  .comparison article {
    padding: 1.5rem;
  }
  .endorser-list {
    grid-template-columns: 1fr;
  }
  .ready-panel {
    padding: 2rem 1.5rem;
  }
  .contact-grid {
    gap: 2.5rem;
  }
  .campaign-art {
    max-width: 400px;
  }
  .quote {
    margin-top: 1rem;
  }
  .actions .button {
    flex: 1 1 auto;
  }
  .back-top {
    font-size: 0.85rem;
  }
  .role-card {
    padding: 1.5rem;
  }
  .section-head {
    margin-bottom: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none;
    transition: none;
  }
}
.comparison article + article .eyebrow,
.ready-panel .eyebrow,
.site-footer .small {
  color: inherit;
}
.campaign-art {
  width: 100%;
}
.hero-grid > *,
.editorial > *,
.contact-grid > *,
.endorsement-grid > * {
  min-width: 0;
}
#endorse-form,
#privacy {
  scroll-margin-top: calc(var(--header-height) + 20px);
}
