@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&family=Josefin+Sans:wght@100;300&display=swap');

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

:root {
  --black: #0a0a0a;
  --white: #faf9f7;
  --mid: #6b6b6b;
  --rule: #d8d4ce;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'DM Sans', Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}

nav.scrolled {
  background: var(--white);
  border-bottom-color: var(--rule);
}

nav.light {
  background: var(--white);
  border-bottom-color: var(--rule);
}

.nav-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.4s ease;
}

nav.scrolled .nav-logo,
nav.light .nav-logo { color: var(--black); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.4s ease;
}

nav.scrolled .nav-links a,
nav.light .nav-links a { color: var(--black); }

nav.scrolled .nav-links a:hover,
nav.light .nav-links a:hover { color: var(--mid); }

.nav-links a.active { color: var(--mid); }
nav.light .nav-links a.active { color: var(--mid); }

/* ── PAGE HEADER (non-hero pages) ── */
.page-header {
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--rule);
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.page-title em {
  font-style: italic;
  color: var(--mid);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse at 8% 92%, rgba(80, 56, 24, 0.55) 0%, transparent 48%),
    radial-gradient(ellipse at 75% 12%, rgba(14, 10, 6, 0.7) 0%, transparent 52%),
    radial-gradient(ellipse at 95% 75%, rgba(10, 8, 4, 0.5) 0%, transparent 38%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-statement {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-statement h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.2s;
}

.hero-statement h1 em {
  font-style: italic;
  color: rgba(250, 249, 247, 0.72);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(250, 249, 247, 0.72);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
  position: relative;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
  z-index: 1;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--mid);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTION BASE ── */
section {
  padding: 100px 48px;
  border-top: 1px solid var(--rule);
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── FEATURED FILMS (home) ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.featured-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.featured-thumb-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}

.featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 50% 10%;
  transition: transform 800ms 100ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.featured-card:hover .featured-thumb { transform: scale(1.03); }
.featured-card:hover .featured-title { color: var(--mid); }

.featured-year {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 8px;
}

.featured-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.featured-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
}

.featured-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--rule);
  padding: 5px 12px;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.see-all-link::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.see-all-link:hover { color: var(--mid); }
.see-all-link:hover::after { width: 48px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-headline em {
  font-style: italic;
  color: var(--mid);
}

.about-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a3a;
}

.about-body p + p { margin-top: 24px; }

.about-credentials {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.credential-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}

.credential-name {
  font-weight: 400;
  letter-spacing: 0.01em;
}

.credential-detail {
  color: var(--mid);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ── FILMS ── */
.films-filter {
  display: flex;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.filter-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  padding: 0 0 18px;
  margin-right: 36px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.filter-btn:hover { color: var(--black); }
.filter-btn.active { color: var(--black); }

.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--black);
}

.films-group { margin-bottom: 64px; }

.films-group-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.film-row {
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  gap: 48px;
  cursor: default;
}

.film-thumb-wrap {
  overflow: hidden;
  width: 560px;
  aspect-ratio: 16 / 9;
}

.film-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 50% 10%;
  transition: transform 800ms 100ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.film-row:hover .film-thumb { transform: scale(1.04); }
.film-row:hover .film-title { color: var(--mid); }

.film-info {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.film-year {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 10px;
}

.film-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.2s;
  margin-bottom: 12px;
}

.film-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.film-logline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 560px;
}

.film-accolade {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  white-space: nowrap;
}

.film-status {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  white-space: nowrap;
}

/* ── ENQUIRY GRID ── */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule);
}

.enquiry-block {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--rule);
}

.enquiry-block:last-child {
  border-right: none;
  padding-left: 40px;
  padding-right: 0;
}

.enquiry-block:nth-child(2) {
  padding-left: 40px;
  padding-right: 40px;
}

.enquiry-type {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.enquiry-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3a3a;
}

.enquiry-link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.enquiry-link:hover { color: var(--mid); }

/* ── WORK WITH US ── */
.work-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.work-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.work-headline em {
  font-style: italic;
  color: var(--mid);
}

.work-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a3a;
}

.work-body p + p { margin-top: 24px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 72px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--mid); }

.footer-contact-row { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 3px; }

.footer-contact-type {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
}

.footer-contact-email {
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-email:hover { color: var(--mid); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  margin-top: 24px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
}

.footer-socials { display: flex; gap: 28px; }

.footer-socials a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--black); }

/* ── HERO VIDEO BACKGROUND ── */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
}

.hero.has-video::after { z-index: 2; }
.hero.has-video .hero-statement,
.hero.has-video .hero-sub,
.hero.has-video .hero-scroll { z-index: 3; }

/* ── FILM PAGE HERO ── */
.film-page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
  background-color: var(--black);
}

.film-page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.film-page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.film-page-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.45) 40%,
    rgba(10, 10, 10, 0.12) 100%
  );
}

.film-page-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.film-page-type {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.5);
  margin-bottom: 20px;
}

.film-page-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.film-page-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(250, 249, 247, 0.35);
  padding: 6px 14px;
}

.film-page-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.5);
  border: 1px solid rgba(250, 249, 247, 0.2);
  padding: 6px 14px;
}

/* ── FILM PAGE BODY ── */
.film-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 52px;
}

.back-link::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.back-link:hover { color: var(--black); }
.back-link:hover::before { width: 40px; }

.film-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}

.film-sidebar-group { display: flex; flex-direction: column; gap: 5px; }

.film-sidebar-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.film-sidebar-value {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.65;
}

.film-tagline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 40px;
}

.film-detail-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a3a;
}

.film-detail-body p + p { margin-top: 20px; }

.film-screenings {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.film-screenings-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.film-screening-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}

.film-screening-name { font-weight: 400; }
.film-screening-detail { color: var(--mid); font-weight: 300; font-size: 12px; }

/* ── FILM PAGE NAVIGATION ── */
.film-page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
}

.film-page-nav-link {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px 48px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
}

.film-page-nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  transition: background 0.4s ease;
  z-index: 0;
}

.film-page-nav-link:hover::after { background: rgba(10, 10, 10, 0.42); }

.film-page-nav-content {
  position: relative;
  z-index: 1;
}

.film-page-nav-next {
  border-left: 1px solid rgba(250, 249, 247, 0.12);
}

.film-page-nav-next .film-page-nav-content {
  text-align: right;
  margin-left: auto;
}

.film-page-nav-direction {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.5);
  margin-bottom: 10px;
}

.film-page-nav-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ── FILM ROW LINK ── */
a.film-row {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ── EMPTY THUMBNAIL PLACEHOLDER ── */
.film-thumb-wrap--empty {
  background: #141414;
}

/* ── BRANDED MESSAGE ── */
.branded-message {
  padding: 0 0 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a3a;
}

/* ── VIDEO EMBEDS ── */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 48px;
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
}

.video-embed iframe,
.video-grid-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.video-grid-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
}

/* Thumbnail image */
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 50% 10%;
  transition: transform 800ms 100ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.video-embed:hover .video-thumb-img,
.video-grid-item:hover .video-thumb-img { transform: scale(1.04); }

/* Dark overlay */
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.35);
  transition: background 0.3s ease;
  z-index: 1;
}

.video-embed:hover .video-thumb-overlay,
.video-grid-item:hover .video-thumb-overlay { background: rgba(10, 10, 10, 0.18); }

/* Play button */
.video-thumb-play {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(250, 249, 247, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.video-embed:hover .video-thumb-play,
.video-grid-item:hover .video-thumb-play {
  background: rgba(250, 249, 247, 0.12);
  border-color: rgba(250, 249, 247, 1);
}

.video-thumb-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent rgba(250, 249, 247, 0.9);
  margin-left: 3px;
}

/* ── VIDEO GROUPS & CAPTIONS ── */
.video-group { margin-bottom: 56px; }

.video-group-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-group-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}

/* ── CLIENTS STRIP ── */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 56px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  margin-top: 48px;
}

.clients-strip-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  width: 100%;
  margin-bottom: 8px;
}

.client-logo {
  height: 28px;
  width: auto;
}

/* ── FILM PARTNER LOGO ── */
.film-partner-logo {
  display: block;
  height: 33px;
  width: auto;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .clients-strip { gap: 28px 36px; }
  .client-logo { height: 22px; }
}

.video-item { display: flex; flex-direction: column; }

.video-caption { padding-top: 12px; }

.video-caption-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 4px;
}

.video-caption-role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 300;
}

.video-grid--2 { grid-template-columns: 1fr 1fr; }

.video-subgroup { margin-top: 40px; }

.video-subgroup-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
}

.video-grid--social {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.video-grid--social .video-grid-item {
  aspect-ratio: 4 / 5;
}

/* ── REEL PLACEHOLDER ── */
.reel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  text-decoration: none;
  margin-bottom: 64px;
  transition: opacity 0.3s ease;
}

.reel-placeholder:hover { opacity: 0.85; }

.reel-placeholder-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.4);
}

/* ── CREDIT OUTSIDE NOTE ── */
.credit-outside-note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  font-style: italic;
  padding: 5px 0 10px;
  border-bottom: 1px solid var(--rule);
}

.credential-row--external { border-bottom: none; }

/* ── IMDB LINK ── */
.imdb-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.imdb-link:hover { color: var(--black); }

.inline-link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.inline-link:hover { color: var(--mid); }

/* ── PRESS GRID ── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.press-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.press-card-thumb-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 16px;
}

.press-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 700ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.press-card:hover .press-card-thumb { transform: scale(1.05); }

.press-card-outlet {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 8px;
}

.press-card-headline {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.press-card:hover .press-card-headline { color: var(--mid); }


/* ── FILM SYNOPSIS ── */
.film-synopsis {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.film-synopsis-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

/* ── IMOJE ABOUT PHOTOS ── */
.imoje-photos-row {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.imoje-photo-divider {
  width: 1px;
  background: var(--rule);
  flex-shrink: 0;
  margin: 0 20px;
}

.imoje-about-photo-wrap {
  flex: 1;
  overflow: hidden;
  display: block;
}

.imoje-about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 700ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.imoje-about-photo-wrap:hover .imoje-about-photo { transform: scale(1.08); }

/* ── FILM CREDITS TABLE ── */
.film-credits {
  margin-bottom: 48px;
}

.film-credits-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.film-credit-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.film-credit-role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 2px;
}

.film-credit-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.7;
}

/* ── SIDEBAR PARTNERS ── */
.film-sidebar-partners {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.film-sidebar-partners-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}

.film-sidebar-partner {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.8;
}

/* ── FILM ATTRIBUTION NOTE ── */
.film-attribution {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  font-style: italic;
  line-height: 1.7;
}

/* ── FILM HERO — NO IMAGE ── */
.film-page-hero--plain {
  background-image:
    radial-gradient(ellipse at 12% 88%, rgba(50, 35, 12, 0.35) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 12%, rgba(8, 6, 4, 0.6) 0%, transparent 48%);
}

.film-page-hero--plain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
  z-index: 200;
  min-width: 44px;
  min-height: 44px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, background 0.4s ease;
  transform-origin: center;
}

nav.scrolled .nav-hamburger span,
nav.light .nav-hamburger span { background: var(--black); }

.nav-hamburger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 20px 24px; }
  .nav-hamburger { display: flex; }

  /* MOBILE MENU OVERLAY */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--white);
    padding: 92px 24px 48px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--rule);
  }

  .nav-links a {
    display: block;
    padding: 20px 0;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--black) !important;
    transition: color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--mid) !important; }

  /* HERO */
  .hero { padding: 0 24px 60px; }
  .hero-scroll { right: 24px; bottom: 32px; }
  .hero-sub { line-height: 1.5; letter-spacing: 0.02em; }

  /* PAGES */
  .page-header { padding: 120px 24px 60px; }
  section { padding: 72px 24px; }

  /* GRIDS */
  .about-grid,
  .work-inner,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* FILM LIST */
  .film-row { grid-template-columns: 1fr; gap: 20px; }
  .film-thumb-wrap { width: 100%; }

  /* FILTER BUTTONS — larger tap targets */
  .filter-btn {
    padding: 16px 0;
    min-height: 44px;
    display: flex;
    align-items: flex-end;
  }

  /* FILM PAGE HERO */
  .film-page-hero { padding: 0 24px 60px; }

  /* FILM PAGE BODY — single column */
  .film-body { grid-template-columns: 1fr; gap: 40px; }

  .film-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
  }

  .film-sidebar-group { min-width: 100px; }

  .back-link { margin-bottom: 36px; }

  /* VIDEO GRID */
  .video-grid,
  .video-grid--2 { grid-template-columns: 1fr; gap: 20px; }

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

  .video-embed { max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }

  .video-reel-wrap,
  .video-item--standalone { max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }

  /* FILM NAV */
  .film-page-nav { grid-template-columns: 1fr; height: auto; }
  .film-page-nav-link { min-height: 180px; padding: 28px 24px; }
  .film-page-nav-next { border-left: none; border-top: 1px solid rgba(250, 249, 247, 0.12); }
  .film-page-nav-next .film-page-nav-content { text-align: left; margin-left: 0; }

  /* CREDITS — narrower role column */
  .film-credit-row { grid-template-columns: 110px 1fr; gap: 12px; }

  /* SCREENINGS — stack on narrow */
  .film-screening-row {
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    padding: 14px 0;
  }

  .film-screenings { margin-top: 32px; padding-top: 28px; }

  /* CREDENTIALS — stack on narrow */
  .credential-row {
    flex-direction: column;
    gap: 2px;
    padding: 14px 0;
  }

  /* ENQUIRY */
  .enquiry-grid { grid-template-columns: 1fr; }

  .enquiry-block,
  .enquiry-block:nth-child(2),
  .enquiry-block:last-child {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .enquiry-block:last-child { border-bottom: none; }

  /* FOOTER */
  footer {
    padding: 48px 24px 36px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-contact-email {
    word-break: break-all;
  }

  /* PRESS */
  .press-grid { grid-template-columns: 1fr; gap: 40px; }
}
