:root {
  --ink: #000000;
  --paper: #faf8f4;
  --rule: #b8a98f;
  --seal: #000000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.letterhead {
  width: 100%;
  padding: 1.25rem 1rem;
  border-bottom: 2px solid var(--rule);
  font-family: "Courier New", monospace;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--seal);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  max-width: 40rem;
}

.portrait {
  margin: 0 0 1.75rem;
  padding: 0.5rem;
  border: 1px solid var(--rule);
  background: #fff;
}

.portrait img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 320px;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0;
  font-style: italic;
  font-size: 1.125rem;
  color: #000000;
}

footer {
  width: 100%;
  padding: 1.5rem 1rem 2rem;
  border-top: 2px solid var(--rule);
  font-family: "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #000000;
}

footer p {
  margin: 0.25rem 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
