:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #66615b;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
}

.site-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px;
  text-align: center;
}

.logo {
  width: clamp(88px, 18vw, 148px);
  height: auto;
  display: block;
}

p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.5;
}

.tagline {
  color: var(--ink);
}

.contact {
  max-width: 560px;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

footer {
  padding: 0 24px 28px;
  text-align: center;
}

footer p {
  max-width: none;
  font-size: 0.82rem;
}

.site-shell.is-ready {
  animation: settle 420ms ease-out both;
}

@keyframes settle {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
