:root {
  color: #24211d;
  background: #f4f0e8;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  padding: clamp(1.5rem, 5vw, 4rem);
  flex-direction: column;
}

main {
  width: min(100%, 900px);
  margin: auto 0;
  padding: 4rem 0;
}

.eyebrow {
  margin: 0 0 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
  white-space: nowrap;
}

.intro {
  max-width: 35rem;
  margin: 2rem 0;
  color: #635e55;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.product {
  color: inherit;
  font-size: 0.85rem;
  text-decoration-color: #bcb3a6;
  text-underline-offset: 0.3rem;
}

.product:hover {
  text-decoration-color: currentColor;
}

footer {
  display: flex;
  padding-top: 1.5rem;
  border-top: 1px solid #d7d0c4;
  color: #756f66;
  font-size: 0.75rem;
  justify-content: space-between;
  gap: 1rem;
}

footer p {
  margin: 0;
}

@media (max-width: 600px) {
  h1 {
    white-space: normal;
  }

  footer {
    flex-direction: column;
  }
}
