@font-face {
  font-family: 'Graphik';
  src: url('/fonts/graphik-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Ethnocentric';
  src: url('/fonts/ethnocentric-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #f0ede8;
  --teal: #67CDC3;
  --grey: #666;
  --light-grey: #999;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--teal); border-radius: 50%;
  pointer-events: none; z-index: 10001;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(103,205,195,0.5);
  border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              background 0.35s, border-color 0.35s;
  display: flex; align-items: center; justify-content: center;
}
.cursor-ring.hover-active {
  width: 80px; height: 80px;
  background: var(--teal);
  border-color: var(--teal);
}
.cursor-ring .cursor-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black);
  opacity: 0; transition: opacity 0.25s;
  user-select: none;
}
.cursor-ring.hover-active .cursor-text { opacity: 1; }
.cursor.cursor-dark { background: var(--black); }
.cursor-ring.cursor-dark { border-color: rgba(0,0,0,0.4); }
.cursor-ring.cursor-dark.hover-active { background: var(--black); border-color: var(--black); }
.cursor-ring.cursor-dark .cursor-text { color: var(--teal); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 48px;
  mix-blend-mode: normal;
}
nav.scrolled .nav-bg { opacity: 1; }
.nav-bg {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.nav-logo {
  position: relative; z-index: 1;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 48px; width: 48px;
  border-radius: 50%; object-fit: cover;
}
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; gap: 48px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: 'Graphik', sans-serif;
  color: var(--white); text-decoration: none;
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 400;
  transition: color 0.3s; cursor: none;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-video-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(103,205,195,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}
/* Animated grain overlay */
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
/* Cinematic bars */
.hero-bar-top, .hero-bar-bottom {
  position: absolute; left: 0; right: 0; height: 80px;
  background: var(--black); z-index: 2;
}
.hero-bar-top { top: 0; }
.hero-bar-bottom { bottom: 0; }

.hero-center {
  position: relative; z-index: 3;
  text-align: center;
  animation: heroFadeIn 1.4s 0.2s both;
}
.hero-title {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 7vw, 100px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
}
.hero-title .teal { color: var(--teal); }
.hero-sub {
  font-size: 13px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--light-grey);
  margin-top: 20px;
  animation: heroFadeIn 1s 0.8s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 100px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollFadeIn 1s 1.4s both;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* ── SECTION PAGES ── */
.page-section {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* ── YOUTUBE PRODUCTIONS ── */
#youtube {
  background: var(--white);
  color: var(--black);
}
.section-header {
  padding: 100px 48px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
#youtube .section-header { border-color: rgba(0,0,0,0.1); }
#films .section-header { border-color: rgba(240,237,232,0.1); }

.section-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.9; letter-spacing: 0.01em;
}
.section-count {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--grey);
  padding-bottom: 12px;
}
#youtube .section-count { color: var(--grey); }
#films .section-count { color: rgba(240,237,232,0.4); }

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
}
#films .project-grid { border-color: rgba(240,237,232,0.08); }

.project-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  cursor: none;
}
.project-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-card-bg { transform: scale(1.06); }

/* Colour placeholders for YouTube projects */
.yt-1 .project-card-bg { background: url('/images/bba-podcast.jpg') center/cover no-repeat; }
.yt-2 .project-card-bg { background: url('/images/adum.jpg') center/cover no-repeat; }
.yt-3 .project-card-bg { background: url('/images/ab-easdale.jpg') center/cover no-repeat; }
.yt-4 .project-card-bg { background: linear-gradient(135deg, #162447 0%, #1f4068 100%); }

/* Film placeholders */
.film-1 .project-card-bg { background: url('/images/the-flatwarming.jpg') center 15%/cover no-repeat; }
.film-2 .project-card-bg { background: linear-gradient(135deg, #0a1a0a 0%, #152d15 100%); }

.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  transform: translateY(8px); opacity: 0;
  transition: all 0.4s;
}
.project-card:hover .project-card-info { transform: translateY(0); opacity: 1; }

.project-card-name {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.05em;
  color: var(--white); line-height: 1.1;
}
.project-card-type {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal);
  margin-top: 4px;
}

/* Static label for non-hover (visible always) */
.project-label {
  position: absolute; bottom: 20px; left: 24px;
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  transition: opacity 0.3s;
}
.project-card:hover .project-label { opacity: 0; }

.project-card-tag {
  position: absolute; top: 16px; right: 16px;
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(103,205,195,0.1);
  border: 1px solid rgba(103,205,195,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

/* Grid border lines */
.project-card:not(:nth-child(3n)) {
  border-right: 1px solid rgba(0,0,0,0.08);
}
#films .project-card:not(:nth-child(3n)) {
  border-right-color: rgba(240,237,232,0.08);
}
.project-card:nth-child(n+4) {
  border-top: 1px solid rgba(0,0,0,0.08);
}
#films .project-card:nth-child(n+4) {
  border-top-color: rgba(240,237,232,0.08);
}

/* Wide card variant */
.project-card.wide {
  grid-column: span 2;
  aspect-ratio: unset;
  min-height: 360px;
}

/* ── FILMS ── */
#films {
  background: var(--black);
  color: var(--white);
}

/* ── PARTNERS ── */
#partners {
  background: var(--black);
  color: var(--white);
  min-height: auto;
}
#partners .section-header {
  border-color: rgba(240,237,232,0.1);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}
.partner-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-right: 1px solid rgba(240,237,232,0.08);
  border-bottom: 1px solid rgba(240,237,232,0.08);
}
.partner-cell:nth-child(3n) {
  border-right: none;
}
.partner-cell:nth-child(n+4) {
  border-bottom: none;
}
.partner-logo {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.08em;
  color: rgba(240,237,232,0.35);
  text-transform: uppercase;
  user-select: none;
  transition: color 0.3s;
  text-align: center;
  display: inline-block;
}
.partner-cell:hover .partner-logo {
  color: rgba(240,237,232,0.55);
}
/* When you have real logos, use: */
/* .partner-logo img { max-width: 160px; height: auto; opacity: 0.4; filter: grayscale(1); transition: opacity 0.3s; } */
/* .partner-cell:hover .partner-logo img { opacity: 0.65; } */

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--black);
  color: var(--white);
  padding: 0;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.testimonials-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(240,237,232,0.3);
}
.testimonials-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(240,237,232,0.04);
  border: 1px solid rgba(240,237,232,0.08);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(240,237,232,0.2);
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(240,237,232,0.7);
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author {
  border-top: 1px solid rgba(240,237,232,0.1);
  padding-top: 20px;
}
.testimonial-name {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.testimonial-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
}

/* ── PROJECT CARD LINK ── */
.project-card-link {
  text-decoration: none;
  color: inherit;
  cursor: none;
  display: contents;
}

/* ── CASE STUDY ── */
.cs-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.cs-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/bba-podcast.jpg') center/cover no-repeat;
}
.cs-hero-adum .cs-hero-bg {
  background: url('/images/adum.jpg') center top/cover no-repeat;
}
.cs-artist-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 32px 48px;
  background: #f0ede8;
}
.cs-artist-label {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
}
.cs-artist-link {
  color: var(--black);
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.3s;
  cursor: none;
  display: flex;
  align-items: center;
}
.cs-artist-link svg {
  width: 28px;
  height: 28px;
}
.cs-artist-link:hover {
  opacity: 1;
}
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.1) 100%);
}
.cs-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  animation: heroFadeIn 1s 0.2s both;
}
.cs-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.cs-hero-title {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
}
.cs-hero-sub {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-top: 16px;
}

/* Stats */
.cs-stats {
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cs-stats-inner {
  display: flex;
  padding: 0;
}
.cs-stat {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.cs-stat:last-child {
  border-right: none;
}
.cs-stat-num {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  color: var(--black);
}
.cs-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* Media Grid */
.cs-media {
  background: var(--black);
  padding: 80px 48px;
}
.cs-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.cs-media-item {
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
}
.cs-media-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.cs-media-link {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  cursor: none;
}
.cs-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cs-media-link:hover img {
  transform: scale(1.03);
}
.cs-media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cs-media-link:hover .cs-media-play {
  opacity: 1;
}
.cs-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border: 1px solid rgba(240,237,232,0.08);
  border-radius: 8px;
}

/* Content Section */
.cs-content {
  background: var(--white);
  color: var(--black);
}
.cs-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.cs-content-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cs-content-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(0,0,0,0.3);
}
.cs-content-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.cs-content-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.cs-content-right p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
}

/* ── CREW CALL ── */
.cc-casting-label {
  padding: 40px 48px 0;
}

.cc-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.cc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1a0a 0%, #152d15 50%, #0a0a0a 100%);
}
.cc-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  text-align: center;
  width: 100%;
  animation: heroFadeIn 1s 0.2s both;
}

/* Narrative */
.cc-narrative {
  background: var(--black);
  color: var(--white);
}
.cc-narrative-inner {
  max-width: 800px;
  padding: 100px 48px;
  margin: 0 auto;
  text-align: center;
}
.cc-narrative-inner p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(240,237,232,0.65);
  margin-bottom: 20px;
}
.cc-narrative-inner p:last-child { margin-bottom: 0; }

/* Roles */
.cc-roles {
  background: var(--black);
  color: var(--white);
  padding-bottom: 80px;
}
.cc-roles-inner {
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.cc-roles-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(240,237,232,0.1);
  margin-bottom: 40px;
  text-align: center;
}
.cc-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cc-role-card {
  border: 1px solid rgba(240,237,232,0.1);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.3s;
}
.cc-role-card:hover {
  border-color: rgba(240,237,232,0.25);
}
.cc-role-title {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 12px;
}
.cc-role-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240,237,232,0.5);
}

/* Benefits */
.cc-benefit {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cc-benefit:last-child { border-bottom: none; padding-bottom: 0; }
.cc-benefit-title {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.cc-benefit p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,0.6);
}

/* Apply */
.cc-apply {
  background: var(--teal);
  color: var(--black);
}
.cc-apply-inner {
  padding: 100px 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cc-apply-text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
  margin-bottom: 16px;
}
.cc-apply-text strong { color: var(--black); font-weight: 500; }
.cc-apply-btn {
  display: inline-block;
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--black);
  color: var(--teal);
  text-decoration: none;
  border-radius: 6px;
  margin-top: 16px;
  margin-bottom: 48px;
  transition: opacity 0.3s;
  cursor: none;
}
.cc-apply-btn:hover { opacity: 0.85; }
.cc-apply-details {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.2);
  justify-content: center;
}
.cc-apply-detail-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 4px;
}
.cc-apply-detail-value {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--black);
}

/* ── FOUNDER ── */
.fn-hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fn-hero-image {
  overflow: hidden;
  position: relative;
}
.fn-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.25);
  pointer-events: none;
}
.fn-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: fn-image-in 1.2s ease-out both;
}
@keyframes fn-image-in {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
.fn-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--black);
}
.fn-hero-label {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.fn-hero-name {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fn-hero-role {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
}
.fn-hero-socials {
  display: flex; gap: 16px; margin-top: 16px;
}
.fn-hero-social {
  color: rgba(240,237,232,0.4);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.fn-hero-social:hover { color: var(--teal); }
.fn-hero-scroll {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fn-hero-scroll span {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
}
.fn-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(240,237,232,0.15);
  position: relative;
  overflow: hidden;
}
.fn-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--teal);
  animation: fn-scroll 2s ease-in-out infinite;
}
@keyframes fn-scroll {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* Founder Statement */
.fn-statement {
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
}
.fn-statement-inner {
  max-width: 900px;
  margin: 0 auto;
}
.fn-statement-mark {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--teal);
  line-height: 0.5;
  display: block;
  margin-bottom: 40px;
}
.fn-statement-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.8;
  color: rgba(240,237,232,0.6);
  font-weight: 300;
  margin: 0 0 24px 0;
  border: none;
  padding: 0;
  font-style: normal;
}
.fn-statement-accent {
  color: var(--white);
  font-weight: 400;
}
.fn-statement-cite {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 48px;
  display: block;
  font-style: normal;
}

/* Founder Stats */
.fn-stats {
  background: var(--white);
  color: var(--black);
  padding: 100px 48px;
}
.fn-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}
.fn-stat {
  text-align: center;
}
.fn-stat-num {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  display: block;
  color: var(--black);
}
.fn-stat-label {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.4);
  margin-top: 12px;
  display: block;
}
.fn-stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(10,10,10,0.15);
  flex-shrink: 0;
}

/* Founder Vision */
.fn-vision {
  background: var(--black);
  color: var(--white);
  padding: 120px 48px;
}
.fn-vision-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.fn-vision-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fn-vision-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(240,237,232,0.3);
}
.fn-vision-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.fn-vision-right p {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  line-height: 1.85;
  color: rgba(240,237,232,0.7);
  font-style: italic;
  margin: 0;
}

/* Founder CTA */
.fn-cta {
  background: var(--teal);
  color: var(--black);
  padding: 120px 48px;
}
.fn-cta-inner {
  max-width: 700px;
}
.fn-cta-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fn-cta-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(10,10,10,0.3);
}
.fn-cta-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.fn-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(10,10,10,0.7);
  margin-bottom: 32px;
}
.fn-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--black);
  color: var(--teal);
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 40px;
  transition: opacity 0.3s;
  cursor: none;
}
.fn-cta-btn:hover {
  opacity: 0.85;
}

/* ── FILM TICKET: THE FLATWARMING ── */
.ft-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/the-flatwarming.jpg') center 15%/cover no-repeat;
  filter: brightness(0.3) saturate(0.7);
  transform: scale(1.05);
  animation: ft-hero-zoom 20s ease-out forwards;
}
@keyframes ft-hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.ft-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}
.ft-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 0%, rgba(10,10,10,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.ft-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.ft-hero-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  display: block;
}
.ft-hero-title {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}
.ft-hero-year {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
  margin-top: 28px;
}
.ft-hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ft-hero-scroll span {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
}
.ft-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(240,237,232,0.15);
  position: relative;
  overflow: hidden;
}
.ft-hero-scroll.reveal {
  transform: translateX(-50%) translateY(24px);
}
.ft-hero-scroll.reveal.visible {
  transform: translateX(-50%) translateY(0);
}
.ft-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--teal);
  animation: fn-scroll 2s ease-in-out infinite;
}

/* Ticket Stub */
.ft-ticket {
  background: var(--black);
  padding: 0 48px;
}
.ft-ticket-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(240,237,232,0.1);
}
.ft-ticket-item {
  padding: 48px 24px;
  text-align: center;
}
.ft-ticket-label {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
  display: block;
  margin-bottom: 12px;
}
.ft-ticket-value {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #f0ede8;
  display: block;
}

/* Watch Section */
.ft-watch {
  background: var(--black);
  padding: 100px 48px;
}
.ft-watch-inner {
  max-width: 960px;
  margin: 0 auto;
}
.ft-watch-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.ft-watch-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(103,205,195,0.4);
}
.ft-watch-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(240,237,232,0.08);
}
.ft-watch-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.ft-watch-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(103,205,195,0.04) 0%, transparent 70%), linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}
.ft-watch-play-icon {
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}
.ft-watch-placeholder:hover .ft-watch-play-icon {
  opacity: 1;
  transform: scale(1.05);
}
.ft-watch-coming {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
}

/* BTS Gallery */
.ft-gallery {
  background: var(--black);
  padding: 0 48px 80px;
}
.ft-gallery-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(240,237,232,0.1);
  margin-bottom: 48px;
}
.ft-gallery-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ft-gallery-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(240,237,232,0.3);
}
.ft-gallery-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
}
.ft-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ft-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}
.ft-gallery-item-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.ft-gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%);
  border: 1px solid rgba(240,237,232,0.06);
  border-radius: 6px;
  position: relative;
}
.ft-gallery-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240,237,232,0.1);
  border-radius: 4px;
}
.ft-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ft-gallery-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: rgba(240,237,232,0.7);
  font-size: 36px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(240,237,232,0.5);
  font-size: 48px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
  padding: 16px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }

/* BTS Text Section */
.ft-bts {
  background: var(--white);
  color: var(--black);
}
.ft-bts-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 100px 48px;
  max-width: 1200px;
}
.ft-bts-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.ft-bts-right p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
}

/* ── ABOUT ── */
#about {
  background: var(--teal);
  color: var(--black);
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
}
.about-inner {
  padding: 120px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-eyebrow {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
  margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.about-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: rgba(0,0,0,0.4);
}
.about-heading {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.9; letter-spacing: 0.01em;
  margin-bottom: 60px;
  color: var(--black);
  text-align: center;
}
.about-body {
  display: flex; flex-direction: column; gap: 48px; align-items: center;
  padding-top: 48px; border-top: 1px solid rgba(0,0,0,0.2);
}
.about-text-block { max-width: 720px; text-align: center; }
.about-text {
  font-size: 18px; line-height: 1.75; color: rgba(0,0,0,0.75);
}
.about-text strong { color: var(--black); font-weight: 500; }
.about-right { display: flex; flex-direction: column; gap: 40px; align-items: center; width: 100%; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; width: 100%; }
.stat { border-top: 1px solid rgba(0,0,0,0.2); padding-top: 16px; text-align: center; }
.stat-num {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 32px; line-height: 1; color: var(--black);
}
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-top: 4px; }
.about-contact { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.about-contact-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.5); }
.about-contact-link {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.05em;
  color: var(--black); text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.2);
  padding-bottom: 8px;
  transition: border-color 0.3s;
  cursor: none;
}
.about-contact-link:hover { border-color: var(--black); }
.about-media-kit {
  display: inline-block;
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  padding: 12px 28px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 100px;
  margin-top: 16px;
  transition: background 0.3s, border-color 0.3s;
  cursor: none;
}
.about-media-kit:hover { background: var(--black); color: var(--teal); border-color: var(--black); }

/* ── CONTACT FORM ── */
.contact-form {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 480px; width: 100%;
}
.contact-form input,
.contact-form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.4);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--black);
  color: var(--teal);
  border: none;
  border-radius: 6px;
  cursor: none;
  transition: opacity 0.3s;
  align-self: center;
}
.contact-form button:hover { opacity: 0.85; }
.contact-form button:disabled { opacity: 0.5; cursor: default; }
.form-message {
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.form-message.success { color: var(--black); }
.form-message.error { color: #c0392b; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 48px 48px 36px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(240,237,232,0.08);
  position: relative;
}
.footer-logo img {
  height: 48px; width: 48px; border-radius: 50%; object-fit: cover;
}
.footer-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 36px; }
.footer-links a {
  color: rgba(240,237,232,0.7); text-decoration: none;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s; cursor: none;
}
.footer-links a:hover { color: var(--teal); }
.footer-legal {
  width: 100%; display: flex; gap: 24px; justify-content: center;
  margin-top: 24px; order: 4;
}
.footer-legal a {
  font-size: 11px; color: rgba(240,237,232,0.35);
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: 'Graphik', 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(240,237,232,0.7); }
.footer-copy { font-size: 13px; color: rgba(240,237,232,0.5); letter-spacing: 0.05em; }

/* ── LEGAL PAGES ── */
.legal-page {
  background: var(--black);
  padding: 160px 48px 80px;
  min-height: 100vh;
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: 16px;
}
.legal-title {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--white); line-height: 1;
  margin-bottom: 12px;
}
.legal-updated {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 18px; color: var(--white);
  letter-spacing: 0.04em;
  margin: 40px 0 12px;
}
.legal-content h3 {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin: 24px 0 8px;
}
.legal-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.8;
  color: rgba(240,237,232,0.6);
  margin: 0 0 12px;
}
.legal-content ul {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.legal-content ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.8;
  color: rgba(240,237,232,0.6);
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--teal);
}
.legal-link {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.legal-link:hover { opacity: 0.7; }

/* FAQ Accordion */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid rgba(240,237,232,0.08);
}
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 400;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  font-size: 24px; color: var(--teal);
  flex-shrink: 0; margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.8;
  color: rgba(240,237,232,0.55);
  margin: 0;
}
body.light .faq-item { border-color: rgba(0,0,0,0.08); }
body.light .faq-question { color: #0a0a0a; }
body.light .faq-answer p { color: rgba(0,0,0,0.55); }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden; border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 14px 0;
  background: var(--white);
}
#films ~ .marquee,
#films + .marquee { background: var(--black); border-color: rgba(240,237,232,0.08); }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 24s linear infinite;
  will-change: transform;
  width: max-content;
}
.marquee-item {
  font-family: 'Ethnocentric', 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--grey); padding: 0 40px; flex-shrink: 0;
}
.marquee-dot { color: var(--teal); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── NAV RIGHT (wrapper for toggle + hamburger) ── */
.nav-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px;
}
.nav-contact-btn {
  font-family: 'Graphik', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(240,237,232,0.25);
  border-radius: 100px;
  color: var(--white);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: none;
}
.nav-contact-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--black);
}
body.light .nav-contact-btn {
  border-color: rgba(0,0,0,0.2);
  color: #0a0a0a;
}
body.light .nav-contact-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #0a0a0a;
}

/* ── HAMBURGER (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 4px;
  cursor: pointer; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
body.light .nav-hamburger span { background: #0a0a0a; }

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Hide custom cursor on touch devices */
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto; }
  .nav-links a, .project-card, .about-contact-link,
  .contact-form input, .contact-form textarea, .contact-form button,
  .theme-toggle, .nav-contact-btn { cursor: auto; }
  .nav-contact-btn { display: none; }

  /* Nav */
  nav { padding: 20px 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; left: 0; transform: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(16px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  body.light .nav-links { background: rgba(245,242,237,0.95); }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 18px; letter-spacing: 0.15em; }

  /* Hero */
  .hero-bar-top, .hero-bar-bottom { height: 40px; }
  .hero-scroll { bottom: 60px; }

  /* Sections */
  .section-header { padding: 80px 24px 40px; }

  /* Project grid */
  .project-grid { grid-template-columns: 1fr; }
  .project-card:not(:nth-child(3n)) { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .project-card.wide { grid-column: span 1; min-height: 280px; }
  .project-card { aspect-ratio: 16/9; }

  /* Partners */
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .partner-cell { min-height: 140px; padding: 16px; }
  .partner-logo { font-size: 14px; text-align: center; }
  .partner-cell:nth-child(3n) { border-right: 1px solid rgba(240,237,232,0.08); }
  .partner-cell:nth-child(odd) { border-right: 1px solid rgba(240,237,232,0.08); }
  .partner-cell:nth-child(even) { border-right: none; }
  .partner-cell:nth-child(n+4) { border-bottom: 1px solid rgba(240,237,232,0.08); }
  .partner-cell:nth-child(n+5) { border-bottom: none; }

  /* Testimonials */
  .testimonials-inner { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }

  /* Case Study */
  .cs-hero { height: 50vh; min-height: 360px; }
  .cs-hero-content { padding: 40px 24px; }
  .cs-stats-inner { flex-direction: column; }
  .cs-stat { padding: 32px 24px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .cs-stat:last-child { border-bottom: none; }
  .cs-media { padding: 48px 24px; }
  .cs-media-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .cs-content-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }
  .cs-content-right { padding-top: 24px; }
  .project-card-link { cursor: auto; }

  /* Crew Call */
  .cc-casting-label { padding: 32px 24px 0; }
  .cc-hero { height: 45vh; min-height: 320px; }
  .cc-hero-content { padding: 40px 24px; }
  .cc-narrative-inner { padding: 60px 24px; }
  .cc-roles-inner { padding: 0 24px; }
  .cc-roles-header { padding: 60px 0 32px; }
  .cc-roles-grid { grid-template-columns: 1fr; }
  .cc-roles { padding-bottom: 48px; }
  .cc-apply-inner { padding: 60px 24px; }
  .cc-apply-btn { cursor: auto; }
  .cc-apply-details { flex-direction: column; gap: 24px; }

  /* Founder */
  .fn-hero { grid-template-columns: 1fr; height: auto; }
  .fn-hero-image { height: 50vh; }
  .fn-hero-text { padding: 48px 24px; min-height: auto; }
  .fn-hero-scroll { display: none; }
  .legal-page { padding: 120px 24px 60px; }
  .fn-statement { padding: 32px 24px 60px; }
  .fn-statement-mark { font-size: 48px; }
  .fn-stats { padding: 60px 24px; }
  .fn-stats-inner { flex-direction: column; gap: 40px; }
  .fn-stat-divider { width: 60px; height: 1px; }
  .fn-vision { padding: 60px 24px; }
  .fn-vision-inner { grid-template-columns: 1fr; gap: 32px; }
  .fn-cta { padding: 60px 24px; }
  .fn-cta-btn { font-size: 12px; word-break: break-all; }

  /* Film Ticket */
  .ft-hero { height: 80vh; }
  .ft-hero-title { font-size: clamp(24px, 8vw, 50px); }
  .ft-hero-scroll { display: none; }
  .ft-ticket { padding: 0 16px; }
  .ft-ticket-inner { grid-template-columns: 1fr 1fr; }
  .ft-ticket-item { padding: 28px 12px; }
  .ft-ticket-value { font-size: 18px; }
  .ft-watch { padding: 60px 24px; }
  .ft-gallery { padding: 0 24px 48px; }
  .ft-gallery-header { padding: 48px 0 32px; }
  .ft-gallery-grid { grid-template-columns: 1fr 1fr; }
  .ft-bts-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }
  .ft-bts-right { padding-top: 24px; }

  /* About */
  .about-inner { padding: 80px 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-contact-link { font-size: 14px; word-break: break-all; }
  .stat-num { font-size: 28px; }

  /* Footer */
  footer { padding: 28px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { position: static; transform: none; flex-wrap: wrap; justify-content: center; }
}

/* ── LIGHT MODE ── */
body.light {
  --black: #f5f2ed;
  --white: #0a0a0a;
  --grey: #888;
  --light-grey: #555;
}
body.light .hero-video-placeholder {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(103,205,195,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #f5f2ed 0%, #ebe8e2 50%, #f5f2ed 100%);
}
body.light .hero-bar-top,
body.light .hero-bar-bottom { background: #f5f2ed; }
body.light .nav-bg { background: rgba(245,242,237,0.9); }
body.light .marquee { background: #0a0a0a; border-color: rgba(240,237,232,0.1); }
body.light .marquee-item { color: rgba(240,237,232,0.5); }
body.light #youtube { background: #0a0a0a; color: #f0ede8; }
body.light #youtube .section-header { border-color: rgba(240,237,232,0.1); }
body.light #youtube .section-count { color: rgba(240,237,232,0.4); }
body.light #youtube .project-grid { border-color: rgba(240,237,232,0.08); }
body.light #youtube .project-card:not(:nth-child(3n)) { border-right-color: rgba(240,237,232,0.08); }
body.light #youtube .project-card:nth-child(n+4) { border-top-color: rgba(240,237,232,0.08); }
body.light #films { background: #f5f2ed; color: #0a0a0a; }
body.light #films .section-header { border-color: rgba(0,0,0,0.1); }
body.light #films .section-count { color: rgba(0,0,0,0.4); }
body.light #films .section-heading { color: #0a0a0a !important; }
body.light #films .project-grid { border-color: rgba(0,0,0,0.08); }
body.light #films .project-card:not(:nth-child(3n)) { border-right-color: rgba(0,0,0,0.08); }
body.light #films .project-card:nth-child(n+4) { border-top-color: rgba(0,0,0,0.08); }
body.light #partners { background: #f5f2ed; color: #0a0a0a; }
body.light #partners .section-header { border-color: rgba(0,0,0,0.1); }
body.light .partner-cell { border-color: rgba(0,0,0,0.08) !important; }
body.light .partner-logo { color: rgba(0,0,0,0.3); }
body.light .partner-cell:hover .partner-logo { color: rgba(0,0,0,0.5); }
body.light .testimonials-section { background: #0a0a0a; }
body.light .testimonials-heading { color: #f0ede8; }
body.light .testimonial-card { background: rgba(240,237,232,0.04); border-color: rgba(240,237,232,0.08); }
body.light .testimonial-card:hover { border-color: rgba(240,237,232,0.2); }
body.light .cs-stats { background: #0a0a0a; color: #f0ede8; }
body.light .cs-stat { border-color: rgba(240,237,232,0.08); }
body.light .cs-stat-num { color: #f0ede8; }
body.light .cs-stat-label { color: rgba(240,237,232,0.4); }
body.light .cs-media { background: #f5f2ed; }
body.light .cs-media-placeholder { background: linear-gradient(135deg, #e8e5e0 0%, #ddd 100%); border-color: rgba(0,0,0,0.08); }
body.light .cs-content { background: #0a0a0a; color: #f0ede8; }
body.light .cs-content-heading { color: #f0ede8; }
body.light .cs-content-eyebrow { color: rgba(240,237,232,0.4); }
body.light .cs-content-eyebrow::before { background: rgba(240,237,232,0.3); }
body.light .cs-content-right { border-color: rgba(240,237,232,0.15); }
body.light .cs-content-right p { color: rgba(240,237,232,0.65); }
body.light .cc-narrative { background: #f5f2ed; }
body.light .cc-narrative-inner p { color: rgba(0,0,0,0.6); }
body.light .cc-roles { background: #f5f2ed; color: #0a0a0a; }
body.light .cc-roles-header { border-color: rgba(0,0,0,0.1); }
body.light .cc-role-card { border-color: rgba(0,0,0,0.1); }
body.light .cc-role-card:hover { border-color: rgba(0,0,0,0.25); }
body.light .cc-role-title { color: var(--teal); }
body.light .cc-role-desc { color: rgba(0,0,0,0.5); }
body.light .cc-benefit { border-color: rgba(240,237,232,0.1); }
body.light .cc-benefit-title { color: #f0ede8; }
body.light .cc-benefit p { color: rgba(240,237,232,0.55); }
body.light .fn-hero-text { background: #f5f2ed; }
body.light .fn-hero-name { color: #0a0a0a; }
body.light .fn-hero-role { color: rgba(0,0,0,0.35); }
body.light .fn-hero-social { color: rgba(0,0,0,0.35); }
body.light .fn-hero-scroll span { color: rgba(0,0,0,0.25); }
body.light .fn-scroll-line { background: rgba(0,0,0,0.1); }
body.light .fn-statement { background: #f5f2ed; }
body.light .fn-statement-text { color: rgba(0,0,0,0.5); }
body.light .fn-statement-accent { color: #0a0a0a; }
body.light .fn-stats { background: #0a0a0a; color: #f0ede8; }
body.light .fn-stat-num { color: #f0ede8; }
body.light .fn-stat-label { color: rgba(240,237,232,0.4); }
body.light .fn-stat-divider { background: rgba(240,237,232,0.15); }
body.light .fn-vision { background: #f5f2ed; color: #0a0a0a; }
body.light .fn-vision-heading { color: #0a0a0a; }
body.light .fn-vision-eyebrow { color: rgba(0,0,0,0.4); }
body.light .fn-vision-eyebrow::before { background: rgba(0,0,0,0.3); }
body.light .fn-vision-right p { color: rgba(0,0,0,0.55); }
body.light .ft-hero-bg { filter: brightness(0.35) saturate(0.6); }
body.light .ft-ticket { background: #f5f2ed; }
body.light .ft-ticket-inner { border-color: rgba(0,0,0,0.1); }
body.light .ft-ticket-label { color: rgba(0,0,0,0.35); }
body.light .ft-ticket-value { color: #0a0a0a; }
body.light .ft-watch { background: #f5f2ed; }
body.light .ft-watch-player { background: #e8e5e0; border-color: rgba(0,0,0,0.08); }
body.light .ft-watch-coming { color: rgba(0,0,0,0.3); }
body.light .ft-gallery { background: #f5f2ed; }
body.light .ft-gallery-header { border-color: rgba(0,0,0,0.1); }
body.light .ft-gallery-heading { color: #0a0a0a; }
body.light .ft-gallery-eyebrow { color: rgba(0,0,0,0.4); }
body.light .ft-gallery-eyebrow::before { background: rgba(0,0,0,0.3); }
body.light .ft-gallery-placeholder { background: linear-gradient(135deg, #e8e5e0 0%, #ddd 100%); border-color: rgba(0,0,0,0.06); }
body.light .ft-gallery-placeholder::after { border-color: rgba(0,0,0,0.1); }
body.light .ft-bts { background: #0a0a0a; color: #f0ede8; }
body.light .ft-bts-inner .cs-content-heading { color: #f0ede8; }
body.light .ft-bts-inner .cs-content-eyebrow { color: rgba(240,237,232,0.4); }
body.light .ft-bts-inner .cs-content-eyebrow::before { background: rgba(240,237,232,0.3); }
body.light .ft-bts-right { border-color: rgba(240,237,232,0.15); }
body.light .ft-bts-right p { color: rgba(240,237,232,0.65); }
body.light #about { background: var(--teal); }
body.light footer { background: #0a0a0a; border-color: rgba(240,237,232,0.08); }
body.light footer .footer-copy { color: #666; }
body.light footer .footer-links a { color: #666; }
body.light footer .footer-legal a { color: #555; }
body.light .legal-page { background: #f5f2ed; }
body.light .legal-title { color: #0a0a0a; }
body.light .legal-content h2 { color: #0a0a0a; }
body.light .legal-content p { color: rgba(0,0,0,0.55); }
body.light .legal-content ul li { color: rgba(0,0,0,0.55); }

/* ── TOGGLE BUTTON ── */
.theme-toggle {
  position: relative; z-index: 1;
  background: none; border: 1px solid rgba(240,237,232,0.25);
  border-radius: 100px;
  width: 52px; height: 28px;
  cursor: none;
  display: flex; align-items: center;
  padding: 3px;
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--teal); }
body.light .theme-toggle { border-color: rgba(0,0,0,0.2); }
body.light .theme-toggle:hover { border-color: var(--teal); }
.toggle-knob {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; line-height: 1;
}
body.light .toggle-knob { transform: translateX(24px); background: #0a0a0a; }
