* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #141516;
  color: #f7efdf;
}

main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: #f5b331;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  color: #c8bda9;
  font-size: 22px;
  line-height: 1.45;
}

.hero img {
  width: 240px;
  height: 240px;
  border-radius: 52px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 64px;
}

article {
  border: 1px solid #3b3428;
  border-radius: 8px;
  padding: 20px;
  background: #201e1a;
}

h2 {
  color: #f5b331;
  margin-top: 0;
}

article p {
  color: #c8bda9;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0 32px;
  }

  .hero img {
    width: 160px;
    height: 160px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
