:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17332d;
  background: #f4f0e6;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgb(249 190 92 / 32%), transparent 24rem),
    linear-gradient(145deg, #f8f3e9, #dfe9db);
}

.shell {
  width: min(42rem, calc(100% - 3rem));
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgb(23 51 45 / 14%);
  border-radius: 2rem;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 1.5rem 5rem rgb(23 51 45 / 12%);
  backdrop-filter: blur(1rem);
}

.eyebrow,
.status {
  width: fit-content;
  margin: 0;
  color: #8b4c16;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0.45rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 12vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.intro {
  max-width: 30rem;
  margin: 0 0 2rem;
  color: #405b54;
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
}

.status {
  padding: 0.7rem 1rem;
  border: 1px solid rgb(139 76 22 / 25%);
  border-radius: 999px;
  background: #fff7e8;
}

.home-link {
  color: #17332d;
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.home-link:focus-visible {
  outline: 0.2rem solid #c86f22;
  outline-offset: 0.35rem;
  border-radius: 0.15rem;
}

@media (max-width: 40rem) {
  .shell {
    width: min(100% - 1.5rem, 42rem);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
  }
}

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