/* ── Crimson Bloom collection page ── */

/* ── WHITE HEADER (shared inner-page behaviour) ── */
.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 ── */
.cb-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1a0608;
  display: flex;
  align-items: flex-end;
}

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

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

/* Subtle deep-red gradient rising from the bottom */
.cb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(22, 4, 6, 0.78) 0%,
    rgba(22, 4, 6, 0.32) 55%,
    transparent 100%
  );
  pointer-events: none;
}

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

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

.cb-eyebrow--dark {
  color: #8b2020;
  opacity: 1;
}

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

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

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

/* Thin crimson rule above the intro heading — subtle red accent */
.cb-intro .collection-intro__copy::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: #9b2020;
  margin: 0 auto 2rem;
  opacity: 0.55;
}

/* ── BEHIND THE SCENES VIDEO SECTION ── */
.cb-video-section {
  background: #faf6f6;
  border-top: 1px solid rgba(155, 32, 32, 0.10);
  border-bottom: 1px solid rgba(155, 32, 32, 0.10);
}

.cb-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;
}

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

.cb-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);
}

.cb-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;
}

.cb-video-section__player {
  position: relative;
  overflow: hidden;
  background: #1a0608;
  /* Portrait aspect ratio */
  aspect-ratio: 9 / 16;
  max-height: 80vh;
}

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

/* ── EXTRA GALLERY — 3-column grid ── */
.cb-extra {
  padding-top: 0;
}

.cb-extra__grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
  padding: 5.5rem 0;
}

.cb-extra__item {
  margin: 0;
  overflow: hidden;
  background: #ede8e8;
}

.cb-extra__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 0.75;
}

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

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

  .cb-extra__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
    padding: 4rem 0;
  }
}

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

  .cb-extra__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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