.about-story {
  background: #0b0f14;
  position: relative;
  overflow: clip;
}

.about-story__inner {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  margin: 0 auto;
}

.about-story__media-col {
  width: 42%;
  position: relative;
  background: #030a07;
}

.about-story__figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.about-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-story__content-col {
  width: 58%;
  padding: 8rem clamp(3rem, 6vw, 6rem) 8rem clamp(1rem, 7.65vw, 8.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story__content-inner {
  max-width: 680px;
}

.about-story__title {
  margin: 0 0 2rem;
  color: #fff;
  font-family: "Lora", serif;
  font-size: clamp(2.5rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .about-story__title {
    font-size: 40px;
    line-height: 1.1;
  }
}

.about-story__title span {
  color: #3fc1d9;
  font-style: italic;
  font-weight: 500;
}

.about-story__copy {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.84;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.about-story__copy p {
  margin: 0;
}

.about-story__stats {
  display: flex;
  gap: clamp(3rem, 6vw, 8rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
}

.about-story__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-story__stat-number {
  color: #3fc1d9;
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

.about-story__stat-label {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .about-story__inner {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .about-story__media-col {
    width: 100%;
    height: 60vh;
    min-height: 480px;
  }

  .about-story__content-col {
    width: 100%;
    padding: 5rem 1.5rem 4rem;
  }

  .about-story__content-inner {
    max-width: none;
  }

  .about-story__stats {
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .about-story__stats {
    flex-direction: column;
    gap: 2rem;
  }

  .about-story__title {
    font-size: 32px;
  }
}
