:root {
  color-scheme: light;
  --ink: #1d1a18;
  --muted: #6b625b;
  --paper: #f8f5f0;
  --accent: #8d3f37;
  --line: rgba(29, 26, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(141, 63, 55, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(58, 94, 105, 0.12), transparent 42%),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

.coming-soon {
  width: min(100%, 680px);
  padding: clamp(32px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 34rem;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}
