:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1e2524;
  background: #f8f5ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.panel {
  width: min(100%, 680px);
  border: 1px solid #d8c8ac;
  border-radius: 8px;
  background: #fffdf8;
  padding: clamp(28px, 6vw, 56px);
  box-shadow: 0 18px 55px rgb(62 50 27 / 12%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #8a6f2a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 0.96;
}

p {
  max-width: 48rem;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}
