* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #faf7f2;
}

.hero {
  min-height: 72vh;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(237, 214, 188, 0.9), transparent 38%),
    linear-gradient(135deg, #fffaf3 0%, #e9f0ec 100%);
}

nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-link {
  color: #1f2933;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-content {
  max-width: 820px;
  margin: 120px auto 0;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #6b705c;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin: 18px 0;
}

.subtitle {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4b5563;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #1f2933;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

main {
  max-width: 1120px;
  margin: -60px auto 80px;
  padding: 0 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

article {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(31, 41, 51, 0.08);
}

article h2 {
  margin-top: 0;
}

article p {
  line-height: 1.6;
  color: #4b5563;
}

footer {
  text-align: center;
  padding: 32px;
  color: #6b7280;
}

@media (max-width: 760px) {
  .hero-content {
    margin-top: 80px;
  }

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

  main {
    margin-top: -30px;
  }
}
