/* ============================================================
   STUDIO Butter — Studio Page Styles
   ============================================================ */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -2;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* Slight scale for parallax potential */
}

.page-hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.9));
  z-index: -1;
}

.page-hero__title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.page-hero__subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Studio Concept */
.studio-concept {
  padding: var(--section-padding) 0;
  text-align: center;
}

.studio-concept__copy {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.studio-concept__text {
  max-width: 600px;
  margin: 0 auto;
  color: #a0a0a0;
}

/* Studio Gallery (Grid of images) */
.studio-gallery {
  padding-bottom: var(--section-padding);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .studio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.studio-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.studio-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.studio-grid__item:hover img {
  transform: scale(1.05);
}
