:root {
  --ink: #1c1a17;
  --paper: #f4f1ea;
  --rule: #d6cfc0;
  --accent: #8c3b26;
  --muted: #6b6459;
}

* { box-sizing: border-box; }

html {
  font-size: 17px;
}

body {
  margin: 0;
  padding: 0 1.5rem 4rem;
  background: var(--paper);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.62;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
}

header.masthead {
  border-bottom: 3px double var(--rule);
  padding: 2.75rem 0 1.1rem;
  margin-bottom: 2.25rem;
}

.mark {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.mark img {
  width: 34px;
  height: 34px;
  align-self: center;
}

.mark a {
  font-size: 1.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.tagline {
  margin: 0.55rem 0 1.1rem;
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

nav a {
  margin-right: 1.35rem;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

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

h2 {
  font-size: 1.18rem;
  margin: 2.4rem 0 0.7rem;
  font-weight: 600;
}

p { margin: 0 0 1.15rem; }

a { color: var(--accent); }

.lede {
  font-size: 1.12rem;
  color: #33302b;
}

figure {
  margin: 2rem 0;
  padding: 1.4rem;
  background: #fbf9f4;
  border: 1px solid var(--rule);
}

figure img { width: 100%; height: auto; display: block; }

figcaption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.specimens {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.specimens li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--rule);
}

.specimens .meta {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.specimens a {
  text-decoration: none;
  font-size: 1.05rem;
}

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

blockquote {
  margin: 1.8rem 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--rule);
  color: var(--muted);
  font-style: italic;
}

dl { margin: 1.2rem 0; }
dt { font-weight: 600; margin-top: 0.9rem; }
dd { margin: 0.15rem 0 0; color: var(--muted); }

footer {
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
  color: var(--muted);
}

footer a { color: var(--muted); }
