:root {
  --bg: #fdfaf3;
  --fg: #2a2620;
  --muted: #6b6353;
  --accent: #c8971f;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1b1915;
    --fg: #f2ede2;
    --muted: #a49b88;
    --accent: #e0b445;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.hero {
  max-width: 34rem;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--accent);
}

.tagline {
  margin: 0.75rem 0 0;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

.subline {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}
