.about {
  position: relative;
  padding-block: clamp(96px, 14vw, 180px);
  background: linear-gradient(135deg, #ffffff 0%, #f7f5f1 48%, #ffffff 100%);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -18%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(191, 168, 116, 0.16),
    transparent 68%
  );
  pointer-events: none;
}

.about-container {
  width: min(calc(100% - 48px), var(--container-width));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.about-kicker span {
  width: 72px;
  height: 1px;
  background-color: rgba(31, 31, 31, 0.32);
}

.about-kicker p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.58);
}

.about-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 104px);
  align-items: start;
}

.about-heading {
  max-width: 620px;
}

.about-number {
  margin: 0 0 22px;
  font-size: clamp(4.2rem, 11vw, 8.5rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.09em;
  color: rgba(31, 31, 31, 0.11);
}

.about h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.65rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--color-text);
}

.about-text {
  max-width: 540px;
  padding-top: clamp(8px, 2vw, 28px);
  border-top: 1px solid rgba(31, 31, 31, 0.16);
}

.about-text p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.015em;
  color: rgba(31, 31, 31, 0.72);
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-text {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .about {
    padding-block: 86px;
  }

  .about-container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .about-kicker {
    margin-bottom: 42px;
  }

  .about-kicker span {
    width: 48px;
  }

  .about h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .about-text p {
    line-height: 1.75;
  }
}
