:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ffffff;
  --header-h: 76px;
  --max: 1280px;
  --font-display: "Josefin Sans", sans-serif;
  --font-body: "Josefin Sans", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.35) 70%, transparent);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: 13px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero--secondary {
  min-height: 72vh;
}

.hero img.hero-bg,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.25), rgba(5, 5, 5, 0.55) 55%, var(--bg));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-kicker,
.film-card h3,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin: 0;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: 0.42em;
}

.hero p {
  margin: 18px 0 0;
  font-size: clamp(12px, 1.6vw, 16px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #dedede;
}

.section {
  padding: 96px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.42em;
  margin-bottom: 12px;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 16px;
}

.lede {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.aerial-list {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 640px;
  display: grid;
  gap: 18px;
}

.aerial-list li {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  letter-spacing: 0.08em;
  font-size: 15px;
}

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

.film-card,
.vfx-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  background: #111;
}

.film-card img,
.vfx-card img,
.still img,
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.film-card:hover img,
.vfx-card:hover img,
.still:hover img,
.shot:hover img {
  transform: scale(1.08);
}

.film-card figcaption,
.vfx-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.film-card h3,
.vfx-card h3 {
  font-size: 14px;
  letter-spacing: 0.22em;
}

.film-card span,
.vfx-card span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cfcfcf;
}

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

.still,
.shot {
  cursor: zoom-in;
  overflow: hidden;
  background: #111;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0.9;
}

.logos img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  margin-top: 28px;
  letter-spacing: 0.06em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-meta a {
  display: inline-block;
  margin-right: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: #fff;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select option {
  color: #000;
}

.form-success {
  display: none;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.form-success.is-visible {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 32px 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: calc(var(--header-h) + 72px) 32px 48px;
  text-align: center;
}

.page-hero p.tag {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.credits {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
}

.credits p {
  margin: 4px 0;
}

.embed {
  position: relative;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 48px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 32px 96px;
  max-width: 1400px;
  margin: 0 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 32px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1400px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.legal {
  max-width: 780px;
  margin: 0 auto;
  color: #cfcfcf;
}

@media (max-width: 900px) {
  .film-grid,
  .vfx-grid,
  .about-grid,
  .contact-wrap,
  .stills-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .stills-grid,
  .shot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 5, 5, 0.96);
    padding: 12px 0 24px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 32px;
    border-top: 1px solid var(--line);
  }

  .site-header {
    padding: 0 18px;
  }

  .site-footer,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}


.page-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 16px;
}

.film-card,
.vfx-card {
  display: block;
}

.vfx-card::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 72px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  opacity: 0.9;
}
