.about .yay-fixed {
  transition: none !important;
}

.about {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  min-height: 80vh;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fdf6ee;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 1200px;
  margin: 0 auto;
}

.about__media {
  position: relative;
}

.about__photo {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto;
  transform: translate(clamp(1.5rem, 3.3vw, 2.55rem), clamp(-1.1rem, -1.9vw, -1.75rem));
}

.about__content {
  position: relative;
  padding: 1rem 0;
  transform: translateY(clamp(-2.55rem, -4.8vw, -3.85rem));
}

.about__heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 400;
  line-height: 1.28;
  word-spacing: 0.08em;
  color: #2c2c2c;
  margin-bottom: 1rem;
  max-width: 520px;
}

.about__divider {
  display: block;
  width: 48px;
  height: 2px;
  background-color: #c4a574;
  margin-bottom: 1.5rem;
}

.about__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
  color: #3d4947;
  margin-bottom: 1rem;
  max-width: 580px;
}

.about__text:last-of-type {
  margin-bottom: 1.75rem;
}

.about__link {
  font-family: "Elms Sans", sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a9d8f;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about__link:hover,
.about__link:focus-visible {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about__photo {
    max-width: 100%;
    transform: translate(clamp(1.2rem, 2.8vw, 2rem), clamp(-0.85rem, -1.5vw, -1.35rem));
  }

  .about__heading,
  .about__text {
    max-width: 100%;
  }

  .about__content {
    transform: none;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 2.5rem 1.25rem;
  }

}
