:root {
  --ink: #101723;
  --ink-2: #263244;
  --muted: #647084;
  --paper: #ffffff;
  --paper-warm: #f8f5ef;
  --line: #ded7c8;
  --line-strong: #c8b98f;
  --crimson: #8b111b;
  --crimson-2: #a91d2b;
  --gold: #b89147;
  --sage: #65735e;
  --blue: #203b57;
  --shadow: 0 22px 50px rgba(16, 23, 35, 0.12);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  display: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.85rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 215, 200, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.brand-seal {
  overflow: hidden;
  border-radius: 999px;
  background: white;
  padding: 2px;
}

.brand-seal img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.15;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 1.25rem);
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
  padding: 0.35rem 0;
}

.primary-nav a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--crimson);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  background: var(--crimson);
  color: white;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(139, 17, 27, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  color: var(--ink);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  min-height: clamp(570px, 78vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(13, 20, 31, 0.9) 0%, rgba(13, 20, 31, 0.78) 38%, rgba(13, 20, 31, 0.32) 67%, rgba(13, 20, 31, 0.08) 100%),
    url("assets/hero-archive.png") center / cover no-repeat;
  color: white;
}

.hero-content {
  width: min(760px, 100%);
}

.hero h1,
.section h2,
.policy-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  overflow-wrap: break-word;
}

.hero p {
  max-width: 660px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.94rem;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--crimson);
  color: white;
  box-shadow: 0 16px 28px rgba(139, 17, 27, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--crimson-2);
}

.button-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--crimson);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline {
  background: white;
  color: var(--crimson);
  border-color: var(--crimson);
}

.mission-strip {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mission-strip article {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.mission-strip article:last-child {
  border-right: 0;
}

.mission-strip svg,
.pillar-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--crimson);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-strip h2,
.mission-strip p,
.pillar-grid h3,
.pillar-grid p,
.involved-grid h3,
.involved-grid p {
  margin: 0;
}

.mission-strip h2,
.pillar-grid h3,
.involved-grid h3,
.timeline h3,
.topic-board h3,
.cfp-card h3,
.cfp-full h3,
.process-panel h3,
.donation-card h3,
.contact-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
}

.mission-strip p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--max)) / 2));
}

.section-intro {
  padding-top: clamp(5.5rem, 9vw, 8rem);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2,
.section-heading p {
  margin-top: 0;
}

.section-heading > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.prose p,
.prose li {
  color: var(--ink-2);
}

.value-row {
  margin-top: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-row article {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.value-row article:last-child {
  border-right: 0;
}

.value-row h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.value-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-legacy {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.legacy-panel {
  padding-right: clamp(0rem, 4vw, 4rem);
}

.legacy-panel p {
  color: var(--ink-2);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article,
.pillar-grid article,
.involved-grid article,
.topic-board,
.cfp-card,
.cfp-full article,
.process-panel,
.contact-card,
.donation-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
}

.timeline article {
  padding: 1.25rem;
}

.timeline span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--crimson);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin: 0 0 0.4rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.notice,
.receipt-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-2);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-grid article {
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
}

.pillar-grid p {
  margin-top: 0.7rem;
  color: var(--muted);
}

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

.section-ink .section-label {
  color: #d3b46c;
}

.section-ink .prose p,
.section-ink .prose li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
  border-radius: 999px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-section p {
  color: var(--ink-2);
}

.topic-board {
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(16, 23, 35, 0.08);
}

.cfp-card,
.cfp-full article {
  padding: clamp(1.2rem, 3vw, 1.65rem);
  box-shadow: 0 12px 32px rgba(16, 23, 35, 0.08);
}

.topic-board h3,
.cfp-card h3,
.cfp-full h3,
.process-panel h3 {
  margin-top: 0;
}

.entity-line {
  color: var(--crimson);
  font-weight: 850;
}

.lead-text {
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 750;
}

.cfp-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.cfp-card dl div {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.cfp-card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cfp-card dt {
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cfp-card dd {
  margin: 0.25rem 0 0;
  color: var(--ink-2);
}

.cfp-card a,
.requirement-grid a {
  color: var(--crimson);
  font-weight: 800;
}

.cfp-full {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cfp-full h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.cfp-full p,
.cfp-full li {
  color: var(--ink-2);
}

.cfp-numbered,
.cfp-question-list {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.cfp-numbered li + li,
.cfp-question-list li + li {
  margin-top: 0.75rem;
}

.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.requirement-grid div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.requirement-grid div:nth-child(2n) {
  border-right: 0;
}

.requirement-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.requirement-grid strong {
  color: var(--ink);
}

.requirement-grid span {
  color: var(--muted);
}

.topic-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.topic-columns ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.topic-columns li + li {
  margin-top: 0.5rem;
}

.process-panel {
  margin-top: 2rem;
  padding: 1.35rem;
}

.process-panel ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-panel li {
  counter-increment: steps;
  padding-top: 2.3rem;
  position: relative;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.process-panel li::before {
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--crimson);
  color: white;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.section-form {
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.portal-form {
  display: grid;
  gap: 1.15rem;
}

fieldset {
  margin: 0;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
}

legend {
  padding: 0 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d2cabc;
  border-radius: 5px;
  padding: 0.67rem 0.72rem;
  background: white;
  color: var(--ink);
  font-size: 0.95rem;
}

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

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(184, 145, 71, 0.36);
  outline-offset: 2px;
}

.span-2 {
  grid-column: 1 / -1;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.checkbox-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkbox-grid label,
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--ink-2);
}

.checkbox-grid input[type="checkbox"],
.checkbox-line input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
  margin: 0.18rem 0 0;
  padding: 0;
  accent-color: var(--crimson);
}

.form-response {
  min-height: 1.4rem;
  margin: 0;
  color: var(--sage);
  font-weight: 750;
}

.section-involved {
  background: white;
}

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

.involved-grid article {
  padding: 1.35rem;
}

.involved-grid p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--crimson);
  font-weight: 800;
  text-decoration: none;
}

.small-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.section-donate {
  background:
    linear-gradient(90deg, rgba(139, 17, 27, 0.94), rgba(32, 59, 87, 0.92)),
    linear-gradient(135deg, var(--crimson), var(--blue));
  color: white;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.donate-layout h2 {
  color: white;
}

.donate-layout p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.07rem;
}

.donation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.donation-types span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.donation-card {
  padding: 1.35rem;
  color: var(--ink);
}

.donation-card h3 {
  margin: 0 0 1rem;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.amount-grid button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--ink);
  font-weight: 850;
}

.amount-grid button.is-selected {
  border-color: var(--crimson);
  background: #fff6f6;
  color: var(--crimson);
}

.donation-card label + label,
.donation-card .button {
  margin-top: 0.9rem;
}

.donation-card .form-response {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

.donation-card .form-response:not(:empty) {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  border-left: 4px solid var(--sage);
  background: #f1f4ef;
}

.section-donate .receipt-note {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  border-left-color: #d3b46c;
}

.governance-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}

.governance-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.governance-list div:last-child {
  border-bottom: 0;
}

.governance-list strong {
  color: var(--ink);
}

.governance-list span {
  color: var(--muted);
}

.governance-list a {
  color: var(--blue);
  font-weight: 750;
}

.section-faq {
  background: #f4f6f8;
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p:not(.section-label) {
  color: var(--muted);
  margin: 1.2rem 0 0;
}

.faq-intro .text-link {
  margin-top: 1.5rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 1.3rem 3rem 1.3rem 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--crimson);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--crimson);
}

.faq-list details p {
  max-width: 760px;
  margin: -0.25rem 3rem 1.4rem 0;
  color: var(--muted);
}

.faq-list a {
  color: var(--blue);
  font-weight: 750;
}

.section-contact {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.5rem;
  align-items: start;
}

.compact-form {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-card {
  padding: 1.35rem;
}

.contact-card h3 {
  margin: 0 0 1rem;
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
}

.contact-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.newsletter-signup {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.newsletter-signup p {
  margin: 0 0 1rem;
  color: var(--ink-2);
}

.newsletter-signup .portal-form {
  gap: 0.85rem;
}

.site-footer {
  padding: clamp(2.5rem, 6vw, 4rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  background: #07101d;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(180px, 0.6fr));
  gap: clamp(1.5rem, 5vw, 4rem);
}

.footer-brand {
  color: white;
}

.footer-brand .brand-mark {
  background: white;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: white;
}

.footer-disclaimer {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.88rem;
}

.policy-page {
  background: var(--paper-warm);
}

.policy-nav {
  margin-left: auto;
}

.policy-main {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.policy-hero {
  max-width: 850px;
}

.policy-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.policy-hero p {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.policy-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}

.policy-index a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0.4rem 0.8rem;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.9rem;
}

.policy-block {
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
}

.policy-block h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.policy-block p {
  color: var(--ink-2);
}

.compact-footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .policy-nav {
    position: static;
    display: flex;
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .section-grid,
  .legacy-layout,
  .split-section,
  .donate-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mission-strip,
  .value-row,
  .pillar-grid,
  .involved-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-strip article:nth-child(2n),
  .value-row article:nth-child(2n) {
    border-right: 0;
  }

  .process-panel ol {
    grid-template-columns: repeat(3, 1fr);
  }

  .checkbox-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    max-width: 160px;
  }

  .hero {
    min-height: 650px;
    background:
      linear-gradient(180deg, rgba(13, 20, 31, 0.94) 0%, rgba(13, 20, 31, 0.84) 62%, rgba(13, 20, 31, 0.36) 100%),
      url("assets/hero-archive.png") center / cover no-repeat;
  }

  .hero h1 {
    max-width: 14.5ch;
    font-size: clamp(2.35rem, 9vw, 3.15rem);
    line-height: 1.06;
  }

  .hero-content,
  .hero p,
  .hero-actions {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .mission-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .mission-strip article,
  .mission-strip article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mission-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .value-row,
  .pillar-grid,
  .involved-grid,
  .form-grid,
  .checkbox-grid,
  .checkbox-grid.compact,
  .topic-columns,
  .requirement-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-row article,
  .value-row article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-row article:last-child {
    border-bottom: 0;
  }

  .process-panel ol {
    grid-template-columns: 1fr;
  }

  .requirement-grid div,
  .requirement-grid div:nth-child(2n),
  .requirement-grid div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .requirement-grid div:last-child {
    border-bottom: 0;
  }

  .governance-list div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

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

  .policy-main {
    width: min(100% - 2rem, var(--max));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
