:root {
  color: #171717;
  background: #f8f7f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

main,
footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

a {
  color: inherit;
}

.wordmark {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.nav-link {
  color: #555;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-link:hover,
.product-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  max-width: 820px;
  padding: clamp(96px, 16vw, 178px) 0 clamp(104px, 18vw, 200px);
}

.eyebrow,
.product-label {
  color: #676767;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin-bottom: 30px;
}

.lede {
  color: #555;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 600px;
}

.button {
  background: #171717;
  border-radius: 999px;
  color: white;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 650;
  margin-top: 20px;
  padding: 14px 20px;
  text-decoration: none;
}

.button:hover {
  background: #353535;
}

.products {
  border-top: 1px solid #d8d6d1;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: 34px 0 112px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.product-card {
  background: #e9e6df;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 42px);
}

.product-label {
  color: #75716a;
  margin-bottom: 72px;
}

h3 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.product-card p:not(.product-label) {
  color: #4e4c47;
  line-height: 1.55;
  max-width: 480px;
}

.product-card a {
  display: inline-block;
  font-weight: 650;
  margin-top: 14px;
  text-decoration: none;
}

footer {
  border-top: 1px solid #d8d6d1;
  color: #676767;
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  padding: 24px 0 34px;
}

@media (max-width: 640px) {
  main,
  footer {
    width: min(100% - 36px, 1120px);
  }

  .products {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  footer {
    gap: 12px;
  }
}
