.about-page {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 52%, #fff 100%);
}

.about-hero {
  overflow: hidden;
  background: linear-gradient(105deg, #fff 0%, #fff7f4 58%, #f3e3dc 100%);
  border-bottom: 1px solid #eadcd5;
}

.about-hero-grid {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
  padding: 54px 0;
}

.about-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f5dad7;
  color: #bb6764;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.about-hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
  color: #302b28;
}

.about-hero p {
  max-width: 640px;
  margin: 0 0 28px;
  color: #403833;
  font-size: 19px;
}

.about-hero-card {
  border-radius: 18px;
  overflow: hidden;
  background: #f4e7dd;
  box-shadow: 0 24px 60px rgba(79,48,35,.12);
}

.about-hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-content {
  padding: 46px 0 68px;
}

.about-text-card,
.about-final {
  border: 1px solid #eadcd5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(79,48,35,.07);
}

.intro-card {
  padding: 28px;
  margin-bottom: 42px;
}

.intro-card p {
  margin: 0;
  color: #403833;
  font-size: 18px;
  line-height: 1.65;
}

.intro-card p + p {
  margin-top: 16px;
}

.about-section {
  margin-bottom: 46px;
}

.section-label {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: #302b28;
}

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

.benefit-cards article,
.products-list div {
  border: 1px solid #eadcd5;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(79,48,35,.055);
}

.benefit-cards b,
.products-list b {
  display: block;
  margin-bottom: 8px;
  color: #282320;
  font-size: 17px;
}

.benefit-cards span,
.products-list span {
  color: #6f625d;
  line-height: 1.55;
}

.products-list {
  display: grid;
  gap: 12px;
}

.products-list div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: start;
}

.about-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  background: linear-gradient(105deg, #fff, #fff7f4 60%, #f4dfdc);
}

.about-final h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 500;
  color: #302b28;
}

.about-final p {
  max-width: 820px;
  margin: 0;
  color: #403833;
  line-height: 1.65;
}

.about-final p + p {
  margin-top: 12px;
}

.about-final .button {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-card {
    max-width: 460px;
  }

  .benefit-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-final {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .about-hero-grid {
    padding: 34px 0;
  }

  .about-hero p,
  .intro-card p {
    font-size: 16px;
  }

  .intro-card,
  .about-final {
    padding: 20px;
  }

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