/* =============================================
   ALEX VOSS — CINEMATIC VIDEO EDITOR PORTFOLIO
   Premium Dark Editorial Aesthetic
   ============================================= */

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

:root {
  /* Colors */
  --bg: #050505;
  --bg-2: #050505;
  --bg-card: #111111;
  --bg-card-2: #161616;
  --white: #f5f3ef;
  --silver: #c8c4bc;
  --muted: #6b6764;
  --purple: #9b77d4;
  --purple-light: #c4a9f0;
  --purple-glow: rgba(155, 119, 212, 0.15);
  --purple-glow-strong: rgba(155, 119, 212, 0.35);
  --accent: #b8a9f5;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(155, 119, 212, 0.4);

  /* Chrome gradient */
  --chrome: linear-gradient(135deg, #e8e8e8 0%, #ffffff 25%, #b0b0b0 50%, #d8d8d8 70%, #ffffff 85%, #909090 100%);
  --chrome-purple: linear-gradient(135deg, #c4a9f0 0%, #ffffff 30%, #9b77d4 55%, #e0d4ff 75%, #ffffff 90%, #7a5bb5 100%);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container: 1320px;
  --pad-section: 120px;
  --pad-section-sm: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Mobile: remove blue tap highlight flash */
a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }

/* === GRAIN OVERLAY === */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  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: 200px 200px;
  mix-blend-mode: overlay;
}

/* === AMBIENT BACKGROUND ANIMATION === */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.06;
  animation: floatOrb 20s infinite alternate ease-in-out;
}
.orb-1 {
  width: 50vw;
  height: 50vw;
  background: var(--purple);
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}
.orb-2 {
  width: 60vw;
  height: 60vw;
  background: var(--purple-light);
  bottom: -20%;
  right: -10%;
  animation-duration: 30s;
  animation-delay: -5s;
}
.orb-3 {
  width: 45vw;
  height: 45vw;
  background: var(--accent);
  top: 40%;
  left: 50%;
  animation-duration: 35s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 10%) scale(1.1); }
  66% { transform: translate(-5%, 5%) scale(0.9); }
  100% { transform: translate(10%, -5%) scale(1.05); }
}

/* === CONTAINER === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}

.section-pad { padding: var(--pad-section) 0; }

/* === CHROME TEXT === */
.chrome-text {
  background: var(--chrome-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--silver);
}

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.logo-dot { color: var(--purple); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--purple-light);
  box-shadow: 0 0 20px var(--purple-glow-strong);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,119,212,0.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: glow-pulse 8s ease-in-out infinite alternate;
}
.glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155,119,212,0.15) 0%, transparent 70%);
  bottom: 100px; right: -80px;
  animation: glow-pulse 10s ease-in-out infinite alternate-reverse;
}
@keyframes glow-pulse {
  from { transform: scale(1) translate(0,0); opacity: 0.8; }
  to   { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

.hero-bg-text {
  position: absolute;
  bottom: -0.05em;
  left: -0.02em;
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: var(--container);
}

/* Hero left */
.hero-left { padding-top: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  background: rgba(155,119,212,0.1);
  border: 1px solid rgba(155,119,212,0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-title .italic-serif { font-style: italic; font-weight: 300; }

.hero-role {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 380px;
  margin-bottom: 28px;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.social-chip:hover {
  border-color: var(--border-hover);
  color: var(--white);
  box-shadow: 0 0 16px var(--purple-glow);
}

/* Hero card */
.hero-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.hero-card {
  position: relative;
  width: 280px;
  background: linear-gradient(145deg, #1a1a1a, #111111);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px var(--purple-glow), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.hero-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 60px 100px rgba(0,0,0,0.7), 0 0 60px var(--purple-glow-strong), inset 0 1px 0 rgba(255,255,255,0.15);
}
.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(155,119,212,0.3), transparent 50%, rgba(155,119,212,0.1));
  pointer-events: none;
  z-index: 1;
}
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(17,17,17,0.8) 100%);
}
.card-info {
  padding: 14px 18px 10px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.card-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  background: rgba(155,119,212,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}
.card-actions {
  display: flex;
  gap: 10px;
  padding: 0 18px 14px;
  position: relative;
  z-index: 2;
}
.btn-accept {
  flex: 1;
  padding: 10px;
  background: var(--white);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-accept:hover {
  background: var(--purple-light);
  box-shadow: 0 0 20px var(--purple-glow-strong);
}
.btn-decline {
  flex: 1;
  padding: 10px;
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-decline:hover { border-color: var(--border-hover); color: var(--white); }
.card-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80; }
  50% { opacity: 0.7; box-shadow: 0 0 14px #4ade80; }
}

.hero-floating-badge {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.float-2 { top: -20px; right: -40px; }
.float-3 { bottom: 60px; left: -50px; }

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
.hero-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hstat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
}
.hstat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hstat-lbl {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
  animation: scroll-grow 2s ease-in-out infinite;
}
@keyframes scroll-grow {
  0%, 100% { width: 40px; opacity: 0.5; }
  50% { width: 60px; opacity: 1; }
}

/* Hero ticker */
.hero-ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 50px 0 30px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--muted);
  flex-shrink: 0;
}
.ticker-track .sep { color: var(--purple); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Float animations for badges */
.float-1 { animation: float-a 5s ease-in-out infinite; }
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-2 { animation: float-b 6s ease-in-out infinite 1s; }
@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.float-3 { animation: float-c 7s ease-in-out infinite 0.5s; }
@keyframes float-c {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* === CREDIBILITY / SOCIAL PROOF === */
.credibility { background: var(--bg-2); padding-top: 40px !important; }
.credibility-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  margin-top: 16px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.credibility-sub strong {
  color: var(--white);
  font-weight: 600;
}
.credibility-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.credibility-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.credibility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--purple-glow);
  border-color: var(--border-hover);
}
.credibility-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.credibility-card.main-proof .credibility-img-wrap {
  height: 300px;
}
.credibility-img-wrap.portrait {
  height: 380px;
}
.credibility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.credibility-card:hover .credibility-img {
  transform: scale(1.05);
}
.credibility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.credibility-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(155,119,212,0.8);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.credibility-info {
  padding: 24px;
  flex-grow: 1;
}
.credibility-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.credibility-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

@media (max-width: 1024px) {
  .credibility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credibility-card.main-proof {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .credibility-grid {
    grid-template-columns: 1fr;
  }
  .credibility-card.main-proof .credibility-img-wrap {
    height: 200px;
  }
  .credibility-img-wrap.portrait {
    height: 300px;
  }
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr 280px;
  gap: 60px;
  align-items: start;
}
.about-label-col { padding-top: 8px; }
.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 20px;
  max-width: 600px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  background: rgba(155,119,212,0.08);
  border: 1px solid rgba(155,119,212,0.2);
  padding: 7px 16px;
  border-radius: 100px;
}
.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.stat-n {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-n sup {
  font-size: 1rem;
  font-weight: 300;
  color: var(--purple-light);
}
.stat-l {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === SERVICES === */
.services { background: var(--bg-2); padding-top: 40px !important; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--purple-glow);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.svc-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 20px;
}
.svc-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* === TOOLS === */
.tools { background: var(--bg); padding-bottom: 40px !important; }
.tools-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.tools-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  margin-top: 16px;
}
.tools-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 100px;
  cursor: default;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tool-chip:hover {
  border-color: var(--purple);
  background: rgba(155,119,212,0.1);
  box-shadow: 0 0 20px var(--purple-glow);
  transform: translateY(-2px) scale(1.02);
}
.tool-icon { font-size: 1.1rem; }
.tool-svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 2px;
}

/* === WORK === */
.work { background: var(--bg-2); padding-top: 40px !important; }

/* Showcase image wrap — full area is clickable */
.showcase-img-wrap { cursor: pointer; }
.work-showcase {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: border-color 0.3s;
}
.work-showcase:hover { border-color: var(--border-hover); }
.showcase-img-wrap {
  position: relative;
  overflow: hidden;
}
.showcase-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.work-showcase:hover .showcase-img { transform: scale(1.03); }
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-showcase:hover .showcase-overlay { opacity: 1; }
.showcase-play {
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bg);
  text-decoration: none;
  padding-left: 4px;
  transition: transform 0.2s, background 0.2s;
}
.showcase-play:hover {
  transform: scale(1.1);
  background: var(--purple-light);
}
.showcase-info {
  padding: 40px 40px 40px 0;
}
.proj-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1;
  margin-bottom: -10px;
}
.proj-cat {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  display: block;
  margin-bottom: 12px;
}
.proj-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.proj-title em { font-style: italic; font-weight: 300; }
.proj-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 24px;
}
.proj-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.proj-meta-item {
  display: flex;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--silver);
}
.proj-meta-item span {
  color: var(--muted);
  min-width: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 1px;
}
.proj-result {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--purple-light);
  margin-bottom: 20px;
  padding: 10px 16px;
  background: rgba(155,119,212,0.08);
  border-radius: 8px;
  border-left: 2px solid var(--purple);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  box-shadow: 0 0 20px var(--purple-glow);
}

/* Project grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.proj-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px var(--purple-glow);
}
.proj-card-img-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.proj-card-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.proj-card:hover .proj-card-img { transform: scale(1.08); }
.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.proj-card:hover .proj-card-overlay { opacity: 1; }
.proj-card-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(155,119,212,0.9);
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 0.2s;
}
.proj-card-cta:hover { background: var(--purple); }
/* Card body sits as a slim strip at the very bottom of the image wrap */
.proj-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  backdrop-filter: blur(0px);
  z-index: 2;
}
.proj-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.proj-cat-sm {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.proj-num-sm {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.proj-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
/* Hide the long description — keep only category, title & tools */
.proj-card-desc {
  display: none;
}
.proj-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.proj-tools span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.proj-card-portrait .proj-card-img { min-height: 300px; }

/* === CLIENT RESULTS === */
.results-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.results-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.results-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
.results-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
}
.results-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.results-mega-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  background: rgba(155,119,212,0.05);
  border: 1px solid rgba(155,119,212,0.15);
  padding: 16px 24px;
  border-radius: 16px;
}
.results-mega-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.results-mega-num sup {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--purple-light);
}
.results-mega-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.results-label-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(255,255,255,0.05);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.results-content-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
}
.results-split-left {
  display: flex;
  flex-direction: column;
}
.results-split-right {
  display: flex;
  flex-direction: column;
}
.reel-shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reel-shot-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.reel-shot-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
  box-shadow: 0 10px 30px rgba(155, 119, 212, 0.3);
}
.reel-shot-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 8;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}
.reel-shot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s, filter 0.3s;
  filter: brightness(0.9);
}
.reel-shot-card:hover .reel-shot-img {
  opacity: 1;
  filter: brightness(1.1);
}
/* Badges removed */
.followers-grid-stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.follower-shot-card {
  position: relative;
  transition: transform 0.3s;
}
.follower-shot-card:hover {
  transform: translateY(-4px);
}
.follower-shot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: opacity 0.3s, box-shadow 0.3s;
}
.follower-shot-card:hover .follower-shot-img {
  box-shadow: 0 10px 30px rgba(155, 119, 212, 0.3);
}

.results-trust-box {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.trust-icon {
  font-size: 2rem;
  line-height: 1;
  background: rgba(155,119,212,0.1);
  padding: 12px;
  border-radius: 12px;
}
.trust-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.trust-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--silver);
}

/* === INTERN COLLABORATIONS === */
.intern-section {
  margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 60px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.intern-section::before {
  content: "RESTAURANT";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 16vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}
.cinematic-section::before {
  content: "CINEMATIC";
}
.restaurant-grid {
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.intern-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.intern-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intern-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
.intern-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
}
.intern-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.intern-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple-light);
  background: rgba(155,119,212,0.1);
  border: 1px solid rgba(155,119,212,0.3);
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* === PROCESS === */

.process { background: var(--bg); padding-bottom: 40px !important; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  padding: 10px 20px;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.process-step:hover {
  transform: translateY(-6px);
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
}
.process-arrow {
  font-size: 1.3rem;
  color: var(--purple);
  padding: 0 8px;
  margin-top: 50px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* === SOCIAL CTA SECTION === */
.social-cta-section {
  margin-top: 40px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.social-cta-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.social-cta-text span {
  font-family: var(--font-serif);
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0 4px;
}
.social-cta-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  position: relative;
  flex-wrap: wrap;
}
.social-cta-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.social-link-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none !important;
  color: #fff !important;
  position: relative;
  padding-bottom: 5px;
  transition: transform 0.3s ease;
}
.social-link-item:hover {
  transform: translateX(10px);
}
.social-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--purple);
  transition: width 0.5s var(--ease);
}
.social-link-item:hover::after {
  width: 100%;
}
.social-link-item .sl-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--purple);
  letter-spacing: 0.15em;
  opacity: 0.8;
}
.social-link-item .sl-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.social-link-item .sl-name em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.social-link-item:hover .sl-name,
.social-link-item:hover .sl-name em {
  color: var(--purple-light);
}

/* Arrow Pointer */
.social-pointer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
  animation: floatArrow 3s ease-in-out infinite;
}
@keyframes floatArrow {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
}
.pointer-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--purple-light);
  margin-top: 10px;
  transform: rotate(-10deg);
}

/* Responsive adjustment for massive typography */
@media (max-width: 768px) {
  .social-cta-layout { gap: 40px; }
  .social-link-item .sl-name { font-size: 2.2rem; }
  .social-link-item { gap: 15px; }
  .social-pointer { display: none; } /* Hide arrow on small screens if too cluttered */
}

/* === EXPERIENCE === */
.experience { background: var(--bg-2); padding-top: 40px !important; }
.exp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
}
.exp-timeline::before {
  content: '';
  position: absolute;
  left: 160px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.exp-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.exp-item:last-child { border-bottom: none; }
.exp-item::before {
  content: '';
  position: absolute;
  left: 155px;
  top: 44px;
  width: 9px; height: 9px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple-glow-strong);
  z-index: 1;
}
.exp-year {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: right;
  padding-top: 6px;
  padding-right: 24px;
  white-space: nowrap;
}
.exp-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.exp-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  display: block;
  margin-bottom: 10px;
}
.exp-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 640px;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: linear-gradient(145deg, #f5f3ef, #ece9e3);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  color: #1a1a1a;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px var(--purple-glow);
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(155,119,212,0.25);
  line-height: 0.8;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.testi-author span {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #666;
}

/* === CONTACT === */
.contact {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,119,212,0.2) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
}
.contact-headline em { font-style: italic; font-weight: 300; }
.contact-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 0 30px var(--purple-glow-strong);
  transform: translateY(-2px);
}
.contact-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--purple-light); }

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 5-breakpoint system
   1280  Large tablet / small laptop
   1024  Tablet landscape
    768  Tablet portrait / large mobile
    480  Mobile
    360  Small mobile
   ============================================================ */

/* ── 1280px — Large tablet ─────────────────────────────────── */
@media (max-width: 1280px) {
  .container { padding: 0 48px; }
  .nav-inner { padding: 0 48px; }
  .hero { padding: 140px 48px 0; }
  .hero-title { font-size: clamp(3.5rem, 7vw, 6rem); }
  .hero-content { gap: 40px; }
  .hero-card { width: 260px; }
  .about-grid { grid-template-columns: 140px 1fr 240px; gap: 40px; }
  .about-stats-col { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .work-showcase { grid-template-columns: 1fr 360px; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .intern-section-header { gap: 20px; }
}

/* ── 1024px — Tablet landscape ─────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-section: 90px; }
  .container { padding: 0 36px; }
  .nav-inner { padding: 0 36px; }
  .hero { padding: 130px 36px 0; }

  /* Hero stacks */
  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }
  .hero-left { text-align: center; max-width: 600px; }
  .hero-bio { max-width: 100%; }
  .hero-socials { justify-content: center; }
  .hero-right { align-items: center; width: 100%; max-width: 440px; }
  .hero-stats-col { grid-template-columns: repeat(4, 1fr); }
  .scroll-hint { display: none; }
  .hero-floating-badge { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-label-col { display: none; }
  .about-stats-col { grid-template-columns: repeat(4, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Tools */
  .tools-inner { grid-template-columns: 1fr; gap: 36px; }
  .tools-text { max-width: 600px; }

  /* Work */
  .work-showcase { grid-template-columns: 1fr; }
  .showcase-img { height: 340px; }
  .showcase-info { padding: 32px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { flex-wrap: wrap; gap: 16px; }
  .process-arrow { display: none; }
  .process-step { flex: 0 0 calc(50% - 8px); }

  /* Experience */
  .exp-item { grid-template-columns: 130px 1fr; gap: 0 28px; }
  .exp-timeline::before { left: 130px; }
  .exp-item::before { left: 126px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  /* Intern */
  .intern-section-header { flex-direction: column; align-items: flex-start; }
  .intern-badge { align-self: flex-start; }
}

/* ── 768px — Tablet portrait / large mobile ─────────────────── */
@media (max-width: 768px) {
  :root { --pad-section: 70px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 110px 20px 0; }

  /* Nav → mobile drawer */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 90px 32px 48px;
    gap: 28px;
    z-index: 999;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .nav-links.open li { width: 100%; text-align: center; }
  .nav-links.open a {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--white);
  }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-card { width: 230px; }
  .hero-stats-col { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hstat { padding: 14px 12px; }
  .hstat-num { font-size: 1.5rem; }
  .hero-title { line-height: 1; }
  .hero-bg-text { display: none; }

  /* Hero ticker */
  .hero-ticker { padding: 30px 0 20px; }

  /* About */
  .about-stats-col { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Work */
  .work-showcase { grid-template-columns: 1fr; border-radius: 16px; }
  .showcase-img { height: 250px; }
  .showcase-info { padding: 24px; }
  .proj-title { font-size: 1.8rem; }
  .work-grid { grid-template-columns: 1fr; }
  .proj-card-portrait .proj-card-img { min-height: 220px; }

  /* Results section responsive */
  .reel-shots-grid { grid-template-columns: repeat(3, 1fr); }

  /* Intern */
  .intern-section { margin-top: 40px; padding-top: 36px; }

  /* Process */
  .process-step { flex: 0 0 100%; }

  /* Experience */
  .exp-timeline { padding-left: 0; }
  .exp-timeline::before { display: none; }
  .exp-item { grid-template-columns: 1fr; gap: 6px; }
  .exp-item::before { display: none; }
  .exp-year { text-align: left; padding-right: 0; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 24px; }

  /* Contact */
  .contact-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary { width: 100%; max-width: 320px; justify-content: center; }
  .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .contact-links { gap: 20px; flex-direction: column; align-items: center; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer-links { justify-content: center; }

  /* Video modal */
  .video-modal-inner { width: 95vw; }
  .video-modal.portrait-mode .video-modal-inner { max-width: 340px; }
}

/* ── 480px — Mobile ─────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --pad-section: 56px; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero { padding: 100px 16px 0; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-role { font-size: 11px; }
  .hero-bio { font-size: 14px; }
  .hero-card { width: 210px; }
  .card-img-wrap { height: 220px; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .contact-headline { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .proj-title { font-size: 1.6rem; }
  .proj-desc { font-size: 13px; }
  .intern-title { font-size: 1.6rem; }
  .results-title { font-size: 1.8rem; }
  .results-mega-num { font-size: 2.2rem; }
  .results-header-left { margin-bottom: 20px; }
  .results-mega-stat { align-items: flex-start; text-align: left; width: 100%; }
  .results-content-split { grid-template-columns: 1fr; gap: 40px; }
  .reel-shots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .followers-grid-stacked { grid-template-columns: 1fr; gap: 12px; }

  /* About stats — 2 column */
  .about-stats-col { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-n { font-size: 1.8rem; }

  /* Services */
  .svc-card { padding: 24px 20px; }

  /* Tools */
  .tools-badges { gap: 10px; }
  .tool-chip { font-size: 12px; padding: 10px 14px; }

  /* Work */
  .showcase-img { height: 200px; }
  .showcase-info { padding: 20px; }

  /* Process */
  .process-step { padding: 24px 20px; }
  .step-num { font-size: 2.5rem; }

  /* Testimonials */
  .testi-quote { font-size: 3.5rem; }
  .testi-text { font-size: 13px; }

  /* Contact */
  .contact-sub { font-size: 14px; }

  /* Stats hero */
  .hstat { padding: 12px 10px; }
  .hstat-num { font-size: 1.4rem; }
  .hstat-lbl { font-size: 9px; }

  /* Social chips — wrap tighter */
  .hero-socials { gap: 8px; }
  .social-chip { font-size: 11px; padding: 7px 12px; }

  /* Video modal */
  .video-modal-inner { width: 98vw; }
  .video-modal-close { top: -44px; }
  .proj-card-img { min-height: 180px; }
  .video-modal.portrait-mode .video-modal-inner { max-width: 95vw; }
}

/* ── 360px — Small mobile ───────────────────────────────────── */
@media (max-width: 360px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.5rem; }
  .contact-headline { font-size: 1.7rem; }
  .hero-card { width: 190px; }
  .card-img-wrap { height: 190px; }
  .about-stats-col { grid-template-columns: 1fr 1fr; }
  .hero-stats-col { grid-template-columns: 1fr 1fr; }
  .proj-card-img { height: 180px; }
  .tool-chip { font-size: 11px; padding: 8px 12px; }
  .social-chip { font-size: 10px; }
  .container { padding: 0 12px; }
}


/* === VIDEO LIGHTBOX 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.35s var(--ease);
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1000px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease);
}
.video-modal.open .video-modal-inner {
  transform: scale(1) translateY(0);
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.video-modal-close:hover {
  background: rgba(155,119,212,0.3);
  transform: rotate(90deg);
}
.video-modal-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(155,119,212,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* <video> element — local MP4 / WEBM / MOV */
.video-modal-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;  /* never crop, show letterbox if needed */
  background: #000;
  border: none;
  outline: none;
}

/* Portrait mode — Instagram Reels & YouTube Shorts */
.video-modal.portrait-mode .video-modal-inner {
  max-width: 420px;
}
.video-modal.portrait-mode .video-modal-frame {
  padding-bottom: 177.78%; /* 9:16 */
}

/* btn-outline and showcase-play as <button> — reset browser defaults */
button.btn-outline,
button.showcase-play {
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}
button.btn-outline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
button.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  box-shadow: 0 0 20px var(--purple-glow);
}

/* === TRANSFORMATION SHOWCASE === */
.transformation-showcase {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(155, 119, 212, 0.2);
  border-radius: 24px;
  padding: 48px;
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 40px rgba(155,119,212,0.05);
}

.transformation-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.transformation-headline .highlight {
  color: var(--purple-light);
  font-style: italic;
  font-weight: 700;
}

.transformation-sub {
  font-size: 15px;
  color: var(--silver);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
}

.transform-card {
  position: relative;
  background: var(--bg);
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s var(--ease);
}

.transform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 119, 212, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(155, 119, 212, 0.2);
}

.transform-card.after {
  border-color: rgba(155, 119, 212, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 40px rgba(155, 119, 212, 0.15);
}

.transform-img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  display: block;
}

.transform-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.transform-label.highlight {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple-light);
  box-shadow: 0 0 15px rgba(155, 119, 212, 0.4);
}

.transform-arrow {
  color: var(--purple-light);
  animation: pulseArrow 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulseArrow {
  0%, 100% { transform: scale(1) translateX(0); opacity: 0.8; }
  50% { transform: scale(1.1) translateX(10px); opacity: 1; filter: drop-shadow(0 0 8px var(--purple-glow)); }
}

@media (max-width: 768px) {
  .transformation-visual {
    gap: 16px;
  }
  .transform-arrow svg {
    width: 32px;
    height: 32px;
  }
  .transformation-showcase {
    padding: 32px 12px;
  }
  .transform-img {
    max-width: 170px;
  }
}
