@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #030305;
  --color-red: #e50914;
  --color-red-bright: #ff1a24;
  --color-text: #e0e0e6;
  --color-text-muted: #8e8e9e;
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   SECTION 1 — FULLSCREEN OPENING (HERO)
   ========================================================================== */
.hero-opening {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #030304;
}

/* Background Image (IMAGE 2) & Overlay Gradient */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 28%; /* Offset horizontal focal point toward center-right matching reference composition */
  animation: fadeInBg 1.2s ease-out forwards;
}

@keyframes fadeInBg {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

/* Directional Overlay: Dark negative space on LEFT for text, clear vibrant shrine/fire on CENTER-RIGHT */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
                rgba(3, 3, 5, 0.94) 0%, 
                rgba(3, 3, 5, 0.78) 25%, 
                rgba(3, 3, 5, 0.28) 48%, 
                transparent 72%),
              linear-gradient(180deg, 
                rgba(3, 3, 5, 0.4) 0%, 
                transparent 18%, 
                transparent 75%, 
                rgba(3, 3, 5, 0.65) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Header Overlay Navigation
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 10;
  padding: 36px 0 0 0;
  animation: fadeInHeader 1s ease-out forwards;
}

@keyframes fadeInHeader {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-svg {
  height: 28px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-red);
}

.nav-item.active .nav-link {
  color: #ffffff;
  font-weight: 800;
}

.nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-red);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.6);
}

/* Small Red Active Dot above Home link */
.active-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-red);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(229, 9, 20, 0.8);
}

.search-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.search-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* ==========================================================================
   Hero Main Content
   ========================================================================== */
.hero-main-container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 48px 12px 48px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInMain 1.2s ease-out forwards;
}

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

.hero-content-left {
  max-width: 560px;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

/* Film Title (Strict 2-Line Format) */
.hero-title-block {
  margin-bottom: 16px;
}

.title-the {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 0.95;
  letter-spacing: 5px;
  text-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
  margin-bottom: 2px;
}

.title-hungry-one {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1.0;
  letter-spacing: 4px;
  text-shadow: 0 0 40px rgba(229, 9, 20, 0.5);
  white-space: nowrap; /* PREVENTS WRAPPING OF HUNGRY ONE */
  display: block;
}

.title-o-wrap {
  position: relative;
  display: inline-block;
}

.title-o-slash {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 50%;
  width: 3px;
  background-color: var(--color-red);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Logline */
.hero-logline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 0;
  font-weight: 400;
}

/* ==========================================================================
   Explore The Story Carousel (Pushed to Bottom of Hero)
   ========================================================================== */
.saga-carousel-section {
  width: 100%;
  margin-top: auto; /* Pushes Explore the Story block down to bottom of hero */
  margin-bottom: 2px;
  overflow: hidden; /* Prevents whole page horizontal scrollbar */
}

.saga-title {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.saga-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%; /* Spans 100% of hero width */
}

.saga-cards-row {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  flex-grow: 1;
  padding: 6px 2px;
}

.saga-cards-row::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Wider and Shorter Cinematic Landscape Cover Format (Width > Height) */
.saga-card {
  width: 184px;
  height: 114px; /* Landscape Cover Format: Width > Height */
  border-radius: 8px;
  overflow: hidden;
  background: #040407;
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
  opacity: 0.84;
}

.saga-card.selected {
  border: 2px solid var(--color-red);
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.55);
  opacity: 1;
  transform: translateY(-2px);
}

.saga-card:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
}

.saga-card.selected:hover {
  border-color: var(--color-red-bright);
}

.saga-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.saga-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(3, 3, 5, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.saga-arrow-btn:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.saga-arrow-btn:not(:disabled):hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(229, 9, 20, 0.15);
  transform: scale(1.08);
}

/* ==========================================================================
   Bottom Information Bar (Thin Cinematic Strip)
   ========================================================================== */
.hero-bottom-bar {
  position: relative;
  z-index: 10;
  background: rgba(3, 3, 5, 0.65);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.bottom-bar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.info-col:last-child {
  border-right: none;
  padding-right: 0;
}

.social-col {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.info-label {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.info-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-icon:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(229, 9, 20, 0.1);
}

.cta-col {
  display: flex;
  align-items: center;
}

.btn-view-movies {
  border: 1px solid rgba(229, 9, 20, 0.8);
  color: #ffffff;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: rgba(229, 9, 20, 0.05);
}

.btn-view-movies:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.5);
  color: #ffffff;
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
@media (max-width: 1024px) {
  .header-container, .hero-main-container, .bottom-bar-container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-nav.mobile-open {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(4, 4, 6, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 9, 20, 0.4);
    padding: 24px 32px;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    animation: slideDownMenu 0.3s ease-out;
  }
  .header-nav.mobile-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header-nav.mobile-open .nav-link {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }
  .title-the { font-size: 2.4rem; }
  .title-hungry-one { font-size: 3.2rem; }
  .bottom-bar-container {
    flex-wrap: wrap;
    gap: 16px;
  }
  .info-col {
    border-right: none;
    padding-right: 0;
  }
}

@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .title-the { font-size: 2rem; }
  .title-hungry-one { font-size: 2.6rem; white-space: normal; }
  .saga-cards-row {
    overflow-x: auto;
    max-width: 100%;
  }
  .bottom-bar-container {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ==========================================================================
   Full Presentation Deck Viewer (Near Fullscreen)
   ========================================================================== */
.deck-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(2, 2, 3, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.deck-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.deck-modal-container {
  background: #06060a;
  border: 1px solid rgba(229, 9, 20, 0.4);
  border-radius: 12px;
  width: 100%;
  max-width: 1100px;
  height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(229, 9, 20, 0.25);
}

.deck-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #040407;
}

.deck-counter {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 2px;
}

.deck-brand {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
}

.deck-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.deck-close-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(229, 9, 20, 0.1);
}

.deck-slide-content {
  flex-grow: 1;
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020204;
}

.deck-full-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.deck-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #040407;
}

.deck-nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: all 0.2s ease;
}

.deck-nav-btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(229, 9, 20, 0.1);
}

.deck-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deck-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.deck-dot.active {
  background: var(--color-red);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
  transform: scale(1.2);
}

/* ==========================================================================
   SECTION 3 — TOTAL RAISE TARGET (Editorial Film Prospectus Layout)
   ========================================================================== */
.raise-target-section {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #060608;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 24px;
}

.raise-target-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.raise-target-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.12) 0%, rgba(229, 9, 20, 0.02) 60%, transparent 80%);
  filter: blur(50px);
}

.raise-target-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.raise-target-container {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 1380px;
  width: 92vw;
  margin: 0 auto;
}

.raise-target-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.raise-target-amount {
  font-family: var(--font-heading), 'Cinzel', 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: #f3efe6;
  letter-spacing: 2px;
  line-height: 1.0;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.12), 0 0 60px rgba(229, 9, 20, 0.2);
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.98) translateY(15px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0.1s;
}

/* Summary Line */
.raise-target-summary {
  font-family: var(--font-body), Georgia, serif;
  font-size: 1.15rem;
  color: rgba(234, 230, 223, 0.72);
  margin-bottom: 44px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.18s;
}

.highlight-budget {
  color: #ffffff;
  font-weight: 600;
}

/* Horizontal Funding Bar Visualization */
.funding-bar-wrap {
  width: 100%;
  margin-bottom: 48px;
  opacity: 0;
  transform: scaleX(0.97) translateY(15px);
  transform-origin: left center;
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}

.funding-bar-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.bar-lbl-secured {
  color: #c5a059;
}

.bar-lbl-balance {
  color: rgba(243, 239, 230, 0.65);
}

.funding-bar-track {
  display: flex;
  width: 100%;
  height: 18px;
  background: rgba(10, 10, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.funding-secured-group {
  display: flex;
  width: 71.99%;
  height: 100%;
  border-right: 2px solid rgba(229, 9, 20, 0.9);
}

.funding-seg {
  height: 100%;
  position: relative;
  transition: width 1s ease-out;
}

/* Segments visual styles */
.seg-reserved {
  background-color: #1e1e24;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 4px, transparent 4px, transparent 8px);
  border-right: 1px solid rgba(0, 0, 0, 0.6);
}

.seg-committed {
  background-color: #c5a059; /* Muted Antique Gold */
  box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.6);
}

.seg-earned {
  background-color: #e50914; /* Deep Cinematic Red */
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2) 4px, transparent 4px, transparent 8px);
}

.seg-open {
  background-color: #0b0b0e;
}

/* Editorial Information Grid Below Bar */
.funding-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition-delay: 0.35s;
}

.info-item {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.item-header {
  margin-bottom: 8px;
}

.item-label {
  font-family: var(--font-subheading);
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(243, 239, 230, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.item-reserved .item-label {
  color: rgba(243, 239, 230, 0.6);
}

.item-committed .item-label {
  color: #c5a059;
}

.item-earned .item-label {
  color: var(--color-red);
}

.item-open .item-label {
  color: rgba(255, 255, 255, 0.85);
}

.item-amount {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #f3efe6;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.item-desc {
  font-family: var(--font-body), Georgia, serif;
  font-size: 0.88rem;
  color: rgba(234, 230, 223, 0.65);
  line-height: 1.5;
}

.raise-target-submark {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.45s;
}

/* Scroll reveal trigger class */
.raise-target-section.in-view .raise-target-tag,
.raise-target-section.in-view .raise-target-summary,
.raise-target-section.in-view .funding-info-grid,
.raise-target-section.in-view .raise-target-submark {
  opacity: 1;
  transform: translateY(0);
}

.raise-target-section.in-view .raise-target-amount {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.raise-target-section.in-view .funding-bar-wrap {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

/* Responsive Rules for Section 3 */
@media (max-width: 1024px) {
  .raise-target-amount {
    font-size: 4.2rem;
  }
  .funding-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .raise-target-section {
    padding: 50px 18px;
  }
  .raise-target-container {
    width: 100%;
  }
  .raise-target-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .raise-target-amount {
    font-size: 3.2rem;
    letter-spacing: 1px;
  }
  .raise-target-summary {
    font-size: 0.98rem;
    margin-bottom: 32px;
  }
  .funding-bar-wrap {
    margin-bottom: 36px;
  }
  .funding-bar-track {
    height: 14px;
  }
  .funding-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .item-amount {
    font-size: 1.8rem;
  }
  .raise-target-submark {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }
}


/* ==========================================================================
   SECTION 4 — DIRECTOR'S WORK (Featured Trailers & Portfolio Chapter)
   ========================================================================== */
.directors-work-section {
  position: relative;
  width: 100%;
  background-color: #040406;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 85px 24px;
}

.directors-work-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.directors-work-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0.02) 60%, transparent 80%);
  filter: blur(60px);
}

.directors-work-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.directors-work-container {
  position: relative;
  z-index: 10;
  max-width: 1380px;
  width: 92vw;
  margin: 0 auto;
  text-align: center;
}

.directors-work-header {
  margin-bottom: 48px;
}

.directors-work-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.directors-work-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f3efe6;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

.directors-work-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.45), transparent);
  margin: 0 auto;
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.directors-work-divider.bottom-divider {
  margin-top: 56px;
  margin-bottom: 0;
}

/* 2-Column Trailer Grid */
.directors-trailers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
  text-align: left;
}

.trailer-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.trailer-card:nth-child(1) {
  transition-delay: 0.25s;
}

.trailer-card:nth-child(2) {
  transition-delay: 0.38s;
}

.trailer-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.trailer-card:hover .trailer-video-frame {
  border-color: rgba(229, 9, 20, 0.65);
  box-shadow: 0 16px 45px rgba(229, 9, 20, 0.2), 0 0 25px rgba(229, 9, 20, 0.15);
  transform: translateY(-2px);
}

.director-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000000;
  z-index: 1;
}

.trailer-fallback-frame {
  cursor: pointer;
}

.trailer-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.trailer-fallback-frame:hover .trailer-poster-fallback {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.trailer-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  transition: background 0.3s ease;
}

.trailer-fallback-frame:hover .trailer-play-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.play-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-icon-circle svg {
  margin-left: 3px;
}

.trailer-fallback-frame:hover .play-icon-circle {
  transform: scale(1.1);
  background: #e50914;
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.9);
}

.play-label {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.trailer-info {
  margin-top: 18px;
  padding-left: 2px;
}

.trailer-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f3efe6;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.trailer-card:hover .trailer-title {
  color: #ffffff;
}

.trailer-subtext {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(229, 9, 20, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

/* Scroll reveal trigger class for Section 4 */
.directors-work-section.in-view .directors-work-tag,
.directors-work-section.in-view .directors-work-title,
.directors-work-section.in-view .trailer-card {
  opacity: 1;
  transform: translateY(0);
}

.directors-work-section.in-view .directors-work-divider {
  opacity: 1;
  transform: scaleX(1);
}

/* Responsive Rules for Section 4 */
@media (max-width: 900px) {
  .directors-work-section {
    padding: 65px 20px;
  }
  .directors-work-title {
    font-size: 2.2rem;
  }
  .directors-trailers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trailer-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .directors-work-section {
    padding: 50px 16px;
  }
  .directors-work-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .directors-work-title {
    font-size: 1.8rem;
  }
  .trailer-title {
    font-size: 1.15rem;
  }
  .trailer-subtext {
    font-size: 0.68rem;
  }
}


/* ==========================================================================
   SECTION 5 — HORROR RETURNS (Commercial Financial Comparison Chapter)
   ========================================================================== */
.horror-returns-section {
  position: relative;
  width: 100%;
  background-color: #060608;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 85px 24px;
}

.horror-returns-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.horror-returns-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.12) 0%, rgba(229, 9, 20, 0.02) 60%, transparent 80%);
  filter: blur(60px);
}

.horror-returns-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.horror-returns-container {
  position: relative;
  z-index: 10;
  max-width: 1380px;
  width: 92vw;
  margin: 0 auto;
  text-align: center;
}

.horror-returns-header {
  max-width: 860px;
  margin: 0 auto 50px auto;
}

.horror-returns-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.horror-returns-intro {
  font-family: var(--font-body), Georgia, serif;
  font-size: 1.22rem;
  color: #f3efe6;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

/* Comparison Panel */
.horror-returns-panel {
  background: rgba(9, 9, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
}

.panel-subtitle {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: left;
}

/* 4-Film Horizontal Grid */
.horror-films-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  text-align: left;
}

.film-card {
  background: rgba(4, 4, 6, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 18px;
  transition: all 0.3s ease;
}

.film-card:hover {
  border-color: rgba(229, 9, 20, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.15);
}

.film-poster-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #000000;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.film-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.film-card:hover .film-poster-img {
  transform: scale(1.04);
}

.film-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #f3efe6;
  letter-spacing: 1px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.film-year {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 16px;
}

.film-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-label {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(243, 239, 230, 0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.metric-val {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f3efe6;
}

.return-row {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.return-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-red);
  text-shadow: 0 0 12px rgba(229, 9, 20, 0.4);
}

/* Scroll reveal for Section 5 */
.horror-returns-section.in-view .horror-returns-tag,
.horror-returns-section.in-view .horror-returns-intro,
.horror-returns-section.in-view .horror-returns-panel {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules for Section 5 */
@media (max-width: 1024px) {
  .horror-films-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .horror-returns-section {
    padding: 55px 16px;
  }
  .horror-returns-panel {
    padding: 24px 16px;
  }
  .horror-films-grid {
    grid-template-columns: 1fr;
  }
  .horror-returns-intro {
    font-size: 1.05rem;
  }
}


/* ==========================================================================
   SECTION 6 — RETURN SCENARIO (Investor Financial Return Memorandum)
   ========================================================================== */
.return-scenario-section {
  position: relative;
  width: 100%;
  background-color: #040406;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 85px 24px;
}

.return-scenario-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.return-scenario-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0.02) 65%, transparent 85%);
  filter: blur(70px);
}

.return-scenario-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.return-scenario-container {
  position: relative;
  z-index: 10;
  max-width: 1380px;
  width: 92vw;
  margin: 0 auto;
  text-align: center;
}

.return-scenario-header {
  max-width: 960px;
  margin: 0 auto 28px auto;
}

.return-scenario-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.return-scenario-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #f3efe6;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

.return-scenario-disclaimer {
  font-family: var(--font-body), Georgia, serif;
  font-size: 0.98rem;
  color: rgba(234, 230, 223, 0.72);
  line-height: 1.65;
  text-align: left;
  background: rgba(10, 10, 15, 0.75);
  border-left: 3px solid rgba(229, 9, 20, 0.75);
  padding: 18px 22px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.disclaimer-highlight {
  color: #ffffff;
  font-weight: 700;
}

/* Comparison Matrix Panel */
.return-scenario-panel {
  background: rgba(8, 8, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.25s, transform 0.9s ease-out 0.25s;
}

.scenario-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scenario-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.scenario-table th,
.scenario-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.scenario-table thead th {
  background: #040407;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
  vertical-align: bottom;
}

.col-metric-head {
  width: 24%;
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
}

.col-scenario-head {
  width: 25.33%;
  position: relative;
  padding-top: 24px;
  padding-bottom: 22px;
}

.scenario-name {
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.scenario-worse .scenario-name {
  color: rgba(243, 239, 230, 0.65);
}

.scenario-likely .scenario-name {
  color: #c5a059; /* Antique Gold */
}

.scenario-best .scenario-name {
  color: var(--color-red);
}

.head-revenue-val {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.1;
}

.col-scenario-head.scenario-likely .head-revenue-val {
  color: #c5a059;
}

.head-revenue-lbl {
  font-family: var(--font-subheading);
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
}

.likely-badge {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.58rem;
  font-weight: 800;
  color: #000000;
  background: #c5a059;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.featured-likely {
  background: rgba(197, 160, 89, 0.05) !important;
  border-left: 1px solid rgba(197, 160, 89, 0.25);
  border-right: 1px solid rgba(197, 160, 89, 0.25);
}

.featured-best {
  background: rgba(229, 9, 20, 0.03) !important;
}

/* Row specifics */
.cell-metric {
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(243, 239, 230, 0.85);
  letter-spacing: 0.5px;
}

.cell-val {
  font-family: var(--font-body), Georgia, serif;
  font-size: 0.92rem;
  color: rgba(234, 230, 223, 0.78);
  line-height: 1.5;
}

.row-net-revenue {
  display: none; /* Featured in table header on desktop */
}

.shudder-amount {
  font-weight: 600;
  color: #ffffff;
  display: block;
}

.shudder-tag {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.metric-roi-label {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 800;
}

.row-roi {
  background: rgba(0, 0, 0, 0.4);
}

.row-roi td {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: none;
}

.roi-val {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.roi-worse {
  color: rgba(243, 239, 230, 0.85);
}

.roi-likely {
  color: #c5a059;
}

.roi-best {
  color: var(--color-red);
  text-shadow: 0 0 16px rgba(229, 9, 20, 0.4);
}

/* Scroll reveal for Section 6 */
.return-scenario-section.in-view .return-scenario-tag,
.return-scenario-section.in-view .return-scenario-title,
.return-scenario-section.in-view .return-scenario-disclaimer,
.return-scenario-section.in-view .return-scenario-panel {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules for Section 6 */
@media (max-width: 900px) {
  .return-scenario-section {
    padding: 60px 16px;
  }
  .return-scenario-title {
    font-size: 2.4rem;
  }
  .head-revenue-val {
    font-size: 1.7rem;
  }
  .roi-val {
    font-size: 1.8rem;
  }
  .scenario-table th, .scenario-table td {
    padding: 14px 16px;
  }
}

@media (max-width: 600px) {
  .return-scenario-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .return-scenario-title {
    font-size: 1.9rem;
  }
  .return-scenario-disclaimer {
    font-size: 0.88rem;
    padding: 14px;
  }
  .row-net-revenue {
    display: table-row;
  }
}


/* ==========================================================================
   SECTION 7 — FAQ (Investor Frequently Asked Questions)
   ========================================================================== */
.faq-section {
  position: relative;
  width: 100%;
  background-color: #060608;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 85px 24px;
}

.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.faq-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0.02) 65%, transparent 85%);
  filter: blur(70px);
}

.faq-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.faq-container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 92vw;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.faq-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.faq-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #f3efe6;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-shadow: 0 0 30px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

/* FAQ Accordion List */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  background: rgba(8, 8, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
}

.faq-item:hover {
  border-color: rgba(229, 9, 20, 0.35);
}

.faq-item.open {
  border-color: rgba(229, 9, 20, 0.6);
  background: rgba(12, 12, 18, 0.95);
  box-shadow: 0 15px 35px rgba(229, 9, 20, 0.1);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: #f3efe6;
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
}

.faq-button:hover {
  color: #ffffff;
}

.faq-num {
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 2px;
  margin-right: 12px;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  line-height: 1.35;
}

.faq-icon {
  font-family: var(--font-subheading), monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  margin-left: 12px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
}

.faq-item.open .faq-answer-wrap {
  max-height: 1200px;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease 0.1s;
}

.faq-answer {
  padding: 0 26px 26px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4px;
  padding-top: 18px;
}

.faq-answer p {
  font-family: var(--font-body), Georgia, serif;
  font-size: 1.02rem;
  color: rgba(243, 239, 230, 0.82);
  line-height: 1.75;
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #ffffff;
  font-weight: 700;
}

.faq-note {
  font-style: italic;
  color: rgba(243, 239, 230, 0.7);
  border-left: 2px solid var(--color-red);
  padding-left: 14px;
  margin-top: 12px;
}

.faq-bullets {
  margin: 12px 0 16px 22px;
  color: rgba(243, 239, 230, 0.82);
  font-family: var(--font-body), Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.75;
}

.faq-bullets li {
  margin-bottom: 6px;
}

/* Scroll reveal for Section 7 */
.faq-section.in-view .faq-tag,
.faq-section.in-view .faq-title {
  opacity: 1;
  transform: translateY(0);
}

.faq-section.in-view .faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s ease, background 0.3s ease;
}

/* Staggered animation for FAQ items */
.faq-section.in-view .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-section.in-view .faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-section.in-view .faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq-section.in-view .faq-item:nth-child(4) { transition-delay: 0.25s; }
.faq-section.in-view .faq-item:nth-child(5) { transition-delay: 0.3s; }
.faq-section.in-view .faq-item:nth-child(6) { transition-delay: 0.35s; }
.faq-section.in-view .faq-item:nth-child(7) { transition-delay: 0.4s; }
.faq-section.in-view .faq-item:nth-child(8) { transition-delay: 0.45s; }
.faq-section.in-view .faq-item:nth-child(9) { transition-delay: 0.5s; }
.faq-section.in-view .faq-item:nth-child(10) { transition-delay: 0.55s; }
.faq-section.in-view .faq-item:nth-child(11) { transition-delay: 0.6s; }
.faq-section.in-view .faq-item:nth-child(12) { transition-delay: 0.65s; }


/* Responsive Rules for Section 7 */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }
  .faq-title {
    font-size: 2.2rem;
  }
  .faq-button {
    font-size: 1.02rem;
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px 20px 20px;
    padding-top: 14px;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.8rem;
  }
  .faq-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .faq-button {
    font-size: 0.95rem;
    padding: 16px 14px;
  }
  .faq-num {
    margin-right: 6px;
  }
}


/* ==========================================================================
   SECTION 8 — DISTRIBUTION (Southeast Asia Distribution Pathway Secured)
   ========================================================================== */
.distribution-section {
  position: relative;
  width: 100%;
  background-color: #040406;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  padding: 85px 24px;
}

.distribution-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.distribution-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.12) 0%, rgba(229, 9, 20, 0.02) 65%, transparent 85%);
  filter: blur(75px);
}

.distribution-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.distribution-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  width: 92vw;
  margin: 0 auto;
  text-align: center;
}

.distribution-header {
  max-width: 960px;
  margin: 0 auto 48px auto;
}

.distribution-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.distribution-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #f3efe6;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 0 0 30px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

/* Distribution Map Container */
.distribution-map-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 48px auto;
  background: rgba(6, 6, 9, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
}

.distribution-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: contrast(1.05) brightness(0.95);
}

/* 2-Column Info Grid */
.distribution-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.3s, transform 0.9s ease-out 0.3s;
}

.dist-card {
  background: rgba(8, 8, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.dist-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.dist-card-badge {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.dist-card-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #f3efe6;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.dist-card-text {
  font-family: var(--font-body), Georgia, serif;
  font-size: 1.02rem;
  color: rgba(243, 239, 230, 0.8);
  line-height: 1.7;
}

/* Scroll reveal for Section 8 */
.distribution-section.in-view .distribution-tag,
.distribution-section.in-view .distribution-title,
.distribution-section.in-view .distribution-map-wrap,
.distribution-section.in-view .distribution-info-grid {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules for Section 8 */
@media (max-width: 900px) {
  .distribution-section {
    padding: 60px 16px;
  }
  .distribution-title {
    font-size: 2.1rem;
  }
  .distribution-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .distribution-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .distribution-title {
    font-size: 1.75rem;
  }
  .distribution-map-wrap {
    padding: 10px;
    margin-bottom: 32px;
  }
  .dist-card {
    padding: 22px 18px;
  }
  .dist-card-title {
    font-size: 1.2rem;
  }
  .dist-card-text {
    font-size: 0.95rem;
  }
}


/* ==========================================================================
   SECTION 9 — LOCATION (The Yang Family Manor)
   ========================================================================== */
.location-section {
  position: relative;
  width: 100%;
  background-color: #060608;
  overflow: hidden;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  padding: 100px 24px;
}

.location-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.location-glow {
  position: absolute;
  top: 40%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.12) 0%, rgba(229, 9, 20, 0.02) 65%, transparent 85%);
  filter: blur(75px);
}

.location-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.location-container {
  position: relative;
  z-index: 10;
  max-width: 1380px;
  width: 92vw;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 48px;
  align-items: start;
}

/* Left Column: Text & Hierarchy */
.location-text-col {
  text-align: left;
  padding-right: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.location-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.location-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 3.0rem;
  font-weight: 900;
  color: #f3efe6;
  letter-spacing: 2px;
  line-height: 1.12;
  margin-bottom: 28px;
  text-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.location-body p {
  font-family: var(--font-body), Georgia, serif;
  font-size: 1.08rem;
  color: rgba(243, 239, 230, 0.84);
  line-height: 1.75;
  margin-bottom: 20px;
}

.location-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(8, 8, 12, 0.9);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 4px;
}

.location-pin-icon {
  color: var(--color-red);
}

.location-meta-text {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #f3efe6;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Right Column: Location Gallery Composition */
.location-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out 0.15s, transform 0.9s ease-out 0.15s;
}

.loc-gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.loc-gallery-item:hover {
  border-color: rgba(229, 9, 20, 0.65);
  box-shadow: 0 16px 45px rgba(229, 9, 20, 0.2), 0 0 25px rgba(229, 9, 20, 0.15);
}

.loc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.loc-gallery-item:hover .loc-img {
  transform: scale(1.025);
}

/* Hero Primary Frame */
.location-hero-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #040406;
}

.loc-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-subheading);
  font-size: 0.62rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(229, 9, 20, 0.85);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Hover Overlay for Gallery Items */
.loc-hover-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.loc-gallery-item:hover .loc-hover-overlay {
  opacity: 1;
}

.loc-expand-btn {
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(229, 9, 20, 0.8);
  padding: 8px 16px;
  border-radius: 3px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.loc-expand-icon {
  font-size: 1.5rem;
  color: var(--color-red);
  font-weight: 700;
}

/* 4 Supporting Sub-Panels Grid */
.location-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.location-sub-card {
  display: flex;
  flex-direction: column;
  background: rgba(8, 8, 12, 0.9);
}

.sub-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000000;
}

.sub-card-caption {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(243, 239, 230, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 10px;
  background: #040407;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

/* Scroll reveal for Section 9 */
.location-section.in-view .location-text-col,
.location-section.in-view .location-gallery-col {
  opacity: 1;
  transform: translateY(0);
}

/* Location Lightbox Viewer Modal */
.location-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(2, 2, 4, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.location-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.loc-lightbox-container {
  width: 94vw;
  max-width: 1280px;
  height: 92vh;
  display: flex;
  flex-direction: column;
  background: #040407;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
}

.loc-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #06060a;
}

.loc-lightbox-counter {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 2px;
}

.loc-lightbox-caption {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f3efe6;
  letter-spacing: 1.5px;
}

.loc-lightbox-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.loc-lightbox-close:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(229, 9, 20, 0.1);
}

.loc-lightbox-body {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #020204;
}

.loc-lightbox-img-wrap {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.loc-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  padding: 12px 18px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.loc-arrow-prev { left: 20px; }
.loc-arrow-next { right: 20px; }

.loc-lightbox-arrow:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(229, 9, 20, 0.2);
}

/* Responsive Rules for Section 9 */
@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-text-col {
    padding-right: 0;
  }
  .location-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .location-section {
    padding: 60px 16px;
  }
  .location-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .location-title {
    font-size: 1.9rem;
  }
  .location-body p {
    font-size: 0.98rem;
  }
  .location-sub-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   SECTION 10 — THE TEAM (Refined Compact Editorial Film Deck Styles)
   ========================================================================== */
.team-section {
  position: relative;
  padding: 80px 24px;
  background: #040406;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.1) 0%, rgba(4, 4, 6, 0) 70%);
  filter: blur(60px);
}

.team-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
}

.team-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.team-header {
  text-align: center;
  margin-bottom: 36px;
}

.team-eyebrow {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.team-title {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f3efe6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Featured Hero Profile: Justin Leong */
.team-hero-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  background: linear-gradient(135deg, rgba(14, 14, 20, 0.95) 0%, rgba(8, 8, 12, 0.98) 100%);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}

.team-section.in-view .team-hero-card {
  opacity: 1;
  transform: translateY(0);
}

.team-hero-card:hover {
  border-color: rgba(229, 9, 20, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(229, 9, 20, 0.12);
}

.team-hero-img-col {
  width: 100%;
}

.team-hero-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.team-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.6s ease;
}

.team-hero-card:hover .team-hero-img {
  transform: scale(1.03);
}

.team-role-badge {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.95) 0%, rgba(139, 0, 0, 0.95) 100%);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.25);
}

.team-hero-name {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

.team-hero-bio p {
  font-family: var(--font-body), sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(243, 239, 230, 0.88);
  font-weight: 300;
  margin: 0 0 12px 0;
}

.team-hero-bio p:last-child {
  margin-bottom: 0;
}

/* Secondary Team Grid (4 Columns Desktop) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: opacity 0.8s ease-out, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.team-section.in-view .team-card:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.team-section.in-view .team-card:nth-child(2) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.team-section.in-view .team-card:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.team-section.in-view .team-card:nth-child(4) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(229, 9, 20, 0.1);
}

.team-portrait-link {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
}

.team-card-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #06060a;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.92);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.team-portrait-link:hover .team-card-img,
.team-card:hover .team-card-img {
  transform: scale(1.04);
  filter: contrast(1.08) brightness(1);
}

.team-card-img-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 ease;
  z-index: 2;
}

.team-portrait-link:hover .team-card-img-overlay {
  opacity: 1;
}

.imdb-hover-badge {
  font-family: var(--font-subheading);
  font-size: 0.68rem;
  font-weight: 800;
  color: #000000;
  background: #f5c518;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.team-card-body {
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
  background: #050508;
}

.team-card-header {
  margin-bottom: 2px;
}

.team-card-role {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.sub-role-tag {
  font-size: 0.58rem;
  color: rgba(243, 239, 230, 0.6);
  margin-left: 2px;
  display: inline-block;
  letter-spacing: 1px;
}

.team-card-name {
  font-family: var(--font-heading), 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 4px 0 0 0;
  line-height: 1.3;
}

.team-card-bio {
  font-family: var(--font-body), sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.88);
  font-weight: 300;
  margin: 4px 0 8px 0;
}

.team-card-bio p {
  margin: 0 0 8px 0;
}

.team-card-bio p:last-child {
  margin-bottom: 0;
}

/* Credential Badges */
.team-cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 6px;
  margin-bottom: 6px;
}

.cred-tag {
  font-family: var(--font-subheading);
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(243, 239, 230, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.team-card-footer {
  margin-top: 4px;
}

.imdb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-subheading);
  font-size: 0.68rem;
  font-weight: 800;
  color: #000000;
  background: #f5c518;
  padding: 5px 12px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
  align-self: flex-start;
}

.imdb-btn:hover {
  background: #e2b616;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.imdb-logo {
  font-weight: 900;
  letter-spacing: 0.5px;
}

.imdb-arrow {
  font-size: 0.8rem;
  font-weight: 700;
}

/* Responsive Rules for Section 10 */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .team-hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .team-hero-img-frame {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .team-section {
    padding: 50px 16px;
  }
  .team-title {
    font-size: 1.8rem;
  }
  .team-hero-name {
    font-size: 1.6rem;
  }
  .team-hero-bio p,
  .team-card-bio {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}






