/* ========== DREAM — Letterbox hero / film rows / reel timeline / wide proof ========== */
:root {
  --void: #ffffff;
  --panel: #ffffff;
  --line: rgba(196, 184, 224, 0.5);
  --gold: #a26bff;
  --ember: #ff78b5;
  --text: #1f1d2b;
  --muted: #766f8f;
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --gutter: clamp(1rem, 4vw, 2rem);
  --container: min(1040px, calc(100% - var(--gutter) * 2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--body);
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
}
main {
  min-width: 0;
}
h1,
h2,
h3 {
  overflow-wrap: break-word;
}
a {
  color: var(--gold);
}
a:hover {
  color: #ffe6b0;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cinema-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  gap: 1rem;
  padding: 0.75rem max(1rem, 4vw);
  border-bottom: 1px solid #ece6f7;
  background: rgba(248, 248, 251, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.cinema-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--body);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  letter-spacing: 0;
  font-weight: 800;
}
.cinema-brand > span {
  min-width: 0;
}
.cinema-brand__svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}
.cinema-bar__links {
  display: none;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.88rem;
}
.cinema-bar__links a {
  color: var(--muted);
  text-decoration: none;
}
.cinema-bar__links a:hover {
  color: var(--text);
}
@media (min-width: 768px) {
  .cinema-bar__links {
    display: flex;
  }
}

.btn-cinema {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-cinema--outline {
  background: #ffffff;
  border-color: #e8e0f2;
  color: var(--text);
}
.btn-cinema--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-cinema--gold {
  background: linear-gradient(135deg, #ff9b42, #c05cff);
  color: #ffffff;
  border-color: rgba(174, 126, 233, 0.35);
}
.btn-cinema--gold:hover {
  filter: brightness(1.05);
}

/* Letterbox hero */
.letterbox-hero {
  display: flex;
  flex-direction: column;
  min-height: min(88vh, 820px);
}
@supports (height: 100dvh) {
  .letterbox-hero {
    min-height: min(88dvh, 820px);
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .letterbox-hero {
    min-height: 0;
  }
  .letterbox-hero__shade {
    flex-basis: 24px;
  }
}
.letterbox-hero__shade {
  flex: 0 0 clamp(36px, 6vh, 64px);
  background: linear-gradient(180deg, #f0eef7, #f8f8fb);
}
.letterbox-hero__stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(1.75rem, 5vw, 3rem);
  overflow: hidden;
  background: transparent;
  border-block: 1px solid var(--line);
}
.letterbox-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.letterbox-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 248, 251, 0.2) 0%, rgba(248, 248, 251, 0.7) 55%, rgba(248, 248, 251, 0.92) 100%);
}
.letterbox-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.letterbox-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
}
.slug {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.75rem;
}
.letterbox-hero h1 {
  font-family: var(--body);
  font-weight: 800;
  font-size: clamp(2.25rem, 6.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.synopsis {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
}
.cinema-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 440px;
}
@media (min-width: 520px) {
  .cinema-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .cinema-form--compact {
    max-width: 520px;
    margin-inline: auto;
  }
}
.cinema-form input[type="email"] {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}
.cinema-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 201, 121, 0.15);
}
.tiny {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
}
.tiny--hero-waitlist {
  color: var(--muted);
  max-width: 34rem;
}
.tiny--waitlist-cap {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 28rem;
  margin-inline: auto;
  color: var(--muted);
}
.tiny a {
  color: var(--muted);
}
.tiny a:hover {
  color: var(--text);
}

.section {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}
.film-head {
  max-width: 520px;
  margin-bottom: 2rem;
}
.film-head--compact {
  margin-bottom: 1.25rem;
}
.film-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.film-head p {
  margin: 0;
  color: var(--muted);
}

.film-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.film-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .film-row {
    grid-template-columns: 1fr 1fr;
  }
}
.film-row li {
  padding: clamp(1.1rem, 3vw, 1.35rem);
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(70, 49, 118, 0.06);
}
.perf {
  display: block;
  font-size: 0.65rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2em;
}
.film-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.film-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.perforation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  margin: 0.5rem 0;
  gap: 0.35rem;
  opacity: 0.65;
}
.perforation span {
  flex: 1;
  height: 14px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
  max-width: 80px;
}

.reel-section {
  background: linear-gradient(180deg, #f8f8fb, #f2eefb);
  border-block: 1px solid var(--line);
}
.reel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reel__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1rem, 3vw, 1.25rem);
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}
@media (max-width: 380px) {
  .reel__list li {
    grid-template-columns: 1fr;
  }
  .reel__frame {
    justify-self: start;
  }
}
.reel__frame {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 52px;
  text-align: center;
}
.reel__list h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}
.reel__list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cinema-quote {
  margin: 0 0 1.25rem;
  padding: 1.5rem;
  border-left: 5px solid var(--ember);
  background: #ffffff;
  border-radius: 0 12px 12px 0;
}
.cinema-quote p {
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
  font-style: italic;
}
.cinema-quote footer {
  font-size: 0.85rem;
  color: var(--muted);
}
.cinema-wide {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
}
.cinema-wide img {
  width: auto;
  max-width: 100%;
  max-height: min(520px, 75vh);
  height: auto;
  margin-inline: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.cinema-cta {
  padding: 2.5rem 0 3rem;
  text-align: center;
  border-top: 1px solid #ece6f7;
  background: linear-gradient(180deg, transparent, #f8f3ff 90%);
}
.cinema-cta__inner h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.05em;
  margin: 0 0 1.25rem;
}

.cinema-foot {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--line);
}
.cinema-foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  letter-spacing: 0.08em;
}
.cinema-foot__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .cinema-form .btn-cinema,
  .cinema-cta__inner .btn-cinema {
    width: 100%;
  }
}
.cinema-foot__row p {
  margin: 0;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0;
}

/* Motion: load-in + scroll reveal */
html.has-motion body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}
html.has-motion body.is-loaded {
  opacity: 1;
  transform: none;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.has-motion body,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Legal & trust (privacy, terms, footer disclaimer) ——— */
.site-disclaimer {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0.88;
  color: var(--muted, var(--color-text-muted, inherit));
}
.business-contact {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  font-style: normal;
  color: var(--muted, var(--color-text-muted, inherit));
}
.business-contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted, var(--color-text-muted, inherit));
}
.legal-nav a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-page {
  padding: 2rem 0 4rem;
}
.legal-page .container {
  max-width: 42rem;
}
.legal-page h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
}
.legal-page .legal-meta {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  opacity: 0.75;
}
.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.08rem;
}
.legal-page p,
.legal-page li {
  margin: 0.65rem 0;
  line-height: 1.65;
}
.legal-page ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}

