@font-face {
  font-family: "Alfa Movie";
  src: url("./assets/fonts/alfa-slab-one-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Web";
  src: url("./assets/fonts/jost-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Web";
  src: url("./assets/fonts/jost-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura Web";
  src: url("./assets/fonts/jost-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Web";
  src: url("./assets/fonts/jost-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Web";
  src: url("./assets/fonts/jost-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #120c08;
  --ink-soft: #291a10;
  --paper: #d4c2a1;
  --paper-light: #eadfc9;
  --white: #f5eddf;
  --portrait-white: #ffffff;
  --gold: #e3a10b;
  --gold-bright: #ffd15c;
  --gold-light: #ffe39a;
  --gold-dark: #914800;
  --gold-deep: #4f2300;
  --purple: #5b3370;
  --purple-dark: #32183d;
  --border: 3px solid var(--ink);
  --shadow: 9px 9px 0 rgba(57, 29, 5, 0.32);
  --marquee-height: 46px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--marquee-height) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: var(--marquee-height);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 222, 188, 0.58), transparent 32rem),
    repeating-linear-gradient(
      0deg,
      rgba(102, 70, 29, 0.025) 0,
      rgba(102, 70, 29, 0.025) 1px,
      transparent 1px,
      transparent 4px
    ),
    var(--paper);
  color: var(--ink);
  font-family: "Futura Web", Futura, "Century Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

[hidden] {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h2,
h3 {
  text-wrap: balance;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 5px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 9px 14px;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.testimonial-marquee {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--marquee-height);
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  background:
    linear-gradient(180deg, #21170f 0%, #080706 56%, #1c120a 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  width: 62px;
  height: 100%;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0d0906, transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #0d0906, transparent);
}

.marquee-window {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  flex: none;
  align-items: center;
  min-width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 800s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin-right: 2.1rem;
}

.marquee-item.star-cluster {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-shadow: 0 0 9px rgba(255, 191, 35, 0.72);
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 8%, rgba(246, 222, 169, 0.55), transparent 38%),
    radial-gradient(circle at 18% 66%, rgba(192, 121, 20, 0.22), transparent 33%),
    linear-gradient(180deg, #decba9 0%, #c7b28e 86%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(92deg, transparent 0 5px, rgba(85, 50, 18, 0.035) 5px 6px),
    repeating-linear-gradient(2deg, transparent 0 7px, rgba(85, 50, 18, 0.025) 7px 8px);
  mix-blend-mode: multiply;
}

.masthead-stage {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  min-height: clamp(138px, 13.5vw, 188px);
  margin: 0;
  padding: clamp(15px, 1.8vw, 24px) 20px 13px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 191, 38, 0.28) 0%, rgba(255, 213, 113, 0.14) 42%, transparent 73%),
    linear-gradient(180deg, #f3e8d1 0%, #dfcca8 100%);
  box-shadow:
    inset 0 -10px 24px rgba(128, 69, 7, 0.09),
    0 8px 20px rgba(78, 40, 4, 0.2);
}

.masthead-rays {
  position: absolute;
  z-index: 0;
  inset: -145% -12%;
  opacity: 0.12;
  pointer-events: none;
  background: repeating-conic-gradient(
    from -7deg at 50% 50%,
    rgba(203, 112, 0, 0.3) 0deg 2.5deg,
    transparent 2.5deg 14deg,
    rgba(255, 183, 24, 0.2) 14deg 16deg,
    transparent 16deg 29deg
  );
  mask-image: radial-gradient(ellipse at center, black 0%, rgba(0, 0, 0, 0.74) 29%, transparent 69%);
  animation: masthead-rays-breathe 42s ease-in-out infinite alternate;
}

.masthead {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 16px));
  margin: 0;
  color: var(--gold);
  font-family: "Alfa Movie", Rockwell, "Roboto Slab", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.032em;
  text-align: center;
  text-transform: uppercase;
}

.masthead-genres {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.masthead-genre {
  position: absolute;
  color: rgba(116, 59, 0, 0.82);
  font-size: clamp(0.58rem, 0.78vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 245, 191, 0.78);
}

.genre-drama {
  top: 12px;
  left: 18px;
}

.genre-science-fiction {
  top: 12px;
  right: 18px;
}

.genre-disaster {
  bottom: 11px;
  left: 18px;
}

.genre-suspense {
  right: 18px;
  bottom: 11px;
}

.masthead-face {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
  color: var(--gold);
  animation: masthead-shine 32s ease-in-out infinite;
}

.masthead-face > span {
  display: inline-block;
  color: var(--gold);
  background: linear-gradient(
    90deg,
    #b96a00 0%,
    #e7a31a 24%,
    #ffd873 50%,
    #e7a31a 76%,
    #b96a00 100%
  );
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(1px, 0.014em, 2px) #8f4300;
  filter:
    drop-shadow(0.035em 0.045em 0 #b85a00)
    drop-shadow(0.045em 0.05em 0 #783000)
    drop-shadow(0 0.12em 0.11em rgba(88, 40, 0, 0.34));
}

.masthead-sparkle {
  position: absolute;
  z-index: 4;
  color: #fffbe0;
  line-height: 1;
  pointer-events: none;
  text-shadow:
    0 0 6px #fff,
    0 0 14px var(--gold-bright),
    0 0 28px var(--gold);
  animation: glint 16s ease-in-out infinite;
}

.sparkle-one {
  top: 30%;
  left: 25%;
  font-size: 1.7rem;
  animation-delay: -14.1s;
}

.sparkle-two {
  top: 46%;
  right: 17%;
  font-size: 1.2rem;
  animation-delay: -8.8s;
}

.sparkle-three {
  right: 47%;
  bottom: 24%;
  font-size: 1rem;
  animation-delay: -3.5s;
}

.master-glint {
  position: absolute;
  z-index: 8;
  color: #fffbe0;
  line-height: 1;
  text-shadow:
    0 0 6px #fff,
    0 0 14px var(--gold-bright),
    0 0 28px var(--gold);
  animation: glint 16s ease-in-out infinite;
}

@keyframes masthead-shine {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.04) saturate(1.025);
  }
}

@keyframes masthead-rays-breathe {
  from {
    opacity: 0.08;
    transform: scale(0.985);
  }
  to {
    opacity: 0.14;
    transform: scale(1.015);
  }
}

@keyframes glint {
  0%,
  82%,
  100% {
    opacity: 0;
    transform: scale(0.2) rotate(0deg);
  }
  88% {
    opacity: 1;
    transform: scale(1.25) rotate(45deg);
  }
  94% {
    opacity: 0.7;
    transform: scale(0.7) rotate(90deg);
  }
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  min-height: 640px;
  margin-top: -18px;
}

.master-stage {
  position: relative;
  align-self: stretch;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.master-rays {
  position: absolute;
  z-index: -3;
  left: 50%;
  bottom: 1%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  opacity: 0.28;
  background: repeating-conic-gradient(
    from 8deg,
    rgba(255, 184, 0, 0.42) 0deg 4deg,
    transparent 4deg 15deg,
    rgba(255, 232, 148, 0.24) 15deg 18deg,
    transparent 18deg 31deg
  );
  mask-image: radial-gradient(circle, black 0%, rgba(0, 0, 0, 0.9) 32%, transparent 72%);
  animation: master-rays-turn 180s linear infinite;
}

.master-aura {
  position: absolute;
  z-index: -2;
  left: 50%;
  bottom: 5%;
  width: 72%;
  height: 76%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 214, 0.78) 0%,
    rgba(255, 213, 76, 0.42) 34%,
    rgba(255, 174, 0, 0.18) 57%,
    transparent 74%
  );
  filter: blur(10px);
  animation: aura-pulse 22s ease-in-out infinite alternate;
}

.master-wobble {
  position: relative;
  width: min(100%, 390px);
  transform-origin: 50% 92%;
  animation: master-wobble 26s ease-in-out infinite alternate;
}

.master-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 0 7px rgba(255, 248, 185, 0.8))
    drop-shadow(0 0 17px rgba(255, 193, 28, 0.48))
    drop-shadow(0 20px 15px rgba(61, 35, 12, 0.28));
}

.master-glint-one {
  top: 18%;
  right: 18%;
  font-size: 1.7rem;
  animation-delay: -1.4s;
}

.master-glint-two {
  top: 44%;
  left: 11%;
  font-size: 1.2rem;
  animation-delay: -3.8s;
}

.master-glint-three {
  top: 62%;
  right: 14%;
  font-size: 1rem;
  animation-delay: -5s;
}

@keyframes master-rays-turn {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes aura-pulse {
  from {
    opacity: 0.64;
    transform: translateX(-50%) scale(0.98);
  }
  to {
    opacity: 0.85;
    transform: translateX(-50%) scale(1.02);
  }
}

@keyframes master-wobble {
  from {
    transform: translate3d(-1px, 1px, 0) rotate(-0.14deg);
  }
  to {
    transform: translate3d(1px, -1px, 0) rotate(0.14deg);
  }
}

.hero-message {
  position: relative;
  z-index: 8;
  padding-bottom: 24px;
}

.speech-bubble {
  position: relative;
  border: 4px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(78, 46, 18, 0.17);
  font-weight: 700;
}

.hero-bubble {
  margin-bottom: 16px;
  padding: clamp(18px, 2vw, 25px);
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 1.12;
  text-align: center;
}

.hero-bubble::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -17px;
  bottom: 34px;
  width: 30px;
  height: 30px;
  background: var(--white);
  border-bottom: 4px solid var(--ink);
  border-left: 4px solid var(--ink);
  transform: rotate(45deg);
}

.claim-banner {
  margin: 0 0 16px;
  padding: 11px 18px 9px;
  border: var(--border);
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--gold-dark);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800;
  text-align: center;
}

.claim-underlined {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.claim-ending {
  white-space: nowrap;
}

.claim-tm {
  position: relative;
  display: inline-block;
  top: -0.52em;
  margin-left: 0.22em;
  font-size: 0.38em;
  letter-spacing: 0.03em;
}

.contact-marquee {
  position: relative;
  padding: 26px clamp(18px, 2.6vw, 30px) 22px;
  border: 5px solid var(--ink);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 194, 42, 0.13), transparent 46%),
    #17110c;
  color: var(--paper-light);
  box-shadow:
    9px 9px 0 var(--gold-dark),
    0 0 30px rgba(255, 184, 0, 0.21);
}

.contact-marquee h2 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: clamp(1.45rem, 2.65vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: 0.018em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 0 var(--gold-deep), 0 0 16px rgba(255, 184, 0, 0.34);
}

.bulb-frame {
  position: absolute;
  inset: 7px;
  pointer-events: none;
  background:
    radial-gradient(circle, var(--gold-light) 0 2px, var(--gold) 2.5px 4px, transparent 4.5px)
      top left / 24px 9px repeat-x,
    radial-gradient(circle, var(--gold-light) 0 2px, var(--gold) 2.5px 4px, transparent 4.5px)
      bottom left / 24px 9px repeat-x,
    radial-gradient(circle, var(--gold-light) 0 2px, var(--gold) 2.5px 4px, transparent 4.5px)
      top left / 9px 24px repeat-y,
    radial-gradient(circle, var(--gold-light) 0 2px, var(--gold) 2.5px 4px, transparent 4.5px)
      top right / 9px 24px repeat-y;
  opacity: 0.82;
  animation: bulbs-pulse 8s ease-in-out infinite alternate;
}

@keyframes bulbs-pulse {
  from {
    filter: brightness(0.9);
    opacity: 0.66;
  }
  to {
    filter: brightness(1.25);
    opacity: 1;
  }
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.contact-marquee .eyebrow,
.finale .eyebrow {
  color: var(--white);
}

.contact-tickets {
  display: grid;
  gap: 10px;
}

.ticket-link {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 10px 23px;
  border: 3px solid var(--ink);
  background:
    radial-gradient(circle at 0 50%, transparent 0 9px, var(--paper-light) 10px),
    radial-gradient(circle at 100% 50%, transparent 0 9px, var(--paper-light) 10px);
  background-color: var(--paper-light);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(255, 245, 192, 0.25);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ticket-email {
  background-color: var(--paper-light);
}

.ticket-link:hover,
.ticket-link:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow:
    8px 8px 0 var(--purple),
    0 0 20px rgba(255, 207, 80, 0.46);
  filter: brightness(1.05);
  outline: none;
}

.ticket-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.ticket-envelope {
  font-size: 1.25rem;
}

.ticket-link small,
.ticket-link strong {
  display: block;
}

.ticket-link small {
  margin-bottom: 1px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticket-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.92rem, 1.8vw, 1.13rem);
  line-height: 1.2;
}

.filmstrip-divider {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  min-height: 82px;
  border-block: 3px solid var(--gold-dark);
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, var(--paper) 26px 50px) top 7px left / auto 14px repeat-x,
    repeating-linear-gradient(90deg, transparent 0 26px, var(--paper) 26px 50px) bottom 7px left / auto 14px repeat-x,
    var(--ink);
  color: var(--gold);
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.6);
}

.filmstrip-divider-flipped {
  transform: rotate(0.3deg) scale(1.01);
}

.filmstrip-stars {
  padding: 5px 22px;
  border-inline: 2px solid var(--gold-dark);
  background: var(--ink);
  font-size: clamp(1rem, 2.7vw, 1.55rem);
  letter-spacing: 0.22em;
  text-shadow: 0 0 11px rgba(255, 184, 0, 0.66);
}

.section {
  position: relative;
  padding: clamp(74px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.outlined-panel h2,
.finale h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.outlined-panel {
  border: var(--border);
  background:
    linear-gradient(rgba(245, 237, 223, 0.62), rgba(245, 237, 223, 0.62)),
    var(--paper-light);
  box-shadow: var(--shadow);
}

.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 52%, rgba(255, 183, 0, 0.15), transparent 26%),
    var(--paper);
}

.about-grid {
  position: relative;
}

.about-panel {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(30px, 5.5vw, 66px);
  text-align: center;
}

.about-panel::before {
  content: "★★★★★";
  position: absolute;
  top: -21px;
  left: 50%;
  padding: 5px 20px;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.94rem;
  letter-spacing: 0.13em;
  transform: translateX(-50%);
}

.about-panel p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.67;
}

.section-decoration {
  position: absolute;
  pointer-events: none;
}

.reel-decoration {
  left: -58px;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border: 17px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.13;
  animation: reel-turn 42s linear infinite;
}

.reel-decoration::before {
  content: "";
  position: absolute;
  inset: 39%;
  border-radius: 50%;
  background: var(--ink);
}

.reel-decoration span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px;
  border-radius: 50%;
  background: var(--ink);
  transform: rotate(calc(var(--i, 0) * 72deg)) translateY(-66px);
}

.reel-decoration span:nth-child(1) { --i: 0; }
.reel-decoration span:nth-child(2) { --i: 1; }
.reel-decoration span:nth-child(3) { --i: 2; }
.reel-decoration span:nth-child(4) { --i: 3; }
.reel-decoration span:nth-child(5) { --i: 4; }

.projector-decoration {
  right: -70px;
  top: -18px;
  width: 225px;
  height: 165px;
  opacity: 0.12;
  transform: rotate(6deg);
}

.projector-reel {
  position: absolute;
  top: 0;
  width: 84px;
  height: 84px;
  border: 10px dotted var(--ink);
  border-radius: 50%;
  background: var(--gold);
  animation: reel-turn 28s linear infinite;
}

.projector-reel-one { left: 15px; }
.projector-reel-two { left: 88px; animation-direction: reverse; }

.projector-body {
  position: absolute;
  left: 24px;
  bottom: 8px;
  width: 142px;
  height: 74px;
  border: 9px solid var(--ink);
  border-radius: 10px;
  background: var(--gold);
}

.projector-lens {
  position: absolute;
  right: 23px;
  bottom: 32px;
  width: 50px;
  height: 43px;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: var(--gold-light);
}

.projector-beam {
  position: absolute;
  left: 186px;
  bottom: 18px;
  width: 170px;
  height: 74px;
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.7), transparent);
}

@keyframes reel-turn {
  to { transform: rotate(360deg); }
}

.star-divider {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gold-dark);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: 0.22em;
  text-align: center;
}

.star-divider::before,
.star-divider::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--ink);
}

.star-divider span {
  flex: none;
}

.offer-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 14%, rgba(255, 184, 0, 0.16), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(109, 54, 142, 0.1), transparent 30%),
    linear-gradient(180deg, var(--paper-light), var(--paper));
}

.price-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 8px 8px 0 rgba(104, 58, 0, 0.2);
}

.price-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 18px 25px;
}

.price-option strong {
  font-size: clamp(3.1rem, 5vw, 4.45rem);
  font-weight: 800;
  line-height: 0.9;
}

.price-option strong sup {
  vertical-align: top;
  font-size: 0.42em;
}

.price-option span {
  min-width: 0;
  font-size: clamp(0.9rem, 1.5vw, 1.12rem);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.price-or {
  align-self: center;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-heading {
  margin-top: clamp(48px, 7vw, 76px);
  margin-bottom: 30px;
}

.process-heading h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.process-film {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 35px 14px;
  border: 4px solid var(--gold-dark);
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, var(--paper) 28px 52px) top 8px left / auto 14px repeat-x,
    repeating-linear-gradient(90deg, transparent 0 28px, var(--paper) 28px 52px) bottom 8px left / auto 14px repeat-x,
    var(--ink);
  box-shadow: 0 13px 0 rgba(99, 47, 0, 0.18);
  list-style: none;
}

.process-film li {
  position: relative;
  min-height: 190px;
  padding: 55px 17px 18px;
  border: 2px solid var(--gold-dark);
  background: var(--paper-light);
}

.process-film p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.43;
}

.step-number {
  position: absolute;
  top: 14px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-weight: 800;
  transform: translateX(-50%);
}

.specialties-section {
  overflow: hidden;
  border-block: 3px solid var(--ink);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.15), transparent 48%),
    #21170f;
  color: var(--paper-light);
}

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

.specialties-shell {
  position: relative;
}

.specialty-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 930px;
  margin-inline: auto;
}

.specialty-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 90px;
  padding: 20px 24px;
  border: 3px solid var(--gold-dark);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--gold-dark);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 800;
}

.specialty-card:nth-child(even) {
  transform: translateY(7px);
}

.specialty-card span {
  flex: none;
  color: var(--gold-dark);
  font-size: 1.6rem;
}

.specialty-card-wide {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 8px;
  text-align: center;
}

.popcorn-decoration {
  position: absolute;
  right: -12px;
  bottom: -108px;
  width: 155px;
  height: 210px;
  opacity: 0.22;
  transform: rotate(8deg);
}

.popcorn-box {
  position: absolute;
  inset: 67px 17px 0;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
  background: repeating-linear-gradient(90deg, var(--paper-light) 0 18px, var(--gold) 18px 36px);
  border-top: 7px solid var(--ink);
}

.popcorn-kernels {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 100px;
}

.popcorn-kernels span {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 6px solid var(--ink);
  border-radius: 48% 52% 45% 55%;
  background: var(--paper-light);
}

.popcorn-kernels span:nth-child(1) { left: 6px; top: 31px; }
.popcorn-kernels span:nth-child(2) { left: 37px; top: 9px; }
.popcorn-kernels span:nth-child(3) { left: 73px; top: 25px; }
.popcorn-kernels span:nth-child(4) { left: 97px; top: 5px; }
.popcorn-kernels span:nth-child(5) { left: 52px; top: 46px; }

.testimonial-intermission {
  padding: 54px 0;
  border-bottom: 4px solid var(--gold-dark);
  background:
    linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold), var(--gold-dark));
}

.intermission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.testimonial-intermission figure {
  margin: 0;
  padding: 24px 28px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 6px 6px 0 rgba(81, 41, 0, 0.34);
}

.testimonial-intermission blockquote {
  margin-bottom: 10px;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.4;
}

.testimonial-intermission figcaption {
  font-style: italic;
  font-weight: 600;
  text-align: right;
}

.intermission-stars {
  color: var(--ink);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
}

.faq-section {
  background:
    radial-gradient(circle at 10% 22%, rgba(255, 184, 0, 0.15), transparent 26%),
    var(--paper-light);
}

.faq-shell {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(126, 69, 0, 0.2);
}

.faq-list summary {
  position: relative;
  padding: 20px 66px 20px 23px;
  cursor: pointer;
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] {
  background: var(--white);
}

.faq-list details[open] summary {
  border-bottom: 2px solid var(--ink);
  background: var(--gold);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--paper-light);
}

.faq-list details p {
  margin: 0;
  padding: 20px 24px 24px;
  font-size: 1.04rem;
}

.faq-list details a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-list summary:focus-visible {
  outline: 4px solid var(--purple);
  outline-offset: -4px;
}

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 8%, rgba(255, 184, 0, 0.2), transparent 27%),
    var(--paper);
}

.testimonials-shell {
  max-width: 1260px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 48px) 22px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card[hidden] {
  display: none;
}

.testimonial-card figure {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
}

.quote-bubble {
  position: relative;
  width: 100%;
  margin: 0 0 25px;
  padding: 19px 19px 21px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(89, 51, 15, 0.15);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.42;
}

.quote-bubble::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: 50%;
  width: 27px;
  height: 27px;
  background: var(--white);
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

.portrait-frame {
  position: relative;
  width: 156px;
  height: 156px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--portrait-white);
  box-shadow:
    0 0 0 6px var(--gold),
    7px 8px 0 rgba(97, 51, 0, 0.22);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-card figcaption {
  margin-top: 15px;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.testimonial-card:nth-child(4n + 2),
.testimonial-card:nth-child(4n + 4) {
  transform: translateY(20px);
}

.testimonial-card.revealed {
  animation: testimonial-reveal 480ms ease both;
}

@keyframes testimonial-reveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
  }
}

.see-more-button {
  display: block;
  min-width: 190px;
  margin: 68px auto 0;
  padding: 15px 34px;
  border: 3px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--gold-dark);
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.see-more-button:hover,
.see-more-button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--purple);
  outline: none;
}

.testimonial-disclaimer {
  max-width: 680px;
  margin: 55px auto 0;
  font-size: 0.42rem;
  line-height: 1.2;
  text-align: center;
}

.finale {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 130px) 0;
  border-top: 5px solid var(--gold-dark);
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 184, 0, 0.25), transparent 46%),
    #17110c;
  color: var(--paper-light);
  isolation: isolate;
}

.finale-rays {
  position: absolute;
  z-index: 0;
  inset: -40% -15%;
  opacity: 0.25;
  background: repeating-conic-gradient(
    from -8deg at 50% 54%,
    rgba(255, 194, 44, 0.32) 0deg 3deg,
    transparent 3deg 12deg,
    rgba(255, 223, 111, 0.16) 12deg 15deg,
    transparent 15deg 26deg
  );
  mask-image: radial-gradient(ellipse at center, black 0%, rgba(0, 0, 0, 0.72) 35%, transparent 72%);
  animation: masthead-rays-breathe 30s ease-in-out infinite alternate;
}

.finale-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.finale-heading h2 {
  color: var(--gold-bright);
  text-shadow: 0 3px 0 var(--gold-deep), 0 0 24px rgba(255, 184, 0, 0.3);
}

.finale-tickets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.visitor-counter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 58px;
  padding: 21px;
  border: 3px solid var(--gold-dark);
  background: #050504;
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.8),
    0 0 28px rgba(255, 184, 0, 0.14);
}

.counter-label {
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  font-weight: 700;
  text-transform: uppercase;
}

.counter-digits {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 52px;
  font-family: "Courier New", monospace;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: #ffcf3e;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 5px #ff8a00,
    0 0 13px rgba(255, 184, 0, 0.78);
}

.counter-digit {
  display: inline-grid;
  place-items: center;
  width: 0.72em;
  height: 1.22em;
  overflow: hidden;
  border: 1px solid #5f3600;
  border-radius: 3px;
  background: linear-gradient(#1c1206, #050403 48%, #1d1206 52%, #060504);
}

.counter-digit.changing {
  animation: digit-roll 120ms ease-out;
}

.counter-comma {
  width: 0.28em;
  color: #b26a00;
}

@keyframes digit-roll {
  from {
    opacity: 0.25;
    transform: translateY(-0.55em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding: 35px 0 42px;
  border-top: 3px solid var(--gold);
  background: #080706;
  color: #d8cfbd;
  font-size: 0.78rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
}

.footer-inner p {
  margin: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    min-height: 850px;
  }

  .hero-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    gap: 24px;
  }

  .master-wobble {
    width: min(100%, 360px);
  }

  .process-film {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-film li {
    min-height: 200px;
  }

  .process-film li:nth-child(4),
  .process-film li:nth-child(5) {
    grid-column: span 1;
  }

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

  .testimonial-card:nth-child(4n + 2),
  .testimonial-card:nth-child(4n + 4) {
    transform: none;
  }

  .testimonial-card:nth-child(3n + 2) {
    transform: translateY(18px);
  }
}

@media (max-width: 820px) {
  :root {
    --marquee-height: 42px;
  }

  body {
    font-size: 17px;
  }

  .page-shell {
    width: min(100% - 26px, 720px);
  }

  .masthead-stage {
    min-height: clamp(210px, 30vw, 250px);
    padding: 28px 0 12px;
  }

  .masthead {
    font-size: clamp(3.35rem, 14.2vw, 6.4rem);
    line-height: 0.9;
  }

  .masthead-face > span {
    display: block;
  }

  .masthead-face > span + span {
    margin-top: 0.14em;
  }

  .hero {
    min-height: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: -14px;
  }

  .master-stage {
    min-height: 590px;
    margin-bottom: -42px;
  }

  .master-wobble {
    width: min(80vw, 340px);
  }

  .master-rays {
    width: 680px;
    height: 680px;
  }

  .hero-message {
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
  }

  .hero-bubble {
    order: -2;
    margin-inline: 8px;
  }

  .hero-bubble::after {
    left: 50%;
    top: -18px;
    bottom: auto;
    width: 34px;
    height: 34px;
    border: 0;
    border-top: 4px solid var(--ink);
    border-left: 4px solid var(--ink);
    transform: translateX(-50%) rotate(45deg);
  }

  .claim-banner {
    margin-top: 16px;
  }

  .finale-tickets,
  .specialty-grid,
  .intermission-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card-wide {
    grid-column: auto;
  }

  .specialty-card:nth-child(even) {
    transform: none;
  }

  .intermission-stars {
    writing-mode: horizontal-tb;
    text-align: center;
  }

  .process-film {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-film li {
    min-height: 180px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap-inline: 20px;
  }

  .testimonial-card:nth-child(3n + 2) {
    transform: none;
  }

  .testimonial-card:nth-child(even) {
    transform: translateY(16px);
  }

  .projector-decoration {
    right: -120px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .testimonial-marquee {
    font-size: 0.72rem;
  }

  .masthead-stage {
    min-height: 225px;
    padding: 24px 0 10px;
  }

  .masthead-genre {
    font-size: 0.53rem;
    letter-spacing: 0.12em;
  }

  .genre-drama,
  .genre-science-fiction {
    top: 10px;
  }

  .genre-disaster,
  .genre-suspense {
    bottom: 9px;
  }

  .genre-drama,
  .genre-disaster {
    left: 10px;
  }

  .genre-science-fiction,
  .genre-suspense {
    right: 10px;
  }

  .masthead {
    font-size: clamp(2.8rem, 15.8vw, 5.2rem);
    letter-spacing: -0.055em;
  }

  .hero-layout {
    width: min(100% - 18px, 520px);
  }

  .master-stage {
    min-height: 540px;
  }

  .master-wobble {
    width: min(84vw, 305px);
  }

  .hero-bubble {
    padding: 22px 17px;
    border-width: 3px;
    font-size: 1.45rem;
  }

  .contact-marquee {
    padding: 30px 14px 22px;
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--gold-dark);
  }

  .contact-marquee h2 {
    font-size: 1.55rem;
  }

  .ticket-link {
    grid-template-columns: 41px 1fr;
    gap: 10px;
    min-height: 70px;
    padding: 11px 17px;
  }

  .ticket-icon {
    width: 39px;
    height: 39px;
    font-size: 1.45rem;
  }

  .ticket-envelope {
    font-size: 1rem;
  }

  .ticket-link strong {
    font-size: 0.82rem;
  }

  .filmstrip-divider {
    min-height: 70px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading h2,
  .process-heading h3,
  .outlined-panel h2,
  .finale h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .about-panel {
    padding: 42px 20px 28px;
  }

  .about-panel p:last-child {
    font-size: 1.02rem;
  }

  .price-strip {
    grid-template-columns: 1fr;
    padding: 10px 14px;
  }

  .price-option {
    gap: 15px;
    padding: 13px 6px;
  }

  .price-or {
    width: 43px;
    height: 43px;
    margin: -3px auto;
  }

  .process-film {
    grid-template-columns: 1fr;
    padding: 34px 12px;
  }

  .process-film li {
    min-height: 0;
    padding: 54px 18px 18px;
  }

  .specialty-card {
    padding-inline: 18px;
  }

  .testimonial-intermission figure {
    padding: 20px;
  }

  .faq-list summary {
    padding: 18px 58px 18px 18px;
  }

  .faq-list details p {
    padding: 18px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 410px;
    margin-inline: auto;
  }

  .testimonial-card:nth-child(even) {
    transform: none;
  }

  .portrait-frame {
    width: 166px;
    height: 166px;
  }

  .quote-bubble {
    font-size: 0.99rem;
  }

  .visitor-counter {
    gap: 10px;
    padding: 18px 10px;
  }

  .counter-label {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .marquee-track {
    position: static;
    max-width: 100%;
    overflow-x: auto;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}


/* Mobile masthead overflow guard */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 820px) {
  .masthead-stage {
    padding-right: 14px;
    padding-left: 14px;
  }

  .masthead {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.8rem, 13.8vw, 5.9rem);
  }

  .masthead-face > span {
    width: 100%;
    transform: scaleX(0.98);
    transform-origin: center;
  }
}

@media (max-width: 560px) {
  .masthead-stage {
    padding-right: 12px;
    padding-left: 12px;
  }

  .masthead {
    font-size: clamp(2.35rem, 13.6vw, 4.8rem);
  }

  .masthead-face > span {
    transform: scaleX(0.96);
  }
}
