:root {
  --paper: #f3f0e8;
  --ink: #161616;
  --muted: #6d685f;
  --line: #d9d3c7;
  --max: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.frame {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.mark {
  font-family: Palatino, "Palatino Linotype", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.list a:hover {
  color: var(--ink);
}

.hero {
  padding: 18vh 0 8rem;
}

.hero h1,
.page h1 {
  margin: 0;
  font-family: Palatino, "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.page {
  padding: 4.5rem 0 6rem;
}

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

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

.list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  text-decoration: none;
  font-size: 1.25rem;
}

.list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.note {
  margin-top: 2rem;
  color: var(--muted);
  max-width: 38rem;
}

code {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92em;
}
