:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #0c0c0d;
  color: #f4f0e8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 10%, rgb(124 87 53 / 24%), transparent 42%),
    #0c0c0d;
}

main {
  width: min(46rem, calc(100% - 3rem));
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: #cfaa7c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 6.75rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

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