/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
:root {
  --purple:     #7C3AED;
  --purple-lt:  #9D5FF3;
  --black:      #080809;
  --dark:       #0F0F11;
  --card:       #141417;
  --border:     rgba(255,255,255,.08);
  --white:      #FFFFFF;
  --cream:      #F5F3EF;
  --text-dim:   rgba(255,255,255,.45);
  --text-mid:   rgba(255,255,255,.72);
  --radius:     8px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', Georgia, serif; background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.serif { font-family: 'Instrument Serif', serif; font-style: italic; }
.label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple-lt);
  display: flex; align-items: center; gap: 10px;
}
.label::before { content:''; width:24px; height:1px; background: var(--purple-lt); flex-shrink:0; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; font-weight: 500;
  letter-spacing: .02em; padding: 14px 28px; border-radius: 6px;
  transition: all .25s ease; text-decoration: none; border: none; cursor: pointer;
}
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-lt); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(124,58,237,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.32); font-weight: 500; }
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--purple); font-weight: 600; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.btn svg { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s ease;
}
nav.scrolled {
  background: rgba(8,8,9,.92);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li > a { font-size: 14px; font-weight: 400; color: var(--text-dim); transition: color .2s; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover { color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; }

/* ─── NAV DROPDOWN ──────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -16px;
  background: #111113; border: 1px solid var(--border);
  border-radius: 10px; min-width: 220px; padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 200;
  margin-top: 8px;
}
/* Invisible bridge fills the gap between nav link and dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 20px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; font-size: 13px;
  color: var(--text-mid); border-radius: 6px;
  transition: all .15s;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-dropdown-menu .dd-divider {
  height: 1px; background: var(--border); margin: 6px 0;
}
.nav-caret { font-size: 9px; opacity: .6; transition: transform .2s; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* ─── MOBILE MENU ───────────────────────────────────────── */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--black); flex-direction: column;
  justify-content: center; gap: 8px; padding: 0 48px;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu > a { font-size: 36px; font-weight: 600; color: var(--white); transition: color .2s; }
.mob-menu > a:hover { color: var(--purple-lt); }
.mob-svc-list { display: flex; flex-direction: column; gap: 4px; padding-left: 20px; border-left: 2px solid var(--border); margin: 4px 0 8px; }
.mob-svc-list a { font-size: 18px !important; font-weight: 400 !important; color: var(--text-mid) !important; }
.mob-close { position: absolute; top: 24px; right: 48px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ─── CTA SECTION ───────────────────────────────────────── */
#cta {
  background: var(--purple);
  padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
  position: relative; z-index: 1; transform: translateZ(0);
}
.cta-noise {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 48px; }
.cta-inner .label { color: rgba(255,255,255,.7); justify-content: center; margin-bottom: 32px; }
.cta-inner .label::before { background: rgba(255,255,255,.7); }
.cta-inner h2 {
  font-size: clamp(40px, 5.5vw, 76px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.04; color: #fff; margin-bottom: 24px;
}
.cta-inner h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.65; max-width: 500px; margin: 0 auto 44px; }
.cta-fine { margin-top: 32px; font-size: 13px; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.cta-fine span { margin: 0 10px; opacity: .4; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 72px 0 40px; position: relative; z-index: 1; transform: translateZ(0); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 32px; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-mid); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.f-socials { display: flex; gap: 24px; }
.f-socials a { font-size: 12px; font-weight: 500; color: var(--text-dim); letter-spacing: .04em; transition: color .2s; }
.f-socials a:hover { color: var(--white); }

/* ─── FADE-IN ────────────────────────────────────────────── */
.fade-pending {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.fade-pending.d1 { transition-delay: .07s; }
.fade-pending.d2 { transition-delay: .14s; }
.fade-pending.d3 { transition-delay: .21s; }
.fade-pending.d4 { transition-delay: .28s; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--black);
  position: relative; z-index: 1; transform: translateZ(0);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-dim); letter-spacing: .04em;
}
.breadcrumb-inner a { color: var(--text-dim); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-inner svg { width: 10px; height: 10px; opacity: .4; }

/* ─── SERVICE PAGE HERO ──────────────────────────────────── */
.svc-hero {
  background: var(--black);
  padding: 64px 0 0;
  position: relative; z-index: 1; transform: translateZ(0);
  overflow: hidden;
}
.svc-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  min-height: 520px;
}
.svc-hero-left { padding: 60px 0 80px; }
.svc-hero-left .label { margin-bottom: 28px; }
.svc-hero-h1 {
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -.025em; margin-bottom: 24px;
}
.svc-hero-h1 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.svc-hero-p {
  font-size: 17px; font-weight: 300; color: var(--text-mid);
  line-height: 1.7; max-width: 440px; margin-bottom: 40px;
}
.svc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.svc-hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.svc-hero-stat .sval {
  font-size: 32px; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: var(--white);
}
.svc-hero-stat .sval em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.svc-hero-stat .slbl { font-size: 12px; color: var(--text-dim); margin-top: 6px; }

.svc-hero-right { position: relative; align-self: stretch; overflow: hidden; border-radius: 0; }
.svc-hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%),
              linear-gradient(to top, rgba(8,8,9,.4) 0%, transparent 50%);
}
.svc-hero-right img {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(.9);
}
.svc-hero-video { background: #000; }
.yt-thumb {
  position: relative; width: 100%; height: 100%; min-height: 520px;
  cursor: pointer; overflow: hidden;
}
.yt-thumb img {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(.9);
  transition: filter .3s;
}
.yt-thumb:hover img { filter: brightness(.6) saturate(.9); }
.yt-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 56px;
  transition: transform .2s, opacity .2s;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.yt-thumb:hover .yt-play-btn { transform: translate(-50%,-50%) scale(1.12); }
.yt-iframe-wrap {
  position: absolute; inset: 0;
}
.yt-iframe-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* ─── SERVICE MARQUEE STRIP ──────────────────────────────── */
.svc-strip {
  background: var(--dark); padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0; overflow: hidden;
  position: relative; z-index: 1;
}
.svc-strip-inner { display: flex; align-items: center; gap: 32px; padding: 0 32px; white-space: nowrap; }
.svc-strip-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; align-items: center; gap: 12px;
}
.svc-strip-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }

/* ─── SERVICE FEATURES ───────────────────────────────────── */
.svc-features { background: var(--cream); position: relative; z-index: 1; transform: translateZ(0); }
.svc-features-top { margin-bottom: 64px; }
.svc-features-top .label { color: var(--purple); margin-bottom: 20px; }
.svc-features-top .label::before { background: var(--purple); }
.svc-features-top h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.08; color: #0a0a0a;
  max-width: 640px;
}
.svc-features-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple); }
.svc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(0,0,0,.08); border-radius: var(--radius); overflow: hidden; align-items: stretch; }
.svc-feat {
  background: #fff; padding: 40px 36px;
  transition: background .25s;
  display: flex; flex-direction: column;
}
.svc-feat:hover { background: #fdfcfb; }
.svc-feat-icon { font-size: 28px; margin-bottom: 20px; }
.svc-feat h3 { font-size: 18px; font-weight: 600; color: #0a0a0a; letter-spacing: -.01em; margin-bottom: 12px; }
.svc-feat p { font-size: 14px; color: #555; line-height: 1.7; }
.svc-feat-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.svc-feat-list li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 10px; }
.svc-feat-list li::before { content: '→'; color: var(--purple); font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ─── SERVICE OVERVIEW / SPLIT SECTION ───────────────────── */
.svc-overview { background: var(--dark); position: relative; z-index: 1; transform: translateZ(0); }
.svc-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-overview-left h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.08; margin-bottom: 24px;
}
.svc-overview-left h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.svc-overview-left p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.svc-overview-left .label { margin-bottom: 24px; }
.svc-checklist { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.svc-checklist li {
  font-size: 14px; color: var(--text-mid);
  padding: 14px 0; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.svc-checklist li:last-child { border-bottom: 1px solid var(--border); }
.svc-checklist li::before { content: '✓'; color: var(--purple-lt); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.svc-overview-right img {
  width: 100%; border-radius: 12px;
  filter: brightness(.8) saturate(.9);
}
.svc-overview-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.svc-ov-stat { background: var(--card); padding: 28px 24px; }
.svc-ov-stat .ov-val { font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--white); }
.svc-ov-stat .ov-val em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.svc-ov-stat .ov-lbl { font-size: 12px; color: var(--text-dim); margin-top: 8px; line-height: 1.4; }

/* ─── SERVICE PROCESS ────────────────────────────────────── */
.svc-process { background: var(--black); position: relative; z-index: 1; transform: translateZ(0); }
.svc-process-top { margin-bottom: 56px; }
.svc-process-top h2 { font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; }
.svc-process-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.svc-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-process-step { background: var(--card); padding: 36px 28px; position: relative; }
.svc-process-step:hover { background: #181820; }
.svc-p-n {
  font-size: 72px; font-weight: 700; line-height: .9;
  color: rgba(255,255,255,.04);
  position: absolute; bottom: 12px; right: 16px;
  font-family: 'Instrument Serif', serif; font-style: italic;
  pointer-events: none; user-select: none;
}
.svc-p-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-lt); margin-bottom: 16px; }
.svc-process-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; }
.svc-process-step p { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ─── SERVICE TESTIMONIAL ────────────────────────────────── */
.svc-testimonial { background: var(--cream); position: relative; z-index: 1; }
.svc-t-inner { max-width: 860px; }
.svc-t-inner .label { color: var(--purple); margin-bottom: 48px; }
.svc-t-inner .label::before { background: var(--purple); }
.svc-t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* reuse .t-card from shared */

/* ─── HOMEPAGE SPECIFIC ──────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  isolation: isolate; transform: translateZ(0);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px 64px 80px 48px;
  position: relative; z-index: 2; background: var(--black);
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img,
.hero-right video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(.7) saturate(.9);
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%),
              linear-gradient(to top, rgba(8,8,9,.5) 0%, transparent 40%);
}
.hero-eyebrow { margin-bottom: 36px; }
.hero-h1 {
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -.025em; margin-bottom: 32px;
}
.hero-h1 .italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.hero-p { font-size: 17px; font-weight: 300; color: var(--text-mid); line-height: 1.7; max-width: 440px; margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; gap: 48px; }
.hero-stat .val { font-size: 36px; font-weight: 700; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.hero-stat .val em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.hero-stat .lbl { font-size: 12px; color: var(--text-dim); margin-top: 6px; font-weight: 400; }

#marquee, #intro, #services, #results, #why, #process, #testimonials, #clients {
  position: relative; z-index: 1; transform: translateZ(0);
}
#marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--dark); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }
/* marquee never pauses on hover */
.m-item { display: inline-flex; align-items: center; gap: 40px; padding: 0 40px; flex-shrink: 0; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.m-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

#intro { background: var(--cream); }
#intro .wrap { max-width: 1080px; }
.intro-label { color: var(--purple); margin-bottom: 40px; }
.intro-label::before { background: var(--purple); }
.intro-h2 { font-size: clamp(28px, 3.5vw, 52px); font-weight: 400; line-height: 1.3; color: #111; letter-spacing: -.015em; }
.intro-h2 strong { font-weight: 700; color: #0a0a0a; }
.intro-h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple); }
.intro-bottom { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(0,0,0,.1); display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.intro-stat .num { font-size: 56px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: #0a0a0a; }
.intro-stat .num span { color: var(--purple); }
.intro-stat .desc { font-size: 14px; color: #666; margin-top: 10px; line-height: 1.5; }

#services { background: var(--black); }
.services-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.services-top h2 { font-size: clamp(36px, 4vw, 60px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; max-width: 480px; }
.services-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.services-top p { font-size: 15px; color: var(--text-dim); max-width: 300px; text-align: right; line-height: 1.65; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-card { background: var(--card); padding: 40px 36px 44px; transition: background .3s; position: relative; overflow: hidden; cursor: pointer; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.svc-card:hover { background: #1a1a1e; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; margin-bottom: 28px; filter: brightness(.85) saturate(.9); transition: filter .3s; }
.svc-card:hover .svc-img { filter: brightness(1) saturate(1); }
.svc-num { font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--purple-lt); margin-bottom: 14px; text-transform: uppercase; }
.svc-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.svc-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; margin-bottom: 20px; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-pill { font-size: 11px; font-weight: 500; color: var(--text-dim); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; transition: all .2s; }
.svc-card:hover .svc-pill { border-color: rgba(124,58,237,.3); color: var(--purple-lt); }
.svc-card-link { display: block; margin-top: 20px; font-size: 12px; font-weight: 600; color: var(--purple-lt); letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
.svc-card-link:hover { color: var(--white); }

#results { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.results-label { color: var(--purple-lt); margin-bottom: 56px; }
.results-label::before { background: var(--purple-lt); }
.results-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.r-cell { padding: 56px 44px; border-right: 1px solid var(--border); background: transparent; }
.r-cell:last-child { border-right: none; }
.r-cell:first-child { background: linear-gradient(135deg, rgba(124,58,237,.18) 0%, rgba(124,58,237,.06) 100%); border-top: 2px solid var(--purple); }
.r-num { font-size: clamp(48px, 5vw, 78px); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--white); }
.r-num span { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.r-label { font-size: 14px; color: var(--text-dim); margin-top: 14px; line-height: 1.55; }
.r-cell:first-child .r-label { color: rgba(255,255,255,.65); }

#why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { font-size: clamp(36px, 4vw, 58px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 24px; }
.why-left h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.why-left p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.why-points { margin-top: 40px; display: flex; flex-direction: column; }
.why-pt { padding: 20px 0; border-top: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start; }
.why-pt:last-child { border-bottom: 1px solid var(--border); }
.why-pt-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.why-pt-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.why-pt-text p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.why-right { position: relative; }
.why-right-img { width: 100%; height: 560px; object-fit: cover; border-radius: 12px; filter: brightness(.75) saturate(.85); }
.why-quote { position: absolute; bottom: -24px; left: -24px; right: 40px; background: var(--black); border: 1px solid var(--border); border-radius: 10px; padding: 28px 32px; }
.why-quote blockquote { font-size: 15px; line-height: 1.65; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }
.why-quote .att { font-size: 12px; font-weight: 600; color: var(--purple-lt); letter-spacing: .06em; text-transform: uppercase; }

#process { background: var(--black); }
.process-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.process-top h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; }
.process-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.process-top .btn { flex-shrink: 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.p-step { background: var(--card); padding: 40px 32px; position: relative; }
.p-step:hover { background: #181820; }
.p-n { font-size: 80px; font-weight: 700; letter-spacing: -.04em; line-height: .9; color: rgba(255,255,255,.04); position: absolute; bottom: 16px; right: 20px; font-family: 'Instrument Serif', serif; font-style: italic; user-select: none; pointer-events: none; }
.p-step-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-lt); margin-bottom: 20px; }
.p-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.p-step p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

#testimonials { background: var(--cream); }
.t-label { color: var(--purple); margin-bottom: 56px; }
.t-label::before { background: var(--purple); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: #fff; border-radius: 12px; padding: 36px 32px; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: box-shadow .3s, transform .3s; }
.t-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.12); transform: translateY(-4px); }
.t-stars { color: var(--purple); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.t-text { font-size: 15px; line-height: 1.72; color: #333; margin-bottom: 28px; }
.t-divider { width: 28px; height: 2px; background: var(--purple); margin-bottom: 20px; border-radius: 1px; }
.t-name { font-size: 14px; font-weight: 600; color: #0a0a0a; }
.t-role { font-size: 12px; color: #888; margin-top: 3px; }
.t-rev { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); background: rgba(124,58,237,.07); border-radius: 100px; padding: 3px 10px; }

#clients { background: var(--dark); padding: 60px 0; }
.clients-inner { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.clients-lbl { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; }
.clients-logos { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; flex: 1; }
.clients-logos img { height: 28px; width: auto; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); opacity: .2; transition: opacity .25s; }
.clients-logos img:hover { opacity: .55; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 140px 48px 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-right-img { height: 420px; }
  .why-quote { position: static; margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-right { display: none; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-t-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  nav { padding: 14px 20px; background: rgba(8,8,9,.97); backdrop-filter: blur(20px); }
  nav.scrolled { padding: 14px 20px; }
  .nav-links, nav > .btn { display: none; }
  .hamburger { display: flex; }
  #hero { min-height: 100svh; }
  .hero-left { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-bottom { grid-template-columns: 1fr; gap: 32px; }
  .results-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-top { flex-direction: column; align-items: flex-start; }
  .services-top p { text-align: left; }
  .process-top { flex-direction: column; align-items: flex-start; }
  .mob-menu { padding: 0 24px; }
  .mob-close { right: 24px; }
  .svc-hero-left { padding: 40px 0 60px; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-process-steps { grid-template-columns: 1fr; }
  .svc-overview-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-stats { gap: 28px; flex-wrap: wrap; }
}

/* ─── WORK / PORTFOLIO PAGE ─────────────────────────────── */
.work-hero { padding: 160px 0 80px; text-align: center; background: var(--black); }
.work-hero h1 { font-size: clamp(64px, 10vw, 120px); font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: .9; }
.work-hero p { font-size: 18px; color: var(--text-mid); margin-top: 24px; }
.work-filters { display: flex; justify-content: center; gap: 12px; padding: 48px 0 40px; background: var(--black); flex-wrap: wrap; }
.work-filter-btn { padding: 10px 28px; border-radius: 100px; border: 1px solid var(--border); background: transparent; color: var(--text-mid); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; letter-spacing: .06em; text-transform: uppercase; font-family: 'Cormorant Garamond', Georgia, serif; }
.work-filter-btn.active, .work-filter-btn:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 40px 48px 120px; background: var(--black); max-width: 1400px; margin: 0 auto; }
@media(max-width:1024px){ .work-grid { grid-template-columns: repeat(3,1fr); padding: 0 24px 80px; } }
@media(max-width:640px){ .work-grid { grid-template-columns: repeat(2,1fr); gap: 8px; padding: 0 16px 60px; } }
.work-card { position: relative; cursor: pointer; border-radius: 12px; overflow: hidden; background: var(--dark); transition: transform .3s; }
.work-card:hover { transform: scale(1.02); }
.work-video-wrap { position: relative; aspect-ratio: 9/16; overflow: hidden; }
.work-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
.work-card:hover .work-card-overlay { opacity: 0; }
.play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.work-card-info { padding: 12px 14px; }
.work-card-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.work-card.hidden { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 400px; width: 90vw; }
.lightbox-inner video { width: 100%; border-radius: 16px; max-height: 85vh; }
.lightbox-close { position: absolute; top: -48px; right: 0; background: none; border: none; color: white; font-size: 32px; cursor: pointer; }

/* Work preview on homepage */
#work-preview { background: var(--dark); }
.work-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.work-preview-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.work-preview-vid { aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; transition: transform .3s; }
.work-preview-vid:hover { transform: scale(1.03); }
.work-preview-vid video { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:1100px) { .work-preview-grid { grid-template-columns: 1fr; gap: 48px; } }
@media(max-width:640px) { .work-preview-videos { grid-template-columns: 1fr 1fr; } }

/* Content Production hero grid — custom 2-col layout */
.cp-hero-grid { grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
@media (max-width: 768px) {
  .cp-hero-grid { grid-template-columns: 1fr; }
}

/* Content Production video hero */
.cp-hero-video { aspect-ratio: 9/16; max-width: 380px; width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5); flex-shrink: 0; }
.cp-hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video showcase scroll row */
.vid-scroll-row { display: flex; gap: 16px; overflow-x: auto; padding: 8px 0 24px; scrollbar-width: thin; scrollbar-color: var(--purple) transparent; }
.vid-scroll-row::-webkit-scrollbar { height: 4px; }
.vid-scroll-row::-webkit-scrollbar-track { background: transparent; }
.vid-scroll-row::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 2px; }
.vid-scroll-item { flex-shrink: 0; width: 220px; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; transition: transform .3s; }
.vid-scroll-item:hover { transform: translateY(-6px); }
.vid-scroll-item video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── VIDEO REEL SECTION ─────────────────────────────────── */
.vid-reel-section {
  background: var(--black);
  padding: 100px 0 100px;
  overflow: hidden;
  position: relative; z-index: 1; transform: translateZ(0);
}
.vid-reel-header {
  text-align: center;
  margin-bottom: 56px;
}
.vid-reel-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.vid-reel-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--purple-lt);
}
.vid-reel-sub {
  font-size: 16px;
  color: var(--text-mid);
}
.vid-reel-track-wrap {
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.vid-reel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.vid-reel-track.scroll-left {
  animation: reel-left 40s linear infinite;
}
.vid-reel-track.scroll-right {
  animation: reel-right 40s linear infinite;
}
/* Marquee keeps scrolling on hover — do NOT pause */
@keyframes reel-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes reel-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.vid-reel-item {
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.vid-reel-item:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 24px 60px rgba(139,92,246,.35);
  z-index: 2;
  position: relative;
}
.vid-reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── QUALITY POLISH — Section F: Typography & Spacing ──── */

/* Body line-height tightening (headings already use line-height in place) */
body { line-height: 1.7; }

/* Label spacing */
.label { margin-bottom: 24px; }

/* h2 section margin */
.section h2 { margin-bottom: 20px; }

/* Scroll margin for anchor nav */
#services, #results, #why, #process, #testimonials, #cta, #work-preview, #intro {
  scroll-margin-top: 80px;
}

/* Section base padding confirmed at 120px */
.section { padding: 120px 0; }

/* ─── QUALITY POLISH — Section B3: Service Cards ──────── */
.svc-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.svc-card-link {
  margin-top: auto;
}

/* ─── QUALITY POLISH — Section B4: Results cells ─────── */
.r-cell:not(:first-child) {
  border: 1px solid rgba(255,255,255,.06);
}
/* Equal height results row */
.results-row { align-items: stretch; }
.r-cell { display: flex; flex-direction: column; justify-content: center; }

/* ─── QUALITY POLISH — Section B6: Testimonials ─────── */
.t-grid { align-items: stretch; }
.t-card {
  display: flex;
  flex-direction: column;
}
.t-text { flex: 1; }

/* ─── QUALITY POLISH — Section B7: Work preview hover ── */
.work-preview-vid:hover {
  box-shadow: 0 8px 40px rgba(124,58,237,.25);
}
#work-preview {
  border-top: 1px solid var(--border);
}
.work-preview-label {
  color: var(--purple-lt);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}

/* ─── QUALITY POLISH — Section D: Work page ─────────── */
.work-hero h1 {
  font-size: clamp(72px, 12vw, 140px);
}
.work-filters {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.lightbox-close {
  font-size: 36px;
  line-height: 1;
}

/* ─── QUALITY POLISH — Section C: Content Production ── */
.cp-hero-video {
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(139,92,246,.3);
  border: 1px solid rgba(139,92,246,.2);
}
.cta-fine {
  margin-top: 28px;
  text-align: center;
}

/* ─── QUALITY POLISH — Section E: Service feature cards  */
.svc-features-grid > * {
  height: 100%;
}
.svc-feat {
  border: 1px solid rgba(255,255,255,.06);
}
/* Service checklist */
.svc-checklist li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.svc-checklist li::before {
  color: var(--purple-lt);
}

/* ─── QUALITY POLISH — Section A: Mobile Responsiveness  */
@media (max-width: 768px) {
  /* Section padding tablet */
  .section { padding: 60px 0; }

  /* Hero mobile */
  .hero-left { padding: 40px 24px 60px; }
  .hero-h1 { font-size: clamp(40px, 9vw, 64px); }
  .hero-actions { flex-wrap: wrap; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  /* Service hero mobile */
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-right { height: 260px; min-height: unset; display: block; }
  .svc-hero-right img { min-height: 260px; }
  .yt-thumb { min-height: 260px; }
  .yt-thumb img { min-height: 260px; }
  .svc-hero-left { padding: 40px 0 60px; }
  .svc-hero-actions { flex-wrap: wrap; }

  /* Work preview single col */
  .work-preview-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer single col, centered brand */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 18px; }

  /* Marquee text size */
  .m-item { font-size: 13px; }

  /* Video reel items narrower + disable tap-to-pause */
  .vid-reel-item { width: 130px; }
  .vid-reel-item video,
  .work-preview-vid video { pointer-events: none; touch-action: pan-y; }

  /* Work grid gap */
  .work-grid { gap: 8px; }
}

@media (max-width: 480px) {
  /* Section padding mobile */
  .section { padding: 48px 0; }

  /* Wrap padding */
  .wrap { padding: 0 16px; }

  /* Hero */
  .hero-left { padding: 100px 16px 48px; }

  /* CTA inner padding */
  .cta-inner { padding: 0 24px; }
}

/* Desktop section padding reset (override mobile above) */
@media (min-width: 769px) {
  .section { padding: 120px 0; }
}

/* Tablet section padding */
@media (max-width: 768px) and (min-width: 481px) {
  .section { padding: 60px 0; }
}

/* ─── INTRO VIDEO MOSAIC ───────────────────────────────── */
.intro-vids {
  position: relative;
  height: 480px;
}
.intro-vid {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.intro-vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-vid-1 {
  width: 200px; height: 350px;
  left: 10%; top: 20px;
  transform: rotate(-4deg);
  z-index: 2;
  border: 2px solid rgba(124,58,237,.3);
}
.intro-vid-2 {
  width: 200px; height: 350px;
  left: 36%; top: 60px;
  transform: rotate(1.5deg);
  z-index: 3;
  border: 2px solid rgba(255,255,255,.08);
}
.intro-vid-3 {
  width: 200px; height: 350px;
  right: 4%; top: 10px;
  transform: rotate(4deg);
  z-index: 2;
  border: 2px solid rgba(124,58,237,.2);
}

/* ─── VIDEO INTERLUDE ──────────────────────────────────── */
.vid-interlude {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.vid-interlude video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(1.1);
}
.vid-interlude-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to right, rgba(8,8,9,.5) 0%, transparent 40%, transparent 60%, rgba(8,8,9,.5) 100%);
}
.vid-interlude-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 56px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  max-width: 800px;
  text-align: center;
  padding: 0 48px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

@media (max-width: 768px) {
  .intro-vids { height: 320px; }
  .intro-vid-1 { width: 140px; height: 240px; left: 2%; }
  .intro-vid-2 { width: 140px; height: 240px; left: 33%; }
  .intro-vid-3 { width: 140px; height: 240px; right: 2%; }
  .vid-interlude { height: 45vh; }
  .vid-interlude-quote { font-size: clamp(20px, 5vw, 32px); padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════════
   PILL NAV — global override applied to all pages
   ══════════════════════════════════════════════════════════ */
nav#nav {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1180px;
  height: 58px;
  padding: 0 8px 0 22px;
  background: rgba(8,8,11,.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  border-bottom: none;
}
nav#nav.scrolled {
  background: rgba(8,8,11,.92);
  border-color: rgba(255,255,255,.12);
  padding: 0 8px 0 22px;
  border-bottom: none;
}
nav#nav .nav-logo img { height: 22px; filter: brightness(0) invert(1); }
nav#nav .nav-links { gap: 4px; }
nav#nav .nav-links > li > a {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
}
nav#nav .nav-links > li > a:hover { background: rgba(255,255,255,.06); }
nav#nav .btn.btn-purple {
  background: var(--purple) !important;
  color: #ffffff !important;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
nav#nav .btn.btn-purple:hover {
  background: var(--purple-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,.45);
}
@media (max-width: 900px) {
  nav#nav { width: calc(100% - 16px); padding: 0 6px 0 18px; height: 54px; top: 10px; }
  nav#nav .nav-links { display: none; }
  nav#nav > a.btn.btn-purple { display: none; }
}

/* ══════════════════════════════════════════════════════════
   SERVICE HERO — full-width text, video in section below
   ══════════════════════════════════════════════════════════ */
.svc-hero-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.svc-hero-left { max-width: 820px; }
.svc-hero-right {
  display: block !important;
  max-width: 760px;
  width: 100%;
  margin: 90px auto 32px;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 0 100px -20px rgba(124,58,237,.45),
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden !important;
  height: auto !important;
  align-self: auto !important;
  position: relative;
  isolation: isolate;
  transition: box-shadow .35s ease, transform .35s ease;
}
.svc-hero-right:hover {
  box-shadow:
    0 0 140px -10px rgba(124,58,237,.6),
    0 40px 100px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.10);
  transform: translateY(-3px);
}
/* Editorial label floating above the video */
.svc-hero-grid > .svc-hero-right + nothing {} /* spacer */
.svc-hero-right-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin: 0 auto;
  max-width: 760px;
  padding-top: 64px;
}
.svc-hero-right-label::before { content: '— '; opacity: .5; }
.svc-hero-right-label::after { content: ' —'; opacity: .5; }
.svc-hero-right::after { content: none !important; }
.svc-hero-right > .yt-thumb,
.svc-hero-right > .yt-iframe-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
}
.yt-thumb {
  min-height: unset !important;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.yt-thumb img { min-height: unset !important; width: 100%; height: 100%; object-fit: cover; }
.yt-iframe-wrap {
  height: auto !important;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.yt-iframe-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ══════════════════════════════════════════════════════════
   THEME TOGGLE — floating pill, bottom-right
   ══════════════════════════════════════════════════════════ */
#theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px 9px 12px;
  border-radius: 100px;
  background: rgba(14,14,18,.90);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,.88);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.50);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#theme-toggle:hover {
  background: rgba(22,22,28,.96);
  box-shadow: 0 8px 32px rgba(0,0,0,.60);
}
#theme-toggle svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #theme-toggle { bottom: 16px; right: 16px; font-size: 12px; padding: 8px 14px 8px 10px; }
}

/* ══════════════════════════════════════════════════════════
   LIGHT MODE — comprehensive QC pass
   ══════════════════════════════════════════════════════════ */
html.light {
  --black:    #f4f1eb;
  --dark:     #eae7df;
  --card:     #ffffff;
  --border:   rgba(0,0,0,.09);
  --white:    #0d0d0d;
  --text-dim: rgba(13,13,13,.45);
  --text-mid: rgba(13,13,13,.68);
}
html.light body { background: var(--black); color: var(--white); }

/* ─── NAV ─────────────────────────────────────────────── */
html.light nav#nav {
  background: rgba(244,241,235,.84) !important;
  border-color: rgba(0,0,0,.10) !important;
}
html.light nav#nav.scrolled {
  background: rgba(244,241,235,.97) !important;
  border-color: rgba(0,0,0,.14) !important;
}
html.light nav#nav .nav-links > li > a { color: #1a1a1a; }
html.light nav#nav .nav-links > li > a:hover { background: rgba(0,0,0,.05); color: #0d0d0d; }
html.light nav#nav .nav-logo img { filter: brightness(0); }
/* Mobile nav base */
@media (max-width: 768px) {
  html.light nav { background: rgba(244,241,235,.97) !important; }
  html.light nav.scrolled { background: rgba(244,241,235,.99) !important; }
}
/* Hamburger bars */
html.light .hamburger span { background: #0d0d0d; }
/* Dropdown menu */
html.light .nav-dropdown-menu {
  background: #ffffff;
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
html.light .nav-dropdown-menu a { color: #1a1a1a; }
html.light .nav-dropdown-menu a:hover { background: rgba(0,0,0,.05); color: #0d0d0d; }
html.light .dd-divider { background: rgba(0,0,0,.08); }
/* Mobile full-screen menu */
html.light .mob-menu { background: var(--black); }
html.light .mob-close { color: #0d0d0d; }
html.light .mob-menu > a { color: #0d0d0d; }
html.light .mob-menu > a:hover { color: var(--purple); }
html.light .mob-svc-list a { color: rgba(13,13,13,.65); }
html.light .mob-svc-list a:hover { color: var(--purple); }

/* ─── BREADCRUMB ──────────────────────────────────────── */
html.light .breadcrumb { border-bottom: 1px solid rgba(0,0,0,.09); }
html.light .breadcrumb-inner a,
html.light .breadcrumb-inner svg { color: rgba(13,13,13,.50); }
html.light .breadcrumb-inner span { color: #0d0d0d; }

/* ─── BUTTONS ─────────────────────────────────────────── */
html.light .btn-outline { color: #0d0d0d; border-color: rgba(0,0,0,.35); border-width: 1.5px; }
html.light .btn-outline:hover { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.65); }

/* ─── HERO ────────────────────────────────────────────── */
html.light .hero-right img { filter: none; }
html.light .hero-right::after {
  background: linear-gradient(to right, var(--black) 0%, transparent 30%),
              linear-gradient(to top, rgba(244,241,235,.45) 0%, transparent 30%);
}

/* ─── SERVICE CARDS ───────────────────────────────────── */
html.light .svc-card { background: var(--card); border-color: rgba(0,0,0,.09); }
html.light .svc-card:hover { background: #f5f4f0; }
html.light .svc-img { filter: none; }

/* ─── SERVICE HERO VIDEO (below text) ────────────────── */
html.light .svc-hero-right {
  box-shadow: 0 12px 60px rgba(0,0,0,.14);
}
html.light .svc-hero-right::after { display: none; }
html.light .svc-hero-video { background: var(--dark); }
html.light .yt-thumb img { filter: none; }
html.light .svc-hero-right img { filter: none; }

/* ─── SERVICE FEATURE CARDS ───────────────────────────── */
html.light .svc-feat {
  background: #ffffff;
  border-color: rgba(0,0,0,.09);
}
html.light .svc-checklist li { border-top-color: rgba(0,0,0,.09); }

/* ─── SERVICE OVERVIEW ────────────────────────────────── */
html.light .svc-overview-right img { filter: none; }
html.light .svc-overview-stat { border-top-color: rgba(0,0,0,.09); }

/* ─── SERVICE PROCESS STEPS ───────────────────────────── */
html.light .svc-process-step { background: #ffffff; border-color: rgba(0,0,0,.09); }
html.light .svc-process-step:hover { background: #f5f4f0; }
html.light .svc-p-n { color: rgba(0,0,0,.04); }

/* ─── HOMEPAGE PROCESS STEPS ──────────────────────────── */
html.light .p-step { background: #ffffff; border-color: rgba(0,0,0,.09); }
html.light .p-step:hover { background: #f5f4f0; }
html.light .p-n { color: rgba(0,0,0,.04); }

/* ─── DIFF / WHY CARDS ────────────────────────────────── */
html.light .diff-card { background: #ffffff; border-color: rgba(0,0,0,.09); }
html.light .feature-card,
html.light .step-card { background: #ffffff; border-color: rgba(0,0,0,.09); }

/* ─── WHY SECTION ─────────────────────────────────────── */
html.light .why-right-img { filter: none; }
html.light .why-quote { background: var(--card); border-color: rgba(0,0,0,.09); }

/* ─── RESULTS / STATS ─────────────────────────────────── */
html.light .r-cell:not(:first-child) { border-color: rgba(0,0,0,.09); }
html.light .r-cell:first-child .r-label { color: rgba(13,13,13,.60); }

/* ─── MARQUEE ─────────────────────────────────────────── */
html.light .m-wrap { border-top: 1px solid rgba(0,0,0,.09); border-bottom: 1px solid rgba(0,0,0,.09); }
html.light .m-item { color: rgba(13,13,13,.50); }

/* ─── GALLERY / CAROUSEL ──────────────────────────────── */
html.light .g-fade-l {
  background: linear-gradient(to right, #f4f1eb 0%, rgba(244,241,235,.85) 35%, transparent 100%);
}
html.light .g-fade-r {
  background: linear-gradient(to left, #f4f1eb 0%, transparent 100%);
}
html.light .g-card { background: #dedad2; border-color: rgba(0,0,0,.10); }

/* ─── CLIENT LOGOS ────────────────────────────────────── */
html.light .clients-logos img {
  filter: brightness(0);
  opacity: .30;
}
html.light .clients-logos img:hover { opacity: .65; }
html.light .clients-lbl { color: rgba(13,13,13,.45); }

/* ─── INTRO VIDEO MOSAIC ──────────────────────────────── */
html.light .intro-vid { box-shadow: 0 16px 50px rgba(0,0,0,.12); }
html.light .intro-vid-2 { border-color: rgba(124,58,237,.22); }

/* ─── VIDEO INTERLUDE ─────────────────────────────────── */
html.light .vid-interlude video { filter: brightness(.52) saturate(1.0); }
html.light .vid-interlude-overlay {
  background: linear-gradient(to right,
    rgba(244,241,235,.42) 0%, transparent 38%,
    transparent 62%, rgba(244,241,235,.42) 100%);
}
/* quote text stays white — it sits on the darkened video */
html.light .vid-interlude-quote { color: #fff; }

/* ─── WORK PREVIEW ────────────────────────────────────── */
html.light #work-preview { border-top-color: rgba(0,0,0,.09); }

/* ─── WORK / PORTFOLIO PAGE ───────────────────────────── */
html.light .work-filters { background: var(--black); border-bottom-color: rgba(0,0,0,.09); }
html.light .work-filter-btn { color: rgba(13,13,13,.62); border-color: rgba(0,0,0,.14); }
html.light .work-filter-btn.active,
html.light .work-filter-btn:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
html.light .work-card { background: #dedad2; }
html.light .work-card-overlay { background: rgba(0,0,0,.22); }
html.light .play-btn {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
/* Lightbox stays dark in both modes — correct for video viewing */

/* ─── TESTIMONIALS ────────────────────────────────────── */
html.light .t-card { box-shadow: 0 2px 20px rgba(0,0,0,.09); }
html.light .t-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.14); }

/* ─── FOOTER ──────────────────────────────────────────── */
html.light footer { background: var(--dark); border-top: 1px solid rgba(0,0,0,.09); }
html.light .footer-logo img { filter: brightness(0); }
html.light .footer-links a { color: rgba(13,13,13,.55); }
html.light .footer-links a:hover { color: #0d0d0d; }
html.light .footer-desc { color: rgba(13,13,13,.55); }
html.light .footer-bottom { border-top-color: rgba(0,0,0,.09); color: rgba(13,13,13,.40); }
html.light .footer-bottom a { color: rgba(13,13,13,.40); }
html.light .footer-bottom a:hover { color: #0d0d0d; }

/* ─── CONTENT PRODUCTION ──────────────────────────────── */
html.light .cp-hero-video {
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  border-color: rgba(124,58,237,.18);
}

/* ─── THEME TOGGLE — light mode version ──────────────── */
html.light #theme-toggle {
  background: rgba(234,231,223,.92);
  border-color: rgba(0,0,0,.14);
  color: rgba(13,13,13,.85);
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
}
html.light #theme-toggle:hover {
  background: rgba(222,219,211,.98);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

/* ══════════════════════════════════════════════════════════
   STUDIO SECTION (homepage)
   ══════════════════════════════════════════════════════════ */
.studio-section { background: var(--dark); padding: 120px 0; }
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.studio-copy h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 18px 0 24px;
  color: var(--white);
}
.studio-copy h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--purple-lt);
}
.studio-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 36px;
}
.studio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
  margin-bottom: 40px;
  max-width: 460px;
}
.studio-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.studio-stats strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.studio-stats span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
}

/* asymmetric image collage */
.studio-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 12px;
}
.studio-img { border-radius: 14px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.studio-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.studio-img:hover img { transform: scale(1.05); }
.studio-img-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.studio-img-2 { grid-column: 5 / 7; grid-row: 1 / 2; }
.studio-img-3 { grid-column: 5 / 7; grid-row: 2 / 3; }
.studio-img-4 { grid-column: 1 / 4; grid-row: 3 / 4; }
.studio-img-5 { grid-column: 4 / 7; grid-row: 3 / 4; }

@media (max-width: 1100px) {
  .studio-grid { grid-template-columns: 1fr; gap: 48px; }
  .studio-images { grid-template-rows: 180px 180px 180px; }
}
@media (max-width: 640px) {
  .studio-section { padding: 64px 0; }
  .studio-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .studio-img-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .studio-img-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .studio-img-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .studio-img-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .studio-img-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .studio-stats { grid-template-columns: 1fr 1fr; }
}

/* Light mode */
html.light .studio-section { background: var(--dark); }
html.light .studio-stats > div { border-top-color: rgba(0,0,0,.10); }

/* ══════════════════════════════════════════════════════════
   STUDIO PAGE
   ══════════════════════════════════════════════════════════ */
.studio-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}
.studio-hero-img {
  position: absolute; inset: 0;
}
.studio-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.55); }
.studio-hero-content {
  position: relative; z-index: 2;
  max-width: 880px;
  padding: 140px 48px 80px;
}
.studio-hero h1 {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: #fff;
  margin: 18px 0 24px;
}
.studio-hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--purple-lt);
}
.studio-hero p {
  font-size: 19px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 600px;
}
.studio-gallery {
  padding: 100px 0;
  background: var(--black);
}
.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 24px;
  max-width: 1500px;
  margin: 0 auto;
}
.studio-gallery-grid .studio-img { border-radius: 10px; aspect-ratio: 4/3; }
.studio-gallery-grid .studio-img.tall { aspect-ratio: 3/4; grid-row: span 2; }
@media (max-width: 900px) {
  .studio-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-hero-content { padding: 120px 24px 60px; }
}
@media (max-width: 480px) {
  .studio-gallery-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SERVICE PAGE VIDEO REEL — staggered heights
   ══════════════════════════════════════════════════════════ */
.svc-reel .vid-reel-track {
  align-items: center;
  gap: 16px;
}
.svc-reel .vid-reel-item {
  width: 200px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.06);
}
.svc-reel .vid-reel-item.vid-reel-tall {
  width: 230px;
  transform: translateY(-12px);
}
.svc-reel .vid-reel-item:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 24px 60px rgba(124,58,237,.30);
  z-index: 2;
}
.svc-reel .vid-reel-item.vid-reel-tall:hover {
  transform: scale(1.04) translateY(-18px);
}
.svc-reel .vid-reel-track-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  padding: 24px 0;
}
@media (max-width: 768px) {
  .svc-reel .vid-reel-item { width: 140px; }
  .svc-reel .vid-reel-item.vid-reel-tall { width: 160px; transform: translateY(-8px); }
}
html.light .svc-reel .vid-reel-item { border-color: rgba(0,0,0,.08); }

/* ══════════════════════════════════════════════════════════
   SERVICE PAGE — "WATCH" SECTION (founder walkthrough)
   ══════════════════════════════════════════════════════════ */
.svc-watch {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  border-top: 1px solid var(--border);
}
.svc-watch-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.svc-watch-copy { max-width: 460px; }
.svc-watch-copy h3 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--white);
  margin: 16px 0 20px;
}
.svc-watch-copy h3 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--purple-lt);
}
.svc-watch-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.svc-watch-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.svc-watch-meta .dot { color: var(--purple-lt); font-size: 16px; line-height: 1; }

.svc-watch-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 120px -20px rgba(124,58,237,.50),
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.06);
  transition: box-shadow .35s ease, transform .35s ease;
  isolation: isolate;
}
.svc-watch-video:hover {
  box-shadow:
    0 0 160px -10px rgba(124,58,237,.65),
    0 40px 100px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.10);
  transform: translateY(-4px);
}
.svc-watch-video .yt-thumb {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer;
  border-radius: 0 !important;
}
.svc-watch-video .yt-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: filter .3s, transform .6s ease;
}
.svc-watch-video:hover .yt-thumb img { filter: brightness(.7); transform: scale(1.03); }
.svc-watch-video .yt-iframe-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100%; height: 100%;
}
.svc-watch-video .yt-iframe-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Custom play button — branded purple circle */
.svc-watch-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(124,58,237,.92);
  border: 1px solid rgba(255,255,255,.20);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(124,58,237,.6);
  transition: transform .3s ease, background .3s, box-shadow .3s;
  z-index: 2;
  padding: 0;
}
.svc-watch-video:hover .svc-watch-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--purple-lt);
  box-shadow: 0 16px 50px rgba(124,58,237,.75);
}
.svc-watch-play svg { width: 32px; height: 32px; margin-left: 4px; }

@media (max-width: 1024px) {
  .svc-watch { padding: 72px 0; }
  .svc-watch-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-watch-copy { max-width: none; }
  .svc-watch-play { width: 64px; height: 64px; }
  .svc-watch-play svg { width: 24px; height: 24px; }
}

/* Hide the original red YT play button when it appears inside .svc-watch-video */
.svc-watch-video .yt-play-btn { display: none !important; }

/* Light mode treatment */
html.light .svc-watch { background: var(--dark); border-top-color: rgba(0,0,0,.10); }
html.light .svc-watch-video {
  box-shadow:
    0 0 120px -20px rgba(124,58,237,.30),
    0 30px 80px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(0,0,0,.06);
}
html.light .svc-watch-video:hover {
  box-shadow:
    0 0 160px -10px rgba(124,58,237,.45),
    0 40px 100px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(0,0,0,.10);
}

/* ══════════════════════════════════════════════════════════
   "WHAT MAKES US DIFFERENT" — Instagram DM thread style on mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #different .wrap { padding: 0 16px; max-width: 520px; }
  #different .diff-top { margin-bottom: 24px; }
  #different .diff-h2 { font-size: clamp(28px, 7vw, 36px); }

  /* Frame the cards as a chat thread */
  .diff-grid {
    display: flex !important;
    flex-direction: column;
    gap: 10px !important;
    background: #0d0d10;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 0 0 16px;
    position: relative;
    overflow: hidden;
  }
  /* IG-style header bar */
  .diff-grid::before {
    content: '';
    display: block;
    height: 56px;
    background:
      linear-gradient(to right, transparent 16px, rgba(255,255,255,.04) 16px, rgba(255,255,255,.04) 56px, transparent 56px) repeat-y,
      #14141a;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
  }
  .diff-grid > .diff-thread-head {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    color: #fff;
    z-index: 2;
  }
  .diff-grid > .diff-thread-head .avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #c4b5fd);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff;
  }
  .diff-grid > .diff-thread-head .name {
    font-size: 14px; font-weight: 600; line-height: 1;
  }
  .diff-grid > .diff-thread-head .status {
    font-size: 11px; color: rgba(255,255,255,.55); line-height: 1; margin-top: 3px;
  }
  .diff-grid > .diff-thread-head .meta {
    margin-left: auto; font-size: 11px; color: rgba(255,255,255,.45);
  }
  .diff-grid > .diff-thread-head .name-block { display: flex; flex-direction: column; }

  /* Each card → a DM bubble */
  .diff-card {
    background: #1d1d22 !important;
    border: none !important;
    border-radius: 18px 18px 18px 4px !important;
    padding: 12px 16px !important;
    max-width: 78%;
    align-self: flex-start;
    margin: 0 12px !important;
    box-shadow: none !important;
  }
  /* Odd cards (1, 3) on the LEFT — Mike sending */
  .diff-card:nth-child(2),
  .diff-card:nth-child(4) {
    align-self: flex-end;
    background: linear-gradient(135deg, #6d28d9 0%, #7C3AED 60%, #9D5FF3 100%) !important;
    border-radius: 18px 18px 4px 18px !important;
    color: #fff !important;
  }
  .diff-card:nth-child(2) h3,
  .diff-card:nth-child(4) h3,
  .diff-card:nth-child(2) p,
  .diff-card:nth-child(4) p { color: #fff !important; }
  .diff-card:nth-child(2) .accent,
  .diff-card:nth-child(4) .accent { color: #fff !important; font-weight: 600; }

  .diff-card .num {
    font-size: 10px !important;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5) !important;
    margin-bottom: 4px !important;
    padding: 0 !important;
    background: none !important;
    position: static !important;
    display: block !important;
  }

  .diff-card h3 {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    margin: 0 0 5px !important;
    line-height: 1.3 !important;
    letter-spacing: -.005em !important;
  }

  .diff-card p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: rgba(255,255,255,.78) !important;
  }

  /* Reply bar at the bottom */
  .diff-grid::after {
    content: 'Message...';
    display: block;
    margin: 12px 16px 0;
    padding: 11px 18px;
    background: #14141a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
  }

  /* Light mode chat thread */
  html.light .diff-grid { background: #f0ece4; border-color: rgba(0,0,0,.10); }
  html.light .diff-grid > .diff-thread-head { color: #0d0d0d; }
  html.light .diff-grid > .diff-thread-head .status { color: rgba(0,0,0,.55); }
  html.light .diff-grid > .diff-thread-head .meta { color: rgba(0,0,0,.45); }
  html.light .diff-grid::before { background: #e6e1d6; border-bottom-color: rgba(0,0,0,.08); }
  html.light .diff-card { background: #ffffff !important; }
  html.light .diff-card h3 { color: #0d0d0d !important; }
  html.light .diff-card p { color: rgba(0,0,0,.72) !important; }
  html.light .diff-card .num { color: rgba(0,0,0,.45) !important; }
  html.light .diff-grid::after { background: #ffffff; border-color: rgba(0,0,0,.10); color: rgba(0,0,0,.45); }
}

/* Hide the thread header on desktop */
@media (min-width: 769px) {
  .diff-thread-head { display: none; }
}

/* ══════════════════════════════════════════════════════════
   VIDEO FRAME — attribution overlay (Ryan, Squito videos)
   ══════════════════════════════════════════════════════════ */
.vid-frame { position: relative; max-width: 380px; margin: 0 auto; }
.vid-frame-att {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  z-index: 3;
  pointer-events: none;
}
.vid-frame-logo {
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.vid-frame-logo img { width: 70%; height: 70%; object-fit: contain; display: block; }
.vid-frame-logo--text {
  background: linear-gradient(135deg, #7C3AED, #c4b5fd);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.vid-frame-meta {
  display: flex; flex-direction: column;
  line-height: 1.1;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
}
.vid-frame-meta strong {
  font-size: 13px; font-weight: 700; letter-spacing: -.005em;
  margin-bottom: 2px;
}
.vid-frame-meta span {
  font-size: 11px; color: rgba(255,255,255,.7); font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   MOBILE CALL BUTTON — visible only on mobile in nav
   ══════════════════════════════════════════════════════════ */
.mob-call-btn {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--purple);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.005em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(124,58,237,.4);
  -webkit-tap-highlight-color: rgba(255,255,255,.2);
  margin-right: 4px;
}
.mob-call-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
@media (max-width: 900px) {
  .mob-call-btn { display: inline-flex; }
  /* Hide desktop nav phone block on mobile (already done) but keep call btn visible */
  nav#nav .nav-phone { display: none !important; }
}
@media (max-width: 380px) {
  .mob-call-btn span { display: none; } /* tiny screens — icon only */
  .mob-call-btn { width: 38px; height: 38px; padding: 0; justify-content: center; }
  .mob-call-btn svg { width: 16px; height: 16px; }
}

/* ══════════════════════════════════════════════════════════
   "WHAT MAKES US DIFFERENT" — social FEED post style on mobile
   (replaces the DM bubble look)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Reset the prior DM rules — make each card a social-style post */
  .diff-grid {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    gap: 14px !important;
  }
  .diff-grid::before, .diff-grid::after { display: none !important; content: none !important; }
  .diff-thread-head { display: none !important; }

  .diff-card {
    background: #14141a !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    align-self: stretch !important;
    color: var(--white) !important;
    overflow: hidden;
  }
  .diff-card::before {
    content: '';
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background-image:
      radial-gradient(circle at 20px 50%, #7C3AED 0, #7C3AED 12px, transparent 13px),
      radial-gradient(circle at 20px 50%, transparent 0, transparent 11px, rgba(255,255,255,.15) 11px, rgba(255,255,255,.15) 14px, transparent 15px);
  }
  /* Header row — username + ago */
  .diff-card .num {
    position: absolute !important;
    top: 18px;
    left: 50px;
    background: none !important;
    color: var(--white) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: -.005em !important;
    padding: 0 !important;
  }
  .diff-card .num::before { content: 'exposure.media'; }
  .diff-card .num::after {
    content: ' · ' attr(data-time, '2h');
    color: rgba(255,255,255,.45);
    font-weight: 500;
    margin-left: 4px;
  }
  /* Hide the actual "01" / "02" digits — header was repurposed */
  .diff-card .num { font-size: 0 !important; }
  .diff-card .num::before, .diff-card .num::after { font-size: 13px !important; }

  .diff-card h3 {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    padding: 16px 18px 8px !important;
    color: var(--white) !important;
    letter-spacing: -.01em !important;
  }
  .diff-card p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    padding: 0 18px 14px !important;
    color: rgba(255,255,255,.78) !important;
  }
  .diff-card .accent { color: var(--purple-lt) !important; font-weight: 600; }
  /* Fake engagement footer */
  .diff-card::after {
    content: '♡   💬   ↗';
    display: block;
    padding: 10px 18px 14px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.55);
    font-size: 16px;
    letter-spacing: 18px;
  }
  html.light .diff-card { background: #fff !important; border-color: rgba(0,0,0,.08) !important; }
  html.light .diff-card h3 { color: #0d0d0d !important; }
  html.light .diff-card p { color: rgba(0,0,0,.72) !important; }
  html.light .diff-card .num,
  html.light .diff-card .num::before { color: #0d0d0d !important; }
  html.light .diff-card .num::after { color: rgba(0,0,0,.45) !important; }
  html.light .diff-card::before, html.light .diff-card::after { border-color: rgba(0,0,0,.08) !important; }
  html.light .diff-card::after { color: rgba(0,0,0,.55) !important; }
  html.light .diff-card::before {
    background-image:
      radial-gradient(circle at 20px 50%, #7C3AED 0, #7C3AED 12px, transparent 13px),
      radial-gradient(circle at 20px 50%, transparent 0, transparent 11px, rgba(0,0,0,.18) 11px, rgba(0,0,0,.18) 14px, transparent 15px) !important;
  }
}

/* ══════════════════════════════════════════════════════════
   FEED SECTION — condense on mobile to fit in one phone screen
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .feed-stage { gap: 16px !important; }
  .feed-side .feed-lead { margin-bottom: 10px !important; font-size: 14px !important; line-height: 1.5 !important; }
  .feed-side h3 { font-size: 24px !important; margin-bottom: 8px !important; line-height: 1.15 !important; }
  .feed-side .case-tag { margin-bottom: 8px !important; }
  .feed-side .feed-stats { padding-top: 14px !important; gap: 14px 24px !important; }
  .feed-side .feed-stats .s strong { font-size: 22px !important; margin-bottom: 0 !important; }
  .feed-side .feed-stats .s { font-size: 12px !important; }
  .feed-side .feed-dots, .feed-side .feed-controls { display: none !important; } /* hide nav on mobile, autoplay handles it */
  .feed-phone { width: 280px !important; height: 500px !important; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES GRID — simpler, more digestible on mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .services-grid { gap: 12px !important; }
  .svc-card { padding: 22px 20px !important; min-height: 0 !important; }
  .svc-card .svc-icon { width: 42px !important; height: 42px !important; margin-bottom: 14px !important; border-radius: 12px !important; }
  .svc-card .svc-icon svg { width: 18px !important; height: 18px !important; }
  .svc-card .svc-num { font-size: 11px !important; margin-bottom: 8px !important; }
  .svc-card .svc-title { font-size: 18px !important; margin-bottom: 8px !important; }
  .svc-card .svc-desc { font-size: 13.5px !important; line-height: 1.55 !important; margin-bottom: 14px !important; }
  .svc-card .svc-pills { gap: 6px !important; }
  .svc-card .svc-pill { font-size: 10px !important; padding: 3px 9px !important; }
  .svc-card .svc-card-link { font-size: 12px !important; }
}

/* ══════════════════════════════════════════════════════════
   VIDEO FRAME — bottom gradient overlay with name + role
   (replaces the small corner pill — much more visible)
   ══════════════════════════════════════════════════════════ */
.vid-frame { position: relative; max-width: 380px; margin: 0 auto; }
.vid-frame-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(124,58,237,.92);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 3;
  pointer-events: none;
}
.vid-frame-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 32px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.vid-frame-logo-lg {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.vid-frame-logo-lg img { width: 72%; height: 72%; object-fit: contain; display: block; }
.vid-frame-logo-lg--text {
  background: linear-gradient(135deg, #7C3AED, #c4b5fd);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.vid-frame-bottom-meta {
  display: flex; flex-direction: column;
  line-height: 1.15;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
}
.vid-frame-bottom-meta strong {
  font-size: 16px; font-weight: 700; letter-spacing: -.005em;
  margin-bottom: 3px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.vid-frame-bottom-meta span {
  font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
@media (max-width: 768px) {
  .vid-frame-bottom { padding: 38px 16px 14px; }
  .vid-frame-bottom-meta strong { font-size: 17px; }
  .vid-frame-tag { font-size: 11px; padding: 6px 11px; }
}

/* ══════════════════════════════════════════════════════════
   STICKY MOBILE BOTTOM BAR — Call Us Now
   ══════════════════════════════════════════════════════════ */
.mob-bottom-bar {
  display: none; /* hidden on desktop */
}
@media (max-width: 900px) {
  .mob-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: #050507;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 -8px 30px rgba(0,0,0,.5);
    border-top: 1px solid rgba(255,255,255,.08);
    -webkit-tap-highlight-color: rgba(124,58,237,.4);
    transition: background .2s;
  }
  .mob-bottom-bar:active { background: #0d0d12; }
  .mob-bottom-bar svg {
    width: 18px; height: 18px;
    color: var(--purple-lt);
    flex-shrink: 0;
  }
  .mob-bottom-bar-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255,255,255,.6);
  }
  .mob-bottom-bar-num {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.005em;
    color: #fff;
  }
  /* Push body content up so it doesn't hide behind the bar */
  body { padding-bottom: 64px; }
  footer { margin-bottom: 0; }
  /* Theme toggle button — push above the bar so it doesn't overlap */
  #theme-toggle { bottom: calc(60px + 28px) !important; }
}

/* ══════════════════════════════════════════════════════════
   FEED SECTION — REALLY tight on mobile (one phone screen)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #vid-reel-section, .vid-reel-section { padding: 60px 0 60px !important; }
  .vid-reel-header { margin-bottom: 24px !important; }
  .vid-reel-title { font-size: clamp(28px, 7vw, 36px) !important; }
  .vid-reel-sub { font-size: 14px !important; }
  .feed-stage { gap: 12px !important; margin-top: 24px !important; }
  .feed-side h3 { font-size: 22px !important; line-height: 1.2 !important; margin-bottom: 6px !important; }
  .feed-side .feed-lead { font-size: 13.5px !important; line-height: 1.45 !important; margin-bottom: 8px !important; }
  .feed-side .case-tag { margin-bottom: 6px !important; font-size: 10px !important; }
  .feed-side .feed-stats { padding-top: 12px !important; gap: 12px 22px !important; }
  .feed-side .feed-stats .s strong { font-size: 20px !important; }
  .feed-side .feed-stats .s { font-size: 11px !important; }
  .feed-phone { width: 260px !important; height: 462px !important; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05) !important; }
  .feed-phone .feed-tt-top, .feed-phone .feed-tt-bot { font-size: 11px !important; }
  .feed-phone .feed-cap { font-size: 11px !important; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES GRID — horizontal swipe carousel on mobile
   (no more long vertical scroll through all 6 cards)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .services-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px !important;
    padding: 8px 20px 24px !important;
    gap: 12px !important;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .services-grid > * {
    flex-shrink: 0;
    width: 78vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  /* Hint that there's more to swipe */
  .services-top {
    margin-bottom: 8px !important;
  }
  .services-top::after {
    content: '👉  Swipe for more';
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--purple-lt);
    text-transform: uppercase;
  }
  html.light .services-top::after { color: var(--purple); }
}
