/* =====================================================
   ASIF PERVEZ — Cinematic Portfolio
   Design: Matched to base44.app original
   Colors: Near-black bg, electric blue accent, clean white text
   Fonts: Inter (body) + Bebas Neue / Oswald (display)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables — matching base44 palette ── */
:root {
  --bg:          #0a0c0f;   /* darkest — primary background */
  --bg2:         #12161d;   /* mid — alternating sections    */
  --bg3:         #1a2030;   /* lightest dark — card panels   */
  --card:        #1a1f28;
  --card2:       #1e2530;
  --border:      rgba(255,255,255,0.08);
  --border2:     rgba(255,255,255,0.13);

  /* Blue accent — exact match to base44 */
  --blue:        #4f8ef7;
  --blue-bright: #6aa3ff;
  --blue-dim:    rgba(79,142,247,0.15);
  --blue-glow:   rgba(79,142,247,0.25);

  --white:       #ffffff;
  --off-white:   #e8edf5;
  --muted:       rgba(232,237,245,0.6);
  --faint:       rgba(232,237,245,0.25);
  --very-faint:  rgba(232,237,245,0.1);

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-sub:     'Oswald', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:       90px;
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --radius:      4px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
::selection { background: var(--blue); color: #fff; }

/* ── Section contrast helpers ── */
/* Sections alternate: .s-dark → .s-mid → .s-dark etc.          */
/* A hairline top border + subtle top gradient give depth.       */
.s-dark {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.s-mid {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.s-mid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79,142,247,0.25) 40%, rgba(79,142,247,0.25) 60%, transparent 100%);
}
.s-accent {
  background: var(--bg3);
  border-top: 1px solid rgba(79,142,247,0.12);
  position: relative;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* Always visible — gradient fades to transparent so hero isn't blocked */
  background: linear-gradient(to bottom, rgba(10,12,15,0.92) 0%, rgba(10,12,15,0.6) 70%, transparent 100%);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

#site-header.scrolled {
  background: rgba(10,12,15,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
  height: 70px;
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo a { display: flex; align-items: center; gap: 14px; }

.logo-monogram {
  width: 42px; height: 42px;
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-wordmark {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item.active > .nav-link { color: var(--white); }

.nav-item.active > .nav-link { position: relative; }
.nav-item.active > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1.5px;
  background: var(--blue);
}

.nav-link svg {
  width: 10px; height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--transition);
}
.nav-item:hover > .nav-link svg,
.nav-item.dd-open > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;           /* flush to nav-link bottom */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--card2);
  border: 1px solid var(--border2);
  border-top: 2px solid var(--blue);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  /* slower fade-out so cursor has time to reach dropdown */
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transition-delay: 0s;
  pointer-events: none;
  padding: 14px 0 8px; /* extra top padding acts as bridge */
  margin-top: 0;
}

/* Invisible hover bridge — fills gap between nav-link and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
}

.nav-item:hover .nav-dropdown,
.nav-item.dd-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition-delay: 0s, 0s, 0s;
}

.nav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover {
  color: var(--white);
  border-left-color: var(--blue);
  padding-left: 24px;
  background: rgba(255,255,255,0.03);
}

/* Nav CTA */
.nav-cta {
  color: var(--blue) !important;
  border: 1px solid rgba(79,142,247,0.4) !important;
  margin-left: 8px;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-color: var(--blue) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--off-white);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(13,15,18,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-sub);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 6px 0;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mobile-divider { width: 40px; height: 1px; background: var(--border2); margin: 16px 0; }

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 36px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { }
.footer-brand .logo-wordmark { font-size: 1rem; margin-bottom: 6px; display: block; }
.footer-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 22px;
}
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; color: var(--faint); }
.footer-copy span { color: var(--blue); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.72rem; color: var(--faint); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: all var(--transition);
  border: none; outline: none;
  white-space: nowrap;
  border-radius: var(--radius);
}
.btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--blue-glow);
}
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(79,142,247,0.35);
  padding: 10px 22px;
  font-size: 0.68rem;
}
.btn-ghost:hover { background: var(--blue-dim); }

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 110px 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--blue); }

.section-title {
  font-family: var(--font-sub);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.section-title em { font-style: normal; color: var(--blue); }

.section-lead {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.9;
}

.blue-rule { width: 40px; height: 2px; background: var(--blue); margin: 24px 0; }

/* =====================================================
   HERO — Split cinematic like base44
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left panel — Engineering */
.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.hero-panel:hover .hero-panel-img { transform: scale(1.04); }

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,18,0.85) 0%, rgba(13,15,18,0.3) 60%, rgba(13,15,18,0.1) 100%);
  z-index: 1;
}

.hero-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 44px;
  z-index: 2;
}

.hero-panel-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.hero-panel-meta {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  line-height: 1.8;
}

/* Center overlay — Main headline */
.hero-center {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.hero-center-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,15,18,0.2) 0%, rgba(13,15,18,0.6) 40%, rgba(13,15,18,0.6) 60%, rgba(13,15,18,0.2) 100%);
}

.hero-center-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeInUp 0.9s 0.3s forwards;
}

.hero-title .amp {
  color: var(--blue);
  font-size: 0.7em;
  display: block;
  margin: 0.08em 0;
}

.hero-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  opacity: 0;
  animation: fadeInUp 0.9s 0.6s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Panel meta tags (corner info) */
.panel-tag {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 3;
  line-height: 1.8;
}
.panel-tag-tl { top: calc(var(--nav-h) + 20px); left: 20px; }
.panel-tag-tr { top: calc(var(--nav-h) + 20px); right: 20px; text-align: right; }
.panel-tag-bl { bottom: 20px; left: 20px; }
.panel-tag-br { bottom: 20px; right: 20px; text-align: right; }

/* =====================================================
   IMAGE CARDS (Films / Engineering cards)
   ===================================================== */
.img-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.img-card:hover { transform: translateY(-4px); border-color: var(--border2); }

.img-card-photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}
.img-card:hover .img-card-photo { transform: scale(1.04); filter: brightness(1); }

/* Placeholder image (gradient) when no real image */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.img-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(13,15,18,0.75);
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}

.img-card-imdb {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f5c518;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(6px);
}

.img-card-body { padding: 24px 24px 28px; }

.img-card-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex; gap: 10px;
}
.img-card-role span::after { content: '·'; margin-left: 10px; color: var(--faint); }
.img-card-role span:last-child::after { display: none; }

.img-card-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.img-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.img-card-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.img-card:hover .img-card-link { gap: 10px; }

.img-card-footer {
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* =====================================================
   DISCIPLINES / SECTION BLOCKS
   ===================================================== */
.disciplines-bg { background: var(--bg2); }

/* Section with number label (001 — ENGINEERING EXCELLENCE) */
.section-number-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-big-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

/* 3-col card grid */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

/* =====================================================
   BIO SECTION
   ===================================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bio-image-wrap { position: relative; }
.bio-image-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 1px solid rgba(79,142,247,0.18);
  z-index: 0;
  pointer-events: none;
}
.bio-image-wrap img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
}
.bio-image-placeholder {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; color: var(--faint);
}
.bio-image-placeholder svg { width: 52px; height: 52px; stroke: var(--faint); fill: none; }
.bio-image-placeholder span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-sub);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================
   VENTURES
   ===================================================== */
.venture-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.venture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transition: opacity var(--transition);
}
.venture-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.venture-card:hover::before { opacity: 1; }
.venture-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.venture-name { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.venture-type {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.venture-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.85; }

/* =====================================================
   AWARDS STRIP
   ===================================================== */
.awards-strip {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
  align-items: center;
}
.award-item { display: flex; align-items: center; gap: 14px; }
.award-icon { width: 32px; height: 32px; color: var(--blue); flex-shrink: 0; }
.award-name { font-size: 0.8rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.award-event { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.05em; }

/* =====================================================
   REEL / VIDEO BLOCK
   ===================================================== */
.reel-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 520px;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
}
.reel-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reel-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #0d1117, #141c27);
  position: relative;
}
.reel-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent 0px, transparent 40px,
    rgba(79,142,247,0.02) 40px, rgba(79,142,247,0.02) 41px
  );
}
.play-btn {
  width: 72px; height: 72px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.play-btn svg { width: 24px; height: 24px; fill: var(--blue); margin-left: 4px; }
.reel-wrapper:hover .play-btn { background: var(--blue); }
.reel-wrapper:hover .play-btn svg { fill: #fff; }
.reel-label { font-size: 0.63rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); position: relative; z-index: 1; }

/* =====================================================
   FILM SPOTLIGHT — wide feature card
   ===================================================== */
.film-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  margin-top: 50px;
}
.film-spotlight:hover { border-color: var(--border2); }
.film-spotlight-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.film-spotlight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.88);
}
.film-spotlight:hover .film-spotlight-img img { transform: scale(1.04); filter: brightness(1); }
.film-spotlight-badge {
  position: absolute; top: 18px; left: 18px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--off-white);
  background: rgba(10,12,15,0.8); padding: 5px 12px;
  backdrop-filter: blur(6px); border-radius: 2px;
}
.film-spotlight-body {
  padding: 44px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.film-spotlight-role {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px; display: flex; gap: 10px;
}
.film-spotlight-role span::after { content: '·'; margin-left: 10px; color: var(--faint); }
.film-spotlight-role span:last-child::after { display: none; }
.film-spotlight-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.film-spotlight-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.film-spotlight-desc {
  font-size: 0.86rem; color: var(--muted); line-height: 1.85; margin-bottom: 28px;
}
.film-spotlight-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--border); margin-bottom: 28px;
}
.film-meta-item { }
.film-meta-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.film-meta-value { font-size: 0.8rem; font-weight: 600; color: var(--off-white); }
.film-imdb-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; color: #f5c518;
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.25);
  padding: 5px 12px; border-radius: 2px; margin-bottom: 20px;
}

/* =====================================================
   QUOTE
   ===================================================== */
.quote-section {
  background: var(--bg2);
  padding: 90px 0;
  text-align: center;
}
.quote-inner { max-width: 820px; margin: 0 auto; padding: 0 40px; }
blockquote {
  font-family: var(--font-sub);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.45;
  position: relative;
}
blockquote::before {
  content: '\201C';
  font-size: 7rem;
  color: rgba(79,142,247,0.1);
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
  font-family: Georgia, serif;
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 24px;
}

/* =====================================================
   COMING SOON
   ===================================================== */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.coming-soon-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(79,142,247,0.05) 0%, transparent 65%);
}
.coming-soon-content { position: relative; z-index: 1; padding: 60px 40px; }
.coming-page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  color: var(--white);
  margin: 16px 0 8px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.coming-sub {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.coming-line { width: 60px; height: 2px; background: var(--blue); margin: 0 auto 30px; }
.coming-text { font-size: 0.88rem; color: var(--muted); max-width: 460px; margin: 0 auto 36px; line-height: 1.9; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-hero { padding: 150px 0 80px; background: var(--bg); position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.contact-block { margin-bottom: 30px; }
.contact-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.contact-value { font-size: 0.88rem; color: var(--off-white); line-height: 1.7; }
.contact-value a:hover { color: var(--blue); }

/* Form */
.form-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px 40px; }
.form-panel h2 { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.form-panel p { font-size: 0.82rem; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.form-input, .form-select, .form-textarea {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: var(--radius);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--very-faint); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234f8ef7' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-select option { background: var(--card); }
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 0.75rem; border-radius: var(--radius); }
.form-message { margin-top: 14px; padding: 12px 16px; font-size: 0.82rem; border-radius: var(--radius); display: none; }
.form-message.success { display: block; background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.3); color: var(--blue-bright); }
.form-message.error { display: block; background: rgba(220,50,50,0.07); border: 1px solid rgba(220,50,50,0.22); color: #e07070; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease, transform 0.85s ease; }
.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-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-panel:last-child { display: none; }
  .hero-center { position: relative; grid-row: 1; }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bio-grid { grid-template-columns: 1fr; gap: 50px; }
  .film-spotlight { grid-template-columns: 1fr; }
  .film-spotlight-img { min-height: 280px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .logo-tagline { display: none; } /* hide tagline on mobile to save space */
  .nav-inner, .section-inner, .footer-inner { padding: 0 24px; }
  .section { padding: 80px 0; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 6rem); }
  .form-panel { padding: 28px 24px; }
}
