/* ═══════════════════════════════════════════════
   DTS STUDIOS — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. THEME VARIABLES
   ───────────────────────────────────────────── */
:root {
  --red: #C8211A;
  --rdim: rgba(200, 33, 26, 0.13);
}

[data-theme="dark"] {
  --bg: #030303;
  --bg2: #0a0a0a;
  --bg3: #111;
  --bg4: #181818;
  --tx: #F7F2EC;
  --td: #a3a3a3;
  --tb: #bdbdbd;
  --ts: #d2cec8;
  --tdm: #3a3a3a;
  --bo: rgba(255, 255, 255, 0.05);
  --bm: rgba(255, 255, 255, 0.1);
  --cb: rgba(255, 255, 255, 0.018);
  --tkb: #0a0a0a;
  --sh: rgba(0, 0, 0, 0.8);
  --no: 0.032;
}

[data-theme="light"] {
  --bg: #EDE8D6;
  --bg2: #E2DCCA;
  --bg3: #D5CFB8;
  --bg4: #C9C2A8;
  --tx: #141414;
  --td: #4a4438;
  --tb: #3a352c;
  --ts: #2a261f;
  --tdm: #9c9486;
  --bo: rgba(0, 0, 0, 0.07);
  --bm: rgba(0, 0, 0, 0.13);
  --cb: rgba(0, 0, 0, 0.02);
  --tkb: #E2DCCA;
  --sh: rgba(0, 0, 0, 0.1);
  --no: 0.016;
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--tx);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s, color 0.5s;
}

/* @media (max-width: 768px) {
  body {
    cursor: auto;
  }
} */

img {
  display: block;
  max-width: 100%;
}

/* ─────────────────────────────────────────────
   3. GRAIN OVERLAY
   ───────────────────────────────────────────── */
#grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9997;
  pointer-events: none;
  opacity: var(--no);
}

/* ─────────────────────────────────────────────
   4. PROGRESS BAR
   ───────────────────────────────────────────── */
#prog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff7272, var(--red));
  background-size: 200%;
  z-index: 10000;
  width: 0%;
  animation: pgS 2s linear infinite;
}

@keyframes pgS {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

/* ─────────────────────────────────────────────
   5. CURSOR
   ───────────────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  will-change: transform;
  transition: opacity 0.2s;
}

@media (max-width: 768px) {
  #cursor {
    display: none;
  }
}

#cursor .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #888;
  transition: background 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

#cursor .dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: dot-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

#cursor.hover .dot {
  background: var(--red);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(200, 33, 26, 0.6);
}

#cursor.hover .dot::after {
  border-color: var(--red);
  animation: dot-pulse-hot 1.2s ease-out infinite;
}

#cursor .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #888;
  transition: color 0.25s, opacity 0.25s;
}

#cursor.hover .label {
  color: var(--red);
}

#cursor.text .dot {
  width: 2px;
  height: 18px;
  border-radius: 1px;
  background: var(--tx);
}

#cursor.text .label {
  opacity: 0;
}

@keyframes dot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes dot-pulse-hot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

#cursor .ripple {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

#cursor.click .ripple {
  animation: ripple-out 0.55s ease-out;
}

@keyframes ripple-out {
  0% {
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 0;
    width: 70px;
    height: 70px;
  }
}

#cursor .timecode {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--red);
  background: rgba(0, 0, 0, 0.88);
  padding: 3px 8px;
  border: 1px solid rgba(200, 33, 26, 0.35);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
}

#cursor.idle .timecode {
  opacity: 0.92;
}

[data-theme="light"] #cursor .dot {
  background: #9a9a9a;
}
[data-theme="light"] #cursor.text .dot {
  background: #1a1a1a;
}
[data-theme="light"] #cursor .label {
  color: #5F5849;
}
[data-theme="light"] #cursor .timecode {
  background: rgba(237, 232, 214, 0.95);
  color: #E8251D;
  border-color: rgba(232, 37, 32, 0.4);
}

/* ─────────────────────────────────────────────
   6. SCROLL TIMECODE
   ───────────────────────────────────────────── */
#sctc {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

@media (max-width: 1024px) {
  #sctc {
    display: none;
  }
}

#sctc .tctr {
  width: 1px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

[data-theme="light"] #sctc .tctr {
  background: rgba(0, 0, 0, 0.12);
}

#sctc .tctr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: var(--p, 0%);
  background: var(--red);
  transition: height 0.15s;
  box-shadow: 0 0 8px rgba(200, 33, 26, 0.5);
}

#sctc .tcv {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--red);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}

#sctc .tcd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: tcd-pulse 1.8s ease-in-out infinite;
}

@keyframes tcd-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

/* ─────────────────────────────────────────────
   7. NAVIGATION
   ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}

nav.sc {
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 13px 6vw;
  border-bottom: 1px solid rgba(200, 33, 26, 0.09);
}

[data-theme="light"] nav.sc {
  background: rgba(237, 232, 214, 0.95);
}

.nl img {
  height: 40px;
  width: auto;
}

.nlinks {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nlinks a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--td);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nlinks a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s;
}

.nlinks a:hover {
  color: var(--tx);
}

.nlinks a:hover::after {
  width: 100%;
}

.nr {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tt {
  width: 50px;
  height: 27px;
  background: var(--bg3);
  border: 1px solid var(--bm);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.tt::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--red);
  transition: transform 0.3s;
}

[data-theme="light"] .tt::before {
  transform: translateX(22px);
}

.ttic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  pointer-events: none;
}

.ttic svg {
  width: 11px;
  height: 11px;
}

.tti-moon {
  stroke: rgba(255,255,255,0.5);
  transition: stroke 0.3s;
}

.tti-sun {
  stroke: rgba(255,255,255,0.25);
  transition: stroke 0.3s;
}

[data-theme="light"] .tti-moon {
  stroke: rgba(0,0,0,0.2);
}

[data-theme="light"] .tti-sun {
  stroke: rgba(0,0,0,0.55);
}

.ncta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tx);
  text-decoration: none;
  border: 1.5px solid var(--red);
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.ncta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.ncta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.ncta:hover {
  color: #fff;
}

.ncta span {
  position: relative;
  z-index: 1;
}

/* Hamburger & mobile menu */
.hamb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamb span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--tx);
  transition: all 0.3s;
}

.hamb.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamb.open span:nth-child(2) {
  opacity: 0;
}

.hamb.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 3, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 56px);
  color: var(--tx);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color 0.2s;
}

.mob-menu a:hover {
  color: var(--red);
}

/* ─────────────────────────────────────────────
   8. HERO
   ───────────────────────────────────────────── */

/* --- Intro Logo --- */

/* Letterbox bars — cinema curtain effect */
.intro-letterbox {
  position: absolute;
  left: 0;
  right: 0;
  height: 52%;
  background: var(--bg);
  z-index: 10;
  pointer-events: none;
}

.intro-letterbox--top {
  top: 0;
  transform-origin: top;
  animation: letterboxOpenT 1s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}

.intro-letterbox--bottom {
  bottom: 0;
  transform-origin: bottom;
  animation: letterboxOpenB 1s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}

@keyframes letterboxOpenT {
  0%   { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

@keyframes letterboxOpenB {
  0%   { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* Projector beam */
.intro-beam {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 45%, rgba(200,33,26,0.07) 0%, transparent 55%),
    conic-gradient(from 8deg at 50% 45%, transparent 30%, rgba(255,255,255,0.06) 33%, transparent 36%);
  animation: beamPulse 1.5s ease-out 0.3s forwards;
}

@keyframes beamPulse {
  0%   { opacity: 0; transform: scale(0.3); }
  15%  { opacity: 1; transform: scale(1.15); }
  30%  { opacity: 0.7; transform: scale(0.95); }
  45%  { opacity: 0.9; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}

/* Anamorphic lens flare */
.intro-flare {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 38%;
  height: 3px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(120,180,255,0.3) 20%, rgba(200,220,255,0.6) 36%, rgba(255,255,255,0.9) 48%, rgba(200,220,255,0.6) 60%, rgba(120,180,255,0.3) 80%, transparent 100%);
  box-shadow: 0 0 8px rgba(160,200,255,0.5), 0 0 24px rgba(100,160,255,0.2);
  opacity: 0;
  animation: flareSweep 1.2s ease-out 0.5s forwards;
}

@keyframes flareSweep {
  0%   { opacity: 0; transform: translateX(-100%) scaleY(1); }
  15%  { opacity: 1; transform: translateX(-30%) scaleY(3); }
  30%  { opacity: 1; transform: translateX(20%) scaleY(2); }
  50%  { opacity: 0.8; transform: translateX(70%) scaleY(1.5); }
  100% { opacity: 0; transform: translateX(120%) scaleY(1); }
}

/* Film sprocket strips */
.intro-sprocket {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 11px,
    rgba(200,33,26,0.35) 11px,
    rgba(200,33,26,0.35) 15px
  );
  opacity: 0;
  animation: sprocketIn 0.8s ease-out 0.6s forwards;
}

.intro-sprocket--left {
  left: clamp(20px, 2.6vw, 40px);
}

.intro-sprocket--right {
  right: clamp(20px, 2.6vw, 40px);
}

@keyframes sprocketIn {
  0%   { opacity: 0; }
  100% { opacity: 0.55; }
}

/* Main logo */
.intro-logo {
  width: clamp(360px, 52vw, 920px);
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: scale(0.85);
  animation: introLogoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  will-change: transform, opacity, filter;
  filter: blur(8px) brightness(0.4);
}

@keyframes introLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px) brightness(0.4);
  }
  18% {
    opacity: 1;
    filter: blur(8px) brightness(1.8);
  }
  35% {
    filter: blur(2px) brightness(1.3);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0) brightness(1.15);
  }
  80% {
    transform: scale(0.98);
    filter: blur(0) brightness(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1);
  }
}

/* Light sweep across the logo */
.intro-light-sweep {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  filter: blur(8px);
  opacity: 0;
  animation: lightSweep 0.7s ease-out 1.3s forwards;
}

@keyframes lightSweep {
  0%   { left: -10%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Scan line (adjusted timing) */
.intro-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  z-index: 4;
  opacity: 0;
  box-shadow: 0 0 18px rgba(200, 33, 26, 0.6);
  animation: introScan 2s ease-in-out 1.6s forwards;
  pointer-events: none;
}

@keyframes introScan {
  0% {
    top: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Frame corners (adjusted timing) */
.intro-frame {
  position: absolute;
  inset: clamp(40px, 7vh, 86px) 6vw;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: introFrameIn 0.8s ease 2s forwards;
}

.intro-frame::before,
.intro-frame::after {
  content: '';
  position: absolute;
  width: clamp(20px, 2.6vw, 34px);
  height: clamp(20px, 2.6vw, 34px);
  border-color: rgba(200, 33, 26, 0.6);
  border-style: solid;
}

.intro-frame::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.intro-frame::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

@keyframes introFrameIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .intro-logo {
    animation-duration: 0.9s;
  }
  .intro-frame {
    inset: 32px 20px;
  }
  .intro-sprocket {
    display: none;
  }
  .intro-light-sweep {
    display: none;
  }
}

/* --- Hero Section --- */
#hero {
  height: 80svh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
}

.hvid {
  position: absolute;
  inset: 0;
}

.hvid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.28);
  transition: filter 1s;
}

[data-theme="light"] .hvid video {
  filter: saturate(0.35) brightness(0.52);
}

.hvign {
  display: none;
}

.hgrad {
  display: none;
}

.hgrid {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hscan {
  display: none;
}

.hcorner {
  position: absolute;
  z-index: 3;
  width: clamp(22px, 3vw, 36px);
  height: clamp(22px, 3vw, 36px);
  border-color: rgba(200, 33, 26, 0.7);
  border-style: solid;
}

.hcorner.tl {
  top: clamp(74px, 10vh, 94px);
  left: 6vw;
  border-width: 2px 0 0 2px;
}

.hcorner.tr {
  top: clamp(74px, 10vh, 94px);
  right: 6vw;
  border-width: 2px 2px 0 0;
}

.hcorner.bl {
  bottom: clamp(58px, 9vh, 112px);
  left: 6vw;
  border-width: 0 0 2px 2px;
}

.hcorner.br {
  bottom: clamp(58px, 9vh, 112px);
  right: 6vw;
  border-width: 0 2px 2px 0;
}

.hrec {
  position: absolute;
  top: clamp(78px, 10.5vh, 98px);
  right: calc(6vw + 46px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 0.7vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.recdot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: rb 1.5s ease-in-out infinite;
}

@keyframes rb {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(200, 33, 26, 0.7);
  }
  50% {
    opacity: 0.2;
    box-shadow: 0 0 0 7px rgba(200, 33, 26, 0);
  }
}

.hwm {
  display: none;
}

/* Hero content */
.hc {
  position: relative;
  z-index: 4;
}

.hey {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.4vw, 18px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(18px, 2.5vh, 30px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hey::before {
  content: '';
  width: clamp(28px, 3.5vw, 44px);
  height: 1px;
  background: var(--red);
}

.ht {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(66px, 11vw, 176px);
  line-height: 0.86;
  color: var(--tx);
  letter-spacing: -1.5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.htl {
  display: block;
}

.red {
  color: var(--red);
}

.ht .red {
  text-shadow: 0 0 38px rgba(200, 33, 26, 0.35);
}

.hc {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
}

.hc-left {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .hc-right {
    position: absolute;
    right: 6vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: 480px;
    z-index: 4;
  }
}

.hs {
  font-size: clamp(21px, 1.95vw, 27px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--td);
  max-width: 580px;
}

.hb {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-r {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tx);
  border: 1.5px solid var(--bm);
  padding: clamp(14px, 2vh, 20px) clamp(28px, 3.5vw, 46px);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-r:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-o {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tx);
  border: 1.5px solid var(--bm);
  padding: clamp(14px, 2vh, 20px) clamp(28px, 3.5vw, 46px);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-o:hover {
  border-color: var(--red);
  color: var(--red);
}

.ctbtns .btn-r,
.ctbtns .btn-o {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.ctbtns .btn-r:hover,
.ctbtns .btn-o:hover {
  background: #fff;
  border-color: #fff;
  color: var(--red);
}

/* Scroll indicator */
.hscr {
  position: absolute;
  bottom: clamp(14px, 2.5vh, 30px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  opacity: 0;
  animation: fu 0.8s 2s forwards;
}

.hscr span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 0.7vw, 12px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--td);
}

.sln {
  width: 1px;
  height: clamp(40px, 5vh, 56px);
  background: var(--bo);
  position: relative;
  overflow: hidden;
}

.sln::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: slnA 2s ease-in-out infinite;
}

@keyframes slnA {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

/* ─────────────────────────────────────────────
   9. STATS BAR
   ───────────────────────────────────────────── */
.stbar {
  background: var(--red);
  padding: clamp(16px, 2.2vh, 26px) 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.stbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.04) 20px,
    rgba(0, 0, 0, 0.04) 40px
  );
}

.si {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.sn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.8vw, 68px);
  color: #fff;
  line-height: 1;
}

.ss {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.6);
}

.sl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  max-width: 150px;
  line-height: 1.3;
}

.sdv {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ─────────────────────────────────────────────
   10. TICKER
   ───────────────────────────────────────────── */
.tw {
  overflow: hidden;
  border-top: 1px solid var(--bo);
  border-bottom: 1px solid var(--bo);
  padding: clamp(13px, 1.8vh, 20px) 0;
  background: var(--tkb);
}

.ti {
  display: flex;
  width: max-content;
  animation: tk 30s linear infinite;
}

@keyframes tk {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 1.6vw, 21px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--td);
  white-space: nowrap;
  padding: 0 clamp(20px, 2.5vw, 36px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.tit::after {
  content: '✦';
  color: var(--red);
  font-size: 0.65em;
}

/* ─────────────────────────────────────────────
   11. SECTION BASE
   ───────────────────────────────────────────── */
.stag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(14px, 2vh, 22px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.stag::before {
  content: '';
  width: clamp(18px, 2.2vw, 28px);
  height: 1px;
  background: var(--red);
}

.sh {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8.5vw, 142px);
  line-height: 0.85;
  color: var(--tx);
  overflow-wrap: break-word;
  word-break: break-word;
}

.sb {
  font-size: clamp(20px, 1.75vw, 25px);
  line-height: 1.82;
  color: var(--tb);
  font-weight: 300;
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv.d1 {
  transition-delay: 0.12s;
}

.rv.d2 {
  transition-delay: 0.24s;
}

.rv.d3 {
  transition-delay: 0.36s;
}

.rv.d4 {
  transition-delay: 0.48s;
}

/* ─────────────────────────────────────────────
   12. PARALLAX STRIPS
   ───────────────────────────────────────────── */
.pxs {
  height: clamp(48vh, 64vh, 74vh);
  position: relative;
  overflow: hidden;
}

.pxbg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.pxov {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.56);
}

.pxov::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 58px,
    rgba(200, 33, 26, 0.04) 58px,
    rgba(200, 33, 26, 0.04) 59px
  );
}

.pxov::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 33, 26, 0.5), transparent);
  animation: hsc 4s ease-in-out infinite;
}

@keyframes hsc {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.pxc {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vh, 96px) 6vw;
}

.pxl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 9.5vw, 148px);
  color: #fff;
  line-height: 0.85;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;
  word-break: break-word;
}

.pxl span {
  color: var(--red);
}

.pxsub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: clamp(48px, 6vh, 72px);
}

#px1 .pxc {
  padding: clamp(80px, 12vh, 140px) 6vw;
}

.px-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6vw;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 33, 26, 0.5) 30%,
    rgba(200, 33, 26, 0.5) 70%,
    transparent
  );
  z-index: 2;
}

.pxnum {
  position: absolute;
  right: 4vw;
  bottom: 2vh;
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(26vw, 300px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  user-select: none;
  z-index: 1;
}

.secn {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(40vw, 460px);
  line-height: 1;
  color: rgba(200, 33, 26, 0.025);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────
   13. PRODUCTIONS
   ───────────────────────────────────────────── */
#projects {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.proj-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5.5vw, 88px);
  align-items: start;
  margin-bottom: clamp(52px, 7vh, 84px);
}

.award-row {
  margin-top: clamp(28px, 3.5vh, 42px);
  padding: clamp(20px, 2.8vh, 30px) clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(200, 33, 26, 0.32);
  background: var(--rdim);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.awtl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: 8px;
}

.awsb {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--td);
  line-height: 1.65;
}

.mps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mp {
  display: flex;
  gap: clamp(18px, 2.2vw, 26px);
  align-items: flex-start;
  padding: clamp(20px, 2.8vh, 28px) clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--bo);
  background: var(--cb);
  transition: all 0.32s;
}

.mp:hover {
  border-color: rgba(200, 33, 26, 0.3);
  background: var(--rdim);
  transform: translateX(10px);
}

.mpn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.mpt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tx);
  line-height: 1.4;
}

.mpt small {
  display: block;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 19px);
  letter-spacing: 0;
  text-transform: none;
  color: var(--td);
  margin-top: 5px;
}

/* ─────────────────────────────────────────────
   14. SHOW CARDS
   ───────────────────────────────────────────── */
.shsc {
  overflow: hidden;
  position: relative;
}

.shsc::before,
.shsc::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 6vw, 88px);
  z-index: 2;
  pointer-events: none;
}

.shsc::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.shsc::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.shsi {
  display: flex;
  gap: clamp(16px, 1.8vw, 24px);
  width: max-content;
  animation: shs 48s linear infinite;
}

.shsi:hover {
  animation-play-state: paused;
}

@keyframes shs {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.shc {
  width: clamp(260px, 20vw, 340px);
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--bo);
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
}

.shc:hover {
  border-color: rgba(200, 33, 26, 0.4);
  transform: translateY(-12px);
  box-shadow: 0 28px 60px var(--sh);
}

.shp {
  height: clamp(210px, 18vw, 270px);
  overflow: hidden;
}

.shp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition: filter 0.4s;
}

.shc:hover .shp img {
  filter: saturate(1);
}

.shm {
  padding: clamp(14px, 1.8vw, 22px);
}

.shy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 13px);
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.2vw, 40px);
  color: var(--tx);
  line-height: 1.1;
  margin-bottom: 9px;
}

.she {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--tdm);
  line-height: 1;
}

.she small {
  font-size: 12px;
  color: var(--td);
}

.sh-hint {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 7px;
  opacity: 0;
  transition: opacity 0.3s;
}

.shc:hover .sh-hint {
  opacity: 1;
}

.sh-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.sh-imdb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border: 1px solid rgba(200,33,26,0.35);
  padding: 3px 10px;
  transition: background 0.25s, color 0.25s;
}

.sh-imdb:hover {
  background: var(--red);
  color: #fff;
}

/* ─────────────────────────────────────────────
   15. MODAL
   ───────────────────────────────────────────── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.modal-bg.open {
  display: flex;
}

.modal {
  background: var(--bg2);
  border: 1px solid var(--bm);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: mIn 0.3s ease;
}

@keyframes mIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--td);
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--red);
}

.modal-header {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 280px;
}

.modal-poster {
  overflow: hidden;
}

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

.modal-meta {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--bo);
}

.modal-genre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.2vw, 62px);
  color: var(--tx);
  line-height: 0.9;
  margin-bottom: 18px;
}

.modal-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.mstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--red);
  line-height: 1;
}

.mstat-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 13px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--td);
}

.modal-body {
  padding: clamp(24px, 3.5vw, 44px);
  border-top: 1px solid var(--bo);
}

.modal-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.modal-synopsis {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--td);
  line-height: 1.85;
  margin-bottom: 24px;
}

.modal-cast {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cast-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--td);
  border: 1px solid var(--bo);
  padding: 5px 12px;
  background: var(--cb);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: rgba(200, 33, 26, 0.1);
  border: 1px solid rgba(200, 33, 26, 0.3);
  margin-bottom: 18px;
}

.modal-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

@media (max-width: 600px) {
  .modal-header {
    grid-template-columns: 1fr;
  }
  .modal-poster {
    height: 220px;
  }
  .modal-meta {
    border-left: none;
    border-top: 1px solid var(--bo);
  }
}

/* ─────────────────────────────────────────────
   16. REEL
   ───────────────────────────────────────────── */
[data-theme="light"] #reel {
  background: var(--bg2);
}

[data-theme="light"] .reel-title {
  color: var(--tx);
}

[data-theme="light"] .reel-lbl {
  color: var(--td);
}

[data-theme="light"] .reel-desc {
  color: var(--td);
}

#reel {
  background: #000;
  position: relative;
}

.reel-head {
  padding: clamp(60px, 8vh, 96px) 6vw clamp(36px, 4.5vh, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.reel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 108px);
  color: #fff;
  line-height: 0.88;
  overflow-wrap: break-word;
  word-break: break-word;
}

.reel-title span {
  color: var(--red);
}

.reel-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

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

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

.reel-ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.4s;
  z-index: 5;
}

.reel-ov.hidden {
  opacity: 0;
  pointer-events: none;
}

.playbtn {
  width: clamp(76px, 8vw, 108px);
  height: clamp(76px, 8vw, 108px);
  border: 2.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 33, 26, 0.9);
  transition: all 0.3s;
  position: relative;
}

.playbtn::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(200, 33, 26, 0.3);
  border-radius: 50%;
  animation: pR 2s ease-in-out infinite;
}

@keyframes pR {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.6;
  }
}

.reel-player:hover .playbtn {
  transform: scale(1.1);
  box-shadow: 0 0 80px rgba(200, 33, 26, 0.65);
}

.playbtn svg {
  width: clamp(30px, 3.5vw, 42px);
  height: clamp(30px, 3.5vw, 42px);
  fill: #fff;
  margin-left: 5px;
}

.reel-foot {
  padding: clamp(26px, 3.5vh, 44px) 6vw clamp(52px, 7vh, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.reel-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.42);
}

/* ─────────────────────────────────────────────
   17. CASH REBATE
   ───────────────────────────────────────────── */
#cashrebate {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.cr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(56px, 8vh, 88px);
}

.cr-card {
  background: var(--bg2);
  border: 1px solid var(--bo);
  padding: clamp(24px, 3.2vw, 38px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.5vw, 30px);
  align-items: center;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  margin-bottom: 3px;
}

.cr-card:hover {
  border-color: rgba(200, 33, 26, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200, 33, 26, 0.12);
}

.cr-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  color: var(--red);
  line-height: 1;
  text-align: center;
}

.cr-pct-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--td);
  text-align: center;
}

.cr-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: 9px;
}

.cr-desc {
  font-size: clamp(20px, 1.7vw, 23px);
  color: var(--td);
  line-height: 1.72;
}

.cr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.cr-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(200, 33, 26, 0.3);
  padding: 3px 10px;
}

.cr-banner {
  padding: clamp(40px, 6vh, 64px) clamp(40px, 6.5vw, 80px);
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cr-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 26px,
    rgba(0, 0, 0, 0.04) 26px,
    rgba(0, 0, 0, 0.04) 52px
  );
}

.cr-banner-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  flex-wrap: wrap;
}

.cr-banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 68px);
  color: #fff;
  line-height: 0.9;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.cr-banner-body {
  font-size: clamp(20px, 1.9vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.82;
  font-weight: 300;
}

.cr-checklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-shrink: 0;
}

.cr-check {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.cr-check-box {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   18. SERBIA
   ───────────────────────────────────────────── */
#serbia {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.serb-intro {
  margin-bottom: clamp(56px, 8vh, 88px);
}

.serb-intro .sb {
  max-width: 820px;
  margin-top: clamp(18px, 2.5vh, 28px);
}

.advg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(52px, 7vh, 80px);
}

.ac {
  background: var(--bg3);
  padding: clamp(34px, 4.2vw, 54px) clamp(26px, 3.4vw, 44px);
  border: 1px solid var(--bo);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.ac::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.ac:hover {
  background: var(--bg4);
  border-color: rgba(200, 33, 26, 0.2);
}

.ac:hover::after {
  transform: scaleX(1);
}

.ai {
  width: clamp(42px, 4.5vw, 56px);
  height: clamp(42px, 4.5vw, 56px);
  margin-bottom: clamp(20px, 2.8vh, 30px);
}

.ai svg {
  width: 100%;
  height: 100%;
}

.an {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7.5vw, 92px);
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.at {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: 12px;
}

.ad {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--tb);
  line-height: 1.7;
}

/* Location mosaic */
.locm {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: clamp(220px, 27vw, 330px) clamp(170px, 20vw, 240px);
  gap: 4px;
}

.locc {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s, overflow 0s 0.45s;
  z-index: 1;
}

.locc:hover {
  transform: scale(1.20);
  overflow: visible;
  z-index: 999;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s, overflow 0s 0s;
}

.locc:nth-child(1) { grid-column: 1 / 5; }
.locc:nth-child(2) { grid-column: 5 / 8; }
.locc:nth-child(3) { grid-column: 8 / 10; }
.locc:nth-child(4) { grid-column: 10 / 13; }
.locc:nth-child(5) { grid-column: 1 / 3; }
.locc:nth-child(6) { grid-column: 3 / 6; }
.locc:nth-child(7) { grid-column: 6 / 9; }
.locc:nth-child(8) { grid-column: 9 / 13; }

.locc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.68);
  transition: filter 0.7s;
}

.locc:hover img {
  filter: saturate(1) brightness(0.82);
}

.locov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.08) 60%);
}

.locin {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(14px, 1.8vw, 22px);
  transform: translateY(5px) scale(1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: left bottom;
}

.locc:hover .locin {
  transform: translateY(0) scale(1.08);
}

.locn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  color: #fff;
  line-height: 1;
}

.loct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}

.locbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s;
}

.locc:hover .locbar {
}

.why-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(60px, 8vh, 88px);
  margin-bottom: clamp(0px, 0vh, 0px);
}

.why-label-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.why-label-line {
  flex: 1;
  height: 1px;
  background: var(--bo);
}

/* ─────────────────────────────────────────────
   19. EQUIPMENT
   ───────────────────────────────────────────── */
#equipment {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.eq-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5.5vw, 88px);
  align-items: center;
  margin-bottom: clamp(60px, 8vh, 92px);
}

.eq-claim {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.2vw, 48px);
  color: var(--red);
  line-height: 1.15;
  margin-top: clamp(22px, 3vh, 36px);
}

.eq-div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(20px, 2.8vh, 32px);
}

.eq-div-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 13px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--td);
  white-space: nowrap;
}

.eq-div-line {
  flex: 1;
  height: 1px;
  background: var(--bo);
}

.eqg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.eqg2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.eqc {
  background: var(--bg2);
  border: 1px solid var(--bo);
  padding: clamp(30px, 3.8vw, 48px) clamp(26px, 3.2vw, 42px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.eqc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.4s;
}

.eqc:hover {
  background: var(--bg3);
}

.eqc:hover::before {
  height: 100%;
}

.eqbgn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(84px, 10vw, 118px);
  color: var(--bo);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.eqc:hover .eqbgn {
  color: rgba(200, 33, 26, 0.075);
}

.eqic {
  width: clamp(46px, 5.5vw, 60px);
  height: clamp(46px, 5.5vw, 60px);
  border: 1px solid rgba(200, 33, 26, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(20px, 2.8vh, 30px);
  transition: all 0.3s;
}

.eqic svg {
  width: clamp(21px, 2.3vw, 28px);
  height: clamp(21px, 2.3vw, 28px);
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.eqc:hover .eqic {
  background: var(--rdim);
  border-color: var(--red);
}

.eqtl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: clamp(16px, 2.2vh, 24px);
}

.eqlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vh, 12px);
}

.eqlist li {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--tb);
  line-height: 1.65;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.eqlist li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 10px;
}

.eqlist li strong {
  color: var(--tx);
  font-weight: 500;
}

.eq-stmt {
  margin-top: 2px;
  padding: clamp(48px, 7vh, 72px) clamp(44px, 7vw, 88px);
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.eq-stmt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 26px,
    rgba(0, 0, 0, 0.04) 26px,
    rgba(0, 0, 0, 0.04) 52px
  );
}

.eq-stmt::after {
  content: 'APPLE · DAVINCI RESOLVE · AVID · ADOBE · NUKE · HOUDINI · UNREAL ENGINE · DOLBY ATMOS';
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.eq-stmt-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5.5vw, 68px);
  align-items: center;
}

.eq-stmt-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 6vw, 92px);
  color: #fff;
  line-height: 0.88;
}

.eq-stmt-body {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  font-weight: 300;
}

/* Post-Production Spec Cards */
.eq-stmt-in--specs {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.eq-specs-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.eq-spec-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  transition: background 0.35s ease, transform 0.35s ease;
}

.eq-spec-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.eq-spec-chip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 16px;
}

.eq-spec-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.eq-spec-highlight {
  margin-bottom: 10px;
  line-height: 1.1;
}

.eq-spec-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  color: #fff;
  line-height: 1;
}

.eq-spec-unit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.eq-spec-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.35);
}

.eq-spec-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   20. SERVICES
   ───────────────────────────────────────────── */
#srv {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.srvg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.srvc {
  background: var(--bg3);
  padding: clamp(48px, 7vh, 76px) clamp(36px, 4.8vw, 60px);
  border: 1px solid var(--bo);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.srvc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.4s;
}

.srvc:hover {
  background: var(--bg4);
}

.srvc:hover::before {
  height: 100%;
}

.srvbg {
  position: absolute;
  top: 6px;
  right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 16vw, 160px);
  color: var(--bo);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.srvc:hover .srvbg {
  color: rgba(200, 33, 26, 0.07);
}

.srvi {
  width: clamp(50px, 5.8vw, 66px);
  height: clamp(50px, 5.8vw, 66px);
  border: 1px solid rgba(200, 33, 26, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(24px, 3.2vh, 36px);
  transition: all 0.3s;
}

.srvi svg {
  width: clamp(22px, 2.4vw, 30px);
  height: clamp(22px, 2.4vw, 30px);
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.srvc:hover .srvi {
  background: var(--rdim);
  border-color: var(--red);
}

.srvt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: clamp(14px, 2vh, 20px);
}

.srvd {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--tb);
  line-height: 1.84;
}

.srvl {
  list-style: none;
  margin-top: clamp(22px, 3vh, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vh, 12px);
}

.srvl li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.55vw, 19px);
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--tb);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.45;
}

.srvl li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   21. STUDIOS
   ───────────────────────────────────────────── */
#studios {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.stud-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5.5vw, 88px);
  align-items: start;
  margin-bottom: clamp(56px, 8vh, 84px);
}

.stud-note {
  padding: clamp(22px, 2.8vh, 32px) clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--bm);
  background: var(--cb);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: clamp(22px, 3vh, 34px);
}

.stud-note svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.stud-note-text {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--td);
  line-height: 1.78;
}

.stud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.stud-card {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--bo);
  transition: all 0.4s;
}

.stud-card:hover {
  border-color: rgba(200, 33, 26, 0.3);
}

.stud-img {
  height: clamp(240px, 24vw, 340px);
  overflow: hidden;
}

.stud-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.58);
  transition: all 0.65s;
}

.stud-card:hover .stud-img img {
  transform: scale(1.07);
  filter: saturate(1);
}

.stud-info {
  padding: clamp(28px, 3.5vw, 44px);
}

.stud-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.8vw, 50px);
  color: var(--red);
  margin-bottom: 11px;
}

.stud-desc {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--tb);
  line-height: 1.82;
}

.stud-specs {
  list-style: none;
  margin-top: clamp(18px, 2.5vh, 26px);
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 1.2vh, 13px);
}

.stud-specs li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: 0.4px;
  text-transform: none;
  color: var(--ts);
  display: flex;
  align-items: center;
  gap: 13px;
  line-height: 1.5;
}

.stud-specs li::before {
  content: '';
  width: 13px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.stud-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 13px);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* ─────────────────────────────────────────────
   22. TEAM
   ───────────────────────────────────────────── */
#team {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.tmg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.tmc {
  background: var(--bg3);
  border: 1px solid var(--bo);
  overflow: hidden;
  transition: border-color 0.4s;
}

.tmc:hover {
  border-color: rgba(200, 33, 26, 0.22);
}

.tmt {
  height: clamp(240px, 24vw, 320px);
  background: var(--bg4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tma {
  width: clamp(110px, 13vw, 150px);
  height: clamp(110px, 13vw, 150px);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 60px);
  color: var(--red);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.tmc:hover .tma {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(200, 33, 26, 0.4);
}

.tmyr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-top: 12px;
}

.tmb {
  padding: clamp(30px, 4vw, 48px) clamp(32px, 4.2vw, 52px);
}

.tmname {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--tx);
  margin-bottom: 5px;
}

.tmrole {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(16px, 2.2vh, 24px);
}

.tmbio {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--tb);
  line-height: 1.84;
}

/* ─────────────────────────────────────────────
   23. CONTACT
   ───────────────────────────────────────────── */
#contact {
  padding: clamp(88px, 12vh, 148px) 6vw;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 28px,
    rgba(0, 0, 0, 0.035) 28px,
    rgba(0, 0, 0, 0.035) 56px
  );
}

#contact::after {
  content: 'DTS';
  position: absolute;
  right: -5%;
  bottom: -18%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(44vw, 540px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cti {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

.ctag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: clamp(16px, 2.2vh, 24px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ctag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.cttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 9vw, 136px);
  line-height: 0.84;
  color: #fff;
  margin-bottom: clamp(20px, 2.8vh, 32px);
  overflow-wrap: break-word;
  word-break: break-word;
}

.ctsu {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: clamp(36px, 5.5vh, 56px);
}

.ctbtns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.ctes {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 20px);
}

.ce {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(24px, 3.2vh, 34px) clamp(26px, 3.5vw, 38px);
  transition: all 0.3s;
}

.ce:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cen {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.8vw, 46px);
  color: #fff;
  margin-bottom: clamp(12px, 1.6vh, 18px);
}

.cel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 7px;
}

.cel a {
  color: inherit;
  text-decoration: none;
}

.cel a:hover {
  color: #fff;
  text-decoration: underline;
}

.cel svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.55);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   24. FOOTER
   ───────────────────────────────────────────── */
footer {
  padding: clamp(24px, 3.5vh, 38px) 6vw;
  background: var(--bg);
  border-top: 1px solid var(--bo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.fll img {
  height: clamp(28px, 3.2vw, 36px);
}

.fcp {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--td);
}

.ftg {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 33, 26, 0.4);
}

/* ─────────────────────────────────────────────
   25. HUD / FILM-STYLE TECHNICAL OVERLAY
   ───────────────────────────────────────────── */
.hud-meta {
  position: absolute;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  pointer-events: none;
}

.hud-meta.tr {
  top: clamp(78px, 10.5vh, 98px);
  right: calc(6vw + 46px);
  text-align: right;
  display: none;
}

.hud-meta.bl-info {
  bottom: clamp(58px, 9vh, 112px);
  right: calc(6vw + 46px);
  text-align: right;
}

.hud-meta .hud-val {
  color: var(--red);
}

.hud-meta span {
  display: block;
}

[data-theme="light"] .hud-meta {
  color: rgba(0, 0, 0, 0.42);
}

@media (max-width: 900px) {
  .hud-meta {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────
   26. HERO PARALLAX LAYER PREP
   ───────────────────────────────────────────── */
.hcorner,
.hrec,
.hwm {
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ─────────────────────────────────────────────
   27. STUDIO / LOCATION SCAN EFFECT
   ───────────────────────────────────────────── */
.stud-card,
.locc,
.tmc {
  position: relative;
  overflow: hidden;
}

.stud-card::after,
.locc::after,
.tmc::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -50%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 33, 26, 0.18),
    transparent
  );
  transition: top 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
  pointer-events: none;
}

.stud-card:hover::after,
.locc:hover::after,
.tmc:hover::after {
  top: 100%;
}

/* ─────────────────────────────────────────────
   28. KINETIC TYPOGRAPHY DIVIDER
   ───────────────────────────────────────────── */
.kinetic-divider {
  padding: 8vh 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.kinetic-divider::before,
.kinetic-divider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.kinetic-divider::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.kinetic-divider::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.kinetic-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: kinetic-scroll 38s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 1;
  letter-spacing: -1.5px;
  white-space: nowrap;
}

@keyframes kinetic-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.kinetic-track span {
  color: var(--tx);
  display: inline-flex;
  align-items: center;
  gap: 50px;
}

.kinetic-track span::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.kinetic-track .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--tx);
}

/* ─────────────────────────────────────────────
   29. FRAME TAG & SECTION NUMBERS
   ───────────────────────────────────────────── */
.secn {
  font-family: 'Bebas Neue', sans-serif !important;
}

.frame-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(200, 33, 26, 0.55);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────
   30. REVEAL-ON-SCROLL UTILITY
   ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   31. MAGNETIC BUTTONS
   ───────────────────────────────────────────── */
.btn-r,
.btn-o,
.ncta {
  will-change: transform;
}

.btn-r span,
.btn-o span,
.ncta span {
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ─────────────────────────────────────────────
   32. CURSOR COLORS PER THEME (SVG OVERRIDES)
   ───────────────────────────────────────────── */
[data-theme="light"] #starcur line {
  stroke: #E8251D !important;
}

[data-theme="light"] #starcur {
  opacity: 0.85;
}

[data-theme="light"] #starcur.hov line {
  stroke: #ff2d20 !important;
}

/* ─────────────────────────────────────────────
   33. REDUCED MOTION
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────
   34. FADE-UP KEYFRAME
   ───────────────────────────────────────────── */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ─────────────────────────────────────────────
   35. RESPONSIVE — MOBILE
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nlinks,
  .ncta {
    display: none;
  }

  .hamb {
    display: flex;
  }

  #hero {
    padding: 0 20px clamp(64px, 9vh, 88px);
  }

  .hc {
    flex-direction: column;
    gap: 22px;
  }

  .hb {
    width: 100%;
  }

  .btn-r,
  .btn-o {
    flex: 1;
    text-align: center;
  }

  #projects,
  #cashrebate,
  #reel .reel-head,
  #reel .reel-foot,
  #serbia,
  #equipment,
  #srv,
  #studios,
  #team,
  #contact {
    padding: 72px 20px;
  }

  .proj-head,
  .cr-grid,
  .eq-intro,
  .stud-intro-grid,
  .eq-stmt-in,
  .cti,
  .tmg,
  .srvg,
  .stud-grid {
    grid-template-columns: 1fr;
  }

  .eq-specs-grid {
    flex-direction: column;
  }

  .advg {
    grid-template-columns: 1fr 1fr;
  }

  .locm {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .locc {
    grid-column: auto !important;
    height: clamp(150px, 32vw, 210px);
  }

  .eqg {
    grid-template-columns: 1fr;
  }

  .eqg2 {
    grid-template-columns: 1fr 1fr;
  }

  .pxs {
    height: clamp(44vh, 54vh, 60vh);
  }

  .stbar {
    padding: 14px 20px;
    justify-content: space-around;
  }

  .sdv {
    display: none;
  }

  .si {
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .sl {
    text-align: center;
    max-width: 90px;
  }

  .cr-banner-in {
    grid-template-columns: 1fr;
  }

  .modal-header {
    grid-template-columns: 1fr;
  }

  .modal-poster {
    height: 220px;
  }

  .ctbtns {
    flex-direction: column;
  }

  .ctbtns .btn-r,
  .ctbtns .btn-o {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .advg {
    grid-template-columns: 1fr;
  }

  .eqg2 {
    grid-template-columns: 1fr;
  }

  .locm {
    grid-template-columns: 1fr;
  }

  .locc {
    height: 54vw;
  }
}

/* ─────────────────────────────────────────────
   26. TYPOGRAPHY ACCESSIBILITY ADJUSTMENTS (NON-TITLE FONTS)
   ───────────────────────────────────────────── */
.nlinks a {
  font-size: 17px;
}
.ncta {
  font-size: 16px;
}
.hs {
  font-size: clamp(23px, 2.1vw, 30px);
}
.btn-r, .btn-o {
  font-size: clamp(15px, 1.4vw, 17px);
}
.sb {
  font-size: clamp(22px, 1.9vw, 28px);
}
.awsb {
  font-size: clamp(18px, 1.5vw, 20px);
}
.mpt small {
  font-size: clamp(19px, 1.7vw, 21px);
}
.cr-desc {
  font-size: clamp(18px, 1.5vw, 20px);
}
.ad {
  font-size: clamp(19px, 1.7vw, 21px);
}
.loct {
  font-size: clamp(14px, 1.3vw, 15px);
}
.stud-desc {
  font-size: clamp(19px, 1.75vw, 22px);
}
.stud-specs li {
  font-size: clamp(19px, 1.8vw, 22px);
}
.tmbio {
  font-size: clamp(19px, 1.75vw, 22px);
}
.eqlist li {
  font-size: clamp(19px, 1.75vw, 22px);
}
.srvd {
  font-size: clamp(19px, 1.75vw, 22px);
}
.srvl li {
  font-size: clamp(18px, 1.75vw, 21px);
}
.fcp, .ftg {
  font-size: clamp(14px, 1.3vw, 16px);
}
.hud-meta {
  font-size: 12px;
}
.modal-synopsis {
  font-size: clamp(18px, 1.5vw, 20px);
}
.cast-chip, .modal-badge-text {
  font-size: 14px;
}
.mstat-l {
  font-size: clamp(14px, 1.3vw, 15px);
}

/* Inline Styles Overrides */
#intro span[style*="font-size"] {
  font-size: 13px !important;
}
#projects div[style*="font-size*11px"],
#projects div[style*="font-size:clamp(11px"],
#projects div[style*="font-size: clamp(11px"] {
  font-size: clamp(13px, 1.2vw, 15px) !important;
}
#projects div[style*="font-size*15px"],
#projects div[style*="font-size:clamp(15px"],
#projects div[style*="font-size: clamp(15px"] {
  font-size: clamp(17px, 1.5vw, 19px) !important;
}
.award-row div div,
.mp,
.mps,
.shc .sh-hint,
.sh-imdb,
.cr-tag,
.cr-checklist,
.cr-pct-lbl {
  font-size: 1.1em;
}
.cr-check {
  font-size: clamp(18px, 1.6vw, 21px);
}

