/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 5: VISUAL STORYTELLING — Shree Studio
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.storytelling-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.storytelling-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.storytelling-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.2);
}
.storytelling-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.8) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.9) 100%
    );
  z-index: 2;
}
.storytelling-container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.storytelling-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.storytelling-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.storytelling-headline em {
  font-style: italic;
  color: #c9a96e;
}
.storytelling-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.storytelling-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.storytelling-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.storytelling-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.storytelling-stat-number span {
  color: #e50914;
}
.storytelling-stat-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.storytelling-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: 100%;
  height: 480px;
}
.storytelling-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.storytelling-image:first-child {
  grid-row: 1/3;
}
.storytelling-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.storytelling-image:hover img {
  transform: scale(1.08);
}
.storytelling-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  transition: opacity 0.4s ease;
}
.storytelling-section [data-animate] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.storytelling-section [data-animate].is-visible {
  opacity: 1;
  transform: none !important;
}
.storytelling-section [data-animate="fade-right"] {
  transform: translateX(-50px);
}
.storytelling-section [data-animate="fade-left"] {
  transform: translateX(50px);
}
.storytelling-section [data-delay="200"] {
  transition-delay: 0.2s;
}
@media (max-width: 1024px) {
  .storytelling-section {
    padding: 60px 0;
  }
  .storytelling-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 30px;
    text-align: center;
  }

  .storytelling-visual {
    height: 380px;
  }
  .storytelling-stats-row {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .storytelling-visual {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }
  .storytelling-image:first-child {
    grid-row: auto;
  }
  .storytelling-stats-row {
    gap: 24px;
  }
  .storytelling-stat-number {
    font-size: 26px;
  }
}
