*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111;
  background: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 28rem;
}

.hero__creature {
  display: block;
  width: min(72vw, 16rem);
  height: auto;
}

.tagline {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  max-width: 22rem;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #444;
}

.tagline__cap {
  text-transform: none;
}

.footer {
  margin-top: auto;
  padding-top: clamp(3rem, 8vw, 5rem);
}

.footer__meta {
  margin: 0;
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #333;
}

@media (min-width: 768px) {
  .hero {
    max-width: 32rem;
  }

  .hero__creature {
    width: min(40vw, 18rem);
  }
}
