@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-var-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-var-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f2f0e8;
  --sheet: #fbfaf5;
  --ink: #1d2420;
  --soft-ink: #535d56;
  --rule: #a9ada5;
  --light-rule: #d4d5cf;
  --signal: #d99220;
  --signal-dark: #8d5709;
  --rail: #202824;
  --rail-soft: #303a35;
  --on-dark: #f8f5ea;
  --rail-width: 17.5rem;
  --content-max: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.17em;
}

a:hover {
  text-decoration-color: var(--signal);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: flex;
  width: var(--rail-width);
  flex-direction: column;
  overflow-y: auto;
  border-right: 5px solid var(--signal);
  background: var(--rail);
  color: var(--on-dark);
}

.rail-head {
  padding: 1.7rem 1.45rem 1.35rem;
  border-bottom: 1px solid #4f5953;
}

.brand {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand svg {
  flex: 0 0 auto;
  color: var(--signal);
}

.brand > span {
  display: block;
  font-size: 1.17rem;
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand strong {
  font-weight: 790;
}

.brand small {
  display: block;
  margin-top: 0.45rem;
  color: #bfc7c1;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem 1rem;
  margin-top: 1.55rem;
}

.primary-nav a {
  min-height: 2.75rem;
  padding-top: 0.65rem;
  color: #c8cec9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--signal);
}

.rail-library {
  flex: 1;
  padding: 1.35rem 0;
}

.rail-library > p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0 1.45rem 0.95rem;
  color: #c8cec9;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rail-library > p small {
  color: #8f9992;
  font: inherit;
}

.rail-library nav {
  border-top: 1px solid #4f5953;
}

.rail-library nav a {
  display: grid;
  min-height: 3.65rem;
  grid-template-columns: 2.05rem 1fr;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 1.45rem;
  border-bottom: 1px solid #4f5953;
  color: #edf0ec;
  font-size: 0.88rem;
  font-weight: 640;
  line-height: 1.15;
  text-decoration: none;
}

.rail-library nav a span {
  color: var(--signal);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
  font-variation-settings: "opsz" 16;
}

.rail-library nav a:hover,
.rail-library nav a[aria-current="page"] {
  background: var(--signal);
  color: var(--ink);
}

.rail-library nav a:hover span,
.rail-library nav a[aria-current="page"] span {
  color: var(--ink);
}

.rail-note {
  margin: 0;
  padding: 1.25rem 1.45rem 1.55rem;
  border-top: 1px solid #4f5953;
  color: #aeb7b0;
  font-size: 0.73rem;
  line-height: 1.45;
}

main,
.site-footer {
  margin-left: var(--rail-width);
}

main {
  min-height: 80vh;
}

.kicker,
.document-code,
.record-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker {
  color: var(--signal-dark);
}

.document-code,
.record-label {
  color: var(--soft-ink);
}

.hero {
  border-bottom: 2px solid var(--ink);
  background-color: var(--sheet);
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(29, 36, 32, 0.045) 1px);
  background-size: 6.25% 100%;
}

.hero-grid {
  display: grid;
  max-width: var(--content-max);
  min-height: 43rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  gap: 3rem 1.25rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4.5rem) 3rem;
}

.hero-copy {
  grid-column: 1 / 9;
  align-self: start;
  max-width: 50rem;
}

.hero-copy .document-code {
  margin-bottom: 3.5rem;
}

.hero-copy .kicker {
  margin-bottom: 1.1rem;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(3.5rem, 6.3vw, 6.6rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero-intro {
  max-width: 37rem;
  margin-top: 2.3rem;
  padding-left: 1.1rem;
  border-left: 5px solid var(--signal);
  color: #3e4942;
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-intro p {
  margin: 0;
}

.mission-more {
  max-width: 37rem;
  margin-top: 1.4rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.mission-more summary {
  min-height: 3rem;
  padding: 0.78rem 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mission-more div {
  padding: 0 0 1rem 1.1rem;
  border-left: 3px solid var(--signal);
  color: var(--soft-ink);
}

.mission-more div p:first-child {
  margin-top: 0;
}

.hero-figure {
  grid-column: 9 / 13;
  align-self: end;
  margin: 0;
  padding: 0.65rem;
  border: 1px solid var(--ink);
  background: var(--sheet);
}

.hero-figure::before {
  display: block;
  margin: -0.65rem -0.65rem 0.65rem;
  padding: 0.42rem 0.65rem;
  background: var(--signal);
  color: var(--ink);
  content: "SITE RECORD / 01";
  font-size: 0.62rem;
  font-weight: 790;
  letter-spacing: 0.12em;
}

.hero-figure img,
.guide-image,
.topic-image,
.archive-image,
.topic-lead-image,
.lede-photo img,
.inline-photo img,
.read-next img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
}

figcaption {
  margin-top: 0.55rem;
  color: var(--soft-ink);
  font-size: 0.7rem;
  line-height: 1.4;
}

.hero-register {
  grid-column: 1 / 13;
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 2px solid var(--ink);
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-register span {
  margin-right: 0.25rem;
  color: var(--signal-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.featured-guides > div,
.topic-directory > div,
.topic-archive,
.read-next > div,
.page,
.breadcrumbs,
.article-intro,
.article-copy,
.topic-heading,
.topic-lead {
  width: min(calc(100% - clamp(3rem, 10vw, 9rem)), var(--content-max));
  margin-inline: auto;
}

.featured-guides,
.topic-directory,
.topic-archive,
.read-next {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.featured-guides {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1.4fr) minmax(15rem, 0.6fr);
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 3px solid var(--ink);
}

.section-index {
  margin: 0;
  color: var(--signal-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.9rem;
  font-style: italic;
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.section-heading h2,
.related-heading h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 24rem;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.guide-ledger,
.topic-archive ol,
.read-next ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.guide-record {
  display: grid;
  min-height: 9rem;
  grid-template-columns: 3.25rem minmax(9rem, 12rem) minmax(0, 1fr) 4rem 3rem;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}

.guide-record:hover {
  background: rgba(217, 146, 32, 0.09);
}

.guide-number,
.archive-number,
.topic-number {
  color: var(--signal-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
}

.guide-media {
  display: block;
  border: 1px solid var(--ink);
  background: #dddcd5;
}

.guide-copy .kicker {
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
}

.guide-copy h3,
.archive-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.13;
}

.guide-copy h3 a,
.archive-copy h3 a {
  text-decoration: none;
}

.guide-copy > p:last-child,
.archive-copy p {
  max-width: 47rem;
  margin: 0.45rem 0 0;
  color: var(--soft-ink);
  font-size: 0.84rem;
  line-height: 1.42;
}

.guide-record > small,
.archive-record > small,
.topic-lead > small {
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-arrow,
.archive-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.record-arrow:hover,
.archive-arrow:hover {
  background: var(--signal);
}

.topic-directory {
  background: var(--rail);
  color: var(--on-dark);
}

.topic-directory .section-heading {
  border-color: #7c847f;
}

.topic-directory .kicker,
.topic-directory .section-index {
  color: var(--signal);
}

.topic-directory .section-heading > p:last-child {
  color: #bdc5bf;
}

.topic-register {
  border-top: 1px solid #69736d;
}

.topic-record {
  display: grid;
  min-height: 6.8rem;
  grid-template-columns: 3.25rem 6.5rem minmax(0, 1fr) 5rem 3rem;
  gap: 1.15rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid #69736d;
  text-decoration: none;
}

.topic-record:hover {
  background: var(--rail-soft);
}

.topic-record .topic-number {
  color: var(--signal);
}

.topic-media {
  border: 1px solid #7e8782;
}

.topic-copy {
  display: block;
}

.topic-copy strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.topic-copy small {
  display: block;
  max-width: 48rem;
  margin-top: 0.3rem;
  color: #b8c0ba;
  font-size: 0.8rem;
  line-height: 1.35;
}

.topic-count {
  color: #c3cac5;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-record .record-arrow {
  border-color: #7e8782;
  color: var(--on-dark);
}

.breadcrumbs {
  display: flex;
  min-height: 3.4rem;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.75rem;
  color: var(--soft-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.topic-heading {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) minmax(17rem, 0.65fr);
  gap: 2rem;
  align-items: end;
  padding-block: clamp(2.5rem, 6vw, 5.2rem);
  border-top: 7px solid var(--signal);
  border-bottom: 3px solid var(--ink);
}

.topic-heading-number {
  margin: 0;
  color: var(--signal-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 9vw, 9rem);
  font-style: italic;
  font-weight: 520;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.topic-heading h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(3rem, 5.3vw, 5.6rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.topic-heading-blurb {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.topic-lead {
  display: grid;
  grid-template-columns: 5.5rem 15rem minmax(0, 1fr) 4rem 3rem;
  gap: 1.25rem;
  align-items: center;
  margin-top: 3rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.topic-lead-media {
  border: 1px solid var(--ink);
}

.topic-lead h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.topic-lead h2 a {
  text-decoration: none;
}

.topic-lead p:not(.record-label) {
  margin: 0.5rem 0 0;
  color: var(--soft-ink);
  font-size: 0.88rem;
  line-height: 1.4;
}

.topic-archive {
  padding-top: 5rem;
}

.topic-archive .section-heading {
  grid-template-columns: 5rem 1fr;
}

.archive-record {
  display: grid;
  min-height: 7.5rem;
  grid-template-columns: 3rem 9.5rem minmax(0, 1fr) 4rem 3rem;
  gap: 1.15rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}

.archive-record:hover {
  background: rgba(217, 146, 32, 0.08);
}

.archive-media {
  border: 1px solid var(--ink);
}

.article-intro {
  padding-block: clamp(2rem, 5vw, 4.5rem) 3rem;
  border-top: 7px solid var(--signal);
  border-bottom: 3px solid var(--ink);
}

.article-heading {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.4rem;
}

.article-heading .kicker {
  padding-top: 0.65rem;
}

.article-heading h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.article-coverline {
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(24rem, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-top: clamp(2rem, 5vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.article-brief {
  padding-left: 1rem;
  border-left: 5px solid var(--signal);
}

.article-deck {
  margin: 0;
  color: #354039;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 480;
  line-height: 1.5;
}

.byline {
  margin: 1.15rem 0 0;
  color: var(--soft-ink);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.team {
  color: var(--ink);
  font-weight: 760;
}

.lede-photo {
  margin: 0;
  padding: 0.6rem;
  border: 1px solid var(--ink);
  background: var(--sheet);
}

.article-copy {
  max-width: 48rem;
  padding-block: clamp(3rem, 7vw, 6rem);
  font-size: 1.08rem;
  line-height: 1.76;
}

.article-copy > p,
.article-copy > ul,
.article-copy > ol,
.article-copy > blockquote,
.article-copy > h2,
.article-copy > h3 {
  max-width: 43rem;
}

.article-copy > p:first-child {
  margin-top: 0;
  font-size: 1.22rem;
  font-weight: 520;
  line-height: 1.65;
}

.article-copy h2 {
  margin: 4.2rem 0 1.1rem;
  padding-top: 1rem;
  border-top: 3px solid var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.article-copy h3 {
  margin: 2.8rem 0 0.8rem;
  font-size: 1.35rem;
  font-weight: 740;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.article-copy p,
.article-copy li {
  color: #39443d;
}

.article-copy li + li {
  margin-top: 0.55rem;
}

.article-copy a {
  color: #6f4307;
  font-weight: 670;
}

.method-note {
  margin: 0 0 2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--rust, #a84b32);
  background: #f7f3e9;
  color: #3e3a33;
  font-size: .92rem;
  line-height: 1.55;
}

.article-copy blockquote {
  margin: 2.5rem 0;
  padding: 1.3rem 1.5rem;
  border-left: 7px solid var(--signal);
  background: #e7e3d8;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-variation-settings: "opsz" 24;
  line-height: 1.5;
}

.inline-photo {
  width: min(100%, 44rem);
  margin: 3rem 0 3rem auto;
  padding: 0.55rem;
  border: 1px solid var(--ink);
  background: var(--sheet);
}

.read-next {
  border-top: 2px solid var(--ink);
  background: #dedbd1;
}

.related-heading {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 3px solid var(--ink);
}

.related-heading > a {
  min-height: 2.75rem;
  padding: 0.65rem 0;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.read-next li a {
  display: grid;
  min-height: 6rem;
  grid-template-columns: 8rem 1fr 4rem 3rem;
  gap: 1.2rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.read-next li a:hover {
  background: rgba(251, 250, 245, 0.6);
}

.related-image {
  border: 1px solid var(--ink);
}

.related-title {
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.2;
}

.read-next small {
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-rail {
  padding-block: clamp(3rem, 8vw, 7rem);
}

.page {
  max-width: 51rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 7px solid var(--signal);
  border-bottom: 3px solid var(--ink);
  background: var(--sheet);
}

.page h1 {
  margin: 1rem 0 2rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.page .article {
  max-width: 43rem;
  color: #39443d;
  font-size: 1.06rem;
}

.page .article h2 {
  margin-top: 3rem;
  padding-top: 0.8rem;
  border-top: 2px solid var(--ink);
  font-size: 1.8rem;
  line-height: 1.15;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.4rem clamp(1.5rem, 5vw, 4.5rem);
  border-top: 5px solid var(--signal);
  background: #151b18;
  color: #d9ded9;
}

.footer-name p {
  margin: 0;
  font-size: 1.05rem;
}

.footer-name span,
.footer-note {
  color: #9fa9a2;
  font-size: 0.72rem;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.site-footer nav a {
  min-height: 2.75rem;
  padding-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 720;
  text-decoration: none;
}

.footer-note {
  max-width: 25rem;
  margin: 0;
}

.image-placeholder {
  aspect-ratio: 16 / 9;
  background: #d9d7ce;
}

@media (max-width: 67rem) {
  :root {
    --rail-width: 15.25rem;
  }

  .hero-copy {
    grid-column: 1 / 8;
  }

  .hero-figure {
    grid-column: 8 / 13;
  }

  .guide-record {
    grid-template-columns: 2.5rem 9rem minmax(0, 1fr) 3rem;
  }

  .guide-record > small {
    display: none;
  }

  .topic-heading {
    grid-template-columns: 6rem 1fr;
  }

  .topic-heading-blurb {
    grid-column: 2;
  }
}

@media screen and (max-width: 52rem) {
  .site-header {
    position: sticky;
    inset: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    border-right: 0;
    border-bottom: 4px solid var(--signal);
  }

  .rail-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 1rem 0.65rem;
  }

  .brand {
    min-width: 12rem;
  }

  .brand small {
    display: none;
  }

  .primary-nav {
    display: flex;
    gap: 0.8rem;
    margin: 0;
  }

  .primary-nav a {
    min-height: 2.75rem;
    padding-top: 0.7rem;
    font-size: 0.67rem;
  }

  .rail-library {
    flex: none;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: thin;
  }

  .rail-library > p,
  .rail-note {
    display: none;
  }

  .rail-library nav {
    display: flex;
    width: max-content;
    border-top: 0;
  }

  .rail-library nav a {
    min-height: 3rem;
    grid-template-columns: 1.5rem auto;
    padding: 0.5rem 1rem;
    border-right: 1px solid #4f5953;
    border-bottom: 0;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  main,
  .site-footer {
    margin-left: 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2.2rem 1rem;
    padding: 3rem 1.25rem 2rem;
  }

  .hero-copy {
    grid-column: 1 / 7;
  }

  .hero-copy .document-code {
    margin-bottom: 2.4rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 13vw, 5rem);
  }

  .hero-figure {
    grid-column: 1 / 5;
  }

  .hero-register {
    grid-column: 5 / 7;
    display: block;
    align-self: end;
    padding: 0 0 0 0.8rem;
    border-top: 0;
    border-left: 2px solid var(--ink);
  }

  .hero-register span {
    display: block;
    margin-top: 0.7rem;
  }

  .featured-guides > div,
  .topic-directory > div,
  .topic-archive,
  .read-next > div,
  .page,
  .breadcrumbs,
  .article-intro,
  .article-copy,
  .topic-heading,
  .topic-lead {
    width: calc(100% - 2.5rem);
  }

  .section-heading {
    grid-template-columns: 4rem 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .guide-record {
    grid-template-columns: 2.5rem 8rem minmax(0, 1fr) 3rem;
  }

  .guide-copy > p:last-child {
    display: none;
  }

  .topic-record {
    grid-template-columns: 2.5rem 5.5rem minmax(0, 1fr) 3rem;
  }

  .topic-count {
    display: none;
  }

  .topic-heading {
    gap: 1.2rem;
  }

  .topic-lead {
    grid-template-columns: 4.5rem 10rem minmax(0, 1fr) 3rem;
  }

  .topic-lead > small {
    display: none;
  }

  .archive-record {
    grid-template-columns: 2.5rem 7rem minmax(0, 1fr) 3rem;
  }

  .archive-record > small {
    display: none;
  }

  .archive-copy p {
    display: none;
  }

  .article-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .article-heading .kicker {
    padding: 0;
  }

  .article-coverline {
    grid-template-columns: 1fr;
  }

  .article-brief {
    max-width: 38rem;
  }

  .article-copy {
    max-width: 48rem;
  }
}

@media screen and (max-width: 35rem) {
  .rail-head {
    align-items: flex-start;
  }

  .brand svg {
    width: 25px;
    height: 27px;
  }

  .brand > span {
    font-size: 1rem;
  }

  .primary-nav a:nth-child(2) {
    display: none;
  }

  .hero-figure {
    grid-column: 1 / 7;
  }

  .hero-register {
    grid-column: 1 / 7;
    display: flex;
    gap: 1.2rem;
    padding: 0.8rem 0 0;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .hero-register span {
    display: inline;
    margin-top: 0;
  }

  .section-heading {
    grid-template-columns: 3.25rem 1fr;
  }

  .section-index {
    font-size: 3rem;
  }

  .guide-record {
    grid-template-columns: 2rem 6.5rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .guide-record .record-arrow {
    display: none;
  }

  .guide-copy h3 {
    font-size: 1rem;
  }

  .topic-record {
    grid-template-columns: 2rem 4.8rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .topic-record .record-arrow {
    display: none;
  }

  .topic-copy strong {
    font-size: 1rem;
  }

  .topic-copy small {
    display: none;
  }

  .topic-heading {
    grid-template-columns: 4rem 1fr;
  }

  .topic-heading-number {
    font-size: 4.5rem;
  }

  .topic-heading h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .topic-heading-blurb {
    grid-column: 1 / 3;
  }

  .topic-lead {
    grid-template-columns: 1fr 3rem;
  }

  .record-label {
    grid-column: 1 / 3;
  }

  .topic-lead-media {
    grid-column: 1 / 3;
  }

  .archive-record {
    grid-template-columns: 2rem 5.5rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .archive-arrow {
    display: none;
  }

  .archive-copy h3 {
    font-size: 0.98rem;
  }

  .article-heading h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .article-copy {
    font-size: 1rem;
  }

  .inline-photo {
    margin-inline: 0;
  }

  .related-heading {
    grid-template-columns: 3.25rem 1fr;
  }

  .related-heading > a {
    grid-column: 2;
  }

  .read-next li a {
    grid-template-columns: 6rem 1fr;
    gap: 0.8rem;
  }

  .read-next li small,
  .read-next li .record-arrow {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    margin: 0.65in;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 10.5pt;
  }

  .site-header,
  .site-footer,
  .breadcrumbs,
  .read-next,
  .mission-more {
    display: none !important;
  }

  main {
    margin: 0;
  }

  .article-intro,
  .article-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border-color: #000;
  }

  .article-heading h1 {
    font-size: 30pt;
  }

  .article-coverline {
    grid-template-columns: 1fr;
  }

  .lede-photo,
  .inline-photo,
  h2,
  h3,
  blockquote {
    break-inside: avoid;
  }

  .article-copy a {
    color: #000;
  }
}
