/* =============================================
   SULTAN GILL — CINEMATIC THEME
   Main Stylesheet
   ============================================= */

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

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --bg:           #0A0A0A;
  --bg-card:      #111111;
  --bg-muted:     #1A1A1A;
  --gold:         #C9A84C;
  --gold-light:   #e0c879;
  --burgundy:     #6B1A2B;
  --white:        #ffffff;
  --muted:        #A0A0A0;
  --border:       rgba(255,255,255,0.08);
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-blur:   blur(12px);
  --transition:   all 0.4s cubic-bezier(0.16,1,0.3,1);
  --font-heading: 'Cinzel', serif;
  --font-sub:     'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--white);
}
p { font-family: var(--font-body); line-height: 1.7; color: var(--muted); }
.font-heading  { font-family: var(--font-heading) !important; }
.font-sub      { font-family: var(--font-sub) !important; font-style: italic; }
.font-body     { font-family: var(--font-body) !important; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-left: 3rem; padding-right: 3rem; }
}
.text-gold       { color: var(--gold); }
.text-muted      { color: var(--muted); }
.text-white      { color: var(--white); }
.text-white-50   { color: rgba(255,255,255,0.5); }
.text-white-70   { color: rgba(255,255,255,0.7); }
.text-white-80   { color: rgba(255,255,255,0.8); }
.uppercase       { text-transform: uppercase; }
.tracking-wide   { letter-spacing: 0.1em; }
.tracking-wider  { letter-spacing: 0.15em; }
.tracking-widest { letter-spacing: 0.2em; }
.italic          { font-style: italic; }
.relative        { position: relative; }
.overflow-hidden { overflow: hidden; }

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.05);
}

.gold-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gold-line::before {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.gold-line span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label .line { width: 3rem; height: 1px; background: var(--gold); }
.section-label .text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

/* Film grain overlay */
.film-grain {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* =============================================
   SITE LOADER
   ============================================= */
#site-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#site-loader.hidden { opacity: 0; visibility: hidden; }
#site-loader .loader-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.4em;
  color: var(--white);
  text-transform: uppercase;
}
#site-loader .loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
#site-loader .loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderBar 1.2s ease forwards;
}
@keyframes loaderBar {
  to { left: 0; }
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition);
}
#site-header.scrolled {
  padding: 1rem 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.3s;
  text-transform: uppercase;
}
.site-logo a:hover { color: var(--gold); }

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.desktop-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.desktop-nav a:hover,
.desktop-nav a.current { color: var(--white); }
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.desktop-nav a:hover::after,
.desktop-nav a.current::after { width: 100%; }
.desktop-nav a.current { color: var(--gold); }

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
}
#mobile-nav.open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-links a:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav-links a:hover,
.mobile-nav-links a.current { color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}
.footer-inner {
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  display: block;
}
.footer-contact a {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-social { justify-content: flex-end; }
  .footer-col:last-child { text-align: right; }
}
.footer-social a {
  color: var(--muted);
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-social a:hover { color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-body);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a:hover { color: var(--gold); transition: color 0.3s; }

/* =============================================
   HOME PAGE — HERO
   ============================================= */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.5;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,1) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, transparent 50%, rgba(10,10,10,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: 5rem;
}
.hero-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 9rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-quote {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--white); color: var(--bg); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

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

/* =============================================
   HOME — VISION SECTION
   ============================================= */
.vision-section { padding: 8rem 0; }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .vision-grid { grid-template-columns: 1fr 1fr; }
}
.vision-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.vision-text h2 .dim { color: rgba(255,255,255,0.4); }
.vision-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--muted);
  font-weight: 300;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }
.vision-image {
  position: relative;
}
.vision-image::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(201,168,76,0.2);
  z-index: 0;
  transform: translate(12px, 12px);
}
.vision-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 1s ease;
}
.vision-image:hover img { transform: scale(0.98); }

/* =============================================
   HOME — FEATURED WORKS
   ============================================= */
.featured-section {
  padding: 8rem 0;
  background: var(--bg-card);
  position: relative;
}
.featured-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 33%; height: 1px;
  background: linear-gradient(to left, rgba(201,168,76,0.5), transparent);
}
.featured-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 33%; height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.5), transparent);
}
.featured-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .featured-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.featured-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.featured-view-all {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.featured-view-all:hover { color: var(--gold); }

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .works-grid { grid-template-columns: repeat(3, 1fr); } }

.work-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.work-card-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.work-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.1); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  z-index: 1;
}
.work-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
}
.work-card-year {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.work-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}
.work-card-role {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.work-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}
.work-card:hover .work-card-play { opacity: 1; }

/* =============================================
   HOME — CINEMATIC DIVIDER
   ============================================= */
.parallax-divider {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-divider-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.78);
}
.parallax-divider-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}
.parallax-divider-text p {
  font-family: var(--font-sub);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* =============================================
   HOME — STATS
   ============================================= */
.stats-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   PAGE HEADER (shared)
   ============================================= */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}

/* =============================================
   BIOGRAPHY PAGE
   ============================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: 8rem;
}
@media (min-width: 768px) {
  .bio-grid { grid-template-columns: 5fr 7fr; }
}
.bio-left { display: flex; flex-direction: column; gap: 4rem; }
.bio-portrait {
  position: relative;
}
.bio-portrait::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(201,168,76,0.2);
  transform: translate(12px, 12px);
  z-index: 0;
}
.bio-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.8s ease;
  position: relative;
  z-index: 1;
}
.bio-portrait:hover img { filter: grayscale(0); }
.bio-pull-quote {
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}
.bio-pull-quote p {
  font-family: var(--font-sub);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.bio-cinematic {
  position: relative;
  overflow: hidden;
}
.bio-cinematic img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1s ease;
}
.bio-cinematic:hover img { transform: scale(1.05); }
.bio-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  mix-blend-mode: overlay;
}

.bio-text p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
}
.bio-text p:first-child {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

/* Career Timeline */
.timeline { margin-top: 4rem; }
.timeline h3 {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 1.1rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.3), transparent);
}
.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.timeline-dot {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(201,168,76,0.4);
  z-index: 1;
}
.timeline-dot::after {
  content: '';
  width: 0.6rem; height: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-card {
  flex: 1;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(201,168,76,0.1);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.timeline-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.timeline-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* =============================================
   FILMOGRAPHY PAGE
   ============================================= */
.filmography-section { padding: 10rem 0 6rem; }
.filmography-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .filmography-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.filmography-header h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--white);
}
.filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}

.filmography-table-wrap { overflow-x: auto; padding-bottom: 2rem; }
.filmography-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}
.filmography-table thead tr {
  border-bottom: 2px solid rgba(201,168,76,0.3);
}
.filmography-table th {
  padding: 1.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  font-weight: 700;
}
.filmography-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.filmography-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.filmography-table td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
}
.td-year {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.filmography-table tbody tr:hover .td-year { color: var(--gold); }
.td-title-main {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}
.td-title-note {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}
.td-role { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.td-cat {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.05);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
}
.td-prod { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.td-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  white-space: nowrap;
}
.td-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-completed { color: rgba(74,222,128,0.8); }
.status-development { color: var(--gold); }
.status-production  { color: var(--gold); }
.no-results {
  text-align: center;
  padding: 5rem;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   WORKS PAGE
   ============================================= */
.works-section { padding: 10rem 0 8rem; }
.works-section h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); text-align: center; margin-bottom: 2.5rem; }
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
}
.tab-btn {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.works-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .works-cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .works-cards { grid-template-columns: repeat(3,1fr); } }

.work-item {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.work-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}
.work-item:hover .work-item-bg { transform: scale(1.1); }
.work-item-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}
.work-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  transition: transform 0.5s ease;
}
.work-item:hover .work-item-info { transform: translateY(-2rem); }
.work-item-year { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 600; display: block; margin-bottom: 0.5rem; font-family: var(--font-body); text-transform: uppercase; }
.work-item-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 0.25rem; }
.work-item-role { font-family: var(--font-sub); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.55); }
.work-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.work-item:hover .work-item-hover { opacity: 1; transform: translateY(0); }
.work-item-play {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.work-item:hover .work-item-play { transform: scale(1.1); }
.work-item-synopsis {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}
.work-item-view { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 2px; font-family: var(--font-body); }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section { padding: 10rem 0 8rem; }
.gallery-section h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
}
.gallery-item.span-col-2 { grid-column: span 2; }
.gallery-item.span-row-2 { grid-row: span 2; height: auto; }
.gallery-item.span-col-2.span-row-2 { height: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: var(--white); width: 2rem; height: 2rem; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.gallery-placeholder-cat { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; font-family: var(--font-body); }
.gallery-placeholder-title { font-family: var(--font-heading); font-size: 1rem; color: rgba(255,255,255,0.75); }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 2rem; line-height: 1; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; }
.lightbox-caption {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   AWARDS PAGE
   ============================================= */
.awards-section { padding: 10rem 0 8rem; }
.awards-section h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); text-align: center; margin-bottom: 1.5rem; }
.awards-subtitle {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 5rem;
}
.awards-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.award-card {
  position: relative;
  padding: 2.5rem 3rem;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 4px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
@media (min-width: 768px) {
  .award-card { flex-direction: row; align-items: center; justify-content: space-between; }
}
.award-card:hover {
  border-left-color: var(--gold);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}
.award-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.award-year { color: var(--gold); font-family: 'Courier New', monospace; font-size: 0.85rem; }
.award-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.award-status {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.award-status.won { color: var(--gold); }
.award-status.nominated { color: rgba(255,255,255,0.45); }
.award-status.selected  { color: rgba(255,255,255,0.45); }
.award-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); transition: color 0.3s; }
.award-card:hover .award-title { color: var(--gold); }
.award-festival { font-family: var(--font-sub); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.65); }
.award-work-label { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.25rem; }
.award-work-title { font-family: var(--font-heading); font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.85); }
.awards-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 5rem;
}
.awards-footer .divider { width: 3rem; height: 1px; background: rgba(255,255,255,0.15); }
.awards-footer .star { color: var(--gold); font-size: 0.75rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 10rem 0 8rem; }
.contact-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}
.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.15;
}
.contact-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-sub);
  font-size: 1.1em;
  text-transform: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 4fr 8fr; } }
.contact-info-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: block;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.contact-info-item:hover { color: var(--gold); }
.contact-info-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
  font-size: 0.9rem;
}
.contact-info-item:hover .contact-info-icon { border-color: var(--gold); }
.contact-social { margin-top: 3rem; }
.contact-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.contact-social-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.contact-social-icon:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-4px);
}
.contact-form-wrap {
  padding: 3rem;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.form-group label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #1A1A1A; color: var(--white); }
.form-group textarea { resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .form-submit { width: auto; } }
.form-submit:hover { background: var(--white); color: var(--bg); }
.form-msg { margin-top: 1rem; font-size: 0.85rem; font-family: var(--font-body); padding: 0.75rem 1rem; }
.form-msg.success { background: rgba(74,222,128,0.1); color: rgba(74,222,128,0.9); border: 1px solid rgba(74,222,128,0.2); }
.form-msg.error { background: rgba(239,68,68,0.1); color: rgba(239,68,68,0.9); border: 1px solid rgba(239,68,68,0.2); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
  .page-hero { padding-top: 8rem; padding-bottom: 3rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .gallery-item.span-col-2 { grid-column: span 1; }
  .gallery-item.span-row-2 { height: 250px; }
  .contact-form-wrap { padding: 1.5rem; }
  .award-card { padding: 1.5rem; }
}
