/* ══════════════════════════════════════════════════════════════
   BRANDTHINKS — "Obsidian & Champagne" theme
   Near-black canvas · warm off-white scenes · champagne-gold accent
   Type: Space Grotesk (display) + Manrope (body)
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --bg:      #0B0B0C;
  --bg-2:    #111114;
  --bg-3:    #17171b;
  --paper:   #F3F1EA;
  --paper-2: #E9E6DC;
  --ink:     #0B0B0C;
  --text:    #ECEAE3;
  --muted:   #9C9A90;
  --muted-2: #6E6C64;
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.05);
  --gold:    #C9A24B;
  --gold-2:  #E6CB86;
  --gold-3:  #F0DEAE;
  --gold-soft: rgba(201,162,75,.14);
  --maxw: 1280px;
  --ease: cubic-bezier(.16,1,.3,1);
  --pad: clamp(20px, 5vw, 80px);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0B0B0C; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.02em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ── Display scale ── */
.display {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 9vw, 132px);
  line-height: .92;
  letter-spacing: -.03em;
}
.eyebrow {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7;
}
.eyebrow.center { justify-content: center; }
.serif-i { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: .01em; }
.gold { color: var(--gold); }
.outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(236,234,227,.5);
}

/* ══════════ BUTTONS ══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  padding: 16px 28px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .5s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .45s;
  position: relative; will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1407;
  box-shadow: 0 10px 34px rgba(201,162,75,.28);
}
.btn-gold:hover { box-shadow: 0 16px 48px rgba(201,162,75,.42); }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--ink); color: var(--paper);
}
.btn-dark:hover { background: #000; }
.on-paper .btn-ghost { border-color: rgba(11,11,12,.18); color: var(--ink); }
.on-paper .btn-ghost:hover { border-color: var(--ink); }

/* ══════════ NAV ══════════ */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: padding .4s var(--ease), background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  padding: 13px var(--pad);
  background: rgba(11,11,12,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-2);
}
.nav-logo img { height: 40px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 2px 14px rgba(0,0,0,.4)); }
header.nav.scrolled .nav-logo img { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a.nl {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 9px 16px; border-radius: 100px;
  position: relative; transition: color .3s;
}
.nav-links a.nl::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a.nl:hover { color: var(--gold); }
.nav-links a.nl:hover::after { transform: scaleX(1); }
.nav-links a.nl.active { color: var(--gold); }
.nav-cta { margin-left: 12px; }
.nav-toggle { display: none; }

/* mobile nav */
@media (max-width: 880px) {
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; width: 42px; height: 42px;
    align-items: center; justify-content: center; background: none; border: none; cursor: pointer; z-index: 120;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed; inset: 0; background: rgba(8,8,9,.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 8px;
    transform: translateY(-100%); transition: transform .5s var(--ease); z-index: 110;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.nl { font-size: 28px; padding: 12px 24px; }
  .nav-links a.nl::after { display: none; }
  .nav-cta { margin: 14px 0 0; }
}

/* ══════════ GHOST WATERMARK WORD ══════════ */
.ghost-sec { position: relative; overflow: hidden; }
.ghost-sec .section-head { position: relative; }
.ghost-word {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 900;
  font-size: clamp(80px, 15vw, 240px); line-height: .8; letter-spacing: -.045em;
  color: rgba(236,234,227,.06); text-transform: uppercase;
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.on-paper .ghost-word { color: rgba(11,11,12,.045); }
.ghost-sec .section-head > *:not(.ghost-word),
.subhero.ghost-sec > *:not(.ghost-word),
.ghost-sec > .wrap { position: relative; z-index: 1; }
@media (max-width: 760px) { .ghost-word { font-size: 24vw; } }

/* ══════════ SECTION PRIMITIVES ══════════ */
section { position: relative; }
.scene { padding: clamp(48px, 6vh, 84px) 0; position: relative; }
.scene.paper { background: var(--paper); color: var(--ink); }
.scene.paper .eyebrow { color: #8a6d22; }
.scene.paper .muted { color: #5d5b52; }
.scene.tight { padding: clamp(40px, 5.5vh, 70px) 0; }
.muted { color: var(--muted); }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .title {
  font-size: clamp(34px, 5.2vw, 72px); margin: 20px 0 0; line-height: .98;
}
.section-head .sub { margin-top: 22px; font-size: clamp(15px, 1.5vw, 18px); color: var(--muted); max-width: 560px; }
.section-head.center .sub { margin-left: auto; margin-right: auto; }

/* ── divider hairline ── */
.hair { height: 1px; background: var(--line); border: none; }

/* ══════════ REVEAL ANIMATIONS ══════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal-x { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-x.in { opacity: 1; transform: none; }
.scale-in { opacity: 0; transform: scale(.94); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.scale-in.in { opacity: 1; transform: none; }
/* dramatic settle-zoom for media & cards */
.zoom-in { opacity: 0; transform: scale(1.14); transition: opacity 1.1s var(--ease), transform 1.2s var(--ease); will-change: transform, opacity; }
.zoom-in.in { opacity: 1; transform: none; }
.pop-in { opacity: 0; transform: scale(.8) translateY(20px); transition: opacity .8s var(--ease), transform .8s cubic-bezier(.34,1.56,.64,1); }
.pop-in.in { opacity: 1; transform: none; }
/* scroll-scrubbed zoom target (driven by JS --sc var) */
.scrub-zoom { transform: scale(var(--sc, 1)); transition: transform .1s linear; will-change: transform; }
/* scroll-snap utilities */
.snap-y { scroll-snap-type: y proximity; }
.snap-stop { scroll-snap-align: center; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x, .scale-in, .zoom-in, .pop-in { opacity: 1 !important; transform: none !important; }
  .scrub-zoom { transform: none !important; }
}

/* word-by-word headline */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); }
.word.in > span { transform: none; }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
  animation: drift 18s ease-in-out infinite;
}
.hero-bg .g1 { width: 620px; height: 620px; top: -200px; right: -120px; background: radial-gradient(circle, rgba(201,162,75,.30), transparent 65%); }
.hero-bg .g2 { width: 520px; height: 520px; bottom: -240px; left: -140px; background: radial-gradient(circle, rgba(201,162,75,.16), transparent 65%); animation-delay: -7s; }
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 36px); } }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px,5vw,72px); align-items: center; width: 100%; }
.hero h1 { font-size: clamp(48px, 8.4vw, 124px); line-height: .9; letter-spacing: -.035em; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px;
  padding: 8px 16px 8px 8px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 13px; color: var(--muted); background: rgba(255,255,255,.02);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.hero-tag b { color: var(--text); font-weight: 600; }
.hero-sub { margin-top: 28px; font-size: clamp(15px, 1.5vw, 18px); color: var(--muted); max-width: 480px; line-height: 1.75; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 54px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .n { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(28px,3.4vw,42px); font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.hero-stat .n .gold { color: var(--gold); }
.hero-stat .l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* hero visual */
.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-visual image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.hv-frame { position: absolute; inset: 0; border: 1px solid var(--line); border-radius: 24px; pointer-events: none; z-index: 3; }
.hv-badge {
  position: absolute; z-index: 4; background: rgba(11,11,12,.82); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.hv-badge.b1 { top: 22px; left: -26px; animation: floaty 6s ease-in-out infinite; }
.hv-badge.b2 { bottom: 30px; right: -26px; animation: floaty 6s ease-in-out infinite -3s; }
.hv-badge .bn { font-family: 'Schibsted Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); }
.hv-badge .bl { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted-2); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll .mouse { width: 22px; height: 34px; border: 1px solid var(--line); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; border-radius: 3px; background: var(--gold); transform: translateX(-50%); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%,12px); } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/12; max-width: 460px; margin-top: 10px; }
  .hv-badge.b1 { left: 8px; } .hv-badge.b2 { right: 8px; }
  .hero-scroll { display: none; }
}

/* ══════════ MARQUEE ══════════ */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee.paper { border-color: rgba(11,11,12,.1); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scrollx 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(18px,2vw,26px); font-weight: 500; color: var(--muted); padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 12px; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ══════════ SERVICES (home overview) ══════════ */
.svc-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; margin-top: 56px; }
.svc-overview .svc-cell:first-child { border-top-left-radius: 20px; }
.svc-overview .svc-cell:nth-child(4) { border-top-right-radius: 20px; }
.svc-overview .svc-cell:nth-child(5) { border-bottom-left-radius: 20px; }
.svc-overview .svc-cell:last-child { border-bottom-right-radius: 20px; }
.svc-cell { background: var(--bg); padding: 40px 32px 38px; min-height: 252px; display: flex; flex-direction: column; position: relative; transition: background .45s var(--ease), transform .45s var(--ease), opacity .45s var(--ease), filter .45s var(--ease), box-shadow .45s var(--ease); overflow: hidden; z-index: 1; text-decoration: none; color: inherit; cursor: pointer; }
.svc-cell:hover { background: var(--bg-3); }
/* focus hovered cell, dim the siblings */
.svc-overview:hover .svc-cell { opacity: .42; filter: brightness(.75) saturate(.9); }
.svc-overview:hover .svc-cell:hover { opacity: 1; filter: none; transform: scale(1.06); z-index: 3; box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(201,162,75,.4), 0 0 40px rgba(201,162,75,.12); border-radius: 14px; }
.svc-cell .ic { width: 44px; height: 44px; color: var(--gold); margin-bottom: auto; transition: transform .5s var(--ease); }
.svc-cell:hover .ic { transform: translateY(-4px) scale(1.06); }
.svc-cell .ic svg { width: 100%; height: 100%; }
.svc-cell .sn { font-family: 'Schibsted Grotesk', sans-serif; font-size: 11px; color: var(--muted-2); letter-spacing: .14em; position: absolute; top: 30px; right: 28px; }
.svc-cell h3 { font-size: 22px; margin-top: 26px; letter-spacing: -.01em; }
.svc-cell p { font-size: 13.5px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.svc-cell .glow-line { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.svc-cell:hover .glow-line { transform: scaleX(1); }
@media (max-width: 980px) { .svc-overview { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .svc-overview { grid-template-columns: 1fr; } }

/* ══════════ STATS BAND ══════════ */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.stat { position: relative; }
.stat .num {
  font-family: 'Schibsted Grotesk', sans-serif; font-size: clamp(52px,7.4vw,100px); font-weight: 800;
  line-height: .9; letter-spacing: -.035em;
  background: linear-gradient(100deg, #7a5c14 0%, #b3892f 22%, #f4dd97 46%, #b3892f 62%, #8a6a1e 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: statShine 5s ease-in-out infinite;
}
@keyframes statShine { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.stat .num .gold { -webkit-text-fill-color: transparent; }
.stat .lbl { margin-top: 14px; font-size: 14px; color: #5d5b52; max-width: 200px; font-weight: 500; }
.stat .bar { height: 3px; background: rgba(11,11,12,.1); margin-top: 22px; position: relative; overflow: hidden; border-radius: 3px; }
.stat .bar i { position: absolute; inset: 0; background: linear-gradient(90deg, #b3892f, #f4dd97); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease); }
@media (prefers-reduced-motion: reduce) { .stat .num { animation: none; } }
.stat.in .bar i { transform: scaleX(1); }

/* Reusable gold shimmer — same signature as the stats band */
.goldshine, .case-metrics .m .v {
  background: linear-gradient(100deg, #7a5c14 0%, #b3892f 22%, #f4dd97 46%, #b3892f 62%, #8a6a1e 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: statShine 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .goldshine, .case-metrics .m .v { animation: none; } }
@media (max-width: 820px) { .stats-band { grid-template-columns: repeat(2,1fr); gap: 30px 24px; } }

/* ══════════ WORK / CASE STUDIES ══════════ */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.work-card { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); transition: transform .6s var(--ease), border-color .4s; }
.work-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.4); }
.work-card.feature { grid-column: span 2; }
.work-media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.work-card.feature .work-media { aspect-ratio: 21/9; }
.work-media image-slot { width: 100%; height: 100%; }
.work-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,9,.78)); z-index: 1; pointer-events: none; }
.work-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.work-body .wcat { font-size: 12px; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.work-body h3 { font-size: clamp(22px,2.4vw,32px); margin-top: 8px; }
.work-body .wmeta { display: flex; gap: 22px; margin-top: 14px; }
.work-body .wmeta .wm .v { font-family: 'Schibsted Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); }
.work-body .wmeta .wm .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.work-arrow { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--text); transition: background .4s, color .4s, transform .5s var(--ease); }
.work-card:hover .work-arrow { background: var(--gold); color: #1a1407; transform: rotate(-45deg); }
.work-arrow svg { width: 20px; height: 20px; }
@media (max-width: 820px) { .work-grid { grid-template-columns: 1fr; } .work-card.feature { grid-column: span 1; } .work-card.feature .work-media { aspect-ratio: 16/10; } }

/* ══════════ CLIENTS ══════════ */
.clients-wrap { margin-top: 42px; overflow: hidden; position: relative; display: flex; flex-direction: column; gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.clients-track { display: flex; gap: 14px; width: max-content; animation: cliScroll 46s linear infinite; }
.clients-track.rev { animation-direction: reverse; animation-duration: 54s; }

@keyframes cliScroll { to { transform: translateX(-50%); } }
.cli { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 12px; padding: 14px 26px;
  border: 1px solid var(--line); border-radius: 100px; background: var(--card);
  transition: border-color .4s var(--ease), background .4s, transform .4s var(--ease); }
.cli::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 10px rgba(201,162,75,.7); animation: cliPulse 2.4s ease-in-out infinite; }
@keyframes cliPulse { 0%,100% { opacity: 1; box-shadow: 0 0 10px rgba(201,162,75,.7); } 50% { opacity: .5; box-shadow: 0 0 3px rgba(201,162,75,.3); } }
.cli:hover { border-color: rgba(201,162,75,.45); background: rgba(201,162,75,.06); transform: translateY(-3px); }
.clients-track.rev .cli { background: rgba(201,162,75,.05); border-color: rgba(201,162,75,.18); }
.clients-track.rev .cli::before { background: var(--text); box-shadow: 0 0 8px rgba(240,240,240,.4); }
.cli .cn { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: clamp(15px, 1.5vw, 19px); color: var(--text); letter-spacing: -.01em; white-space: nowrap; }
.clients-note { text-align: center; margin-top: 30px; font-size: 13px; color: var(--muted-2); letter-spacing: .04em; }

/* ══════════ PARTNERS (marquee) ══════════ */
.partner-marquee { margin-top: 44px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pm-track { display: flex; gap: 16px; width: max-content; animation: pmScroll 48s linear infinite; will-change: transform; }

@keyframes pmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ptile { flex: 0 0 auto; width: 172px; background: #fff; border-radius: 12px; height: 92px; display: flex; align-items: center; justify-content: center; padding: 6px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.ptile:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.4); }
.ptile img { max-width: 100%; max-height: 82px; width: auto; height: auto; object-fit: contain; }
@media (prefers-reduced-motion: reduce) { .pm-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }
@media (max-width: 560px) { .ptile { width: 132px; height: 76px; } }

/* ══════════ TESTIMONIAL SLIDER ══════════ */
.tslider { max-width: 940px; margin: 44px auto 0; position: relative; min-height: 260px; }
.tslide { position: absolute; inset: 0; text-align: center; opacity: 0; transform: translateY(16px) scale(.985); pointer-events: none; transition: opacity .7s var(--ease), transform .7s var(--ease); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.tslide.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.tslide .qmark { font-family: 'Schibsted Grotesk', sans-serif; font-size: 80px; line-height: .6; color: var(--gold); opacity: .45; }
.tslide blockquote { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 500; font-size: clamp(22px,3vw,40px); line-height: 1.22; letter-spacing: -.02em; margin: 16px 0 28px; max-width: 880px; }
.tslide .qby { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tslide .qby .av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; color: #1a1407; }
.tslide .qby .who { text-align: left; }
.tslide .qby .who .nm { font-weight: 600; }
.tslide .qby .who .rl { font-size: 13px; color: var(--muted); }
.tdots { position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%); display: flex; gap: 9px; }
.tdots button { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(140,120,70,.35); transition: background .3s, width .3s; }
.tdots button.on { width: 24px; border-radius: 4px; background: var(--gold); }

/* ══════════ CTA BAND ══════════ */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(40px,7vw,104px); line-height: .92; }
.cta-band .sub { margin: 24px auto 36px; max-width: 520px; color: var(--muted); font-size: 17px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,.18), transparent 60%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(60px); z-index: 0; }
.cta-band .wrap { position: relative; z-index: 1; }

/* ══════════ FOOTER ══════════ */
footer.site { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 32px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand img { height: 44px; margin-bottom: 22px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 280px; line-height: 1.7; }
.foot-soc { display: flex; gap: 12px; margin-top: 24px; }
.foot-soc a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color .3s, border-color .3s, transform .4s var(--ease); }
.foot-soc a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.foot-soc svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: 'Schibsted Grotesk', sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.foot-col a { display: block; color: var(--text); font-size: 15px; padding: 6px 0; transition: color .3s, padding-left .3s; }
.foot-col a:hover { color: var(--gold); padding-left: 5px; }
.foot-phones a { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; padding: 6px 0; transition: color .3s; }
.foot-phones a:hover { color: var(--gold); }
.foot-phones svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); }
.foot-bottom p { font-size: 13px; color: var(--muted-2); }
.foot-bottom .fl { display: flex; gap: 22px; }
.foot-bottom .fl a { font-size: 13px; color: var(--muted); }
.foot-bottom .fl a:hover { color: var(--gold); }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }

/* ══════════ SCROLL PROGRESS + GRAIN ══════════ */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--gold), var(--gold-2)); box-shadow: 0 0 14px rgba(201,162,75,.6); transition: width .1s linear; }
.grain { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* ══════════ HERO SIGNATURE VISUAL ══════════ */
.hv-stage { position: absolute; inset: 0; border-radius: 24px; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 42%, rgba(201,162,75,.12), transparent 62%), linear-gradient(180deg, rgba(23,23,27,.6), rgba(11,11,12,.2));
  box-shadow: inset 0 0 0 1px var(--line), 0 40px 90px rgba(0,0,0,.5); }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hv-shot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; display: block; border-radius: 20px; overflow: hidden; object-fit: cover; object-position: center; }
.hv-shot::part(empty) { background: radial-gradient(120% 120% at 30% 20%, rgba(230,203,134,.14), transparent 60%), linear-gradient(160deg, #1a1712, #0e0d0b); }
.hv-core { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; pointer-events: none; }
.hv-mark { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: clamp(90px, 13vw, 180px); line-height: 1; color: transparent; -webkit-text-stroke: 1.4px rgba(230,203,134,.32); }

/* ── Live growth dashboard visual ── */
.hv-viz { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; padding: 26px 26px 24px; }
.hv-viz-top { display: flex; align-items: center; justify-content: space-between; }
.hv-viz-live { display: inline-flex; align-items: center; gap: 8px; font-family: 'Schibsted Grotesk', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.lv-dot { width: 8px; height: 8px; border-radius: 50%; background: #e6cb86; box-shadow: 0 0 0 0 rgba(230,203,134,.6); animation: lvpulse 2.2s ease-out infinite; }
@keyframes lvpulse { 0% { box-shadow: 0 0 0 0 rgba(230,203,134,.55); } 70% { box-shadow: 0 0 0 9px rgba(230,203,134,0); } 100% { box-shadow: 0 0 0 0 rgba(230,203,134,0); } }
.hv-viz-tag { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.hv-metric { margin-top: 22px; display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.hv-metric-n { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(48px, 7vw, 76px); line-height: .9; color: #fff; }
.hv-metric-pct { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 32px; color: var(--gold); }
.hv-metric-lbl { width: 100%; margin-top: 6px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hv-chart { position: relative; flex: 1; min-height: 90px; margin: 14px 0 4px; }
.hv-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hv-line { stroke-dasharray: 460; stroke-dashoffset: 460; }
.hv-area { opacity: 0; }
.hv-dot-end { opacity: 0; filter: drop-shadow(0 0 8px rgba(230,203,134,.7)); }
[data-deck-active] .hv-line, .hv-viz .hv-line { animation: hvdraw 2.4s var(--ease) .3s forwards; }
.hv-viz .hv-area { animation: hvfade 1.4s ease .9s forwards; }
.hv-viz .hv-dot-end { animation: hvfade 1.4s ease 2.2s forwards, floaty 5s ease-in-out 2.6s infinite; }
@keyframes hvdraw { to { stroke-dashoffset: 0; } }
@keyframes hvfade { to { opacity: 1; } }
.hv-bars { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; align-items: end; height: 46px; margin-top: 8px; }
.hv-bars span { display: block; height: 0; background: linear-gradient(180deg, rgba(230,203,134,.9), rgba(230,203,134,.25)); border-radius: 3px 3px 0 0; animation: hvbar 1s var(--ease) forwards; }
.hv-bars span:nth-child(1){animation-delay:.5s}.hv-bars span:nth-child(2){animation-delay:.6s}.hv-bars span:nth-child(3){animation-delay:.7s}.hv-bars span:nth-child(4){animation-delay:.8s}.hv-bars span:nth-child(5){animation-delay:.9s}.hv-bars span:nth-child(6){animation-delay:1s}.hv-bars span:nth-child(7){animation-delay:1.1s}.hv-bars span:nth-child(8){animation-delay:1.2s}
@keyframes hvbar { to { height: var(--h); } }
.hv-viz-foot { display: flex; gap: 10px; margin-top: 18px; }
.hv-chip { flex: 1; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.hv-chip-n { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--gold); }
.hv-chip-l { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
@media (prefers-reduced-motion: reduce) { .hv-line { stroke-dashoffset: 0; } .hv-area, .hv-dot-end { opacity: 1; } .hv-bars span { height: var(--h); animation: none; } }

/* ── Case-study growth charts (work page) ── */
.case-chart { margin-top: 22px; }
.cc-head { display: flex; align-items: center; gap: 8px; font-family: 'Schibsted Grotesk', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.cc-dot { width: 7px; height: 7px; border-radius: 50%; background: #e6cb86; box-shadow: 0 0 0 0 rgba(230,203,134,.6); animation: lvpulse 2.2s ease-out infinite; }
.case-chart svg { width: 100%; height: 60px; display: block; overflow: visible; }
.cc-line { stroke-dasharray: 440; stroke-dashoffset: 440; }
.cc-area { opacity: 0; }
.case-chart.drawn .cc-line { animation: hvdraw 1.8s var(--ease) forwards; }
.case-chart.drawn .cc-area { animation: hvfade 1.2s ease .5s forwards; }
@media (prefers-reduced-motion: reduce) { .cc-line { stroke-dashoffset: 0; } .cc-area { opacity: 1; } }
.subhero { padding-top: 150px; padding-bottom: 44px; position: relative; overflow: hidden; }
.crumb { font-size: 13px; color: var(--muted-2); margin-bottom: 22px; }
.crumb a:hover { color: var(--gold); }
/* industries — typewriter */
.ind-type { margin-top: 32px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 16px; font-weight: 700; letter-spacing: -.02em; line-height: 1.05; font-size: clamp(30px, 5.4vw, 68px); }
.it-pre { color: var(--muted-2); font-weight: 500; }
.it-word { color: var(--gold); }
.it-caret { display: inline-block; width: 3px; height: clamp(30px, 5vw, 60px); background: var(--gold); margin-left: 2px; transform: translateY(6px); animation: itblink 1s steps(1) infinite; }
@keyframes itblink { 50% { opacity: 0; } }
.ind-type-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 15px; font-weight: 600; letter-spacing: .01em; color: var(--gold); text-decoration: none; }
.ind-type-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.ind-type-link:hover svg { transform: translateX(4px); }
/* industries — compact chip cloud */
.ind-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.ind-chip { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 12px 20px; border: 1px solid var(--line); border-radius: 999px; font-size: clamp(15px, 1.5vw, 18px); font-weight: 500; letter-spacing: -.01em; color: var(--text); text-decoration: none; background: rgba(255,255,255,.02); transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.ind-chip:hover { color: #0b0b0c; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.ind-chip-all { color: var(--gold); border-color: rgba(201,162,75,.4); font-weight: 600; }
.ind-chip-all svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.ind-chip-all:hover { color: #0b0b0c; background: var(--gold); border-color: var(--gold); }
.ind-chip-all:hover svg { transform: translateX(3px); }
/* industries — editorial index (legacy) */
.ind-index { border-top: 1px solid var(--line); }
.ind-row { position: relative; display: grid; grid-template-columns: 64px 1fr auto 44px; align-items: center; gap: 24px; padding: 26px 8px; border-bottom: 1px solid var(--line); text-decoration: none; overflow: hidden; transition: padding-left .45s var(--ease), opacity .35s var(--ease); }
.ind-row::before { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(201,162,75,.10), rgba(201,162,75,0) 60%); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); z-index: 0; }
.ind-row > * { position: relative; z-index: 1; }
.ir-no { font-size: 14px; font-weight: 600; color: var(--muted-2); letter-spacing: .04em; transition: color .35s var(--ease); }
.ir-name { font-size: clamp(24px,3.4vw,40px); font-weight: 700; letter-spacing: -.02em; line-height: 1; color: var(--text); transition: color .4s var(--ease), transform .45s var(--ease); }
.ir-tag { font-size: 13.5px; color: var(--muted-2); letter-spacing: .01em; opacity: 0; transform: translateX(14px); transition: opacity .4s var(--ease), transform .45s var(--ease); text-align: right; }
.ir-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted-2); opacity: 0; transform: translateX(-10px) rotate(-45deg); transition: opacity .4s var(--ease), transform .45s var(--ease), color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.ir-arrow svg { width: 18px; height: 18px; }
/* hover state */
.ind-row:hover { padding-left: 24px; }
.ind-row:hover::before { transform: scaleX(1); }
.ind-row:hover .ir-no { color: var(--gold); }
.ind-row:hover .ir-name { color: var(--gold); }
.ind-row:hover .ir-tag { opacity: .85; transform: none; }
.ind-row:hover .ir-arrow { opacity: 1; transform: none; color: #0b0b0c; background: var(--gold); border-color: var(--gold); }
/* dim the siblings when the list is hovered */
.ind-index:hover .ind-row:not(:hover) { opacity: .34; }
@media (max-width: 720px) {
  .ind-row { grid-template-columns: 40px 1fr 40px; gap: 14px; padding: 20px 4px; }
  .ir-tag { display: none; }
  .ir-arrow { opacity: 1; transform: none; }
  .ind-index:hover .ind-row:not(:hover) { opacity: 1; }
}
.subhero h1 { font-size: clamp(46px,8vw,108px); line-height: .92; }
.subhero .lead { margin-top: 26px; font-size: clamp(16px,1.6vw,20px); color: var(--muted); max-width: 620px; line-height: 1.75; }

/* ══════════ FORM ══════════ */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; font-family: 'Schibsted Grotesk', sans-serif; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 12px;
  color: var(--text); padding: 15px 18px; font-family: 'Manrope', sans-serif; font-size: 16px; outline: none;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: rgba(201,162,75,.05); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a24b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field select option { background: #17150f; color: #ECEAE3; }

/* ══════════ STICKY MOBILE CTA ══════════ */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 90;
    background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1407;
    font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 15px;
    padding: 15px; border-radius: 100px; box-shadow: 0 12px 34px rgba(201,162,75,.4);
  }
}

/* ══════════ LEAD POPUP ══════════ */
.pop { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.pop.show { display: flex; }
.pop-bg { position: absolute; inset: 0; background: rgba(6,6,7,.84); backdrop-filter: blur(8px); }
.pop-card { position: relative; z-index: 1; width: 100%; max-width: 440px; background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,162,75,.16), transparent 60%), var(--bg-2); border: 1px solid rgba(201,162,75,.28); border-radius: 20px; padding: 42px 36px 32px; text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,.6); animation: popin .5s var(--ease); }
@keyframes popin { from { opacity: 0; transform: translateY(28px) scale(.96); } to { opacity: 1; transform: none; } }
.pop-x { position: absolute; top: 16px; right: 18px; background: none; border: none; color: var(--muted); font-size: 26px; cursor: pointer; line-height: 1; }
.pop-x:hover { color: var(--text); }
.pop-card h3 { font-size: 32px; margin-bottom: 12px; }
.pop-card p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.pop-card .field { text-align: left; margin-bottom: 12px; }
.pop-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ══════════ ONE-TIME PROJECTS ══════════ */
.proj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.proj { position: relative; display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.proj:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.35); box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.proj.feat { border-color: rgba(201,162,75,.4); background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(201,162,75,.1), transparent 60%), var(--bg-2); }
.proj-ai { background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(201,162,75,.08), transparent 60%), var(--bg-2); }
.proj-tag { font-family: 'Schibsted Grotesk', sans-serif; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.proj-price { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 30px; color: var(--white); line-height: 1; margin-bottom: 16px; }
.proj-price small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px; color: var(--muted-2); margin-top: 8px; letter-spacing: 0; }
.proj-desc { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.proj-feat { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
.proj-feat li { position: relative; padding-left: 20px; color: var(--text); font-size: 13.5px; }
.proj-feat li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.proj .btn { margin-top: auto; justify-content: center; }
@media (max-width: 980px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proj-grid { grid-template-columns: 1fr; } }

/* ══════════ LEAD POPUP (18s) ══════════ */
.lead-pop { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(6,6,7,.84); backdrop-filter: blur(8px); }
.lead-pop.show { display: flex; }
.lead-card { position: relative; width: 100%; max-width: 440px; background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,162,75,.16), transparent 60%), var(--bg-2); border: 1px solid rgba(201,162,75,.28); border-radius: 20px; padding: 44px 36px 34px; text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,.6); animation: popin .5s var(--ease); }
.lead-x { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--muted); font-size: 28px; cursor: pointer; line-height: 1; transition: color .3s; }
.lead-x:hover { color: var(--white); }
.lead-card h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 34px; line-height: 1.05; margin: 14px 0 12px; }
.lead-sub { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
.lead-form { display: flex; flex-direction: column; gap: 11px; }
.lead-form input { width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--white); font-size: 15px; font-family: 'Inter', sans-serif; transition: border-color .3s; }
.lead-form input::placeholder { color: var(--muted-2); }
.lead-form input:focus { outline: none; border-color: var(--gold); }
.lead-form .btn { margin-top: 6px; }
