:root {
  --background: #CB333B;
  --text: #000000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100vh;
  padding: 36px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  justify-content: center;
}

.logo {
  width: min(220px, 58vw);
  height: auto;
  display: block;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 13vw, 156px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 520px;
  margin: 34px auto 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-footer {
  display: flex;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.site-footer a:hover {
  border-bottom-color: transparent;
}

@media (max-width: 640px) {
  .page {
    padding: 28px 22px;
  }

  .logo {
    width: min(190px, 64vw);
  }

  .hero {
    padding: 64px 0;
  }

  .eyebrow {
    margin-bottom: 24px;
  }

  .intro {
    margin-top: 28px;
  }

  .site-footer {
    font-size: 11px;
    letter-spacing: 0.13em;
  }
}