:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f3ea;
  color: #211d19;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

main {
  width: min(100%, 42rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid #d8cfc1;
  border-radius: 1rem;
  background: #fffdf9;
  box-shadow: 0 1rem 3rem rgb(64 50 35 / 8%);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #62584e;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.05;
}

p:last-child {
  max-width: 55ch;
  margin: 1.25rem 0 0;
  color: #4d453e;
  font-size: 1rem;
  line-height: 1.65;
}

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