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

:root {
  --bg: #f5f4f0;
  --fg: #1a1a18;
  --mid: #6b6b62;
  --rule: #d0cfc8;
  --accent: #2a2a26;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Georgia', serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.card {
  max-width: 740px;
  width: 100%;
}

h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: normal;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2.5rem;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3a34;
}

footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rule);
}
