.about-content {
  display: flex;
}

.photo-section {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
  border: 0;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.photo-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(110%) brightness(85%);
  transition: all 0.8s ease;
  border-radius: 12px;
}

.photo-section:hover img {
  filter: grayscale(0%) contrast(100%) brightness(100%);
  transform: scale(1.02);
}

.content-section {
  flex: 1.2;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.meta-title {
  color: #7A1F3D;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.meta-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #7A1F3D;
  box-shadow: 0 0 8px #7A1F3D;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 1.5rem;
  color: #5E503F;
  font-weight: 500;
  margin-bottom: 40px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
  }
  .photo-section {
    position: relative;
    height: 50vh;
    width: 100vw;
  }
  .photo-section::after {
    background: linear-gradient(to bottom, transparent 40%, rgb(11, 15, 25) 95%);
  }
  .content-section {
    width: 100vw;
    padding: 40px 24px;
  }
  h1 {
    font-size: 2.8rem;
  }
}