:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18312b;
  background: #f6f8f4;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 16%, rgba(183, 211, 199, 0.42), transparent 29rem),
    radial-gradient(circle at 8% 90%, rgba(224, 215, 191, 0.38), transparent 25rem),
    #f6f8f4;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
}

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

.wordmark {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid #51766b;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero {
  display: grid;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  width: min(100%, 58rem);
}

h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7.25rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.tagline {
  margin: 1.75rem 0 0;
  color: #527269;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.03em;
}

.divider {
  width: 1px;
  height: 3rem;
  margin: 2.5rem auto;
  background: rgba(24, 49, 43, 0.3);
}

.status {
  max-width: 29rem;
  margin: 0 auto;
  color: #486059;
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}

.site-footer {
  color: #6b7c76;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

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

  .hero {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.98;
  }

  .site-footer p:first-child {
    display: none;
  }

  .site-footer {
    justify-content: flex-end;
  }
}
