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

:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --accent: #c8a96e;
  --text: #f0ede8;
  --muted: #888;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, sans-serif;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  letter-spacing: 0.05em;
}
