/* ================================================================
   LOOKBOOK — Pinned Horizontal Gallery
   Dynamic track width: auto-calculated from number of slides.
   ================================================================ */

.lookbook {
  position: relative;
  z-index: 1;
  background: var(--dark);
}
.lookbook__pin {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--dark);
}
.lookbook__header {
  position: absolute;
  top: 2.5rem;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.lookbook__counter {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.lookbook__counter-sep { margin: 0 0.3rem; opacity: 0.35; }

.lookbook__progress {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}
.lookbook__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.08s linear;
}

/* ── Track — width is set dynamically via JS (slides.length * 100vw) ── */
.lookbook__track {
  display: flex;
  /* No hardcoded width — GSAP calculates scrollWidth dynamically */
  height: 100%;
  background: var(--dark);
}

/* ── Individual Slide ── */
.lookbook__slide {
  flex: 0 0 100vw;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  background: var(--dark);
}
.lookbook__slide-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  background: var(--dark);
}
.lookbook__slide-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}
.lookbook__slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(3rem, 5vw, 6rem);
  background: var(--dark);
  position: relative;
}
.lookbook__slide-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.lookbook__slide-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 1.2rem;
}
.lookbook__slide-desc {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 380px;
}

/* ── Page Indicators / Dots ── */
.lookbook__pages {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.lookbook__page-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.lookbook__page-dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}
