/* ── Midnight Muse collection page ── */

/* ── WHITE HEADER (inner pages only — before scroll) ── */
.inner-page .site-header:not(.is-scrolled) {
  color: #f5f2ed;
}

.inner-page .site-header:not(.is-scrolled) .brand-mark img {
  filter: brightness(0) invert(1);
}

.inner-page .site-header:not(.is-scrolled) .menu-toggle span {
  background: #f5f2ed;
}

.inner-page .site-header:not(.is-scrolled) .nav-dropdown__menu {
  color: var(--text-color);
}

/* ── HERO IMAGE ── */
.mm-hero {
  position: relative;
  min-height: 100svh;
  background: #0c0c0c;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.mm-hero__media {
  position: absolute;
  inset: 0;
}

.mm-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Deep dark gradient from bottom */
.mm-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.32) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.mm-hero__caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--side-padding) clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  color: #f5f2ed;
}

.mm-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.65;
}

.mm-eyebrow--light {
  color: #a8a09a;
  opacity: 1;
}

.mm-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.08;
}

/* ── INTRO ── */
.mm-intro {
  padding-bottom: 4.5rem;
}

.mm-intro .collection-intro__copy p + p {
  margin-top: 1.1rem;
}

/* ── BEHIND THE SCENES VIDEO SECTION ── */
.mm-video-section {
  background: #f2eeea;
  border-top: 1px solid rgba(23, 23, 23, 0.07);
  border-bottom: 1px solid rgba(23, 23, 23, 0.07);
}

.mm-video-section__inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.mm-video-section__copy {
  display: grid;
  gap: 0;
}

.mm-video-section__heading {
  margin: 0.5rem 0 1.5rem;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--text-color);
}

.mm-video-section__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--text-color);
  opacity: 0.72;
  max-width: 28rem;
}

.mm-video-section__player {
  position: relative;
  overflow: hidden;
  background: #0c0c0c;
  aspect-ratio: 9 / 16;
  max-height: 80vh;
}

.mm-video-section__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── EDITORIAL STRIP — images 5 & 6 ── */
.mm-editorial {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  min-height: min(92vh, 74rem);
  background: #f0ece5;
  overflow: hidden;
}

.mm-editorial__item {
  margin: 0;
  overflow: hidden;
}

.mm-editorial__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mm-editorial__item--left img  { object-position: center center; }
.mm-editorial__item--right img { object-position: center top; }

.mm-editorial__divider {
  background: rgba(23, 23, 23, 0.10);
  align-self: stretch;
}

/* ── PROCESS IMAGE ── */
.mm-process {
  background: #0c0c0c;
  overflow: hidden;
}

.mm-process__figure {
  margin: 0;
  max-height: 80vh;
  overflow: hidden;
}

.mm-process__figure img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ── GALLERY ROW 2 ── */
.mm-gallery-row2 {
  padding-top: 0;
}

.mm-gallery-row2 .collection-gallery {
  padding-top: 5.5rem;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .mm-video-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4.5rem 0;
  }

  .mm-video-section__player {
    max-height: 70vh;
  }

  .mm-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
    min-height: unset;
  }

  .mm-editorial__item img {
    aspect-ratio: 0.8;
    height: auto;
  }

  .mm-editorial__divider {
    height: 1px;
    background: rgba(23, 23, 23, 0.08);
  }
}

@media (max-width: 540px) {
  .mm-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .mm-editorial__item img {
    aspect-ratio: 0.75;
  }

  .mm-video-section__heading {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
  }
}
