:root {
  --paper: #f3ebdd;
  --ink: #2c241c;
  --ink-muted: #6b5e4e;
  --rule: #d9cdb8;
  --accent: #7a5c45;
  --column: 36em;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.letterhead {
  width: 100%;
  max-width: var(--column);
  text-align: center;
}

.masthead {
  margin-bottom: 2.25rem;
}

.mark {
  display: block;
  margin: 0 auto 1.1rem;
  color: var(--accent);
}

.name {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 1.15rem auto 0;
  width: 100%;
  max-width: 14rem;
}

.lede {
  margin: 0 0 1.35rem;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--ink-muted);
}

.body {
  margin: 0 0 2.5rem;
  color: var(--ink);
}

.inline-link,
.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.inline-link:hover,
.inline-link:focus-visible,
.contact a:hover,
.contact a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
  outline: none;
}

.contact {
  margin: 0 0 3rem;
  font-style: normal;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.contact p {
  margin: 0.15rem 0;
}

.colophon {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.colophon .rule {
  margin-bottom: 1rem;
  max-width: 8rem;
}

.colophon p {
  margin: 0;
}

@media (max-width: 480px) {
  body {
    padding: 2.25rem 1.25rem;
    align-items: flex-start;
  }

  .name {
    letter-spacing: 0.12em;
  }
}
