:root {
  --navy: #102f3b;
  --navy-deep: #08222c;
  --gold: #f3b640;
  --gold-light: #ffd36d;
  --paper: #f5f4ef;
  --white: #ffffff;
  --ink: #18333d;
  --muted: #5f7076;
  --line: #d8ddd9;
  --max: 1180px;
  --reading: 72ch;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.95rem;
  color: var(--navy-deep);
  background: var(--gold);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 5.25rem;
  padding: 0.85rem max(1.25rem, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background: rgba(8, 34, 44, 0.97);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(12px);
}

.wordmark {
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-name {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.wordmark-office {
  margin-top: 0.34rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

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

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--gold);
}

.menu-toggle {
  display: none;
}

.site-nav .nav-donate {
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  color: #08222c;
  background: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.site-nav .nav-donate:hover {
  color: #08222c;
  background: var(--gold-light);
}

.donate-dialog {
  width: min(680px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-top: 4px solid var(--gold);
  background: var(--white);
  overflow: auto;
}

.donate-dialog::backdrop {
  background: rgba(6, 25, 32, 0.72);
}

.donate-dialog-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy-deep);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.donate-close {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.donate-close:hover {
  color: var(--navy-deep);
  background: var(--gold);
}

.donate-dialog iframe {
  display: block;
}

.button {
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.button-large {
  min-height: 3.5rem;
  padding: 1rem 1.35rem;
  font-size: 0.88rem;
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-light);
}

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

.button-ghost:hover {
  color: var(--navy-deep);
  background: var(--white);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

.hero {
  min-height: min(790px, calc(100vh - 5.25rem));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  color: var(--white);
  background: var(--navy);
}

.hero-copy {
  min-width: 0;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(2rem, 7vw, 6.5rem) clamp(4rem, 7vw, 6.5rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  align-self: center;
}

.eyebrow,
.section-number {
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.75rem, 4.8vw, 4.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lede {
  max-width: 34rem;
  margin: 1.8rem 0 2rem;
  color: #d8e4e7;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-portrait {
  min-width: 0;
  min-height: 620px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d1dad9;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 28px 0 50px rgba(8, 34, 44, 0.18);
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.quick-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.3rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.quick-nav a {
  min-width: 0;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  border-left: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.quick-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

.quick-nav span {
  flex: 0 0 auto;
  color: #b36c16;
  font-size: 0.74rem;
}

.reading-section,
.priorities {
  padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100vw - var(--max)) / 2));
}

.reading-section {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 5vw, 5rem);
  background: var(--white);
}

.section-heading {
  min-width: 0;
  position: sticky;
  top: 7rem;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 3.2vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.priorities-intro h2,
.donate-band h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.75rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.reading-section > .prose {
  padding-top: 2.1rem;
}

.prose {
  min-width: 0;
  max-width: var(--reading);
}

.prose p {
  margin: 0;
}

.prose p + p {
  margin-top: 1.25em;
}

.prose p {
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.78;
  text-align: left;
  hyphens: none;
  overflow-wrap: break-word;
}

.donate-band {
  padding: clamp(3.3rem, 6vw, 5.5rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  color: var(--white);
  background: var(--navy-deep);
}

.donate-band h2 {
  max-width: 12ch;
}

.donate-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.donate-action span {
  color: #c5d4d8;
  font-size: 0.86rem;
}

.priorities {
  background: var(--paper);
}

.priorities-intro {
  min-width: 0;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
}

.priorities-intro > .section-number {
  grid-column: 1 / -1;
  margin-bottom: -1.5rem;
}

.priorities-intro h2 {
  max-width: 10ch;
}

.pillar-list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pillar-list li {
  border-bottom: 1px solid var(--line);
}

.pillar-list a {
  min-width: 0;
  padding: 0.85rem 0;
  display: flex;
  gap: 0.8rem;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-decoration: none;
}

.pillar-list a:hover {
  color: #895412;
}

.pillar-list span {
  flex: 0 0 1.5rem;
  color: #b36c16;
}

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

.issue {
  min-width: 0;
  padding: clamp(4rem, 8vw, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.issue-heading {
  min-width: 0;
  container-type: inline-size;
  position: sticky;
  top: 7rem;
}

.issue-heading span {
  display: block;
  margin-bottom: 1rem;
  color: #b36c16;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.issue h3 {
  max-width: none;
  font-size: min(clamp(2.35rem, 3.2vw, 3.25rem), 13cqi);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.issue > .prose {
  padding-top: 2.1rem;
}

.thoughts {
  padding: clamp(5rem, 9vw, 8rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy);
}

.thought-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.thought-grid p {
  min-width: 0;
  min-height: 13rem;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: flex-start;
  color: var(--white);
  background: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.closing-cta {
  padding: clamp(3rem, 6vw, 5rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--navy-deep);
  background: var(--gold);
}

.closing-cta p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.closing-cta .button-gold {
  color: var(--white);
  background: var(--navy-deep);
}

.closing-cta .button-gold:hover {
  background: var(--navy);
}

.site-footer {
  min-height: 10rem;
  padding: 2.5rem max(1.25rem, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background: #061920;
}

.site-footer p {
  margin: 0;
  color: #9eb0b6;
  font-size: 0.84rem;
}

.mobile-donate {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 4.8rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.42rem;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 4.8rem 0 auto;
    padding: 1.5rem 1.25rem 2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--navy-deep);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 20px 30px rgba(6, 25, 32, 0.22);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-donate {
    margin-top: 1rem;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 4.8rem 1.25rem 4rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-portrait {
    min-height: auto;
    aspect-ratio: 5 / 4;
  }

  .hero-portrait img {
    object-position: center 19%;
  }

  .hero-portrait::after {
    box-shadow: inset 0 22px 45px rgba(8, 34, 44, 0.18);
  }

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

  .reading-section,
  .issue {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .section-heading,
  .issue-heading {
    position: static;
  }

  .section-heading h2,
  .issue h3 {
    max-width: none;
  }

  .issue > .prose {
    padding-top: 0;
  }

  .reading-section > .prose {
    padding-top: 0;
  }

  .donate-band {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }

  .donate-action {
    align-items: flex-start;
  }

  .priorities-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .priorities-intro > .section-number {
    grid-column: auto;
    margin-bottom: -1rem;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1rem;
  }

  html {
    scroll-padding-top: 5.3rem;
  }

  .wordmark-office {
    font-size: 0.62rem;
  }

  .hero-copy {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12.4vw, 4.1rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-portrait {
    aspect-ratio: 4 / 4.2;
  }

  .quick-nav {
    padding: 1.4rem 1.25rem;
    grid-template-columns: 1fr;
  }

  .quick-nav a {
    padding: 0.75rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-nav a:last-child {
    border-bottom: 0;
  }

  .reading-section,
  .priorities {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section-heading h2,
  .priorities-intro h2,
  .donate-band h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.2rem);
  }

  .issue {
    padding: 4rem 0;
  }

  .issue h3 {
    font-size: min(clamp(2.1rem, 10vw, 3rem), 13cqi);
  }

  .prose p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .thought-grid {
    grid-template-columns: 1fr;
  }

  .thought-grid p {
    min-height: 9rem;
  }

  .closing-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-donate {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 3.45rem;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    background: var(--gold);
    font-family: var(--display);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 22px rgba(6, 25, 32, 0.18);
  }
}

@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;
  }
}
