:root {
  --black: #090909;
  --ink: #171717;
  --paper: #f6f1df;
  --paper-2: #fff9e7;
  --yellow: #f5c400;
  --yellow-2: #ffdf4d;
  --white: #ffffff;
  --muted: #d8d0b6;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.11;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 9, 0.74);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: clamp(170px, 22vw, 260px);
  padding: 6px 8px;
  background: rgba(9, 9, 9, 0.88);
  box-shadow: 5px 5px 0 rgba(245, 196, 0, 0.85);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 58px;
  overflow: hidden;
  border-bottom: 8px solid var(--yellow);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.9) 0%, rgba(9, 9, 9, 0.52) 42%, rgba(9, 9, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.88) 0%, rgba(9, 9, 9, 0.1) 58%),
    url("assets/images/hero-cinema.jpg") center / cover;
  transform: scale(1.02);
}

.hero-grain,
.gallery::before,
.support::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.17;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0 1px, transparent 1px 13px);
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.6rem, 10vw, 8.8rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 var(--black), 10px 10px 0 rgba(245, 196, 0, 0.45);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--paper-2);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-logo {
  width: min(540px, 92vw);
  margin: 0 0 28px;
  padding: 18px;
  background: rgba(9, 9, 9, 0.76);
  box-shadow: 10px 10px 0 rgba(245, 196, 0, 0.72);
}

.hero-actions,
.contact-grid,
.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 2px solid currentColor;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.button.primary {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
}

.button.ghost {
  color: var(--paper);
  background: rgba(9, 9, 9, 0.42);
}

.button.dark {
  color: var(--yellow);
  background: var(--black);
}

.button:hover,
.social-strip a:hover,
.contact-grid a:hover {
  transform: translateY(-2px);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 58px;
  z-index: 2;
  width: min(270px, 28vw);
  padding: 18px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.9);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-card span {
  font-weight: 800;
  line-height: 1.35;
}

.social-strip {
  position: sticky;
  top: 73px;
  z-index: 12;
  justify-content: center;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--black);
  background: var(--yellow);
}

.social-strip a {
  padding: 8px 14px;
  border: 2px solid var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.section {
  padding: clamp(62px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.about {
  color: var(--black);
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
}

.about h2,
.section-heading h2,
.gallery h2,
.media h2,
.support h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.text-stack p {
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  font-weight: 700;
  line-height: 1.58;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--yellow);
}

.metrics article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--paper);
  background: var(--black);
}

.metrics span {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.metrics strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.projects {
  background: var(--black);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  min-height: 100%;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
  box-shadow: var(--shadow);
}

.project-card img {
  aspect-ratio: 1.25;
  object-fit: cover;
  border-bottom: 6px solid var(--yellow);
  filter: contrast(1.06) saturate(0.95);
}

.project-card div {
  padding: 22px;
}

.project-card p {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.project-card span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.project-card.feature {
  grid-column: span 1;
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(62px, 8vw, 108px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
}

.gallery-copy,
.photo-grid {
  position: relative;
  z-index: 1;
}

.gallery-copy p {
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-link {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.photo-grid img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 5px solid var(--black);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
}

.media {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
  background: var(--paper);
  color: var(--black);
}

.media-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  border: 4px solid var(--black);
}

.media-panel p {
  margin: 22px 0 28px;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.55;
}

.media-image img,
.media-image video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 4px solid var(--black);
  background: var(--black);
}

.support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
}

.support > * {
  position: relative;
  z-index: 1;
}

.support p:not(.eyebrow) {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.45;
}

.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid a {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 850;
  transition: transform 160ms ease;
}

.contact-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--black);
  background: var(--paper);
  font-weight: 900;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding: clamp(82px, 10vw, 142px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 82px);
  overflow: hidden;
  border-bottom: 8px solid var(--yellow);
  background: var(--black);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.52;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.95), rgba(9, 9, 9, 0.2)), var(--page-image, url("assets/images/hero-cinema.jpg")) center / cover;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--paper-2);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  font-weight: 760;
  line-height: 1.45;
}

.page-logo-mark {
  width: min(420px, 78vw);
  margin-bottom: 30px;
  padding: 14px;
  background: rgba(9, 9, 9, 0.75);
  box-shadow: 8px 8px 0 rgba(245, 196, 0, 0.68);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 98px) clamp(20px, 5vw, 72px);
  color: var(--black);
  background: var(--paper);
}

.split-section.dark {
  color: var(--paper);
  background: var(--black);
}

.split-section h2,
.page-section h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.split-section p,
.page-section p {
  font-size: 1.06rem;
  font-weight: 740;
  line-height: 1.58;
}

.page-section {
  padding: clamp(58px, 7vw, 98px) clamp(20px, 5vw, 72px);
}

.full-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.full-gallery figure {
  margin: 0;
  color: var(--paper);
  background: #111;
}

.full-gallery img {
  aspect-ratio: 1.15;
  height: auto;
  object-fit: cover;
  border: 4px solid var(--yellow);
}

.full-gallery figcaption {
  padding: 10px 12px 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-list article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
}

.project-list h2 {
  color: var(--yellow);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
}

.video-feature video {
  width: 100%;
  min-height: 360px;
  border: 4px solid var(--yellow);
  background: var(--black);
}

.active-nav {
  color: var(--yellow);
}

.dark-section {
  color: var(--paper);
  background: var(--black);
}

.poster-panel img {
  max-height: 820px;
  width: 100%;
  object-fit: contain;
  border: 4px solid var(--black);
  background: var(--black);
  box-shadow: 10px 10px 0 rgba(245, 196, 0, 0.85);
}

.dark-section .section-label,
.split-section .section-label {
  color: var(--yellow);
}

.feature-list,
.curriculum-grid ul {
  padding-left: 1.1em;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.feature-list li,
.curriculum-grid li {
  margin-bottom: 10px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  margin-top: 24px;
}

.curriculum-grid ul {
  margin: 0;
  padding: 24px 24px 24px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  color: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--black);
}

.video-card div {
  padding: 22px;
}

.video-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  line-height: 0.98;
}

.video-card p {
  color: var(--muted);
  font-weight: 750;
}

.feature-video {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.feature-video iframe {
  height: 100%;
  min-height: 360px;
}

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    margin-top: 34px;
  }

  .about-grid,
  .gallery,
  .media,
  .support,
  .split-section,
  .video-feature,
  .feature-video {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .metrics,
  .contact-grid,
  .project-list,
  .media-grid,
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .feature-video {
    grid-column: span 1;
  }

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

  .full-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: 170px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.97);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 720px;
    padding: 126px 20px 42px;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.4rem);
  }

  .social-strip {
    position: static;
    justify-content: flex-start;
  }

  .social-strip a {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .section,
  .gallery,
  .media,
  .support {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .full-gallery {
    grid-template-columns: 1fr;
  }

  .photo-grid img,
  .media-image img,
  .media-image video {
    min-height: 260px;
  }

  .footer {
    display: grid;
  }
}
