:root {
  --background: #171715;
  --text: #f4efe7;
  --muted: #cfc7ba;
  --gold: #c6a33d;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: radial-gradient(circle at center, #242420 0%, var(--background) 70%);
  color: var(--text);
}

.page {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.card {
  width: min(760px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(520px, 90vw);
  height: auto;
  margin: 0 auto 32px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 0.04em;
}
