  :root {
    --paper: #fffefa;
    --ink: #000000;
    --muted: #6b6659;
    --accent: #8a2213;
    --rule: #e5e1d4;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --paper: #191713;
      --ink: #ece8dd;
      --muted: #97917f;
      --accent: #e0705c;
      --rule: #35322a;
    }
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { background: var(--paper); }
  body {
    font-family: "Newsreader", Georgia, serif;
    font-optical-sizing: auto;
    color: var(--ink);
    background: var(--paper);
    font-size: 1.25rem;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
  }
  .page {
    max-width: 41rem;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 6rem;
  }
  header.site {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 5rem;
    font-size: 1rem;
  }
  header.site .name {
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  header.site time { color: var(--muted); }
  h1 {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.4rem, 7vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 3.5rem;
    max-width: 14ch;
  }
  p { margin-bottom: 1.35em; }
  p:last-of-type { margin-bottom: 0; }
  em { font-style: italic; }
  a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 1px;
  }
  .disclosure {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    font-style: italic;
    color: var(--muted);
    font-size: 1.1rem;
  }
  footer.site {
    margin-top: 5rem;
    font-size: 1rem;
    color: var(--muted);
  }
  @media (max-width: 480px) {
    body { font-size: 1.15rem; }
    .page { padding-top: 3rem; }
    header.site { margin-bottom: 3.5rem; }
  }

  header.site .name { color: inherit; text-decoration: none; }
  header.site .name:hover { text-decoration: underline; }
  .home h1 { max-width: none; margin-bottom: 1.25rem; }
  .site-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; }
  .home .intro { margin-bottom: 3.5rem; }
  .essay-list { list-style: none; }
  .essay-list li { border-top: 1px solid var(--rule); padding-top: 1.5rem; }
  .essay-list time { display: block; color: var(--muted); font-size: 1rem; margin-bottom: 0.65rem; }
  .essay-list h2 { font-size: 1.6rem; font-weight: 400; line-height: 1.25; }
  .essay-list h2 a { color: inherit; text-decoration: none; }
  .essay-list h2 a:hover { color: var(--accent); text-decoration: underline; }
  .essay-list p { margin-top: 0.8rem; color: var(--muted); font-size: 1.1rem; }
