/* PARKA research exhibits — gov-document reading layer */
:root {
  --red: #b31942;
  --navy: #0a3161;
  --paper: #faf6ec;
  --ink: #1a1a1a;
  --rule: #d8d0bd;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Libre Franklin", system-ui, sans-serif;
  line-height: 1.65;
}
.gov-banner {
  background: var(--navy);
  color: #fff;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 7px 12px;
}
.doc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 3px double var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
.doc-mark, .doc-back {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.doc-mark sup { font-size: 0.5em; }
.doc-back { color: var(--red); font-size: 0.95em; }
.doc-back:hover, .doc a:hover { text-decoration: underline; }
.doc {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.doc-stamp {
  font-family: "Special Elite", monospace;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 2px solid var(--red);
  display: inline-block;
  padding: 4px 12px;
  transform: rotate(-1deg);
  margin-bottom: 28px;
}
.doc h1 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
}
.doc h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 3px solid var(--red);
  padding-bottom: 6px;
  margin: 52px 0 18px;
}
.doc h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 36px 0 10px;
}
.doc-lede { font-size: 1.15rem; max-width: 640px; }
.doc a { color: var(--red); word-break: break-word; }
.doc table {
  border-collapse: collapse;
  width: 100%;
  margin: 18px 0;
  font-size: 0.92rem;
  background: #fff;
}
.doc th {
  font-family: "Special Elite", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: left;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
}
.doc td {
  border: 1px solid var(--rule);
  padding: 8px 12px;
  vertical-align: top;
}
.doc tr td:first-child { white-space: nowrap; font-weight: 600; }
.doc blockquote {
  border-left: 4px solid var(--red);
  margin: 18px 0;
  padding: 6px 18px;
  background: #fff;
  font-style: italic;
}
.doc code {
  font-family: "Special Elite", monospace;
  font-size: 0.9em;
  background: #efe9d8;
  padding: 1px 5px;
}
.doc pre {
  background: var(--navy);
  color: #f5f2e8;
  padding: 16px;
  overflow-x: auto;
}
.doc pre code { background: none; color: inherit; padding: 0; }
.doc hr { border: none; border-top: 3px double var(--rule); margin: 40px 0; }
.doc-list { list-style: none; padding: 0; margin: 36px 0; }
.doc-list li { margin: 0 0 14px; }
.doc-list a {
  display: block;
  background: #fff;
  border: 2px solid var(--navy);
  padding: 16px 20px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--navy);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.doc-list a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--red);
  text-decoration: none;
}
.doc-list-stamp {
  display: block;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--red);
  margin-bottom: 4px;
}
.doc-list-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--navy);
}
.doc-foot {
  margin-top: 64px;
  border-top: 3px double var(--rule);
  padding-top: 18px;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #6b6452;
  text-align: center;
}
@media (max-width: 640px) {
  .doc table { display: block; overflow-x: auto; }
  .doc tr td:first-child { white-space: normal; }
}
