:root {
  --cream: #F4ECDC;
  --cream-deep: #EFE5D2;
  --warm-text: #3A2A1A;
  --warm-secondary: #6B5A47;
  --accent: #8E7AB5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--warm-text);
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

main {
  max-width: 560px;
  text-align: center;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.tagline {
  font-size: 22px;
  color: var(--warm-text);
  margin: 0 0 16px;
}

.body {
  color: var(--warm-secondary);
  margin: 0 0 32px;
}

.soon {
  display: inline-block;
  padding: 8px 16px;
  background: var(--cream-deep);
  border-radius: 12px;
  font-size: 15px;
  color: var(--warm-secondary);
  margin: 0;
}

footer {
  margin-top: 64px;
  font-size: 14px;
  color: var(--warm-secondary);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
