/* ============================================================
   HAPP STUDIO — shared stylesheet
   Design system: KOTA-inspired editorial, zero border-radius
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink:    #0D0D0D;
  --white:  #F4F4F2;
  --pure:   #FFFFFF;
  --mid:    #888885;
  --rule:   #E2E2DE;
  --accent: #0000FF;
  --serif:  'DM Serif Display', serif;
  --sans:   'Inter', sans-serif;
  --nav-h:  72px;
  --nav-h-scrolled: 60px;
  --ease:   cubic-bezier(0.76, 0, 0.24, 1);
}

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--pure);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* hide native cursor on desktop only (toggled by JS adding .has-cursor) */
body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor .magnetic { cursor: none; }

/* ── CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring { display: none; }
body.has-cursor #cursor-dot,
body.has-cursor #cursor-ring { display: block; }
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}
body.hovering #cursor-ring {
  width: 60px; height: 60px;
  opacity: 0.45;
}
body.hovering-accent #cursor-ring { border-color: var(--accent); }
/* invert the custom cursor over the dark fullscreen menu so it stays visible */
body.kmenu-open #cursor-dot { background: #fff; }
body.kmenu-open #cursor-ring { border-color: rgba(255,255,255,0.7); }
/* invert over dark sections (dark footer, deep-blue blocks) so it stays visible */
body.cursor-invert #cursor-dot { background: #fff; }
body.cursor-invert #cursor-ring { border-color: rgba(255,255,255,0.75); }
body.hovering-accent #cursor-dot { background: var(--accent); }

/* ── PAGE TRANSITION OVERLAY ── */
#page-transition {
  position: fixed; inset: 0; z-index: 11000;
  background: var(--ink);
  transform: translateY(100%);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
#page-transition .pt-logo {
  font-family: var(--serif); color: var(--pure);
  font-size: 0.78rem; line-height: 1.1; text-align: center;
  border: 1.5px solid rgba(255,255,255,0.4);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 950;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  pointer-events: none; will-change: transform;
}

/* parallax headroom — inner media is oversized so it can drift without gaps */
.svc-row-visual { will-change: transform; }
.svc-row-visual .vis-inner { top: -14%; bottom: -14%; height: auto; }
.parallax-media { will-change: transform; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: var(--nav-h);
  background: rgba(255,255,255,0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
              height 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
nav.site-nav.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo-box {
  width: 44px; height: 44px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.72rem;
  letter-spacing: 0.01em; line-height: 1.1;
  text-align: center; text-decoration: none; color: var(--ink);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-logo-box:hover { background: var(--ink); color: var(--pure); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
  font-size: 0.82rem; font-weight: 500; color: var(--mid);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  color: inherit; text-decoration: none; transition: color 0.2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-hire {
  background: var(--ink); color: var(--pure);
  padding: 11px 22px; font-size: 0.82rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.nav-hire span { position: relative; z-index: 1; }
.nav-hire svg { width: 14px; height: 14px; position: relative; z-index: 1;
  transition: transform 0.3s var(--ease); }
.nav-hire::before {
  content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease); z-index: 0;
}
.nav-hire:hover::before { transform: scaleX(1); }
.nav-hire:hover svg { transform: translate(2px, -2px); }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s ease; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 850;
  background: var(--pure);
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
body.menu-open .mobile-menu { transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2.2rem, 9vw, 3.4rem);
  text-decoration: none; color: var(--ink); padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-hire {
  margin-top: 28px; font-family: var(--sans); font-size: 0.95rem;
  font-weight: 600; color: var(--accent);
}

/* ── SHARED LAYOUT ── */
.sec { padding: 108px 0; border-bottom: 1px solid var(--rule); position: relative; }
.sec.no-rule { border-bottom: none; }

/* alternating section tones — break up the light background */
.sec-cream { background: var(--white); }

.sec-blue {
  background: radial-gradient(120% 140% at 80% 0%, #1B2BFF 0%, #0A12C8 45%, #060A6B 100%);
  color: #EDEEFF; border-bottom: none; overflow: hidden;
}
.sec-blue .sec-label { color: rgba(255,255,255,0.6); }
.sec-blue .sec-label::after, .sec-blue .sec-label::before { background: rgba(255,255,255,0.22); }
.sec-blue h2, .sec-blue h3 { color: #fff; }
.sec-blue h2 em { color: #fff; opacity: 0.85; }
.sec-blue .sec-sub { color: rgba(255,255,255,0.72); }
.sec-blue .results-grid,
.sec-blue .result { border-color: rgba(255,255,255,0.18); }
.sec-blue .result-num { color: #fff; }
.sec-blue .result-label { color: rgba(255,255,255,0.72); }
.sec-blue .result-client { color: rgba(255,255,255,0.5); }
.sec-blue .stat-cards { background: rgba(255,255,255,0.16); }
.sec-blue .stat-card { background: transparent; }
.sec-blue .stat-card .num { color: #fff; }
.sec-blue .stat-card .lbl { color: rgba(255,255,255,0.72); }
.sec-blue .value-row { border-color: rgba(255,255,255,0.18); }
.sec-blue .value-row:first-child { border-top-color: rgba(255,255,255,0.18); }
.sec-blue .value-line { background: #9DB0FF; }
.sec-blue .value-name { color: #fff; }
.sec-blue .value-desc { color: rgba(255,255,255,0.72); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 820px; }

.sec-label {
  font-size: 0.74rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 52px;
  display: flex; align-items: center; gap: 16px;
}
.sec-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.sec-label.center { justify-content: center; }
.sec-label.center::after, .sec-label.center::before {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}

h1, h2, h3 { font-weight: 400; }
h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.015em;
}
h2 em, h1 em { font-style: italic; color: var(--accent); }
.sec-sub { color: var(--mid); font-size: 1rem; line-height: 1.65; max-width: 420px; margin-top: 18px; }

/* split-line reveal helper (used by GSAP) */
.reveal-line { overflow: hidden; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 150px 0; overflow: hidden;
}
.hero.short { min-height: 86vh; }

.aurora {
  position: absolute; top: -10%; right: -5%;
  width: 75vw; height: 90vh; border-radius: 50%;
  background: radial-gradient(ellipse at 60% 40%,
    rgba(99,179,255,0.55) 0%, rgba(59,130,246,0.40) 20%,
    rgba(147,197,253,0.30) 40%, rgba(191,219,254,0.15) 60%, transparent 75%);
  filter: blur(48px); pointer-events: none; z-index: 0;
  animation: aurora-drift 20s infinite alternate ease-in-out;
}
.aurora-2 {
  position: absolute; top: 20%; right: 15%;
  width: 50vw; height: 60vh; border-radius: 50%;
  background: radial-gradient(ellipse at 40% 60%,
    rgba(167,139,250,0.30) 0%, rgba(139,92,246,0.18) 30%,
    rgba(196,181,253,0.10) 55%, transparent 70%);
  filter: blur(56px); pointer-events: none; z-index: 0;
  animation: aurora-drift-2 24s infinite alternate ease-in-out;
}
@keyframes aurora-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-6%, 5%) scale(1.12); }
}
@keyframes aurora-drift-2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(8%, -6%) scale(1.18); }
}

/* interactive glow that follows the cursor inside the hero */
.hero-glow {
  position: absolute; top: 0; left: 0;
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(37,99,235,0.85) 0%,
    rgba(59,90,246,0.60) 26%,
    rgba(120,90,246,0.38) 48%,
    rgba(150,120,250,0.18) 62%,
    transparent 74%);
  filter: blur(56px);
  pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity 0.5s ease;
  will-change: transform;
}

.hero-headline {
  position: relative; z-index: 2; padding: 0 28px;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 14.5vw, 13.5rem);
  line-height: 0.92; letter-spacing: -0.025em; color: var(--ink);
  margin-top: auto;
}
.hero-headline .line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hero-headline .word { display: inline-block; }
.hero-headline em { font-style: italic; }

.hero-subtext {
  position: absolute; bottom: 52px; right: 32px;
  max-width: 280px; z-index: 3;
  font-size: 0.96rem; line-height: 1.6; color: var(--ink);
}
.hero-subtext strong { font-weight: 700; }

.hero-badges {
  position: absolute; bottom: 52px; left: 32px;
  display: flex; gap: 20px; align-items: center; z-index: 3; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

.celebrating {
  position: absolute; top: 92px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.12em; z-index: 3; white-space: nowrap;
}

/* simple page hero (interior pages) */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 90px) 0 80px;
  border-bottom: 1px solid var(--rule); overflow: hidden;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.94; letter-spacing: -0.025em;
}
.page-hero h1 .line { display: block; overflow: hidden; }
.page-hero .page-hero-sub {
  margin-top: 28px; max-width: 520px; font-size: 1.05rem;
  line-height: 1.6; color: var(--mid);
}

/* ── MARQUEE ── */
.marquee-band {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 18px 0; overflow: hidden; background: var(--pure);
}
.marquee-track {
  display: inline-flex; white-space: nowrap; will-change: transform;
}
.marquee-track span {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  padding: 0 32px; color: var(--mid);
  display: inline-flex; align-items: center; gap: 32px;
}
.marquee-track span::after {
  content: '\25CF'; font-style: normal; font-family: var(--sans);
  font-size: 0.4rem; color: var(--accent);
}

/* ── SERVICES (homepage compact grid) ── */
.svc-head { display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; }
.services-grid {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule); border-bottom: none;
}
.svc {
  padding: 44px 32px 40px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden; transition: background 0.25s;
}
.svc:last-child { border-right: none; }
.svc:hover { background: #F7F7F5; }
.svc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px;
  background: var(--accent); transition: right 0.35s ease;
}
.svc:hover::after { right: 0; }
.svc-num { font-size: 0.74rem; font-weight: 600; color: var(--rule);
  letter-spacing: 0.06em; margin-bottom: 36px; }
.svc-name { font-family: var(--serif); font-size: 1.55rem; margin-bottom: 14px; }
.svc-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; margin-top: 28px;
  color: var(--ink); border-bottom: 1px solid var(--rule);
  padding-bottom: 1px; text-decoration: none; transition: color 0.2s, border-color 0.2s;
}
.svc-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── BIG ALTERNATING SERVICE ROWS (KOTA style) ── */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 96px 0; border-bottom: 1px solid var(--rule);
}
.svc-row:last-child { border-bottom: none; }
.svc-row.flip .svc-row-text { order: 2; }
.svc-row.flip .svc-row-visual { order: 1; }
.svc-row-num {
  font-family: var(--serif); font-size: 1rem; color: var(--accent);
  margin-bottom: 22px; letter-spacing: 0.04em;
}
.svc-row-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 22px; }
.svc-row-title .line { display: block; }
.svc-row-desc { color: var(--mid); font-size: 1.02rem; line-height: 1.7; max-width: 460px; }
.svc-row-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 32px;
  font-size: 0.86rem; font-weight: 600; text-decoration: none; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.svc-row-link:hover { color: var(--accent); border-color: var(--accent); }
.svc-row-visual {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(145deg, #ECECEA 0%, #DBDBD8 100%);
}
.svc-row-visual .vis-inner {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.svc-row-visual .tile-ph {
  font-size: 0.72rem; font-weight: 600; color: #B9B9B5;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px dashed #CFCFCB; padding: 9px 16px;
}

/* ── ANIMATED FLUID GRADIENT (homepage service visuals) ──
   each service uses a different organic shape; all morph + flow on scroll  */
.svc-fluid {
  position: absolute; inset: 0; overflow: visible; background: transparent;
  will-change: transform;
}
.svc-fluid .blob { position: absolute; filter: blur(55px); will-change: transform, border-radius; }

/* ── Variant A — soft organic orb ── */
.svc-fluid--a .b1 { width: 74%; height: 76%; left: 14%; top: 12%;
  border-radius: 58% 42% 47% 53% / 55% 50% 50% 45%;
  background: radial-gradient(circle at 44% 42%, #1B2BFF 0%, #0A12C8 46%, rgba(10,18,200,0) 72%);
  animation: morphOrb 17s ease-in-out infinite; }
.svc-fluid--a .b2 { width: 44%; height: 44%; left: 50%; top: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, #7C5BFF 0%, rgba(124,91,255,0) 64%);
  animation: drift1 21s ease-in-out infinite alternate; }
.svc-fluid--a .b3 { display: none; }

/* ── Variant B — diagonal flowing ribbon ── */
.svc-fluid--b .b1 { width: 48%; height: 124%; left: 28%; top: -12%;
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  background: linear-gradient(152deg, rgba(27,43,255,0) 0%, #2D4BFF 42%, #0A12C8 68%, rgba(10,18,200,0) 100%);
  animation: ribbon 18s ease-in-out infinite; }
.svc-fluid--b .b2 { width: 58%; height: 58%; left: 6%; top: 36%;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: radial-gradient(circle, #5B8DEF 0%, rgba(91,141,239,0) 66%);
  animation: morphOrb 23s ease-in-out infinite reverse; }
.svc-fluid--b .b3 { display: none; }

/* ── Variant C — S-curve twist (two woven blobs) ── */
.svc-fluid--c .b1 { width: 52%; height: 52%; left: 6%; top: 2%;
  border-radius: 50% 50% 60% 40% / 55% 45% 55% 45%;
  background: radial-gradient(circle, #1B2BFF 0%, rgba(27,43,255,0) 68%);
  animation: drift2 18s ease-in-out infinite alternate; }
.svc-fluid--c .b2 { width: 56%; height: 56%; left: 42%; top: 42%;
  border-radius: 45% 55% 50% 50% / 50% 50% 60% 40%;
  background: radial-gradient(circle, #0A12C8 0%, rgba(10,18,200,0) 68%);
  animation: drift3 20s ease-in-out infinite alternate; }
.svc-fluid--c .b3 { width: 34%; height: 34%; left: 33%; top: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, #6D5BFF 0%, rgba(109,91,255,0) 64%);
  animation: drift1 24s ease-in-out infinite alternate; }

@keyframes morphOrb {
  0%   { border-radius: 58% 42% 47% 53% / 55% 50% 50% 45%; transform: translate(0,0) rotate(0deg) scale(1); }
  33%  { border-radius: 42% 58% 60% 40% / 48% 52% 48% 52%; transform: translate(-8%,6%) rotate(6deg) scale(1.08); }
  66%  { border-radius: 52% 48% 38% 62% / 60% 42% 58% 40%; transform: translate(7%,-5%) rotate(-5deg) scale(0.95); }
  100% { border-radius: 58% 42% 47% 53% / 55% 50% 50% 45%; transform: translate(0,0) rotate(0deg) scale(1); }
}
@keyframes ribbon {
  0%   { transform: rotate(26deg) translate(0,0) scaleY(1); }
  50%  { transform: rotate(33deg) translate(6%,-5%) scaleY(1.08); }
  100% { transform: rotate(26deg) translate(0,0) scaleY(1); }
}
@keyframes drift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(14%,-10%) scale(1.16); } }
@keyframes drift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(16%,12%) scale(1.12); } }
@keyframes drift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-14%,-9%) scale(1.14); } }

/* "bleed" mode — no box, gradient blends into the page background */
.svc-row-visual--bleed { background: none; overflow: visible; }
.svc-row-visual--bleed .blob { filter: blur(62px); }

/* seamless — no dividing lines between the service rows */
#services .svc-row { border-bottom: none; }

/* ── SERVICE CARDS (homepage — 3-up, replaces the big alternating rows) ── */
.svc-cards {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.svc-card {
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  text-decoration: none; color: var(--ink);
  border: 1px solid var(--rule); background: var(--pure);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* accent line wipes across the bottom on hover */
.svc-card::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 3px; right: 100%;
  background: var(--accent); transition: right 0.45s var(--ease); z-index: 6;
}
.svc-card:hover { border-color: #C9C9EC; background: #FBFBFF; box-shadow: 0 22px 50px -28px rgba(0,0,255,0.28); }
.svc-card:hover::after { right: 0; }

.svc-card-visual {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: linear-gradient(150deg, #E4E7FF 0%, #F1F2FF 52%, #FFFFFF 100%);
  border-bottom: 1px solid var(--rule);
}
.svc-card-visual .svc-fluid { position: absolute; inset: 0; }
.svc-card-visual .svc-fluid .blob { filter: blur(46px); }

.svc-card-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card-num {
  font-family: var(--serif); font-size: 0.92rem; color: var(--accent);
  letter-spacing: 0.04em; margin-bottom: 10px;
}
.svc-card-title {
  font-family: var(--serif); font-size: 1.85rem; line-height: 1.08;
  letter-spacing: -0.015em; margin-bottom: 8px; transition: color 0.25s ease;
}
.svc-card:hover .svc-card-title { color: var(--accent); }
.svc-card-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.55; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 26px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink); transition: color 0.25s ease;
}
.svc-card-link .arr { display: inline-block; transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-card-link { color: var(--accent); }
.svc-card:hover .svc-card-link .arr { transform: translateX(5px); }

/* ── WORK ── */
.work-head { display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }
.work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; background: var(--rule); }
.work-tile {
  background: #EBEBEA; aspect-ratio: 16/10; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer;
}
.work-tile-large { grid-column: span 2; aspect-ratio: 21/9; }
.tile-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #E8E8E6 0%, #D8D8D5 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease);
}
.work-tile:hover .tile-bg { transform: scale(1.06); }
.tile-ph {
  font-size: 0.72rem; font-weight: 600; color: #C4C4C0;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px dashed #D4D4D0; padding: 7px 14px;
}
.tile-overlay {
  position: absolute; inset: 0; background: rgba(13,13,13,0.78);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.work-tile:hover .tile-overlay { transform: translateY(0); }
.tile-play {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: transform 0.5s var(--ease);
}
.work-tile:hover .tile-play { transform: rotate(180deg); }
.tile-play::after {
  content: ''; width: 0; height: 0; border-style: solid;
  border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.tile-tag { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.tile-name { font-family: var(--serif); font-size: 1.25rem; color: #fff; }

/* ── RESULTS ── */
.results-grid {
  margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule); border-right: none; border-bottom: none;
}
.result { padding: 44px 28px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.result-num { font-family: var(--serif); font-size: 3.2rem; color: var(--accent);
  line-height: 1; letter-spacing: -0.02em; }
.result-label { margin-top: 14px; font-size: 0.88rem; color: var(--mid); line-height: 1.55; }
.result-client { margin-top: 20px; font-size: 0.72rem; font-weight: 600; color: #CCCCC8;
  text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PARTNERS ── */
.partners { padding: 56px 0; border-bottom: 1px solid var(--rule); overflow: hidden; }
.partners-label { font-size: 0.72rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.partners-marquee { overflow: hidden; position: relative; }
.partners-track { display: inline-flex; white-space: nowrap; will-change: transform; }
.partners-track .partner {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 34px; height: 44px; flex-shrink: 0; transition: color 0.2s;
}
.partner-logo {
  height: 30px; width: auto; max-width: 120px; object-fit: contain;
  filter: grayscale(1); opacity: 0.5; transition: filter 0.3s ease, opacity 0.3s ease;
}
.partners-track .partner:hover .partner-logo { filter: grayscale(0); opacity: 1; }
.partner-text { font-family: var(--serif); font-size: 1.15rem; color: var(--mid); transition: color 0.2s; white-space: nowrap; }
.partners-track .partner:hover .partner-text { color: var(--ink); }

/* static partners grid (about page) */
.partners-grid {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.partners-grid .partner {
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 18px 24px; font-size: 0.88rem; font-weight: 500; color: var(--mid);
  transition: color 0.2s; flex: 1 1 140px; min-width: 140px; text-align: center;
}
.partners-grid .partner:hover { color: var(--ink); }

/* ── TESTIMONIALS ── */
.testi-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--rule); }
.testi { background: var(--pure); padding: 44px; }
.testi-q { font-family: var(--serif); font-size: 1.1rem; line-height: 1.55;
  color: var(--ink); margin-bottom: 28px; }
.testi-q::before { content: '\201C'; }
.testi-q::after  { content: '\201D'; }
.testi-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; }
.testi-role { font-size: 0.8rem; color: var(--mid); }

/* ── URGENCY ── */
.urgency { background: var(--ink); color: #fff; border-bottom: none; }
.urgency-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px; padding: 64px 32px; max-width: 1200px; margin: 0 auto;
}
.urgency-title { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 10px; }
.urgency-title em { font-style: italic; color: #93C5FD; }
.urgency-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 380px; line-height: 1.6; }
.slots { display: flex; gap: 10px; }
.slot { width: 56px; height: 56px; border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.25); }
.slot.taken { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.2); text-decoration: line-through; }
.slot.open { border-color: #93C5FD; color: #93C5FD; font-weight: 700; }
.slots-wrap { text-align: center; }
.slots-note { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 10px;
  text-transform: uppercase; letter-spacing: 0.06em; }
.btn-white {
  background: #fff; color: var(--ink); padding: 16px 28px;
  font-size: 0.88rem; font-weight: 700; text-decoration: none; white-space: nowrap;
  display: inline-block; position: relative; overflow: hidden;
}
.btn-white span { position: relative; z-index: 1; transition: color 0.3s ease; }
.btn-white::before { content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.btn-white:hover::before { transform: scaleX(1); }
.btn-white:hover span { color: #fff; }

/* ── CTA ── */
.cta-sec { text-align: center; }
.cta-sec h2 { max-width: 760px; margin: 0 auto; }
.cta-sec .sec-sub { margin: 20px auto 0; text-align: center; }
.cta-btns { margin-top: 40px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: #fff; padding: 17px 32px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); z-index: 0; }
.btn-primary:hover::before { transform: scaleX(1); }
.cta-note { margin-top: 16px; font-size: 0.8rem; color: var(--mid); }

/* ── FAQ ── */
.faq-list { margin-top: 48px; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; text-align: left;
  font-family: var(--sans); font-size: 0.98rem; font-weight: 600; color: var(--ink);
}
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--mid);
  transition: transform 0.3s, background 0.2s, color 0.2s, border-color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-body { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.faq-body-inner { padding-bottom: 28px; }
.faq-body p { font-size: 0.94rem; color: var(--mid); line-height: 1.65; max-width: 640px; }

/* ── ABOUT: team ── */
.team-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
.team-card { }
.team-photo {
  aspect-ratio: 3/4; position: relative; background: #EDEDEB;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.team-photo .team-img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2; }
.team-photo .ph-tag { font-size: 0.72rem; font-weight: 600; color: #B9B9B5;
  text-transform: uppercase; letter-spacing: 0.08em; }
.team-photo::before, .team-photo::after,
.team-photo .tb-x, .team-photo .tb-y { content: ''; position: absolute; background: var(--accent); }
/* animated tracing border */
.team-photo .tb-top, .team-photo .tb-right, .team-photo .tb-bottom, .team-photo .tb-left {
  position: absolute; background: var(--accent);
}
.team-photo .tb-top { top: 0; left: 0; height: 2px; width: 0; transition: width 0.3s ease; }
.team-photo .tb-right { top: 0; right: 0; width: 2px; height: 0; transition: height 0.3s ease 0.3s; }
.team-photo .tb-bottom { bottom: 0; right: 0; height: 2px; width: 0; transition: width 0.3s ease 0.6s; }
.team-photo .tb-left { bottom: 0; left: 0; width: 2px; height: 0; transition: height 0.3s ease 0.9s; }
.team-card:hover .tb-top { width: 100%; }
.team-card:hover .tb-right { height: 100%; }
.team-card:hover .tb-bottom { width: 100%; }
.team-card:hover .tb-left { height: 100%; }
.team-name { font-family: var(--serif); font-size: 1.4rem; margin-top: 22px; }
.team-role { font-size: 0.8rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
.team-bio { font-size: 0.9rem; color: var(--mid); line-height: 1.6; margin-top: 14px; }

/* ── ABOUT: values ── */
.values-list { margin-top: 40px; }
.value-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: baseline;
  padding: 36px 0; border-bottom: 1px solid var(--rule); position: relative;
}
.value-row:first-child { border-top: 1px solid var(--rule); }
.value-line { position: absolute; top: 0; left: 0; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left; }
.value-name { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.value-desc { color: var(--mid); font-size: 1rem; line-height: 1.65; max-width: 520px; }

/* ── CASE STUDY ── */
.cs-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); margin-bottom: 28px; }
.cs-meta span { position: relative; }
.cs-meta span:not(:last-child)::after { content: '·'; margin-left: 14px; color: var(--rule); }
.cs-summary { font-size: 1.15rem; line-height: 1.6; color: var(--mid); max-width: 600px; margin-top: 24px; }
.cs-hero-img { margin-top: 56px; height: 50vh; min-height: 360px;
  background: linear-gradient(145deg, #E8E8E6 0%, #D6D6D3 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; }
.cs-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 0; }
.cs-col h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 14px; }
.cs-col p { color: var(--mid); font-size: 0.95rem; line-height: 1.65; }
.cs-col .cs-stat { font-family: var(--serif); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.cs-body { max-width: 720px; margin-top: 0; }
.cs-body p { font-size: 1.05rem; line-height: 1.8; color: #2a2a28; margin-bottom: 24px; }
.cs-pullquote { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3; margin: 48px 0; padding-left: 28px; border-left: 2px solid var(--accent); }
.cs-pullquote em { font-style: italic; color: var(--accent); }
.cs-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; background: var(--rule); margin-top: 24px; }
.cs-gallery .g-tile { aspect-ratio: 4/3; background: linear-gradient(145deg, #E8E8E6, #D8D8D5);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; }
.cs-gallery .g-tall { grid-row: span 2; aspect-ratio: auto; }
.cs-outcome { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.cs-outcome-num { font-family: var(--serif); font-size: clamp(4rem, 9vw, 7rem); color: var(--accent); line-height: 0.9; }
.cs-next { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  padding: 56px 0; border-top: 1px solid var(--rule); }
.cs-next-label { font-size: 0.74rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mid); margin-bottom: 8px; }
.cs-next-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); }
.cs-next a { text-decoration: none; color: var(--ink); }
.cs-next a:hover .cs-next-title { color: var(--accent); }

/* ── WORK HUB cards (60vh stacked) ── */
.hub-card {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  padding: 56px; overflow: hidden; border-bottom: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
}
.hub-card-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #E8E8E6 0%, #D4D4D1 100%);
  transition: transform 0.7s var(--ease);
}
.hub-card:hover .hub-card-bg { transform: scale(1.05); }
.hub-card-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(13,13,13,0);
  transition: background 0.5s ease; }
.hub-card:hover .hub-card-overlay { background: rgba(13,13,13,0.72); }
.hub-card-inner { position: relative; z-index: 2; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px;
  transition: color 0.4s ease; }
.hub-card:hover .hub-card-inner { color: #fff; }
.hub-card-tag { font-size: 0.74rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mid); margin-bottom: 16px; transition: color 0.4s; }
.hub-card:hover .hub-card-tag { color: rgba(255,255,255,0.6); }
.hub-card-title { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; }
.hub-card-desc { max-width: 360px; font-size: 0.98rem; line-height: 1.6;
  opacity: 0; max-height: 0; transition: opacity 0.4s ease 0.1s, max-height 0.4s ease; color: rgba(255,255,255,0.8); }
.hub-card:hover .hub-card-desc { opacity: 1; max-height: 120px; }
.hub-card-arrow { width: 56px; height: 56px; border: 1.5px solid currentColor;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.3s, color 0.3s; }
.hub-card:hover .hub-card-arrow { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── CASE STUDY CARD GRID (work hub) ── */
.cs-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.cs-card { text-decoration: none; color: var(--ink); display: block; }
.cs-card-thumb { aspect-ratio: 4/3; background: linear-gradient(145deg, #E8E8E6, #D8D8D5);
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.cs-card-thumb .tile-bg { transition: transform 0.6s var(--ease); }
.cs-card:hover .cs-card-thumb .tile-bg { transform: scale(1.06); }
.cs-card-client { font-family: var(--serif); font-size: 1.4rem; margin-top: 20px; }
.cs-card-tag { font-size: 0.72rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.cs-card-result { font-size: 0.92rem; color: #2a2a28; margin-top: 12px; line-height: 1.55; }
.cs-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--rule); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.cs-card:hover .cs-card-link { color: var(--accent); border-color: var(--accent); }

/* ── VIDEO / PHOTO GRIDS ── */
.video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; background: var(--rule); margin-top: 56px; }
.video-grid-3 { grid-template-columns: repeat(3, 1fr); }
.work-tile.vid { text-decoration: none; color: inherit; }
.yt-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform 0.6s var(--ease); }
.work-tile.vid:hover .yt-thumb { transform: scale(1.06); }
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform 0.6s var(--ease); }
.vid-hidden { display: none !important; }

/* load more */
.load-more-wrap { text-align: center; margin-top: 44px; }
.btn-load { background: none; border: 1px solid var(--ink); color: var(--ink);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600; padding: 15px 30px;
  cursor: pointer; position: relative; overflow: hidden; }
.btn-load span { position: relative; z-index: 1; transition: color 0.3s ease; }
.btn-load::before { content: ''; position: absolute; inset: 0; background: var(--ink);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.btn-load:hover::before { transform: scaleX(1); }
.btn-load:hover span { color: #fff; }

/* ── VIDEO LIGHTBOX ── */
#video-modal { position: fixed; inset: 0; z-index: 11000; display: none;
  align-items: center; justify-content: center; padding: 24px; }
#video-modal.open { display: flex; }
#video-modal .vm-backdrop { position: absolute; inset: 0; background: rgba(13,13,13,0.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
#video-modal .vm-inner { position: relative; z-index: 1; width: min(1040px, 94vw); }
#video-modal .vm-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden; }
#video-modal .vm-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
#video-modal .vm-close { position: absolute; top: -46px; right: 0; background: none; border: none;
  color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; padding: 6px; }
#video-modal .vm-close:hover { color: var(--accent); }
.photo-masonry { columns: 3; column-gap: 3px; margin-top: 56px; }
.photo-masonry .work-tile { break-inside: avoid; margin-bottom: 3px; display: block; aspect-ratio: auto; }
.photo-masonry .ph-1 { height: 320px; } .photo-masonry .ph-2 { height: 240px; }
.photo-masonry .ph-3 { height: 400px; }

/* ── SOCIAL: phone mockups ── */
.feed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.phone { aspect-ratio: 9/19; border: 1.5px solid var(--ink); border-radius: 28px;
  padding: 10px; background: var(--pure); position: relative; }
.phone-screen { width: 100%; height: 100%; border-radius: 18px; overflow: hidden;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); }
.phone-screen .cell { background: linear-gradient(145deg, #E8E8E6, #D8D8D5); aspect-ratio: 1; }
.phone-label { text-align: center; font-family: var(--serif); font-size: 1.15rem; margin-top: 18px; }
.stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.stat-card { background: var(--pure); padding: 40px 28px; }
.stat-card .num { font-family: var(--serif); font-size: 2.8rem; color: var(--accent); line-height: 1; }
.stat-card .lbl { margin-top: 14px; font-size: 0.9rem; color: var(--mid); line-height: 1.55; }

/* ── CONTACT ── */
/* glow behind the contact / interior hero */
.page-hero.has-glow { overflow: hidden; }
.page-hero.has-glow::before {
  content: ''; position: absolute; top: -40%; right: -8%; width: 60vw; height: 130%;
  background: radial-gradient(circle at 60% 40%, rgba(45,75,255,0.30), rgba(120,90,246,0.14) 45%, transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
  animation: aurora-drift 22s infinite alternate ease-in-out;
}
.page-hero.has-glow .wrap { position: relative; z-index: 1; }

.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; margin-top: 8px; align-items: start; }

/* dark-blue contact panel on the right */
.contact-panel {
  background: radial-gradient(130% 130% at 100% 0%, #1B2BFF 0%, #0A12C8 48%, #060A6B 100%);
  color: #EDEEFF; padding: 48px 40px; align-self: stretch;
}
.contact-panel-title { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; color: #fff; }
.contact-panel-sub { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 28px; }
.contact-panel .contact-info-block { margin-bottom: 28px; }
.contact-panel .ci-label { color: rgba(255,255,255,0.5); }
.contact-panel .ci-value { color: #fff; }
.contact-panel .ci-value a { color: #fff; }
.contact-panel .ci-value a:hover { color: #9DB0FF; }
.contact-panel .cta-note { color: rgba(255,255,255,0.6); }
.contact-panel .btn-whatsapp { width: 100%; justify-content: center; }
.contact-divider { height: 1px; background: rgba(255,255,255,0.14); margin: 4px 0 28px; }
.field { position: relative; margin-bottom: 36px; }
.field input, .field select, .field textarea {
  width: 100%; background: none; border: none; border-bottom: 1px solid var(--rule);
  padding: 12px 0; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  transition: border-color 0.3s;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field label {
  position: absolute; left: 0; top: 12px; color: var(--mid); font-size: 1rem;
  pointer-events: none; transition: transform 0.25s var(--ease), color 0.25s, font-size 0.25s;
  transform-origin: left;
}
.field.filled label, .field input:focus + label, .field textarea:focus + label, .field select:focus + label {
  transform: translateY(-22px) scale(0.78); color: var(--accent);
}
.field select { color: var(--mid); }
.field select.touched { color: var(--ink); }
.field-static label { position: static; transform: none; font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
.btn-submit {
  background: var(--ink); color: #fff; border: none; padding: 17px 34px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px; position: relative; overflow: hidden;
  margin-top: 8px;
}
.btn-submit span.lbl { position: relative; z-index: 1; }
.btn-submit::before { content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit .spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%; position: relative; z-index: 1; animation: spin 0.7s linear infinite; }
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .lbl { opacity: 0.6; }
.btn-submit.done .spinner { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-info-block { margin-bottom: 36px; }
.contact-info-block .ci-label { font-size: 0.72rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.contact-info-block .ci-value { font-family: var(--serif); font-size: 1.3rem; }
.contact-info-block a { text-decoration: none; color: var(--ink); transition: color 0.2s; }
.contact-info-block a:hover { color: var(--accent); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff;
  padding: 16px 26px; font-size: 0.92rem; font-weight: 600; text-decoration: none;
  margin-bottom: 10px; transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp svg { width: 18px; height: 18px; }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--rule); background: var(--white); padding: 80px 0 36px; }
.footer-cta {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 28px; padding-bottom: 52px; border-bottom: 1px solid var(--rule);
}
.footer-cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.015em; }
.footer-cta-title em { font-style: italic; color: var(--accent); }
.footer-cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0; }
.footer-brand { max-width: 340px; }
.footer-logo { width: 48px; height: 48px; border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.74rem; text-align: center; line-height: 1.1;
  text-decoration: none; color: var(--ink); transition: background 0.25s, color 0.25s; }
.footer-logo:hover { background: var(--ink); color: var(--pure); }
.footer-blurb { margin-top: 22px; font-size: 0.92rem; line-height: 1.6; color: var(--mid); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--mid); margin-bottom: 18px; }
.footer-col a { font-size: 0.95rem; color: var(--ink); text-decoration: none;
  padding: 7px 0; position: relative; transition: color 0.2s; }
.footer-col a::after { content: ''; position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-col a:hover::after { transform: scaleX(1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid var(--rule); }
.footer-copy { font-size: 0.78rem; color: var(--mid); }
.footer-meta { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #BFBFBB; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--mid); transition: color 0.2s; display: flex; }
.footer-social a:hover { color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4); text-decoration: none;
  opacity: 0; transform: scale(0) translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}
.wa-float.show { opacity: 1; transform: scale(1) translateY(0); animation: wa-bounce 2.4s ease-in-out 0.6s infinite; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes wa-bounce { 0%, 92%, 100% { transform: translateY(0); } 96% { transform: translateY(-6px); } }

/* ── REVEAL DEFAULTS (no-JS / pre-JS safety) ── */
.gsap-fade, .gsap-stagger > * { opacity: 1; }
.no-gsap .gsap-fade, .no-gsap .gsap-stagger > * { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE — breakpoint at 768px
   ============================================================ */
@media (max-width: 1024px) {
  .svc-row { gap: 40px; }
  .cs-card-grid, .team-grid, .feed-grid, .stat-cards, .cs-cols { gap: 24px; }
}

@media (max-width: 768px) {
  body { cursor: auto !important; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto !important; }
  #cursor-dot, #cursor-ring { display: none !important; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  nav.site-nav { padding: 0 20px; }

  .sec { padding: 72px 0; }
  .wrap { padding: 0 20px; }

  .hero-headline { padding: 0 20px; font-size: clamp(3.4rem, 17vw, 6rem); }
  .hero-subtext { position: static; margin: 32px 20px 0; max-width: 100%; }
  .hero-badges { position: static; margin: 28px 20px 0; }
  .celebrating { top: 84px; }

  .page-hero { padding: calc(var(--nav-h) + 56px) 0 56px; }

  .svc-head, .work-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; }

  .svc-row { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .svc-row.flip .svc-row-text { order: 1; }
  .svc-row.flip .svc-row-visual { order: 2; }

  .svc-cards { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .svc-card-visual { aspect-ratio: 4 / 5; }

  .work-grid { grid-template-columns: 1fr; }
  .work-tile-large { grid-column: span 1; aspect-ratio: 16/10; }
  .tile-overlay { transform: translateY(0); opacity: 1; background: linear-gradient(transparent, rgba(13,13,13,0.85) 55%); }

  .results-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .urgency-inner { flex-direction: column; align-items: flex-start; padding: 48px 20px; }

  .team-grid, .cs-card-grid, .feed-grid, .stat-cards { grid-template-columns: 1fr; }
  .cs-cols { grid-template-columns: 1fr; }
  .cs-outcome { grid-template-columns: 1fr; gap: 24px; }
  .cs-gallery { grid-template-columns: 1fr; }
  .cs-gallery .g-tall { grid-row: span 1; }
  .photo-masonry { columns: 1; }
  .video-grid, .video-grid-3 { grid-template-columns: 1fr; }

  .value-row { grid-template-columns: 1fr; gap: 12px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .site-footer { padding: 56px 0 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 44px 0; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hub-card { padding: 36px 20px; min-height: 48vh; }
  .hub-card-desc { opacity: 1; max-height: none; color: rgba(0,0,0,0.6); }
  .hub-card:hover .hub-card-desc { color: rgba(255,255,255,0.8); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::after, *::before { transition-duration: 0.001s !important; animation: none !important; }
  .aurora, .aurora-2 { animation: none !important; }
}

/* ============================================================
   BLOG  (blog.html index + blog-post template)
   Reuses --ink/--accent/--rule tokens, zero radius, serif heads.
   ============================================================ */

/* --- post list (text-first, no thumbnails) --- */
.post-list { margin-top: 40px; border-top: 1px solid var(--rule); }
/* Related posts grid at the foot of each blog post */
.related-sec { padding-top: 0; }
.related-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  flex-wrap: wrap; margin-bottom: 36px; padding-top: 40px; border-top: 1px solid var(--rule); }
.related-title { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3vw, 2.2rem); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.related-card { display: flex; flex-direction: column; gap: 12px; text-decoration: none;
  color: var(--ink); padding-top: 22px; border-top: 2px solid var(--ink); }
.related-card-meta { display: flex; align-items: center; gap: 10px; font-size: 0.74rem;
  font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; }
.related-card-meta .dot { width: 3px; height: 3px; background: var(--mid); border-radius: 50%; }
.related-card-title { font-family: var(--serif); font-size: 1.2rem; line-height: 1.28;
  transition: color 0.2s; }
.related-card:hover .related-card-title { color: var(--accent); }
.related-card-link { margin-top: auto; padding-top: 6px; font-size: 0.82rem; font-weight: 600;
  color: var(--accent); }
@media (max-width: 820px){ .related-grid { grid-template-columns: 1fr; gap: 0; }
  .related-card { padding: 22px 0; border-top: 1px solid var(--rule); }
  .related-card:first-child { border-top: 2px solid var(--ink); } }

.post-row {
  display: block; text-decoration: none; color: var(--ink);
  padding: 36px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left 0.35s var(--ease);
}
.post-row:hover { padding-left: 14px; }
.post-row-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.74rem; font-weight: 600; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.post-row-meta .dot { width: 3px; height: 3px; background: var(--mid); border-radius: 50%; }
.post-row-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.16; margin-top: 12px; transition: color 0.2s;
}
.post-row:hover .post-row-title { color: var(--accent); }
.post-row-excerpt { font-size: 1rem; color: #2a2a28; line-height: 1.62; margin-top: 12px; max-width: 640px; }
.post-row-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--rule); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.post-row:hover .post-row-link { color: var(--accent); border-color: var(--accent); }

/* lead post (first row) reads a touch bigger */
.post-row.is-lead { padding-top: 44px; }
.post-row.is-lead .post-row-title { font-size: clamp(2rem, 4.4vw, 3rem); }
.post-row.is-lead .post-row-excerpt { font-size: 1.08rem; max-width: 680px; }

/* --- pagination --- */
.pagination {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 56px;
  border-top: 1px solid var(--rule); padding-top: 32px;
}
.pg-link {
  font-family: var(--sans); font-size: 0.84rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--ink); padding: 11px 22px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.pg-link:hover { background: var(--accent); border-color: var(--accent); color: var(--pure, #fff); }
.pg-link.is-disabled { color: var(--rule); border-color: var(--rule); pointer-events: none; }
.pg-nums { display: flex; align-items: center; gap: 6px; }
.pg-num {
  font-family: var(--sans); font-size: 0.84rem; font-weight: 600;
  color: var(--mid); text-decoration: none;
  min-width: 38px; height: 38px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.pg-num:hover { color: var(--ink); border-color: var(--rule); }
.pg-num.pg-current { color: var(--pure, #fff); background: var(--accent); border-color: var(--accent); }

@media (max-width: 560px) {
  .pagination { justify-content: center; }
  .pg-nums { order: -1; width: 100%; justify-content: center; margin-bottom: 4px; }
}

/* --- single post: hero + meta --- */
.post-head .cs-meta a { color: inherit; text-decoration: none; }
.post-head .cs-meta a:hover { color: var(--accent); }
.post-byline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 26px; font-size: 0.82rem; color: var(--mid); }
.post-byline strong { color: var(--ink); font-weight: 600; }
.post-byline .dot { width: 3px; height: 3px; background: var(--mid); border-radius: 50%; }

/* --- article prose (extends .cs-body) --- */
.post-body { max-width: 720px; margin: 0 auto; }
.post-body > * { max-width: 720px; }
.post-body h2 { font-family: var(--serif); font-size: clamp(1.6rem,3.4vw,2.1rem);
  line-height: 1.18; margin: 52px 0 18px; }
.post-body h3 { font-family: var(--serif); font-size: 1.34rem; margin: 38px 0 14px; }
.post-body p { font-size: 1.08rem; line-height: 1.8; color: #2a2a28; margin-bottom: 24px; }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { margin: 0 0 24px 1.1em; }
.post-body li { font-size: 1.08rem; line-height: 1.8; color: #2a2a28; margin-bottom: 10px; }
.post-body blockquote {
  margin: 38px 0; padding: 6px 0 6px 28px; border-left: 3px solid var(--accent);
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; font-style: italic; color: var(--ink);
}
.post-body img { width: 100%; height: auto; margin: 38px 0; }
.post-body figure { margin: 38px 0; }
.post-body figcaption { font-size: 0.8rem; color: var(--mid); margin-top: 10px; text-align: center; }
.post-body hr { border: none; border-top: 1px solid var(--rule); margin: 48px 0; }
.post-body code { font-size: 0.92em; background: #ededeb; padding: 2px 6px; }

/* ============================================================
   INTERACTION LAYER  (added 2026-06)
   Richer micro-interactions + bolder motion. All effects are
   desktop-only and disabled under prefers-reduced-motion via JS
   guards; styles below are inert until JS adds the hooks.
   ============================================================ */

/* --- 3D pointer tilt + sheen on cards --- */
/* JS (initCardTilt) drives rotateX/rotateY through GSAP so it composes
   with the existing scroll-reveal transforms. We only add a sheen layer
   and the relative/clip context here. */
.tilt { position: relative; }
.tilt .tilt-sheen {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%),
              rgba(120,120,255,0.22), rgba(120,120,255,0) 62%);
  mix-blend-mode: screen;
}
.tilt.tilt-active .tilt-sheen { opacity: 1; }
/* dark hub cards: brighter highlight reads on the dark hover overlay.
   z-index 1 keeps the glare over the image/overlay but under the text (z-index 2). */
.hub-card.tilt .tilt-sheen { z-index: 1;
  background: radial-gradient(circle 260px at var(--mx,50%) var(--my,50%),
              rgba(255,255,255,0.28), rgba(255,255,255,0) 60%); }
/* keep real card content above the sheen (but not the sheen itself) */
.cs-card.tilt > *:not(.tilt-sheen),
.team-card.tilt > *:not(.tilt-sheen),
.svc-card.tilt > *:not(.tilt-sheen),
.testi.tilt > *:not(.tilt-sheen) { position: relative; z-index: 5; }
.cs-card.tilt, .team-card.tilt, .svc-card.tilt, .testi.tilt { overflow: hidden; }

/* --- contextual cursor: ring grows + shows a label over media --- */
#cursor-ring .cursor-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  opacity: 0; white-space: nowrap; transition: opacity 0.2s ease, transform 0.25s var(--ease);
}
body.cursor-media #cursor-ring {
  width: 84px; height: 84px; opacity: 1;
  background: var(--accent); border-color: var(--accent);
}
body.cursor-media #cursor-ring .cursor-label { opacity: 1; transform: translate(-50%, -50%) scale(1); }
body.cursor-media #cursor-dot { opacity: 0; }

/* --- sweeping sheen across primary buttons --- */
.btn-primary, .btn-white, .nav-hire { position: relative; overflow: hidden; }
.btn-primary::after, .btn-white::after, .nav-hire::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 2; opacity: 0;
}
.btn-primary:hover::after, .btn-white:hover::after, .nav-hire:hover::after {
  opacity: 1; animation: btn-sheen 0.7s var(--ease);
}
@keyframes btn-sheen { 0% { left: -60%; } 100% { left: 130%; } }
/* nav-hire sheen should be subtler (light pill on cream) */
.nav-hire::after { background: linear-gradient(100deg, transparent, rgba(0,0,255,0.18), transparent); }

/* --- bolder interior page hero: accent rule draws in under headline --- */
.page-hero .ph-accent {
  display: block; height: 3px; width: 120px; margin-top: 26px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
}
.page-hero { position: relative; }

/* --- clip-wipe image reveal hook --- */
.reveal-clip { clip-path: inset(0 100% 0 0); }

@media (max-width: 768px) {
  .tilt .tilt-sheen { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after, .btn-white::after, .nav-hire::after { display: none; }
  .page-hero .ph-accent { transform: scaleX(1); }
  .reveal-clip { clip-path: none; }
}

/* ============================================================
   SERVICE CARD VISUALS  (mocked content over the gradient)
   01 social phone+reel · 02 cinematic film frame · 03 brand sheet
   ============================================================ */
.svc-card-visual .svc-fluid { z-index: 0; }
.svc-card-visual .svc-viz {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

/* --- 01 · Digital Marketing — phone + auto-scrolling reel --- */
.reel-phone {
  position: relative; width: 150px; height: 280px;
  background: #0D0D0D; border: 6px solid #0D0D0D; overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(13,13,13,0.6);
}
.reel-track {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 9px; padding: 9px;
  animation: reelScroll 7s linear infinite;
}
.reel-frame { flex: 0 0 auto; height: 112px; }
.reel-frame.f1 { background: linear-gradient(135deg, #2D4BFF, #0A12C8); }
.reel-frame.f2 { background: linear-gradient(135deg, #7C5BFF, #2D4BFF); }
.reel-frame.f3 { background: linear-gradient(135deg, #5B8DEF, #1B2BFF); }
@keyframes reelScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

.svc-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink); font-size: 0.72rem; font-weight: 700;
  padding: 7px 10px; box-shadow: 0 10px 24px -10px rgba(13,13,13,0.4);
}
.svc-chip svg { width: 13px; height: 13px; color: var(--accent); }
.chip-like { top: 16%; right: 16%; }
.chip-new  { bottom: 18%; left: 14%; color: var(--accent); }

/* --- 02 · Video & Photo — cinematic film frame --- */
.svc-viz--video { pointer-events: none; }
.film-still { position: absolute; inset: 0; z-index: 1; }
.film-still img { width: 100%; height: 100%; object-fit: cover; }
.film-still::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.06) 0%, rgba(13,13,13,0.55) 100%); }
.film-play {
  position: relative; z-index: 2; width: 78px; height: 78px;
  border: 2px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.3s ease;
  backdrop-filter: blur(2px);
}
.film-play::before { content: ''; margin-left: 5px;
  border-left: 19px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; }
.svc-card:hover .film-play { transform: scale(1.1); background: rgba(0,0,255,0.4); }
.film-meta { position: absolute; left: 16px; bottom: 18px; z-index: 2;
  color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; }
.film-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 2;
  background: rgba(255,255,255,0.25); }
.film-bar::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 12%;
  background: var(--accent); animation: filmProg 6s ease-in-out infinite; }
@keyframes filmProg { 0% { width: 10%; } 50% { width: 92%; } 100% { width: 10%; } }

/* --- 03 · Website & Branding — floating identity sheet --- */
.svc-viz--brand { padding: 0 18px; }
.brand-sheet {
  position: relative; z-index: 1; background: #fff;
  padding: 30px 34px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  box-shadow: 0 28px 56px -26px rgba(13,13,13,0.45);
}
.brand-mark { font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--ink);
  letter-spacing: -0.02em; }
.brand-mark em { color: var(--accent); font-style: normal; }
.brand-swatches { display: flex; gap: 0; }
.brand-swatches span { width: 32px; height: 32px; transform-origin: bottom;
  animation: swBob 3.2s ease-in-out infinite; }
.brand-swatches .sw1 { background: #0000FF; }
.brand-swatches .sw2 { background: #0A12C8; animation-delay: 0.15s; }
.brand-swatches .sw3 { background: #7C5BFF; animation-delay: 0.3s; }
.brand-swatches .sw4 { background: #0D0D0D; animation-delay: 0.45s; }
.brand-swatches .sw5 { background: #F4F4F2; border: 1px solid var(--rule); animation-delay: 0.6s; }
@keyframes swBob { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(1.18); } }
.brand-type { font-family: var(--serif); font-size: 0.74rem; letter-spacing: 0.16em;
  color: var(--mid); text-transform: uppercase; }

@media (max-width: 768px) {
  .reel-phone { width: 146px; height: 272px; }
}

/* ============================================================
   LOGO IMAGES  (replaces the HA/PP text mark site-wide)
   blue wordmark on light nav/footer · white on the dark transition
   ============================================================ */
.site-logo { display: inline-flex; align-items: center; line-height: 0; }
.site-logo img {
  height: 30px; width: auto; display: block;
  transition: height 0.35s var(--ease), opacity 0.25s ease;
}
nav.site-nav.scrolled .site-logo img { height: 25px; }
.site-logo:hover img { opacity: 0.65; }

/* footer mark — drop the bordered box, show the wordmark */
.footer-logo { width: auto; height: auto; border: none; display: inline-flex; }
.footer-logo img { height: 40px; width: auto; display: block; transition: opacity 0.25s ease; }
.footer-logo:hover { background: none; }
.footer-logo:hover img { opacity: 0.65; }

/* page-transition mark — white wordmark, no box */
#page-transition .pt-logo { border: none; width: auto; height: auto; }
#page-transition .pt-logo img { height: 42px; width: auto; display: block; }

@media (max-width: 768px) {
  .site-logo img { height: 26px; }
  nav.site-nav.scrolled .site-logo img { height: 23px; }
}

/* ============================================================
   HOME — KOTA-STYLE MAKEOVER  (scoped to body.home-kota)
   Rounded, soft-grey, big sans, pinned hero + stacking panels.
   Everything below ONLY affects the homepage.
   ============================================================ */
body.home-kota {
  --kbg: #ECECEA;
  --kpanel-1: #F5F5F3;
  --kpanel-2: #0D0D0D;
  --kpanel-3: #E8E9FF;
  --kround: 0px;        /* section blocks are flush full-width; cards/images keep their own radius */
  background: var(--kbg);
}
body.home-kota ::selection { background: var(--accent); color: #fff; }

/* --- NAV (logo · pill + hamburger) --- */
.knav { background: transparent; mix-blend-mode: normal; }
.knav.scrolled { background: rgba(236,236,234,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.knav-right { display: flex; align-items: center; gap: 14px; }
.home-kota .nav-links, .home-kota .nav-hire, .home-kota .nav-toggle, .home-kota .mobile-menu { display: none; }

/* pills (rounded buttons) */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px; padding: 13px 22px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; line-height: 1; cursor: pointer; border: 1.5px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.pill svg { width: 13px; height: 13px; }
.pill-dark { background: var(--ink); color: #fff; }
.pill-dark:hover { background: var(--accent); }
.pill-line { background: transparent; color: var(--ink); border-color: rgba(13,13,13,0.25); }
.pill-line:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill-lg { padding: 17px 30px; font-size: 1rem; }

.menu-btn {
  width: 52px; height: 52px; border-radius: 999px; border: 1.5px solid rgba(13,13,13,0.25);
  background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; transition: background 0.3s, border-color 0.3s;
}
.menu-btn span { width: 18px; height: 1.6px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.3s; }
.menu-btn:hover { border-color: var(--ink); }
body.kmenu-open .menu-btn span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
body.kmenu-open .menu-btn span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

/* --- FULLSCREEN MENU --- */
.kmenu {
  position: fixed; inset: 0; z-index: 800; background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 6vw; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
body.kmenu-open .kmenu { opacity: 1; visibility: visible; }
.kmenu-inner { display: flex; flex-direction: column; gap: 4px; }
.kmenu-link { text-decoration: none; color: #fff; overflow: hidden; display: block; }
.kmenu-link span {
  display: inline-block; font-family: var(--sans); font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 6rem); line-height: 1.15; letter-spacing: -0.03em;
  padding-bottom: 0.08em;
  transform: translateY(110%); transition: transform 0.6s var(--ease), color 0.3s ease;
}
body.kmenu-open .kmenu-link span { transform: translateY(0); }
.kmenu-link:hover span { color: var(--accent); }
.kmenu-inner .kmenu-link:nth-child(1) span { transition-delay: 0.05s; }
.kmenu-inner .kmenu-link:nth-child(2) span { transition-delay: 0.10s; }
.kmenu-inner .kmenu-link:nth-child(3) span { transition-delay: 0.15s; }
.kmenu-inner .kmenu-link:nth-child(4) span { transition-delay: 0.20s; }
.kmenu-inner .kmenu-link:nth-child(5) span { transition-delay: 0.25s; }
.kmenu-inner .kmenu-link:nth-child(6) span { transition-delay: 0.30s; }
.kmenu-inner .kmenu-link:nth-child(7) span { transition-delay: 0.35s; }
.kmenu-foot { position: absolute; left: 6vw; right: 6vw; bottom: 40px; display: flex; gap: 28px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.kmenu-foot a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.kmenu-foot a:hover { color: #fff; }

/* --- PINNED HERO --- */
.khero {
  position: fixed; top: 0; left: 0; right: 0; height: 100vh; z-index: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 6vw; overflow: hidden; background: var(--kbg);
}
.khero-bg { position: absolute; inset: -10%; z-index: 0; opacity: 0.9; }
.khero-bg .svc-fluid { position: absolute; inset: 0; }
.khero-bg .blob { filter: blur(80px); }
.khero-inner { position: relative; z-index: 1; max-width: 1100px; }
.home-kota .hero-headline {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(3rem, 11vw, 9.5rem); line-height: 0.94; letter-spacing: -0.035em;
  color: var(--ink);
}
.home-kota .hero-headline .line { display: block; overflow: hidden; }
.home-kota .hero-headline .word { display: inline-block; }
.home-kota .hero-headline .word.accent { color: var(--accent); }
.khero-sub { margin-top: 30px; max-width: 480px; font-size: 1.12rem; line-height: 1.55; color: #44443f; }
.khero-scroll { position: absolute; left: 6vw; bottom: 36px; display: flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mid); }
.khero-scroll svg { width: 12px; height: 16px; animation: kbob 1.8s ease-in-out infinite; }
@keyframes kbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* --- MAIN slides up over the hero --- */
.kmain { position: relative; z-index: 2; margin-top: 100vh; background: var(--kbg);
  border-radius: var(--kround) var(--kround) 0 0; }

/* INTRO */
.kintro { background: var(--kbg); border-radius: var(--kround) var(--kround) 0 0;
  padding: clamp(80px, 12vh, 150px) 6vw clamp(60px, 8vh, 100px); }
.kintro-label { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mid); margin-bottom: 36px; }
.kintro-lead { font-family: var(--sans); font-weight: 600; max-width: 1000px;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem); line-height: 1.18; letter-spacing: -0.02em; color: var(--ink); }
.kintro-lead em { font-style: normal; color: var(--accent); }
.kintro-meta { display: flex; gap: 32px 52px; margin-top: 60px; flex-wrap: wrap; }
.kintro-meta > div { display: flex; flex-direction: column; gap: 6px; padding-top: 18px; border-top: 1px solid var(--rule); min-width: 120px; }
.kstat { font-family: var(--sans); font-weight: 700; font-size: 2.4rem; letter-spacing: -0.025em; color: var(--ink); line-height: 1; }
.klbl { font-size: 0.86rem; color: var(--mid); max-width: 150px; }

/* MARQUEE band */
.kmarquee { background: transparent; overflow: hidden; padding: 24px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.kmarquee-track { display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--sans); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.005em; color: var(--ink); }
/* override the base .marquee-track span styles (serif italic + ● dot) */
.kmarquee-track span { font-family: var(--sans); font-style: normal; font-size: 1.3rem;
  color: var(--ink); padding: 0; gap: 0; }
.kmarquee-track span::after { content: none; }
.kmarquee-track .km-item { padding: 0 30px; }
.kmarquee-track .km-sep { color: var(--mid); font-weight: 400; }

/* --- STACKING SERVICE PANELS --- */
.kstack { position: relative; }
.kpanel { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center;
  padding: 7vh 6vw; border-radius: var(--kround); overflow: hidden; }
.kpanel--a { background: var(--kpanel-1); }
.kpanel--b { background: var(--kpanel-2); color: #fff; }
.kpanel--c { background: var(--kpanel-3); }
.kpanel-inner { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.kpanel-num { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 26px; }
.kpanel--b .kpanel-num { color: rgba(255,255,255,0.5); }
.kpanel-title { font-family: var(--sans); font-weight: 700; font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.96; letter-spacing: -0.035em; color: inherit; }
.kpanel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.kpanel-tags span { border: 1.5px solid rgba(13,13,13,0.2); border-radius: 999px; padding: 8px 16px;
  font-size: 0.84rem; font-weight: 500; }
.kpanel--b .kpanel-tags span { border-color: rgba(255,255,255,0.28); }
.kpanel-desc { margin-top: 26px; max-width: 440px; font-size: 1.08rem; line-height: 1.6; color: inherit; opacity: 0.82; }
.kpanel-text .pill { margin-top: 34px; }
.kpanel--b .pill-line { color: #fff; border-color: rgba(255,255,255,0.3); }
.kpanel--b .pill-line:hover { background: #fff; color: var(--ink); border-color: #fff; }

.kpanel-visual { position: relative; aspect-ratio: 5/4; border-radius: 24px; overflow: hidden;
  background: linear-gradient(150deg, #E4E7FF, #fff); display: flex; align-items: center; justify-content: center; }
.kpanel--b .kpanel-visual { background: #000; }
.kpanel-visual .svc-fluid { position: absolute; inset: 0; }
.kpanel-visual .svc-fluid .blob { filter: blur(52px); }
.kpanel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kviz-phone, .kviz-brand { position: relative; z-index: 2; }
.kpanel-visual--media { display: block; text-decoration: none; }
.kpanel-visual--media .film-still { position: absolute; inset: 0; z-index: 1; }
.kpanel-visual--media .film-still img { width: 100%; height: 100%; object-fit: cover; }
.kpanel-visual--media .film-still::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.5)); }
.kpanel-visual--media .film-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2; width: 84px; height: 84px; border: 2px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: transform 0.4s var(--ease), background 0.3s; }
.kpanel-visual--media .film-play::before { content: ''; margin-left: 5px;
  border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; }
.kpanel-visual--media:hover .film-play { transform: translate(-50%,-50%) scale(1.1); background: rgba(0,0,255,0.4); }
.kpanel-visual--media .film-meta { position: absolute; left: 18px; bottom: 18px; z-index: 2; color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; }

/* --- SELECTED WORK --- */
.kwork { background: var(--kbg); padding: clamp(80px,12vh,140px) 6vw; border-radius: var(--kround); position: relative; z-index: 5; }
.kwork-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.ksec-title { font-family: var(--sans); font-weight: 700; font-size: clamp(2.4rem,6vw,5rem); line-height: 0.96; letter-spacing: -0.035em; }
.ksec-title em { font-style: normal; color: var(--accent); }
.kwork-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
/* Compact social-content reels row on the homepage */
.kreels-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  flex-wrap: wrap; margin: 72px 0 28px; padding-top: 40px; border-top: 1px solid var(--rule); }
.kreels-title { font-family: var(--sans); font-weight: 600; font-size: clamp(1.2rem,2.4vw,1.7rem);
  letter-spacing: -0.02em; }
.kreels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.kreels-grid .ig-card { padding: 0; border-radius: 18px; overflow: hidden; }
@media (max-width: 860px){ .kreels-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
.kcard { text-decoration: none; color: var(--ink); display: block; }
.kcard-media { aspect-ratio: 16/11; border-radius: 24px; overflow: hidden; position: relative;
  background: linear-gradient(145deg,#E8E8E6,#D6D6D2); }
.kcard-media .tile-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s var(--ease); }
.kcard:hover .kcard-media .tile-bg { transform: scale(1.05); }
.kcard-media .tile-ph { font-size: 0.78rem; font-weight: 600; color: #b6b6b2; text-transform: uppercase; letter-spacing: 0.08em; }
.kcard-media--video .film-still { position: absolute; inset: 0; }
.kcard-media--video .film-still img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.kcard:hover .kcard-media--video .film-still img { transform: scale(1.05); }
.kcard-media--video .film-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.kcard-media--video .film-play::before { content: ''; margin-left: 4px;
  border-left: 17px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.kcard-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 20px; }
.kcard-name { font-family: var(--sans); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; }
.kcard:hover .kcard-name { color: var(--accent); }
.kcard-tag { font-size: 0.78rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; }
.kcard-result { margin-top: 10px; font-size: 0.98rem; line-height: 1.55; color: #44443f; max-width: 440px; }

/* --- RESULTS --- */
.kresults { background: var(--ink); color: #fff; padding: clamp(80px,12vh,140px) 6vw; border-radius: var(--kround); position: relative; z-index: 6; }
.kresults-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.kresult-num { font-family: var(--sans); font-weight: 700; font-size: clamp(3rem,7vw,6rem); letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.kresult-lbl { margin-top: 18px; font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,0.7); max-width: 280px; }

/* --- QUOTE --- */
.kquote { background: var(--kbg); padding: clamp(90px,14vh,170px) 6vw; border-radius: var(--kround); position: relative; z-index: 7; text-align: center; }
.kquote blockquote { font-family: var(--serif); font-size: clamp(1.7rem,3.6vw,3rem); line-height: 1.32;
  max-width: 1000px; margin: 0 auto; letter-spacing: -0.01em; }
.kquote-by { margin-top: 32px; font-size: 0.9rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; }

/* --- CTA --- */
.kcta { background: linear-gradient(120deg, #1B2BFF 0%, #5B2BFF 52%, #9A38E6 100%); color: #fff; padding: clamp(90px,16vh,190px) 6vw; border-radius: var(--kround); position: relative; z-index: 8; text-align: center; }
.kcta-title { font-family: var(--sans); font-weight: 700; font-size: clamp(2.6rem,8vw,7rem); line-height: 0.96; letter-spacing: -0.035em; }
.kcta-title em { font-style: normal; color: rgba(255,255,255,0.55); }
.kcta-sub { margin: 26px auto 0; max-width: 540px; font-size: 1.1rem; line-height: 1.55; color: rgba(255,255,255,0.85); }
.kcta-btns { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.kcta .pill-dark { background: #fff; color: var(--accent); }
.kcta .pill-dark:hover { background: var(--ink); color: #fff; }
.kcta .pill-line { color: #fff; border-color: rgba(255,255,255,0.45); }
.kcta .pill-line:hover { background: #fff; color: var(--accent); border-color: #fff; }

/* --- FOOTER --- */
.kfooter { background: var(--ink); color: #fff; padding: clamp(70px,10vh,120px) 6vw 40px; border-radius: var(--kround) var(--kround) 0 0; position: relative; z-index: 9; }
.kfooter-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.kfooter .footer-logo img { height: 44px; }
.kfooter .footer-logo { filter: brightness(0) invert(1); }
.kfooter-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.kfooter .footer-col-label { color: rgba(255,255,255,0.5); }
.kfooter .footer-col a { color: rgba(255,255,255,0.82); margin-bottom: 12px; text-decoration: none; transition: color 0.2s; }
.kfooter .footer-col a:hover { color: #fff; }
.kfooter-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 0.84rem; color: rgba(255,255,255,0.5); }

/* --- FLOATING START PILL --- */
.start-pill { position: fixed; right: 24px; bottom: 24px; z-index: 700;
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px;
  background: var(--accent); color: #fff; padding: 16px 26px; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; box-shadow: 0 16px 40px -12px rgba(0,0,255,0.5);
  opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s; }
.start-pill.show { opacity: 1; transform: translateY(0); }
.start-pill:hover { background: var(--ink); }
.start-pill svg { width: 13px; height: 13px; }
body.kmenu-open .start-pill { opacity: 0; pointer-events: none; }

/* --- responsive --- */
@media (max-width: 860px) {
  .kpanel-inner { grid-template-columns: 1fr; gap: 32px; }
  .kpanel-visual { aspect-ratio: 4/3; order: -1; }
  .kwork-grid { grid-template-columns: 1fr; }
  .kresults-grid { grid-template-columns: 1fr; gap: 36px; }
  .khero-sub { font-size: 1rem; }
  .start-pill { right: 14px; bottom: 14px; padding: 13px 20px; font-size: 0.85rem; }
  .kintro-meta { gap: 40px; }
}

/* ============================================================
   HOME HERO — dynamic upgrade (badge · grain · cursor gradient · showreel ticker)
   ============================================================ */
.home-kota .khero-inner { display: flex; flex-direction: column; align-items: flex-start; }

/* status badge */
.khero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px;
  background: rgba(255,255,255,0.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(13,13,13,0.1); border-radius: 999px; padding: 9px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
}
.khero-dot { width: 8px; height: 8px; border-radius: 50%; background: #16c060; animation: kpulse 2s infinite; }
@keyframes kpulse {
  0% { box-shadow: 0 0 0 0 rgba(22,192,96,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(22,192,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,192,96,0); }
}

/* gradient follows the cursor (JS sets transform); add a will-change */
.khero-bg { will-change: transform; transition: transform 0.1s linear; }

/* film grain texture */
.khero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.45; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.khero-inner { position: relative; z-index: 2; }

/* showreel ticker */
.khero-reel {
  position: absolute; left: 0; right: 0; bottom: 92px; z-index: 2; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.khero-reel-track { display: flex; gap: 16px; width: max-content; padding: 0 6vw; animation: kreel 28s linear infinite; }
.khero-reel:hover .khero-reel-track { animation-play-state: paused; }
@keyframes kreel { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.kfloat {
  position: relative; flex: 0 0 auto; width: 210px; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden;
  text-decoration: none; background: #0D0D0D; box-shadow: 0 18px 40px -20px rgba(13,13,13,0.45);
  transition: transform 0.45s var(--ease);
}
.kfloat:hover { transform: translateY(-6px) scale(1.03); }
.kfloat .tile-bg { position: absolute; inset: 0; }
.kfloat .yt-thumb { width: 100%; height: 100%; object-fit: cover; }
.kfloat .tile-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #6c6c6c; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.kfloat-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 42px; height: 42px; border: 1.5px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s var(--ease);
}
.kfloat-play::before { content: ''; margin-left: 3px; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.kfloat:hover .kfloat-play { background: rgba(0,0,255,0.45); transform: translate(-50%,-50%) scale(1.12); }
.kfloat-cap { position: absolute; left: 11px; bottom: 9px; z-index: 2; color: #fff; font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.04em; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }

@media (max-width: 860px) {
  .khero-reel { bottom: 70px; }
  .kfloat { width: 150px; }
  .khero-badge { font-size: 0.72rem; padding: 8px 13px; }
  .khero-scroll { display: none; }
}

/* ============================================================
   HOME HERO — layered animated mesh gradient background
   ============================================================ */
/* ── Living blue-purple aurora hero ───────────────────────────── */
/* warm cream base — colour lives in a saturated band on the right */
.home-kota .khero { background: #F1EFE8; }
.home-kota .khero-bg { position: absolute; inset: -14%; z-index: 0; pointer-events: none;
  overflow: hidden; will-change: transform; transition: transform 0.14s linear;
  background-color: #F1EFE8;
  background-image:
    radial-gradient(42% 56% at 88% 2%,   #2A12FF 0%, #2A12FF 36%, rgba(42,18,255,0) 72%),
    radial-gradient(48% 66% at 96% 46%,  #1838FF 0%, #1838FF 36%, rgba(24,56,255,0) 74%),
    radial-gradient(48% 60% at 90% 100%, #0A78FF 0%, #0A78FF 34%, rgba(10,120,255,0) 74%),
    radial-gradient(36% 50% at 70% 64%,  #10B8FF 0%, #10B8FF 30%, rgba(16,184,255,0) 70%);
  background-repeat: no-repeat;
  background-size: 150% 150%;
  background-position: 100% 50%;
  animation: kflow 8s ease-in-out infinite;
}
@keyframes kflow {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 60% 100%; }
  100% { background-position: 100% 0%; }
}
.home-kota .kblob { display: none; }
/* deep indigo top of the ribbon */
.home-kota .kblob-1 { width: 60vw; height: 66vw; right: -8vw; top: -22vw;
  background: radial-gradient(closest-side, #2A18FF 0%, #2A18FF 30%, rgba(42,24,255,0.7) 58%, rgba(42,24,255,0) 82%); opacity: 1;
  animation: kdrift1 13s ease-in-out infinite; }
/* electric blue core */
.home-kota .kblob-2 { width: 58vw; height: 70vw; right: -12vw; top: 4vw;
  background: radial-gradient(closest-side, #1B5BFF 0%, #1B5BFF 30%, rgba(27,91,255,0.7) 58%, rgba(27,91,255,0) 82%); opacity: 1;
  animation: kdrift2 16s ease-in-out infinite; }
/* bright azure bottom */
.home-kota .kblob-3 { width: 62vw; height: 66vw; right: -6vw; bottom: -26vw;
  background: radial-gradient(closest-side, #0A93FF 0%, #0A93FF 28%, rgba(10,147,255,0.7) 56%, rgba(10,147,255,0) 82%); opacity: 1;
  animation: kdrift3 19s ease-in-out infinite; }
/* cyan streak threading through the middle */
.home-kota .kblob-4 { width: 34vw; height: 56vw; right: 24vw; top: 22vw;
  background: radial-gradient(closest-side, #16D2FF 0%, #16D2FF 26%, rgba(22,210,255,0.55) 54%, rgba(22,210,255,0) 80%); opacity: 0.9;
  animation: kdrift4 11s ease-in-out infinite; }
@keyframes kdrift1 { 0%{ transform: translate(0,0) scale(1) rotate(0deg); }
  50%{ transform: translate(-14vw,16vw) scale(1.28) rotate(12deg); } 100%{ transform: translate(0,0) scale(1) rotate(0deg); } }
@keyframes kdrift2 { 0%{ transform: translate(0,0) scale(1.05) rotate(0deg); }
  50%{ transform: translate(-16vw,-12vw) scale(1.3) rotate(-14deg); } 100%{ transform: translate(0,0) scale(1.05) rotate(0deg); } }
@keyframes kdrift3 { 0%{ transform: translate(0,0) scale(1) rotate(0deg); }
  50%{ transform: translate(-12vw,-18vw) scale(1.32) rotate(10deg); } 100%{ transform: translate(0,0) scale(1) rotate(0deg); } }
@keyframes kdrift4 { 0%{ transform: translate(0,0) scale(1) rotate(0deg); }
  50%{ transform: translate(-22vw,14vw) scale(1.35) rotate(-18deg); } 100%{ transform: translate(0,0) scale(1) rotate(0deg); } }
.home-kota .khero-grain { opacity: 0.5; }
@media (max-width: 768px){ .home-kota .kblob { filter: blur(40px); }
  .home-kota .kblob-4 { display: none; } }
/* legacy non-home hero bg */
.khero-bg { position: absolute; inset: -15%; z-index: 0; will-change: transform; }
.kmesh { position: absolute; border-radius: 50%; filter: blur(105px); will-change: transform; }
.kmesh-1 { width: 56%; height: 56%; top: -10%; right: -6%;
  background: radial-gradient(circle, #2D4BFF 0%, rgba(45,75,255,0) 70%); animation: kdrift1 22s ease-in-out infinite alternate; }
.kmesh-2 { width: 50%; height: 50%; bottom: -12%; left: -8%;
  background: radial-gradient(circle, #7C5BFF 0%, rgba(124,91,255,0) 70%); animation: kdrift2 27s ease-in-out infinite alternate; }
.kmesh-3 { width: 42%; height: 42%; top: 34%; left: 44%;
  background: radial-gradient(circle, #0A12C8 0%, rgba(10,18,200,0) 70%); animation: kdrift3 31s ease-in-out infinite alternate; }
.kmesh-4 { width: 36%; height: 36%; top: -6%; left: 22%;
  background: radial-gradient(circle, #5B8DEF 0%, rgba(91,141,239,0) 72%); animation: kdrift1 29s ease-in-out infinite alternate-reverse; }
/* soft white core lifts contrast behind the (left) headline */
.kmesh-glow { width: 70%; height: 78%; top: 12%; left: -12%;
  background: radial-gradient(circle, rgba(233,233,242,0.85) 0%, rgba(233,233,242,0) 60%); filter: blur(60px); }
@keyframes kdrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-10%,8%) scale(1.16); } }
@keyframes kdrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(12%,-9%) scale(1.12); } }
@keyframes kdrift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-9%,-11%) scale(1.2); } }
@media (prefers-reduced-motion: reduce) { .kmesh { animation: none !important; } }

/* ============================================================
   HOME HERO — playful note + arrow + live clock
   ============================================================ */
.khero-note { position: absolute; top: 96px; right: 46px; z-index: 3; width: 180px; text-align: right; pointer-events: none; }
.khero-note-text { font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.7rem; line-height: 1; color: var(--ink);
  display: inline-block; transform: rotate(-5deg); }
.khero-note-arrow { position: absolute; top: -44px; right: 8px; width: 92px; height: 62px; color: var(--accent); }

.khero-time { position: absolute; right: 6vw; bottom: 38px; z-index: 3; display: flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.khero-time-clock { color: var(--ink); font-variant-numeric: tabular-nums; }
.khero-time-z { color: var(--accent); }

@media (max-width: 860px) {
  .khero-note, .khero-time { display: none; }
}

/* ============================================================
   HOME HERO — full-bleed film background (cinematic / dark)
   ============================================================ */
.khero--film { background: #0D0D0D; color: #fff; }
.khero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: #0D0D0D; }
.khero-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.khero-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.3) 38%, rgba(13,13,13,0.8) 100%); }
.khero--film .khero-grain { mix-blend-mode: overlay; opacity: 0.35; }
.khero--film .khero-inner { position: relative; z-index: 2; }

.khero--film .hero-headline { color: #fff; }
.khero--film .hero-headline .word.accent { color: #6E8BFF; }
.khero--film .khero-sub { color: rgba(255,255,255,0.82); }
.khero--film .khero-badge {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: #fff;
}
.khero--film .khero-scroll { color: rgba(255,255,255,0.66); z-index: 2; }
.khero--film .khero-time { color: rgba(255,255,255,0.6); }
.khero--film .khero-time-clock { color: #fff; }
.khero--film .khero-time-z { color: #6E8BFF; }

@media (max-width: 860px) {
  /* video element keeps its poster as a fallback on mobile */
  .khero-vid { object-position: center; }
}

/* ============================================================
   INTERIOR PAGES — KOTA treatment (Visual, and reusable)
   ============================================================ */
.vhero { padding: calc(var(--nav-h) + 11vh) 6vw 6vh; }
.vhero-label { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mid); margin-bottom: 26px; }
.vhero h1 { font-family: var(--sans); font-weight: 700; font-size: clamp(2.8rem, 10vw, 8rem);
  line-height: 0.92; letter-spacing: -0.04em; color: var(--ink); margin: 0; }
.vhero h1 em { font-style: normal; color: var(--accent); }
.vhero-sub { margin-top: 28px; max-width: 540px; font-size: 1.12rem; line-height: 1.55; color: #44443f; }
.vhero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.vhero-tags span { border: 1.5px solid rgba(13,13,13,0.2); border-radius: 999px; padding: 8px 16px;
  font-size: 0.84rem; font-weight: 500; color: var(--ink); }

.vsection { padding: 4vh 6vw 9vh; }
.vsection > .ksec-title { margin-bottom: 12px; }
.vsection-sub { color: var(--mid); font-size: 1.05rem; max-width: 540px; margin: 0 0 44px; }

/* films + photos restyled for KOTA: rounded tiles, soft gaps on the page bg */
.home-kota .video-grid { gap: 20px; background: transparent; margin-top: 0; }
.home-kota .video-grid .work-tile { border-radius: 20px; overflow: hidden; }
.home-kota .photo-masonry { column-gap: 20px; margin-top: 0; }
.home-kota .photo-masonry .work-tile { border-radius: 20px; margin-bottom: 20px; overflow: hidden; }
.home-kota .load-more-wrap { margin-top: 40px; }
.home-kota .btn-load { border-radius: 999px; padding: 14px 30px; }

@media (max-width: 860px) {
  .vhero { padding: calc(var(--nav-h) + 48px) 6vw 40px; }
  .home-kota .photo-masonry { columns: 1; }
}

/* clean photo masonry — images only (Visual page) */
.photo-grid { columns: 3; column-gap: 18px; }
.photo-cell { break-inside: avoid; margin-bottom: 18px; border-radius: 16px; overflow: hidden;
  display: block; background: #e8e8e6; }
.photo-cell img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.photo-cell:hover img { transform: scale(1.05); }
@media (max-width: 1000px) { .photo-grid { columns: 2; } }
@media (max-width: 600px) { .photo-grid { columns: 1; } }

/* rolling photo rail — small tiles, two rows, opposite directions (Visual) */
.vsection--photoshead { padding-bottom: 2vh; }
.photo-rail { overflow: hidden; padding: 6px 0 9vh; }
.pm-row { overflow: hidden; }
.pm-row + .pm-row { margin-top: 16px; }
.pm-track { display: flex; gap: 16px; width: max-content; padding: 0 8px;
  animation: pmRoll 70s linear infinite; will-change: transform; }
.pm-track--rev { animation-direction: reverse; }
.photo-rail:hover .pm-track { animation-play-state: paused; }
@keyframes pmRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pm-track img { height: 220px; width: auto; display: block; border-radius: 14px;
  object-fit: cover; flex: 0 0 auto; background: #e8e8e6; transition: transform 0.4s var(--ease); }
.pm-track img:hover { transform: translateY(-5px); }
@media (max-width: 600px) { .pm-track img { height: 150px; } .pm-row + .pm-row { margin-top: 12px; } }
@media (prefers-reduced-motion: reduce) { .pm-track { animation: none !important; } }

/* ============================================================
   DIGITAL MARKETING (social.html) — KOTA treatment
   ============================================================ */
.vhero-cta { margin-top: 34px; }
.vsection--stats { padding-top: 1vh; }
.vsection--stats .kintro-meta { margin-top: 0; }

/* live Instagram feed cards */
.feeds-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-top: 40px; align-items: start; }
.ig-card { background: var(--pure); border: 1px solid var(--rule); border-radius: 22px; padding: 14px 14px 8px; }
.ig-card-head { display: flex; align-items: center; gap: 9px; padding: 4px 6px 12px; }
.ig-h-name { font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.ig-h-tag { font-size: 0.7rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.07em; }
.ig-card-head a { margin-left: auto; font-size: 0.8rem; font-weight: 600; color: var(--accent);
  text-decoration: none; white-space: nowrap; }
.ig-card-head a:hover { text-decoration: underline; }
.ig-card .instagram-media { min-width: 0 !important; width: 100% !important; margin: 0 !important; }

/* process steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.process-step { border-top: 2px solid var(--ink); padding-top: 18px; }
.process-step-num { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; color: var(--accent); }
.process-step h3 { font-family: var(--sans); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; margin: 10px 0 8px; }
.process-step p { color: var(--mid); font-size: 0.96rem; line-height: 1.56; }

/* longer testimonial reads smaller than the default kquote */
.kquote--long blockquote { font-size: clamp(1.3rem, 2.8vw, 2.05rem); line-height: 1.4; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* brands strip + reels overview grid (social.html) */
.brands-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 8px; }
.brands-row a { border: 1.5px solid rgba(13,13,13,0.2); border-radius: 999px; padding: 8px 16px;
  font-size: 0.86rem; font-weight: 600; color: var(--ink); text-decoration: none; transition: all 0.25s var(--ease); }
.brands-row a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.reels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px; margin-top: 32px; align-items: start; }
.ig-h-views { font-size: 0.72rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.04em; }

/* ============================================================
   BRANDING (branding.html) — featured case study browser frame
   ============================================================ */
.cs-feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.cs-browser {
  display: block; text-decoration: none; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--rule); background: #fff;
  box-shadow: 0 30px 70px -36px rgba(13,13,13,0.4); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cs-browser:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -34px rgba(0,0,255,0.32); }
.cs-browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #ECECEA; border-bottom: 1px solid var(--rule); }
.cs-dot { width: 11px; height: 11px; border-radius: 50%; background: #C9C9C5; }
.cs-dot:nth-child(1) { background: #ff5f57; } .cs-dot:nth-child(2) { background: #febc2e; } .cs-dot:nth-child(3) { background: #28c840; }
.cs-url { margin-left: 12px; font-size: 0.82rem; font-weight: 600; color: var(--mid);
  background: #fff; border-radius: 999px; padding: 6px 16px; flex: 1; }
.cs-browser-screen { position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(150deg, #EAF0F4, #DCE6EC); }
.cs-browser-screen iframe { position: absolute; top: 0; left: 0; width: 1400px; height: 875px;
  border: 0; transform: scale(0.62); transform-origin: top left; pointer-events: none; }

.cs-feature-tag { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--mid); }
.cs-feature-title { font-family: var(--sans); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1; letter-spacing: -0.03em; margin: 12px 0 16px; }
.cs-feature-text p { font-size: 1.05rem; line-height: 1.62; color: #44443f; max-width: 440px; margin-bottom: 26px; }
.cs-more-note { margin-top: 40px; font-size: 0.9rem; color: var(--mid); }

@media (max-width: 860px) {
  .cs-feature { grid-template-columns: 1fr; gap: 28px; }
  .cs-browser-screen iframe { width: 1100px; height: 688px; transform: scale(0.5); }
}

/* ============================================================
   ABOUT (about.html) — story + team photo
   ============================================================ */
.about-direction { max-width: 740px; margin: 30px 0 0; font-size: 1.12rem; line-height: 1.62; color: #44443f; }
.about-story { max-width: 760px; font-size: 1.2rem; line-height: 1.65; color: var(--ink); margin: 14px 0 0; }
.about-story + .about-story { margin-top: 22px; color: #44443f; }
.about-team-photo { padding: 3vh 6vw 0; }
.about-team-photo img { width: 100%; max-height: 76vh; object-fit: cover; border-radius: 22px; display: block;
  background: #e8e8e6; }
/* two-column about hero — headline left, team photo right */
.vhero--split { display: grid; grid-template-columns: 1fr 0.92fr; gap: 5vw; align-items: center; }
.vhero--split .vhero-sub { margin-bottom: 0; }
.about-team-photo--hero { margin: 0; padding: 0; justify-self: end; }
.about-team-photo--hero img { width: 100%; max-width: 600px; height: auto;
  margin: 0 0 0 auto; border-radius: 18px; display: block; }
.about-team-photo--hero figcaption { margin-top: 12px; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
@media (max-width: 860px){
  .vhero--split { grid-template-columns: 1fr; gap: 32px; }
  .about-team-photo--hero img { max-width: 380px; margin: 0; }
}
.about-clients { border-top: none; padding-top: 0; }
.about-clients .partners-marquee { margin-top: 8px; }
.home-kota .team-photo { aspect-ratio: 4/5; background: #E7E7E4; border: 1px solid var(--rule); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; margin-bottom: 18px; }
.home-kota .team-name { font-family: var(--sans); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.home-kota .team-role { font-size: 0.84rem; font-weight: 600; color: var(--accent); margin: 4px 0 10px; }
.home-kota .team-bio { font-size: 0.92rem; line-height: 1.55; color: var(--mid); }
