:root {
  --bg: #FAF9F6;
  --ink: #1A2233;
  --accent: #9C7A3C;
  --muted: #5B6270;
}

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

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(26, 34, 51, 0.07) 1px, transparent 1.5px);
  background-size: 22px 22px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fade-in 1.1s ease-out;
}

.wordmark {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.accent {
  width: 64px;
  height: 2px;
  margin: 1.5rem auto;
  border: none;
  background: var(--accent);
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.mark {
  margin-bottom: 1.75rem;
}

.footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  padding: 1.5rem;
}

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

@media (max-width: 420px) {
  .tagline {
    max-width: 26ch;
  }
}
