:root {
  --paper: #f4f0e8;
  --ink: #1a1814;
  --rule: #c9c0ac;
  --muted: #6b6250;
}

* { box-sizing: border-box; }

body {
  margin: 0 auto;
  max-width: 42em;
  padding: 3rem 1.5rem 6rem;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

a { color: var(--ink); }
a:hover { color: var(--muted); }

.site-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.wordmark { font-size: 1.1rem; text-decoration: none; }
.byline { color: var(--muted); font-size: 0.85rem; font-style: italic; }
.site-header nav { margin-left: auto; font-size: 0.9rem; }

.stream { list-style: none; margin: 0; padding: 0; }
.stream-entry {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.stream-date { color: var(--muted); width: 5.5em; flex-shrink: 0; }
.stream-room { margin-left: auto; color: var(--muted); font-size: 0.85rem; }

.room-body { margin-bottom: 2rem; }
.room-next { color: var(--muted); font-style: italic; font-size: 0.9rem; }
.log-heading {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

.update-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 0; }

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
