/* ============================================================
   MORE THAN ILLUSION MEDIA — Global Stylesheet
   John Swindells · Melbourne, Australia
   ============================================================ */

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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  --bg:           #0a0a0a;
  --bg-2:         #0f0f0f;
  --bg-card:      #131313;
  --bg-card-h:    #1a1a1a;
  --gold:         #c9a96e;
  --gold-l:       #d4b87e;
  --gold-dim:     rgba(201, 169, 110, 0.12);
  --gold-border:  rgba(201, 169, 110, 0.35);
  --white:        #f0ece4;
  --white-d:      rgba(240, 236, 228, 0.65);
  --muted:        #5a5550;
  --border:       rgba(255, 255, 255, 0.07);
  --border-l:     rgba(255, 255, 255, 0.12);

  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:         0.4s ease;
  --ease-slow:    0.9s ease;
  --max-w:        1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

.gold       { color: var(--gold); }
.muted-text { color: var(--muted); }
.serif      { font-family: var(--serif); }
.italic     { font-style: italic; }

/* ============================================================
   NAVIGATION
   ============================================================ */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.6rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  padding: 1.1rem 3rem;
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-d);
  font-weight: 300;
  white-space: nowrap;
  transition: color var(--ease);
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-d);
  transition: color var(--ease);
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 501;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.35s ease;
}

/* ============================================================
   INTRO SEQUENCE
   ============================================================ */

#intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

#intro-bg {
  position: absolute;
  inset: 0;
  background: #0a0a00 url('../hero-bg.webp') center / cover no-repeat;
  opacity: 0;
  transform: scale(1);
  animation:
    introBgFade 3s ease forwards 0.4s,
    kenBurns 25s ease-in-out forwards 0.4s;
}

#intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.72) 100%
  );
}

#intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
}

#intro-title {
  font-family: var(--serif);
  ont-size: clamp(1.3rem, 2.2vw, 2.0rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  min-height: 1.2em;
}

#intro-title .char {
  display: inline-block;
}

#intro-tagline {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  letter-spacing: 0.1em;
  color: #f0e8d8;
  font-style: italic;
  font-weight: 300;
  opacity: 0;
  margin-bottom: 4.5rem;
}
#intro-enter {
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: opacity 1s ease;
  background: transparent;
  border: none;
  position: absolute;
  bottom: -14rem;
  left: 50%;
  transform: translateX(-50%);
}

#intro-enter:hover .enter-line { transform: translateY(6px); }

.enter-text {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white-d);
  font-family: var(--sans);
}

.enter-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  transition: transform 0.4s ease;
}
.enter-line::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

#intro-blackout {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

@keyframes introBgFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kenBurns {
  0%   { 
    transform: scale(1) translateX(0px) translateY(0px); 
  }
  25%  { 
    transform: scale(1.03) translateX(-8px) translateY(-4px); 
  }
  50%  { 
    transform: scale(1.07) translateX(-12px) translateY(3px); 
  }
  75%  { 
    transform: scale(1.04) translateX(-4px) translateY(-2px); 
  }
  100% { 
    transform: scale(1.07) translateX(0px) translateY(0px); 
  }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../hero-bg.webp') center / cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.68) 100%
  );
}

.hero-overlay--deep {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: var(--sans);
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.6rem;
}

.hero-subheading {
  font-size: clamp(0.85rem, 1.4vw, 0.98rem);
  line-height: 1.95;
  color: var(--white-d);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Page hero (inner pages — shorter, text bottom-aligned) */
.page-hero {
  min-height: 50vh;
  align-items: flex-end;
  padding-bottom: 4.5rem;
}
.page-hero .hero-content {
  text-align: left;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.page-hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 0.9rem;
  color: var(--white-d);
  margin-top: 0.8rem;
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: 0.03em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: scrollBounce 2.5s infinite;
}
.scroll-indicator span {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-d);
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   LAYOUT & SECTIONS
   ============================================================ */

.section {
  padding: 6rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: 6rem 3rem;
}
.section-dark { background: var(--bg-2); }

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}
.section-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.section-intro {
  max-width: 620px;
  color: var(--white-d);
  font-size: 1rem;
  line-height: 1.95;
}

/* ============================================================
   HOME — INTRO TEASER
   ============================================================ */

.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 7rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.home-intro-text p {
  color: var(--white-d);
  font-size: 1.05rem;
  line-height: 1.95;
  margin-bottom: 1.4rem;
}
.home-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.stat-item {
  border-top: 1px solid var(--border-l);
  padding-top: 1.5rem;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.55;
}

/* ============================================================
   HOME — CORPORATE TEASER
   ============================================================ */

.corp-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.corp-teaser-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0c1212 0%, #1a1308 50%, #0a0a0a 100%);
}
.corp-teaser-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../hero-bg.webp') center / cover no-repeat;
  opacity: 0.25;
  filter: grayscale(60%);
}
.corp-teaser-body {
  background: var(--bg-2);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.corp-teaser-body p {
  color: var(--white-d);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ============================================================
   FILMS GRID
   ============================================================ */

.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #000;
}
.films-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.film-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
  background: var(--bg-card);
}
.film-card--wide {
  aspect-ratio: 16 / 10;
}

.film-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
}
.film-card:hover .film-card-bg { transform: scale(1.07); }

/* Gradient placeholders */
.grad-1 { background: linear-gradient(135deg, #1a1208 0%, #0d1a1a 60%, #080a0a 100%); }
.grad-2 { background: linear-gradient(135deg, #1a0d08 0%, #0a1518 60%, #080a0a 100%); }
.grad-3 { background: linear-gradient(145deg, #0d180d 0%, #1a1208 60%, #080a0a 100%); }
.grad-4 { background: linear-gradient(135deg, #0d0d1c 0%, #180d18 60%, #080a0a 100%); }
.grad-5 { background: linear-gradient(145deg, #180c08 0%, #080d1c 60%, #080a0a 100%); }

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.25) 55%,
    transparent 100%
  );
  transition: background var(--ease);
}
.film-card:hover .film-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.15) 100%
  );
}

.film-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
}
.film-card-year {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.film-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.film-card-excerpt {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--white-d);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s ease, max-height 0.45s ease;
}
.film-card:hover .film-card-excerpt {
  opacity: 1;
  max-height: 120px;
}
.film-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  opacity: 0;
  transition: opacity 0.45s ease 0.08s;
}
.film-card:hover .film-card-cta { opacity: 1; }
.film-card-cta::after { content: '→'; font-size: 0.85rem; }

/* ============================================================
   VALUE / SERVICE CARDS
   ============================================================ */

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.value-card,
.service-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  transition: background var(--ease);
}
.value-card:hover,
.service-card:hover { background: var(--bg-card-h); }

.card-number {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--gold-dim);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.card-icon {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.card-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--white-d);
}

/* ============================================================
   PULL QUOTE
   ============================================================ */

.pull-quote {
  padding: 5rem 3rem;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote-mark {
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--gold-dim);
  line-height: 0.6;
  display: block;
  margin-bottom: 1.5rem;
}
.pull-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
}
.pull-quote-attr {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 6rem;
  align-items: start;
}
.about-sidebar {
  position: sticky;
  top: 8rem;
}
.photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  line-height: 2.2;
}
.about-meta {
  margin-top: 1.6rem;
}
.about-meta-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.about-meta-role {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.about-body p {
  color: var(--white-d);
  font-size: 1.04rem;
  line-height: 1.97;
}

/* ============================================================
   FILM DETAIL PAGES
   ============================================================ */

.back-nav {
  padding: 1.5rem 3rem;
  padding-top: calc(1.4rem + 72px);
  border-bottom: 1px solid var(--border);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}
.back-link:hover { color: var(--gold); }
.back-link::before { content: '←'; font-size: 0.85rem; }

.film-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: start;
}
.film-main { }
.film-sidebar {
  position: sticky;
  top: 8rem;
}

.award-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--gold-border);
  margin-bottom: 2rem;
}
.award-star { color: var(--gold); font-size: 0.9rem; }
.award-text {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.film-synopsis p {
  color: var(--white-d);
  font-size: 1.04rem;
  line-height: 1.96;
  margin-bottom: 1.5rem;
}

.film-meta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
}
.film-meta-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.film-meta-row:first-child { padding-top: 0; }
.film-meta-row:last-child  { border-bottom: none; padding-bottom: 0; }
.film-meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.film-meta-value {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--white);
  line-height: 1.5;
}

.themes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.theme-tag {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-l);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--ease);
}
.theme-tag:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Video embed */
.video-wrap {
  margin: 3.5rem 0;
}
.video-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* Live video embed container */
.video-embed-container {
  border-top: 2px solid var(--gold-border);
  background: #000;
  overflow: hidden;
}
.video-hint {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  margin-top: 0.6rem;
  opacity: 0.65;
  margin-bottom: 0;
}
.video-contact-note {
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  margin-top: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0;
}
.video-contact-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  transition: border-color var(--ease);
}
.video-contact-link:hover { border-color: var(--gold); }
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.video-play-btn {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn::after {
  content: '▶';
  color: var(--muted);
  font-size: 1rem;
  margin-left: 3px;
}
.video-placeholder-text {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.contact-info {
  position: sticky;
  top: 8rem;
}
.contact-tagline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 2.5rem;
}
.contact-detail { margin-bottom: 1.8rem; }
.contact-detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--white-d);
  line-height: 1.6;
}

.form-group { margin-bottom: 1.8rem; }
.form-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-l);
  padding: 0.8rem 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 130px; }

/* Success message */
#form-success {
  display: none;
  opacity: 0;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold-border);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  transition: all var(--ease);
  border: none;
  outline: none;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-gold:hover { background: var(--gold-l); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-block {
  text-align: center;
  padding: 7rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta-block .section-title { margin-bottom: 0.75rem; }
.cta-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fd-1 { transition-delay: 0.1s; }
.fd-2 { transition-delay: 0.2s; }
.fd-3 { transition-delay: 0.3s; }
.fd-4 { transition-delay: 0.4s; }

/* ============================================================
   MISSION BLOCK (Brand page)
   ============================================================ */

.mission-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 3rem 3.5rem;
  margin: 3rem 0;
}
.mission-block p {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.015em;
}

/* ============================================================
   FILM GALLERY
   ============================================================ */

.film-gallery {
  margin: 3rem 0 2rem;
}
.film-gallery-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.film-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 4px;
}
.film-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  display: block;
}
.film-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.02);
  transition: filter 0.45s ease, transform 0.65s ease;
  display: block;
}
.film-gallery-item:hover img {
  filter: brightness(1.0);
  transform: scale(1.04);
}

/* ============================================================
   ONE IN FIVE — SPECIAL HERO TREATMENT
   ============================================================ */

.hero-one-in-five {
  background: radial-gradient(ellipse at 40% 50%, #0f0f18 0%, #0a0a0a 65%) !important;
}
.hero-one-in-five::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(201,169,110,0.04) 0%, transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(30,35,55,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.one-in-five-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--gold) !important;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 80px rgba(201,169,110,0.18);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .about-layout { grid-template-columns: 260px 1fr; gap: 4rem; }
  .film-layout  { grid-template-columns: 1fr 260px; gap: 3.5rem; }
  .home-intro   { grid-template-columns: 1fr; gap: 4rem; }
  .corp-teaser  { grid-template-columns: 1fr; }
  .corp-teaser-image { min-height: 280px; }
}

@media (max-width: 900px) {
  .films-grid   { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info   { position: static; }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-sidebar { position: static; display: flex; gap: 2rem; align-items: flex-start; }
  .photo-frame { width: 200px; flex-shrink: 0; }
  .film-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .film-sidebar { position: static; }
  .film-meta-box { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
  .film-meta-row { background: var(--bg-card); padding: 1.2rem; border-bottom: none; }
}

@media (max-width: 768px) {
  #nav { padding: 1.25rem 1.5rem; }
  #nav.scrolled { padding: 0.9rem 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
    z-index: 400;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 0.28em; }
  .nav-toggle { display: flex; }

  .films-grid { grid-template-columns: 1fr; }
  .film-card  { aspect-ratio: 16 / 9; }

  .section, .section-full { padding: 4rem 1.5rem; }
  .page-hero .hero-content { padding: 0 1.5rem; }
  .back-nav  { padding: 1.3rem 1.5rem; padding-top: calc(1.3rem + 68px); }
  .cta-block { padding: 5rem 1.5rem; }
  .pull-quote { padding: 3.5rem 1.5rem; }
  .home-intro { padding: 4rem 1.5rem; }
  .corp-teaser-body { padding: 3rem 1.5rem; }
  .about-sidebar { flex-direction: column; }
  .photo-frame { width: 100%; max-width: 240px; }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .home-intro-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .film-meta-box { grid-template-columns: 1fr; }
  #intro-title { letter-spacing: 0.25em; }
}

/* ============================================================
   HOME HERO — HORIZON BRAND ANIMATION
   ============================================================ */

.hero-home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand-wrap {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 2rem;
  z-index: 1;
}

.hero-brand-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  display: block;
}

.hero-brand-title.animate {
  animation: horizonRise 7s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-brand-tagline {
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.7vw, 1.25rem);
  letter-spacing: 0.08em;
  color: #f0e8d8;
  font-style: italic;
  font-weight: 300;
  margin-top: 2rem;
  opacity: 0;
  display: block;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 2px 14px rgba(0,0,0,0.35);
}

.hero-brand-title.animate ~ .hero-brand-tagline {
  animation: fadeInSoft 1.6s ease forwards;
  animation-delay: 7s;
}

.hero-home-bottom {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  opacity: 0;
  width: 100%;
  padding: 0 2rem;
}

.hero-home-bottom.animate {
  animation: fadeInSoft 1.6s ease forwards;
  animation-delay: 7.5s;
}

.hero-brand-statement {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--serif);
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0,0,0,0.75), 0 2px 12px rgba(0,0,0,0.55);
}

/* Hero button — dark backing for contrast over bright painting area */
.hero-home .btn-outline {
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(201, 169, 110, 0.65);
  color: var(--white);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero-home .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

@keyframes horizonRise {
  0% {
    opacity: 0;
    transform: scale(0.06);
  }
  10% {
    opacity: 0.9;
    transform: scale(0.06);
  }
  60% {
    opacity: 1;
    transform: scale(1.35);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInSoft {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT PAGE — TWO SECTION REDESIGN
   ============================================================ */

.about-company-hero {
  min-height: 50vh;
}

.about-mission-section {
  padding: 6rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-mission-link {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-family: var(--serif);
  font-style: italic;
  margin-top: 2rem;
  transition: color var(--ease);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0.2rem;
}
.about-mission-link:hover { color: var(--gold-l); }

.about-profile-divider {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}
.about-profile-divider img {
  display: none;
}
.about-profile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.78) 100%
  );
}
.about-profile-caption {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  white-space: nowrap;
}
.about-profile-caption h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.about-profile-caption p {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.about-bio-section {
  padding: 6rem 3rem;
  max-width: 820px;
  margin: 0 auto;
}
.about-bio-section p {
  color: var(--white-d);
  font-size: 1.04rem;
  line-height: 1.97;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FILMS PAGE — SCROLL LINK + STRIP
   ============================================================ */

.grid-scroll-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 1px;
  transition: color var(--ease), border-color var(--ease), text-shadow var(--ease);
}
.grid-scroll-link:hover {
  color: var(--gold-l);
  border-color: var(--gold);
  text-shadow: 0 0 14px rgba(201, 169, 110, 0.3);
}

.films-one-in-five-strip {
  grid-column: 1 / -1;
  background: #050508;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-top: 1px solid var(--border);
  transition: background 0.5s ease;
  text-decoration: none;
  color: inherit;
}
.films-one-in-five-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.films-one-in-five-strip:hover {
  background: #08080f;
}
.films-one-in-five-strip:hover .films-strip-cta { opacity: 1; }
.films-strip-body {
  max-width: 700px;
}
.films-strip-logline {
  font-size: 0.9rem;
  color: var(--white-d);
  line-height: 1.8;
  margin-top: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
}
.films-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.films-strip-cta::after { content: '→'; font-size: 0.85rem; }

/* ============================================================
   FILM CREDENTIALS (A Human Search)
   ============================================================ */

.film-hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.2rem;
  align-items: center;
}
.film-imdb-badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
}
.film-endorsement-tag {
  font-size: 0.72rem;
  color: var(--white-d);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ============================================================
   IN THEIR WORDS — QUOTES SECTION
   ============================================================ */

.quotes-section {
  margin: 3.5rem 0;
}
.quotes-section-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}
.quote-item {
  border-left: 2px solid var(--gold-border);
  padding-left: 1.5rem;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--white-d);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.quote-attr {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .quotes-grid { grid-template-columns: 1fr; }
  .about-profile-divider { height: 50vh; }
  .about-profile-caption { white-space: normal; text-align: center; width: 90%; }
  .about-mission-section { padding: 4rem 1.5rem; }
  .about-bio-section { padding: 4rem 1.5rem; }
  .films-one-in-five-strip { padding: 2.5rem 1.5rem; }
  .hero-brand-title { white-space: normal; }
}

/* ============================================================
   TWO AWARD BANNERS (A Family Divided)
   ============================================================ */

.award-banners {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* ============================================================
   SEEING FROM WITHIN — GALLERY POSTER PROMINENT
   ============================================================ */

.gallery-poster-large {
  aspect-ratio: 2 / 3;
  max-width: 320px;
}

/* ============================================================
   HENRY — GOLD THEME TAGS
   ============================================================ */

.theme-tag--gold {
  border-color: var(--gold-border);
  color: var(--gold);
}
.theme-tag--gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ============================================================
   PHILOSOPHY — CREATIVE INDEPENDENCE SECTION
   ============================================================ */

.philosophy-independence-section {
  max-width: 700px;
}
.philosophy-independence-section p {
  color: var(--white-d);
  font-size: 1.04rem;
  line-height: 1.95;
}
