:root {
  --bg: #fafaf8;
  --text: #1c1c1a;
  --muted: #767671;
  --accent: #b08968;
}

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

html, body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  padding: 2rem;
}

.wrap {
  max-width: 36rem;
  text-align: center;
  animation: fade-in 0.8s ease-out;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.divider {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin: 2.5rem auto;
}

.footer {
  font-size: 0.8rem;
  color: var(--muted);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
