/* ============================================================
   Paparazzi — Movies landing  (/movies/)
   Bespoke cinematic hero + Our Creations grid.
   Brand: deep black #030303 · red #d81f2a / #e85560 ·
   display serif Cormorant Garamond. Built on the site's shell
   (vendor/webflow.css + paparazzi-navbar.css + star-field).
   Motion: one ambient poster-wall drift + gentle reveals.
   transform/opacity/filter only. reduced-motion safe.
   ============================================================ */

:root {
  --mv-red: #d81f2a;
  --mv-red-2: #e85560;
  --mv-ink: #030303;
  --mv-ivory: #f4f1e9;
  --mv-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --mv-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mv-shell: clamp(1.25rem, 5vw, 5.5rem);
}

.mv {
  position: relative;
  color: var(--mv-ivory);
  font-family: var(--mv-sans);
  overflow: clip;
}

.mv-shell {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--mv-shell);
}

/* ============================================================
   HERO
   ============================================================ */
.mv-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  /* extra bottom padding reserves clearance for the floating bottom nav
     and lifts the centred content clear of it on short viewports */
  padding: clamp(4.5rem, 9vh, 7rem) var(--mv-shell) clamp(10.5rem, 22vh, 13rem);
  text-align: center;
}

/* --- the editorial poster wall --- */
.mv-wall {
  position: absolute;
  inset: -8% -4%;
  z-index: -3;
  display: flex;
  gap: clamp(0.5rem, 1vw, 1rem);
  justify-content: center;
  transform: scale(1.04);
  pointer-events: none;
  /* graceful pre-JS / no-JS backdrop so the hero never looks empty */
  background:
    radial-gradient(120% 80% at 50% 8%, #191013 0%, #0a0708 46%, var(--mv-ink) 100%);
}

.mv-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
  /* each column is its own composited layer that only ever translates —
     no shadows/filters/blends inside, so the GPU just slides a bitmap */
  will-change: auto;
}

.mv-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #100b0d;
}
.mv-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- scrims that turn the wall into atmosphere, not content --- */
.mv-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  /* pure opaque gradients — no backdrop-filter, so nothing re-rasterizes
     as the wall drifts. Darkened a touch more to keep the headline crisp. */
  background:
    radial-gradient(80% 64% at 50% 46%, rgba(3, 3, 3, 0.42) 0%, rgba(3, 3, 3, 0.78) 56%, rgba(3, 3, 3, 0.96) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.5) 26%, rgba(3, 3, 3, 0.58) 62%, var(--mv-ink) 100%);
}
/* --- hero content --- */
.mv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 62rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mv-crest {
  height: clamp(2.6rem, 5vw, 3.6rem);
  width: auto;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  opacity: 0;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.6));
  animation: mvRise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}
.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(0.66rem, 1.1vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mv-red-2);
  margin-bottom: clamp(1.1rem, 2.4vw, 1.7rem);
  opacity: 0;
  animation: mvRise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.mv-eyebrow::before,
.mv-eyebrow::after {
  content: "";
  width: clamp(1.5rem, 4vw, 2.6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 85, 96, 0.7));
}
.mv-eyebrow::after { background: linear-gradient(90deg, rgba(232, 85, 96, 0.7), transparent); }

.mv-title {
  font-family: var(--mv-serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 8.4vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.mv-title .l1 {
  display: block;
  color: rgba(244, 241, 233, 0.94);
  font-style: italic;
  font-weight: 300;
  opacity: 0;
  animation: mvRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}
.mv-title .l2 {
  display: block;
  color: var(--mv-ivory);
  opacity: 0;
  animation: mvRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}
.mv-title .l2 em {
  font-style: normal;
  color: var(--mv-red);
}

.mv-sub {
  max-width: 40rem;
  margin: clamp(1.5rem, 3vw, 2.1rem) auto 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: rgba(244, 241, 233, 0.66);
  opacity: 0;
  animation: mvRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.56s forwards;
}

.mv-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 2.8rem);
  opacity: 0;
  animation: mvRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}
/* Simple, clean buttons — flat fills, no heavy glow (which read as laggy).
   Only background/border transition; no transform jump. */
.mv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(244, 241, 233, 0.26);
  box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.mv-btn svg { width: 0.9rem; height: 0.9rem; flex: 0 0 auto; }
.mv-btn--primary {
  background: var(--mv-ivory);
  border-color: var(--mv-ivory);
  color: #151313;
}
.mv-btn--primary:hover {
  background: #fff;
  border-color: #fff;
}
.mv-btn--ghost {
  background: rgba(3, 3, 3, 0.28);
  color: var(--mv-ivory);
}
.mv-btn--ghost:hover {
  border-color: rgba(244, 241, 233, 0.62);
  background: rgba(3, 3, 3, 0.55);
}
.mv-btn:focus-visible {
  outline: 2px solid var(--mv-ivory);
  outline-offset: 3px;
}

/* scroll cue */
.mv-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(4.5rem, 9vh, 6rem);
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, 0.5);
  text-decoration: none;
  opacity: 0;
  animation: mvRise 1s ease 1.1s forwards;
}
.mv-cue-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(232, 85, 96, 0.9), transparent);
  transform-origin: top;
  animation: mvCue 2.2s ease-in-out infinite;
}
@keyframes mvCue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

@keyframes mvRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   OUR CREATIONS — the grid
   ============================================================ */
.mv-works {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, var(--mv-ink) 0%, #060506 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 60rem;
}
.mv-works-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.mv-works-head h2 {
  font-family: var(--mv-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.mv-works-head h2 em { font-style: italic; color: var(--mv-red-2); }
.mv-works-note {
  color: rgba(244, 241, 233, 0.5);
  font-size: 0.95rem;
  max-width: 30ch;
}

.mv-cat-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: clamp(2.5rem, 5vw, 3.4rem) 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, 0.72);
}
.mv-cat-label:first-of-type { margin-top: 0; }
.mv-cat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mv-red); flex: 0 0 auto;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.mv-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-card.is-in { opacity: 1; transform: none; }

.mv-card-media {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #0d0a0b;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.mv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: saturate(0.94);
}
.mv-card:hover .mv-card-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.mv-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 3, 3, 0.5) 78%, rgba(3, 3, 3, 0.9) 100%);
  transition: opacity 0.4s ease;
  opacity: 0.9;
}
.mv-chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 8, 9, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.mv-play {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(216, 31, 42, 0.94);
  box-shadow: 0 8px 26px rgba(216, 31, 42, 0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mv-play svg { width: 22px; height: 22px; margin-left: 2px; }
.mv-card:hover .mv-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.mv-card-body {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.05rem 1.1rem;
}
.mv-card-title {
  font-family: var(--mv-serif);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}
.mv-card:hover .mv-card-title { color: var(--mv-red-2); }
.mv-card-meta {
  margin-top: 0.3rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(244, 241, 233, 0.6);
}

/* ============================================================
   Imported home modules — Films & Series · Music · Dark Stories
   (reuse the house markup + webflow.css / paparazzi-navbar.css
   styling; add only what the movies page needs on top)
   ============================================================ */

/* Films & Series: reveal each card's details on hover.
   The home page animates these via Webflow's JS engine, which this
   page intentionally doesn't load — so we drive it with pure CSS. */
.mv .movie-details {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transform: translateY(6px);
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease, transform 0.45s ease, margin-top 0.45s ease;
}
.mv .movie-wrapper:hover .movie-details,
.mv .movie-wrapper:focus-visible .movie-details {
  max-height: 9rem;
  opacity: 1;
  margin-top: 0.4rem;
  transform: none;
}
/* poster gently pushes in on hover — intentful, not jumpy */
.mv .movie-poster-image {
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mv .movie-wrapper:hover .movie-poster-image { transform: scale(1.04); }

/* Compact filmography catalogue. Five 2:3 cards keep the archive editorial
   instead of turning it into a tall wall of posters. */
.mv .mv-catalogue-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(244, 241, 233, 0.14);
}
.mv .mv-catalogue > .movies-category > .movies-category-label { display: none; }
.mv .mv-catalogue-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem;
  border: 1px solid rgba(244, 241, 233, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}
.mv .mv-catalogue-tab {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.44rem 0.82rem;
  color: rgba(244, 241, 233, 0.64);
  background: transparent;
  font: 600 0.66rem/1 var(--mv-sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mv .mv-catalogue-tab:hover,
.mv .mv-catalogue-tab:focus-visible { color: var(--mv-ivory); outline: none; }
.mv .mv-catalogue-tab:focus-visible { box-shadow: 0 0 0 2px rgba(232, 85, 96, 0.7); }
.mv .mv-catalogue-tab.is-active { color: #fff; background: var(--mv-red); }
.mv .movies---home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
}
.mv .portfolio-collection-item.released-item {
  aspect-ratio: 2 / 3;
  min-width: 0;
  border: 1px solid rgba(244, 241, 233, 0.13);
  border-radius: 14px;
  background: #0b090a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.mv .portfolio-collection-item.released-item:hover {
  border-color: rgba(232, 85, 96, 0.68);
  transform: translateY(-3px);
}
.mv .movie-wrapper,
.mv .card-image { border-radius: inherit; }
.mv .movie-wrapper { overflow: hidden; }
.mv .movie-poster-image { filter: saturate(0.92) contrast(1.02); }
.mv .poster-content {
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  width: auto;
  padding: 0.65rem 0.7rem;
  border-radius: 9px;
  background: rgba(11, 10, 10, 0.82);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.mv .movie-name { font-size: clamp(1rem, 1.15vw, 1.28rem); }
.mv .releasing-soon-w { border-radius: 0 0 8px 0; }

@media screen and (max-width: 1120px) {
  .mv .movies---home { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media screen and (max-width: 760px) {
  .mv .mv-catalogue-bar { align-items: flex-start; flex-direction: column; }
  .mv .movies---home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media screen and (max-width: 520px) {
  .mv .movies---home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
  .mv .mv-catalogue-tab { padding-inline: 0.68rem; }
  .mv .poster-content { left: 0.4rem; right: 0.4rem; bottom: 0.4rem; padding: 0.55rem; }
  .mv .movie-name { font-size: 0.95rem; }
}

/* Final archive treatment: one compact poster rail and Music-style text tabs. */
.mv .mv-catalogue-bar {
  align-items: flex-end;
  gap: 1rem 2rem;
  margin-bottom: 1.7rem;
  padding-bottom: 0;
  border-bottom: 0;
}
.mv .mv-catalogue-tabs {
  gap: clamp(1.35rem, 2.4vw, 2.3rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.mv .mv-catalogue-tab {
  position: relative;
  border-radius: 0;
  padding: 0 0 0.72rem;
  color: rgba(244, 241, 233, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  transition: color 0.25s ease;
}
.mv .mv-catalogue-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--mv-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.mv .mv-catalogue-tab:focus-visible { box-shadow: 0 2px 0 var(--mv-red); }
.mv .mv-catalogue-tab.is-active { color: #fff; background: transparent; }
.mv .mv-catalogue-tab.is-active::after { transform: scaleX(1); }
.mv .mv-archive-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(155px, 13vw, 185px);
  grid-template-columns: none;
  gap: 1.45rem;
  justify-content: start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 0 0.75rem;
  cursor: grab;
}
.mv .mv-archive-rail::-webkit-scrollbar { display: none; }
.mv .mv-archive-rail.dragging { cursor: grabbing; }
.mv .mv-archive-card { min-width: 0; scroll-snap-align: start; }
.mv .mv-archive-link { display: block; color: inherit; text-decoration: none; }
.mv .mv-archive-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 233, 0.13);
  border-radius: 13px;
  background: #0c0b0c;
}
.mv .mv-archive-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}
.mv .mv-archive-link:hover .mv-archive-media img { transform: scale(1.035); filter: saturate(1.03); }
.mv .mv-archive-kind {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.26rem 0.43rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(5, 5, 5, 0.68);
  font: 600 0.56rem/1 var(--mv-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mv .mv-archive-copy { padding: 0.7rem 0.08rem 0; }
.mv .mv-archive-title {
  color: var(--mv-ivory);
  font-family: var(--mv-serif);
  font-size: 1.24rem;
  line-height: 1.04;
  transition: color 0.2s ease;
}
.mv .mv-archive-link:hover .mv-archive-title { color: var(--mv-red-2); }
.mv .mv-archive-meta {
  margin-top: 0.32rem;
  color: rgba(244, 241, 233, 0.5);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 760px) {
  .mv .mv-catalogue-bar { align-items: flex-start; flex-direction: column; }
  .mv .mv-catalogue-tabs { gap: 1.5rem; }
  .mv .mv-archive-rail { grid-auto-columns: minmax(155px, 42vw); gap: 1rem; }
}
@media screen and (max-width: 520px) {
  .mv .mv-catalogue-tab { padding-inline: 0; font-size: 0.68rem; }
  .mv .mv-archive-rail { grid-auto-columns: minmax(152px, 62vw); }
}

/* Section flow: keep the three modules on one continuous dark canvas */
.mv-music-sec {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: #060506;
  content-visibility: auto;
  contain-intrinsic-size: auto 52rem;
}
.mv .dark-stories-section {
  background: #060506;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  content-visibility: auto;
  contain-intrinsic-size: auto 48rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media screen and (max-width: 900px) {
  .mv-wall .mv-col:nth-child(n + 4) { display: none; }
}
@media screen and (max-width: 680px) {
  .mv-wall { inset: -6% -10%; }
  .mv-wall .mv-col:nth-child(n + 3) { display: none; }
  .mv-title .l1 { font-style: italic; }
  .mv-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .mv-card-title { font-size: 1.15rem; }
  .mv-cue { display: none; }
}

/* ============================================================
   Reduced motion — freeze the wall, keep everything legible
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .mv-cue-line { animation: none; }
  .mv-crest, .mv-eyebrow, .mv-title .l1, .mv-title .l2,
  .mv-sub, .mv-cta, .mv-cue { animation: none; opacity: 1; transform: none; }
  .mv-card { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   MOVIES SECTION BACKGROUND SYSTEM

   The movie page keeps its cinematic poster-wall hero, then shifts
   through three restrained studio environments. The treatment uses
   material contrast without decorative lettering or overlay bands.
   ============================================================ */

:root {
  --mv-paper: #efe8dc;
  --mv-paper-2: #e7decf;
  --mv-paper-ink: #18130f;
  --mv-paper-soft: #6d6258;
  --mv-soundstage: #100b0d;
  --mv-soundstage-2: #170d11;
}

/* Give the end of the poster wall a denser cinema-black landing so the
   first ivory cut reads cleanly at every hero height. */
.mv-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(5rem, 12vw, 10rem);
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #030303 78%);
}

/* Keep each background and its content in a self-contained layer. */
.mv-works,
.mv-music-sec,
.mv .dark-stories-section {
  isolation: isolate;
}

.mv-works > .padding-global,
.mv-music-sec > .padding-global,
.mv .dark-stories-section > .padding-global,
.mv .dark-stories-section > .ds-rail-wrap {
  position: relative;
  z-index: 2;
}

/* FILMS AND SERIES ------------------------------------------------- */
.mv-works {
  padding: clamp(2.5rem, 3.5vw, 3.25rem) 0 clamp(2.75rem, 4vw, 3.5rem);
  color: var(--mv-paper-ink);
  background-color: var(--mv-paper);
  background-image:
    radial-gradient(circle at 16% 14%, rgba(216, 31, 42, 0.075), transparent 24rem),
    linear-gradient(90deg, rgba(24, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(24, 19, 15, 0.032) 1px, transparent 1px),
    linear-gradient(135deg, var(--mv-paper) 0%, #f5f0e7 48%, var(--mv-paper-2) 100%);
  background-size: auto, clamp(5rem, 9vw, 9rem) 100%, 100% 5.5rem, auto;
}

.mv-works-head h2 {
  color: var(--mv-paper-ink);
  font-size: clamp(2.75rem, 5.5vw, 4.8rem);
  letter-spacing: -0.035em;
}

.mv-works-head h2 em {
  color: var(--mv-red);
}

.mv-works-note {
  color: var(--mv-paper-soft);
}

.mv-works .movies-category-label {
  color: rgba(24, 19, 15, 0.72);
}

.mv-works .mv-catalogue-bar {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(24, 19, 15, 0.18);
}

.mv-works .mv-catalogue-tab {
  color: rgba(24, 19, 15, 0.46);
}

.mv-works .mv-catalogue-tab:hover,
.mv-works .mv-catalogue-tab:focus-visible,
.mv-works .mv-catalogue-tab.is-active {
  color: var(--mv-paper-ink);
}

/* These labels sit on the ivory catalogue surface, outside the dark poster. */
.mv-works .mv-archive-title {
  color: var(--mv-paper-ink);
}

.mv-works .mv-archive-meta {
  color: var(--mv-paper-soft);
}

.mv-works .portfolio-collection-item.released-item {
  border-color: rgba(24, 19, 15, 0.2);
  border-radius: 5px;
  background: #100d0c;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6),
    0 18px 28px -18px rgba(39, 28, 20, 0.55),
    0 34px 64px -38px rgba(39, 28, 20, 0.45);
}

.mv-works .portfolio-collection-item.released-item:hover {
  border-color: var(--mv-red);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 34px -18px rgba(39, 28, 20, 0.6),
    0 0 0 1px rgba(216, 31, 42, 0.12);
}

.mv-works .poster-content {
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(10, 9, 8, 0.94), rgba(24, 18, 17, 0.9));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

/* PAPARAZZI MUSIC -------------------------------------------------- */
.mv-music-sec {
  padding: clamp(3rem, 4vw, 3.75rem) 0 clamp(2.25rem, 3vw, 2.75rem);
  color: var(--mv-ivory);
  background-color: var(--mv-soundstage);
  background-image: linear-gradient(135deg, #151012 0%, var(--mv-soundstage) 58%, #080708 100%);
}

.mv-music-sec .music-hitz {
  padding-block: 0;
}

.mv-music-sec .music-hitz .movies-category-label {
  color: rgba(244, 241, 233, 0.78);
}

.mv-music-sec .music-tab {
  color: rgba(244, 241, 233, 0.45);
}

.mv-music-sec .music-tab:hover,
.mv-music-sec .music-tab.is-active {
  color: var(--mv-ivory);
}

.mv-music-sec .music-search {
  border: 1px solid rgba(244, 241, 233, 0.14);
  background: rgba(250, 247, 241, 0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 50px -28px rgba(0, 0, 0, 0.9);
}

.mv-music-sec .music-search-play {
  background: var(--mv-red);
}

.mv-music-sec .music-search-play:hover {
  background: var(--mv-red-2);
}

.mv-music-sec .music-thumb {
  border-radius: 5px;
  border: 1px solid rgba(244, 241, 233, 0.16);
  box-shadow: 0 24px 46px -24px rgba(0, 0, 0, 0.9);
}

.mv-music-sec .music-title {
  color: var(--mv-ivory);
  font-family: var(--mv-serif);
  font-size: 1.28rem;
  font-weight: 500;
}

.mv-music-sec .music-genre {
  color: rgba(232, 85, 96, 0.9);
}

/* DARK STORIES ----------------------------------------------------- */
.mv .dark-stories-section {
  position: relative;
  padding-top: clamp(2.25rem, 3.5vw, 3.25rem);
  padding-bottom: clamp(4.5rem, 7vw, 6rem);
  color: var(--mv-paper-ink);
  border-bottom: 2px solid var(--mv-red);
  background-color: #e8e0d3;
  background-image:
    linear-gradient(90deg, rgba(24, 19, 15, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(24, 19, 15, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 16%, rgba(216, 31, 42, 0.07), transparent 23rem),
    linear-gradient(145deg, #f2ece2, #e5dccd 72%, #ded3c1);
  background-size: 5.5rem 100%, 100% 5.5rem, auto, auto;
}

.mv .dark-stories-section .accent-heading {
  color: var(--mv-paper-ink);
  font-family: var(--mv-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.mv .dark-stories-section .accent-heading::after {
  content: ".";
  color: var(--mv-red);
}

.mv .dark-stories-section .ds-tab {
  color: rgba(24, 19, 15, 0.46);
}

.mv .dark-stories-section .ds-tab:hover,
.mv .dark-stories-section .ds-tab.is-active {
  color: var(--mv-paper-ink);
}

.mv .dark-stories-section .ds-card {
  color: var(--mv-paper-ink);
}

.mv .dark-stories-section .ds-thumb {
  border-radius: 5px;
  border: 1px solid rgba(24, 19, 15, 0.22);
  background: #17120f;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.68),
    0 24px 38px -24px rgba(48, 35, 25, 0.62);
}

.mv .dark-stories-section .ds-thumb::after {
  border-color: rgba(24, 19, 15, 0.18);
}

.mv .dark-stories-section .ds-title {
  color: var(--mv-paper-ink);
  font-family: var(--mv-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.mv .dark-stories-section .ds-sub {
  color: var(--mv-paper-soft);
}

.mv .dark-stories-section .ds-arrow {
  color: var(--mv-paper-ink);
  border-color: rgba(24, 19, 15, 0.3);
}

.mv .dark-stories-section .ds-arrow:hover {
  color: var(--mv-red);
  border-color: var(--mv-red);
}

.mv .dark-stories-section .ds-viewall {
  color: rgba(24, 19, 15, 0.76);
}

.mv .dark-stories-section .ds-viewall:hover {
  color: var(--mv-red);
}

/* Keep the horizontal catalogues touch-scrollable on small screens. */
@media screen and (max-width: 767px) {
  .mv-works {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mv-music-sec {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .mv .dark-stories-section {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .mv-works .mv-catalogue-bar {
    padding-bottom: 1rem;
  }

  .mv-music-sec .music-title {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv .portfolio-collection-item.released-item,
  .mv .movie-poster-image,
  .mv .music-thumb img,
  .mv .ds-thumb img {
    transition: none;
  }

  .mv .portfolio-collection-item.released-item:hover {
    transform: none;
  }
}
