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

body {
  background-color: #f2eeea;
  color: #111;
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.65;
  padding: 44px 60px;
  max-width: 720px;
}

/* ── Header ── */

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid #c4c0b8;
  margin-bottom: 28px;
}

h1 {
  font-size: 1.15rem;
  font-weight: normal;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

nav a:hover {
  opacity: 0.5;
}

/* ── Bio ── */

.bio {
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 600px;
}

/* ── Sections ── */

section {
  margin-bottom: 28px;
}

h2 {
  font-size: 0.82rem;
  font-weight: normal;
  color: #888;
  margin-bottom: 12px;
}

/* ── Collison-style prose list ── */

.prose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose-list li {
  font-size: 0.93rem;
  padding-left: 12px;
  border-left: 2px solid #111;
}

.prose-list li strong {
  font-weight: 600;
}

/* ── Media list (books, movies, music) ── */

.media-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.media-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 0;
  border-top: 1px solid #d8d4cc;
  font-size: 0.93rem;
}

.media-list li:last-child {
  border-bottom: 1px solid #d8d4cc;
}

.media-list .title {
  color: #111;
}

.media-list .meta {
  color: #888;
  white-space: nowrap;
  font-size: 0.85rem;
}

/* ── Empty placeholder ── */

.empty {
  font-size: 0.88rem;
  color: #aaa;
}

/* ── Links ── */

a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.5;
}

/* ── Responsive ── */

@media (max-width: 540px) {
  body {
    padding: 28px 20px;
  }

  header {
    flex-direction: column;
    gap: 10px;
  }
}
