:root {
  --ink: #171414;
  --ink-soft: #5f5954;
  --paper: #f3efe7;
  --paper-bright: #fffdf7;
  --cream: #e9dec9;
  --red: #d94932;
  --red-dark: #a92d20;
  --gold: #e7aa43;
  --night: #100e0e;
  --night-soft: #201b19;
  --line: rgba(23, 20, 20, 0.16);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 30px 80px rgba(32, 23, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 20, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 20, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: 4px 4px, 4px 4px, auto;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
}

button,
textarea,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.ambient {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-one {
  top: 40px;
  right: 0;
  background: var(--red);
}

.ambient-two {
  top: 700px;
  left: 0;
  background: var(--gold);
}

.site-header {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
  place-items: center;
}

.brand-mark svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 80px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  gap: 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-small {
  min-height: 39px;
  padding: 0 18px;
  font-size: 12px;
}

.button-ghost {
  border: 1px solid var(--ink);
  background: transparent;
}

.button-ghost:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(217, 73, 50, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 15px 34px rgba(217, 73, 50, 0.32);
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 70px 0 90px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 25px 0;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  gap: 9px;
  align-items: center;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 73, 50, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 em,
.closing h2 em {
  color: var(--red);
  font-weight: 400;
}

.hero-description {
  max-width: 500px;
  margin: 31px 0 28px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 2;
}

.hero-note {
  display: flex;
  margin-top: 48px;
  gap: 15px;
  align-items: center;
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.4;
}

.hero-note strong {
  color: var(--ink);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img,
.avatar-stack span {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #d9c4a5;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack span {
  display: grid;
  color: white;
  background: var(--red);
  font-size: 9px;
  font-weight: 900;
  place-items: center;
}

.hero-art {
  position: relative;
  min-height: 570px;
  perspective: 1200px;
}

.poster {
  position: absolute;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--night);
  box-shadow: var(--shadow);
}

.poster-back {
  top: 20px;
  right: 18px;
  width: 49%;
  height: 76%;
  padding: 28px;
  border: 7px solid var(--paper-bright);
  opacity: 0.65;
  transform: rotate(8deg);
}

.poster-back::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 25%, rgba(231, 170, 67, 0.7), transparent 18%),
    linear-gradient(155deg, transparent 40%, rgba(217, 73, 50, 0.65));
}

.poster-back span,
.poster-back strong {
  position: relative;
  z-index: 1;
}

.poster-back span {
  font-size: 8px;
  letter-spacing: 0.2em;
}

.poster-back strong {
  display: block;
  margin-top: 230px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 0.85;
}

.poster-main {
  top: 30px;
  right: 60px;
  width: 440px;
  height: 550px;
  border: 8px solid var(--paper-bright);
  transform: rotate(-3deg);
}

.poster-main::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 50% 75%, rgba(217, 73, 50, 0.65), transparent 40%),
    linear-gradient(180deg, #171719 5%, #282023 60%, #c6422f);
}

.poster-main::after {
  position: absolute;
  z-index: 1;
  right: -15%;
  bottom: 30%;
  left: -15%;
  height: 100px;
  content: "";
  background: #161314;
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
}

.poster-topline {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.poster-moon {
  position: absolute;
  z-index: 1;
  top: 82px;
  left: 50%;
  width: 170px;
  height: 170px;
  background: #e9b455;
  border-radius: 50%;
  box-shadow: 0 0 55px rgba(231, 170, 67, 0.42);
  transform: translateX(-50%);
}

.poster-cat {
  position: absolute;
  z-index: 3;
  width: 62%;
  filter: drop-shadow(0 15px 14px rgba(0, 0, 0, 0.4));
}

.poster-cat-left {
  bottom: 96px;
  left: -1%;
}

.poster-cat-right {
  right: -2%;
  bottom: 92px;
  transform: scaleX(-1);
}

.poster-copy {
  position: absolute;
  z-index: 5;
  right: 15px;
  bottom: 23px;
  left: 15px;
  text-align: center;
}

.poster-copy p {
  margin: 0 0 8px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
}

.poster-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.poster-copy h2 em {
  color: var(--gold);
  font-size: 29px;
  font-weight: 400;
  text-transform: none;
}

.poster-copy > span {
  display: block;
  margin-top: 14px;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.floating-credit {
  position: absolute;
  z-index: 7;
  padding: 13px 18px;
  color: var(--paper-bright);
  background: var(--red);
  box-shadow: 0 12px 25px rgba(28, 17, 14, 0.16);
  transform: rotate(2deg);
}

.floating-credit span,
.floating-credit strong {
  display: block;
}

.floating-credit span {
  margin-bottom: 3px;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.floating-credit strong {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.floating-credit-left {
  bottom: 95px;
  left: 32px;
}

.floating-credit-right {
  right: -18px;
  bottom: 48px;
  color: var(--ink);
  background: var(--gold);
  transform: rotate(-2deg);
}

.marquee {
  overflow: hidden;
  padding: 13px 0;
  color: var(--paper-bright);
  background: var(--red);
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.marquee i {
  color: var(--gold);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.process {
  padding: 145px 0;
}

.section-heading {
  display: flex;
  margin-bottom: 75px;
  align-items: end;
  justify-content: space-between;
}

.section-heading .eyebrow {
  max-width: 200px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.section-heading h2,
.manifesto-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 63px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 280px;
  padding: 18px 50px 30px;
  border-left: 1px solid var(--line);
}

.process-grid li:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-number {
  position: absolute;
  top: 0;
  right: 18px;
  color: rgba(23, 20, 20, 0.16);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.step-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 32px;
  color: var(--red);
  background: rgba(217, 73, 50, 0.08);
  border-radius: 50%;
  place-items: center;
}

.step-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.process-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.7;
}

.studio-section {
  position: relative;
  padding: 115px 24px;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 75% 30%, rgba(217, 73, 50, 0.13), transparent 25%),
    radial-gradient(circle at 15% 80%, rgba(231, 170, 67, 0.08), transparent 20%),
    var(--night);
}

.studio-section::before,
.studio-section::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  border-color: rgba(255, 255, 255, 0.14);
}

.studio-section::before {
  top: 40px;
  left: 40px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.studio-section::after {
  right: 40px;
  bottom: 40px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.studio-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.studio-heading .eyebrow {
  justify-content: center;
}

.eyebrow-light {
  color: var(--gold);
}

.studio-heading h2 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.studio-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.studio-card {
  position: relative;
  width: min(820px, 100%);
  min-height: 480px;
  margin: 0 auto;
  padding: 50px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.studio-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid var(--line);
}

#movie-form,
.generation-panel,
.premiere-panel {
  position: relative;
  z-index: 1;
}

.field-group + .field-group {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.field-heading,
.prompt-meta {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
}

.field-group label {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.field-heading span,
.prompt-meta,
.upload-zone span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.upload-zone {
  position: relative;
  display: flex;
  min-height: 155px;
  padding: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(23, 20, 20, 0.35);
  cursor: pointer;
  background: rgba(233, 222, 201, 0.24);
  transition:
    border 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging,
.upload-zone:focus-within {
  background: rgba(231, 170, 67, 0.13);
  border-color: var(--red);
  transform: translateY(-2px);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.upload-zone p {
  margin: 10px 0 6px;
  font-family: var(--serif);
  font-size: 14px;
}

.upload-icon {
  color: var(--red);
}

.upload-icon svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.photo-grid {
  display: grid;
  margin-top: 14px;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 2px;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item button {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 21px;
  height: 21px;
  padding: 0;
  color: white;
  background: rgba(16, 14, 14, 0.72);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  place-items: center;
}

.prompt-input-wrap {
  position: relative;
  margin-top: 12px;
}

.prompt-input-wrap textarea {
  width: 100%;
  min-height: 110px;
  padding: 20px 50px 20px 20px;
  resize: vertical;
  color: var(--ink);
  background: rgba(233, 222, 201, 0.25);
  border: 1px solid rgba(23, 20, 20, 0.25);
  border-radius: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  outline: none;
  transition:
    border 180ms ease,
    box-shadow 180ms ease;
}

.prompt-input-wrap textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 73, 50, 0.09);
}

.prompt-input-wrap textarea::placeholder {
  color: rgba(95, 89, 84, 0.65);
  font-style: italic;
}

.prompt-sparkle {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--red);
}

.prompt-meta {
  margin: 8px 0 0;
}

.prompt-meta p {
  margin: 0;
}

.prompt-chips {
  display: flex;
  margin-top: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.prompt-chips button {
  padding: 8px 12px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 11px;
  transition:
    color 160ms ease,
    border 160ms ease,
    background 160ms ease;
}

.prompt-chips button:hover {
  color: var(--red-dark);
  background: rgba(217, 73, 50, 0.05);
  border-color: var(--red);
}

.form-message {
  min-height: 18px;
  margin: 18px 0 5px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.button-create {
  width: 100%;
  color: white;
  background: var(--red);
}

.button-create:hover:not(:disabled) {
  background: var(--red-dark);
  box-shadow: 0 13px 30px rgba(217, 73, 50, 0.25);
}

.button-create:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.button-reel {
  width: 12px;
  height: 12px;
  color: var(--gold);
  border: 2px dotted currentColor;
  border-radius: 50%;
  line-height: 6px;
}

.generation-panel {
  display: flex;
  min-height: 600px;
  padding: 55px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 50% 40%, rgba(217, 73, 50, 0.25), transparent 28%),
    var(--night);
  text-align: center;
}

.generation-panel[hidden],
.premiere-panel[hidden] {
  display: none;
}

.clapper {
  position: relative;
  width: 94px;
  height: 66px;
  margin-bottom: 35px;
  border: 2px solid var(--paper-bright);
}

.clapper::before {
  position: absolute;
  top: -18px;
  left: -2px;
  width: 94px;
  height: 16px;
  content: "";
  background: repeating-linear-gradient(
    135deg,
    var(--paper-bright) 0 12px,
    var(--night) 12px 24px
  );
  border: 2px solid var(--paper-bright);
  transform: rotate(-8deg);
  transform-origin: bottom left;
  animation: clap 1.5s ease-in-out infinite;
}

.clapper span {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.clapper span:nth-child(1) { left: 15px; }
.clapper span:nth-child(2) { left: 35px; }
.clapper span:nth-child(3) { left: 55px; }
.clapper span:nth-child(4) { left: 75px; }

@keyframes clap {
  0%, 60%, 100% { transform: rotate(-8deg); }
  70%, 90% { transform: rotate(0); }
}

.generation-panel h3 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.generation-progress {
  width: min(350px, 80%);
  height: 2px;
  margin-bottom: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.generation-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width 600ms ease;
}

.generation-steps {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.35);
  list-style: none;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 2;
  text-align: left;
}

.generation-steps li {
  transition: color 220ms ease;
}

.generation-steps li span {
  display: inline-block;
  width: 20px;
  color: transparent;
}

.generation-steps li.is-active {
  color: var(--paper-bright);
}

.generation-steps li.is-complete {
  color: var(--gold);
}

.generation-steps li.is-complete span {
  color: var(--gold);
}

.premiere-panel {
  color: var(--paper-bright);
  background: var(--night);
}

.premiere-heading {
  display: flex;
  padding: 30px 34px 24px;
  align-items: center;
  justify-content: space-between;
}

.premiere-heading .eyebrow {
  margin-bottom: 5px;
}

.premiere-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  place-items: center;
}

.trailer {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.trailer > img {
  width: 100%;
  height: 100%;
  opacity: 0.72;
  object-fit: cover;
  animation: ken-burns 5s ease-out both;
}

.trailer > img.scene-change {
  animation: none;
}

@keyframes ken-burns {
  from { transform: scale(1.04); }
  to { transform: scale(1.16) translateX(-1%); }
}

.trailer-vignette,
.film-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trailer-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 40%, rgba(0, 0, 0, 0.75)),
    radial-gradient(ellipse, transparent 35%, rgba(0, 0, 0, 0.6));
}

.film-grain {
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.trailer-copy {
  position: absolute;
  right: 40px;
  bottom: 38px;
  left: 40px;
  text-align: center;
  text-shadow: 0 3px 20px black;
}

.trailer-copy span,
.trailer-copy strong {
  display: block;
}

.trailer-copy span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.35em;
}

.trailer-copy strong {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.trailer-control {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.premiere-footer {
  display: flex;
  padding: 25px 34px 30px;
  align-items: center;
  justify-content: space-between;
}

.premiere-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
}

.button-light {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-light:hover {
  background: var(--gold);
}

.manifesto {
  display: grid;
  padding: 160px 0;
  gap: 120px;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.manifesto-art {
  position: relative;
  min-height: 500px;
}

.film-frame {
  position: absolute;
  width: 300px;
  padding: 14px 14px 26px;
  background: var(--paper-bright);
  box-shadow: 0 22px 50px rgba(48, 35, 28, 0.2);
}

.film-frame img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #b9694e;
  filter: sepia(0.18);
}

.film-frame span {
  display: block;
  margin-top: 12px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.film-frame-one {
  z-index: 2;
  top: 10px;
  left: 10px;
  transform: rotate(-7deg);
}

.film-frame-two {
  z-index: 1;
  top: 90px;
  right: 0;
  transform: rotate(8deg);
}

.film-frame-two img {
  background: #d5a659;
}

.scribble {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 5px;
  color: var(--red);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 18px;
  transform: rotate(-8deg);
}

.manifesto-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.75;
}

.manifesto-copy blockquote {
  margin: 0;
  padding: 18px 0 18px 25px;
  color: var(--red-dark);
  border-left: 2px solid var(--red);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: 125px 24px;
  color: var(--paper-bright);
  background:
    linear-gradient(rgba(16, 14, 14, 0.82), rgba(16, 14, 14, 0.92)),
    radial-gradient(circle at 50% 35%, var(--red), var(--night) 48%);
  text-align: center;
}

.closing::before,
.closing::after {
  position: absolute;
  top: -80px;
  width: 280px;
  height: 440px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(30deg);
}

.closing::before { left: -100px; }
.closing::after { right: -100px; transform: rotate(-30deg); }

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.closing-paws {
  position: absolute;
  right: 12%;
  bottom: 25px;
  font-size: 30px;
  opacity: 0.2;
  transform: rotate(-16deg);
}

footer {
  display: flex;
  min-height: 110px;
  padding: 25px max(24px, calc((100vw - 1180px) / 2));
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.brand-footer {
  color: var(--paper-bright);
  font-size: 23px;
}

footer > a:last-child {
  color: var(--paper-bright);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 70px 0 100px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-art {
    width: min(620px, 100%);
    margin: 55px auto 0;
  }

  .poster-main {
    right: 50%;
    transform: translateX(50%) rotate(-3deg);
  }

  .poster-back {
    right: 4%;
  }

  .section-heading {
    gap: 40px;
    align-items: start;
    flex-direction: column;
  }

  .manifesto {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .manifesto-art {
    width: min(560px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .ambient {
    width: 280px;
    height: 280px;
  }

  .ambient-one {
    right: 0;
  }

  .ambient-two {
    left: 0;
  }

  .site-header,
  .hero,
  .section-shell {
    width: min(100% - 30px, 1180px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-description {
    font-size: 16px;
  }

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

  .text-link {
    width: max-content;
  }

  .hero-art {
    min-height: 490px;
  }

  .poster-main {
    width: min(390px, 88vw);
    height: 480px;
  }

  .poster-back {
    display: none;
  }

  .poster-cat {
    bottom: 90px;
  }

  .floating-credit-left {
    left: -5px;
  }

  .floating-credit-right {
    right: -4px;
  }

  .process {
    padding: 105px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li:first-child {
    min-height: auto;
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step-number {
    top: 50px;
  }

  .studio-section {
    padding: 90px 15px;
  }

  .studio-card {
    padding: 27px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prompt-chips {
    align-items: stretch;
    flex-direction: column;
  }

  .prompt-chips button {
    text-align: left;
  }

  .premiere-heading,
  .premiere-footer {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .trailer-copy {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .manifesto {
    padding: 110px 0;
  }

  .manifesto-art {
    min-height: 410px;
  }

  .film-frame {
    width: 230px;
  }

  .film-frame img {
    height: 275px;
  }

  .scribble {
    right: 10px;
  }

  footer {
    padding: 45px 24px;
    gap: 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
