:root {
  --bg: #0a0a0a;
  --fg: #f0e8d8;
  --muted: rgba(240, 232, 216, 0.55);
  font-family: 'Times New Roman', Georgia, serif;
  background: var(--bg);
  color: var(--fg);
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

h1 {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.sub {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}
