/* Our Story Section */
.story {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.story-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.story-text {
  width: 40%;
}

.section-title {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  font-family: var(--font-display);
}

.story-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 400px;
}

.story-image-wrap {
  width: 55%;
}

.story-img-real {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
    gap: 40px;
  }
  .story-text, .story-image-wrap {
    width: 100%;
  }
  .story-img-real {
    border-radius: 20px;
  }
}
