:root {
  --bg: #050505;
  --fg: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.68);
  --hair: rgba(245, 245, 245, 0.14);
  --max: 920px;
  --grain-opacity: 0.11;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

/* Home: title bold; kicker, tagline, button thin */
.hero .title {
  font-weight: 700;
}

.hero .kicker,
.hero .lede,
.hero__cta {
  font-weight: 200;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(245, 245, 245, 0.45);
  text-underline-offset: 4px;
}

.skip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 6px 10px;
  border: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
}

.skip:focus {
  opacity: 1;
  pointer-events: auto;
  outline: none;
}

/* Header */
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand__logo {
  height: 34px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(1.05);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
  font-size: 10.5px;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:hover {
  color: var(--fg);
  text-decoration: none;
}

/* Home — video */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 50%, transparent, rgba(0, 0, 0, 0.35));
}

.hero__inner {
  text-align: center;
  padding: 100px 24px 48px;
  max-width: var(--max);
}

.kicker {
  margin: 0 0 14px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.title {
  margin: 0;
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
}

.lede {
  margin: 16px 0 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.82);
}

.hero__cta {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background 200ms ease, border-color 200ms ease;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.hero__social {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 2;
}

/* Content sections — B&W grain backgrounds */
.section--panel {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 20px 80px;
  isolation: isolate;
}

.section__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #0a0a0a;
  background-image: var(--section-bg, none);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(108%) brightness(1.08);
  transform: scale(1.03);
  opacity: 1;
  transition: opacity 2.8s ease-in-out;
}

.section__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.52) 45%,
    rgba(0, 0, 0, 0.58)
  );
}

.section__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.section__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 36px;
}

.section__head h2 {
  margin: 0;
  font-size: 11.5px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rule {
  width: 48px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.35);
}

.section__body {
  margin: 0 auto;
  max-width: 68ch;
  text-align: center;
  color: rgba(245, 245, 245, 0.88);
}

.section__intro {
  margin: -12px auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* Team */
.members {
  display: grid;
  gap: 48px;
  max-width: 68ch;
  margin: 0 auto;
  text-align: center;
}

.member__name {
  margin: 0;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member__role {
  margin: 10px 0 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.78);
}

.member__bio {
  margin: 16px 0 0;
  color: var(--muted);
}

.team-list {
  margin: 40px auto 0;
  max-width: 68ch;
  text-align: center;
}

.team-list__title {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.86);
}

.team-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.team-list__items li + li {
  margin-top: 10px;
}

.team-list__name {
  font-weight: 200;
}

.team-list__role {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

/* Works */
.works {
  display: grid;
  gap: 28px;
  max-width: 52ch;
  margin: 0 auto;
  text-align: center;
}

.work {
  display: block;
}

.work--link {
  padding: 8px 0;
  transition: opacity 200ms ease;
}

.work--link:hover {
  opacity: 0.82;
  text-decoration: none;
}

.work__title {
  margin: 0;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work__type {
  margin: 8px 0 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.work__awards {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.5;
}

.developing {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.developing__label {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.8);
}

.developing__list a {
  font-weight: 200;
}

.developing__list a:hover {
  color: var(--fg);
}

.developing__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.developing__list li + li {
  margin-top: 10px;
}

/* Screening */
.screening__posters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
  align-items: stretch;
}

.screening__poster {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.screening__frame {
  flex: 1;
  width: 100%;
  aspect-ratio: 2 / 3;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.screening__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.screening__poster figcaption {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.screening__cta-wrap {
  margin: 36px 0 0;
  text-align: center;
}

.screening__tickets {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background 200ms ease, border-color 200ms ease;
}

.screening__tickets:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.screening__note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.screening__share {
  margin: 32px auto 0;
  max-width: 52ch;
  text-align: center;
}

.screening__share-label {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.78);
}

.screening__share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.share-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--fg);
  padding: 6px 14px;
  font: inherit;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* Services */
.services {
  max-width: 68ch;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 32px;
}

.services__title {
  margin: 0;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services__desc {
  margin: 12px 0 0;
  color: var(--muted);
}

.services__gear {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.services__gear li + li {
  margin-top: 8px;
}

/* Contact */
.contact {
  max-width: 52ch;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  text-align: center;
}

.contact__row {
  display: grid;
  gap: 6px;
}

.contact__k {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.82);
}

.contact__v {
  color: var(--muted);
  word-break: break-word;
}

.foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}

.foot__copy {
  text-align: center;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(245, 245, 245, 0.75);
  transition: color 200ms ease, transform 200ms ease;
}

.social__link:hover {
  color: var(--fg);
  transform: scale(1.08);
  text-decoration: none;
}

.social__icon {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 640px) {
  .nav {
    font-size: 9.5px;
    gap: 8px 12px;
  }

  .brand__logo {
    height: 28px;
  }

  .section--panel {
    padding: 88px 16px 64px;
  }

  .screening__posters {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .screening__frame {
    min-height: 380px;
  }
}

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

  .hero__video {
    display: none;
  }

  .hero {
    background: #111 url("./assets/section-about.png") center / cover no-repeat;
  }

  .hero__shade {
    background: rgba(0, 0, 0, 0.65);
  }
}
