/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NÅŒVA Studio â€” Light theme
   Inspired by studionamma.com
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --bg:      #EFEFEB;
  --bg2:     #E8E8E4;
  --ink:     #0C0C0C;
  --ink2:    #1A1A1A;
  --muted:   #888;
  --muted2:  #AAAAAA;
  --line:    #DDDDD8;
  --accent:  #E91E8C;   /* pink like chance.co sticker */
  --yellow:  #E8FF00;
  --font-d:  'Anton', sans-serif;
  --font-b:  'DM Sans', sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  overflow-x: hidden;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* â”€â”€ NAV â”€â”€ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 60px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}

.logo {
  font-family: var(--font-d);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
}
.nav-center a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav-center a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-avail {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pulse {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mob {
  position: fixed;
  inset: 60px 0 0 0;
  background: var(--bg);
  z-index: 499;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mob.open { opacity: 1; visibility: visible; }
.mob-link {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 10vw, 5rem);
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color .2s;
}
.mob-link:hover { color: var(--ink); }

/* â”€â”€ HERO â”€â”€ */
.hero {
  padding-top: 60px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: none;
}

/* Cursor GIF follower */
.hero-gif-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 120px; height: 120px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.15s ease;
  will-change: left, top;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-gif-cursor.visible { opacity: 1; }

/* Spinning text ring cursor */
.cursor-ring {
  width: 120px; height: 120px;
  animation: cursorSpin 7s linear infinite;
  position: absolute;
  inset: 0;
}
.cursor-ring-text {
  font-family: var(--font-b);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  fill: var(--bg);
  text-transform: uppercase;
}
.cursor-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: var(--bg);
  line-height: 1;
  transition: transform 0.2s var(--ease);
}
.hero-gif-cursor:hover .cursor-arrow {
  transform: translate(-50%, -50%) scale(1.2);
}
@keyframes cursorSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ══════════════════════════════
   PORTFOLIO MARQUEE REEL
   ══════════════════════════════ */
.portfolio-reel {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

/* 3-row track — flat, clean */
.reel-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.marquee-row {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
  flex-shrink: 0;
  pointer-events: auto;
}

/* Image cards */
.marquee-img {
  width: 290px;
  height: 182px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  filter: brightness(0.92) saturate(0.95);
  transition: filter .55s ease, transform .55s ease, box-shadow .55s ease;
  cursor: pointer;
}
.marquee-img:hover {
  filter: brightness(1.05) saturate(1.1);
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative; z-index: 10;
}

/* Left / right edge fade */
.reel-fade-l,
.reel-fade-r {
  position: absolute; top: 0; bottom: 0;
  width: 160px; z-index: 2; pointer-events: none;
}
.reel-fade-l { left:  0; background: linear-gradient(to right, #080808 20%, transparent); }
.reel-fade-r { right: 0; background: linear-gradient(to left,  #080808 20%, transparent); }

/* Count badge */
.reel-badge {
  position: absolute; bottom: 1.25rem; right: 1.5rem;
  z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end;
  pointer-events: none;
}
.reel-badge-num {
  font-family: var(--font-d);
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.02em;
}
.reel-badge-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.2);
  margin-top: 2px;
}

/* ── VIDEO REVEAL ── */
.video-reveal-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4rem 0 6rem;
  background: var(--bg);
}
.video-reveal-inner {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  /* Smooth CSS transition handles the jerky JS updates */
  transition: width 0.12s linear, border-radius 0.12s linear;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  will-change: width, border-radius;
}
.reveal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-reveal-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.video-reveal-inner:hover .video-reveal-overlay { opacity: 1; }
.video-label {
  font-family: var(--font-d);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(4rem, 11vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.reveal-word {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-word.vis { opacity: 1; transform: translateY(0); }

/* â”€â”€ SHOWCASE â”€â”€ */
.showcase {
  height: 360px;
  background: #D4D8F0;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.showcase-inner { position: relative; width: 100%; height: 100%; }

/* Sticker cards like chance.co */
.sticker {
  position: absolute;
  font-family: var(--font-d);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  cursor: default;
  user-select: none;
  transition: transform .3s var(--ease);
  white-space: nowrap;
}
.sticker:hover { transform: scale(1.06) rotate(0deg) !important; }

.s1 { background: #F72585; color: #fff; top: 42%; left: 36%; transform: rotate(-8deg); }
.s2 { background: #FFBE0B; color: #000; top: 32%; left: 44%; transform: rotate(5deg); }
.s3 { background: #3A86FF; color: #fff; top: 55%; left: 40%; transform: rotate(-3deg); }
.s4 { background: #8338EC; color: #fff; top: 38%; left: 52%; transform: rotate(10deg); }
.s5 { background: #06D6A0; color: #000; top: 58%; left: 50%; transform: rotate(-6deg); }

/* â”€â”€ STATEMENT â”€â”€ */
.statement {
  padding: 7rem 2rem;
  display: flex;
  justify-content: center;
}
.statement-inner { max-width: 900px; text-align: center; }
.stmt-small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.stmt-big {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.underline-anim {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* ── PROJECTS ── */
.projects { padding: 0 0 6rem; }
.projects-head {
  padding: 0 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
}
.sec-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}
.proj-see-all {
  font-size: 0.72rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--line); border-radius: 100px;
  transition: color .2s, border-color .2s;
}
.proj-see-all:hover { color: var(--ink); border-color: var(--ink); }

.projects-title {
  font-family: var(--font-d);
  font-size: clamp(4rem, 12vw, 11rem);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════
   PROJECTS — Studio Namma hover-list style
   ══════════════════════════════════════ */

/* Large floating preview follows cursor */
.proj-preview {
  position: fixed; top: 0; left: 0;
  width: min(42vw, 520px);
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none; z-index: 900;
  opacity: 0;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.06);
  will-change: transform;
  /* needed for absolute img positioning */
  isolation: isolate;
}
.proj-preview-img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: unset;
  position: absolute;
  top: 0; left: 0;
  will-change: transform;
}
.proj-preview-cat {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  padding: .28rem .7rem; border-radius: 100px;
}

/* List container */
.proj-list {
  max-width: 1320px; margin: 0 auto;
  padding: 0 2rem;
  border-top: 1px solid var(--line);
}

/* Each row */
.proj-row {
  display: flex; align-items: center;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  cursor: none;
  gap: 1.5rem;
}

/* Ink background wipes from left */
.proj-row::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: 0;
}
.proj-row:hover::before { transform: scaleX(1); }

/* Accent line that grows from bottom on hover */
.proj-row::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: 2;
}
.proj-row:hover::after { transform: scaleX(1); }

.proj-row > * { position: relative; z-index: 1; }

/* Number */
.pr-num {
  font-family: var(--font-b); font-size: .65rem;
  font-weight: 700; letter-spacing: .12em;
  color: var(--muted); width: 36px; flex-shrink: 0;
  transition: color .22s .08s;
}
.proj-row:hover .pr-num { color: rgba(255,255,255,.3); }

/* Big project name — the hero element */
.pr-name {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  letter-spacing: .01em; line-height: .95;
  color: var(--ink); flex: 1;
  transition: color .22s .04s, letter-spacing .55s var(--ease),
              transform .55s var(--ease);
  display: inline-block;
}
.proj-row:hover .pr-name {
  color: #fff;
  letter-spacing: .06em;
  transform: translateX(8px);
}

/* Right meta group */
.pr-meta {
  display: flex; align-items: center; gap: 1.2rem;
  flex-shrink: 0;
}
.pr-cat {
  font-size: .62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px;
  padding: .28rem .75rem;
  transition: border-color .22s .08s, color .22s .08s, background .22s .08s;
}
.proj-row:hover .pr-cat {
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}
.pr-year {
  font-family: var(--font-d); font-size: .65rem;
  color: var(--muted); letter-spacing: .06em;
  transition: color .22s .08s;
}
.proj-row:hover .pr-year { color: rgba(255,255,255,.35); }

.pr-arr {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted); flex-shrink: 0;
  transition: border-color .3s .04s, background .3s .04s,
              color .3s .04s, transform .6s var(--ease);
}
.proj-row:hover .pr-arr {
  border-color: #fff; background: #fff;
  color: var(--ink); transform: rotate(45deg) scale(1.15);
}

/* Row scroll-reveal */
.proj-anim {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.proj-anim.vis { opacity: 1; transform: translateY(0); }
.proj-list .proj-anim:nth-of-type(1) { transition-delay:   0ms; }
.proj-list .proj-anim:nth-of-type(2) { transition-delay:  60ms; }
.proj-list .proj-anim:nth-of-type(3) { transition-delay: 120ms; }
.proj-list .proj-anim:nth-of-type(4) { transition-delay: 180ms; }
.proj-list .proj-anim:nth-of-type(5) { transition-delay: 240ms; }
.proj-list .proj-anim:nth-of-type(6) { transition-delay: 300ms; }

/* ══════════════════════════════════════
   PROJECT CARDS GRID
   ══════════════════════════════════════ */
.proj-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* First card spans full width — hero feature */
.proj-cards .proj-card:nth-child(1) {
  grid-column: span 2;
}

.proj-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  background: #1a1a1a;
  text-decoration: none;
  cursor: pointer;
}

/* Featured card taller */
.proj-cards .proj-card:nth-child(1) { aspect-ratio: 21/9; }
/* Normal cards */
.proj-cards .proj-card:not(:nth-child(1)) { aspect-ratio: 4/3; }

/* Image */
.pc-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
  will-change: transform;
}
.proj-card:hover .pc-img { transform: scale(1.06); }

/* Gradient overlay */
.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0) 100%
  );
}

/* Info at bottom */
.pc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  z-index: 2;
}

.pc-num {
  font-family: var(--font-b);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  padding-bottom: 0.35rem;
}
.pc-body { flex: 1; }
.pc-name {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #fff; line-height: 1;
  margin-bottom: 0.3rem;
  transition: letter-spacing 0.5s var(--ease);
}
.proj-card:hover .pc-name { letter-spacing: 0.04em; }

/* Featured card larger name */
.proj-cards .proj-card:nth-child(1) .pc-name {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.pc-cat {
  font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}

/* Arrow — always visible, rotates on hover */
.pc-arr {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease), background 0.3s, border-color 0.3s;
}
.proj-card:hover .pc-arr {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
}

/* Scroll reveal stagger */
.proj-cards .proj-anim:nth-child(1) { transition-delay:   0ms; }
.proj-cards .proj-anim:nth-child(2) { transition-delay:  80ms; }
.proj-cards .proj-anim:nth-child(3) { transition-delay: 140ms; }
.proj-cards .proj-anim:nth-child(4) { transition-delay:  40ms; }
.proj-cards .proj-anim:nth-child(5) { transition-delay: 100ms; }
.proj-cards .proj-anim:nth-child(6) { transition-delay: 160ms; }

/* Mobile */
@media (max-width: 700px) {
  .proj-cards { grid-template-columns: 1fr; gap: 0.8rem; }
  .proj-cards .proj-card:nth-child(1) { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ── Service hover floating image ── */
.svc-hover-img {
  position: fixed;
  width: 260px;
  height: 175px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 800;
  opacity: 0;
  transform: scale(0.88) rotate(-3deg);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  will-change: left, top;
}
.svc-hover-img.show {
  opacity: 1;
  transform: scale(1) rotate(-2deg);
}
.svc-hover-img-label {
  position: absolute;
  bottom: 0.9rem; left: 1rem;
  font-family: var(--font-d);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* â”€â”€ SERVICES â”€â”€ */
.services {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-inner { max-width: 900px; margin: 0 auto; }
.svc-list { display: flex; flex-direction: column; gap: 0; }
.svc-big {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2rem, 5.5vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
  padding: 0.15em 0;
  transition: color .2s, transform .25s var(--ease);
  position: relative;
}
.svc-big:hover {
  color: var(--muted2);
  transform: skewX(-4deg);
}
.svc-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.svc-social a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color .2s;
}
.svc-social a:hover { color: var(--ink); }

/* â”€â”€ CLIENTS â”€â”€ */
.clients {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--line);
}
.clients-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.client-logo {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--muted2);
  transition: color .2s;
}
.client-logo:hover { color: var(--ink); }

/* â”€â”€ CTA â”€â”€ */
.cta-section {
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cta-h2 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.cta-avatars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
  border: 2px solid var(--bg);
}
.cta-avatars span { margin-left: 16px; }

.cta-right { display: flex; flex-direction: column; gap: 1.5rem; }
.cta-right > p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.cta-meta { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.82rem; color: var(--muted); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-d);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 1rem 2rem;
  border-radius: 6px;
  width: fit-content;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.cta-btn:hover { background: #333; transform: translateY(-2px); }

/* Preview thumbs row */
.cta-thumbs {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.75rem;
  overflow: hidden;
}
.thumb {
  height: 230px !important;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .4s var(--ease);
  background: var(--bg2);
}
.thumb:hover { transform: scaleY(1.05); }
.thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* â”€â”€ FOOTER â”€â”€ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid var(--line);
}
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 0.6rem; }
.fcol h4 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.25rem; font-weight: 500; }
.fcol a { font-size: 0.82rem; color: var(--muted); transition: color .2s; }
.fcol a:hover { color: var(--ink); }
.footer-right { display: flex; flex-direction: column; gap: 1rem; justify-content: flex-start; }
.footer-right > p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-email { font-family: var(--font-d); font-size: 1.1rem; letter-spacing: 0.02em; color: var(--ink) !important; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: 0.8rem; color: var(--muted); transition: color .2s; }
.footer-social a:hover { color: var(--ink); }
.footer-right small { font-size: 0.72rem; color: var(--muted2); }

/* Huge wordmark at bottom â€” exactly like NAMMA */
.footer-wordmark {
  font-family: var(--font-d);
  font-size: clamp(10rem, 24vw, 22rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  padding: 1rem 2rem 0;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  /* Slight bottom crop so it fills edge-to-edge */
  margin-bottom: -0.18em;
}

/* â”€â”€ Scroll Reveal â”€â”€ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--delay, 0) * 1ms);
}
.reveal-up[data-delay] { transition-delay: calc(attr(data-delay) * 1ms); }
.reveal-up.vis { opacity: 1; transform: translateY(0); }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .burger { display: flex; }
  .pr-cat, .pr-year { display: none; }
  .proj-preview { width: 56vw; }
  .cta-section { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .clients-inner { justify-content: center; gap: 2rem 3rem; }
}
@media (max-width: 540px) {
  .proj-preview { display: none; }
  .proj-row { cursor: pointer; }
  .pr-name { font-size: clamp(2rem, 10vw, 3.5rem); }
  .pr-arr { width: 36px; height: 36px; font-size: .9rem; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(3rem, 15vw, 8rem); }
  .projects-title { font-size: clamp(3rem, 15vw, 8rem); }
  .svc-big { font-size: clamp(1.75rem, 9vw, 4rem); }
  .cta-h2 { font-size: clamp(2.5rem, 12vw, 5rem); }
  .footer-cols { gap: 2rem; }
  .footer-wordmark { font-size: 22vw; }
  .stmt-big { font-size: clamp(1.2rem, 4.5vw, 2rem); }
}







.svc-hover-img {
    display: none;
}

.svc-big {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.svc-big .video-box {
  position: fixed;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.85) rotate(-2deg);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  /* top/left JS set karega, yahan mat likho */
}

.svc-big .video-box.active {
  opacity: 1;
  transform: scale(1) rotate(-2deg);
}

.svc-big .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Hover par srf opacity aur scale badlega, position JS handle karega */
.svc-big:hover .video-box {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -105%) scale(1); /* Hover par thoda bada popup effect */
}




.video-cursor-box {
  position: fixed;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.85) rotate(-2deg);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.video-cursor-box.active {
  opacity: 1;
  transform: scale(1) rotate(-2deg);
}
.video-cursor-box video {
  width: 100%;
  display: block;
}