/* 
  ONE DAY SHOOT | Authentic Brand Production Stylesheet
  Black & Electric Cinema Yellow (#FFD000)
  Exact 1-to-1 Frame-by-Frame Scroll Reproduction
  Perfect True Circles (aspect-ratio: 1; border-radius: 50%)
*/

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@400;600;700&family=Federo&family=Josefin+Sans:wght@300;400;600;700&family=Limelight&family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

@font-face {
  font-family: 'Unbounded';
  src: url('./assets/fonts/Unbounded[wght].ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('./assets/fonts/Manrope[wght].ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('./assets/fonts/IBMPlexMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black-0: #000000;
  --black-1: #0A0A0B;
  --black-2: #141416;
  --black-3: #222226;
  
  --yellow-0: #FFD000;
  --yellow-1: #FFE043;
  --yellow-2: #D4A800;
  
  --white-0: #F5F3EF;
  --white-1: #FFFFFF;
  --gray-0: #9E9B95;
  --gray-1: #68645E;
  
  --line-0: rgba(255, 208, 0, 0.18);
  --line-1: rgba(255, 208, 0, 0.35);

  --surface-page: var(--black-0);
  --surface-raised: var(--black-1);
  --surface-hover: var(--black-2);
  
  --text-primary: var(--white-0);
  --text-strong: var(--white-1);
  --text-yellow: var(--yellow-0);
  --text-secondary: var(--gray-0);
  --text-faint: var(--gray-1);

  /* Typography matching reference image 1-to-1 */
  --font-artdeco: 'Josefin Sans', sans-serif;
  --font-display: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --text-display-hero: clamp(5.5rem, 4.5rem + 8.5vw, 12.5rem);
  --text-display-1: clamp(2.25rem, 1.8rem + 3.2vw, 4.5rem);
  --text-display-2: clamp(1.75rem, 1.4rem + 2vw, 3rem);
  --text-display-3: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);

  --leading-tight: 0.82;
  --leading-snug: 1.25;
  --leading-normal: 1.6;

  /* Layout */
  --container-max: 1440px;
  --container-pad: clamp(1.25rem, 1rem + 2.5vw, 4rem);
  --section-pad: clamp(4rem, 3rem + 4vw, 8rem);

  /* Motion */
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: clip;
  max-width: 100vw;
}

body {
  min-height: 100dvh;
  background-color: var(--surface-page);
  color: var(--text-primary);
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

/* 35mm Film Grain Overlay */
.film-grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Top Sticky Navigation (Matching Wix 1-to-1) */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--yellow-0);
  text-decoration: none;
}

.nav-center-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-center-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow-0);
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

.nav-center-link:hover {
  opacity: 0.75;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-0);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}

/* ==========================================================
   HERO: FRAME-BY-FRAME EXACT WIX SCROLL ARCHITECTURE
   ========================================================== */
.hero-scroll-wrapper {
  position: relative;
  height: 175vh;
  min-height: 175vh;
  background-color: #000000;
  overflow-x: clip;
  max-width: 100vw;
}

/* Pinned Black Text Layer (Stays fixed in center while circle rises, then slips under services) */
.hero-pinned-text {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
  text-align: center;
}

.hero-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-display-hero);
  line-height: 0.85;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: -0.04em;
  user-select: none;
}

/* Scrolling Track: Contains Yellow Circle, Satellites, and Action Buttons */
.hero-scroll-track {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  overflow: hidden;
}

/* Top Giant Yellow Circle: A TRUE PERFECT CIRCLE (aspect-ratio: 1 / 1) */
.hero-top-yellow-circle {
  width: clamp(1400px, 125vw, 2200px);
  aspect-ratio: 1 / 1;
  background-color: var(--yellow-0);
  border-radius: 50%;
  margin-top: -10vh; /* Fills the screen with lower hemisphere on load */
  flex-shrink: 0;
  position: relative;
  overflow: hidden; /* Clips all subtitle text inside the circle boundary */
}

/* Meta texts placed securely inside the yellow circle boundary on all screens */
.hero-meta-left {
  position: absolute;
  left: clamp(2.5rem, 12vw, 16rem);
  top: 50%;
  transform: translateY(-50%);
  max-width: clamp(160px, 13vw, 280px);
  font-family: var(--font-body);
  font-size: clamp(12px, 0.95vw, 18px);
  line-height: 1.35;
  color: #000000;
  font-weight: 700;
  text-align: left;
  user-select: none;
  letter-spacing: -0.01em;
}

.hero-meta-right {
  position: absolute;
  right: clamp(2.5rem, 12vw, 16rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.85vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 800;
  text-align: right;
  user-select: none;
}

/* Subtitle placed at bottom of the yellow circle - moves UP with the circle */
.hero-brand-subtitle {
  position: absolute;
  bottom: clamp(45px, 6.5vh, 95px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-artdeco);
  font-weight: 400;
  font-size: clamp(1.2rem, 0.95rem + 1.1vw, 2.3rem);
  line-height: 1.25;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.05em;
  max-width: 1050px;
  width: 90%;
  text-align: center;
  user-select: none;
  -webkit-text-stroke: 0.5px #000000;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-scrolled .hero-brand-subtitle {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(20px) !important;
  pointer-events: none !important;
}

body.is-scrolled .hero-meta-left,
body.is-scrolled .hero-meta-right {
  opacity: 0.3;
  transition: opacity 0.35s ease;
}

/* Satellite Circles Container: Pushed to the extreme left and right edges */
.hero-satellite-row {
  width: 100%;
  position: relative;
  height: 120px;
  margin-top: -90px;
  pointer-events: none;
  overflow: visible;
}

/* Smaller, delicate Satellite Left Circle at extreme left */
.hero-satellite-left {
  position: absolute;
  left: clamp(16px, 4vw, 64px);
  bottom: 10px;
  width: clamp(44px, 5vw, 88px);
  aspect-ratio: 1 / 1;
  background-color: var(--yellow-0);
  border-radius: 50%;
}

/* Smaller, delicate Satellite Right Circle at extreme right */
.hero-satellite-right {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  bottom: 35px;
  width: clamp(36px, 4vw, 70px);
  aspect-ratio: 1 / 1;
  background-color: var(--yellow-0);
  border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-standard);
  border: 1px solid transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn:active {
  transform: scale(0.98);
}

.btn-yellow {
  background-color: var(--yellow-0);
  color: #000000;
  border-color: var(--yellow-0);
}

.btn-yellow:hover {
  background-color: var(--yellow-1);
  border-color: var(--yellow-1);
  box-shadow: 0 0 24px rgba(255, 208, 0, 0.4);
}

.btn-outline-yellow {
  background-color: transparent;
  color: var(--yellow-0);
  border-color: var(--yellow-0);
}

.btn-outline-yellow:hover {
  background-color: rgba(255, 208, 0, 0.1);
  color: var(--white-1);
  border-color: var(--yellow-1);
}

/* ==========================================================
   FULL-WIDTH SERVICE BANNERS
   ========================================================== */
.service-banners-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 50;
  background: #000000;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.95);
}

.service-banner {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 32vw, 420px);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(255, 208, 0, 0.15);
}

.service-banner:last-child {
  border-bottom: 1px solid rgba(255, 208, 0, 0.15);
}

.banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.15);
  transition: transform 0.8s var(--ease-standard), filter 0.8s var(--ease-standard);
}

.service-banner:hover .banner-bg-img {
  transform: scale(1.03);
  filter: brightness(0.9) contrast(1.2);
}

.banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  transition: opacity var(--duration-fast) var(--ease-standard);
}

.service-banner:hover .banner-scrim {
  opacity: 0.45;
}

.banner-badge {
  position: relative;
  z-index: 5;
  margin-left: var(--container-pad);
  padding: 12px 28px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 208, 0, 0.35);
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  transition: all var(--duration-fast) var(--ease-standard);
}

.service-banner:hover .banner-badge {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--yellow-0);
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.3);
  transform: translateX(12px);
}

.banner-num {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.2vw, 20px);
  color: var(--yellow-0);
  font-weight: 600;
}

.banner-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--yellow-0);
  letter-spacing: -0.04em;
}

.banner-arrow {
  position: absolute;
  right: var(--container-pad);
  z-index: 5;
  color: var(--yellow-0);
  font-size: clamp(24px, 2.5vw, 44px);
  opacity: 0.6;
  transition: all var(--duration-fast) var(--ease-standard);
}

.service-banner:hover .banner-arrow {
  opacity: 1;
  transform: translate(6px, -6px) scale(1.15);
}

/* ==========================================================
   WORK INDEX & FILTER
   ========================================================== */
.section {
  padding: var(--section-pad) 0;
  position: relative;
  background: #000000;
  z-index: 30;
}

.section-heading {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow-0);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-display-1);
  line-height: var(--leading-tight);
  text-transform: uppercase;
  color: var(--white-1);
  letter-spacing: -0.04em;
}

.section-description {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: var(--leading-normal);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 9999px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--line-0);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
}

.filter-pill:hover {
  border-color: var(--yellow-0);
  color: var(--yellow-0);
}

.filter-pill.active {
  background: var(--yellow-0);
  color: #000000;
  border-color: var(--yellow-0);
  font-weight: 700;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  background: transparent;
}

.work-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--line-0);
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-standard), filter 0.6s var(--ease-standard);
  filter: brightness(0.85) contrast(1.1);
}

.work-card:hover .work-card-img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.15);
}

.work-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-standard);
}

.work-card:hover .work-card-play {
  opacity: 1;
}

.play-badge {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--yellow-0);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: scale(0.85);
  transition: transform var(--duration-fast) var(--ease-standard);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.work-card:hover .play-badge {
  transform: scale(1);
}

.work-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--line-0);
  gap: 12px;
}

.work-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--white-1);
  letter-spacing: -0.04em;
  flex: 1;
}

.work-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-0);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: start;
}

.about-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-display-1);
  line-height: var(--leading-tight);
  text-transform: uppercase;
  color: var(--yellow-0);
  letter-spacing: -0.04em;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--leading-normal);
  color: var(--text-primary);
}

.about-body strong {
  color: var(--yellow-0);
}

.about-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-0);
}

.spec-item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow-0);
  margin-bottom: 6px;
}

.spec-item-value {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================
   CONTACT SECTION
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.contact-meta-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-meta-item a {
  color: var(--yellow-0);
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

.contact-meta-item a:hover {
  opacity: 0.8;
}

/* Direct Contact Action Cards */
.contact-direct-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-action-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-0);
  transition: border-color var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
  text-decoration: none;
  cursor: pointer;
}

.contact-action-card:hover {
  border-color: var(--yellow-0);
  background: rgba(255, 208, 0, 0.04);
  transform: translateY(-2px);
}

.contact-action-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow-0);
}

.contact-action-val {
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.6rem);
  font-weight: 700;
  color: var(--white-1);
  word-break: break-all;
  letter-spacing: -0.01em;
}

.contact-action-btn {
  align-self: flex-start;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.contact-action-card:hover .contact-action-btn {
  transform: translateX(4px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow-0);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-0);
  color: var(--white-1);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow-0);
  background: rgba(255, 208, 0, 0.03);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  padding: 16px;
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid var(--yellow-0);
  color: var(--yellow-0);
  font-family: var(--font-mono);
  font-size: 13px;
  display: none;
}

.form-feedback.success {
  display: block;
}

/* ==========================================================
   REEL LIGHTBOX MODAL
   ========================================================== */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-standard);
}

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

.reel-modal-container {
  width: 100%;
  max-width: 1120px;
  background: #0A0A0B;
  border: 1px solid var(--line-0);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.reel-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-0);
}

.reel-modal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-0);
  display: flex;
  gap: 16px;
}

.reel-modal-close {
  background: none;
  border: 1px solid var(--line-0);
  color: var(--yellow-0);
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-standard);
}

.reel-modal-close:hover {
  background: var(--yellow-0);
  color: #000;
}

.reel-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

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

.reel-modal-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reel-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
}

.reel-progress-fill {
  height: 100%;
  width: 35%;
  background: var(--yellow-0);
}

.reel-control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white-1);
}

.reel-modal-footer {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-0);
  flex-wrap: wrap;
  gap: 16px;
}

.reel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--yellow-0);
}

/* ==========================================================
   FOOTER: INVERTED SUN WORDMARK (Rising Circle on ONE DAY SHOOT)
   ========================================================== */
.footer-sun-section {
  border-top: 1px solid var(--line-0);
  padding: 32px 0 0;
  background: #000000;
  position: relative;
  overflow: hidden;
  z-index: 30;
}

.footer-sub-bar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .footer-sub-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: 20px;
  }
}

.footer-sub-bar a {
  color: var(--yellow-0);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-sub-bar a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-sun-stage {
  position: relative;
  width: 100%;
  height: clamp(160px, 20vw, 260px);
  background: #000000;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-rising-sun {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: clamp(280px, 42vw, 540px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--yellow-0);
  z-index: 1;
  pointer-events: none;
}

.footer-inverted-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 6.8vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--yellow-0);
  mix-blend-mode: difference;
  user-select: none;
  pointer-events: none;
  padding-bottom: clamp(10px, 2vw, 24px);
}

/* ==========================================================
   BULLET HOLE SHOT MARKS (Varying calibers & inverted punch)
   ========================================================== */
.footer-sun-stage {
  cursor: crosshair;
}

.footer-shot-counter {
  color: var(--yellow-0);
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.footer-shot-counter:hover {
  text-shadow: 0 0 10px rgba(255, 208, 0, 0.7);
}

.shot-hole {
  position: absolute;
  border-radius: 50%;
  background-color: var(--yellow-0);
  mix-blend-mode: difference;
  z-index: 5;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

/* Two Clean Satellite Flank Circles */
.shot-flank-l {
  top: 50%;
  left: 7%;
  width: clamp(18px, 2vw, 28px);
  aspect-ratio: 1 / 1;
}

.shot-flank-r {
  top: 52%;
  left: 93%;
  width: clamp(14px, 1.6vw, 22px);
  aspect-ratio: 1 / 1;
}

/* Dynamic Interactive Shot Hole Animation */
.dynamic-shot {
  animation: shotPunch 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.35) forwards;
}

@keyframes shotPunch {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.4;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Comprehensive Responsive System: Tablet & Mobile */
@media (max-width: 1100px) {
  .hero-meta-left {
    left: 2rem;
    font-size: 13px;
    max-width: 180px;
  }
  .hero-meta-right {
    right: 2rem;
    font-size: 12px;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    height: 58px;
    padding: 0;
  }
  .nav-inner {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-brand {
    font-size: 13px;
    font-weight: 700;
  }
  .nav-center-menu {
    display: none !important; /* Hide horizontal nav on mobile */
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-instagram span {
    display: none;
  }
  .nav-instagram {
    padding: 6px;
    font-size: 16px;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }

  .hero-scroll-wrapper {
    position: relative;
    min-height: 100vh;
    height: auto;
    background-color: #000000;
    overflow: visible;
  }
  .hero-pinned-text {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin-bottom: -100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    text-align: center;
  }
  .hero-scroll-track {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    overflow: hidden;
    max-width: 100vw;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero-top-yellow-circle {
    width: clamp(750px, 185vw, 1050px);
    aspect-ratio: 1 / 1;
    margin-top: -12vh;
    border-radius: 50%;
    background-color: var(--yellow-0);
    flex-shrink: 0;
  }
  .hero-brand-title {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
    line-height: 0.88;
    -webkit-text-stroke: 1.2px #000000;
    margin: 0;
  }
  .hero-meta-left {
    display: block !important;
    position: absolute;
    left: 18px;
    top: calc(50% - 110px);
    transform: translateY(-50%);
    max-width: 130px;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    text-align: left;
    letter-spacing: -0.01em;
  }
  .hero-meta-right {
    display: block !important;
    position: absolute;
    right: 18px;
    top: calc(50% - 110px);
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #000000;
    text-align: right;
  }
  .hero-brand-subtitle {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 14px !important;
    font-family: var(--font-body) !important;
    font-size: clamp(10.5px, 2.8vw, 12px) !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    max-width: 340px !important;
    width: 90% !important;
    text-align: center !important;
    -webkit-text-stroke: 0px !important;
    transition: opacity 0.3s var(--ease-standard);
  }
  .hero-satellite-row {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: -35px;
    margin-bottom: 0;
    z-index: 15;
  }
  .service-banners-section {
    position: relative;
    z-index: 30;
    background: #000000;
    margin-top: 0;
    padding-top: 0;
  }
  .hero-satellite-left {
    width: 32px;
    height: 32px;
  }
  .hero-satellite-right {
    width: 26px;
    height: 26px;
    margin: 0;
  }

  /* Full-width banners on mobile */
  .service-banner {
    height: clamp(140px, 25vh, 200px);
  }
  .banner-badge {
    margin-left: 0.75rem;
    padding: 6px 14px;
    gap: 8px;
  }
  .banner-num {
    font-size: 11px;
  }
  .banner-title {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
  }
  .banner-arrow {
    font-size: 1.1rem;
    margin-right: 0.75rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-giant-wordmark {
    font-size: clamp(2.8rem, 12vw, 5rem);
    -webkit-text-stroke: 0.8px var(--yellow-0);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================
   MOBILE MENU TOGGLE & DRAWER
   ========================================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
  transition: border-color var(--duration-fast) ease;
}

.mobile-menu-toggle:hover {
  border-color: var(--yellow-0);
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--white-1);
  transition: transform var(--duration-base) var(--ease-standard), background-color var(--duration-fast);
  transform-origin: center;
}

.mobile-menu-toggle.open .bar-top {
  transform: translateY(4px) rotate(45deg);
  background-color: var(--yellow-0);
}

.mobile-menu-toggle.open .bar-bottom {
  transform: translateY(-4px) rotate(-45deg);
  background-color: var(--yellow-0);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-artdeco);
  font-size: clamp(2rem, 7vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white-1);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--yellow-0);
  transform: translateX(8px);
}

.mobile-nav-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-0);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-meta-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}

.mobile-meta-link:hover {
  color: var(--yellow-0);
}

/* ==========================================================
   WORK CARD ENHANCEMENTS
   ========================================================== */
.work-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-raised);
  border: 1px solid var(--line-0);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-card-overlay {
  opacity: 1;
}

.work-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--yellow-0);
  color: #000;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  transform: scale(0.9);
  transition: transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.work-card:hover .work-play-badge {
  transform: scale(1);
}

.work-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: var(--yellow-0);
  border: 1px solid rgba(255, 208, 0, 0.3);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.work-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white-1);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
}

.work-card-content {
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--line-0);
}

.work-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.work-client {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-0);
}

.work-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}

.work-card-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white-1);
  line-height: 1.3;
  margin-bottom: 4px;
}

.work-card-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
}

/* ==========================================================
   FORM FEEDBACK NOTIFICATION
   ========================================================== */
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.form-feedback.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid var(--yellow-0);
  color: var(--yellow-0);
}

.form-feedback.error {
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid #ff3b30;
  color: #ff6961;
}

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

/* ==========================================================
   BANNER VIDEO ANIMATIONS & CENTER-FOCUS STYLING
   ========================================================== */
.service-banner {
  position: relative;
  width: 100%;
  height: clamp(240px, 34vh, 440px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line-0);
  cursor: pointer;
  background: #000;
}

.banner-video,
.banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-standard), filter 0.6s var(--ease-standard);
  filter: brightness(0.6) contrast(1.15) grayscale(20%);
  pointer-events: none;
}

.service-banner.is-in-view .banner-video,
.service-banner:hover .banner-video {
  filter: brightness(1) contrast(1.18) grayscale(0%);
  transform: scale(1.06);
}

.service-banner.is-in-view .banner-badge,
.service-banner:hover .banner-badge {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--yellow-0);
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.35);
  transform: translateX(12px);
}





/* ==========================================================
   CATEGORY VIDEO GALLERY POPUP MODAL (Fullscreen Disabled)
   ========================================================== */
.category-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}

.category-gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.category-gallery-container {
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  background: #0d0d0d;
  border: 1px solid rgba(255, 208, 0, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 208, 0, 0.1);
  overflow: hidden;
}

.category-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: #141414;
  border-bottom: 1px solid var(--line-0);
}

.gallery-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow-0);
  letter-spacing: 0.1em;
}

.gallery-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white-1);
  letter-spacing: -0.02em;
  margin: 0;
}

.gallery-count-badge {
  padding: 4px 10px;
  background: rgba(255, 208, 0, 0.15);
  border: 1px solid var(--yellow-0);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow-0);
}

.gallery-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-close-btn:hover {
  background: var(--yellow-0);
  color: #000;
  border-color: var(--yellow-0);
  transform: rotate(90deg);
}

.category-gallery-body {
  padding: 28px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-height: calc(90vh - 85px);
}

/* Custom Gallery Video Card */
.gallery-video-card {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.gallery-video-card:hover {
  border-color: rgba(255, 208, 0, 0.4);
  transform: translateY(-3px);
}

.gallery-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.gallery-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Disable native fullscreen controls / buttons */
.gallery-video-element::-webkit-media-controls-fullscreen-button,
.gallery-video-element::-webkit-media-controls-enclosure {
  /* Restrict fullscreen */
}

.gallery-custom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-video-wrapper:hover .gallery-custom-controls {
  opacity: 1;
}

.gallery-ctrl-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-ctrl-btn:hover {
  background: var(--yellow-0);
  color: #000;
  border-color: var(--yellow-0);
}

.gallery-card-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.gallery-card-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-1);
  margin: 0;
  text-transform: capitalize;
}

.gallery-card-duration {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow-0);
}

.gallery-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 4px;
  margin-bottom: 14px;
  flex-grow: 1;
}

.gallery-card-cta {
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--yellow-0);
  border: 1px solid rgba(255, 208, 0, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-card-cta:hover {
  background: var(--yellow-0);
  color: #000;
  border-color: var(--yellow-0);
}

/* ==========================================================
   CATEGORY SHOWCASE PAGE & YELLOW 3-CARD CAROUSEL
   ========================================================== */

/* ==========================================================
   CATEGORY SHOWCASE PAGE & CINEMATIC 3-CARD CAROUSEL
   ========================================================== */
.category-page-body {
  background: #000000;
  color: var(--white-1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Category Page Nav Header */
.category-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.nav-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white-1);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-back-link svg {
  stroke: var(--yellow-0);
  transition: transform 0.2s ease;
}

.nav-back-link:hover {
  color: var(--yellow-0);
}

.nav-back-link:hover svg {
  transform: translateX(-3px);
}

.nav-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.25);
  padding: 5px 14px;
  border-radius: 999px;
}

.nav-cat-badge .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-0);
  box-shadow: 0 0 8px var(--yellow-0);
}

.nav-cat-badge .badge-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow-0);
  text-transform: uppercase;
}

.nav-cat-badge .badge-section {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}

.category-showcase-main {
  flex-grow: 1;
  padding: 100px 48px 60px;
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1920px) {
  .category-showcase-main {
    max-width: 1920px;
    padding: 110px 64px 70px;
  }
}

.category-showcase-header {
  margin-bottom: 28px;
}

.category-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  text-transform: uppercase;
  color: var(--yellow-0);
  margin: 0 0 10px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.category-main-desc {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.15vw, 16px);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.45;
}

/* CAROUSEL WRAPPER (Desktop: Wide 3-Card Yellow Cinema Frame) */
.showcase-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 24px 0 36px;
  padding: 0 56px;
}

.yellow-carousel-frame {
  position: relative;
  background: var(--yellow-0);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 208, 0, 0.15);
  overflow: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d0d0d;
  border: 1.5px solid rgba(255, 208, 0, 0.4);
  color: var(--yellow-0);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-arrow svg {
  stroke: var(--yellow-0);
  transition: stroke 0.25s ease;
}

.carousel-arrow:hover {
  background: var(--yellow-0);
  border-color: var(--yellow-0);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 25px rgba(255, 208, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.carousel-arrow:hover svg {
  stroke: #000000;
}

.arrow-prev {
  left: 0px;
}

.arrow-next {
  right: 0px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Portrait Film Card */
.film-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #000000;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.film-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.film-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
}

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

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

.film-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.film-card:hover .film-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.45);
}

.film-play-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow-0);
  color: #000;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 208, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
}

.film-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 208, 0, 0.65);
  opacity: 0;
  transform: scale(0.8) rotate(0deg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.film-card:hover .film-play-btn {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 208, 0, 0.6);
}

.film-card:hover .film-play-btn::before {
  opacity: 1;
  transform: scale(1.1) rotate(90deg);
}

.film-meta {
  padding: 12px 16px;
  background: #0d0d0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.film-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  color: var(--white-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 8px;
}

.film-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow-0);
  flex-shrink: 0;
}

/* Mobile Slide Pagination (Hidden on Desktop) */
.mobile-carousel-controls {
  display: none;
}

.category-switcher-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.category-switch-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  gap: 4px;
  transition: color 0.2s ease;
}

.category-switch-link .switch-name {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--yellow-0);
  transition: transform 0.2s ease;
}

.category-switch-link:hover .switch-name {
  transform: translateX(4px);
  text-decoration: underline;
}

/* ==========================================================
   ADVANCED VIDEO FOCUS MODAL (Cinema Box Player)
   ========================================================== */
.video-focus-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-focus-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.focus-backdrop,
.video-focus-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.focus-player-box,
.video-focus-dialog {
  position: relative;
  z-index: 10;
  width: min(86vw, 1800px);
  max-width: min(86vw, 1800px);
  max-height: 92vh;
  background: #0d0d0d;
  border: 1.5px solid rgba(255, 208, 0, 0.4);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 208, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.focus-top-bar,
.video-focus-topbar {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
}

.focus-meta-tag,
.video-focus-title-wrap {
  display: none !important;
}

.focus-pill,
.video-focus-tag {
  display: none !important;
}

.focus-film-title,
.video-focus-title {
  display: none !important;
}

.focus-close-btn,
.video-focus-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.focus-close-btn:hover,
.video-focus-close:hover {
  background: var(--yellow-0);
  border-color: var(--yellow-0);
  color: #000;
  transform: rotate(90deg);
}

.focus-close-btn svg,
.video-focus-close svg {
  stroke: currentColor;
}

.focus-screen-container,
.video-focus-screen {
  position: relative;
  width: 100%;
  height: clamp(380px, 68vh, 920px);
  max-height: calc(90vh - 130px);
  min-height: 320px;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
}

.focus-screen-container video,
.video-focus-screen video,
#focusVideoElem {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, filter 0.25s ease;
  will-change: transform, opacity, filter;
}

.focus-screen-container.is-dragging video,
#focusVideoElem.is-dragging {
  transition: none !important;
}

/* In-Player Swipe Hint Pill */
.video-swipe-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(12, 12, 12, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 208, 0, 0.45);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.75), 0 0 20px rgba(255, 208, 0, 0.2);
  border-radius: 24px;
  color: var(--yellow-0);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 25;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.video-swipe-hint.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.video-swipe-hint.fade-out {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(8px) !important;
  transition: opacity 0.45s ease, transform 0.45s ease !important;
}

.swipe-hint-chevrons {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--yellow-0);
}

.swipe-hint-chevrons.left {
  animation: swipeNudgeLeft 1.4s ease-in-out infinite;
}

.swipe-hint-chevrons.right {
  animation: swipeNudgeRight 1.4s ease-in-out infinite;
}

@keyframes swipeNudgeLeft {
  0%, 100% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(-4px); opacity: 1; }
}

@keyframes swipeNudgeRight {
  0%, 100% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(4px); opacity: 1; }
}

/* Interactive Edge Drag Indicators (appear dynamically during touch drag) */
.focus-edge-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.focus-edge-indicator.left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 208, 0, 0.32), transparent);
}

.focus-edge-indicator.right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 208, 0, 0.32), transparent);
}

.focus-edge-indicator svg {
  color: var(--yellow-0);
  filter: drop-shadow(0 0 10px rgba(255, 208, 0, 0.85));
}

/* Shutter flash overlay for cinematic film transition */
.focus-shutter-flash {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
  z-index: 18;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.focus-shutter-flash.active {
  opacity: 0.45;
}

/* Stylized Navigation Chevrons (Outside Player on Desktop) */
.video-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.video-nav-prev {
  left: max(16px, calc(50% - (min(86vw, 1800px) * 0.5) - 76px));
}

.video-nav-next {
  right: max(16px, calc(50% - (min(86vw, 1800px) * 0.5) - 76px));
}

.video-nav-arrow:hover {
  background: var(--yellow-0);
  border-color: var(--yellow-0);
  color: #000000;
  box-shadow: 0 0 35px rgba(255, 208, 0, 0.6), 0 14px 32px rgba(0, 0, 0, 0.85);
}

.video-nav-prev:hover {
  transform: translateY(-50%) translateX(-4px) scale(1.08);
}

.video-nav-next:hover {
  transform: translateY(-50%) translateX(4px) scale(1.08);
}

.video-nav-arrow svg {
  stroke: currentColor;
  transition: stroke 0.2s ease;
}

/* Dedicated Mobile Nav Bar: hidden on desktop */
.modal-mobile-nav-bar {
  display: none;
}

.screen-play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 208, 0, 0.5);
  z-index: 15;
}

/* Controls Bar */
.video-focus-controls {
  padding: 10px 16px;
  background: #111111;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.player-controls-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.player-controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.player-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--yellow-0);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.player-btn:hover {
  background: var(--yellow-0);
  color: #000000;
  border-color: var(--yellow-0);
}

.player-btn svg {
  fill: currentColor;
}

.player-time-display {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 36px;
}

.player-clip-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow-0);
  letter-spacing: 0.08em;
  padding: 2px 7px;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.32);
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}

.player-scrubber-track {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: height 0.15s ease;
}

.player-scrubber-track:hover {
  height: 8px;
}

.player-scrubber-progress {
  height: 100%;
  background: var(--yellow-0);
  width: 0%;
  position: relative;
  transition: width 0.08s linear;
}

.player-volume-wrapper,
.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.player-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.player-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow-0);
  cursor: pointer;
  box-shadow: 0 0 6px var(--yellow-0);
}

.player-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow-0);
  cursor: pointer;
  border: none;
}

.video-focus-footer {
  padding: 12px 18px;
  background: #141414;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-focus-desc {
  display: none !important;
}

.player-hotkeys-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.hotkey-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1px 5px;
  border-radius: 2px;
  color: var(--yellow-0);
  font-weight: 700;
}

.focus-book-btn,
#focusBookBtn {
  background: rgba(18, 18, 18, 0.88) !important;
  color: var(--yellow-0) !important;
  border: 1px solid rgba(255, 208, 0, 0.42) !important;
  padding: 8px 18px;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 208, 0, 0.08);
}

.focus-book-btn:hover,
#focusBookBtn:hover {
  background: rgba(255, 208, 0, 0.12) !important;
  border-color: var(--yellow-0) !important;
  color: var(--yellow-0) !important;
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
}

/* ==========================================================
   MOBILE RESPONSIVE (Clean Header & Native Snap Swipe Carousel)
   ========================================================== */
@media (max-width: 768px) {
  /* 1. Header Simplification */
  .category-nav-inner {
    padding: 0 4px;
    gap: 8px;
  }
  
  .nav-back-link {
    font-size: 13px;
  }
  
  .nav-cat-badge {
    padding: 4px 10px;
    gap: 6px;
  }
  
  .nav-cat-badge .badge-section {
    display: none; /* Hide [ SECTION 0X ] on mobile to prevent crowding */
  }
  
  .nav-cat-badge .badge-text {
    font-size: 10px;
  }
  
  .nav-actions .btn {
    padding: 5px 12px !important;
    font-size: 10px !important;
  }

  /* 2. Main Container */
  .category-showcase-main {
    padding: 76px 16px 40px;
  }
  
  .category-showcase-header {
    margin-bottom: 20px;
  }
  
  .category-main-title {
    font-size: 2.5rem;
    margin-bottom: 6px;
  }
  
  .category-main-desc {
    font-size: 13px;
  }

  /* 3. Mobile Native Touch Carousel (No heavy box, sleek snap swipe) */
  .showcase-carousel-wrapper {
    padding: 0;
    margin: 16px 0 24px;
  }
  
  .yellow-carousel-frame {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  
  .carousel-arrow {
    display: none !important; /* Hide floating side arrows on mobile */
  }
  
  .carousel-track {
    display: flex;
    gap: 14px;
    padding: 6px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .film-card {
    flex: 0 0 78vw;
    max-width: 290px;
    min-width: unset;
    scroll-snap-align: center;
    border: 1.5px solid rgba(255, 208, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 208, 0, 0.08);
  }
  
  .film-card-inner {
    aspect-ratio: 9 / 15;
  }
  
  .film-meta {
    padding: 10px 12px;
  }
  
  .film-name {
    font-size: 12px;
  }
  
  .film-time {
    font-size: 10px;
  }

  /* 4. Bottom Mobile Slider Controls (Prev, Counter, Next) */
  .mobile-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 6px;
  }
  
  .mobile-ctrl-btn,
  .mobile-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111111;
    border: 1px solid rgba(255, 208, 0, 0.35);
    color: var(--yellow-0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .mobile-ctrl-btn svg,
  .mobile-carousel-btn svg {
    stroke: var(--yellow-0);
  }
  
  .mobile-slide-counter {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow-0);
    letter-spacing: 0.1em;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
  }

  /* 5. Modal on Mobile: Immersive Fullscreen Edge-to-Edge Theater */
  .video-focus-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-width: 100vw !important;
    max-height: 100dvh !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    z-index: 99999 !important;
    overflow: hidden !important;
  }
  
  .video-focus-dialog,
  .focus-player-box {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: #000000 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
  }
  
  .focus-top-bar,
  .video-focus-topbar {
    position: absolute !important;
    top: calc(12px + env(safe-area-inset-top, 0px)) !important;
    right: 16px !important;
    z-index: 60 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  
  .focus-close-btn,
  .video-focus-close {
    width: 44px !important;
    height: 44px !important;
    background: rgba(20, 20, 20, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6) !important;
  }
  
  /* 1. Video Nav Arrows: hide floating desktop circles on mobile */
  .video-nav-arrow {
    display: none !important;
  }
  
  /* Screen Container: occupies all available central viewport height */
  .focus-screen-container,
  .video-focus-screen {
    flex: 1 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    touch-action: none !important;
    overflow: hidden !important;
  }
  
  .focus-video-elem {
    width: 100% !important;
    max-width: 100vw !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }

  /* 2. Dedicated Mobile Film Navigation Bar */
  .modal-mobile-nav-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 2px !important;
    gap: 10px !important;
  }
  
  .mobile-nav-film-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
  }
  
  .mobile-nav-film-btn svg {
    stroke: currentColor;
    flex-shrink: 0;
  }
  
  .mobile-nav-film-btn:active {
    background: var(--yellow-0);
    color: #000000;
    border-color: var(--yellow-0);
  }
  
  .mobile-nav-counter {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--yellow-0);
    letter-spacing: 0.1em;
    padding: 8px 12px;
    background: rgba(255, 208, 0, 0.08);
    border: 1px solid rgba(255, 208, 0, 0.28);
    border-radius: 4px;
    white-space: nowrap;
    user-select: none;
  }
  
  .video-focus-title {
    display: none !important;
  }
  
  /* Hide upper counter on mobile since it is prominently displayed in the dedicated nav bar below */
  .player-clip-counter {
    display: none !important;
  }
  
  .video-focus-controls {
    flex-shrink: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.98) 100%) !important;
    border-top: none !important;
    padding: 8px 18px 6px !important;
    gap: 10px !important;
    z-index: 30 !important;
  }
  
  .player-volume-slider {
    width: 45px;
  }
  
  .video-focus-footer {
    flex-shrink: 0 !important;
    background: #000000 !important;
    border-top: none !important;
    padding: 4px 18px calc(14px + env(safe-area-inset-bottom, 12px)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    z-index: 30 !important;
  }
  
  .player-hotkeys-hint {
    display: none !important;
  }
  
  .video-focus-desc {
    display: none !important;
  }
  
  .focus-book-btn,
  #focusBookBtn {
    text-align: center;
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    border-radius: 6px !important;
    background: rgba(18, 18, 18, 0.92) !important;
    color: var(--yellow-0) !important;
    border: 1px solid rgba(255, 208, 0, 0.4) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  }
  
  .focus-book-btn:active,
  #focusBookBtn:active {
    background: rgba(255, 208, 0, 0.16) !important;
    border-color: var(--yellow-0) !important;
    transform: scale(0.985);
  }
}


/* ==========================================================
   CINEMATIC VIEWFINDER HUD & INTERACTION UPGRADES
   ========================================================== */

/* Hero Viewfinder HUD */
.hero-viewfinder-hud {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .hero-viewfinder-hud {
    inset: 32px;
  }
}

.hud-top-row,
.hud-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hud-item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rec-indicator {
  color: #ff3b30;
  border-color: rgba(255, 59, 48, 0.3);
}

.rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
  animation: recPulse 1.2s infinite ease-in-out;
}

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

.hud-reticle-tl, .hud-reticle-tr, .hud-reticle-bl, .hud-reticle-br {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(255, 208, 0, 0.35);
  pointer-events: none;
}

.hud-reticle-tl { top: 0; left: 0; border-top: 1.5px solid; border-left: 1.5px solid; }
.hud-reticle-tr { top: 0; right: 0; border-top: 1.5px solid; border-right: 1.5px solid; }
.hud-reticle-bl { bottom: 0; left: 0; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.hud-reticle-br { bottom: 0; right: 0; border-bottom: 1.5px solid; border-right: 1.5px solid; }

@media (max-width: 768px) {
  .hud-top-row .hud-item:nth-child(2),
  .hud-bottom-row .hud-item:nth-child(2) {
    display: none;
  }
  .hero-viewfinder-hud {
    inset: 12px;
  }
}

/* 2. Spotlight Dimming on Service Banners */
.service-banners-section {
  position: relative;
}

@media (hover: hover) and (min-width: 1024px) {
  .service-banners-section:hover .service-banner:not(:hover) {
    opacity: 0.35;
    filter: brightness(0.6) grayscale(0.3);
    transform: scale(0.995);
  }
  .service-banner {
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  }
}

/* 3. Filter Pill Counters */
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-count {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.7;
  color: currentColor;
}

.filter-pill.active .pill-count {
  opacity: 1;
  font-weight: 700;
}

/* 4. Work Card Hover Video Teaser */
.work-card-media {
  position: relative;
  overflow: hidden;
}

.work-card-video-teaser {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.work-card:hover .work-card-video-teaser {
  opacity: 1;
}

/* 5. Player Keyboard Hints Bar */
.player-hotkeys-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.hotkey-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1px 5px;
  border-radius: 2px;
  color: var(--yellow-0);
  font-weight: 700;
}

@media (max-width: 768px) {
  .player-hotkeys-hint {
    display: none;
  }
}


/* Commercial Banner Framing (Avoid clipping head) */
.service-banner[data-category="Commercial"] .banner-video,
.service-banner[data-category="Commercial"] .banner-bg-img {
  object-position: center 25% !important;
}

/* Category Page Backdrop Clickable Return */
.category-page-body {
  cursor: default;
}

.category-showcase-header {
  cursor: pointer;
  user-select: none;
}


/* ==========================================================
   ABOUT: EDITORIAL MANIFESTO & CAPABILITIES (REALITY, RE-FRAMED)
   ========================================================== */
.about-section {
  padding: clamp(60px, 10vw, 120px) 0;
  background-color: #000000;
  position: relative;
  z-index: 40;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: clamp(36px, 5vw, 60px);
}

.about-title-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-manifesto-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-author-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.about-author-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow-0);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-author-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #9E9B95;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Cinematic Viewfinder Portrait Frame */
.about-portrait-wrap {
  margin-top: 8px;
  width: 100%;
}

.about-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 6px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85), 0 0 32px rgba(255, 208, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-portrait-frame:hover {
  border-color: rgba(255, 208, 0, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 208, 0, 0.12);
}

.about-portrait-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
  filter: contrast(1.04) brightness(0.98);
}

.about-portrait-frame:hover .about-portrait-img {
  transform: scale(1.025);
  filter: contrast(1.06) brightness(1.02);
}

.about-portrait-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--yellow-0);
  pointer-events: none;
  z-index: 5;
}

.about-portrait-corner.tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.about-portrait-corner.tr { top: 10px; right: 10px; border-top: 2px solid; border-right: 2px solid; }
.about-portrait-corner.bl { bottom: 42px; left: 10px; border-bottom: 2px solid; border-left: 2px solid; }
.about-portrait-corner.br { bottom: 42px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }

.about-portrait-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
}

.hud-tag {
  color: var(--yellow-0);
  font-weight: 700;
}

.hud-status {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.hud-rec-dot {
  width: 6px;
  height: 6px;
  background: #FF3B30;
  border-radius: 50%;
  display: inline-block;
  animation: hudPulse 1.8s ease-in-out infinite;
}

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

.about-lead {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white-1);
}

.about-paragraph {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

.text-highlight {
  color: var(--yellow-0);
  font-weight: 800;
}

.about-title-large {
  font-family: var(--font-display);
  font-size: var(--text-display-1);
  font-weight: 800;
  line-height: var(--leading-tight);
  text-transform: uppercase;
  color: var(--yellow-0);
  letter-spacing: -0.04em;
}

.about-manifesto-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 860px;
}

.about-manifesto-lead {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.35;
}

.about-punchline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 18px;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid var(--yellow-0);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow-0);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.capability-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--yellow-0);
  border-radius: 6px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 208, 0, 0.4);
}

.capability-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow-0);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.capability-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-capabilities-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   VIDEO FOCUS MODAL SIZING & BOTTOM CATEGORY SWITCHER
   ========================================================== */
.focus-player-box {
  width: min(86vw, 1800px);
  max-width: min(86vw, 1800px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

#focusVideoElem {
  max-height: calc(90vh - 130px);
  object-fit: contain;
}

.carousel-arrow {
  width: 62px;
  height: 62px;
  border: 2px solid var(--yellow-0);
  background: #000000;
  border-radius: 50%;
}

.carousel-arrow svg {
  width: 26px;
  height: 26px;
  stroke: var(--yellow-0);
}

.film-meta {
  display: none !important;
}

.category-switch-bar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px 0 16px !important;
  margin-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

a.cat-switch-link,
a.cat-switch-link:link,
a.cat-switch-link:visited,
a.cat-switch-link:hover,
a.cat-switch-link:active {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: #FFFFFF !important;
  gap: 4px !important;
  cursor: pointer !important;
}

.cat-switch-meta {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  color: #9E9B95 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.cat-switch-title {
  font-family: var(--font-primary) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #FFD000 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

a.cat-switch-link:hover .cat-switch-title {
  transform: translateX(5px) !important;
  color: #FFFFFF !important;
}

.cat-switch-dots {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.cat-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid transparent !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}

.cat-dot.active {
  background: #FFD000 !important;
  box-shadow: 0 0 12px #FFD000 !important;
  transform: scale(1.25) !important;
}

/* ==========================================================
   GLOBAL CROSSHAIR CURSOR (Desktop / Pointer Devices)
   ========================================================== */
@media (hover: hover) and (pointer: fine) {
  html, body, 
  .hero-scroll-wrapper, .hero-scroll-track, .hero-top-yellow-circle,
  .hero-pinned-text, .footer-sun-stage, .section-dark, .about-section,
  .contact-section, .services-section, .carousel-stage, .focus-player-box {
    cursor: crosshair !important;
  }

  /* Interactive clickable elements maintain standard pointer cursor */
  a, button, input, select, textarea, [role="button"],
  .nav-center-link, .nav-instagram, .mobile-menu-toggle,
  .service-banner, .film-card, .btn, .focus-book-btn,
  .player-btn, .mobile-nav-film-btn, .player-scrubber-track,
  .player-volume-slider, .focus-close-btn, .video-nav-arrow,
  .footer-shot-counter, .mobile-meta-link, .cat-switch-link {
    cursor: pointer !important;
  }

  input[type="text"], input[type="email"], textarea {
    cursor: text !important;
  }
}
