/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Oil painting palette — pulled directly from the portrait */
  --bg:           #2e1245;          /* deep violet shadow */
  --bg2:          #3d1a5c;          /* mid violet */
  --bg3:          #4a2070;          /* lighter violet */
  --purple:       #7c5cbf;          /* muted violet mid */
  --purple-light: #a688d4;          /* lavender highlight */
  --gold:         #b87830;          /* warm amber/bronze */
  --gold-light:   #d4a055;          /* lighter amber */
  --lavender:     #c8b8e0;          /* soft lavender */
  --grad:         linear-gradient(135deg, #2e1245 0%, #7c5cbf 60%, #a688d4 100%);
  --grad2:        linear-gradient(135deg, #c8b8e0 0%, #7c5cbf 45%, #b87830 100%);
  --grad-gold:    linear-gradient(135deg, #7c5cbf 0%, #b87830 100%);
  --glass-bg:     rgba(124,92,191,0.12);
  --glass-border: rgba(200,184,224,0.2);
  --text:         #f2eeff;
  --text-muted:   rgba(242,238,255,0.52);
  --font-body:    'Space Grotesk', sans-serif;
  --font-display: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: #2e1245;
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== PAINTED CANVAS BACKGROUND ===== */
/* Layer 1 — base canvas color patches like the portrait bg */
#canvas-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* top-left deep purple corner */
    radial-gradient(ellipse 55% 45% at  5% 10%,  #1e0a35 0%, transparent 65%),
    /* top-right amber sweep */
    radial-gradient(ellipse 45% 40% at 90% 8%,   #7a4818 0%, transparent 55%),
    /* center-right mid amber */
    radial-gradient(ellipse 35% 30% at 80% 35%,  #a06828 0%, transparent 50%),
    /* center large violet body */
    radial-gradient(ellipse 70% 60% at 40% 55%,  #4a1e72 0%, transparent 60%),
    /* bottom-left deep shadow */
    radial-gradient(ellipse 50% 40% at  5% 85%,  #3a156a 0%, transparent 55%),
    /* bottom-right mid purple */
    radial-gradient(ellipse 40% 35% at 90% 90%,  #5c2880 0%, transparent 55%),
    /* scattered lighter lavender patches */
    radial-gradient(ellipse 25% 20% at 55% 20%,  rgba(166,136,212,0.25) 0%, transparent 50%),
    radial-gradient(ellipse 20% 15% at 25% 60%,  rgba(124,92,191,0.2)  0%, transparent 50%);
}

/* Layer 2 — paint stroke texture using SVG turbulence */
#canvas-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.018 0.008' numOctaves='5' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='3'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='1.4'/%3E%3CfeFuncG type='linear' slope='0.4'/%3E%3CfeFuncB type='linear' slope='1.8'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23p)'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  mix-blend-mode: soft-light;
}

/* Layer 3 — fine grain like canvas tooth */
#canvas-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: overlay;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section { padding: 120px 0; position: relative; z-index: 2; }

/* ===== GLASS ===== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ===== GRADIENT TEXT ===== */
.grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(30,10,53,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(46,18,69,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 14px rgba(124,92,191,0.5);
}

.footer-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-ring.small { width: 28px; height: 28px; }

.logo-star { font-size: 14px; color: white; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--purple-light); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: var(--grad);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-cta:hover { opacity: 0.85; transform: scale(1.04); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
  filter: saturate(1.4);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(30,10,53,0.9) 0%,
    rgba(74,32,112,0.5) 55%,
    rgba(184,120,48,0.15) 100%);
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background:
    radial-gradient(ellipse 55% 45% at 35% 60%, rgba(74,32,112,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 35% 28% at 80% 35%, rgba(184,120,48,0.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-identity { max-width: 900px; }

.hero-eyebrow {
  display: block;
  font-size: 0.95rem;
  color: var(--purple-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-big-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.hstat { text-align: center; }

.hstat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hstat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hstat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  background: var(--grad);
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(139,92,246,0.35);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--grad);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%,100% { width: 40px; opacity: 1; }
  50% { width: 60px; opacity: 0.5; }
}

/* ===== FEATURED REEL ===== */
.featured-reel {
  position: relative;
  z-index: 2;
  padding: 60px 0 0;
}

.featured-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.featured-label .label-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-label .label-line {
  flex: 1;
  height: 1px;
  background: var(--grad);
  max-width: 200px;
  opacity: 0.5;
}

/* Full-width edge-to-edge video — fills viewport width */
.featured-fullscreen {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

.featured-fullscreen video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 92vh;
  display: block;
  object-fit: contain;
  background: transparent;
  position: relative;
  z-index: 2;
}

/* ── Cinematic corner frame ── */
.frame-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 3;
  pointer-events: none;
}

.frame-corner::before,
.frame-corner::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
  opacity: 0.7;
}

/* horizontal bar */
.frame-corner::before { width: 100%; height: 2px; }
/* vertical bar */
.frame-corner::after  { width: 2px; height: 100%; }

.frame-tl { top: 0; left: 0; }
.frame-tl::before { top: 0; left: 0; }
.frame-tl::after  { top: 0; left: 0; }

.frame-tr { top: 0; right: 0; }
.frame-tr::before { top: 0; right: 0; }
.frame-tr::after  { top: 0; right: 0; }

.frame-bl { bottom: 0; left: 0; }
.frame-bl::before { bottom: 0; left: 0; }
.frame-bl::after  { bottom: 0; left: 0; }

.frame-br { bottom: 0; right: 0; }
.frame-br::before { bottom: 0; right: 0; }
.frame-br::after  { bottom: 0; right: 0; }

/* subtle letterbox bars top/bottom */
.featured-fullscreen::before,
.featured-fullscreen::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--purple-light), var(--gold), var(--purple-light), transparent);
  z-index: 4;
  opacity: 0.5;
}
.featured-fullscreen::before { top: 0; }
.featured-fullscreen::after  { bottom: 0; }

/* Scanline overlay for film feel */
.frame-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  opacity: 0.4;
}

.featured-overlay-info {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  pointer-events: none;
}

.featured-overlay-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.reel-tag {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  background: var(--grad);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.label-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.label-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--grad);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text strong { color: var(--purple-light); }

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--purple-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(139,92,246,0.2);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 0.5rem;
}

.about-chips span {
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-size: 0.8rem;
  color: var(--purple-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 70% 65% at 30% 40%, rgba(46,18,69,0.8)    0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 78% 62%, rgba(184,120,48,0.4)  0%, transparent 50%),
    radial-gradient(ellipse 35% 28% at 60% 18%, rgba(166,136,212,0.25) 0%, transparent 50%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 4s ease infinite;
  filter: blur(18px);
}

@keyframes glow-pulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid rgba(196,168,245,0.3);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.7),
    0 0 80px rgba(124,58,237,0.4),
    0 0 30px rgba(212,149,106,0.15);
  position: relative;
  z-index: 1;
}

.about-photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 28px;
  border: 1px dashed var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}

.about-photo-placeholder span {
  font-size: 2.5rem;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-photo-placeholder strong { color: var(--purple-light); }

/* Show placeholder, hide img when no-photo class is added */
.no-photo .about-photo { display: none; }
.no-photo .about-photo-placeholder { display: flex; }

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(180deg, transparent 0%, rgba(74,32,112,0.12) 50%, transparent 100%);
  overflow: hidden;
}

.services-grid {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card {
  padding: 2.5rem 3rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: center;
}

.service-card:first-child {
  border-top: 1px solid var(--glass-border);
  border-radius: 16px 16px 0 0;
}

.service-card:last-child {
  border-radius: 0 0 16px 16px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.4s, width 0.4s;
}

.service-card::after {
  content: '→';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  font-size: 1.5rem;
  color: var(--purple-light);
  opacity: 0;
  transition: all 0.4s;
}

.service-card:hover::before { 
  opacity: 1;
  width: 6px;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.service-card:hover {
  background: rgba(139,92,246,0.08);
  border-color: rgba(167,139,250,0.3);
  padding-left: 3.5rem;
}

.service-icon {
  font-size: 2.2rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== WORK ===== */
.work-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.filter-btn.active {
  background: var(--grad);
  border-color: transparent;
  color: white;
  font-weight: 600;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.work-card {
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.5);
}

.work-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.work-card.featured .work-thumb { height: 300px; }

.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(96,165,250,0.12));
}

.thumb-placeholder span { font-size: 2.5rem; }
.thumb-placeholder p { font-size: 0.85rem; color: var(--text-muted); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,14,31,0.95) 0%, rgba(16,14,31,0.5) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}

.work-card:hover .work-overlay { opacity: 1; }

.work-cat {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: var(--grad);
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.work-link {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s;
}

.work-link:hover { color: var(--purple-light); }

.work-info {
  padding: 1.2rem;
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.work-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.work-cta { text-align: center; margin-top: 3rem; }

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid var(--glass-border);
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}

/* override gradient text for step-num */
.step-num {
  background: var(--glass-bg);
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.step-num::after {
  content: attr(data-text);
  position: absolute;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  margin-top: 32px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(139,92,246,0.08);
}

.contact-link:hover {
  border-color: var(--purple);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(139,92,246,0.15);
}

.cl-icon { font-size: 1.5rem; }

.contact-link strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.contact-link small { font-size: 0.78rem; color: var(--text-muted); }

.contact-form {
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(139,92,246,0.1);
}

.form-group { margin-bottom: 1rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(157,123,234,0.08);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select option { background: var(--bg2); color: var(--text); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background: var(--grad);
  border: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-submit:hover { 
  opacity: 0.88; 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.3);
}

.btn-icon {
  animation: spin-slow 4s linear infinite;
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

.footer-ig {
  font-size: 0.85rem;
  color: var(--purple-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-ig:hover { color: var(--blue); }

/* ===== ANIMATIONS ===== */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.about-stats .stat-card:nth-child(2) { transition-delay: 0.1s; }
.about-stats .stat-card:nth-child(3) { transition-delay: 0.2s; }
.about-stats .stat-card:nth-child(4) { transition-delay: 0.3s; }

/* ===== COMING SOON SECTION ===== */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coming-soon-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--gold);
  background: rgba(184,120,48,0.12);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}

/* Mock browser card */
.cs-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.cs-browser-bar {
  background: rgba(255,255,255,0.06);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--glass-border);
}

.cs-browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--glass-border);
}

.cs-url {
  margin-left: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 0.2rem 1rem;
  border-radius: 20px;
  flex: 1;
  text-align: center;
}

.cs-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  filter: blur(3px);
}

.cs-line {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
}
.cs-line.long  { width: 90%; }
.cs-line.medium { width: 65%; }
.cs-line.short { width: 40%; }

.cs-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.cs-block {
  height: 60px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
}

/* Overlay with lock */
.cs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,18,69,0.6);
  backdrop-filter: blur(6px);
}

.cs-lock {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.lock-icon { font-size: 2rem; }

.cs-lock p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cs-tag {
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: var(--grad-gold);
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
/* Fix global overflow on all screen sizes */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .about-grid, .contact-grid, .coming-soon-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-wrap { order: -1; }
  .about-photo, .about-photo-placeholder { max-width: 320px; margin: 0 auto; }
  .service-card { 
    grid-template-columns: 50px 1fr; 
    gap: 1.2rem;
    padding: 2rem 1.5rem;
  }
  .service-card::after { right: 1.5rem; }
  .work-grid { grid-template-columns: 1fr; }
  .process-steps { gap: 2rem; }
  .process-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 80px 0; }
}

@media (max-width: 600px) {
  .nav { padding: 0.8rem 1rem; }
  .nav-cta { display: none; }
  .hero-big-title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero-stats { flex-wrap: wrap; gap: 0.8rem; }
  .hstat-divider { display: none; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .service-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.2rem;
    text-align: center;
  }
  .service-icon { justify-content: center; }
  .service-card::after { display: none; }
  .container { padding: 0 1rem; }
  .section { padding: 60px 0; }
  .featured-reel { padding: 40px 0 0; }
  .featured-label { padding: 0 1rem; }
}

/* ===== VIDEOS SECTION ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 20px 40px rgba(139,92,246,0.2);
}

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: transparent;
}

.vid-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.video-card:hover .vid-preview {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,14,26,0.35);
  transition: background 0.3s;
}

.video-card:hover .video-play-btn {
  background: rgba(15,14,26,0.2);
}

.play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  padding-left: 4px;
  box-shadow: 0 0 30px rgba(139,92,246,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(139,92,246,0.7);
}

.video-duration-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: var(--grad);
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
}

.video-info {
  padding: 1.2rem;
}

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.video-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CINEMA LAYOUT ===== */
.videos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.videos-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.6;
}

.cinema-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
  overflow: hidden;
}

/* Cinema player — sized by video content, no black bars */
.cinema-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124,92,191,0.2);
  background: rgba(20, 8, 40, 0.7);
  width: 100%;
}

.cinema-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  background: transparent;
  vertical-align: top;
}

.cinema-now-playing {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(7,5,15,0.9));
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.now-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 1.5s ease infinite;
  flex-shrink: 0;
}

.cinema-playlist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 75vh;
  overflow-y: auto;
  padding-right: 4px;
  width: 100%;
}

.cinema-playlist::-webkit-scrollbar { width: 4px; }
.cinema-playlist::-webkit-scrollbar-track { background: transparent; }
.cinema-playlist::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }

.playlist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
  background: var(--glass-bg);
}

.playlist-item:hover,
.playlist-item.active {
  border-color: var(--purple);
  background: rgba(139,92,246,0.1);
}

.playlist-item.active .pl-num {
  background: var(--grad);
  color: white;
}

.pl-num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.3s;
}

.pl-info { flex: 1; min-width: 0; }

.pl-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ===== VIDEO LIGHTBOX ===== */
#videoLightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#videoLightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,5,15,0.92);
  backdrop-filter: blur(12px);
}

.lb-inner {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(860px, 95vw);
  min-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

#videoLightbox.active .lb-inner {
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(10px);
}

.lb-close:hover { background: rgba(139,92,246,0.3); }

#lbVideo {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
}

.lb-info {
  padding: 1.2rem 1.5rem;
}

.lb-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lb-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .cinema-layout { grid-template-columns: 1fr 220px; }
}

@media (max-width: 900px) {
  .cinema-layout { grid-template-columns: 1fr; }
  .cinema-video { max-height: 60vh; }
  .cinema-playlist { max-height: 300px; }
  .videos-header { flex-direction: column; align-items: flex-start; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 600px) {
  .cinema-video { max-height: 50vh; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}
