/* Lookbook — full-viewport horizontal filmstrip */

.lookbook-page #site {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lookbook-page nav {
  position: static;
  flex: none;
}

.lb-caption {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid #232323;
}

.lb-caption span {
  font-family: var(--fc);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #787878;
}

#strip {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: 3px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 36px 0;
}

#strip::-webkit-scrollbar {
  height: 1px;
  background: #131313;
}

#strip::-webkit-scrollbar-thumb {
  background: #4a4a4a;
}

.frame {
  flex: none;
  height: 100%;
  min-width: 190px;
  position: relative;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
}

.frame-inner {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.frame img,
.frame video {
  height: 100%;
  width: auto;
  display: block;
  filter: grayscale(100%) contrast(1.06);
  transition: filter 0.7s ease, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.frame-inner:hover img,
.frame-inner:hover video {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-size: 160px 160px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20width=%27200%27%20height=%27200%27%3E%3Cfilter%20id=%27g%27%3E%3CfeTurbulence%20type=%27fractalNoise%27%20baseFrequency=%270.78%27%20numOctaves=%274%27%20stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect%20width=%27200%27%20height=%27200%27%20filter=%27url(%23g)%27/%3E%3C/svg%3E");
}

.strip-end {
  flex: none;
  width: min(30vw, 400px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 0 48px 40px;
}

.lb-end-label {
  font-family: var(--fc);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #787878;
}

.lb-end-title {
  font-family: var(--fa);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
