/* ------------------------------------------------------------------
   SIREN LINE — public site
   Art direction: a night trailer. One continuous dark screen; the
   CGs carry the color, the type behaves like film titles.
   References studied: GTA VI (art is the page), Cyberpunk (one
   signature accent, characters as posters), A24 (generous black,
   huge stills, restrained editorial type).
------------------------------------------------------------------- */

:root {
  --black: #07080d;
  --black-soft: #0c0e15;
  --white: #f4efe6;
  --white-dim: rgba(244, 239, 230, 0.78);
  --white-faint: rgba(244, 239, 230, 0.55);
  --neon: #ff4f9a;
  --gold: #e8b96a;
  --line: rgba(244, 239, 230, 0.16);
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  --serif: "Libre Caslon Text", "Georgia", serif;
  --gutter: clamp(20px, 4.5vw, 72px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--black);
  color-scheme: dark;
}

html.age-lock,
html.age-lock body { overflow: hidden; }
html.no-js.age-lock,
html.no-js.age-lock body { overflow: auto; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.mono {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  font-size: 11px;
  color: var(--neon);
  margin-bottom: 18px;
}

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

.skip-link {
  position: fixed;
  top: -100px; left: 16px;
  z-index: 500;
  padding: 10px 16px;
  background: var(--white);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

::selection { background: var(--neon); color: var(--black); }

h1, h2, h3 {
  font-weight: 800;
  font-stretch: 118%;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.text-link {
  display: inline-block;
  min-height: 28px;
  padding-block: 3px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  color: var(--white-dim);
}
.text-link:hover { color: var(--neon); }

.button {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: #14060d;
}

/* ------------------------------------------------------------------
   Age gate — a title card before the feature.
------------------------------------------------------------------- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: var(--black);
  text-align: center;
}

html:not(.age-lock) .age-gate { display: none; }
html.no-js .age-gate { display: none; }

.age-gate__inner {
  width: min(640px, 100%);
  display: grid;
  justify-items: center;
}

.age-gate__logo {
  width: min(380px, 72vw);
  height: auto;
  margin-bottom: 34px;
}

.age-gate__kicker {
  font-size: 11px;
  color: var(--neon);
  margin-bottom: 20px;
}

.age-gate h1 { font-size: clamp(30px, 5.4vw, 52px); margin-bottom: 18px; }

.age-gate p { max-width: 52ch; color: var(--white-dim); }

.age-gate__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.age-gate__small {
  margin-top: 30px;
  font-size: 10px;
  color: var(--white-faint);
}

/* ------------------------------------------------------------------
   Header — invisible until it needs to exist.
------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 62px;
  padding: 0 var(--gutter);
  background: linear-gradient(rgba(7, 8, 13, 0.85), rgba(7, 8, 13, 0));
  transition: background-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 8, 13, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-brand {
  width: clamp(160px, 16vw, 238px);
  flex: 0 0 auto;
  text-decoration: none;
}
.site-brand img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}
.site-nav a {
  font-size: 11px;
  min-height: 28px;
  padding-block: 5px;
  text-decoration: none;
  color: var(--white-dim);
}
.site-nav a:hover { color: var(--white); }
.nav-status { color: var(--neon) !important; }

.nav-toggle {
  display: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 8px 2px;
}

/* ------------------------------------------------------------------
   Scene 01 — hero
------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.35) 0%, rgba(7, 8, 13, 0) 30%, rgba(7, 8, 13, 0.25) 62%, rgba(7, 8, 13, 0.96) 100%),
    linear-gradient(100deg, rgba(7, 8, 13, 0.6) 0%, rgba(7, 8, 13, 0) 55%);
}

.hero__content {
  position: relative;
  padding: 0 var(--gutter);
  max-width: 1060px;
  margin-bottom: clamp(28px, 5vh, 56px);
}

.hero__title {
  font-size: clamp(52px, 9vw, 136px);
  margin-bottom: 22px;
}

.hero__lede {
  max-width: 54ch;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--white-dim);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px var(--gutter) 20px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--white-faint);
}

.motion-toggle {
  min-height: 28px;
  padding-block: 5px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--white-faint);
}
.motion-toggle:hover { color: var(--neon); }

/* ------------------------------------------------------------------
   Scene 02 — the ship, full bleed
------------------------------------------------------------------- */

.scene {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-content: end;
  scroll-margin-top: 62px;
}

.scene__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.9) 0%, rgba(7, 8, 13, 0.12) 32%, rgba(7, 8, 13, 0.16) 60%, rgba(7, 8, 13, 0.97) 100%),
    linear-gradient(90deg, rgba(7, 8, 13, 0.55) 0%, rgba(7, 8, 13, 0) 60%);
}

.scene__content {
  position: relative;
  padding: clamp(160px, 30vh, 260px) var(--gutter) clamp(40px, 7vh, 72px);
  max-width: 900px;
}

.scene__content h2 {
  font-size: clamp(32px, 4.6vw, 64px);
  margin-bottom: 20px;
}

.scene__content p {
  max-width: 58ch;
  color: var(--white-dim);
}

.scene__note {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--white-dim);
}

/* ------------------------------------------------------------------
   The women — six character posters
------------------------------------------------------------------- */

.cast {
  padding: clamp(72px, 12vh, 130px) var(--gutter) clamp(40px, 7vh, 70px);
  scroll-margin-top: 62px;
}

.cast__head { max-width: 900px; margin-bottom: clamp(34px, 6vh, 56px); }
.cast__head h2 { font-size: clamp(30px, 4.4vw, 60px); }

.posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}

.poster { position: relative; }

.poster__hit {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 10 / 14;
  overflow: hidden;
  text-align: left;
  background: var(--black-soft);
}

.poster__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.poster__figure {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 88%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  transition: transform 0.35s ease;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.poster__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 13, 0.25) 0%, rgba(7, 8, 13, 0) 34%, rgba(7, 8, 13, 0.08) 58%, rgba(7, 8, 13, 0.93) 88%, rgba(7, 8, 13, 0.98) 100%);
  pointer-events: none;
}

.poster__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 clamp(14px, 1.8vw, 24px) clamp(14px, 2vw, 22px);
  display: grid;
  gap: 6px;
}

.poster__no {
  font-size: 10px;
  color: var(--neon);
}

.poster__name {
  font-weight: 800;
  font-stretch: 118%;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.poster__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--white-dim);
  max-width: 34ch;
}

.poster__hit:hover .poster__bg,
.poster__hit:focus-visible .poster__bg { filter: brightness(0.9) saturate(1.1); }
.poster__hit:hover .poster__figure,
.poster__hit:focus-visible .poster__figure { transform: translateX(-50%) scale(1.025); }

.cast__hint {
  margin-top: 22px;
  font-size: 10px;
  color: var(--white-faint);
}

@media (max-width: 1080px) {
  .posters { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .posters { grid-template-columns: 1fr; }
  .poster__hit { aspect-ratio: 10 / 12.5; }
  .poster__name { font-size: 38px; }
}

/* ------------------------------------------------------------------
   The camera — three shots
------------------------------------------------------------------- */

.camera {
  padding: clamp(80px, 13vh, 150px) var(--gutter);
  scroll-margin-top: 62px;
}

.camera__head { max-width: 940px; margin-bottom: clamp(40px, 7vh, 72px); }
.camera__head h2 { font-size: clamp(30px, 4.4vw, 60px); }

.shots { display: grid; gap: clamp(48px, 9vh, 96px); }

.shot {
  display: grid;
  gap: 26px;
  align-items: end;
}

.shot__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shot__copy h3 { font-size: clamp(24px, 2.6vw, 36px); margin-bottom: 12px; }
.shot__copy p { max-width: 44ch; color: var(--white-dim); font-size: 15px; }
.shot__copy .kicker { margin-bottom: 12px; }

@media (min-width: 940px) {
  .shot { grid-template-columns: 7fr 4fr; }
  .shot--reverse .shot__media { order: 2; }
  .shot--reverse .shot__copy { order: 1; justify-self: end; text-align: right; }
  .shot--reverse .shot__copy p { margin-left: auto; }
}

/* ------------------------------------------------------------------
   Official trailer
------------------------------------------------------------------- */

.site-trailer {
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  scroll-margin-top: 62px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 8%, rgba(244, 63, 138, 0.11), transparent 36%),
    #0b0910;
}

.site-trailer__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(28px, 7vw, 110px);
  margin-bottom: clamp(34px, 6vh, 58px);
}

.site-trailer__head h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 72px);
}

.site-trailer__head > p {
  max-width: 42ch;
  color: var(--white-dim);
  font-size: 15px;
}

.site-trailer__media {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}

.site-trailer video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(244, 232, 220, 0.2);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.site-trailer__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  color: var(--white-faint);
  font-size: 9px;
}

@media (max-width: 760px) {
  .site-trailer__head { grid-template-columns: 1fr; }
  .site-trailer__meta { align-items: flex-start; flex-direction: column; gap: 5px; }
}

/* ------------------------------------------------------------------
   Frames — filmstrip
------------------------------------------------------------------- */

.frames {
  padding: clamp(40px, 8vh, 80px) 0 clamp(72px, 12vh, 130px);
  scroll-margin-top: 62px;
}

.frames__head {
  padding: 0 var(--gutter);
  margin-bottom: clamp(26px, 4vh, 40px);
  max-width: 900px;
}
.frames__head h2 { font-size: clamp(28px, 3.6vw, 48px); }

.filmstrip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 var(--gutter) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.frame {
  flex: 0 0 auto;
  width: min(520px, 78vw);
  scroll-snap-align: start;
  text-align: left;
  padding: 0;
}

.frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.25s ease;
}
.frame:hover img, .frame:focus-visible img { filter: brightness(1.02); }

.frame__label {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  color: var(--white-faint);
}
.frame:hover .frame__label { color: var(--white-dim); }

/* ------------------------------------------------------------------
   Finale — coming soon
------------------------------------------------------------------- */

.finale {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  justify-items: center;
  scroll-margin-top: 62px;
}

.finale__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.9) 0%, rgba(7, 8, 13, 0.08) 26%, rgba(7, 8, 13, 0.3) 58%, rgba(7, 8, 13, 0.97) 92%);
}

.finale__content {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(240px, 42vh, 420px) var(--gutter) clamp(56px, 9vh, 90px);
  text-align: center;
  display: grid;
  justify-items: center;
}

.finale__content h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 18px; }
.finale__content > p { max-width: 56ch; color: var(--white-dim); }

.finale__advisory {
  margin-top: 26px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.8;
  color: var(--white-faint);
  max-width: 62ch;
}

.faq {
  width: min(620px, 100%);
  margin-top: clamp(40px, 7vh, 64px);
  text-align: left;
}

.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--white-faint);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  padding: 0 0 20px;
  color: var(--white-dim);
  font-size: 14.5px;
  max-width: 58ch;
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px var(--gutter) 34px;
  border-top: 1px solid var(--line);
}

.site-footer p { font-size: 10px; color: var(--white-faint); }

/* ------------------------------------------------------------------
   Lightbox — frame viewer
------------------------------------------------------------------- */

.lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  background: rgba(4, 5, 9, 0.98);
  color: var(--white);
  display: none;
  grid-template-rows: auto 1fr auto;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(4, 5, 9, 0.9); }

.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--gutter);
  font-size: 11px;
  color: var(--white-dim);
}
.lightbox__close { min-height: 28px; padding: 5px; }
.lightbox__close:hover { color: var(--neon); }

.lightbox__figure {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 8px var(--gutter);
  min-height: 0;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: min(74vh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__figure figcaption { font-size: 11px; color: var(--white-dim); }

.lightbox__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 14px var(--gutter) 24px;
}
.lightbox__nav button { min-height: 32px; padding: 6px 4px; font-size: 12px; letter-spacing: 0.14em; color: var(--white-dim); }
.lightbox__nav button:hover { color: var(--neon); }

/* ------------------------------------------------------------------
   Mobile navigation
------------------------------------------------------------------- */

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 62px 0 0 0;
    z-index: 190;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 40px;
    background: rgba(7, 8, 13, 0.98);
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }

  .site-nav a {
    font-family: var(--sans);
    font-weight: 800;
    font-stretch: 118%;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:hover { color: var(--neon); }
  .nav-status {
    font-family: var(--mono) !important;
    font-size: 12px !important;
    letter-spacing: 0.14em;
  }

  body.nav-open .site-header { background: rgba(7, 8, 13, 0.98); }
}

@media (max-width: 560px) {
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .shot__copy p { max-width: none; }
}

/* ------------------------------------------------------------------
   No-JS and reduced motion
------------------------------------------------------------------- */

.noscript {
  position: fixed;
  z-index: 400;
  right: 14px; bottom: 14px; left: 14px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  text-align: center;
}

html.no-js .motion-toggle,
html.no-js .cast__hint,
html.no-js .lightbox { display: none; }

@media (prefers-reduced-motion: reduce) {
  .motion-toggle { display: none; }
  *, *::before, *::after { transition: none !important; }
}
