:root {
  --paper: #eee9df;
  --ink: #18211d;
  --muted: #667068;
  --line: rgba(24, 33, 29, 0.22);
  --accent: #9b4b2d;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 33, 29, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 10rem;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100%, 96rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem 3rem 2.25rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.masthead,
.footer,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masthead {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.24em;
  line-height: 1;
}

.wordmark-symbol {
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
}

.status,
.eyebrow,
.footer {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status {
  color: var(--accent);
}

.hero {
  align-self: center;
  padding: 7rem 0;
}

.eyebrow {
  margin-bottom: 2.4rem;
  color: var(--muted);
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 10vw, 9.25rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.introduction {
  max-width: 37rem;
  margin: 3.5rem 0 0 clamp(0rem, 23vw, 22rem);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.footer {
  gap: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer > p,
.footer-meta p {
  margin: 0;
}

.footer-meta {
  gap: 2rem;
  color: var(--muted);
}

.footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}

@media (max-width: 700px) {
  .page {
    padding: 1.5rem;
  }

  .hero {
    padding: 5rem 0;
  }

  h1 {
    font-size: clamp(3.75rem, 20vw, 6rem);
  }

  .introduction {
    margin-left: 0;
  }

  .footer {
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-end;
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .wordmark,
  .status,
  .eyebrow,
  h1,
  .introduction,
  .footer {
    animation: reveal 700ms both;
  }

  .status,
  .eyebrow {
    animation-delay: 80ms;
  }

  h1 {
    animation-delay: 140ms;
  }

  .introduction {
    animation-delay: 220ms;
  }

  .footer {
    animation-delay: 300ms;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
