/* Collection — Lookbook Spread Layouts */

.collection-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--color-black);
}

.collection-hero__image {
  position: absolute;
  inset: 0;
}

.collection-hero__image img,
.collection-hero__image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    transparent 100%
  );
}

.collection-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 60ch;
}

.collection-hero__season {
  font-family: var(--font-secondary);
  font-size: var(--text-overline);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.collection-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  color: var(--color-paper);
  line-height: 0.9;
  margin-bottom: var(--space-md);
}

.collection-hero__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 50ch;
}

/* Lookbook body */
.lookbook {
  background: var(--color-paper);
  padding: var(--space-2xl) 0;
}

.lookbook__section {
  max-width: var(--wide-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  margin-bottom: var(--space-section);
}

/* Designer notes between images */
.lookbook__notes {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--space-2xl) var(--space-lg);
}

.lookbook__notes p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
}

.lookbook__notes p + p {
  margin-top: 1.5em;
}

/* Look number */
.look-number {
  font-family: var(--font-secondary);
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: var(--space-sm);
  display: block;
}

/* Spread layouts within lookbook */
.lookbook .spread {
  max-width: var(--wide-width);
  margin-inline: auto;
}

.lookbook .spread img,
.lookbook .spread .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Full-bleed image in lookbook */
.lookbook__full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: var(--space-section);
  margin-bottom: var(--space-section);
  height: 80vh;
  overflow: hidden;
}

.lookbook__full-bleed img,
.lookbook__full-bleed .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Credits at bottom */
.collection-credits {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--gray-200);
}

.collection-credits h3 {
  font-family: var(--font-secondary);
  font-size: var(--text-overline);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-md);
}

.collection-credits dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xs) var(--space-md);
}

.collection-credits dt {
  font-family: var(--font-secondary);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.collection-credits dd {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .collection-hero__content {
    padding: var(--space-xl) var(--space-md);
  }

  .collection-hero__title {
    font-size: var(--text-display-sm);
  }
}
