:root {
  --bg: #061116;
  --panel: #0a1a20;
  --panel2: #0d222a;
  --text: #f3f1ec;
  --muted: #aab4b6;
  --red: #d2161c;
  --line: rgba(255, 255, 255, 0.13);
  --max: 1440px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #03090c;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.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;
  left: 12px;
  top: -60px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 4vw;
  background: #02080b;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
}
.site-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.035em;
}
.site-nav a:hover,
.site-nav a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(#db1a20, #ac0a0e);
  border: 1px solid #ed3035;
  color: #fff;
  padding: 12px 24px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.site-nav,
.button,
.eyebrow,
.about-copy h2,
.gallery h2,
.ticket-cta h2,
.tagline,
.person h3,
.mobile-accordion summary,
.watch-label,
.site-footer nav {
  font-family: var(--font-display);
}

.button:hover,
.button:focus {
  filter: brightness(1.12);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
}
.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: #05090b;
}
.hero-art {
  position: absolute;
  inset: 0;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.montage-protest {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53%;
  height: 44%;
  clip-path: polygon(10% 12%, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.montage-protest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 7, 9, 0.9) 0%,
      rgba(2, 7, 9, 0.48) 42%,
      rgba(2, 7, 9, 0.12) 72%
    ),
    linear-gradient(0deg, rgba(2, 7, 9, 0.6), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(430px, 42vw);
  padding: 100px 0 72px 6vw;
  text-shadow: 0 2px 18px #000;
}

.hero-copy h1 span {
  display: block;
}
.tagline {
  font-weight: 900;
  color: #ef1f26;
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-copy p {
  max-width: 380px;
  font-size: 16px;
}
.hero-actions {
  margin-top: 28px;
}
.hero-cert {
  position: absolute;
  right: 3.2vw;
  bottom: 24px;
  z-index: 5;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}
.section-pad {
  max-width: var(--max);
  margin: auto;
  padding: 48px 4vw;
}
.content-row {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 1.15fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(180deg, #061116, #08171c);
}
.eyebrow {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.about-copy h2,
.gallery h2,
.ticket-cta h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.about-copy p {
  color: #d5dcdd;
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  color: #d8e0e1;
  font-size: 13px;
}
.facts span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.fact-cert {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fact-cert img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.trailer-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #000;
}
.trailer-card iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.trailer-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}
.trailer-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trailer-poster:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 50%);
}
.play {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  font-size: 28px;
  padding-left: 4px;
}
.watch-label {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 18px;
  text-transform: uppercase;
  font-weight: 800;
}
.cast-card {
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(8, 22, 27, 0.5);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.person {
  text-align: center;
}
.person img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  background: #14242a;
}
.person h3 {
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 8px 0 2px;
}
.person p {
  font-size: 12px;
  color: #c9d0d1;
  margin: 0;
}
.gallery {
  background: #061116;
  border-top: 1px solid var(--line);
}
.section-heading {
  margin-bottom: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gallery-item {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #111;
  cursor: zoom-in;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.ticket-cta {
  max-width: var(--max);
  margin: auto;
  padding: 32px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(90deg, #210709, #4e0d10 55%, #210709);
  border-top: 1px solid #8a1a1e;
  border-bottom: 1px solid #8a1a1e;
}
.ticket-cta h2 {
  margin: 0;
}
.partners {
  max-width: var(--max);
  margin: auto;
  padding: 28px 4vw;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 280px));
  justify-content: center;
  gap: 30px;
  background: #071116;
}
.ticket-partner {
  min-height: 64px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px;
  color: #747e80;
  text-align: center;
}
.ticket-partner img {
  width: auto;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}
.partner-ticket {
  min-width: 150px;
  padding: 10px 18px;
}
.site-footer {
  max-width: var(--max);
  margin: auto;
  padding: 28px 4vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.site-footer nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  text-transform: uppercase;
}
.site-footer p {
  color: #9aa5a8;
  text-align: right;
}
.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 7, 8, 0.97);
  color: #fff;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(3px);
}
.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 64px minmax(0, 1fr);
}
.lightbox-toolbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.lightbox-count {
  color: #cbd1d3;
  font-size: 13px;
}
.lightbox-figure {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 18px;
}
.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 145px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
}
.lightbox-caption {
  width: min(100%, 1000px);
  min-height: 28px;
  padding-top: 12px;
  color: #e4e7e8;
  text-align: center;
  font-size: 14px;
}
.lightbox-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  grid-row: 2;
  align-self: center;
  width: 52px;
  height: 72px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255,255,255,0.18);
}
.lightbox-prev {
  grid-column: 1;
  justify-self: center;
}
.lightbox-next {
  grid-column: 3;
  justify-self: center;
}
.mobile-accordion {
  display: none;
}
@media (max-width: 980px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }
  .brand img {
    width: 124px;
  }
  .header-ticket {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }
  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #061116;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    min-height: 610px;
  }
  .hero-art > img {
    object-position: 58% center;
  }
  .montage-protest {
    display: none;
  }
  .tear {
    height: 6px;
  }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 7, 9, 0.92) 0%, rgba(2, 7, 9, 0.18) 58%),
      linear-gradient(90deg, rgba(2, 7, 9, 0.4), transparent);
  }
  .hero-copy {
    width: auto;
    padding: 280px 24px 36px;
  }
  .hero-logo-title img {
    width: min(78vw, 300px);
  }
  .hero-copy p {
    display: none;
  }
  .hero-cert {
    width: 52px;
    height: 52px;
    right: 20px;
    bottom: 24px;
  }
  .mobile-accordion {
    display: block;
    background: #07151b;
  }
  .mobile-accordion details {
    border-bottom: 1px solid var(--line);
  }
  .mobile-accordion summary {
    cursor: pointer;
    padding: 18px 20px;
    text-transform: uppercase;
    font-weight: 800;
    list-style: none;
  }
  .mobile-accordion summary::-webkit-details-marker {
    display: none;
  }
  .mobile-accordion summary:after {
    content: "+";
    float: right;
    font-size: 22px;
    font-weight: 400;
  }
  .mobile-accordion details[open] summary:after {
    content: "−";
  }
  .details-inner {
    padding: 0 20px 18px;
    color: #c9d2d3;
  }
  .content-row {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .about-copy {
    display: none;
  }
  .trailer-wrap {
    order: 1;
  }
  .cast-card {
    order: 2;
    border-left: 0;
    border-right: 0;
  }
  .cast-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery {
    padding: 28px 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ticket-cta {
    margin: 0;
    padding: 26px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .ticket-cta .button {
    width: 100%;
  }
  .partners {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: center;
    padding: 24px 20px;
  }
  .lightbox-shell {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }
  .lightbox-nav {
    width: 42px;
    height: 64px;
    font-size: 40px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
  .site-footer p {
    text-align: center;
  }
  .play {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 300px;
    height: 300px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero-logo-title img {
    width: min(82vw, 100px);
  }
  .tagline {
    font-size: 16px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cast-grid {
    gap: 6px;
  }
  .person h3 {
    font-size: 10px;
  }
  .person p {
    font-size: 10px;
  }
  .partners {
    grid-template-columns: minmax(0, 320px);
  }
  .ticket-partner img {
    max-width: 130px;
    max-height: 48px;
  }
  .lightbox-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: 56px minmax(0, 1fr);
  }
  .lightbox-toolbar {
    padding: 7px 10px;
  }
  .lightbox-figure {
    padding: 14px 4px 12px;
  }
  .lightbox-figure img {
    max-height: calc(100vh - 125px);
  }
  .lightbox-nav {
    width: 38px;
    height: 56px;
    font-size: 36px;
  }
  .lightbox-caption {
    padding: 10px 8px 0;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .gallery-item img {
    transition: none;
  }
}
