:root {
  --paper: #f4f0ea;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --rule: #d6cfc4;
  --accent: #8b3a2a;
  --verse-wash: #efe8dc;
  --max: 40rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.75rem 0 4rem;
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.25rem;
}

.mark {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.85rem;
}

.nav a + a {
  margin-left: 1rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.date {
  color: var(--ink-soft);
}

.theme {
  color: var(--accent);
  font-weight: 600;
}

blockquote.quote {
  margin: 0 0 1.35rem;
  padding: 0;
  border: 0;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: #2a2420;
}

.attr {
  margin: 0 0 1.6rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.verse {
  background: var(--verse-wash);
  border-left: 3px solid var(--accent);
  padding: 0.95rem 1.1rem;
  margin: 0 0 1.6rem;
}

.verse-ref {
  display: block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.verse p {
  margin: 0;
}

.essay p {
  margin: 0 0 1rem;
}

.essay p:last-child {
  margin-bottom: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 2.25rem 0;
}

.archive h2 {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.past {
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule);
}

.past:last-child {
  border-bottom: 1px solid var(--rule);
}

.past .when {
  display: block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.past blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: italic;
}

.past .cite {
  display: block;
  margin-top: 0.25rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  html {
    font-size: 17px;
  }

  blockquote.quote {
    font-size: 1.35rem;
  }
}

