*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #141412;
  color: #d8d8d4;
  line-height: 1.7;
  padding: 2rem 1rem;
}

main {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Nav ── */
nav {
  margin-bottom: 3rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.5px;
}

/* Visited link color for dark theme */
a:visited { color: #a0a09c; }

a, nav a {
  color: #e0e0e0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

a:visited, nav a:visited {
  color: #b0b0ac;
}

nav a:hover, nav a:focus {
  color: #ffd86b;
}

nav a:hover, nav a.active {
  color: #d8d8d4;
}

nav .site-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  color: #d8d8d4;
  text-transform: none;
  letter-spacing: 0;
  margin-right: auto;
}

/* ── Page header ── */
header {
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #222;
  padding-bottom: 1.5rem;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1.05rem;
  color: #888;
  margin-top: 0.4rem;
  font-style: italic;
}

/* ── Sections ── */
section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: #aaa;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

p { margin-bottom: 0.75rem; }

ul {
  list-style: none;
  margin-bottom: 0.75rem;
}

ul li { margin-bottom: 0.3rem; }

/* ── Current books callout ── */
.current-books {
  background: #1e1c18;
  border-left: 3px solid #888;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}

.current-books .label {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 0.75rem;
}

.books-list {
  display: flex;
  gap: 2rem;
}

.books-list .book {
  flex: 1;
}

.book .book-meta {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.1rem;
}

.current-books a {
  color: #d8d8d4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Button ── */
.button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: #d8d8d4;
  color: #141412;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 3px;
  transition: background 0.15s;
}

.button:hover { background: #444; }

/* ── Meeting log (markdown prose) ── */
.log-content h2 {
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: 0;
  color: #d8d8d4;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #333;
}

.log-content p { margin-bottom: 0.75rem; }

.log-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

/* ── Books list ── */
.book-list { list-style: none; }

.book-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #2a2a28;
}

.book-list .book-title {
  font-size: 1.05rem;
}

.book-list .book-meta {
  font-size: 0.85rem;
  color: #888;
  font-family: system-ui, sans-serif;
  margin-top: 0.1rem;
}

/* ── Footer ── */
footer {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #666;
}
