/* ============================================================
   PAGA PICTURES — CINEMATIC CSS
   Design System: Golden Legacy / Sunrise / Mythic Authority
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Palette */
  --black:        #0a0a0a;
  --charcoal-1:   #141414;
  --charcoal-2:   #1c1c1c;
  --charcoal-3:   #252525;
  --off-white:    #f0ede8;
  --white:        #f5f3f0;
  --gold:         #c6a75e;
  --wine:         #6b1a2a;
  --wine-dim:     rgba(107,26,42,0.12);
  --wine-line:    rgba(107,26,42,0.2);
  --gold-light:   #d9bc7e;
  --gold-dark:    #9c7d3a;
  --gold-glow:    rgba(198, 167, 94, 0.25);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  clamp(80px, 12vw, 160px);
  --content-max:  1100px;

  /* Motion */
  --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-reveal:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-slow:    1.2s;
  --dur-medium:  0.8s;
  --dur-fast:    0.4s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--black);
}

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

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .parallax-bg { transform: none !important; }
  .manifesto-line { transition: none !important; }
  .reveal-block { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ── KEYFRAMES (defined early so all animations can reference them) ── */
@keyframes preloaderOut {
  0%   { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@keyframes logoBloom {
  0%   { opacity: 0; transform: scale(0.88); filter: drop-shadow(0 0 0px rgba(198,167,94,0)); }
  60%  { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 30px rgba(198,167,94,0.6)); }
  100% { opacity: 1; transform: scale(1);   filter: drop-shadow(0 0 15px rgba(198,167,94,0.3)); }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── GRAIN OVERLAY ─────────────────────────────────────────── */
.grain-overlay {

  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  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 200px;
  animation: grain 0.5s steps(1) infinite;
}
.grain-overlay.fixed { position: fixed; opacity: 0.03; }

@keyframes grain {
  0%, 100% { background-position: 0 0; }
  10%       { background-position: -5% -10%; }
  20%       { background-position: -15% 5%; }
  30%       { background-position: 7% -25%; }
  40%       { background-position: -5% 25%; }
  50%       { background-position: -15% 10%; }
  60%       { background-position: 15% 0; }
  70%       { background-position: 0 15%; }
  80%       { background-position: 3% 35%; }
  90%       { background-position: -10% 10%; }
}

/* ============================================================
   PRELOADER — CINEMATIC LOGO REVEAL
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

/* Wide horizontal letterbox bars — cinematic crop */
#preloader::before,
#preloader::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 14vh;
  background: #000;
  z-index: 2;
  transition: height 1.2s 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
#preloader::before { top: 0; }
#preloader::after  { bottom: 0; }
#preloader.bars-open::before,
#preloader.bars-open::after { height: 0; }

/* Radial gold burst behind logo */
.preloader-burst {
  position: absolute;
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(198,167,94,0.18) 0%,
    rgba(198,167,94,0.06) 35%,
    transparent 70%
  );
  opacity: 0;
  transform: scale(0.4);
  animation: burstIn 1.8s 0.5s cubic-bezier(0.19,1,0.22,1) forwards;
  z-index: 1;
}

@keyframes burstIn {
  0%   { opacity: 0; transform: scale(0.4); }
  40%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.6; transform: scale(1); }
}

/* Rotating outer ring */
.preloader-ring {
  position: absolute;
  width: 28vmin;
  height: 28vmin;
  border-radius: 50%;
  border: 1px solid rgba(198,167,94,0.0);
  opacity: 0;
  animation: ringReveal 1.6s 0.8s cubic-bezier(0.19,1,0.22,1) forwards;
  z-index: 1;
}
.preloader-ring-2 {
  position: absolute;
  width: 22vmin;
  height: 22vmin;
  border-radius: 50%;
  border: 1px solid rgba(198,167,94,0.0);
  opacity: 0;
  animation: ringReveal 1.6s 1.0s cubic-bezier(0.19,1,0.22,1) forwards;
  z-index: 1;
}

@keyframes ringReveal {
  0%   { opacity: 0; border-color: rgba(198,167,94,0); transform: scale(1.3); }
  50%  { opacity: 1; border-color: rgba(198,167,94,0.35); transform: scale(1); }
  100% { opacity: 0.5; border-color: rgba(198,167,94,0.15); transform: scale(1); }
}

/* Logo — the centrepiece */
.preloader-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.preloader-logo {
  width: clamp(140px, 20vw, 240px);
  opacity: 0;
  transform: scale(0.7);
  animation: logoGrandReveal 2.0s 0.6s cubic-bezier(0.19,1,0.22,1) forwards;
  position: relative;
}

.preloader-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 0px rgba(198,167,94,0));
  animation: logoGlow 2.0s 0.6s cubic-bezier(0.19,1,0.22,1) forwards;
}

@keyframes logoGrandReveal {
  0%   { opacity: 0; transform: scale(0.7); }
  30%  { opacity: 1; transform: scale(1.06); }
  60%  { opacity: 1; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes logoGlow {
  0%   { filter: drop-shadow(0 0 0px rgba(198,167,94,0)); }
  35%  { filter: drop-shadow(0 0 60px rgba(198,167,94,0.9)) drop-shadow(0 0 120px rgba(198,167,94,0.4)); }
  70%  { filter: drop-shadow(0 0 30px rgba(198,167,94,0.6)) drop-shadow(0 0 60px rgba(198,167,94,0.2)); }
  100% { filter: drop-shadow(0 0 20px rgba(198,167,94,0.35)); }
}

/* Thin horizontal line that draws across under the logo */
.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,167,94,0.6), transparent);
  margin-top: 2rem;
  animation: lineGrow 0.9s 1.4s cubic-bezier(0.19,1,0.22,1) forwards;
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: clamp(120px, 18vw, 220px); opacity: 1; }
}

/* Studio name — letter-by-letter stagger via CSS */
.preloader-text {
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.7s 1.6s var(--ease-reveal) forwards;
}

.preloader-studio {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(0.6rem, 1.4vw, 0.75rem);
  letter-spacing: 0.6em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.preloader-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: rgba(245,245,245,0.7);
  letter-spacing: 0.04em;
}

/* Preloader fade out */
#preloader.fade-out {
  animation: preloaderOut 0.9s var(--ease-cinematic) forwards;
}
/* preloaderOut defined at top of file */

@media (prefers-reduced-motion: reduce) {
  .preloader-burst, .preloader-ring, .preloader-ring-2,
  .preloader-logo, .preloader-logo img, .preloader-line,
  .preloader-text { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   CHAPTER NAV
   ============================================================ */
.chapter-nav {
  position: fixed;
  right: clamp(12px, 2.5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.chapter-nav.visible { opacity: 1; }

.chapter-btn {
  background: none;
  border: 1px solid rgba(198, 167, 94, 0.2);
  color: rgba(198, 167, 94, 0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}
.chapter-btn:hover,
.chapter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 167, 94, 0.08);
  box-shadow: 0 0 12px rgba(198, 167, 94, 0.2);
}
.chapter-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .chapter-nav { display: none; }
}

/* ============================================================
   SOUND TOGGLE
   ============================================================ */
.sound-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(198, 167, 94, 0.2);
  color: rgba(245, 245, 245, 0.5);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.sound-toggle:hover {
  color: var(--gold);
  border-color: rgba(198, 167, 94, 0.5);
}
.sound-toggle.active { color: var(--gold); border-color: rgba(198, 167, 94, 0.5); }
.sound-icon { font-size: 0.8rem; }

/* ============================================================
   SCENES / SECTIONS
   ============================================================ */
.scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.scene-content {
  position: relative;
  z-index: 10;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
}

/* Parallax backgrounds */
.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 1;
  will-change: transform;
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-reveal) var(--delay, 0s),
              transform 0.9s var(--ease-reveal) var(--delay, 0s);
}
.reveal-block.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── COMMON TYPOGRAPHY ─────────────────────────────────────── */
.act-label,
.chapter-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-headline em {
  font-style: italic;
  color: var(--gold);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-cinematic);
  position: relative;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(198, 167, 94, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245, 245, 245, 0.3);
  cursor: pointer;
  transition: all 0.4s var(--ease-cinematic);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(198, 167, 94, 0.15);
  transform: translateY(-2px);
}

/* ============================================================
   HERO (Scene 1)
   ============================================================ */
.scene-hero {
  background: var(--black);
  display: flex;
  align-items: center;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(198, 167, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(120, 60, 20, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: rgba(245, 245, 245, 0.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: fadeInUp 1s 2s var(--ease-reveal) both;
}
.scroll-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(198, 167, 94, 0.5);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(198,167,94,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
/* scrollPulse defined at top */

/* ============================================================
   THESIS (Scene 2)
   ============================================================ */
.scene-thesis {
  background: var(--charcoal-1);
  display: flex;
  align-items: center;
}

.thesis-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(198, 167, 94, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #141414 0%, #1c1c1c 100%);
}

.manifesto {
  margin-bottom: 3rem;
  border-left: 2px solid var(--gold);
  padding-left: 2.5rem;
}

.manifesto-line {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.6;
  transition: color 0.4s ease;
}
.manifesto-line:hover { color: var(--off-white); }
.manifesto-accent {
  color: var(--gold);
  font-style: italic;
}

.thesis-body {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 200;
  color: rgba(245, 245, 245, 0.55);
  max-width: 600px;
  line-height: 1.9;
}

/* ============================================================
   DEVELOPMENT STANDARD (Scene 3)
   ============================================================ */
.scene-standard {
  background: var(--black);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: rgba(198, 167, 94, 0.1);
  border: 1px solid rgba(198, 167, 94, 0.1);
  margin-top: 1rem;
}

.pillar-card {
  background: var(--charcoal-1);
  padding: clamp(2rem, 4vw, 3rem);
  transition: all 0.5s var(--ease-cinematic);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(198,167,94,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pillar-card:hover {
  background: var(--charcoal-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(198,167,94,0.1);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillar-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.8;
}

/* ============================================================
   FOUNDER LETTER (Scene 4)
   ============================================================ */
.scene-founder {
  background: var(--charcoal-2);
}

.founder-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(120, 60, 20, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(198, 167, 94, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
}

.founder-content {
  max-width: 800px;
}

.letter-container {
  position: relative;
}

.letter-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

.letter-body {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.8);
}

.letter-body p { margin-bottom: 1.5em; }

.letter-dropcap::first-letter {
  float: left;
  font-family: var(--font-serif);
  font-size: 5em;
  line-height: 0.75;
  color: var(--gold);
  margin-right: 0.1em;
  margin-top: 0.1em;
  font-weight: 400;
}

.letter-question {
  font-style: italic;
  color: var(--gold-light) !important;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(198, 167, 94, 0.3);
}

/* Collapse/expand */
.letter-excerpt {
  display: none;
  overflow: hidden;
}
.letter-excerpt.open { display: block; }

.letter-expand-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.letter-expand-btn:hover { color: var(--gold-light); }
.expand-arrow { transition: transform 0.4s ease; }
.letter-expand-btn[aria-expanded="true"] .expand-arrow { transform: rotate(180deg); }

.letter-signature {
  margin-top: 3rem;
}
.sig-rule {
  width: 40px;
  height: 1px;
  background: rgba(198, 167, 94, 0.4);
  margin-bottom: 1rem;
}
.sig-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.sig-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.4);
}

/* ============================================================
   DEVELOPMENT SLATE (Scene 5)
   ============================================================ */
.scene-slate { background: var(--black); }

.slate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(198, 167, 94, 0.06);
}

.slate-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  cursor: pointer;
  background: var(--charcoal-1);
}

.slate-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.8s var(--ease-cinematic);
}
.slate-card:hover .slate-card-bg { transform: scale(1.05); }

.slate-placeholder-bg {
  width: 100%;
  height: 100%;
}
.brevard-bg {
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 40%, #0d0d0d 100%);
  /* Replace with: background-image: url('assets/images/brevard-bg.jpg'); background-size: cover; */
}
.sixpoint-bg {
  background: url('../assets/images/six-point-seven-poster.png') center top / cover no-repeat;
}
.poa-bg {
  background:
    radial-gradient(ellipse 70% 50% at 35% 45%, rgba(122,154,181,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 75% 70%, rgba(30,40,55,0.6) 0%, transparent 70%),
    linear-gradient(160deg, #0e1520 0%, #0a0a0a 45%, #111820 100%);
}
.lok-bg {
  background: url('../assets/images/the-ledger-of-kings-poster.png') center top / cover no-repeat;
}
.nlf-bg {
  background:
    radial-gradient(ellipse 70% 50% at 25% 35%, rgba(78,184,154,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 80% 70%, rgba(10,25,20,0.6) 0%, transparent 70%),
    linear-gradient(160deg, #07100d 0%, #0a0a0a 45%, #081210 100%);
}
.tsg-bg {
  background: url('../assets/images/the-shepherds-gun-poster.png') center top / cover no-repeat;
}
.sg-bg {
  background:
    radial-gradient(ellipse 80% 60% at 35% 25%, rgba(212,168,67,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 75% at 80% 80%, rgba(15,12,4,0.7) 0%, transparent 65%),
    linear-gradient(160deg, #140f04 0%, #0a0a0a 45%, #130e04 100%);
}
.tcl-bg {
  background: url('../assets/images/the-client-list-poster.png') center top / cover no-repeat;
}
.wrongside-bg {
  background: linear-gradient(160deg, #111111 0%, #0a0a0a 40%, #161616 100%);
}

.slate-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  transition: background 0.5s ease;
}
.slate-card:hover .slate-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 70%, rgba(198,167,94,0.05) 100%);
}

.slate-card-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.slate-genre {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.slate-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.slate-logline {
  font-size: 0.85rem;
  font-weight: 200;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-cinematic), opacity 0.5s ease;
  opacity: 0;
}
.slate-card:hover .slate-logline {
  max-height: 120px;
  opacity: 1;
}

.slate-detail-btn {
  background: none;
  border: 1px solid rgba(198, 167, 94, 0.4);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}
.slate-card:hover .slate-detail-btn {
  opacity: 1;
  transform: translateY(0);
}
.slate-detail-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--charcoal-1);
  border: 1px solid rgba(198, 167, 94, 0.15);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.5s var(--ease-cinematic) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid rgba(245,245,245,0.15);
  color: rgba(245,245,245,0.5);
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.modal-close:hover { color: var(--off-white); border-color: var(--gold); }

.modal-trailer-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(198, 167, 94, 0.1);
  /* Replace placeholder with: <video> element */
}
.trailer-icon {
  font-size: 3rem;
  color: rgba(198, 167, 94, 0.3);
  transition: color 0.3s ease;
}
.modal-trailer-placeholder:hover .trailer-icon { color: var(--gold); }
.trailer-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.25);
}

.modal-body { padding: 2.5rem; }
.modal-genre {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.modal-synopsis {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.modal-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.theme-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(198, 167, 94, 0.2);
  padding: 0.35rem 0.75rem;
}

/* ============================================================
   PARTNERSHIP (Scene 6)
   ============================================================ */
.scene-partnership { background: var(--charcoal-1); }

.partnership-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(198, 167, 94, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}

.partnership-block {
  max-width: 720px;
  margin-bottom: 5rem;
}
.partnership-block:last-child { margin-bottom: 0; }

.partnership-body {
  margin-bottom: 2.5rem;
}
.partnership-body p {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 200;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.9;
  margin-bottom: 1.25em;
}

.partnership-signals {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.partnership-signals li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.6);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(198, 167, 94, 0.08);
  padding-left: 1.5rem;
  position: relative;
}
.partnership-signals li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.partnership-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,167,94,0.2), transparent);
  margin: 5rem 0;
}

/* ============================================================
   CONTACT (Scene 7)
   ============================================================ */
.scene-contact { background: var(--black); }

.contact-content {
  max-width: 760px;
}

.logo-mark-small {
  width: 80px;
  margin-bottom: 2rem;
}
.logo-mark-small img { width: 100%; }

.contact-intro {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 200;
  color: rgba(245, 245, 245, 0.55);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(198, 167, 94, 0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal-1);
  border: 1px solid rgba(198, 167, 94, 0.15);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(198, 167, 94, 0.5);
  box-shadow: 0 0 0 1px rgba(198, 167, 94, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,245,245,0.2); }
.form-group select option { background: var(--charcoal-1); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: fit-content;
  cursor: pointer;
  font-family: var(--font-sans);
}

.form-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.35);
  line-height: 1.8;
  margin-top: 0.5rem;
}
.form-note a {
  color: rgba(198, 167, 94, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.form-note a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(198, 167, 94, 0.08);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  width: 60px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.footer-logo:hover { opacity: 1; }
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.25);
}
.footer-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(198, 167, 94, 0.3);
}

/* ============================================================
   ANIMATIONS — keyframes defined at top of file
   ============================================================ */
/* fadeInUp, scrollPulse, logoBloom, preloaderOut, grain — all defined above */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; }
  .manifesto { padding-left: 1.5rem; }
  .letter-dropcap::first-letter { font-size: 3.5em; }
  .sound-toggle { top: 1rem; right: 1rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .slate-grid { grid-template-columns: 1fr; }
  .slate-logline { max-height: 120px; opacity: 1; }
  .slate-detail-btn { opacity: 1; transform: none; }
}

/* ============================================================
   TOP NAV
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  background: rgba(10, 10, 10, 0);
  border-bottom: 1px solid rgba(198, 167, 94, 0);
  transition: background 0.5s ease, border-color 0.5s ease;
  backdrop-filter: blur(0px);
}
.top-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(198, 167, 94, 0.1);
  backdrop-filter: blur(12px);
}
.top-nav-logo { display: flex; align-items: center; }
.top-nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.top-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.top-nav-links a:hover { color: var(--gold); }
.nav-investor-link { color: var(--gold) !important; }
.nav-cta {
  padding: 0.55rem 1.2rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(198,167,94,0.3);
  color: var(--gold);
  width: 40px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover { background: rgba(198,167,94,0.1); }

@media (max-width: 768px) {
  .top-nav-links { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(20px);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid rgba(245,245,245,0.2);
  color: var(--off-white);
  width: 44px; height: 44px;
  font-size: 1rem;
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 300;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.mobile-contact a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(198,167,94,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-contact a:hover { color: var(--gold); }

/* ============================================================
   FOUNDER PROFILE (A.R. SHY)
   ============================================================ */
.founder-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: 5rem;
  max-width: 960px;
}

@media (max-width: 840px) {
  .founder-profile { grid-template-columns: 1fr; }
}

.founder-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.founder-photo-frame {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(198, 167, 94, 0.2);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05);
  transition: transform 0.8s var(--ease-cinematic);
}
.founder-photo-frame:hover img { transform: scale(1.03); }

.founder-photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(198, 167, 94, 0.15);
  z-index: 1;
  pointer-events: none;
}

.founder-bio { padding-top: 0.5rem; }

.founder-name-block { margin-bottom: 1.5rem; }
.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.founder-name em { color: var(--gold); font-style: italic; }
.founder-role {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(198, 167, 94, 0.6);
}

.founder-bio-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.9;
  margin-bottom: 1.25em;
}

.founder-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(198,167,94,0.12);
}
.founder-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}

.letter-headline { margin-top: 2rem; }

/* ============================================================
   INVESTOR PORTAL
   ============================================================ */
.scene-investors { background: #111111; }
.investor-gradient-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(198,167,94,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(60,30,10,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.investor-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .investor-layout { grid-template-columns: 1fr; }
}

.investor-why {}
.why-block {
  margin-bottom: 3rem;
}
.why-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.why-block p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,245,245,0.6);
  line-height: 1.9;
}

.investor-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(198,167,94,0.08);
  border: 1px solid rgba(198,167,94,0.08);
}
@media (max-width: 600px) {
  .investor-pillars { grid-template-columns: 1fr; }
}

.investor-pillar {
  background: var(--charcoal-1);
  padding: 1.75rem;
  transition: background 0.4s ease;
}
.investor-pillar:hover { background: var(--charcoal-2); }
.inv-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.investor-pillar h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.investor-pillar p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,245,245,0.5);
  line-height: 1.7;
}

/* PORTAL CARD */
.investor-portal { position: sticky; top: 100px; }

.portal-card {
  background: var(--charcoal-1);
  border: 1px solid rgba(198,167,94,0.2);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.portal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.portal-badge {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(198,167,94,0.08);
  border: 1px solid rgba(198,167,94,0.2);
  padding: 0.4rem 0.8rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.portal-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.portal-title em { color: var(--gold); font-style: italic; }

.portal-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,245,245,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.portal-divider {
  width: 100%;
  height: 1px;
  background: rgba(198,167,94,0.12);
  margin-bottom: 1.75rem;
}

.portal-form { display: flex; flex-direction: column; gap: 1.25rem; }
.portal-form .form-group label { font-size: 0.6rem; }
.portal-form input,
.portal-form select,
.portal-form textarea {
  background: rgba(10,10,10,0.5);
  font-size: 0.85rem;
}

.portal-direct {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(198,167,94,0.1);
  text-align: center;
}
.portal-direct span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.25);
}
.portal-direct a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(198,167,94,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.portal-direct a:hover { color: var(--gold); }

/* ============================================================
   FAN ZONE
   ============================================================ */
.scene-fans { background: var(--charcoal-2); }
.fans-gradient-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198,167,94,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
}

.fans-intro {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 200;
  color: rgba(245,245,245,0.55);
  max-width: 620px;
  line-height: 1.9;
  margin-bottom: 3rem;
}

/* TABS */
.fans-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(198,167,94,0.15);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.fan-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(245,245,245,0.4);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}
.fan-tab:hover { color: rgba(245,245,245,0.7); }
.fan-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.fan-panel { display: none; }
.fan-panel.active { display: block; }

/* INSIDERS */
.insiders-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .insiders-layout { grid-template-columns: 1fr; } }

.fans-subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.insiders-copy p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,245,245,0.6);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.insiders-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.insiders-perks li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,245,245,0.65);
  padding: 0.75rem 1rem;
  background: rgba(198,167,94,0.04);
  border-left: 2px solid rgba(198,167,94,0.25);
}

.insiders-form {
  background: var(--charcoal-1);
  border: 1px solid rgba(198,167,94,0.12);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* POLL */
.poll-container { max-width: 680px; }
.poll-question {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(245,245,245,0.8);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.poll-options { display: flex; flex-direction: column; gap: 1rem; }
.poll-btn {
  background: var(--charcoal-1);
  border: 1px solid rgba(198,167,94,0.12);
  color: var(--off-white);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.poll-btn:hover { border-color: rgba(198,167,94,0.4); background: var(--charcoal-2); }
.poll-btn.voted { border-color: rgba(198,167,94,0.5); cursor: default; }
.poll-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.poll-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
}
.poll-genre-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.poll-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(198,167,94,0.1);
  margin-bottom: 0.5rem;
}
.poll-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.8s var(--ease-cinematic);
}
.poll-pct {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(198,167,94,0.7);
  display: block;
}
.poll-note {
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(245,245,245,0.3);
  font-style: italic;
}

/* Q&A */
.qanda-container { max-width: 720px; }
.qanda-container > p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,245,245,0.6);
  line-height: 1.9;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.qanda-form {
  background: var(--charcoal-1);
  border: 1px solid rgba(198,167,94,0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.qanda-answers { margin-top: 2rem; }
.answers-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.qanda-item {
  border-left: 2px solid rgba(198,167,94,0.2);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.q-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,245,245,0.6);
  margin-bottom: 0.75rem;
}
.a-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245,245,245,0.8);
  line-height: 1.9;
  margin-bottom: 0.5rem;
}
.a-sig {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
}

/* CONNECT */
.connect-container { max-width: 720px; }
.connect-container > p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,245,245,0.6);
  line-height: 1.9;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(198,167,94,0.08);
  border: 1px solid rgba(198,167,94,0.08);
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .social-links { grid-template-columns: 1fr; } }
.social-link {
  background: var(--charcoal-1);
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s ease;
}
.social-link:hover { background: var(--charcoal-2); }
.social-icon { font-size: 1.5rem; }
.social-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--off-white);
  display: block;
}
.social-handle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--gold);
  display: block;
  margin-top: 0.2rem;
}
.share-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.share-block p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,245,245,0.5);
}

/* MODAL FAN CTA */
.modal-fan-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(198,167,94,0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.modal-fan-cta p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,245,245,0.45);
}

/* FOOTER NAV + CONTACT */
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(198,167,94,0.5);
}
.footer-contact a {
  color: rgba(198,167,94,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--gold); }

/* ============================================================
   FOUNDER ROLE BADGES
   ============================================================ */
.founder-roles-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.role-badge {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.35rem 0.8rem;
  display: inline-block;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  margin: 4rem 0 5rem;
  max-width: 960px;
}

.team-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(198,167,94,0.15);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198,167,94,0.08);
  border: 1px solid rgba(198,167,94,0.08);
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--charcoal-1);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.4s ease;
}
.team-card:hover { background: var(--charcoal-2); }

.team-photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(198,167,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198,167,94,0.05);
  overflow: hidden;
  flex-shrink: 0;
}
.team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-initials {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(198,167,94,0.5);
  letter-spacing: 0.1em;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.2;
}

.team-aka {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(198,167,94,0.55);
  font-style: italic;
  min-height: 1em;
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.team-role-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  display: inline-block;
}

/* ============================================================
   LETTER STACCATO LINES
   ============================================================ */
.letter-staccato {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.75);
  line-height: 2;
  border-left: 2px solid rgba(198, 167, 94, 0.3);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
}

/* ============================================================
   FEATURE 1: HERO VIDEO BACKGROUND
   ============================================================ */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-video.loaded { opacity: 1; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.95) 100%),
    linear-gradient(to right, rgba(10,10,10,0.4) 0%, transparent 50%);
}
/* Ensure hero content sits above video */
.scene-hero .scene-content { position: relative; z-index: 2; }
.scene-hero .scroll-cue    { position: absolute; z-index: 2; }
.scene-hero .parallax-bg   { z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* ============================================================
   FEATURE 2: FILM STRIP HORIZONTAL SLATE
   ============================================================ */
.scene-slate { overflow: hidden; padding-bottom: 0; }
.scene-slate .scene-content { padding-bottom: 3rem; }

.filmstrip-wrap {
  position: relative;
  background: #0a0a0a;
  border-top: 1px solid rgba(198,167,94,0.1);
  border-bottom: 1px solid rgba(198,167,94,0.1);
  user-select: none;
}

/* Sprocket holes */
.filmstrip-sprockets {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0a0a0a;
  padding: 0 8px;
  height: 28px;
  overflow: hidden;
  border-bottom: 1px solid #111;
}
.filmstrip-sprockets.bottom { border-bottom: none; border-top: 1px solid #111; }
.sprocket {
  display: inline-block;
  width: 18px;
  height: 14px;
  border: 1px solid rgba(198,167,94,0.18);
  border-radius: 2px;
  background: rgba(0,0,0,0.8);
  margin: 0 18px;
  flex-shrink: 0;
}

/* Scrollable track */
.filmstrip-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  padding: 0;
}
.filmstrip-track::-webkit-scrollbar { display: none; }
.filmstrip-track.grabbing { cursor: grabbing; }

/* Individual frames */
.filmstrip-frame {
  position: relative;
  flex-shrink: 0;
  width: clamp(320px, 42vw, 580px);
  height: clamp(440px, 55vw, 680px);
  scroll-snap-align: start;
  overflow: hidden;
  border-right: 3px solid #0a0a0a;
}

.filmstrip-frame-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.19,1,0.22,1);
}
.filmstrip-frame:hover .filmstrip-frame-bg { transform: scale(1.04); }

.filmstrip-frame-bg > div {
  width: 100%;
  height: 100%;
}

.filmstrip-frame-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.1) 100%);
  transition: background 0.5s ease;
}
.filmstrip-frame:hover .filmstrip-frame-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,0.15) 100%);
}

.filmstrip-frame-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
}

.filmstrip-frame-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(198,167,94,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.filmstrip-scroll-hint {
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.3);
  background: #0a0a0a;
  border-top: 1px solid #111;
}

/* ============================================================
   FEATURE 3: CHAPTER TITLE CARDS
   ============================================================ */
.chapter-title-card {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  overflow: hidden;
  transition: height 0.01s;
}
.chapter-title-card.visible {
  height: clamp(80px, 12vw, 120px);
}

.ctc-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.9s cubic-bezier(0.19,1,0.22,1), transform 0.9s cubic-bezier(0.19,1,0.22,1);
}
.chapter-title-card.visible .ctc-inner {
  opacity: 1;
  transform: translateY(0);
}

.ctc-num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.ctc-rule {
  display: block;
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: rgba(198,167,94,0.3);
}
.ctc-label {
  font-family: var(--font-sans);
  font-size: clamp(0.55rem, 1.2vw, 0.72rem);
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}

@media (prefers-reduced-motion: reduce) {
  .ctc-inner { transition: none; opacity: 1; transform: none; }
  .chapter-title-card { height: clamp(80px,12vw,120px) !important; }
}

/* ============================================================
   FEATURE 4: CUSTOM CROSSHAIR CURSOR
   ============================================================ */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: difference;
  transition: transform 0.08s ease, opacity 0.3s ease;
  opacity: 0;
}
.custom-cursor.visible { opacity: 1; }
.custom-cursor.clicking { transform: scale(0.75); }

.cursor-crosshair {
  position: relative;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
}
.cursor-crosshair::before,
.cursor-crosshair::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
/* Horizontal bar */
.cursor-crosshair::before {
  width: 100%; height: 1px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
/* Vertical bar */
.cursor-crosshair::after {
  width: 1px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}
.cursor-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* Corner ticks */
.cursor-tl, .cursor-tr, .cursor-bl, .cursor-br {
  position: absolute;
  width: 6px; height: 6px;
}
.cursor-tl { top: 0; left: 0; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.cursor-tr { top: 0; right: 0; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.cursor-bl { bottom: 0; left: 0; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.cursor-br { bottom: 0; right: 0; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* Hide default cursor when custom is active */
body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button { cursor: none !important; }

@media (hover: none) {
  .custom-cursor { display: none !important; }
  body.custom-cursor-active,
  body.custom-cursor-active a,
  body.custom-cursor-active button { cursor: auto !important; }
}
@media (prefers-reduced-motion: reduce) {
  .custom-cursor { transition: none; }
}

/* ============================================================
   FEATURE 5: MARQUEE TICKER
   ============================================================ */
.marquee-bar {
  background: #000;
  border-top: 1px solid rgba(198,167,94,0.15);
  border-bottom: 1px solid rgba(198,167,94,0.15);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
}
.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-bar::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}
.marquee-bar::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-content {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(198,167,94,0.5);
  padding-right: 0;
  flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   ABOUT — THE NAME SECTION
   ============================================================ */
.scene-about {
  background: var(--charcoal-1);
  position: relative;
}

.about-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(198,167,94,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(198,167,94,0.03) 0%, transparent 60%);
}

.about-content {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ── Origin Split ── */
.about-origin {
  margin: 3.5rem 0;
  max-width: 760px;
}

.about-origin-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(245,245,245,0.75);
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.origin-split {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(198,167,94,0.12);
  margin-bottom: 2.5rem;
}

.origin-half {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.origin-divider {
  width: 1px;
  background: rgba(198,167,94,0.12);
  flex-shrink: 0;
}

.origin-letters {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.origin-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  font-weight: 300;
  color: rgba(245,245,245,0.55);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.about-origin-after {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(245,245,245,0.5);
  line-height: 1.8;
  font-style: italic;
}

/* ── Hebrew Block ── */
.about-hebrew {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin: 4rem 0;
  padding: 3rem 3.5rem;
  border-left: 2px solid rgba(198,167,94,0.4);
  background: rgba(198,167,94,0.025);
  flex-wrap: wrap;
}

.hebrew-word-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hebrew-script {
  font-family: 'Georgia', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  direction: rtl;
  letter-spacing: 0.05em;
}

.hebrew-roman {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(198,167,94,0.6);
  font-weight: 300;
}

.hebrew-lang {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.25);
}

.hebrew-meanings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hebrew-meaning-item {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--off-white);
  font-style: italic;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(198,167,94,0.2);
  line-height: 1.4;
}

.hebrew-note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(198,167,94,0.5);
  margin-top: 0.5rem;
  font-style: italic;
  align-self: flex-end;
  flex-basis: 100%;
}

/* ── Three Pillars ── */
.about-pillars {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-pillar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  align-items: start;
}

@media (max-width: 700px) {
  .about-pillar { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .about-hebrew { flex-direction: column; gap: 2rem; padding: 2rem; }
  .origin-split { flex-direction: column; }
  .origin-divider { width: 100%; height: 1px; }
}

.about-pillar-divider {
  height: 1px;
  background: rgba(198,167,94,0.08);
}

.about-pillar-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 120px;
}

.about-pillar-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(198,167,94,0.15);
  line-height: 1;
  letter-spacing: 0.05em;
}

.about-pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.2;
}

.about-pillar-title em {
  color: var(--gold);
  font-style: italic;
}

.about-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-pillar-body p {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(245,245,245,0.6);
  line-height: 1.9;
}

.about-pillar-close {
  color: rgba(245,245,245,0.45) !important;
  font-style: italic;
}

.about-staccato {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid rgba(198,167,94,0.25);
  margin-top: 0.5rem;
}

.about-staccato span {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(245,245,245,0.55);
  font-style: italic;
  line-height: 1.7;
}

/* ── Mission ── */
.about-mission {
  margin-top: 5rem;
  padding-top: 4rem;
  max-width: 820px;
}

.about-mission-rule {
  width: 60px;
  height: 1px;
  background: rgba(198,167,94,0.4);
  margin-bottom: 2rem;
}

.about-mission-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-mission-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 3rem;
  font-style: italic;
}

.about-mission-beliefs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(198,167,94,0.08);
  border: 1px solid rgba(198,167,94,0.08);
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .about-mission-beliefs { grid-template-columns: repeat(2, 1fr); }
}

.mission-belief {
  background: var(--charcoal-1);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.3s ease;
}
.mission-belief:hover { background: var(--charcoal-2); }

.belief-verb {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
}

.belief-qual {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,245,245,0.35);
  text-transform: lowercase;
}

.about-mission-conviction {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(245,245,245,0.55);
  line-height: 1.8;
}

.about-mission-conviction em {
  color: var(--off-white);
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

/* ============================================================
   PRELOADER ENTER BUTTONS
   ============================================================ */
.preloader-enter {
  margin-top: 3rem;
  background: transparent;
  border: 1px solid rgba(198,167,94,0.5);
  color: var(--gold);
  padding: 1rem 3.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease, background 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
}
.preloader-enter.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.preloader-enter:hover {
  background: rgba(198,167,94,0.08);
  border-color: var(--gold);
}
.enter-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 400;
}
.enter-sub {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(198,167,94,0.55);
  letter-spacing: 0.1em;
}

.preloader-skip {
  margin-top: 1rem;
  background: transparent;
  border: none;
  color: rgba(245,245,245,0.2);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.8s ease, color 0.3s ease;
  pointer-events: none;
  padding: 0.5rem 1rem;
}
.preloader-skip.visible {
  opacity: 1;
  pointer-events: auto;
}
.preloader-skip:hover { color: rgba(245,245,245,0.45); }

/* ── SLATE STATUS BADGES ── */
.slate-status-badge {
  display: inline-block;
  font-size: 0.45rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.2rem 0.5rem;
  margin-left: 0.5rem;
  font-weight: 500;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.slate-status-badge.dev {
  background: transparent;
  color: rgba(198,167,94,0.5);
  border: 1px solid rgba(198,167,94,0.25);
}

/* ── SHATTERED REFLECTIONS BG ── */
.shattered-bg {
  background: url('../assets/images/shattered-reflections-poster.jpg') center top / cover no-repeat;
}

/* ── THE PINK LID BG ── */
.pinklid-bg {
  background:
    radial-gradient(ellipse 100% 80% at 50% 30%, rgba(180,100,120,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(120,60,80,0.2) 0%, transparent 50%),
    linear-gradient(170deg, #0e0e0e 0%, #181818 40%, #0a0a0a 100%);
}
