:root {
  --bg: #f4efe4;
  --surface: #fbf8f1;
  --text: #2b2620;
  --muted: #6b6152;
  --accent: #7a2e1f;
  --border: #d9cfbd;
  --code-bg: #2b2620;
  --code-text: #f4efe4;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1b1916;
    --surface: #24211d;
    --text: #ece5d8;
    --muted: #a89d8b;
    --accent: #d9825f;
    --border: #3a352e;
    --code-bg: #0f0e0c;
    --code-text: #ece5d8;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}

main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  line-height: 1.2;
}

h1 { font-size: 2.75rem; margin: 0.25rem 0 1rem; }
h2 { font-size: 1.5rem; margin: 2.5rem 0 0.75rem; color: var(--accent); }

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede { font-size: 1.1rem; color: var(--muted); }

a { color: var(--accent); }

code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.command {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background: var(--code-bg);
  color: var(--code-text);
  border-radius: 6px;
}

.command code {
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
}

.command button {
  flex: none;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--muted);
  border-radius: 4px;
  background: transparent;
  color: var(--code-text);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.command button:hover { border-color: var(--code-text); }

.note { color: var(--muted); font-size: 0.95rem; }

.fpr { word-break: break-word; }

ol { padding-left: 1.25rem; }
li { margin: 0.4rem 0; }
