.about {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  min-height: 100dvh;
  background: var(--bg);
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 100dvh;
  padding: clamp(5.5rem, 9vw, 7rem) clamp(1.25rem, 2.4vw, 2.5rem)
    clamp(7rem, 12vw, 8.5rem);
}

.about__title {
  font-size: clamp(1.45rem, 1.7vw, 1.7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
}

.about__lead {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.about__text p {
  font-size: clamp(0.88rem, 0.95vw, 0.95rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.about__media {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  background: var(--surface);
}

.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about__media {
    position: relative;
    order: -1;
    height: 100dvh;
  }

  .about__copy {
    min-height: auto;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 1.25rem 8rem;
  }

  .about__text {
    margin-top: 0;
  }

  .about__title {
    font-size: clamp(1.4rem, 5.5vw, 1.65rem);
  }

  .about__lead {
    font-size: 0.98rem;
  }

  .about__text p {
    font-size: 0.92rem;
  }
}
