/* Riktava coming-soon page. System fonts on purpose: no third-party font
   request, so no visitor address leaves for another company's server. */
:root {
  --ground: #f7f4ef;
  --ink: #2b2623;
  --muted: #6b625c;
  --accent: #a14a55;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #1c1a19;
    --ink: #f2ede7;
    --muted: #b3aaa2;
    --accent: #d9868f;
  }
}

* { box-sizing: border-box; }

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

body {
  background: var(--ground);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

main { max-width: 34rem; }

.wordmark {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.descriptor {
  color: var(--muted);
  font-size: 1.125rem;
  margin: 0.25rem 0 2.5rem;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.contact { color: var(--muted); margin: 0; }

a { color: var(--accent); text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
