/* Notille site — minimal, on-brand styling.
   Tokens from docs/DESIGN.en.md §2: cream #FBF5EC (light) / espresso #241D18 (dark),
   warm near-black text #33291F / cream text #F3E9DD, coral #E8765A. */

:root {
  --bg: #FBF5EC;
  --text: #33291F;
  --muted: #7A6A5B;
  --brand: #E8765A;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #241D18;
    --text: #F3E9DD;
    --muted: #B6A797;
    --brand: #EE8468;
  }
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  /* Fraunces-ish: a warm serif if available, then graceful system serif fallback. */
  font-family: "Fraunces", Georgia, "Times New Roman", Cambria, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  text-align: center;
}

.logo {
  width: min(40vw, 200px);
  height: auto;
  border-radius: 28%; /* soften the logo's square cream plate */
}

.tagline {
  margin: 0;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 500;
  color: var(--text);
}

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

.store-link {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--brand);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.notfound-code {
  margin: 0;
  font-size: clamp(2rem, 10vw, 3.5rem);
  font-weight: 600;
  color: var(--brand);
}
