@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg: #faf9f6;
  --ink: #1c1c1a;
  --muted: #6b6b64;
  --rule: #dedad2;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 12vh 1.5rem 6vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  margin-bottom: 4rem;
}

.wordmark {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}

.tagline {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.statement {
  margin-bottom: 6rem;
  max-width: 46ch;
}

.statement p {
  font-size: 1.08rem;
  margin: 0;
}

.contact {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.contact-email {
  font-size: 1.05rem;
  margin: 0;
}

.footer {
  margin-top: 3rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 480px) {
  .page {
    padding: 8vh 1.25rem 5vh;
  }

  .header {
    margin-bottom: 3rem;
  }

  .statement {
    margin-bottom: 4rem;
  }

  .wordmark {
    font-size: 1.6rem;
  }
}
