@import url('https://fonts.bunny.net/css?family=nexa:700,900');

/* ═══════════════════════════════════════════════════════
   Empire Marcomm — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

:root {
  --orange: #FF4400;
  --purple: #6600CC;
  --lime: #C8F135;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --display: 'Anton', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

/* ── Curtain ── */
#curtain {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, transform .7s ease;
}
#curtain.gone { opacity: 0; pointer-events: none; transform: translateY(-10px); }
.c-logo {
  font-family: var(--display); font-size: 3.5rem;
  color: var(--white); letter-spacing: .04em;
  animation: cPulse 1.1s ease-in-out infinite alternate;
}
.c-logo em { color: var(--orange); font-style: normal; }
@keyframes cPulse { from { opacity: .3 } to { opacity: 1 } }

/* ── Body ── */
body {
  font-family: var(--body); background: var(--black);
  color: var(--white); overflow-x: hidden; cursor: none;
  opacity: 0; transition: opacity .5s ease .15s;
}
body.ready { opacity: 1; }
a { color: inherit; text-decoration: none; cursor: none; }
img { display: block; max-width: 100%; }

/* ── Cursor ── */
#cur-dot {
  position: fixed; z-index: 9999; top: 0; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, background .2s, transform .1s;
}
#cur-ring {
  position: fixed; z-index: 9998; top: 0; left: 0;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--lime); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, opacity .3s; opacity: .5;
}
#cur-dot.h { width: 14px; height: 14px; background: var(--orange); }
#cur-ring.h { width: 58px; height: 58px; border-color: var(--orange); }
#cur-dot.c { transform: translate(-50%, -50%) scale(.5); }
@media(pointer:coarse) {
  #cur-dot, #cur-ring { display: none; }
  body, a { cursor: auto; }
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2.5rem;
  background: rgba(10,10,10,.85); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transform: translateY(-100%);
  transition: background .3s, box-shadow .3s, transform .38s cubic-bezier(0.4,0,0.2,1);
}
nav.nav-visible { transform: translateY(0); }
@media(pointer:coarse) { nav { transform: translateY(0); } }
nav.light {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(0,0,0,.08);
}
.nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.65);
  padding: .3rem .65rem; border-radius: 6px;
  transition: color .2s, background .2s;
}
nav.light .nav-links a { color: rgba(0,0,0,.55); }
.nav-links a:hover { color: var(--white); background: var(--orange); }
nav.light .nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); background: var(--orange); }
nav.light .nav-links a.active { color: var(--white); }
.nav-cta {
  font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: .55rem 1.4rem;
  background: var(--orange); color: var(--white);
  border-radius: 100px; transition: box-shadow .2s, transform .15s;
}
.nav-cta:hover { box-shadow: 0 6px 24px rgba(255,68,0,.45); transform: scale(1.04); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
nav.light .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--black); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--display); font-size: clamp(2.5rem,8vw,5rem);
  text-transform: uppercase; color: var(--white);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile-cta {
  margin-top: 1rem; padding: .85rem 2.5rem;
  background: var(--orange); color: var(--white) !important;
  border-radius: 100px; font-size: 1rem !important;
  font-family: var(--body) !important; font-weight: 800 !important;
  text-transform: uppercase; letter-spacing: .08em;
}

/* ── Layout ── */
.inner { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.sec { position: relative; overflow: hidden; }
.sec-pad { padding: 6rem 0; }
.bg-black { background: var(--black); }
.bg-orange { background: var(--orange); }
.bg-purple { background: var(--purple); }
.bg-lime { background: var(--lime); }
.bg-white { background: var(--white); color: var(--black); }

/* ── Wave dividers ── */
.wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; }
.wave svg { width: 100%; height: 60px; }

/* ── Scroll Reveal ── */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.23,1,.32,1); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }
.rv.in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-50px); transition: opacity .7s ease, transform .7s cubic-bezier(.23,1,.32,1); }
.rv-l.in { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(50px); transition: opacity .7s ease, transform .7s cubic-bezier(.23,1,.32,1); }
.rv-r.in { opacity: 1; transform: none; }
@media(prefers-reduced-motion:reduce) {
  .rv, .rv-l, .rv-r { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .07em; padding: .85rem 2rem; border-radius: 100px;
  transition: transform .2s, box-shadow .2s; cursor: none;
}
.btn:hover { transform: scale(1.05); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { box-shadow: 0 10px 30px rgba(255,68,0,.45); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { box-shadow: 0 8px 24px rgba(200,241,53,.4); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(255,255,255,.2); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--white); }
.btn-outline-black {
  background: transparent; color: var(--black);
  border: 2px solid rgba(0,0,0,.25);
}
.btn-outline-black:hover { border-color: var(--black); }
.sec-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; }

/* ── Marquee ── */
.mq-sec { padding: 1.1rem 0; overflow: hidden; }
.mq-track {
  display: flex; width: max-content;
  animation: mqScroll 22s linear infinite;
}
.mq-track.rev { animation-direction: reverse; animation-duration: 18s; }
@keyframes mqScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media(prefers-reduced-motion:reduce) { .mq-track { animation: none } }
.mq-item {
  font-family: var(--display); font-size: 1.5rem;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 1.1rem; padding: 0 1rem;
}
.mq-num { font-size: .7em; opacity: .5; margin-right: -.4rem; }
.mq-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .4; }

/* ── Page Hero ── */
.page-hero {
  padding-top: 11rem; padding-bottom: 6rem;
  position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero.ph-orange { background: var(--orange); }
.page-hero.ph-purple { background: var(--purple); }
.page-hero.ph-lime { background: var(--lime); color: var(--black); }
.ph-label {
  font-size: .62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .22em; color: var(--orange); margin-bottom: 1rem; display: block;
}
.page-hero.ph-orange .ph-label { color: rgba(255,255,255,.6); }
.page-hero.ph-purple .ph-label { color: var(--lime); }
.page-hero.ph-lime .ph-label { color: rgba(0,0,0,.5); }
.ph-title {
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 11rem);
  text-transform: uppercase; line-height: .88;
  letter-spacing: -.02em; color: var(--white); margin-bottom: 1.5rem;
}
.page-hero.ph-lime .ph-title { color: var(--black); }
.ph-title .t-orange { color: var(--orange); }
.ph-title .t-lime { color: var(--lime); }
.ph-title .t-black { color: var(--black); }
.ph-title .hi {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: .02em .15em; border-radius: 8px;
}
.ph-title .hi-lime {
  display: inline-block; background: var(--lime); color: var(--black);
  padding: .02em .15em; border-radius: 8px;
}
.ph-title .hi-black {
  display: inline-block; background: var(--black); color: var(--white);
  padding: .02em .15em; border-radius: 8px;
}
.ph-desc {
  font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.6);
  max-width: 560px; margin-bottom: 2rem;
}
.page-hero.ph-lime .ph-desc { color: rgba(0,0,0,.6); }
.ph-ghost {
  position: absolute; top: 50%; right: -2rem;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(255,255,255,.03); pointer-events: none;
  letter-spacing: -.02em; white-space: nowrap; z-index: 2;
}
.page-hero.ph-lime .ph-ghost { color: rgba(0,0,0,.04); }

/* ── Page Hero Video Background ── */
.ph-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0; pointer-events: none;
}
.ph-video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(0,0,0,.91);
}
.page-hero .inner { position: relative; z-index: 2; }
.page-hero .wave  { position: absolute; z-index: 2; }
.page-hero .wave svg { height: 28px; }
.page-hero .fp    { z-index: 2; }
.ph-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.35);
  margin-bottom: 1.75rem;
}
.ph-breadcrumb a { transition: color .2s; }
.ph-breadcrumb a:hover { color: var(--orange); }
.ph-breadcrumb span { opacity: .4; }

/* ── INTRO SEQUENCE ── */
#s-intro { position: relative; height: 100vh; background: var(--black); overflow: hidden; }

/* ── LOGO INTRO LAYER ── */
.sli {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  opacity: 0; pointer-events: none;
}
.sli-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(200,241,53,0.13) 0%, transparent 62%);
  filter: blur(72px);
  pointer-events: none;
}
.sli-text {
  position: relative; z-index: 2;
  width: clamp(260px, 44vw, 600px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,.7));
  user-select: none;
}
.sli-frags { position: absolute; inset: 0; pointer-events: none; }
.sli-frag {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(145deg, #fff 0%, #d4d4d4 38%, #9a9a9a 68%, #666 100%);
  box-shadow: 2px 3px 0 rgba(80,25,0,.55), 0 5px 14px rgba(0,0,0,.7);
}

/* ── Text-layer animated background ── */
.itl-anim-bg {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.itl-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.itl-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform;
}
.itl-orb.o1 {
  width: 58vw; height: 58vw;
  background: radial-gradient(circle, rgba(255,68,0,.22) 0%, transparent 68%);
  filter: blur(80px);
  top: -18%; left: -10%;
  animation: orbD1 15s ease-in-out infinite;
}
.itl-orb.o2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(200,241,53,.14) 0%, transparent 68%);
  filter: blur(80px);
  bottom: -14%; right: -8%;
  animation: orbD2 19s ease-in-out infinite 2s;
}
.itl-orb.o3 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(102,0,204,.12) 0%, transparent 68%);
  filter: blur(90px);
  top: 38%; left: 44%;
  animation: orbD3 24s ease-in-out infinite 4s;
}
@keyframes orbD1 {
  0%,100% { transform: translate(0,0); }
  35%     { transform: translate(8vw,7vh); }
  65%     { transform: translate(-4vw,13vh); }
}
@keyframes orbD2 {
  0%,100% { transform: translate(0,0); }
  40%     { transform: translate(-10vw,-9vh); }
  70%     { transform: translate(7vw,-15vh); }
}
@keyframes orbD3 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-14vw,9vh); }
}
@media(prefers-reduced-motion:reduce) {
  .itl-orb { animation: none; }
}

/* Text layer */
.itl {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 8vw;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
}
.itl-inner { display: flex; flex-direction: column; }
.itl-line {
  overflow: hidden;
  line-height: 0.92;
  padding-bottom: 0.04em;
}

/* Staircase indent is applied by JS (applyStaircase) using Range measurements */

.itl-line span {
  display: block;
  font-family: var(--display);
  font-size: clamp(5rem, 13.5vw, 12.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0;
}
.itl-line .t-orange { color: var(--orange); }
.itl-line .t-lime   { color: var(--lime); }

/* ── Directional slide-in animations ── */
/* BOLD — slides in from the left */
@keyframes itlA1 {
  0%   { opacity: 0; transform: translateX(-88px); }
  100% { opacity: 1; transform: translateX(0); }
}
/* CREATIVE. — slides in from the right */
@keyframes itlA2 {
  0%   { opacity: 0; transform: translateX(88px); }
  100% { opacity: 1; transform: translateX(0); }
}
/* & BUILT FOR — slides in from the left */
@keyframes itlA3 {
  0%   { opacity: 0; transform: translateX(-88px); }
  100% { opacity: 1; transform: translateX(0); }
}
/* BRANDS — slides up from below */
@keyframes itlA4 {
  0%   { opacity: 0; transform: translateY(72px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Slower, deliberate timing — each word settles before the next begins (controlled in JS) */
.itl-line:nth-child(1) span.itl-show { animation: itlA1 0.82s cubic-bezier(0.25, 1, 0.5, 1) both; }
.itl-line:nth-child(2) span.itl-show { animation: itlA2 0.82s cubic-bezier(0.25, 1, 0.5, 1) both; }
.itl-line:nth-child(3) span.itl-show { animation: itlA3 0.82s cubic-bezier(0.25, 1, 0.5, 1) both; }
.itl-line:nth-child(4) span.itl-show { animation: itlA4 0.82s cubic-bezier(0.25, 1, 0.5, 1) both; }

@media(prefers-reduced-motion:reduce) {
  .itl-line span.itl-show {
    animation: none; opacity: 1;
    transform: none; filter: none; clip-path: none; letter-spacing: -0.02em;
  }
}
.itl-sub {
  margin-top: 2.2rem;
  font-size: clamp(0.6rem, 1vw, 0.75rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.28);
  opacity: 0; transform: translateY(8px);
}
.itl-sub.itl-show {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Video layer */
.ivl {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0; pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
#intro-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.intro-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% 40%, transparent 30%, rgba(0,0,0,.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 22%, transparent 52%, rgba(0,0,0,.92) 78%, rgba(0,0,0,1) 100%);
  z-index: 1;
}
.intro-logo-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); z-index: 2; text-align: center;
  opacity: 0; transition: opacity 1.2s ease 0.7s;
}
.ivl.ivl-on .intro-logo-wrap { opacity: 1; }
.intro-logo-wrap img { height: 90px; filter: brightness(0) invert(1); }

/* Scroll indicator */
.intro-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.45); font-size: .6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .22em;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s ease;
}
.intro-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(.8) }
  50% { opacity: 1; transform: scaleY(1) }
}
@media(prefers-reduced-motion:reduce) {
  .intro-scroll { opacity: 1; }
  .intro-scroll-line { animation: none; }
}

/* ── WHY / MISSION ── */
/* ── MISSION ── */
#s-why { position: relative; background: var(--white); color: var(--black); overflow: hidden; }

.mission-ghost {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--display); font-size: clamp(9rem, 24vw, 22rem);
  text-transform: uppercase; color: rgba(0,0,0,.034);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -.02em; z-index: 0;
}

.mission-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center;
}

/* left — bold headline */
.mission-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.5rem;
  font-size: .58rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .18em; color: var(--orange);
}
.mission-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0;
}

.mission-h {
  font-family: var(--display); font-size: clamp(3rem, 5vw, 4.8rem);
  text-transform: uppercase; line-height: .9;
  color: var(--black); letter-spacing: -.01em; margin-bottom: 2.75rem;
}
.mission-h em { font-style: normal; color: var(--orange); }

/* right — body + values */
.mission-body p { font-size: .95rem; line-height: 1.82; color: #444; margin-bottom: 1.5rem; }

.mission-vals-lbl {
  display: block; font-size: .58rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; color: rgba(0,0,0,.4); margin-bottom: .9rem; margin-top: .5rem;
}

.val-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.val-chip {
  background: #f6f6f6; color: var(--black); border-radius: 12px;
  padding: .75rem 1rem; font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; gap: .55rem;
  border: 1px solid rgba(0,0,0,.07);
  transition: background .2s ease, border-color .2s ease;
}
.val-chip:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.val-chip:hover .vc-dot { opacity: 1; }
.val-chip .vc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vc-o { background: var(--orange) }
.vc-p { background: var(--purple) }
.vc-l { background: var(--lime) }
.vc-w { background: var(--black); border: 1.5px solid rgba(0,0,0,.2); }

/* ── EXPERTISE ── */
#s-expertise { background: var(--purple); }
.exp-hdr { margin-bottom: 3rem; }
.exp-hdr h2 {
  font-family: var(--display); font-size: clamp(3rem,7vw,7rem);
  text-transform: uppercase; line-height: .9; color: var(--white);
}
.exp-hdr h2 em { color: var(--lime); font-style: normal; }
.exp-hdr p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 1rem; max-width: 500px; }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.exp-box {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 22px; padding: 1.5rem;
  transition: background .25s, transform .35s cubic-bezier(.23,1,.32,1), box-shadow .3s;
}
.exp-box:hover { background: rgba(255,255,255,.18); transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.exp-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.exp-box:hover .exp-icon { transform: scale(1.12) rotate(-6deg); }
.ei-o { background: var(--orange) }
.ei-l { background: var(--lime) }
.ei-b { background: rgba(0,0,0,.4) }
.exp-icon svg { width: 22px; height: 22px; stroke: white; }
.ei-l svg { stroke: black; }
.exp-name { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--white); margin-bottom: .4rem; }
.exp-desc { font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.55); }

/* ── VISION ── */
#s-vision { background: var(--orange); overflow: hidden; }
.vision-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--display); font-size: clamp(8rem,20vw,20rem);
  color: rgba(0,0,0,.06); white-space: nowrap; pointer-events: none;
  animation: ghostPulse 12s ease-in-out infinite alternate;
}
.vision-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.vision-label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .2em; color: rgba(255,255,255,.65); margin-bottom: 1rem;
}
.vision-inner h2 {
  font-family: var(--display); font-size: clamp(2.8rem,7vw,8rem);
  text-transform: uppercase; line-height: .92; color: var(--white);
}
.vision-inner h2 .v-black {
  display: inline-block; background: var(--black); color: var(--white);
  padding: .02em .14em; border-radius: 10px;
}
.vision-inner h2 .v-lime {
  display: inline-block; background: var(--lime); color: var(--black);
  padding: .02em .14em; border-radius: 10px;
}
.vision-sub { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 600px; margin-top: 1.5rem; }

/* ── PROCESS ── */
#s-process { background: var(--black); }
.proc-hdr { margin-bottom: 3.5rem; }
.proc-hdr h2 {
  font-family: var(--display); font-size: clamp(3rem,7vw,7rem);
  text-transform: uppercase; line-height: .9; color: var(--white);
}
.proc-hdr h2 em { color: var(--lime); font-style: normal; }
.pstep {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.75rem 1.5rem; border-radius: 16px; transition: background .25s;
}
.pstep:hover { background: rgba(255,255,255,.04); }
.pstep.alt { flex-direction: row-reverse; }
.ps-num {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 2.2rem;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.pstep:hover .ps-num { transform: scale(1.12) rotate(-8deg); }
.ps-o { background: var(--orange); color: var(--white) }
.ps-p { background: var(--purple); color: var(--white) }
.ps-l { background: var(--lime); color: var(--black) }
.ps-w { background: rgba(255,255,255,.1); color: var(--white); border: 2px solid rgba(255,255,255,.15) }
.ps-tag { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--orange); margin-bottom: .4rem; }
.ps-body h3 {
  font-family: var(--display); font-size: clamp(1.6rem,3vw,2.5rem);
  text-transform: uppercase; line-height: 1; color: var(--white); margin-bottom: .5rem;
}
.ps-body p { font-size: .9rem; line-height: 1.68; color: rgba(255,255,255,.5); max-width: 500px; }
.pstep.alt .ps-body { text-align: right; }
.pstep.alt .ps-body p { margin-left: auto; }

/* ── IMPACT ── */
#s-impact { background: var(--lime); color: var(--black); }
.impact-hdr h2 {
  font-family: var(--display); font-size: clamp(3rem,8vw,9rem);
  text-transform: uppercase; line-height: .9; margin-bottom: 3rem;
}
.impact-hdr h2 .ihi { display: inline-block; background: var(--black); color: var(--white); padding: .02em .14em; border-radius: 10px; }
.impact-hdr h2 .iho { display: inline-block; background: var(--orange); color: var(--white); padding: .02em .14em; border-radius: 10px; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 3rem; }
.stat-box { border-radius: 22px; padding: 2rem 1.5rem; transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .3s; }
.stat-box:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.15); }
.sb-black { background: var(--black); color: var(--white) }
.sb-orange { background: var(--orange); color: var(--white) }
.sb-purple { background: var(--purple); color: var(--white) }
.sb-white { background: var(--white); color: var(--black) }
.sb-val { font-family: var(--display); font-size: clamp(3rem,5vw,4.5rem); line-height: 1; margin-bottom: .4rem; }
.sb-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.rings-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.ring-wrap { display: flex; align-items: center; gap: 1.25rem; }
.ring-svg { position: relative; width: 80px; height: 80px; }
.ring-svg svg { transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(0,0,0,.12); stroke-width: 5; }
.ring-fill { fill: none; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 207; stroke-dashoffset: 207; transition: stroke-dashoffset 1.3s cubic-bezier(.23,1,.32,1); }
.rf-black { stroke: var(--black) }
.rf-orange { stroke: var(--orange) }
.rf-purple { stroke: var(--purple) }
.ring-pct { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--display); font-size: 1.1rem; color: var(--black); }
.ring-info h4 { font-family: var(--display); font-size: 1.3rem; text-transform: uppercase; }
.ring-info p { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(0,0,0,.5); margin-top: .15rem; }

/* ── WORK BENTO ── */
#s-work { background: var(--white); color: var(--black); }
.work-hdr { margin-bottom: 3rem; }
.work-hdr h2 { font-family: var(--display); font-size: clamp(3rem,7vw,7rem); text-transform: uppercase; line-height: .9; color: var(--black); }
.work-hdr h2 em { display: inline-block; background: var(--purple); color: var(--white); padding: .02em .14em; border-radius: 8px; font-style: normal; }
.bento { display: grid; grid-template-columns: 1.7fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.25rem; }
.bc { border-radius: 26px; overflow: hidden; transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s; }
.bc:hover { transform: translateY(-7px); box-shadow: 0 28px 65px rgba(0,0,0,.14); }
.bc-hero { grid-row: 1/3; }
.bc-inner { padding: 2rem; height: 100%; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.bc-hero .bc-inner { min-height: 380px; }
.bc-orange { background: var(--orange) }
.bc-purple { background: var(--purple) }
.bc-lime { background: var(--lime) }
.bc-black { background: var(--black) }
.bc-white { background: var(--white); border: 2px solid rgba(0,0,0,.07) }
.bc-cat { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; padding: .28rem .8rem; border-radius: 100px; width: fit-content; margin-bottom: .75rem; }
.bc-orange .bc-cat, .bc-purple .bc-cat, .bc-black .bc-cat { background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.bc-lime .bc-cat { background: rgba(0,0,0,.1); color: rgba(0,0,0,.7); }
.bc-white .bc-cat { background: rgba(0,0,0,.06); color: #555; }
.bc-title { font-family: var(--display); font-size: clamp(1.4rem,2.5vw,2.2rem); text-transform: uppercase; line-height: 1; }
.bc-orange .bc-title, .bc-purple .bc-title, .bc-black .bc-title { color: var(--white); }
.bc-lime .bc-title, .bc-white .bc-title { color: var(--black); }
.bc-sub { font-size: .82rem; line-height: 1.6; margin-top: .5rem; }
.bc-orange .bc-sub, .bc-purple .bc-sub, .bc-black .bc-sub { color: rgba(255,255,255,.6); }
.bc-lime .bc-sub, .bc-white .bc-sub { color: #555; }
.bc-ghost { position: absolute; bottom: -1rem; right: 1rem; font-family: var(--display); font-size: 7rem; line-height: 1; pointer-events: none; opacity: .06; }
.bc-orange .bc-ghost, .bc-purple .bc-ghost, .bc-black .bc-ghost { color: white; }
.bc-lime .bc-ghost, .bc-white .bc-ghost { color: black; }
.bc-arrow { width: 40px; height: 40px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; margin-top: 1.25rem; transition: transform .2s; }
.bc:hover .bc-arrow { transform: translate(4px,-4px); }
.bc-orange .bc-arrow, .bc-purple .bc-arrow, .bc-black .bc-arrow { color: rgba(255,255,255,.45); }
.bc-lime .bc-arrow, .bc-white .bc-arrow { color: rgba(0,0,0,.35); }
.bc-arrow svg { width: 16px; height: 16px; }

/* ── Portfolio Full ── */
.port-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.port-card {
  border-radius: 24px; overflow: hidden; position: relative;
  transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s;
  cursor: none;
}
.port-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.port-card.full-width { grid-column: 1/-1; }
.port-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.port-card.tall .port-img-wrap { aspect-ratio: 4/5; }
.port-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.23,1,.32,1); }
.port-card:hover .port-img-wrap img { transform: scale(1.06); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
}
.port-cat { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; padding: .25rem .75rem; border-radius: 100px; background: var(--orange); color: var(--white); width: fit-content; margin-bottom: .65rem; }
.port-cat.pc-lime { background: var(--lime); color: var(--black); }
.port-cat.pc-purple { background: var(--purple); }
.port-title { font-family: var(--display); font-size: clamp(1.4rem,3vw,2.2rem); text-transform: uppercase; line-height: 1; color: var(--white); margin-bottom: .4rem; }
.port-sub { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.port-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; margin-top: .75rem; }
.port-gallery img { border-radius: 10px; aspect-ratio: 1; object-fit: cover; width: 100%; }
.proj-section { margin-bottom: 5rem; }
.proj-header { margin-bottom: 2rem; }
.proj-num { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--orange); margin-bottom: .5rem; }
.proj-name { font-family: var(--display); font-size: clamp(2rem,5vw,4.5rem); text-transform: uppercase; line-height: .92; color: var(--white); }
.proj-name .hi { display: inline-block; background: var(--orange); color: var(--white); padding: .02em .14em; border-radius: 8px; }
.proj-desc { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 580px; margin-top: .75rem; }
.proj-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.proj-tag { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .28rem .75rem; border-radius: 100px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.1); }
.proj-img-grid { display: grid; gap: .75rem; }
.proj-img-grid.g-2 { grid-template-columns: repeat(2,1fr); }
.proj-img-grid.g-3 { grid-template-columns: repeat(3,1fr); }
.proj-img-grid img { border-radius: 16px; width: 100%; object-fit: cover; }
.proj-img-grid.g-2 img { aspect-ratio: 4/3; }
.proj-img-grid.g-3 img { aspect-ratio: 1; }
.proj-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4rem 0; }

/* ── CLIENTS ── */
#s-clients { background: var(--black); }
.clients-hdr { margin-bottom: 2.5rem; }
.clients-hdr h2 { font-family: var(--display); font-size: clamp(3rem,7vw,7rem); text-transform: uppercase; line-height: .9; color: var(--white); }
.clients-hdr h2 em { color: var(--lime); font-style: normal; }
.clients-slider-wrap { position: relative; margin: 0 -1.5rem; }
.clients-viewport { overflow: hidden; padding: .75rem 0 1.25rem; }
.clients-track { display: flex; gap: 1.25rem; width: max-content; padding: 0 1.5rem; will-change: transform; }
.clients-fade-l, .clients-fade-r { position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none; }
.clients-fade-l { left: 0; background: linear-gradient(to right, var(--black) 30%, transparent 100%); }
.clients-fade-r { right: 0; background: linear-gradient(to left, var(--black) 30%, transparent 100%); }
.client-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(10,10,10,.85); border: 1.5px solid rgba(255,255,255,.18);
  color: var(--white); cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.client-arr:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-50%) scale(1.1); }
.client-arr svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.client-arr-prev { left: 8px; }
.client-arr-next { right: 8px; }
.client-chip {
  flex-shrink: 0; width: 190px; background: var(--white); border-radius: 18px;
  padding: 1.5rem 1.25rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .65rem;
  transition: box-shadow .25s, transform .25s;
}
.client-chip:hover { box-shadow: 0 12px 32px rgba(0,0,0,.18); transform: translateY(-4px); }
.client-img { height: 52px; display: flex; align-items: center; justify-content: center; }
.client-img img { max-height: 48px; max-width: 130px; width: auto; height: auto; object-fit: contain; display: block; }
.client-name { font-size: .95rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #111; text-align: center; }

/* ── AWARDS ── */
#s-awards { background: var(--purple); }
.aw-hdr h2 { font-family: var(--display); font-size: clamp(2.5rem,5.5vw,5.5rem); text-transform: uppercase; line-height: .95; color: var(--white); }
.aw-hdr h2 em { color: var(--lime); font-style: normal; }
.aw-hdr p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 1rem; }
.aw-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.aw-list { display: flex; flex-direction: column; }
.aw-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.25rem 1rem; border-radius: 10px; transition: background .2s; }
.aw-item:hover { background: rgba(255,255,255,.05); }
.aw-year { font-family: var(--display); font-size: 1.8rem; color: var(--lime); white-space: nowrap; flex-shrink: 0; line-height: 1; }
.aw-txt { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.65); padding-top: .25rem; }
.aw-statement { display: flex; flex-direction: column; justify-content: center; }
.aw-big-num { font-family: var(--display); font-size: clamp(7rem,16vw,16rem); line-height: .85; color: rgba(255,255,255,.08); letter-spacing: -.03em; }
.aw-statement h3 { font-family: var(--display); font-size: clamp(2rem,4vw,4rem); text-transform: uppercase; color: var(--white); line-height: 1; margin-top: -2rem; position: relative; }
.aw-statement h3 em { color: var(--lime); font-style: normal; }

/* ── TEAM ── */
#s-team { background: #ffffff; color: var(--black); }
.team-hdr { margin-bottom: 3rem; }
.team-hdr h2 { font-family: var(--display); font-size: clamp(3rem,8vw,9rem); text-transform: uppercase; line-height: .9; color: var(--black); }
.team-hdr h2 em { display: inline-block; background: var(--orange); color: var(--white); padding: .02em .14em; border-radius: 10px; font-style: normal; }
.dept-head { margin: 3rem 0 1.5rem; }
.dept-head:first-child { margin-top: 0; }
.dept-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: var(--orange); margin-bottom: .3rem; }
.dept-title { font-family: var(--display); font-size: clamp(1.8rem,4vw,3.5rem); text-transform: uppercase; line-height: 1; color: var(--black); }
.dept-desc { font-size: .85rem; line-height: 1.65; color: rgba(0,0,0,.5); max-width: 600px; margin-top: .5rem; }
.dept-divider { height: 1px; background: rgba(0,0,0,.08); margin: 2.5rem 0; }
.team-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.team-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-grid-1 { display: grid; grid-template-columns: 1fr 2fr; gap: 1.5rem; align-items: start; }

/* ══════════════════════════════════════════
   tcard2 — Blob-style flip cards
   ══════════════════════════════════════════ */
.tcard2 { cursor: pointer; perspective: 1000px; -webkit-perspective: 1000px; }

.tcard2-inner {
  position: relative; width: 100%; aspect-ratio: 3/4;
  transform-style: preserve-3d; -webkit-transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.23,1,.32,1);
}
.tcard2.flipped .tcard2-inner { transform: rotateY(180deg); }

.tcard2-front,
.tcard2-back {
  position: absolute; inset: 0; border-radius: 22px;
  /* overflow:hidden breaks backface-visibility on iOS Safari — use clip-path instead */
  -webkit-clip-path: inset(0 round 22px); clip-path: inset(0 round 22px);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}

/* ─── FRONT ─── */
.tcard2-front { background: var(--tc, var(--orange)); }

/* animated organic blobs */
.tc-blob {
  position: absolute; z-index: 0; will-change: border-radius;
  width: 90%; aspect-ratio: 1;
  top: -22%; right: -24%;
  background: rgba(255,255,255,.18);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  animation: tc-morph 9s ease-in-out infinite;
}
.tc-blob2 {
  position: absolute; z-index: 0; will-change: border-radius;
  width: 52%; aspect-ratio: 1;
  bottom: 16%; left: -12%;
  background: rgba(255,255,255,.11);
  border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
  animation: tc-morph 7s ease-in-out infinite reverse;
  animation-delay: -3s;
}
@keyframes tc-morph {
  0%,100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  33%     { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  66%     { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
}

/* person photo — transparent PNG cutout floats on card colour */
.tcard2-photo {
  position: absolute; z-index: 2;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 110%; height: 106%;
  object-fit: contain; object-position: bottom center;
  display: block;
  /* feather all edges so cutout blends into the card */
  -webkit-mask-image: radial-gradient(ellipse 88% 90% at 50% 38%,
    black 42%,
    rgba(0,0,0,.9) 56%,
    rgba(0,0,0,.55) 70%,
    transparent 86%
  );
  mask-image: radial-gradient(ellipse 88% 90% at 50% 38%,
    black 42%,
    rgba(0,0,0,.9) 56%,
    rgba(0,0,0,.55) 70%,
    transparent 86%
  );
  transition: transform .55s cubic-bezier(.23,1,.32,1);
}
.tcard2:not(.flipped):hover .tcard2-photo {
  transform: translateX(-50%) translateY(-7px) scale(1.03);
}

/* gradient + name/role strip */
.tcard2-overlay {
  position: absolute; z-index: 3;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
}
.tcard2-overlay .tcard2-name {
  font-size: .98rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.tcard2-overlay .tcard2-role {
  font-size: .54rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.6); margin-top: .28rem;
}

/* flip-hint chip — top right corner */
.tc-hint {
  position: absolute; z-index: 4;
  top: .85rem; right: .85rem;
  display: flex; align-items: center; gap: .3rem;
  padding: .28rem .6rem .28rem .48rem;
  background: rgba(255,255,255,.18); border-radius: 100px;
  backdrop-filter: blur(6px);
  font-size: .5rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.82);
}
.tc-hint svg { width: 11px; height: 11px; flex-shrink: 0; }

/* ─── BACK ─── */
.tcard2-back {
  transform: rotateY(180deg);
  background: #0b1208;
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* lime organic blob on the back */
.tc-back-blob {
  position: absolute; z-index: 0; will-change: border-radius;
  width: 92%; aspect-ratio: 1;
  top: -20%; right: -22%;
  background: var(--lime);
  border-radius: 55% 45% 40% 60% / 60% 40% 55% 45%;
  animation: tc-morph 11s ease-in-out infinite;
  animation-delay: -5s;
}

/* person floating on back — PNG cutout with feathered edges over lime blob */
.tc-back-photo {
  position: absolute; z-index: 2;
  width: 96%; height: 74%;
  bottom: 30%;
  left: 50%; transform: translateX(-50%);
  object-fit: contain; object-position: bottom center;
  brightness: 1.05;
  -webkit-mask-image: radial-gradient(ellipse 88% 90% at 50% 38%,
    black 40%,
    rgba(0,0,0,.88) 54%,
    rgba(0,0,0,.5) 68%,
    transparent 84%
  );
  mask-image: radial-gradient(ellipse 88% 90% at 50% 38%,
    black 40%,
    rgba(0,0,0,.88) 54%,
    rgba(0,0,0,.5) 68%,
    transparent 84%
  );
}

/* info bar at the bottom of the back */
.tcard2-binfo {
  position: relative; z-index: 4;
  padding: 1.15rem 1.2rem 1.1rem;
  background: linear-gradient(to top, #0b1208 70%, transparent);
}
.tcard2-binfo .tcard2-name {
  font-family: var(--display);
  font-size: 1.25rem; text-transform: uppercase; line-height: 1.05;
  color: #fff; letter-spacing: .01em;
}
.tcard2-binfo .tcard2-name em {
  font-style: normal; color: var(--lime);
}
.tcard2-binfo .tcard2-role {
  font-size: .54rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .13em; color: rgba(255,255,255,.42);
  margin-top: .28rem; margin-bottom: .6rem; display: block;
}
.tcard2-bio {
  font-size: .73rem; line-height: 1.62; color: rgba(255,255,255,.62);
}

/* base tokens (cascade fallback) */
.tcard2-name { font-size: .98rem; font-weight: 700; line-height: 1.2; }
.tcard2-role { font-size: .57rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; margin-top: .3rem; }

/* keep old tcard styles so existing markup doesn't break */
.tcard {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2rem 1.5rem 1.75rem; border-radius: 20px; background: #fff; border: none;
  cursor: none; transition: transform .25s ease, box-shadow .25s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.tcard-photo { width: 155px; height: 155px; border-radius: 50%; overflow: hidden; border: 3px solid var(--lime); margin-bottom: 1.25rem; flex-shrink: 0; }
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .5s cubic-bezier(.23,1,.32,1); }
.tcard:hover .tcard-photo img { transform: scale(1.06); }
.tcard-body { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.t-chip { display: inline-block; font-size: .52rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .2rem .65rem; border-radius: 100px; background: var(--lime); color: var(--black); margin-bottom: .3rem; }
.t-name { font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--black); line-height: 1.2; }
.t-role { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: rgba(0,0,0,.45); }
.t-desc { font-size: .75rem; line-height: 1.6; color: rgba(0,0,0,.55); margin-top: .5rem; }
@media(pointer:coarse) { .tcard { background: rgba(255,255,255,.05); } }

/* ── CTA ── */
#s-cta { background: var(--lime); color: var(--black); overflow: hidden; }
.cta-ghost {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Nexa', sans-serif; font-weight: 900; font-size: clamp(7rem,22vw,22rem);
  text-transform: none; color: rgba(0,0,0,.05); white-space: nowrap; pointer-events: none;
  letter-spacing: -.02em; animation: ghostPulse 12s ease-in-out infinite alternate;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-family: var(--display); font-size: clamp(3rem,8vw,9rem); text-transform: uppercase; line-height: .9; color: var(--black); }
.cta-inner h2 .c-black { display: inline-block; background: var(--black); color: var(--white); padding: .02em .14em; border-radius: 10px; }
.cta-inner h2 .c-orange { display: inline-block; background: var(--orange); color: var(--white); padding: .02em .14em; border-radius: 10px; }
.cta-inner p { font-size: .95rem; line-height: 1.7; color: rgba(0,0,0,.65); max-width: 480px; margin: 1.5rem auto 2.5rem; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.cta-addr { margin-top: 2rem; display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(0,0,0,.5); }
.cta-addr svg { width: 14px; height: 14px; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: clamp(2rem,4vw,3.5rem); text-transform: uppercase; line-height: .95; color: var(--white); margin-bottom: 1.5rem; }
.contact-info h3 em { color: var(--lime); font-style: normal; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; stroke: var(--lime); fill: none; stroke-width: 1.8; }
.ci-label { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.35); margin-bottom: .2rem; }
.ci-value { font-size: .9rem; font-weight: 600; color: var(--white); line-height: 1.5; }
.ci-value a { transition: color .2s; }
.ci-value a:hover { color: var(--orange); }
.contact-form { background: var(--white); border-radius: 28px; padding: 2.5rem; }
.contact-form h3 { font-family: var(--display); font-size: 2rem; text-transform: uppercase; color: var(--black); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: rgba(0,0,0,.45); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--body); font-size: .88rem; color: var(--black);
  background: #f5f5f5; border: 1.5px solid transparent; border-radius: 10px;
  padding: .75rem 1rem; outline: none; width: 100%;
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; font-family: var(--body); font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 1rem; background: var(--orange); color: var(--white); border: none; border-radius: 100px; cursor: pointer; transition: transform .2s, box-shadow .2s; margin-top: .5rem; }
.form-submit:hover { transform: scale(1.02); box-shadow: 0 10px 28px rgba(255,68,0,.4); }

/* ── FOOTER ── */
#s-footer { background: var(--black); padding: 5rem 0 2rem; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.f-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.f-brand p { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.35); max-width: 260px; margin-bottom: 1.5rem; }
.f-socials { display: flex; gap: .6rem; }
.fsc { width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, transform .2s; }
.fsc:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.fsc svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.45); transition: stroke .2s; }
.fsc:hover svg { stroke: white; }
.f-col h4 { font-size: .63rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.22); margin-bottom: 1.25rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.f-col a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.f-col a:hover { color: var(--orange); }
.f-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.f-copy { font-size: .7rem; color: rgba(255,255,255,.18); }
.f-links { display: flex; gap: 1.5rem; }
.f-links a { font-size: .7rem; color: rgba(255,255,255,.18); transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,.45); }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .vision-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bc-hero { grid-row: auto; }
  .aw-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid-3 { grid-template-columns: 1fr 1fr; }
  .team-grid-2 { grid-template-columns: 1fr 1fr; }
  .team-grid-1 { grid-template-columns: 1fr; }
  .pstep.alt { flex-direction: row; }
  .pstep.alt .ps-body { text-align: left; }
  .pstep.alt .ps-body p { margin-left: 0; }
  nav { padding: .8rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .port-grid { grid-template-columns: 1fr; }
  .proj-img-grid.g-3 { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px) {
  .exp-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .rings-row { gap: 1rem; }
  .f-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .team-grid-2, .team-grid-3 { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .proj-img-grid.g-2, .proj-img-grid.g-3 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PAINT BRUSH BANNERS — Portfolio page
   ════════════════════════════════════════ */

.fw-banners {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-width: 880px;
  margin: 0 auto;
}

.fw-ban {
  position: relative;
  height: 114px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.09);
  transition: transform .32s cubic-bezier(.23,1,.32,1), box-shadow .32s;
}
.fw-ban:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
}

/* The coloured fill layer */
.fw-ban-fill {
  position: absolute;
  inset: 0;
}

/* Left fill — paint-bristle edge on the right */
.fw-ban-l {
  clip-path: polygon(
    0 0,
    70% 0,   73% 3%,  67% 6%,  75% 9%,  66% 12%, 74% 15%, 64% 18%, 76% 21%,
    65% 24%, 77% 27%, 63% 30%, 73% 33%, 67% 36%, 75% 39%, 65% 42%,
    76% 45%, 64% 48%, 73% 51%, 67% 54%, 76% 57%, 65% 60%, 74% 63%,
    66% 66%, 75% 69%, 65% 72%, 76% 75%, 63% 78%, 73% 81%, 67% 84%,
    75% 87%, 65% 90%, 74% 93%, 66% 96%, 70% 100%,
    0 100%
  );
}

/* Right fill — paint-bristle edge on the left */
.fw-ban-r {
  clip-path: polygon(
    100% 0,
    30% 0,   27% 3%,  33% 6%,  25% 9%,  34% 12%, 26% 15%, 36% 18%, 24% 21%,
    35% 24%, 23% 27%, 37% 30%, 27% 33%, 33% 36%, 25% 39%, 35% 42%,
    24% 45%, 36% 48%, 27% 51%, 33% 54%, 24% 57%, 35% 60%, 26% 63%,
    34% 66%, 25% 69%, 35% 72%, 24% 75%, 37% 78%, 27% 81%, 33% 84%,
    25% 87%, 35% 90%, 26% 93%, 34% 96%, 30% 100%,
    100% 100%
  );
}

/* Text sits above the fill, always inside the coloured area */
.fw-ban-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  z-index: 2;
}
.fw-ban-tl { left: 2.75rem; }
.fw-ban-tr { right: 2.75rem; flex-direction: row-reverse; }

.fw-ban-n {
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.fw-ban-label {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}

/* Dark text override for the lime banner */
.fw-ban-dk .fw-ban-n     { color: rgba(0,0,0,.12); }
.fw-ban-dk .fw-ban-label { color: rgba(0,0,0,.78); }

/* Responsive */
@media(max-width:640px) {
  .fw-ban { height: 80px; }
  .fw-ban-n { font-size: 3rem; }
  .fw-ban-tl { left: 1.25rem; gap: .8rem; }
  .fw-ban-tr { right: 1.25rem; gap: .8rem; }
  .fw-ban-label { font-size: 1rem; }
}

/* ════════════════════════════════════════
   PORT LIST — Portfolio client listing
   ════════════════════════════════════════ */

.port-list { display: flex; flex-direction: column; }

.port-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.75rem 0;
}
.port-left {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
.port-idx {
  font-family: var(--display);
  font-size: 4rem;
  line-height: .82;
  color: rgba(255,255,255,.06);
  flex-shrink: 0;
  width: 72px;
  user-select: none;
}
.port-body { flex: 1; min-width: 0; }
.port-cname {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.port-scope {
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--orange);
  margin: .45rem 0 .75rem;
}
.port-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.48);
  max-width: 500px;
}
.port-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}
.port-tag {
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .7rem;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
}

.port-explore {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.18);
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
  white-space: nowrap;
  cursor: none;
}
.port-explore:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.port-explore svg { width: 14px; height: 14px; flex-shrink: 0; }

.port-divider { height: 1px; background: rgba(255,255,255,.07); }

/* Responsive */
@media(max-width:860px) {
  .port-item { gap: 1.5rem; }
  .port-idx { font-size: 3rem; width: 55px; }
}
@media(max-width:640px) {
  .port-item { flex-direction: column; gap: 1.25rem; }
  .port-left { flex-direction: column; }
  .port-explore { align-self: flex-start; }
  .port-idx { display: none; }
}

/* ════════════════════════════════════════
   CLIENT PAGES
   ════════════════════════════════════════ */

/* Hero */
.cl-hero {
  padding-top: 11rem; padding-bottom: 5rem;
  background: var(--black); position: relative; overflow: hidden; text-align: center;
}
.cl-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255,68,0,.07) 0%, transparent 70%);
}
.cl-logo-wrap {
  width: 148px; height: 148px; border-radius: 26px;
  background: var(--white); padding: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.cl-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cl-hero h1 {
  font-family: var(--display); font-size: clamp(3rem,9vw,8rem);
  text-transform: uppercase; line-height: .9; color: var(--white); margin-bottom: 1rem;
}
.cl-hero-sub {
  font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.7;
  max-width: 540px; margin: 0 auto 2.5rem;
}
.cl-stats {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center;
}
.cl-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: .45rem 1.2rem;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.55);
}
.cl-stat span { color: var(--lime); margin-right: .35rem; }

/* Overview */
.cl-overview { background: var(--black); }
.cl-ov-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start;
}
.cl-ov-text h2 {
  font-family: var(--display); font-size: clamp(2.5rem,5vw,4.5rem);
  text-transform: uppercase; line-height: .92; color: var(--white); margin-bottom: 1.5rem;
}
.cl-ov-text h2 em { color: var(--orange); font-style: normal; }
.cl-ov-text p { font-size: .92rem; line-height: 1.78; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.cl-del-label {
  font-size: .6rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .18em; color: var(--lime); margin: 1.75rem 0 .75rem;
}
.cl-del-pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.cl-del-pill {
  font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .85rem; border-radius: 100px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1);
}
.cl-aside-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 1.75rem; margin-bottom: 1rem;
}
.cl-aside-card h4 {
  font-size: .58rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .2em; color: var(--orange); margin-bottom: 1.1rem;
}
.cl-aside-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  gap: 1rem;
}
.cl-aside-row:last-child { border-bottom: none; }
.cl-aside-row .k { font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.3); flex-shrink: 0; }
.cl-aside-row .v { font-size: .82rem; font-weight: 600; color: var(--white); text-align: right; }

/* Photo Gallery */
.cl-gallery { background: #0d0d0d; }
.cl-sec-hdr { margin-bottom: 2.5rem; }
.cl-sec-hdr h2 {
  font-family: var(--display); font-size: clamp(2.5rem,6vw,6rem);
  text-transform: uppercase; line-height: .9; color: var(--white);
}
.cl-sec-hdr h2 em { font-style: normal; }
.cl-sec-hdr p { font-size: .88rem; color: rgba(255,255,255,.4); margin-top: .6rem; }
.cl-gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 230px; gap: .85rem;
}
.cl-gal-item {
  border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,.04); position: relative;
}
.cl-gal-item.span2 { grid-column: span 2; }
.cl-gal-item.tall  { grid-row: span 2; }
.cl-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.23,1,.32,1); }
.cl-gal-item:hover img { transform: scale(1.05); }
.cl-gal-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  color: rgba(255,255,255,.12);
}
.cl-gal-ph svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cl-gal-ph span { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }

/* Video Gallery */
.cl-videos { background: var(--black); }
.cl-video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.cl-video-card { border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.04); }
.cl-video-wrap { position: relative; padding-top: 56.25%; background: rgba(255,255,255,.04); }
.cl-video-wrap iframe,
.cl-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; object-fit: cover; }
.cl-video-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem;
  background: linear-gradient(135deg,rgba(255,255,255,.03),rgba(255,255,255,.07));
}
.cl-play {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(255,68,0,.45);
}
.cl-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.cl-video-info { padding: 1.1rem 1.4rem; }
.cl-video-info h4 { font-family: var(--display); font-size: 1rem; text-transform: uppercase; color: var(--white); }
.cl-video-info p { font-size: .72rem; color: rgba(255,255,255,.38); margin-top: .2rem; }

/* Responsive */
@media(max-width:860px) {
  .cl-ov-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cl-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .cl-gal-item.span2 { grid-column: span 2; }
}
@media(max-width:580px) {
  .cl-gallery-grid { grid-template-columns: 1fr; }
  .cl-gal-item.span2, .cl-gal-item.tall { grid-column: span 1; grid-row: span 1; }
  .cl-video-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   TEAM PREVIEW SLIDER (about page)
   ════════════════════════════════════════ */

.team-preview-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 0;
}
.thdr-left p {
  font-size: .95rem; color: rgba(0,0,0,.5);
  margin-top: .75rem; max-width: 500px; line-height: 1.65;
}
.team-hdr-h {
  font-family: var(--display); font-size: clamp(3rem,8vw,9rem);
  text-transform: uppercase; line-height: .9; color: var(--black);
}
.team-hdr-h em {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: .02em .14em; border-radius: 10px; font-style: normal;
}

/* Outer wrapper — same negative-margin trick as .clients-slider-wrap */
.tprev-wrap { position: relative; margin: 2.5rem -1.5rem 0; }

/* Scrollable container — hides scrollbar */
.tprev-viewport {
  overflow-x: auto; padding: .75rem 0 1.25rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.tprev-viewport::-webkit-scrollbar { display: none; }

/* Inner flex row — 1.5rem side padding aligns first card with .inner content */
.tprev-track {
  display: flex; gap: 1.25rem; width: max-content;
  padding: 0 1.5rem;
}

/* ── Individual preview card ── */
.tprev-card {
  flex-shrink: 0; width: 210px; aspect-ratio: 3/4;
  border-radius: 22px; overflow: hidden; position: relative;
  display: block; text-decoration: none;
  background: var(--tc, var(--orange));
  transition: transform .38s cubic-bezier(.23,1,.32,1), box-shadow .38s;
}
.tprev-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 30px 60px rgba(0,0,0,.22); }

/* Arrow-link icon shown on hover */
.tprev-hint {
  position: absolute; z-index: 4; top: .85rem; right: .85rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.22); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.92);
  opacity: 0; transition: opacity .2s;
}
.tprev-card:hover .tprev-hint { opacity: 1; }
.tprev-hint svg { width: 12px; height: 12px; }

/* Fade edges */
.tprev-fade {
  position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none;
}
.tprev-fade-l { left: 0; background: linear-gradient(to right, #fff 18%, transparent 100%); }
.tprev-fade-r { right: 0; background: linear-gradient(to left, #fff 18%, transparent 100%); }

/* Prev / Next arrow buttons */
.tprev-arr {
  position: absolute; top: 50%; transform: translateY(-58%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--black); border: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 6px 22px rgba(0,0,0,.22);
  transition: background .22s, transform .22s;
}
.tprev-arr:hover { background: var(--orange); transform: translateY(-58%) scale(1.1); }
.tprev-arr svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.tprev-prev { left: 10px; }
.tprev-next { right: 10px; }

/* "View Full Team" CTA row */
.tprev-cta { text-align: center; margin-top: 2.75rem; }

/* Scroll offset so fixed nav doesn't cover hash-targeted member cards */
.tcard2[id] { scroll-margin-top: 90px; }

@media(max-width:960px) {
  .team-preview-hdr { align-items: flex-start; }
}
@media(max-width:600px) {
  .team-preview-hdr { flex-direction: column; }
  .tprev-arr { display: none; }
  .tprev-fade { width: 60px; }
}
