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

:root {
  --gold: #f5c518;
  --gold-dim: #c9a227;
  --gold-glow: rgba(245,197,24,0.3);
  --bg: #080808;
  --bg-2: #0e0e0e;
  --bg-3: #141414;
  --bg-card: #111;
  --text: #f0f0f0;
  --text-dim: #888;
  --text-muted: #444;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(245,197,24,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
body.loading { overflow: hidden; }

/* ============================================
   SCROLL PROGRESS LINE
   ============================================ */
.scroll-progress-line {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  z-index: 10001;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
  display: flex; align-items: center; justify-content: center;
}
.cursor-text {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.cursor.expanded {
  width: 72px; height: 72px;
  background: var(--gold);
  mix-blend-mode: normal;
}
.cursor.expanded .cursor-text { opacity: 1; }
.cursor-follower {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(245,197,24,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}

/* Cursor trail */
.c-trail {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  opacity: 0;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-film { display: flex; gap: 6px; justify-content: center; margin-bottom: 32px; }
.loader-film span {
  width: 8px; height: 40px;
  background: var(--gold); border-radius: 2px;
  animation: filmPulse 0.8s ease-in-out infinite alternate;
}
.loader-film span:nth-child(2) { animation-delay: 0.1s; }
.loader-film span:nth-child(3) { animation-delay: 0.2s; }
.loader-film span:nth-child(4) { animation-delay: 0.3s; }
.loader-film span:nth-child(5) { animation-delay: 0.4s; }
@keyframes filmPulse {
  from { height: 20px; opacity: 0.4; }
  to   { height: 48px; opacity: 1; }
}

.loader-text { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 20px; }
.loader-percent { font-family:'Bebas Neue',sans-serif; font-size: 80px; color: var(--gold); line-height: 1; letter-spacing: 4px; }
.loader-label { font-size: 11px; letter-spacing: 6px; color: var(--text-muted); }
.loader-bar-wrap { width: 200px; height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar { height: 100%; background: var(--gold); width: 0%; border-radius: 2px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,h2,h3,h4 { font-family:'Bebas Neue',sans-serif; letter-spacing: 2px; line-height: 1.05; }
em { font-style: normal; color: var(--gold); }
a { color: inherit; text-decoration: none; }

/* ============================================
   SPLIT TEXT MASK REVEAL
   ============================================ */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
}
.word-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 0.4s ease;
}
.hero-line.revealed .word-inner,
.split-text.visible .word-inner { transform: translateY(0); opacity: 1; }

.split-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s var(--ease-out); }
.split-fade.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   GLITCH TEXT
   ============================================ */
.glitch-text {
  position: relative;
  display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  font-family: inherit; font-size: inherit; font-weight: inherit;
}
.glitch-text::before {
  color: #ff00cc;
  animation: glitch-top 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
}
.glitch-text::after {
  color: #00ffee;
  animation: glitch-bot 4s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitch-top {
  0%,85%,100% { transform: translate(0); opacity: 0; }
  87% { transform: translate(-4px, 1px); opacity: 1; }
  89% { transform: translate(4px, -1px); opacity: 1; }
  91% { transform: translate(-2px, 2px); opacity: 1; }
  93% { transform: translate(0); opacity: 0; }
}
@keyframes glitch-bot {
  0%,85%,100% { transform: translate(0); opacity: 0; }
  87% { transform: translate(4px, -1px); opacity: 1; }
  89% { transform: translate(-4px, 1px); opacity: 1; }
  91% { transform: translate(2px, -2px); opacity: 1; }
  93% { transform: translate(0); opacity: 0; }
}

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 48px;
  display: flex; align-items: center; gap: 40px;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family:'Bebas Neue',sans-serif; font-size: 16px; letter-spacing: 1px;
  border-radius: 8px;
}
.logo-text { font-family:'Bebas Neue',sans-serif; font-size: 18px; letter-spacing: 3px; }

.nav-links { list-style: none; display: flex; gap: 38px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 26px;
  background: var(--gold); color: var(--bg);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 100px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.nav-cta:hover { box-shadow: 0 0 32px var(--gold-glow); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: 0.3s; }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98); backdrop-filter: blur(20px);
  z-index: 999; display: flex; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 18px 0; }
.mobile-link { font-family:'Bebas Neue',sans-serif; font-size: 52px; letter-spacing: 4px; color: var(--text-dim); transition: color 0.3s; }
.mobile-link:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 110px 48px 60px;
  text-align: center;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px; z-index: 1; pointer-events: none; opacity: 0.5;
}

/* Floating shapes */
.float-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fshape {
  position: absolute;
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
}
.fshape-1 { width: 300px; height: 300px; top: 10%; left: -80px; animation-duration: 9s; }
.fshape-2 { width: 180px; height: 180px; top: 60%; right: -40px; animation-duration: 7s; animation-delay: -2s; }
.fshape-3 { width: 100px; height: 100px; top: 20%; right: 15%; animation-duration: 6s; animation-delay: -4s; border-color: rgba(245,197,24,0.06); }
.fshape-4 { width: 50px; height: 50px; bottom: 20%; left: 10%; animation-duration: 5s; animation-delay: -1s; background: rgba(245,197,24,0.02); }
.fshape-5 { width: 220px; height: 220px; bottom: 5%; left: 30%; animation-duration: 11s; animation-delay: -3s; border-color: rgba(245,197,24,0.04); }

@keyframes floatShape {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content { position: relative; z-index: 2; max-width: 960px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 44px;
}
.tag-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.hero-line { font-size: clamp(52px, 9vw, 110px); display: block; }
.hero-line--gold { color: var(--gold); }

.hero-sub { font-size: 17px; color: var(--text-dim); line-height: 1.85; margin-bottom: 48px; font-weight: 300; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; border-radius: 100px; border: none;
  cursor: none; transition: all 0.35s var(--ease); text-transform: uppercase;
  position: relative; overflow: hidden;
}
.btn--primary { background: var(--gold); color: var(--bg); }
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease);
}
.btn--primary:hover::before { transform: translateX(120%) skewX(-15deg); }
.btn--primary:hover { box-shadow: 0 0 50px var(--gold-glow), 0 8px 30px rgba(245,197,24,0.25); transform: translateY(-2px); }
.btn--primary:hover i { transform: translateX(4px); }
.btn--primary i { transition: transform 0.3s; }

.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 24px rgba(245,197,24,0.1); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* Hero stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 0;
  margin-top: 80px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.stat { flex: 1; text-align: center; padding: 26px 20px; }
.stat-num { font-family:'Bebas Neue',sans-serif; font-size: 44px; color: var(--gold); line-height: 1; }
.stat-plus { font-family:'Bebas Neue',sans-serif; font-size: 26px; color: var(--gold); }
.stat-label { display: block; font-size: 11px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 4px; color: var(--text-muted);
}
.scroll-line { width: 1px; height: 50px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.scroll-dot { width: 1px; height: 20px; background: var(--gold); position: absolute; top: -20px; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { to { top: 50px; } }

/* Film strips */
.film-strip { position: absolute; top: 0; bottom: 0; width: 32px; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.03); z-index: 1; }
.film-strip--left { left: 0; }
.film-strip--right { right: 0; }
.film-holes { display: flex; flex-direction: column; gap: 30px; padding: 20px 4px; justify-content: center; height: 100%; }
.film-holes span { display: block; width: 22px; height: 16px; background: rgba(255,255,255,0.03); border-radius: 3px; border: 1px solid rgba(255,255,255,0.05); margin: 0 auto; }

/* ============================================
   SHOWREEL
   ============================================ */
.showreel {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.showreel-inner { position: relative; z-index: 2; width: 100%; }
.showreel-bg { position: absolute; inset: 0; z-index: 0; }
.sr-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.04) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
}
.sr-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 12s linear infinite;
}
@keyframes gridMove { to { background-position: 60px 60px; } }

.showreel-content {
  position: relative; z-index: 2;
  text-align: center; padding: 120px 40px;
}
.sr-eyebrow { font-size: 12px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 14px; opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease-out); }
.sr-eyebrow.visible { opacity: 1; transform: translateY(0); }
.sr-title { font-size: clamp(48px, 8vw, 96px); margin-bottom: 64px; }

.sr-play {
  position: relative;
  width: 140px; height: 140px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 48px;
  background: none; border: none; cursor: none;
}
.sr-play-icon {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--bg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative; z-index: 1;
  padding-left: 4px;
}
.sr-play:hover .sr-play-icon {
  transform: scale(1.15);
  box-shadow: 0 0 60px var(--gold-glow), 0 0 120px rgba(245,197,24,0.15);
}
.sr-ring { position: absolute; inset: 0; animation: spinRing 8s linear infinite; }
.sr-ring-anim { transition: stroke-dashoffset 0.4s ease; }
.sr-play:hover .sr-ring-anim { stroke-dashoffset: 0; }
@keyframes spinRing { to { transform: rotate(360deg); } }

.sr-label { position: absolute; bottom: -4px; font-size: 10px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }
.sr-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sr-tags span { font-size: 12px; padding: 6px 16px; border: 1px solid var(--border); border-radius: 100px; color: var(--text-muted); letter-spacing: 0.5px; }

/* Showreel modal */
.sr-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.sr-modal.open { opacity: 1; pointer-events: all; }
.sr-modal-inner { position: relative; width: 85vw; max-width: 1000px; aspect-ratio: 16/9; }
.sr-close {
  position: absolute; top: -50px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1); border: none;
  border-radius: 50%; color: var(--text); font-size: 18px;
  cursor: none; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.sr-close:hover { background: var(--gold); color: var(--bg); }
.sr-video-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.sr-placeholder-bars { display: flex; gap: 8px; align-items: flex-end; }
.spb {
  width: 8px; border-radius: 4px; background: var(--gold); opacity: 0.4;
  animation: spbAnim 1s ease-in-out infinite alternate;
}
.spb:nth-child(1) { height: 30px; animation-delay: 0s; }
.spb:nth-child(2) { height: 50px; animation-delay: 0.1s; }
.spb:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.spb:nth-child(4) { height: 60px; animation-delay: 0.3s; }
.spb:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.spb:nth-child(6) { height: 55px; animation-delay: 0.5s; }
.spb:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.spb:nth-child(8) { height: 45px; animation-delay: 0.7s; }
.spb:nth-child(9) { height: 35px; animation-delay: 0.8s; }
@keyframes spbAnim { to { opacity: 1; transform: scaleY(1.3); } }
.sr-video-placeholder p { font-size: 14px; color: var(--text-muted); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap { overflow: hidden; background: var(--gold); padding: 14px 0; white-space: nowrap; }
.marquee { display: inline-block; animation: marquee 18s linear infinite; }
.marquee span { font-family:'Bebas Neue',sans-serif; font-size: 15px; letter-spacing: 4px; color: var(--bg); margin: 0 24px; }
.marquee-dot { color: var(--bg) !important; opacity: 0.35; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   WORK — HORIZONTAL PINNED SCROLL
   ============================================ */
.work-pinned {
  height: 500vh;
  position: relative;
}
.work-pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 80px 60px 36px;
  flex-shrink: 0;
}
.work-header-left { }
.work-header-right { text-align: right; }
.section-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 12px; font-weight: 300; }
.work-progress-wrap { width: 180px; height: 1px; background: var(--border); margin-left: auto; }
.work-progress-bar { height: 100%; background: var(--gold); width: 0%; transition: width 0.05s linear; box-shadow: 0 0 8px var(--gold-glow); }

.work-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
.work-track {
  display: flex;
  gap: 28px;
  padding: 0 60px;
  will-change: transform;
  align-items: stretch;
}

/* Work cards */
.wcard {
  flex-shrink: 0;
  width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.wcard--wide { width: 520px; }
.wcard:hover { border-color: var(--border-gold); transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }


.wcard-info { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.wcard-meta { display: flex; justify-content: space-between; align-items: center; }
.wcard-cat { font-size: 11px; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; }
.wcard-year { font-size: 12px; color: var(--text-muted); }
.wcard-name { font-family:'Bebas Neue',sans-serif; font-size: 22px; letter-spacing: 1px; line-height: 1.1; }
.wcard-desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; font-weight: 300; flex: 1; }
.wcard-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.wcard-tags span { font-size: 11px; padding: 3px 10px; border: 1px solid var(--border); border-radius: 100px; color: var(--text-muted); }

/* CTA card */
.wcard--cta {
  width: 380px;
  background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(245,197,24,0.02));
  border: 1px solid var(--border-gold);
  align-items: center; justify-content: center;
  text-align: center;
}
.wcard-cta-inner { padding: 40px 30px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.wcard-cta-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.wcard-cta-inner h3 { font-size: 28px; line-height: 1.1; }

/* ============================================
   SECTION COMMON
   ============================================ */
section { padding: 130px 0; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag { display: inline-block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.section-title { font-size: clamp(38px, 5vw, 62px); margin-bottom: 20px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-step {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--step-delay, 0s);
}
.reveal-step.visible { opacity: 1; transform: translateY(0); }

.reveal-3d {
  opacity: 0; transform: perspective(600px) rotateY(25deg) translateX(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--card-delay, 0s);
}
.reveal-3d.visible { opacity: 1; transform: perspective(600px) rotateY(0deg) translateX(0); }

.reveal-ring { opacity: 0; transform: scale(0.7); transition: opacity 0.6s ease, transform 0.6s var(--ease-out); }
.reveal-ring.visible { opacity: 1; transform: scale(1); }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg-2); position: relative; overflow: hidden; }

.about-bg-word {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px; letter-spacing: -10px;
  color: rgba(255,255,255,0.012); pointer-events: none; white-space: nowrap;
  user-select: none;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.about-visual { position: relative; }
.about-img-wrap { position: relative; display: inline-block; }
.about-img-placeholder {
  width: 380px; height: 460px;
  background: var(--bg-3); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245,197,24,0.04) 0%, transparent 60%);
}
.about-avatar { font-size: 80px; color: rgba(255,255,255,0.05); }

.about-scan-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.4), transparent);
  animation: scanLine 3s linear infinite;
}
@keyframes scanLine { from { top: 0; } to { top: 100%; } }

.about-img-ring { position: absolute; border: 1px solid; border-radius: 50%; animation: ringPulse 4s ease-in-out infinite; }
.ring-1 { width: 140px; height: 140px; bottom: 60px; right: -30px; border-color: rgba(245,197,24,0.15); }
.ring-2 { width: 200px; height: 200px; bottom: 30px; right: -60px; border-color: rgba(245,197,24,0.06); animation-delay: 1s; }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.5; } }

.about-badge {
  position: absolute; background: var(--bg-card);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.about-badge--exp { top: 30px; right: -44px; }
.about-badge--award { bottom: 80px; right: -44px; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.about-badge--award i { color: var(--gold); font-size: 20px; }
.about-badge--award span { font-size: 11px; color: var(--text-dim); line-height: 1.3; }
.badge-num { font-family:'Bebas Neue',sans-serif; font-size: 36px; color: var(--gold); line-height: 1; }
.badge-text { font-size: 11px; color: var(--text-dim); line-height: 1.3; }
.about-float-card { position: absolute; bottom: -20px; left: -20px; background: rgba(245,197,24,0.08); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 16px 20px; backdrop-filter: blur(10px); }
.fc-label { font-size: 11px; color: var(--text-muted); display: block; margin-bottom: 8px; letter-spacing: 1px; }
.fc-brands { display: flex; gap: 10px; }
.fc-brands span { font-size: 12px; font-weight: 600; color: var(--gold); padding: 4px 10px; background: rgba(245,197,24,0.1); border-radius: 100px; }

.about-content .section-tag { margin-bottom: 12px; }
.about-text { color: var(--text-dim); font-weight: 300; margin-bottom: 16px; line-height: 1.85; font-size: 15.5px; }

.tools-wrap { margin: 28px 0; }
.tools-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 14px; }
.tools-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; background: var(--bg-3);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; color: var(--text-dim); transition: 0.3s;
}
.tool-chip:hover { border-color: var(--gold); color: var(--text); }
.tool-chip i { color: var(--gold); font-size: 12px; }

/* Circular skill rings */
.skill-rings { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.skill-ring-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.skill-ring-wrap { position: relative; width: 80px; height: 80px; }
.skill-ring-svg { width: 80px; height: 80px; }
.ring-circle { transition: stroke-dashoffset 1.4s cubic-bezier(0.33, 1, 0.68, 1); }
.ring-label-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--gold);
}
.ring-label-name { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--bg); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 24px; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.process-step { padding: 0 30px 0 0; padding-top: 72px; }
.step-num {
  font-family:'Bebas Neue',sans-serif; font-size: 18px;
  color: var(--gold); letter-spacing: 2px;
  position: absolute; margin-top: -72px;
  display: flex; align-items: center; gap: 12px;
}
.step-num::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.15); }
.step-content h3 { font-size: 22px; margin-bottom: 12px; }
.step-content p { font-size: 14px; color: var(--text-dim); line-height: 1.7; font-weight: 300; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden; transition: all 0.5s var(--ease);
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 50px; height: 50px; background: rgba(245,197,24,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold); margin-bottom: 22px; transition: 0.4s;
}
.service-card:hover .service-icon { background: var(--gold); color: var(--bg); box-shadow: 0 0 30px var(--gold-glow); transform: rotate(5deg) scale(1.1); }

.service-name { font-size: 22px; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 13px; color: var(--text-muted); padding-left: 14px; position: relative; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }
.service-num { position: absolute; bottom: 20px; right: 24px; font-family:'Bebas Neue',sans-serif; font-size: 64px; color: rgba(255,255,255,0.03); line-height: 1; transition: 0.3s; }
.service-card:hover .service-num { color: rgba(245,197,24,0.06); transform: scale(1.05); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg); padding: 100px 0; position: relative; overflow: hidden; }
.testimonials-parallax-text {
  position: absolute; top: 50%; left: -40px;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px; letter-spacing: -8px;
  color: rgba(255,255,255,0.012); pointer-events: none;
  user-select: none; white-space: nowrap;
}
.testimonials .container { max-width: 760px; position: relative; z-index: 1; }
.testimonials-slider { position: relative; min-height: 260px; }
.testimonial { display: none; animation: fadeSlide 0.5s ease; }
.testimonial.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-quote { font-family:'Bebas Neue',sans-serif; font-size: 80px; color: var(--gold); line-height: 0.6; margin-bottom: 24px; opacity: 0.5; }
.testimonial-text { font-size: 18px; line-height: 1.85; color: var(--text-dim); font-weight: 300; margin-bottom: 32px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 46px; height: 46px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.author-info { flex: 1; }
.author-info strong { display: block; font-size: 15px; }
.author-info span { font-size: 13px; color: var(--text-muted); }
.author-stars { color: var(--gold); font-size: 13px; display: flex; gap: 3px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.tctl { width: 42px; height: 42px; border: 1px solid var(--border); background: transparent; color: var(--text-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: none; transition: 0.3s; }
.tctl:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; gap: 8px; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); cursor: none; transition: all 0.3s; }
.tdot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--bg-2); position: relative; overflow: hidden; }
.contact-bg-text { position: absolute; bottom: -40px; right: -20px; font-family:'Bebas Neue',sans-serif; font-size: 280px; color: rgba(255,255,255,0.012); pointer-events: none; letter-spacing: -5px; line-height: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact-text { color: var(--text-dim); font-weight: 300; line-height: 1.85; margin-bottom: 40px; font-size: 15.5px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-link { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: 0.3s; }
.contact-link:hover { border-color: var(--border-gold); transform: translateX(8px); }
.cl-icon { width: 40px; height: 40px; background: rgba(245,197,24,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.cl-info { flex: 1; }
.cl-label { font-size: 11px; color: var(--text-muted); display: block; letter-spacing: 1px; text-transform: uppercase; }
.cl-value { font-size: 14px; display: block; margin-top: 2px; }
.cl-arrow { color: var(--text-muted); font-size: 12px; transition: transform 0.3s; }
.contact-link:hover .cl-arrow { transform: translateX(4px); color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,197,24,0.05); }

.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 14px; transition: border-color 0.3s, box-shadow 0.3s; outline: none; appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: none; }
.form-group select option { background: var(--bg-card); }
.form-success { display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 18px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 10px; color: #22c55e; font-size: 14px; }
.form-success.visible { display: flex; }
.form-success i { font-size: 18px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg); padding: 56px 0 28px; position: relative; overflow: hidden; }
.footer-top { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto 36px; padding: 0 40px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 40px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-glow { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(245,197,24,0.05) 0%, transparent 70%); pointer-events: none; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--bg-2); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.35s var(--ease-out);
  font-weight: 300;
}
.faq-item[open] .faq-q { color: var(--gold); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 780px;
}

/* ============================================
   HERO BACKGROUND VIDEO
   ============================================ */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-video.loaded { opacity: 0.28; }

/* ============================================
   WORK CARD — VIDEO THUMBNAIL
   ============================================ */
.wcard-thumb {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #0a0705;
  cursor: pointer;
}
.wcard--wide .wcard-thumb { height: 300px; }

.wcard-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.wcard-video.playing { opacity: 1; }

.wcard-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255,255,255,0.15);
  z-index: 0;
  transition: opacity 0.5s ease;
}
.wcard-video.playing ~ .wcard-thumb-fallback { opacity: 0; }

/* Play icon shown on hover */
.wcard-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 20px;
  padding-left: 4px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s, transform 0.4s var(--ease-out), box-shadow 0.3s;
  pointer-events: none;
}
.wcard:hover .wcard-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 40px var(--gold-glow);
}

/* "PREVIEW — MUTED" badge */
.wcard-muted-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.wcard-video.playing ~ .wcard-thumb-fallback ~ .wcard-play-btn ~ .wcard-muted-badge,
.wcard-thumb:has(.wcard-video.playing) .wcard-muted-badge { opacity: 1; }

/* Click-to-expand overlay on hover */
.wcard-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.wcard:hover .wcard-thumb::after { opacity: 1; }

/* ============================================
   FULL-PAGE VIDEO MODAL
   ============================================ */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.vid-modal.open {
  opacity: 1;
  pointer-events: all;
}

.vid-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 2, 0.96);
  backdrop-filter: blur(20px);
}

.vid-modal-inner {
  position: relative;
  z-index: 1;
  width: 92vw;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.45s var(--ease-out);
}
.vid-modal.open .vid-modal-inner {
  transform: scale(1) translateY(0);
}

.vid-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.vid-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text);
}
.vid-modal-close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--text);
  font-size: 20px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.vid-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: rotate(90deg);
}

.vid-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(245,197,24,0.1);
}

.vid-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  outline: none;
}

/* Custom video controls bar colour hint */
.vid-player::-webkit-media-controls-panel { background: rgba(12,9,5,0.9); }
.vid-player::-webkit-media-controls-play-button { filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg); }

/* ============================================
   MAGNETIC BUTTON
   ============================================ */
.magnetic { transition: transform 0.4s var(--ease-out) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { text-align: center; }
  .about-img-placeholder { margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 50px; }
  .process-steps::before { display: none; }
  .about-badge { position: static !important; margin-top: 12px; }
  .about-float-card { position: static; display: inline-block; margin-top: 12px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav, .nav.scrolled { padding: 14px 24px; }
  .hero { padding: 90px 24px 50px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stats .stat { padding: 18px 0; }
  .stat-divider { width: 100%; height: 1px; }
  .film-strip { display: none; }
  .work-pinned { height: auto; }
  .work-pin-sticky { position: relative; height: auto; overflow: visible; }
  .work-track-wrap { overflow-x: auto; padding-bottom: 20px; }
  .work-header { padding: 60px 24px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .work-track { padding: 0 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 36px; }
  .container { padding: 0 24px; }
  .footer-top, .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .skill-rings { justify-content: center; }
  .contact-bg-text { font-size: 100px; }
  .showreel-content { padding: 80px 24px; }
}
