:root {
  --vellum: #efe6d2;
  --lamp: #2b241c;
  --rubric: #8b2e24;
  --ink: #1a1612;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Iowan Old Style", serif;
  background: var(--vellum);
  color: var(--ink);
  line-height: 1.8;
}
h1, h2, h3 { font-family: Palatino, Georgia, serif; }
a { color: var(--rubric); }
.rubedo { height: 5px; background: var(--rubric); }
.oratory {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 5vw;
  background: #f7f0de;
}
.oratory img { width: 56px; height: 56px; }
.oratory h1 { margin: 0; font-size: 17px; }
.oratory h1 a { color: inherit; text-decoration: none; }
.oratory p { margin: 3px 0 0; color: var(--rubric); font-size: 12px; letter-spacing: .08em; }
.folio {
  display: flex;
  flex-wrap: wrap;
  background: var(--lamp);
}
.folio a {
  color: var(--vellum);
  text-decoration: none;
  padding: 11px 13px;
  font-size: 14px;
}
.folio a:hover, .folio a.now { background: var(--rubric); }
.scriptorium { width: min(880px, 92vw); margin: 28px auto 70px; }
.incipit h2 { font-size: clamp(24px, 4vw, 34px); margin: 0 0 12px; line-height: 1.3; }
.incipit img { width: 100%; margin: 12px 0; }
.shelves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.shelves a {
  background: #f7f0de;
  border-top: 3px solid var(--rubric);
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
}
.quire {
  background: #f7f0de;
  border: 1px solid #d8ccb4;
  padding: 26px 28px;
}
.quire h2 { margin-top: 0; color: var(--rubric); }
.colophon {
  background: #f7f0de;
  border-top: 3px solid var(--lamp);
  padding: 22px 5vw 40px;
  font-size: 13px;
}
.colophon a { margin-right: 12px; }
@media (max-width: 720px) {
  .shelves { grid-template-columns: 1fr; }
}
