:root {
  color-scheme: light;
  --paper: #f7f6f1;
  --ink: #414b40;
  --muted: #697062;
  --accent: #77664e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

body {
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(ellipse at 49% 30%, #eef0e675, transparent 46%),
    radial-gradient(ellipse at 73% 67%, #f1e8df38, transparent 37%),
    var(--paper);
}

.landing {
  width: min(100% - 40px, 720px);
  margin: auto;
  padding: 64px 0 72px;
  text-align: center;
  animation: arrive 1.1s ease-out both;
}

.ambient {
  display: block;
  width: clamp(200px, 26vw, 270px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px;
}

h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.tagline {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.035em;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin: 40px 0 0;
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.coming-soon::before,
.coming-soon::after {
  width: 27px;
  height: 1px;
  background: #c9c2b4;
  content: "";
}

.footer {
  padding: 0 24px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.footer p { margin: 0; }

.footer .copyright {
  margin-top: 6px;
  font-size: 0.625rem;
  letter-spacing: 0.035em;
}

.not-found { padding: 100px 0; }
.not-found h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }

.home-link {
  display: inline-block;
  margin-top: 28px;
  padding: 12px;
  color: var(--ink);
  font-size: 0.875rem;
  text-underline-offset: 5px;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

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

@media (max-width: 480px) {
  .landing { padding: 40px 0 56px; }
  .ambient { margin-bottom: 24px; }
  .tagline { font-size: 0.875rem; }
  .coming-soon { margin-top: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .landing { animation: none; }
}
