:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --line: #777777;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(100%, 50rem);
  padding: 3rem;
}

h1 {
  margin: 0;
  font-family: "Saira", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead,
.note {
  max-width: 44rem;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.55;
}

.lead {
  margin: 1.5rem 0 0;
}

.contact {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.status {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.note {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.contact-title {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact p {
  margin: 1rem 0 0;
  max-width: 44rem;
  line-height: 1.6;
}

.contact a {
  color: inherit;
  text-underline-offset: 0.16em;
}

.status .note + .note {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .page {
    padding: 1rem;
  }

  .hero {
    padding: 1.5rem;
  }
}
