/* ============================================================
   FONDA STUDIOS — Ultra-Modern Design System 2026
   Dark Luxury Cinema · Gold Accent · Glassmorphism
   Dark / Light mode with curtain animation
   ============================================================ */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-glow: rgba(201,168,76,0.25);
  --bg: #060606;
  --bg2: #0d0d0d;
  --bg3: #141414;
  --glass: rgba(255,255,255,0.025);
  --glass-border: rgba(255,255,255,0.07);
  --text: #F0EDE6;
  --text-dim: #c8c5be;
  --muted: #8a8880;
  --border: rgba(201,168,76,0.15);
  --border-subtle: rgba(255,255,255,0.06);

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201,168,76,0.08);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);

  /* Radius */
  --radius-sm: 3px;
  --radius-md: 8px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── LIGHT MODE TOKENS ────────────────────────────────────── */
html[data-theme="light"] {
  --bg:           #f5f1eb;
  --bg2:          #ede8df;
  --bg3:          #e3ddd3;
  --glass:        rgba(0,0,0,0.03);
  --glass-border: rgba(0,0,0,0.07);
  --text:         #1a1a1a;
  --text-dim:     #333333;
  --muted:        #666057;
  --border:       rgba(201,168,76,0.28);
  --border-subtle:rgba(0,0,0,0.08);
  --shadow-gold:  0 0 40px rgba(201,168,76,0.12);
  --shadow-card:  0 20px 60px rgba(0,0,0,0.10);
}

/* Nav inversée en light mode */
html[data-theme="light"] nav.scrolled {
  background: rgba(245,241,235,0.94);
  box-shadow: 0 1px 0 rgba(201,168,76,0.1), 0 8px 32px rgba(0,0,0,0.08);
}
html[data-theme="light"] .nav-links a { color: #888; }
html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a.active { color: #1a1a1a; }
html[data-theme="light"] .nav-links li.nav-cta a { color: var(--gold); }
html[data-theme="light"] .nav-links li.nav-cta a:hover { color: var(--bg); }
html[data-theme="light"] .nav-hamburger span { background: #1a1a1a; }
html[data-theme="light"] .nav-mobile-overlay { background: rgba(245,241,235,0.98); }

/* Stats, ticker, dividers en light mode */
html[data-theme="light"] .ticker { background: var(--bg2); }
html[data-theme="light"] .stats-bar { background: var(--bg); }
html[data-theme="light"] .contact-hero { background: var(--bg2); }
html[data-theme="light"] footer { background: var(--bg2); }

/* Grain overlay plus subtil en light */
html[data-theme="light"] body::before { opacity: 0.15; }

/* Cards en light mode */
html[data-theme="light"] .info-card { background: rgba(255,255,255,0.6); border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .video-card { background: var(--bg3); border-color: rgba(0,0,0,0.08); }

/* ── CURTAIN OVERLAY ──────────────────────────────────────── */
#theme-curtain {
  position: fixed;
  inset: 0;
  transform-origin: top;
  transform: scaleY(0);
  z-index: 9997;
  pointer-events: none;
  will-change: transform;
}
#theme-curtain.falling {
  transition: transform 550ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: scaleY(1);
}
#theme-curtain.rising {
  transition: transform 550ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: scaleY(0);
}

/* ── THEME TOGGLE BUTTON ──────────────────────────────────── */
#theme-toggle-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  outline: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s,
              transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#theme-toggle-btn:hover {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow), 0 4px 20px rgba(0,0,0,0.3);
}
#theme-toggle-btn:active { transform: scale(0.96); }
#theme-toggle-btn svg { display: block; pointer-events: none; }

html[data-theme="light"] #theme-toggle-btn {
  background: #1a1a1a;
  color: #f5f1eb;
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ── BASE ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s ease, color 0.3s ease;
}

@media (max-width: 900px) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none !important; }
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 900;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
#cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              background 0.25s, border 0.25s, opacity 0.25s;
  will-change: left, top;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.08s var(--ease-out), top 0.08s var(--ease-out),
              width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  will-change: left, top;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s, color 0.3s;
  border-bottom: 0.5px solid transparent;
}

nav.scrolled {
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 3rem;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(201,168,76,0.06), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}

.nav-logo:hover img { opacity: 0.7; transform: scale(1.02); }

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

.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

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

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

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

.nav-links li.nav-cta a {
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 7px 20px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.15em;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav-links li.nav-cta a::after { display: none; }

.nav-links li.nav-cta a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}

/* ── HAMBURGER ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE OVERLAY ───────────────────────────────────────── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  gap: 0.25rem;
}

.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-overlay a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 9vw, 58px);
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 2rem;
  transition: color 0.2s, transform 0.2s;
  text-align: center;
}

.nav-mobile-overlay a:hover,
.nav-mobile-overlay a.active { color: var(--gold); transform: translateX(8px); }

.nav-mobile-contact {
  margin-top: 2rem;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ── CANVAS BACKGROUND ────────────────────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201,168,76,0.04) 0%, transparent 45%),
    var(--bg);
  pointer-events: none;
}

/* Decorative vertical lines */
.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 0.5px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.1), transparent);
  pointer-events: none;
}

/* Film perforations */
.hero-perfs {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2rem 0;
  pointer-events: none;
  opacity: 0.18;
}

.hero-perf {
  width: 14px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  display: block;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(82px, 14.5vw, 210px);
  line-height: 0.88;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 1s 0.55s forwards;
  letter-spacing: 0.01em;
}

.hero-title .accent { color: var(--gold); }

.hero-title .outline {
  -webkit-text-stroke: 1px rgba(240,237,230,0.35);
  color: transparent;
}

.hero-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 0.35s var(--ease);
}

.hero-cta:hover { gap: 1.6rem; }

.hero-cta-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.35s, border-color 0.35s, color 0.35s, box-shadow 0.35s;
}

.hero-cta:hover .hero-cta-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 24px var(--gold-glow);
}

/* Rotating badge */
.hero-badge {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinBadge 22s linear infinite;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 0.5px solid rgba(201,168,76,0.1);
  border-radius: 50%;
}

.hero-badge-inner {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.6;
  animation: spinInner 22s linear infinite;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── TICKER ───────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.25rem 0;
  background: var(--bg2);
  position: relative;
}

.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}

.ticker-track {
  display: flex;
  animation: tickerMove 35s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 0 2.5rem;
  white-space: nowrap;
  border-right: 0.5px solid var(--border-subtle);
  transition: color 0.3s;
  cursor: default;
}

.ticker-item:hover { color: var(--text); }
.ticker-item.gold { color: var(--gold); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--bg);
}

.stat-item {
  flex: 1;
  padding: 2.75rem 2rem;
  border-right: 0.5px solid var(--border);
  text-align: center;
  position: relative;
  transition: background 0.4s;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}

.stat-item:hover { background: rgba(201,168,76,0.02); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(201,168,76,0.2);
}

.stat-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTIONS ─────────────────────────────────────────────── */
section {
  padding: 6.5rem 3rem;
  position: relative;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 35px;
  height: 0.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

/* ── VIDEO GRID ───────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
  border: 0.5px solid var(--border-subtle);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
  border-radius: var(--radius-sm);
}

.video-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 0.5px var(--border);
}

.video-card.span2 {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Overlay transparent — empêche l'iframe de capturer le curseur
   jusqu'au clic. Retiré par JS au premier clic pour laisser jouer la vidéo. */
.video-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
  background: transparent;
}
.video-card.playing .video-shield { display: none; }

.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.video-card:hover .video-label { opacity: 1; transform: translateY(0); }

.video-tag {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(6,6,6,0.85);
  padding: 4px 9px;
  border: 0.5px solid var(--border);
  border-radius: 1px;
}

/* ── CARDS GRID ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}

.info-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 0.5px var(--border);
}

.info-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: grayscale(50%) brightness(0.65);
  transition: filter 0.5s, transform 0.5s var(--ease);
}

.info-card:hover .info-card-img {
  filter: grayscale(20%) brightness(0.8);
  transform: scale(1.04);
}

.info-card-body { padding: 2rem 1.75rem 2rem; }

.card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.card-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--muted);
}

/* Gold bottom accent */
.info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.info-card:hover::after { transform: scaleX(1); }

/* ── FILMS LIST ───────────────────────────────────────────── */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.film-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid var(--border-subtle);
  border-right: 0.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.3s, background 0.3s, padding-left 0.3s;
  cursor: default;
}

.film-item:nth-child(even) { border-right: none; }

.film-item:hover {
  color: var(--text);
  background: rgba(201,168,76,0.03);
  padding-left: 2rem;
}

.film-item span {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.35s, border-color 0.35s, color 0.35s, box-shadow 0.35s, transform 0.25s var(--ease);
  margin-top: 2rem;
  cursor: pointer;
  background: none;
  font-family: 'Outfit', sans-serif;
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 32px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.35s, transform 0.25s var(--ease), background 0.3s;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.btn-solid:hover {
  box-shadow: 0 0 40px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.4);
  transform: translateY(-2px);
  background: var(--gold-light);
}

/* ── CONTACT HERO ─────────────────────────────────────────── */
.contact-hero {
  padding: 9rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg2);
}

.contact-bg-word {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 20vw, 300px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  user-select: none;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1.0;
  color: var(--text);
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.contact-sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
  margin: 0.75rem 0;
}

.contact-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.contact-email:hover {
  color: var(--gold-light);
  text-shadow: 0 0 30px var(--gold-glow);
}

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: 13rem 3rem 5.5rem;
  position: relative;
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--bg);
  pointer-events: none;
}

.page-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.page-eyebrow::before {
  content: '';
  width: 35px;
  height: 0.5px;
  background: var(--gold);
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 11vw, 140px);
  line-height: 0.92;
  color: var(--text);
  position: relative;
  z-index: 2;
  letter-spacing: 0.01em;
}

.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  margin-top: 1.75rem;
  max-width: 600px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 4rem 3rem 3rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background: var(--bg2);
}

.footer-logo img {
  height: 38px;
  filter: brightness(0) invert(0.6);
  transition: filter 0.3s;
}

.footer-logo img:hover { filter: brightness(0) invert(1); }

.footer-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 11px;
  color: rgba(122,120,114,0.5);
  letter-spacing: 0.1em;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border: 0.5px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── ABOUT SPLIT ──────────────────────────────────────────── */
.about-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-split-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(45%) brightness(0.7);
  transition: filter 0.5s;
  border-radius: var(--radius-sm);
  display: block;
}

.about-split-wrap img:hover { filter: grayscale(15%) brightness(0.85); }

/* ── EXPERTISE TAGS ───────────────────────────────────────── */
.expertise-tag {
  padding: 1.25rem 1.5rem;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--glass);
  transition: border-color 0.3s, background 0.3s;
}

.expertise-tag:hover {
  border-color: rgba(201,168,76,0.3);
  background: var(--gold-dim);
}

.expertise-tag-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.expertise-tag-text {
  font-size: 12px;
  color: var(--muted);
}

/* ── REFERENCES GRID ──────────────────────────────────────── */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ref-item {
  padding: 2rem 1.5rem;
  border-right: 0.5px solid var(--border-subtle);
  border-bottom: 0.5px solid var(--border-subtle);
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.ref-item:hover { background: var(--gold-dim); }

.ref-item:nth-child(4n) { border-right: none; }

.ref-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.3s;
}

.ref-item:hover .ref-name { color: var(--gold); }

.ref-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(122,120,114,0.5);
  margin-top: 0.35rem;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

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

.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-textarea {
  background: var(--glass);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--border);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(122,120,114,0.5); }

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ── KEYFRAMES ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spinBadge {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

@keyframes spinInner {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 0.875rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 4.5rem 1.5rem; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }
  .hero-perfs { display: none; }
  .hero-title { font-size: clamp(72px, 20vw, 120px); }

  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 0.5px solid var(--border); }

  .card-grid { grid-template-columns: 1fr; gap: 1rem; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card.span2 { grid-column: 1; aspect-ratio: 16/9; }
  .films-grid { grid-template-columns: 1fr; }
  .film-item:nth-child(even) { border-right: 0.5px solid var(--border-subtle); }
  .about-split-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .page-hero { padding: 10rem 1.5rem 4rem; }

  footer { padding: 3rem 1.5rem 2rem; }
  .footer-links { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(62px, 22vw, 95px); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { flex: 1 1 100%; border-right: none; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 0 1.25rem 3.5rem; }
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
img { max-width: 100%; display: block; }

/* ── GLASSMORPHISM PANEL ──────────────────────────────────── */
.glass-panel {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
}

/* ── AWARDS GRID ──────────────────────────────────────────── */
.award-item {
  padding: 2rem 1.5rem;
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}

.award-item:hover { border-color: var(--border); background: var(--gold-dim); }
.award-item:hover::before { transform: scaleY(1); }

.award-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.award-org {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.award-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HORIZONTAL RULE ──────────────────────────────────────── */
hr.gold { border: none; height: 0.5px; background: var(--border); margin: 0; }
