:root {
  --bg: #f4efe6;
  --ink: #2a221c;
  --muted: #7a6b5e;
  --line: #d8cfc3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { min-height: 100%; }

body {
  font-family: "Georgia", "Times New Roman", serif;
  background:
    radial-gradient(900px 500px at 80% 0%, #fff8ee 0%, transparent 60%),
    var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  padding: 32px;
}

main {
  text-align: center;
  max-width: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 24px;
}

.mark {
  font-family: "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.soon {
  margin-top: 36px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
