body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f3ee;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.section-space {
  padding: 112px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn--primary {
  background: #fff;
  color: #111;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--dark {
  background: #1f1f1f;
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading__kicker {
  margin: 0 0 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7a746c;
}

.section-heading__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
}

.section-heading__text {
  font-size: 18px;
  line-height: 1.72;
  color: #4e4a45;
}

@media (max-width: 640px) {
  .container {
    width: min(1240px, calc(100% - 32px));
  }

  .section-space {
    padding: 78px 0;
  }
}