:root {
  --bg: #fdfdfc;
  --fg: #141414;
  --muted: #6b6b6b;
  --rule: #e4e2de;
  --serif: "Iowan Old Style", "Palatino Linotype", "URW Palladio", Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --fg: #ededea;
    --muted: #9a9a95;
    --rule: #2a2a28;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 6rem) 1.5rem clamp(3rem, 10vw, 7rem);
}

.wordmark {
  margin-bottom: clamp(3rem, 12vw, 6rem);
  animation: fade-up 0.6s ease-out both;
}

.wordmark span {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.manifesto {
  animation: fade-up 0.8s ease-out 0.1s both;
}

.manifesto p {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.72;
  margin: 0 0 1.7em;
  color: var(--fg);
}

.manifesto .lede {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1.3em;
}

.manifesto p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: clamp(4rem, 12vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  animation: fade-up 0.8s ease-out 0.2s both;
}

.contact {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  transition: opacity 0.15s ease;
}

.contact:hover {
  opacity: 0.65;
}

.legal {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

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

@media (prefers-reduced-motion: reduce) {
  .wordmark, .manifesto, .site-footer {
    animation: none;
  }
}
