.home-about {
  padding-top: 0;
}

.home-about__card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(var(--color-accent-rgb), 0.2), transparent 28%),
    radial-gradient(circle at 10% 10%, rgba(var(--color-accent-rgb), 0.14), transparent 30%),
    linear-gradient(135deg, #16130f 0%, #292118 100%);
  box-shadow: 0 26px 56px rgba(55, 43, 29, 0.14);
  color: var(--color-white);
}

.home-about__card::before {
  content: "ABOUT";
  position: absolute;
  top: 50%;
  right: clamp(24px, 7vw, 90px);
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-en);
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 1;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-about__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 780px;
  min-height: 430px;
  padding: clamp(36px, 6vw, 72px);
}

.home-about__eyebrow {
  margin: 0 0 14px;
  color: #d5ac60;
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.home-about__body h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.55;
}

.home-about__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.home-about__name span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.home-about__lead {
  max-width: 39rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 2;
}

.home-about__button {
  min-width: 190px;
  margin-top: 30px;
}

@media (max-width: 760px) {
  .home-about__card::before {
    content: none;
  }
}

@media (max-width: 480px) {
  .home-about__card {
    border-radius: 22px;
  }

  .home-about__body {
    padding: 32px 22px 36px;
  }

  .home-about__button {
    width: 100%;
  }
}
