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

:root {
  --bg: #faf8f5;
  --text: #1a1916;
  --muted: #5c5852;
  --accent: #c45c3e;
  --accent-hover: #a84d33;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.content {
  margin-bottom: 4rem;
}

.brand {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.coming-soon {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

.coming-soon strong {
  color: var(--text);
  font-weight: 500;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(28, 27, 24, 0.08);
}

.footer a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--accent);
}
