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

:root { --gold: #c9a96e; --gold-light: #e8c87a; --black: #0a0a0a; --black-mid: #080808; --black-soft: #111; --white: #f0ebe0; --border: #1e1e1e; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 300; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

.vf-nav { position: fixed; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; z-index: 100; background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%); transition: all 0.3s; }
.vf-nav.scrolled { background: rgba(10,10,10,0.98); padding: 16px 60px; }
.vf-logo img { max-height: 48px; width: auto; margin-top: 8px; filter: sepia(1) saturate(2) hue-rotate(5deg) brightness(0.9); }
.vf-nav-links { display: flex; gap: 36px; list-style: none; }
.vf-nav-links a { color: var(--white); text-decoration: none; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.75; transition: opacity 0.3s; }
.vf-nav-links a:hover { opacity: 1; color: var(--gold); }
.vf-hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 4px; z-index: 200; }
.vf-hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: all 0.3s; }
.vf-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.vf-hamburger.open span:nth-child(2) { opacity: 0; }
.vf-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.vf-has-sub { position: relative; }
.vf-submenu { display: none; position: absolute; top: 100%; left: 0; background: rgba(10,10,10,0.98); border: 1px solid var(--border); padding: 12px 0; min-width: 180px; z-index: 200; }
.vf-submenu li { list-style: none; }
.vf-submenu a { display: block; padding: 10px 20px; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white); opacity: 0.7; transition: all 0.2s; white-space: nowrap; }
.vf-submenu a:hover { opacity: 1; color: var(--gold); padding-left: 26px; }
.vf-has-sub:hover .vf-submenu { display: block; }

.vf-hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; padding: 0 60px 80px; overflow: hidden; }
.vf-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 0% 0%, #2a0505 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 100% 0%, #2a0505 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 0% 100%, #2a0505 0%, transparent 75%), radial-gradient(ellipse 50% 50% at 100% 100%, #2a0505 0%, transparent 65%), #0a0a0a; }
.vf-hero-film-strip { position: absolute; right: 0; top: 0; bottom: 0; width: 52%; display: grid; grid-template-rows: repeat(3, 1fr); opacity: 0.55; }
.vf-film-frame { position: relative; overflow: hidden; }
.vf-film-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 15%); z-index: 2; }
.vf-film-frame::after { display: none; }
.vf-film-frame-inner { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.5) sepia(0.2); }
.vf-film-frame-inner.placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a1510 0%, #2a2018 100%); filter: none; }
.vf-film-frame-inner.placeholder-2 { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0e1218 0%, #1a1e2a 100%); filter: none; }
.vf-film-frame-inner.placeholder-3 { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #12100a 0%, #1e1a10 100%); filter: none; }
.vf-frame-label { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; color: var(--gold); opacity: 0.4; letter-spacing: 0.1em; transition: opacity 0.4s, color 0.4s; }
.vf-film-frame:hover .vf-frame-label { opacity: 1; color: #f5f0e8; }
.vf-hero-content { position: relative; z-index: 5; max-width: 52%; }
.vf-hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(40px, 5.5vw, 80px); line-height: 0.95; color: var(--white); margin-bottom: 24px; letter-spacing: 0.02em; text-transform: uppercase; }
.vf-hero-title em { font-style: italic; color: var(--gold); }
.vf-hero-ctas { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.vf-btn { display: inline-block; padding: 14px 36px; border: 1px solid var(--gold); color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; text-decoration: none; background: transparent; transition: all 0.3s; cursor: pointer; }
.vf-btn:hover { background: var(--gold); color: var(--black); }
.vf-btn-ghost { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 9px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; text-decoration: none; opacity: 0.6; transition: opacity 0.3s; cursor: pointer; }
.vf-btn-ghost:hover { opacity: 1; }
.vf-play-icon { width: 32px; height: 32px; border: 1px solid rgba(240,235,224,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vf-play-icon::after { content: ''; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--white); margin-left: 2px; }

.vf-ticker { background: var(--gold); color: var(--black); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.vf-ticker-inner { display: inline-flex; animation: vfTicker 22s linear infinite; }
.vf-ticker-item { font-size: 9px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; padding: 0 36px; }
.vf-ticker-dot { opacity: 0.4; }
@keyframes vfTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.vf-section { padding: 100px 60px; }
.vf-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 60px; border-top: 1px solid var(--border); padding-top: 32px; }
.vf-section-num { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; color: var(--gold); opacity: 0.9; letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 8px; }
.vf-section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 40px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--white); }
.vf-section-link { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); text-decoration: none; opacity: 0.8; transition: opacity 0.3s; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.vf-section-link:hover { opacity: 1; color: var(--gold); }
.vf-section-link::after { content: '→'; font-size: 14px; }

.vf-productions-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2px; }
.vf-prod-card { position: relative; aspect-ratio: 2/3; overflow: hidden; cursor: pointer; background: var(--black-soft); }
.vf-prod-card:first-child { aspect-ratio: auto; grid-row: span 2; }
.vf-prod-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; filter: brightness(0.6); }
.vf-prod-card:hover .vf-prod-card-bg { transform: scale(1.04); }
.vf-prod-card-bg.placeholder-1 { background: linear-gradient(160deg, #1a1510 0%, #2d2018 50%, #1a1209 100%); filter: none; }
.vf-prod-card-bg.placeholder-2 { background: linear-gradient(160deg, #100e14 0%, #1e1825 50%, #100e14 100%); filter: none; }
.vf-prod-card-bg.placeholder-3 { background: linear-gradient(160deg, #151210 0%, #2a2018 50%, #181210 100%); filter: none; }
.vf-prod-card-bg.placeholder-4 { background: linear-gradient(160deg, #0e1520 0%, #1a2535 50%, #0d1520 100%); filter: none; }
.vf-prod-label { position: absolute; top: 20px; left: 20px; font-size: 10px; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); background: rgba(10,10,10,0.6); padding: 5px 10px; backdrop-filter: blur(4px); z-index: 2; }
.vf-prod-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 24px; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%); transform: translateY(8px); transition: transform 0.4s ease; z-index: 2; }
.vf-prod-card:hover .vf-prod-info { transform: translateY(0); }
.vf-prod-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 6px; }
.vf-prod-card:first-child .vf-prod-title { font-size: 30px; }
.vf-prod-year { font-size: 9px; letter-spacing: 0.25em; color: var(--gold); opacity: 0.7; }

.vf-interlude { padding: 60px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.vf-interlude-text { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; font-weight: 300; color: var(--white); opacity: 0.5; letter-spacing: 0.05em; }
.vf-interlude-text em { color: var(--gold); opacity: 1; }

.vf-teatro-section { padding: 100px 60px; background: var(--black-mid); }
.vf-teatro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.vf-teatro-card { position: relative; padding: 40px 32px; border: 1px solid #1a1a1a; cursor: pointer; transition: border-color 0.4s; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-start; gap: 12px; }
.vf-teatro-card:hover { border-color: var(--gold); }
.vf-teatro-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom left, #100e1a 0%, transparent 70%); opacity: 0; transition: opacity 0.4s; }
.vf-teatro-card:hover::before { opacity: 1; }
.vf-tc-tag { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.vf-tc-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.2; }
.vf-tc-desc { font-size: 16px; line-height: 1.6; letter-spacing: 0.03em; color: var(--white); opacity: 0.75; }
.vf-tc-arrow { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.3s; margin-top: auto; }
.vf-teatro-card:hover .vf-tc-arrow { opacity: 0.8; }
.vf-tc-spotlight { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 100px; height: 80px; background: radial-gradient(ellipse, rgba(201,169,110,0.08) 0%, transparent 70%); pointer-events: none; }

.vf-about { padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-top: 1px solid var(--border); }
.vf-about-quote { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; font-style: italic; line-height: 1.4; color: var(--white); }
.vf-about-quote span { color: var(--gold); }
.vf-stats-row { display: flex; align-items: flex-end; flex-wrap: nowrap; margin-top: 48px; gap: 0; }
.vf-stat { border-left: 1px solid var(--gold); padding-left: 20px; padding-right: 36px; }
.vf-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
.vf-stat-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); opacity: 0.4; margin-top: 6px; }
.vf-about-text { font-size: 17px; line-height: 1.6; color: var(--white); opacity: 0.75; letter-spacing: 0.03em; }

.vf-footer { border-top: 1px solid var(--border); padding: 40px 60px 80px; display: flex; align-items: center; justify-content: space-between; background: var(--black-mid); flex-wrap: wrap; gap: 24px; }
.vf-footer-legal { font-size: 11px; letter-spacing: 0.15em; color: var(--white); opacity: 0.6; text-align: center; line-height: 1.8; }
.vf-footer-social { display: flex; gap: 24px; }
.vf-footer { padding: 40px 24px; flex-direction: column; align-items: center; text-align: center; gap: 32px; }.vf-footer-social { justify-content: center; }
.vf-footer img { max-height: 60px; }
.vf-footer-social a:hover { opacity: 1; }
.vf-footer-legal span { -webkit-text-size-adjust: 100%; color: inherit !important; text-decoration: none !important; pointer-events: none; }

@media (max-width: 900px) {
  .vf-has-sub { width: 100%; text-align: center; }
  .vf-submenu { display: none; position: static; background: transparent; border: none; padding: 8px 0; }
  .vf-submenu.open { display: block; }
  .vf-submenu a { font-size: 14px; padding: 8px 20px; opacity: 0.5; }
  .vf-has-sub.open .vf-submenu { display: block; }
  .vf-nav { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }
  .vf-logo img { max-height: 32px; }
  .vf-hamburger { display: flex; z-index: 400; }
  .vf-nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 40px; z-index: 350; }
  .vf-nav-links.open { display: flex !important; }
  .vf-nav-links a { font-size: 20px; letter-spacing: 0.3em; color: var(--gold); }
  .vf-hero { padding: 0 24px 100px; }
  .vf-hero-content { max-width: 100%; }
  .vf-hero-film-strip { display: none; }
  .vf-hero-title { font-size: clamp(36px, 8vw, 56px); }
  .vf-section { padding: 60px 24px; }
  .vf-teatro-section { padding: 60px 24px; }
  .vf-about { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }
  .vf-productions-grid { grid-template-columns: 1fr; }
  .vf-prod-card:first-child { grid-row: span 1; aspect-ratio: 2/3; }
  .vf-teatro-grid { grid-template-columns: 1fr; }
.vf-footer { padding: 40px 24px 80px; flex-direction: column; align-items: center; text-align: center; }
.vf-footer-social { justify-content: center; }
.vf-footer-legal { text-align: center; }
.vf-footer-social { justify-content: center; }
  .vf-interlude { padding: 40px 24px; }
  .vf-section-header { flex-direction: column; gap: 16px; }
  .vf-stats-row { gap: 4px; }
  .vf-stat { padding-right: 16px; }
}