:root {
  --black: #030303;
  --charcoal: #101010;
  --charcoal-soft: #171513;
  --gold: #b99a55;
  --gold-muted: #7d693e;
  --ember: #9f3d2c;
  --wine: #32131a;
  --teal: #2f6d68;
  --blue: #1f3354;
  --white: #f7f3e9;
  --muted: #b8b0a2;
  --line: rgba(185, 154, 85, 0.28);
  --glass: rgba(8, 8, 8, 0.64);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 65% 8%, rgba(185, 154, 85, 0.18), transparent 26rem),
    radial-gradient(circle at 16% 25%, rgba(159, 61, 44, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 58%, rgba(47, 109, 104, 0.16), transparent 25rem),
    radial-gradient(circle at 20% 38%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #030303 0%, #0b0a08 44%, #030303 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
  z-index: 2;
}

.ambient-lines {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.ambient-lines span {
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 85, 0.62), transparent);
  transform-origin: center;
  animation: driftLine 18s linear infinite;
}

.ambient-lines span:nth-child(1) {
  top: 19%;
  left: -15%;
  transform: rotate(-14deg);
}

.ambient-lines span:nth-child(2) {
  top: 42%;
  right: -12%;
  animation-duration: 24s;
  transform: rotate(22deg);
}

.ambient-lines span:nth-child(3) {
  bottom: 21%;
  left: 18%;
  width: 28vw;
  animation-duration: 20s;
  transform: rotate(9deg);
}

.ambient-lines span:nth-child(4) {
  top: 72%;
  right: 10%;
  width: 18vw;
  animation-duration: 28s;
  transform: rotate(-31deg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 64px);
  transition: background 500ms ease, border-color 500ms ease, padding 500ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(3, 3, 3, 0.74);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(247, 243, 233, 0.92);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(247, 243, 233, 0.74);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 300ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 243, 233, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 300ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(96px, 14vw, 170px) clamp(20px, 4vw, 72px);
  isolation: isolate;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 5;
  width: min(1180px, 100%);
}

.narrow {
  width: min(880px, 100%);
  margin-inline: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero-title,
.section-title {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3.8rem, 7.6vw, 7.8rem);
  letter-spacing: 0;
}

.section-title {
  font-size: clamp(3rem, 8vw, 8.4rem);
  letter-spacing: 0;
}

.hero {
  padding-top: 140px;
}

.hero::after,
.impact::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 70%, rgba(159, 61, 44, 0.18), transparent 26rem),
    radial-gradient(ellipse at 82% 28%, rgba(47, 109, 104, 0.16), transparent 28rem),
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.74) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.92;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -8% -6% -4% 28%;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.38) 38%, rgba(3, 3, 3, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.78) 0%, rgba(3, 3, 3, 0.06) 34%, rgba(3, 3, 3, 0.9) 100%),
    url("assets/hero-maa-jaye-men.jpg");
  background-position: center;
  background-size: cover;
  filter: brightness(1.14) saturate(0.9) contrast(1.08);
  opacity: 0.66;
  mix-blend-mode: screen;
  -webkit-mask-image:
    radial-gradient(ellipse at 55% 48%, #000 0%, rgba(0, 0, 0, 0.86) 36%, rgba(0, 0, 0, 0.34) 62%, transparent 82%),
    linear-gradient(90deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  mask-image:
    radial-gradient(ellipse at 55% 48%, #000 0%, rgba(0, 0, 0, 0.86) 36%, rgba(0, 0, 0, 0.34) 62%, transparent 82%),
    linear-gradient(90deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  pointer-events: none;
}

.hero-still,
.blurred-still {
  position: absolute;
  background-position: center;
  background-size: cover;
  filter: contrast(1.08) saturate(0.84);
}

.still-one {
  inset: 15% auto auto 3%;
  width: min(520px, 45vw);
  aspect-ratio: 16 / 10;
  background-image: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.72)), url("assets/wide-cinema-placeholder.svg");
  opacity: 0.42;
  transform: rotate(-5deg);
}

.still-two {
  right: 2%;
  bottom: 11%;
  width: min(460px, 38vw);
  aspect-ratio: 4 / 5;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.74)), url("assets/still-voices-inside.svg");
  opacity: 0.34;
  transform: rotate(7deg);
}

.still-three {
  inset: 4% 18% auto auto;
  width: min(720px, 58vw);
  aspect-ratio: 16 / 9;
  background-image:
    linear-gradient(110deg, rgba(3, 3, 3, 0.88), rgba(50, 19, 26, 0.24), rgba(3, 3, 3, 0.84)),
    url("assets/still-maa-jaye.svg");
  opacity: 0.22;
  transform: rotate(-2deg);
  filter: blur(1px) saturate(0.92);
}

.light-leak {
  position: absolute;
  inset: -20% 38% 0 -20%;
  background: conic-gradient(from 0.12turn, transparent, rgba(185, 154, 85, 0.26), transparent 26%, transparent);
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: lightSweep 13s ease-in-out infinite alternate;
}

.smoke {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 30% 45%, rgba(255, 255, 255, 0.075), transparent 28%),
    radial-gradient(ellipse at 70% 62%, rgba(185, 154, 85, 0.08), transparent 30%),
    radial-gradient(ellipse at 58% 24%, rgba(31, 51, 84, 0.22), transparent 34%),
    radial-gradient(ellipse at 18% 74%, rgba(159, 61, 44, 0.14), transparent 32%);
  filter: blur(28px);
  opacity: 0.65;
  animation: smokeDrift 18s ease-in-out infinite alternate;
}

.hero-inner {
  max-width: 1120px;
  margin-top: 2vh;
}

.hero-copy {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(247, 243, 233, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.58;
}

.hero-copy p {
  margin: 0 0 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.imdb-action-row {
  gap: 12px;
}

.imdb-rating-badge {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.5);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.48);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  transition: transform 300ms ease, border-color 300ms ease;
}

.imdb-rating-badge:hover,
.imdb-rating-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 197, 24, 0.9);
}

.imdb-logo-mark {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 13px;
  background: #f5c518;
  color: #070707;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.imdb-score {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 0 13px;
  color: var(--white);
}

.imdb-score strong {
  font-size: 1.1rem;
  line-height: 1;
}

.imdb-score em {
  color: rgba(247, 243, 233, 0.62);
  font-size: 0.78rem;
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(247, 243, 233, 0.16);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--white);
  color: #080806;
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(185, 154, 85, 0.72);
}

.floating-frame {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(185, 154, 85, 0.34);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 0 40px rgba(185, 154, 85, 0.05);
  pointer-events: none;
}

.frame-a {
  width: 220px;
  height: 132px;
  top: 27%;
  right: 11%;
  transform: rotate(8deg);
}

.frame-b {
  width: 150px;
  height: 210px;
  bottom: 19%;
  left: 8%;
  transform: rotate(-9deg);
}

.film-ribbon {
  position: absolute;
  width: 720px;
  height: 78px;
  opacity: 0.24;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 15px, transparent 15px 32px) 0 0 / 100% 13px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 15px, transparent 15px 32px) 0 100% / 100% 13px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  filter: blur(0.2px);
  animation: ribbonFloat 18s linear infinite;
  z-index: 2;
}

.hero-ribbon {
  right: -160px;
  top: 18%;
  transform: rotate(-18deg);
}

.philosophy {
  background:
    radial-gradient(circle at 8% 30%, rgba(47, 109, 104, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 70%, rgba(159, 61, 44, 0.11), transparent 28rem),
    linear-gradient(180deg, rgba(13, 12, 11, 0.94), #050505);
}

.philosophy .narrow {
  width: min(980px, 100%);
  margin-inline: 0 auto;
}

.philosophy-still {
  inset: 10% -8% auto auto;
  width: min(620px, 56vw);
  aspect-ratio: 16 / 11;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42)), url("assets/wide-cinema-placeholder.svg");
  opacity: 0.22;
  filter: blur(5px) grayscale(1);
}

.thread-line {
  position: absolute;
  inset: 18% 0 auto 0;
  width: 100%;
  height: 360px;
  opacity: 0.72;
  z-index: 1;
}

.thread-line path {
  fill: none;
  stroke: rgba(185, 154, 85, 0.54);
  stroke-width: 1.2;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 12px rgba(185, 154, 85, 0.34));
}

.thread-line.is-visible path {
  animation: drawThread 2.6s var(--ease) forwards;
}

.line-story {
  margin-top: 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.28;
  color: rgba(247, 243, 233, 0.92);
}

.line-story p {
  margin: 0 0 18px;
}

.movies {
  background:
    radial-gradient(circle at 15% 22%, rgba(159, 61, 44, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 62%, rgba(47, 109, 104, 0.18), transparent 30rem),
    linear-gradient(180deg, #050505, #11100e 46%, #050505);
}

.released-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  margin-top: 54px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(185, 154, 85, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(159, 61, 44, 0.14), rgba(47, 109, 104, 0.08) 42%, rgba(185, 154, 85, 0.1)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.released-poster {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 4 / 5;
}

.released-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.68) 100%),
    radial-gradient(circle at 68% 22%, rgba(185, 154, 85, 0.24), transparent 18rem);
}

.released-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-label {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.released-copy h3,
.actor-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

.released-copy h3 {
  font-size: clamp(3.8rem, 8vw, 8rem);
}

.feature-lede {
  max-width: 680px;
  margin: 20px 0 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  line-height: 1.22;
}

.released-copy > p:not(.feature-label):not(.feature-lede) {
  max-width: 680px;
  color: rgba(247, 243, 233, 0.76);
  font-size: 1.05rem;
  line-height: 1.72;
}

.film-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.film-facts span {
  padding: 10px 12px;
  border: 1px solid rgba(247, 243, 233, 0.14);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.32);
  color: rgba(247, 243, 233, 0.82);
  font-size: 0.78rem;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: 54px;
  perspective: 1200px;
}

.movie-card {
  position: relative;
  min-height: clamp(460px, 58vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #080808;
  transform-style: preserve-3d;
  transition: transform 500ms var(--ease), border-color 500ms ease, box-shadow 500ms ease;
}

.movie-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 52% 34%, transparent, rgba(0, 0, 0, 0.5));
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) saturate(0.78);
  transform: scale(1.04);
  transition: transform 1200ms var(--ease), filter 700ms ease;
}

.movie-card:hover,
.movie-card:focus-within {
  border-color: rgba(185, 154, 85, 0.48);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.movie-card:hover img,
.movie-card:focus-within img {
  transform: scale(1.12);
  filter: grayscale(0) contrast(1.08) saturate(0.9);
}

.movie-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 30px;
  transform: translateZ(44px);
}

.movie-content p {
  margin: 0 0 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
}

.movie-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
}

.movie-content h4 {
  margin: 16px 0 0;
  color: rgba(247, 243, 233, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.movie-content span {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(247, 243, 233, 0.74);
  line-height: 1.62;
  opacity: 0;
  transition: max-height 600ms var(--ease), opacity 500ms ease, margin 500ms ease;
}

.movie-card:hover .movie-content span,
.movie-card:focus-within .movie-content span {
  max-height: 180px;
  margin-top: 14px;
  opacity: 1;
}

.movie-card-released {
  border-color: rgba(185, 154, 85, 0.34);
}

.floating-fragments i {
  position: absolute;
  border: 1px solid rgba(185, 154, 85, 0.24);
  width: 76px;
  height: 46px;
  opacity: 0.7;
  animation: fragmentDrift 11s ease-in-out infinite alternate;
}

.floating-fragments i:nth-child(1) {
  top: 20%;
  left: 5%;
}

.floating-fragments i:nth-child(2) {
  right: 7%;
  top: 28%;
  animation-duration: 15s;
}

.floating-fragments i:nth-child(3) {
  left: 14%;
  bottom: 17%;
  animation-duration: 17s;
}

.floating-fragments i:nth-child(4) {
  right: 16%;
  bottom: 12%;
  animation-duration: 13s;
}

.impact {
  text-align: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(247, 243, 233, 0.12), transparent 34rem),
    linear-gradient(180deg, #050505, #0b0907 52%, #050505);
}

.actors {
  background:
    radial-gradient(circle at 18% 26%, rgba(47, 109, 104, 0.18), transparent 26rem),
    radial-gradient(circle at 76% 58%, rgba(159, 61, 44, 0.15), transparent 28rem),
    linear-gradient(180deg, #050505, #0f0d0d 52%, #050505);
}

.actors-intro {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(247, 243, 233, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.72;
}

.actor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  margin-top: 46px;
}

.actor-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 10%, rgba(185, 154, 85, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(47, 109, 104, 0.15), rgba(8, 8, 8, 0.76) 46%, rgba(159, 61, 44, 0.12));
}

.actor-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 58%;
  background: radial-gradient(ellipse, rgba(185, 154, 85, 0.2), transparent 60%);
  pointer-events: none;
}

.actor-photo,
.actor-monogram {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 54px;
  border: 1px solid rgba(247, 243, 233, 0.18);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.34);
}

.actor-photo {
  width: 132px;
  height: 164px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.actor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.actor-monogram {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.actor-card p {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
}

.actor-card h3 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.actor-card span {
  display: block;
  margin-top: 18px;
  color: rgba(247, 243, 233, 0.72);
  line-height: 1.66;
}

.actor-card-muted {
  background:
    radial-gradient(circle at 70% 20%, rgba(31, 51, 84, 0.2), transparent 14rem),
    rgba(255, 255, 255, 0.03);
}

.impact-inner {
  width: min(980px, 100%);
}

.impact .section-title {
  margin-inline: auto;
}

.impact-copy {
  max-width: 720px;
  margin: 44px auto 0;
  color: rgba(247, 243, 233, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 3.1rem);
  line-height: 1.25;
}

.impact-copy p {
  margin: 0 0 16px;
}

.impact-copy strong {
  display: block;
  margin-top: 42px;
  color: var(--white);
  font-weight: 500;
}

.impact-ribbon {
  left: 50%;
  top: 48%;
  width: min(1050px, 110vw);
  transform: translate(-50%, -50%) rotate(7deg);
  opacity: 0.17;
}

.founder {
  background:
    radial-gradient(circle at 12% 24%, rgba(47, 109, 104, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 72%, rgba(185, 154, 85, 0.13), transparent 24rem),
    linear-gradient(180deg, #050505, #11100e);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(185, 154, 85, 0.22);
  background: #090909;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.02) saturate(0.76);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
}

.portrait-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(247, 243, 233, 0.2);
  z-index: 2;
}

.founder-copy h3 {
  margin: 24px 0 30px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  font-weight: 600;
}

.founder-copy p {
  max-width: 700px;
  color: rgba(247, 243, 233, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.86;
}

.founder-copy blockquote {
  margin: 44px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(185, 154, 85, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1.14;
}

.founder-copy blockquote span {
  display: block;
}

.medical-lines {
  position: absolute;
  inset: 15% auto auto 0;
  width: 52vw;
  height: 52vw;
  max-width: 700px;
  max-height: 700px;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 49%, rgba(185, 154, 85, 0.7) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(247, 243, 233, 0.45) 50%, transparent 51%);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle, #000 0 45%, transparent 72%);
}

.final-cta {
  min-height: 92vh;
  text-align: center;
  background:
    radial-gradient(circle at 48% 48%, rgba(159, 61, 44, 0.13), transparent 28rem),
    radial-gradient(circle at 62% 38%, rgba(47, 109, 104, 0.14), transparent 26rem),
    #030303;
}

.closing-glow {
  position: absolute;
  inset: 20% 25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 154, 85, 0.2), transparent 68%);
  filter: blur(26px);
  animation: pulseGlow 7s ease-in-out infinite alternate;
}

.final-inner {
  width: min(920px, 100%);
}

.final-logo {
  width: clamp(110px, 14vw, 190px);
  margin: 0 auto 34px;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.12));
}

.final-inner .section-title {
  margin-inline: auto;
  font-size: clamp(3rem, 8vw, 7.8rem);
}

.final-inner p {
  margin: 26px 0 0;
  color: rgba(247, 243, 233, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}

.final-brand {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.final-inner .button {
  margin-top: 38px;
}

.reveal,
.line-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.line-reveal {
  transform: translateY(24px);
}

.reveal.is-visible,
.line-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftLine {
  0% {
    opacity: 0;
    translate: -12vw 0;
  }
  22%,
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    translate: 24vw 0;
  }
}

@keyframes lightSweep {
  from {
    transform: translateX(-4%) rotate(-8deg);
  }
  to {
    transform: translateX(11%) rotate(8deg);
  }
}

@keyframes smokeDrift {
  from {
    transform: translate3d(-2%, 1%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, -2%, 0) scale(1.08);
  }
}

@keyframes ribbonFloat {
  from {
    background-position: 0 0, 0 100%, 0 0;
  }
  to {
    background-position: 260px 0, -260px 100%, 0 0;
  }
}

@keyframes drawThread {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fragmentDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }
  to {
    transform: translate3d(26px, -34px, 0) rotate(11deg);
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.54;
    transform: scale(0.95);
  }
  to {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .movie-grid,
  .founder-layout,
  .released-feature,
  .actor-grid {
    grid-template-columns: 1fr;
  }

  .movie-card {
    min-height: 560px;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 520px;
  }

  .released-poster {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 22;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 26px;
    background: rgba(3, 3, 3, 0.93);
    backdrop-filter: blur(18px);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-panel {
    min-height: auto;
    padding: 104px 18px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 120px;
  }

  .hero-title {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .section-title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .imdb-action-row {
    align-items: stretch;
  }

  .imdb-rating-badge {
    width: 100%;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .still-one {
    width: 72vw;
    left: -18%;
    top: 20%;
  }

  .hero-media::before {
    inset: 2% -42% 8% 12%;
    opacity: 0.44;
    background-position: 58% center;
  }

  .still-two {
    width: 70vw;
    right: -28%;
    bottom: 14%;
  }

  .still-three {
    width: 92vw;
    right: -34%;
    top: 10%;
  }

  .frame-a,
  .frame-b,
  .ambient-lines span:nth-child(3),
  .ambient-lines span:nth-child(4) {
    display: none;
  }

  .line-story {
    font-size: clamp(1.35rem, 7vw, 2.4rem);
  }

  .movie-grid {
    gap: 20px;
  }

  .released-feature {
    margin-top: 34px;
    padding: 18px;
  }

  .released-copy h3 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .feature-lede {
    font-size: clamp(1.25rem, 7vw, 2rem);
  }

  .film-facts span {
    width: 100%;
  }

  .movie-card {
    min-height: 500px;
  }

  .movie-content {
    padding: 24px;
  }

  .movie-content span {
    max-height: none;
    margin-top: 12px;
    opacity: 1;
  }

  .actor-grid {
    gap: 18px;
  }

  .actor-card {
    min-height: 290px;
  }

  .actor-photo,
  .actor-monogram {
    margin-bottom: 42px;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 430px;
  }

  .medical-lines {
    width: 90vw;
    height: 90vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
