html, body {
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --soft: #999999;
  --line: #ececec;
}

body {
  font-family: Georgia, serif;
  background: var(--bg);
  color: var(--text);
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */

.site-header {
  width: 100%;
}

.site-header-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 0.75rem 1.5rem;
  box-sizing: border-box;
}

.site-brand {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.site-brand::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--text);
  margin-right: 8px;
  vertical-align: middle;
}

.site-brand:hover {
  text-decoration: underline;
}

/* Main content */

.page {
  flex: 1;
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

h1 {
  font-weight: normal;
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 1.5rem 0;
}

p {
  line-height: 1.75;
  margin: 0 0 1.2rem 0;
}

/* Intro + text entry navigation on homepage */

.intro {
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0 0 2.5rem 0;
  color: var(--text);
}

.entry-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.entry-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1.6;
}

.entry-nav a:hover {
  text-decoration: underline;
}

/* General links in page content */

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

.page a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  width: 100%;
}

.footer-nav {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2.25rem 1.5rem;
  box-sizing: border-box;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

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

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav span {
  margin: 0 0.45rem;
  color: var(--soft);
}