/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #242424;
  --silver: #c8c8c8;
  --silver-dim: #888888;
  --silver-faint: rgba(200, 200, 200, 0.08);
  --silver-line: rgba(200, 200, 200, 0.12);
  --chrome: #e0dbd0;
  --white: #f5f5f5;

  --grad-metal: linear-gradient(135deg, #c8c8c8 0%, #7a7a7a 50%, #d4d4d4 100%);
  --grad-dark: linear-gradient(180deg, #111 0%, #080808 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: rgba(200, 200, 200, 0.15);
  color: var(--white);
}

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

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

button {
  background: none;
  border: none;
  cursor: none;
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--black-4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--silver-dim);
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--silver);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor {
  background: var(--chrome);
}

body:has(a:hover) .cursor-follower {
  border-color: rgba(200, 200, 200, 0.6);
  width: 48px;
  height: 48px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.4s var(--ease-out), background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  padding: 18px 48px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--silver-line);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo .dot {
  color: var(--silver);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dim);
  transition: color 0.25s;
}

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

.nav-links .nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--silver-line);
  border-radius: 100px;
  color: var(--silver);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.nav-links .nav-cta:hover {
  background: var(--silver-faint);
  border-color: rgba(200, 200, 200, 0.3);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--silver);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

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

.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--silver-dim);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero_bg.png') center/cover no-repeat;
  opacity: 0.45;
  transform: scale(1.05);
  will-change: transform;
}

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

/* Gradient overlays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.7) 80%, #080808 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 48px;
  padding-top: 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--silver-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.title-line {
  display: block;
}

.title-line.italic {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-sub em {
  font-style: normal;
  color: var(--silver);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--silver);
}

.stat-num .plus,
.stat-num .unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--silver-dim);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--silver-line);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--silver-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad-metal);
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: opacity 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 200, 200, 0.2);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary .arrow {
  transition: transform 0.25s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-primary.lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-primary.mt {
  margin-top: 32px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--silver-line);
  color: var(--silver-dim);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(200, 200, 200, 0.3);
  color: var(--white);
  background: var(--silver-faint);
}

.btn-ghost.sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-ghost.lg {
  padding: 16px 40px;
  font-size: 1rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.18s;
}

.reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal:nth-child(5) {
  transition-delay: 0.34s;
}

.reveal:nth-child(6) {
  transition-delay: 0.42s;
}

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

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver-dim);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: rgba(245, 245, 245, 0.5);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 64px;
}

/* ============================================================
   WORK / VIDEO GRID
   ============================================================ */
.work-section {
  background: var(--black);
}

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

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--silver-line);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 200, 200, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 200, 200, 0.08);
}

.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--black-4);
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(200, 200, 200, 0.12);
  border: 1px solid rgba(200, 200, 200, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
}

.video-card:hover .play-btn {
  transform: scale(1.15);
  background: rgba(200, 200, 200, 0.2);
  border-color: rgba(200, 200, 200, 0.5);
}

.play-btn svg {
  width: 18px;
  height: 18px;
  color: var(--silver);
  margin-left: 3px;
}

.video-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg,
      rgba(200, 200, 200, 0) 40%,
      rgba(200, 200, 200, 0.04) 50%,
      rgba(200, 200, 200, 0) 60%);
  background-size: 200% 200%;
  animation: shimmer 3s infinite;
}

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

  100% {
    background-position: -200% 0;
  }
}

.video-meta {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.video-client {
  font-size: 0.78rem;
  color: var(--silver-dim);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

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

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(90vw, 480px);
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--silver-line);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--silver-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 0.85rem;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(200, 200, 200, 0.1);
}

.lightbox-frame {
  width: 100%;
  height: 100%;
  background: var(--black-3);
}

.lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 50%, var(--black) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-body {
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.why-body em {
  font-style: italic;
  color: var(--silver);
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar {
  background: var(--black-3);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pillar:hover {
  border-color: rgba(200, 200, 200, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: block;
}

.pillar h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--black);
  border-top: 1px solid var(--silver-line);
  border-bottom: 1px solid var(--silver-line);
}

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

.service-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(200, 200, 200, 0.25);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--silver-dim);
  margin-bottom: 12px;
  font-weight: 500;
}

.service-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.service-card--cta {
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.06) 0%, rgba(200, 200, 200, 0.02) 100%);
  border-color: rgba(200, 200, 200, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card--cta h3 {
  color: var(--silver);
}

.service-card--cta h3 em {
  font-style: italic;
  color: var(--chrome);
}

/* ============================================================
   COLLABS — CREATOR CARDS
   ============================================================ */
.collabs-section {
  background: var(--black-2);
}

.collabs-section .section-header {
  margin-bottom: 48px;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  justify-content: center;
}

.creator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.creator-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--silver-line);
  background: var(--black-4);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  position: relative;
}

.creator-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.creator-card:hover .creator-img-wrap {
  border-color: rgba(200, 200, 200, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.creator-card:hover .creator-img-wrap::after {
  opacity: 1;
}

.creator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: filter 0.35s;
}

.creator-card:hover .creator-img {
  filter: grayscale(0%);
}

/* Logo card — not a portrait so don't crop to top */
.creator-img-wrap--logo {
  background: var(--black-4);
}

.creator-img--logo {
  object-fit: contain;
  object-position: center;
  padding: 12%;
}

.creator-handle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--silver-dim);
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.2s;
}

.creator-card:hover .creator-handle {
  color: var(--silver);
}

@media (max-width: 1024px) {
  .creator-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--black);
}

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

.testimonial-card {
  background: var(--black-3);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(200, 200, 200, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--grad-metal);
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover::before {
  opacity: 0.5;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(200, 200, 200, 0.15);
  margin-bottom: 20px;
  display: block;
}

.quote-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-display);
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
}

.author-platform {
  font-size: 0.72rem;
  color: var(--silver-dim);
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  width: 300px;
  height: 380px;
  margin: auto;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black-3) 0%, var(--black-4) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--silver-line);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  border: 1px solid var(--silver-line);
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}

.about-photo:hover {
  filter: grayscale(0%) contrast(1);
}

.about-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-img-border {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(200, 200, 200, 0.1);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
}

.about-body {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag {
  padding: 8px 16px;
  background: var(--silver-faint);
  border: 1px solid var(--silver-line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--silver-dim);
  letter-spacing: 0.05em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--black);
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--silver-line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.85);
  transition: color 0.2s;
  text-align: left;
  gap: 24px;
}

.faq-question:hover {
  color: var(--white);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--silver-dim);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--silver);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.45s;
}

.faq-answer p {
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.8;
  padding-bottom: 28px;
  font-size: 0.96rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 200, 200, 0.04) 0%, transparent 70%);
}

.contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero_bg.png') center/cover no-repeat;
  opacity: 0.12;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-content {
  max-width: 640px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-sub {
  color: rgba(245, 245, 245, 0.55);
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-sep {
  color: var(--silver-dim);
}

.contact-link {
  font-size: 0.85rem;
  color: var(--silver-dim);
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--silver);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--silver-line);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--silver-dim);
}

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

.footer-links a {
  font-size: 0.78rem;
  color: var(--silver-dim);
  transition: color 0.2s;
}

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

/* ============================================================
   WORK TEASER (index.html)
   ============================================================ */
.work-teaser-section {
  background: var(--black);
}

.work-teaser-card {
  background: var(--black-3);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.work-teaser-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-metal);
  opacity: 0.5;
}

.work-teaser-card:hover {
  border-color: rgba(200, 200, 200, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.work-teaser-left {
  max-width: 520px;
}

.work-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.work-teaser-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-teaser-desc {
  color: rgba(245, 245, 245, 0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

.work-teaser-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
}

.teaser-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.teaser-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.teaser-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .about-img-wrap {
    width: 240px;
    height: 300px;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-content {
    padding: 0 24px;
    padding-top: 100px;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 48px;
  }

  .work-teaser-card {
    flex-direction: column;
    padding: 36px 28px;
    gap: 36px;
  }

  .teaser-stat {
    align-items: flex-start;
  }

  .work-teaser-stats {
    flex-direction: row;
    gap: 24px;
  }
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
}

.scroll-indicator {
  display: none;
}

.cursor,
.cursor-follower {
  display: none;
}

body {
  cursor: auto;
}

button {
  cursor: pointer;
}

a {
  cursor: pointer;
}

.footer-inner {
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 20px;
  }

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

/* ============================================================
   FEATURED WORK CAROUSEL
   ============================================================ */

/* --- Section wrapper --- */
.featured-carousel-section {
  background: var(--black);
  overflow: hidden;
}

/* --- Stage: relative container for arrows + dots --- */
.fc-stage {
  position: relative;
  width: 100%;
}

/* --- Track: slides sit side by side, we translateX to scroll --- */
.fc-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

/* --- Individual slide --- */
.fc-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 12px;
}

/* --- Video iframe wrapper (portrait 9:16) --- */
.fc-video-wrap {
  position: relative;
  width: min(340px, 92vw);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--silver-line);
  box-shadow:
    0 0 0 1px rgba(200, 200, 200, 0.04),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 40px 0 rgba(200, 200, 200, 0.04) inset;
  background: var(--black-3);
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.fc-video-wrap:hover {
  border-color: rgba(200, 200, 200, 0.22);
  box-shadow:
    0 0 0 1px rgba(200, 200, 200, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 60px 0 rgba(200, 200, 200, 0.06) inset;
}

.fc-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- Caption under the video --- */
.fc-caption {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-caption::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--silver-dim);
}

/* --- Arrow buttons --- */
.fc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  /* offset up for caption */
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--silver-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out), color 0.25s;
  cursor: pointer;
}

.fc-btn:hover {
  background: rgba(200, 200, 200, 0.12);
  border-color: rgba(200, 200, 200, 0.3);
  color: var(--white);
  transform: translateY(calc(-50% - 20px)) scale(1.08);
}

.fc-btn svg {
  width: 20px;
  height: 20px;
}

.fc-btn--prev {
  left: 16px;
}

.fc-btn--next {
  right: 16px;
}

/* --- Dots --- */
.fc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.fc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-line);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease-out), width 0.3s;
  border: none;
  padding: 0;
}

.fc-dot.fc-dot--active {
  background: var(--silver);
  width: 24px;
  border-radius: 3px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .fc-btn--prev {
    left: 4px;
  }

  .fc-btn--next {
    right: 4px;
  }

  .fc-btn {
    width: 40px;
    height: 40px;
  }

  .fc-btn svg {
    width: 16px;
    height: 16px;
  }
}