/* ═══════════════════════════════════════════════════════════════════
   B.I.G visuals — Premium Portfolio Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Muted, sophisticated palette */
  --bg:        #f5f3f0;
  --bg-warm:   #ece9e4;
  --bg-dark:   #1a1917;
  --bg-darker: #0f0e0d;
  --text:      #1a1917;
  --text-muted:#6b6660;
  --text-light:#9b9590;
  --accent:    #c8b8a2;
  --accent-warm:#a89880;
  --border:    #d6d0c8;
  --border-light: #e5e0d8;
  --white:     #faf8f6;
  --black:     #0f0e0d;
  
  /* Typography scale */
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  
  /* Spacing */
  --section-pad: clamp(80px, 12vw, 160px);
  --container-max: 1300px;
  --gap: clamp(20px, 3vw, 40px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--bg-dark);
  color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Film Grain Overlay ─────────────────────────────────────── */
.film-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── Custom Cursor ──────────────────────────────────────────── */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: difference;
}

.custom-cursor.active {
  opacity: 1;
}

.custom-cursor.hovering {
  width: 40px;
  height: 40px;
  background: var(--white);
  mix-blend-mode: difference;
}

/* ── Animation Reveal System ──────────────────────────────── */
.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.anim-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(245, 243, 240, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s ease;
  color: var(--text);
}

.nav-cta:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.nav-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-cta:hover .arrow {
  transform: translate(2px, -2px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
  color: var(--text-muted);
}

.mobile-cta {
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 32px;
  border: 1px solid var(--text);
  border-radius: 100px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.mobile-cta:hover {
  background: var(--text);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 4vw, 60px) 60px;
  overflow: hidden;
  background: var(--bg);
}

.hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 8px 16px 8px 8px;
  background: rgba(26, 25, 23, 0.04);
  border-radius: 100px;
}

.hero-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-line {
  display: block;
}

.hero-line:nth-child(2) {
  color: var(--text-muted);
}

.hero-line:nth-child(3) {
  color: var(--accent-warm);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 500px;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translate(3px, -3px);
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--bg-darker);
  box-shadow: 0 8px 30px rgba(15, 14, 13, 0.15);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--text);
  background: rgba(26, 25, 23, 0.04);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}

/* Hero Video */
.hero-video-wrap {
  position: relative;
  z-index: 3;
  margin-top: 60px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-video-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-dark);
  aspect-ratio: 16 / 9;
  box-shadow: 
    0 20px 60px rgba(15, 14, 13, 0.12),
    0 4px 20px rgba(15, 14, 13, 0.08);
}

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

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,14,13,0.08) 0%, transparent 30%, transparent 70%, rgba(15,14,13,0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-video-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.video-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 3;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — Common
   ═══════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: clamp(40px, 6vw, 80px);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg);
}

.about-content {
  max-width: 700px;
}

.about-text {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-text:last-child {
  color: var(--text-muted);
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 60px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES (What I Do)
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--white);
}

.services-list {
  border-top: 1px solid var(--border);
}

.service-item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: all 0.4s ease;
}

.service-item:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(200,184,162,0.06) 0%, transparent 50%);
}

.service-number {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--text-light);
  min-width: 32px;
}

.service-body {
  flex: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.service-item:hover .service-title {
  color: var(--accent-warm);
}

.service-desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: var(--text-muted);
  font-weight: 300;
}

.service-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent-warm);
}

/* ═══════════════════════════════════════════════════════════════
   VISUAL BREAK
   ═══════════════════════════════════════════════════════════════ */
.visual-break {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.vb-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 50px);
  flex-wrap: wrap;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.vb-track-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  z-index: 1;
}

.vb-word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  opacity: 0.7;
}

.vb-word:hover {
  opacity: 1;
}

.vb-word:nth-child(1) {
  color: var(--accent);
}

.vb-word:nth-child(7) {
  color: var(--accent-warm);
}

.vb-separator {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: var(--accent);
  opacity: 0.3;
}

.vb-word-ghost {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.vb-separator-ghost {
  font-size: 4rem;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   WORK / PORTFOLIO
   ═══════════════════════════════════════════════════════════════ */
.work {
  background: var(--bg);
}

.work-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.filter-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.project-card {
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card.hidden {
  display: none;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-warm);
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.project-card:hover .project-thumb {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.project-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 14, 13, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-hover {
  opacity: 1;
}

.project-play {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--text);
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-info {
  padding: 16px 4px 0;
}

.project-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.project-cat {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* Reel placeholder */
.project-media-reel {
  background: var(--bg-dark);
}

.reel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
}

.reel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 0.9rem;
}

.reel-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Placeholder cards */
.project-placeholder .project-media {
  border: 2px dashed var(--border);
  background: transparent;
}

.placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
}

.placeholder-plus {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
}

.placeholder-text {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.project-placeholder:hover .placeholder-inner {
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH
   ═══════════════════════════════════════════════════════════════ */
.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 4vw, 48px);
}

.approach-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.approach-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--border);
  line-height: 1;
  min-width: 60px;
  transition: color 0.3s ease;
}

.approach-step:hover .approach-num {
  color: var(--accent-warm);
}

.approach-dash {
  font-size: 1.2rem;
  color: var(--text-light);
  padding-top: 12px;
}

.approach-body {
  padding-top: 8px;
}

.approach-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.approach-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   TOOLS
   ═══════════════════════════════════════════════════════════════ */
.tools {
  background: var(--bg);
}

.tools-content {
  max-width: 600px;
}

.tools-primary {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
}

.tools-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tag {
  font-size: 0.82rem;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.tool-tag:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(26, 25, 23, 0.03);
}

/* ═══════════════════════════════════════════════════════════════
   SHOWREEL STRIP (Marquee)
   ═══════════════════════════════════════════════════════════════ */
.showreel-strip {
  background: var(--bg-dark);
  padding: 20px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.strip-dot {
  font-size: 0.4rem;
  opacity: 0.3;
}

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

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */
.cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta .section-label {
  color: var(--text-light);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-highlight {
  color: var(--accent);
}

.cta-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
}

.cta-actions {
  margin-bottom: 32px;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.cta .btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}

.cta-email {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.cta-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-email a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s ease;
}

.footer-email a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  padding-top: 24px;
  margin-top: 8px;
}

.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 1.2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.modal-close:hover {
  color: white;
}

.modal-video {
  width: 100%;
  border-radius: 8px;
  background: black;
  max-height: 80vh;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 40px;
  }
  
  .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .vb-track {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  
  .work-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-video-frame {
    border-radius: 8px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    justify-content: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .vb-word {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  
  .vb-separator {
    font-size: 1.2rem;
  }
  
  .cta-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .approach-step {
    flex-wrap: wrap;
  }
  
  .approach-dash {
    display: none;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .anim-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .strip-track {
    animation: none;
  }
  
  .scroll-line::after {
    animation: none;
  }
}
