/* One accent on a neutral ground, light and dark from the reader's system.
   The 1980s are in the corners and in the h1 face, never in the reading. */
:root {
  color-scheme: light dark;
  --ground: #f4f1ea;
  --ink: #1a1a1a;
  --muted: #5c5a55;
  --line: #c9c4b8;
  /* Burnt orange, darkened from #b35c00 until it clears 4.5:1 both ways: that
     shade gave 4.19:1 for the .9rem footer links on the ground and 4.72:1 for
     white on the .cta, and pa11y fails a page for either. This one is 4.73:1
     on the ground, 5.07:1 on the card and 5.34:1 under white. */
  --accent: #a85400;
  --accent-ink: #ffffff;
  --card: #fbf9f4;
  --measure: 68ch;
  --pixel: 3px;
  --face-display: "Silkscreen", monospace;
  --face-body: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #121212;
    --ink: #ebe7dc;
    --muted: #a39f94;
    --line: #3a3833;
    --accent: #ffb000;
    --accent-ink: #121212;
    --card: #1b1b1a;
  }
}
@font-face {
  font-family: "Silkscreen";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/silkscreen-400.e6c72ea470.woff2) format("woff2");
}
* { box-sizing: border-box; }
html { background: var(--ground); color: var(--ink); font-family: var(--face-body);
  font-size: clamp(16px, 1.6vw, 18px); line-height: 1.55; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
a { color: var(--accent); text-decoration-thickness: var(--pixel); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: var(--pixel) solid var(--accent); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--accent-ink);
  padding: .5rem 1rem; }
.skip:focus { left: 1rem; z-index: 1; }
.site-header, .site-footer, main { width: min(100% - 2rem, 72rem); margin-inline: auto; }
.site-header { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding-block: 1.25rem; }
.site-header .wordmark { display: inline-block; color: var(--ink); line-height: 0; }
.site-header .wordmark svg { width: clamp(140px, 22vw, 216px); height: auto; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--ink); text-decoration: none; padding: .25rem 0; border-bottom: var(--pixel) solid transparent; }
.site-nav a[aria-current="page"], .site-nav a:hover { border-bottom-color: var(--accent); }
main { flex: 1; padding-block: 1rem 3rem; }
h1, h2 { line-height: 1.15; }
h1 { font-family: var(--face-display); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: .02em; margin: 0 0 1rem; }
h2 { font-size: 1.35rem; margin: 2.5rem 0 .75rem; }
p, li { max-width: var(--measure); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: var(--measure); }
.meta { color: var(--muted); font-size: .9rem; }
/* Pixel corners: the card draws its frame with a stepped outline, no radius. */
.pixel { position: relative; padding: 1.25rem; background: var(--card);
  box-shadow: 0 0 0 var(--pixel) var(--line),
    var(--pixel) var(--pixel) 0 var(--pixel) var(--ground),
    calc(-1 * var(--pixel)) calc(-1 * var(--pixel)) 0 var(--pixel) var(--ground); }
.card { display: block; color: inherit; text-decoration: none; }
.card h3 { margin: 0 0 .25rem; }
.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); padding: 0; list-style: none; }
.cta { display: inline-block; background: var(--accent); color: var(--accent-ink); padding: .6rem 1rem;
  text-decoration: none; font-weight: 600; }
.status { display: inline-block; padding: .1rem .5rem; border: var(--pixel) solid var(--line); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .06em; }
figure { margin: 1.5rem 0; }
figure img { max-width: 100%; height: auto; display: block; image-rendering: auto; }
figcaption { color: var(--muted); font-size: .9rem; margin-top: .4rem; }
.site-footer { border-top: var(--pixel) solid var(--line); padding-block: 1.5rem; color: var(--muted); font-size: .9rem; }
.site-footer ul { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; list-style: none; margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
