:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer,
.hero {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
}

.site-header,
.site-footer {
  padding-block: 1.5rem;
}

.brand {
  color: inherit;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.hero {
  align-self: center;
  padding-block: 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #555;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
}

.hero > p:last-child {
  max-width: 38rem;
  margin-top: 1.5rem;
  color: #555;
  font-size: 1.125rem;
  line-height: 1.6;
}

.site-footer {
  color: #666;
  font-size: 0.875rem;
}

.site-footer p {
  margin: 0;
}
