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

html {
  font-size: 16px;
}

body {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  color: #1d1a15;
  background: #f6f4ef;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #ddd8cb;
}

.logo {
  display: block;
}

.site-name {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero p {
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a4539;
}

.hero p:first-child {
  color: #1d1a15;
}

@media (min-width: 640px) {
  .hero p {
    font-size: 1.1rem;
    max-width: 40ch;
  }
}
