:root {
  --ink: #14211d;
  --muted: #68716d;
  --paper: #f5f2ea;
  --line: rgba(20, 33, 29, 0.16);
  --accent: #ad3f1f;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header,
main,
footer {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

header,
footer {
  min-height: 5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 12ch;
  margin: 0 0 1.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.intro,
.status {
  margin: 0;
  color: var(--muted);
}

.intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.status {
  margin-top: 0.7rem;
  font-size: 0.78rem;
}

footer {
  min-height: 4.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 0;
  font-size: 0.72rem;
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
}
