/* ==========================================================================
   CUSTOM FONT INTER INTEGRATION (FROM WEBFLOW REFERENCE DIRECTORY)
   ========================================================================== */
@font-face {
  font-family: 'Inter Tight Variable';
  src: url('https://cdn.prod.website-files.com/69ab4564c7407008cfbf694f/69ab4cf58deff19c3664dcf5_InterTight-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   RESET & SYSTEM VARIABLES (MATCHING REFERENCE DESIGN TOKENS EXACTLY)
   ========================================================================== */
:root {
  --off-white: #fafafa;
  --_typography---body: "Inter Tight", "Inter Tight Variable", Verdana, sans-serif;
  --graphite: #27292a;
  --_typography---headings: "Inter Tight", "Inter Tight Variable", Verdana, sans-serif;
  --labs-green: #3cce6b;
  --dark-green: #23432d;
  --light-gray: #ebebeb;
  --medium-gray: #b5b8ba;
  --light-green: #def7e6;
  --_typography---subheadings: "Inter Tight", "Inter Tight Variable", Verdana, sans-serif;

  --bg-pure: #ffffff;
  --bg-light: var(--off-white);
  --border-light: var(--light-gray);
  
  --text-primary: var(--graphite);
  --text-secondary: var(--medium-gray);
  --text-dim: var(--medium-gray);
  
  --accent-green: var(--labs-green);
  --accent-green-hover: #2eb95b;
  --accent-gradient: linear-gradient(135deg, var(--labs-green) 0%, #2eb95b 100%);
  
  --font-logo: var(--_typography---subheadings);
  --font-body: var(--_typography---body);
  --font-heading: var(--_typography---headings);
  
  /* Transition curve matching reference easing exactly */
  --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.2s ease;
  
  --header-height: 70px;

  /* Responsive Variables for Marquee Card Sizing */
  --card-width: 300px;
  --card-hover-scale: 1.40;
  --card-gap: 8px;
  --shift-distance: 67px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 100%;
  min-height: 100%;
  margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* ==========================================================================
   NAVIGATION BAR (MATCHING REFERENCE SETTINGS EXACTLY)
   ========================================================================== */
.nav {
  z-index: 9997;
  mix-blend-mode: difference; /* Reference blend mode setting */
  justify-content: center;
  align-items: center;
  padding: 2rem; /* 2rem reference padding */
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  pointer-events: none; /* Let mouse clicks pass through container to player underneath */
}

.brand-logo {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 1.8rem; /* Much bigger logo text */
  letter-spacing: 2px;
  color: #ffffff; /* White base color so difference mix-blend inverts it perfectly */
  user-select: none;
  cursor: pointer;
  text-transform: uppercase;
  pointer-events: auto; /* Clickable brand text logo */
}

/* ==========================================================================
   DESKTOP SITE STYLING (Theater Slideshow Layout inside Hero Fold)
   ========================================================================== */
.desktop-layout {
  display: block;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrollbar on mobile and desktop slider overlays */
}

/* 1. Theater Video Showcase Section */
.theater-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  background: var(--bg-light);
  overflow: visible; /* Let overlapping cards hang out of bottom fold */
}

.theater-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding: 16px 16px 0 16px; /* Symmetrical padding of exactly 16px */
}

/* Giant Widescreen Player Card (16:9 Aspect Ratio matching 78vh height exactly) */
.theater-player-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Perfect 16:9 viewport ratio */
  max-height: 78vh; /* Height matches 78vh exactly */
  background: #000;
  border-radius: 1rem; /* MATCHES REFERENCE BORDER-RADIUS EXACTLY */
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  z-index: 10; /* Rendered below the overlapping slider container */
}

.theater-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#theater-main-player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(3.5); /* Widescreen zoom covering vertical side pillars */
  border: none;
}

.theater-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 90%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* Text & Play overlay */
.theater-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  color: #fff;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  padding: 40px 30px;
}

.theater-card-brand {
  font-family: var(--font-logo);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: auto; /* Push rest of layout to center */
  flex-shrink: 0;
  text-transform: uppercase;
  opacity: 0.95;
}

.theater-title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  max-width: 85%;
  line-height: 1.1;
  text-transform: none; /* mixed case campaign title */
  color: #ffffff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.theater-play-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  pointer-events: auto; /* Clickable */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
  margin-top: 20px;
  margin-bottom: auto; /* Balance vertical centering */
}

.theater-play-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.theater-play-btn i {
  margin-left: 4px;
}

/* Interceptor layer when playing to handle pauses */
.theater-click-interceptor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
  pointer-events: none;
}

/* Play state triggers */
.theater-player-card.playing .theater-content-overlay {
  opacity: 0;
}

.theater-player-card.playing .theater-vignette {
  opacity: 0.15;
}

.theater-player-card.playing .theater-click-interceptor {
  pointer-events: auto;
}

/* 2. Thumbnail Slider Row (Snug spacing close to main card) */
.thumbnail-slider-container {
  margin-top: -15px; /* Symmetrical border layout offset */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translate(-50%, 15%); /* Centered layout with 15% translate offset */
  z-index: 100; /* Renders ON TOP of the player card to allow overlapping overlay */
  flex-shrink: 0;
  overflow: visible; /* Allow scaled cards to hover outside box clip bounds */
}

.thumbnail-row {
  display: flex;
  align-items: center; /* Symmetrical vertical center alignment */
  gap: var(--card-gap); /* Sized spacing between cards dynamically */
  width: max-content; /* Row expands to fit duplicated sets exactly */
  padding: 0 80px; /* Side padding to ensure scrolling loop doesn't clip tightly on screen edges */
  animation: marquee 48s linear infinite; /* Seamless infinite marquee */
}

/* Pause marquee and trigger freeze when hovering */
.thumbnail-slider-container:hover .thumbnail-row {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-25%, 0, 0); /* Loop seamlessly after 1 set (25% of 4 sets) */
  }
}

.thumbnail-card {
  flex: 0 0 var(--card-width); /* FIXED WIDTH ON X-AXIS - NO LAYOUT FLUIDITY SHIFTS */
  width: var(--card-width);
  min-width: var(--card-width);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); /* Hardware-accelerated transitions */
  opacity: 1;
  position: relative;
  z-index: 1;
  transform-origin: center center; /* Grow symmetrically top and bottom */
}

/* Hovered Card Zoom Style (Symmetrical in X-axis place, 40% zoom) */
.thumbnail-card.hovered {
  transform: scale(var(--card-hover-scale)); /* Symmetrical zoom factor */
  z-index: 1000; /* Overlays adjacent siblings and main card */
}

/* Neighbors shift outwards dynamically in ease, leaving exactly 15px of exterior padding clearance */
.thumbnail-card.shift-left {
  transform: translate3d(calc(-1 * var(--shift-distance)), 0, 0) !important; /* Move left siblings away */
}

.thumbnail-card.shift-right {
  transform: translate3d(var(--shift-distance), 0, 0) !important; /* Move right siblings away */
}

.thumb-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* MATCHES REFERENCE ASPECT RATIO (3:2) EXACTLY */
  border-radius: 1rem; /* MATCHES REFERENCE BORDER-RADIUS EXACTLY */
  overflow: hidden;
  background: #000;
  border: none; /* Removed thin white border outlines to prevent white loop line */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 0; /* Restored to 0 */
  transition: box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.thumbnail-card.hovered .thumb-media {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28); /* Rich deep shadow overlay when card gets 40% bigger */
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail Metadata Overlay (Matches Screenshot style) */
.thumb-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px; /* Generous padding inside card borders */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
}

.thumb-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.thumb-duration {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Clean Play triangle overlay */
.thumb-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.thumb-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centered controls overlay */
  color: #ffffff;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumbnail-card.hovered .thumb-play-circle {
  opacity: 0.85;
}

/* 3. Metadata prompt overlay beneath fold */
.active-metadata-line {
  max-width: 1200px;
  margin: 80px auto 40px; /* Increased top margin to clear the translated thumbnails */
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.active-metadata-label {
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.active-metadata-separator {
  color: var(--border-light);
  font-weight: 300;
}

.active-metadata-value {
  font-family: 'Courier New', Courier, monospace;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ==========================================================================
   MINIMAL FOOTER & ABOUT SECTION (MATCHING REFERENCE STRUCTURE & FADE)
   ========================================================================== */
.minimal-footer {
  position: relative;
  background: #ffffff;
  padding: 80px; /* Matches reference padding: 80px exactly! */
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.footer-graphic-circle {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.025);
  pointer-events: none;
}

.minimal-footer-container {
  position: relative;
  z-index: 5;
  max-width: 1000px; /* Expanded to match manifesto width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  
  /* Already faded baseline state for scroll flow reveal */
  opacity: 0.2;
  transform: translate3d(0, 15px, 0);
}

.footer-studio-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-green);
  letter-spacing: -1px;
  margin-top: 30px; /* Moved exactly 30px below the logo mark */
}

.footer-manifesto {
  font-family: var(--font-body);
  font-size: 2.5rem; /* Increased to 2.5rem (40px) matching reference design */
  line-height: 1.15; /* Tight line-height matching line-height: 110% of reference site */
  color: var(--text-primary);
  font-weight: 500;
  max-width: 1000px; /* Max width matches 1000px of reference site */
  text-align: center;
}

/* Word-by-word scroll reveal animation style */
.reveal-word {
  opacity: 0.15;
  display: inline-block;
  margin-right: 0.22em;
  transition: opacity 0.15s ease-out;
}

.footer-manifesto p {
  margin-bottom: 24px;
}

.footer-manifesto p:last-child {
  margin-bottom: 0;
}

.manifesto-lead {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dim) !important;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 40px;
}

.footer-query {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 10px;
}

.footer-email-link {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent-green);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: var(--transition-fast);
  letter-spacing: -1px;
}

.footer-email-link:hover {
  border-color: var(--accent-green);
}

.footer-cta-pill {
  font-family: var(--font-body);
  background: var(--text-primary);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.footer-cta-pill:hover {
  background: #000000;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.footer-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.footer-reels-btn {
  font-family: var(--font-body);
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 28px; /* Snug styling next to Get in Touch button */
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  display: none; /* Hidden on desktop viewports */
  align-items: center;
  justify-content: center;
}

.footer-reels-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--text-primary);
  transform: scale(1.05);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 60px;
  font-weight: 300;
}


/* ==========================================================================
   MOBILE REELS STYLE (Vertical Swipe with YouTube EMBEDS)
   ========================================================================== */
.mobile-reels-layout {
  display: none;
}

@media (max-width: 768px) {
  /* Mobile Reels Setup */
  .brand-logo {
    font-size: 1.5rem; /* Bigger logo text on mobile */
  }

  .header-actions .icon-btn {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .header-container {
    padding: 0 20px;
  }

  .reels-feed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    background: #000;
    z-index: 100;
  }
  
  .reels-feed::-webkit-scrollbar {
    display: none;
  }

  .reel-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background: #000;
  }

  /* YouTube Player Outer Wrapper */
  .reel-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #000;
  }

  /* YouTube Iframe Inner Container scaled to fit and cover */
  .reel-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: #000;
  }

  .reel-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.35);
    border: none;
    pointer-events: none;
  }

  /* Right-side Actions overlays */
  .reel-actions {
    position: absolute;
    right: 16px;
    bottom: 100px;
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .action-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    position: relative;
  }

  .action-btn i {
    font-size: 1.15rem;
  }

  .action-btn.active i {
    color: #ff3b30;
    transform: scale(1.1);
  }

  .action-label {
    position: absolute;
    bottom: -18px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
  }

  /* Bottom Metadata info overlays */
  .reel-info-overlay {
    position: absolute;
    left: 16px;
    bottom: 24px;
    right: 80px;
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .info-brand {
    font-family: var(--font-logo);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
  }

  .badge-ai {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 800;
    background: var(--accent-gradient);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    color: #fff;
  }

  .info-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    font-weight: 700;
    color: #fff;
  }

  .info-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
  }

  /* Expandable prompt panel on mobile */
  .info-prompt-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 64px);
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid var(--border-light);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    backdrop-filter: blur(20px);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    z-index: 120;
  }

  .info-prompt-panel.active {
    transform: translateY(12px);
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERY OVERRIDES FOR DESKTOP SHOWCASE ON TABLET & MOBILE
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --card-width: 220px;
    --card-hover-scale: 1.30;
    --card-gap: 6px;
    --shift-distance: 39px;
  }
  .theater-container {
    padding: 12px 12px 0 12px;
  }
  .active-metadata-line {
    margin: 50px auto 30px;
    padding: 0 20px;
  }
  .minimal-footer {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --card-width: 160px;
    --card-hover-scale: 1.20;
    --card-gap: 4px;
    --shift-distance: 22px;
  }
  .theater-container {
    padding: 8px 8px 0 8px;
  }
  .theater-section {
    height: auto;
    min-height: 100vh;
  }
  .theater-player-card {
    aspect-ratio: 9 / 16; /* Portrait ratio on mobile matching screenshot */
    max-height: 82vh; /* Taller player card to maximize screen real estate and fill width */
    border-radius: 1.25rem;
  }
  #theater-main-player {
    transform: translate(-50%, -50%) scale(1); /* No widescreen zoom/crop needed on mobile */
  }
  .theater-card-brand {
    display: none !important; /* Hide duplicate overlay watermark on mobile */
  }
  .theater-content-overlay {
    justify-content: center; /* Center title and controls vertically in mobile view */
    gap: 20px;
    padding: 30px;
  }
  .theater-title {
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    max-width: 90%;
  }
  .theater-play-btn {
    width: 52px;
    height: 52px;
    font-size: 0.95rem;
  }
  .thumbnail-slider-container {
    margin-top: -10px;
  }
  .active-metadata-line {
    margin: 40px auto 20px;
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
  }
  .minimal-footer {
    padding: 30px 16px; /* Tighter padding on mobile footer */
  }
  .minimal-footer-container {
    gap: 16px; /* Tight vertical gaps on mobile */
  }
  .footer-studio-title {
    font-size: 1.8rem; /* Clean readable studio title size */
    margin-top: 0; /* Remove top space since logo is deleted */
  }
  .footer-manifesto {
    font-size: 2.0rem; /* Kept big as requested */
    line-height: 1.15;
  }
  .footer-manifesto p {
    margin-bottom: 12px; /* Tight paragraph spacing */
  }
  .footer-copy {
    margin-top: 20px; /* Reduce copyright top spacing */
  }
  .footer-reels-btn {
    display: inline-flex; /* Show on mobile viewports only */
  }
}

/* ==========================================================================
   MOBILE REELS REDIRECT PROMPT TOAST
   ========================================================================= */
.mobile-prompt-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: none; /* Hidden on desktop */
  visibility: hidden; /* Prevent mobile scroll height overflow */
  pointer-events: none;
}

@media (max-width: 768px) {
  .mobile-prompt-banner {
    display: block; /* Visible on mobile */
  }
}

.mobile-prompt-banner.active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.prompt-banner-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.prompt-banner-icon {
  font-size: 2.2rem;
  color: var(--accent-green);
  flex-shrink: 0;
}

.prompt-banner-text {
  flex-grow: 1;
}

.prompt-banner-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.prompt-banner-text p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin: 0;
}

.prompt-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.prompt-btn-primary {
  font-family: var(--font-body);
  background: var(--text-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.prompt-btn-primary:hover {
  background: #000000;
}

.prompt-btn-secondary {
  font-family: var(--font-body);
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.prompt-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   DESKTOP BLOCKER OVERLAY FOR REELS PAGE (Strictly Mobile viewports <= 768px)
   ========================================================================== */
@media (min-width: 769px) {
  .desktop-blocking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0b0c; /* High-end dark theme matching Reels */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fafafa;
    text-align: center;
    padding: 20px;
    font-family: "Inter Tight", "Inter Tight Variable", Verdana, sans-serif;
  }
  
  .blocker-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .blocker-icon {
    font-size: 3.5rem;
    color: var(--labs-green);
    animation: blockerPulse 2s infinite ease-in-out;
  }
  
  .blocker-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.5px;
  }
  
  .blocker-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--medium-gray);
    margin: 0;
  }
  
  .blocker-back-btn {
    font-family: var(--font-body);
    background: #ffffff;
    color: #0b0b0c;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-fast);
    margin-top: 10px;
  }
  
  .blocker-back-btn:hover {
    background: var(--labs-green);
    color: #0b0b0c;
    transform: scale(1.05);
  }
}

@keyframes blockerPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
