/* ============================================================
   FAM PRODUCTIONS — CINEMATIC STYLESHEET
   A24-Inspired Design System
   ============================================================ */

@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;1,600&family=Space+Grotesk:wght@300;400;500;600;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  --ink: #050505;
  --paper: #f0ede6;
  --red: #e8321e;
  --muted: #6b6b6b;
  --border: rgba(240, 237, 230, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'Courier Prime', 'Courier New', monospace;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

body {
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: none;
  font-family: var(--sans);
}

input, textarea, select {
  font-family: var(--sans);
}

::selection {
  background: var(--red);
  color: var(--paper);
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */

.grain {
  position: fixed;
  inset: -200px;
  width: calc(100% + 400px);
  height: calc(100% + 400px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
  animation: grain-shift 8s steps(10) infinite;
  mix-blend-mode: overlay;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--paper);
  border-radius: 50%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor.hover {
  width: 10px;
  height: 10px;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--red);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */

.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--paper);
  animation: loader-pulse 1.8s ease forwards;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--red);
  animation: loader-line 1.6s ease 0.3s forwards;
}

@keyframes loader-pulse {
  0% { opacity: 0; transform: translateY(12px); }
  40% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes loader-line {
  0% { width: 0; }
  60% { width: 120px; }
  100% { width: 80px; opacity: 0; }
}

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

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  outline: none;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.btn:hover::after {
  width: 100%;
}

.btn-red {
  background: var(--red);
  color: var(--paper);
}

.btn-red:hover {
  background: #d02918;
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-light:hover {
  background: #e8e4dc;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(240, 237, 230, 0.3);
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(240, 237, 230, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--paper);
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.compact {
  padding: 1.1rem 3rem;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-transform: uppercase;
  z-index: 1001;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.7);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta a {
  color: var(--red) !important;
}

.nav-cta a::after {
  background: var(--red) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--paper);
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-overlay-links li a {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}

.nav-overlay.active .nav-overlay-links li a {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay-links li:nth-child(1) a { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay-links li:nth-child(2) a { transition-delay: 0.18s; }
.nav-overlay.active .nav-overlay-links li:nth-child(3) a { transition-delay: 0.26s; }
.nav-overlay.active .nav-overlay-links li:nth-child(4) a { transition-delay: 0.34s; }

.nav-overlay-links li a:hover {
  color: var(--red);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="left"].revealed {
  transform: translateX(0);
  opacity: 1;
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="right"].revealed {
  transform: translateX(0);
  opacity: 1;
}

[data-reveal="scale"] {
  transform: scale(0.94);
}

[data-reveal="scale"].revealed {
  transform: scale(1);
  opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(16rem, 32vw, 28rem);
  font-weight: 600;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(240, 237, 230, 0.55);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.35);
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(240, 237, 230, 0.2);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */

.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee-dot {
  display: inline-block;
  margin: 0 1.8rem;
  width: 4px;
  height: 4px;
  background: rgba(240, 237, 230, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION LAYOUT UTILITIES
   ============================================================ */

.section {
  padding: 7rem 3rem;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.section-header-left .section-label {
  display: block;
  margin-bottom: 0.6rem;
}

.section-header-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}

.view-all {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.view-all:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

/* ============================================================
   FILM CARDS — PORTRAIT 2:3
   ============================================================ */

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

.film-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111;
  cursor: none;
}

.film-card.hidden {
  display: none;
}

.film-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.film-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dark gradient overlay so text is always readable */
.film-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.97) 0%,
    rgba(5,5,5,0.5) 45%,
    rgba(5,5,5,0.15) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.film-card:hover .film-poster-img {
  transform: scale(1.05);
}

/* Poster gradient variants */
.p1 { background: linear-gradient(160deg, #1a0f0a 0%, #3d1a0f 35%, #0d0d0d 70%, #050505 100%); }
.p2 { background: linear-gradient(145deg, #0a0f1a 0%, #0f1f3d 35%, #0a0a12 70%, #050505 100%); }
.p3 { background: linear-gradient(155deg, #0f1a0a 0%, #1f3d0f 30%, #0a120a 70%, #050505 100%); }
.p4 { background: linear-gradient(150deg, #1a0a14 0%, #3d0f2a 35%, #0d0a10 70%, #050505 100%); }
.p5 { background: linear-gradient(165deg, #1a1a0a 0%, #3d3d0f 30%, #121205 70%, #050505 100%); }
.p6 { background: linear-gradient(140deg, #0a1a1a 0%, #0f3d3d 30%, #050f12 70%, #050505 100%); }
.p7 { background: linear-gradient(158deg, #1a0f14 0%, #2e1a26 40%, #0d080d 70%, #050505 100%); }
.p8 { background: linear-gradient(148deg, #1a1509 0%, #332808 40%, #100d05 70%, #050505 100%); }
.p9 { background: linear-gradient(162deg, #080f1a 0%, #0f2040 40%, #050a10 70%, #050505 100%); }

.film-poster-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.film-num {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(240, 237, 230, 0.25);
  z-index: 2;
  transition: color var(--transition-fast);
}

.film-card:hover .film-num {
  color: rgba(240, 237, 230, 0.6);
}

.film-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.4rem 1.6rem;
  background: linear-gradient(to top, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.7) 50%, transparent 100%);
  transform: translateY(calc(100% - 3.5rem));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.film-card:hover .film-info {
  transform: translateY(0);
}

.film-genre {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.film-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 0.7rem;
}

.film-synopsis {
  font-size: 0.78rem;
  color: rgba(240, 237, 230, 0.55);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.film-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.film-year {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(240, 237, 230, 0.35);
}

.film-watch {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color var(--transition-fast);
}

.film-watch:hover {
  color: var(--red);
}

/* Films Filter */
.films-filter {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: transparent;
  color: rgba(240, 237, 230, 0.45);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ============================================================
   FEATURED FILM SECTION
   ============================================================ */

.featured-section {
  padding: 7rem 3rem;
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.featured-visual {
  position: relative;
  aspect-ratio: 2 / 2.7;
  background: linear-gradient(160deg, #1a0f0a 0%, #3d1a0f 35%, #0d0d0d 70%, #050505 100%);
  overflow: hidden;
}

.featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 6px
  );
  z-index: 1;
}

.featured-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid rgba(232, 50, 30, 0.4);
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.featured-content .eyebrow {
  margin-bottom: 1.5rem;
}

.featured-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.featured-content p {
  font-size: 0.95rem;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 420px;
}

.film-details-meta {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.meta-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}

.meta-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--paper);
}

.featured-cta {
  display: flex;
  gap: 1rem;
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */

.manifesto-section {
  padding: 9rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '"';
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 28rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.03);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.manifesto-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.manifesto-content blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 2rem;
}

.manifesto-content cite {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-style: normal;
  text-transform: uppercase;
}

/* ============================================================
   YOUTUBE / CHANNEL SECTION
   ============================================================ */

.channel-section {
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}

.channel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.channel-embed {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  border: 1px solid var(--border);
  overflow: hidden;
}

.channel-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.channel-embed-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: linear-gradient(145deg, #0a0a14 0%, #0f0f1f 50%, #050505 100%);
  text-decoration: none;
}

.channel-embed-fallback .play-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(240, 237, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--paper);
  transition: var(--transition-fast);
}

.channel-embed-fallback:hover .play-icon {
  border-color: var(--red);
  background: rgba(232, 50, 30, 0.15);
}

.channel-embed-fallback p {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.channel-content .eyebrow {
  margin-bottom: 1.5rem;
}

.channel-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

.channel-content p {
  font-size: 0.95rem;
  color: rgba(240, 237, 230, 0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

.channel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}

.stat-item {
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   RECOGNITION SECTION
   ============================================================ */

.recognition-section {
  padding: 7rem 3rem;
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.recognition-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.recognition-item:last-child {
  border-right: none;
}

.recognition-item:hover {
  background: rgba(240, 237, 230, 0.02);
}

.recognition-icon {
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: block;
}

.recognition-award {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.recognition-event {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   BTS / BEHIND THE SCENES GRID
   ============================================================ */

.bts-section {
  padding: 7rem 3rem;
}

.bts-header {
  margin-bottom: 2.5rem;
}

.bts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.5px;
}

.bts-item {
  overflow: hidden;
  position: relative;
}

.bts-item:first-child {
  grid-row: span 2;
}

.bts-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
}

.bts-item:hover .bts-inner {
  transform: scale(1.03);
}

.bts-bg1 { background: linear-gradient(170deg, #1a0a08 0%, #2e0f0a 40%, #0a0505 100%); }
.bts-bg2 { background: linear-gradient(145deg, #080a1a 0%, #0f1228 40%, #050507 100%); }
.bts-bg3 { background: linear-gradient(158deg, #0a1408 0%, #152010 40%, #050805 100%); }
.bts-bg4 { background: linear-gradient(165deg, #14080a 0%, #281018 40%, #0a0508 100%); }
.bts-bg5 { background: linear-gradient(150deg, #141208 0%, #241e08 40%, #0a0905 100%); }

.bts-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.4);
  position: relative;
  z-index: 1;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */

.newsletter-section {
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
  background: #080808;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.newsletter-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  font-size: 0.88rem;
  color: rgba(240, 237, 230, 0.45);
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 auto;
  max-width: 420px;
  width: 100%;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(240, 237, 230, 0.05);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--paper);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--muted);
  font-size: 0.82rem;
}

.newsletter-form input[type="email"]:focus {
  border-color: rgba(240, 237, 230, 0.3);
}

.newsletter-form .btn {
  flex-shrink: 0;
  padding: 0.9rem 1.6rem;
  font-size: 0.7rem;
}

.newsletter-success {
  display: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.newsletter-success.visible {
  display: flex;
}

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

.cta-section {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(14rem, 28vw, 24rem);
  font-weight: 600;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .eyebrow {
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(240, 237, 230, 0.5);
  max-width: 420px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.footer {
  padding: 5rem 3rem 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(240, 237, 230, 0.4);
  line-height: 1.65;
  max-width: 220px;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(240, 237, 230, 0.4);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(240, 237, 230, 0.45);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--paper);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(240, 237, 230, 0.25);
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.25);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(240, 237, 230, 0.6);
}

/* ============================================================
   PAGE HERO (Interior pages)
   ============================================================ */

.page-hero {
  padding: 12rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 600;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
}

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

.page-hero-content .eyebrow {
  margin-bottom: 1.5rem;
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 700px;
}

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

.about-intro {
  padding: 8rem 3rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.about-intro-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-intro-right p {
  font-size: 1.05rem;
  color: rgba(240, 237, 230, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-section {
  padding: 0 3rem 7rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}

.value-item {
  padding: 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.value-item:nth-child(2n) {
  border-right: none;
}

.value-item:nth-child(3),
.value-item:nth-child(4) {
  border-bottom: none;
}

.value-item:hover {
  background: rgba(240, 237, 230, 0.02);
}

.value-num {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

.value-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.value-desc {
  font-size: 0.88rem;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.7;
}

.process-section {
  padding: 7rem 3rem;
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.process-step:first-child {
  border-top: 1px solid var(--border);
}

.process-step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.15);
  line-height: 1;
}

.process-step-content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.5rem;
  padding-top: 0.4rem;
}

.process-step-content p {
  font-size: 0.88rem;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.7;
  max-width: 560px;
}

.team-section {
  padding: 7rem 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}

.team-card-inner {
  aspect-ratio: 3 / 4;
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.team-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 8rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.06);
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-bg {
  transform: scale(1.05);
}

.t1 { background: linear-gradient(160deg, #1a0f0a 0%, #2a1508 100%); }
.t2 { background: linear-gradient(160deg, #0a0f1a 0%, #0f1a2a 100%); }
.t3 { background: linear-gradient(160deg, #0f1a0a 0%, #142510 100%); }
.t4 { background: linear-gradient(160deg, #1a0a14 0%, #28101e 100%); }

.team-info {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, transparent 100%);
}

.team-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: 5rem 3rem 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(240, 237, 230, 0.04);
  border: 1px solid var(--border);
  color: var(--paper);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(240, 237, 230, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select option {
  background: #111;
  color: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-confirmation {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(232, 50, 30, 0.3);
  background: rgba(232, 50, 30, 0.05);
}

.form-confirmation.visible {
  display: block;
}

.form-confirmation p {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail .meta-label {
  display: block;
  margin-bottom: 0.4rem;
}

.contact-detail .detail-value {
  font-size: 0.95rem;
  color: var(--paper);
}

.contact-detail a {
  font-size: 0.95rem;
  color: var(--paper);
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--red);
}

.submission-box {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.submission-box h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.submission-box p {
  font-size: 0.85rem;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.submission-box ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.submission-box ul li {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(240, 237, 230, 0.45);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.submission-box ul li::before {
  content: '—';
  color: var(--red);
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */

@media (max-width: 1100px) {
  .nav { padding: 1.6rem 2rem; }
  .nav.compact { padding: 1rem 2rem; }

  .hero { padding: 0 2rem 3.5rem; }

  .section,
  .featured-section,
  .channel-section,
  .recognition-section,
  .bts-section,
  .manifesto-section,
  .cta-section,
  .newsletter-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer { padding: 4rem 2rem 2rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-item:nth-child(2) { border-right: none; }
  .recognition-item:nth-child(1),
  .recognition-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .films-grid { grid-template-columns: repeat(2, 1fr); }

  .about-intro { padding: 6rem 2rem; }
  .values-section { padding: 0 2rem 5rem; }
  .process-section { padding: 5rem 2rem; }
  .team-section { padding: 5rem 2rem; }
  .contact-section { padding: 4rem 2rem 5rem; }
  .page-hero { padding: 10rem 2rem 4rem; }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .featured-grid,
  .channel-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }

  .values-grid { grid-template-columns: 1fr; }

  .value-item { border-right: none; }

  .value-item:nth-child(n) { border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: none; }

  .scroll-indicator { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */

@media (max-width: 600px) {
  .section,
  .featured-section,
  .channel-section,
  .recognition-section,
  .bts-section,
  .manifesto-section,
  .cta-section,
  .newsletter-section {
    padding: 4rem 1.2rem;
  }

  .hero { padding: 0 1.2rem 3rem; }
  .hero h1 { font-size: clamp(2.8rem, 11vw, 4.5rem); }

  .nav { padding: 1.2rem 1.2rem; }
  .nav.compact { padding: 0.9rem 1.2rem; }

  .films-grid { grid-template-columns: 1fr; }

  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-item { border-right: none; border-bottom: 1px solid var(--border); }
  .recognition-item:last-child { border-bottom: none; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .bts-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bts-item:first-child { grid-row: span 1; }

  .channel-stats { grid-template-columns: repeat(3, 1fr); }

  .page-hero { padding: 8rem 1.2rem 3rem; }
  .page-hero-content h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .form-row { grid-template-columns: 1fr; }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .featured-cta,
  .cta-buttons,
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons { align-items: center; }

  .footer { padding: 3rem 1.2rem 2rem; }

  .contact-section,
  .about-intro,
  .values-section,
  .process-section,
  .team-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .manifesto-section::before { display: none; }
}

/* Auto-added by update_films.py */
.film-subtitle-card {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.5);
  margin-bottom: 0.5rem;
}
.film-artist {
  font-size: 0.8rem;
  color: rgba(240,237,230,0.6);
  margin-bottom: 0.5rem;
  font-style: italic;
  font-family: var(--serif);
}
.featured-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.featured-meta-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
