main.container {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0 52px;
}

.eyebrow {
  display: inline-block;
  color: #e4a213;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: #e4a213;
}

.hero-content p {
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.primary-btn {
  background: #e4a213;
  border-color: #e4a213;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  text-decoration: none;
}

.primary-btn:hover {
  background: #c98e0f;
  border-color: #c98e0f;
  color: #ffffff;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
}

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

.intro-cards article,
.why-grid article {
  background: #ffffff;
  border: 1px solid #eee6d8;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
}

.intro-cards .icon {
  width: 58px;
  height: 58px;
  border: 1px solid #e4a213;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 48px 0 72px;
}

.story-image img,
.why-grid img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.story-content h2,
.why-section h2,
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.story-content p,
.why-section p,
.cta-section p,
.intro-cards p,
.why-grid p {
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.features div {
  border-top: 2px solid #e4a213;
  padding-top: 14px;
}

.features strong {
  display: block;
  margin-bottom: 6px;
}

.why-section {
  background: linear-gradient(180deg, #ffffff, #faf7f0);
  border: 1px solid #eee6d8;
  border-radius: 22px;
  padding: 42px;
  margin-bottom: 56px;
}

.why-section h2,
.section-subtitle {
  text-align: center;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 34px;
}

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

.why-grid article {
  padding: 22px;
}

.why-grid h3 {
  margin-top: 18px;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: #fff9ed;
  border: 1px solid #eee6d8;
  border-radius: 22px;
  padding: 38px;
  margin-bottom: 64px;
}

.cta-section p {
  max-width: 680px;
}

@media (max-width: 992px) {
  main.container {
    width: min(100%, calc(100% - 40px));
  }

  .hero-section,
  .story-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-section {
    padding-top: 42px;
  }

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

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  main.container {
    width: min(100%, calc(100% - 32px));
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-section {
    text-align: center;
    padding: 34px 0 28px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-cards,
  .why-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .story-section {
    margin: 32px 0 48px;
  }

  .why-section {
    padding: 26px 18px;
  }

  .cta-section {
    padding: 28px 20px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  main.container {
    width: min(100%, calc(100% - 24px));
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .story-content h2,
  .why-section h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .intro-cards article,
  .why-grid article {
    padding: 22px;
  }
}