:root {
  color-scheme: light;
  --paper: #f3efe7;
  --paper-raised: #faf8f3;
  --ink: #20231f;
  --muted: #65695f;
  --line: rgba(32, 35, 31, 0.15);
  --accent: #496457;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(73, 100, 87, 0.09), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

main {
  width: min(100% - 2rem, 76rem);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(73, 100, 87, 0.11);
}

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

.eyebrow,
.coming-soon {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 48rem;
  margin: 1.25rem 0 1.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.lead {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.coming-soon {
  margin-top: 3.5rem;
}

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

@media (max-width: 40rem) {
  main {
    width: min(100% - 2.5rem, 76rem);
  }

  header,
  footer {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
  }

  .hero {
    padding: 5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
