/* ============================================
   BSPOKE — STYLESHEET
   Swiss Design / Dark Theme / High Performance
   ============================================ */

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

:root {
  --bg:       #0C0C0C;
  --bg-2:     #111111;
  --bg-3:     #181818;
  --bg-4:     #212121;
  --white:    #F2F2F2;
  --white-dim: rgba(242,242,242,0.55);
  --white-ghost: rgba(242,242,242,0.06);
  --red:      #D42020;
  --red-hi:   #FF2828;
  --red-dim:  rgba(212,32,32,0.12);
  --gray:     #4A4A4A;
  --gray-mid: #7A7A7A;
  --gray-lt:  #AAAAAA;
  --border:   #1E1E1E;
  --border-lt:#2A2A2A;

  --font-disp: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
}

html { font-size: 16px; scroll-behavior: smooth; cursor: none; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── CURSOR ──────────────────────────────── */
#cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
.cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
}
.cursor__circle {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid rgba(212,32,32,.4);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s;
}
body.cur-hover .cursor__circle { width: 60px; height: 60px; border-color: var(--red); }
body.cur-hover .cursor__dot   { width: 4px; height: 4px; }

/* ─── PRELOADER ───────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: clamp(56px,10vw,112px);
  letter-spacing: .18em;
  overflow: hidden;
}
.preloader__logo span { display: inline-block; transform: translateY(110%); }
.preloader__bar {
  width: 0; height: 2px;
  background: var(--red);
  margin: 18px auto 0;
  transition: width .7s var(--ease-out);
}
.preloader__sub {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .3em;
  color: var(--gray-mid);
  margin-top: 14px;
  opacity: 0; transition: opacity .4s;
}

/* ─── NAV ─────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(12,12,12,.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav__container {
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-disp);
  font-weight: 900; font-size: 22px;
  letter-spacing: .16em;
}
.nav__logo-b { color: var(--red); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-lt);
  position: relative;
  transition: color .2s;
}
.nav__link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--red);
  transition: width .3s var(--ease-out);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta {
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 10px 22px;
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--red-hi); transform: translateY(-1px); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav__burger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s, width .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─────────────────────────── */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--bg); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
}
.mob-menu.open { transform: translateX(0); }
.mob-menu__inner { display: flex; flex-direction: column; gap: 4px; }
.mob-menu__link {
  font-family: var(--font-disp);
  font-size: clamp(36px,8vw,64px);
  font-weight: 700; letter-spacing: .02em;
  color: var(--white); opacity: .35;
  padding: 6px 0;
  transition: opacity .2s, color .2s;
}
.mob-menu__link:hover { opacity: 1; color: var(--red); }

/* ─── LAYOUT UTILS ────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

.sec-header {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 64px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.sec-num { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: .12em; }
.sec-title {
  font-family: var(--font-disp);
  font-weight: 700; font-size: clamp(28px,3.5vw,44px);
  letter-spacing: .02em; text-transform: uppercase;
  flex: 1;
}
.sec-link {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; color: var(--gray-mid);
  transition: color .2s;
}
.sec-link:hover { color: var(--red); }
.label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .25em;
  color: var(--gray-mid); text-transform: uppercase;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 32px;
  transition: all .25s var(--ease-out);
  cursor: none;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-hi); transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--border-lt); color: var(--white); }
.btn--outline:hover { border-color: var(--red); color: var(--red); }
.btn--lg { font-size: 15px; padding: 18px 48px; }

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,32,32,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,32,32,.025) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}
.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: 1fr auto;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: 0 48px;
}
.hero__rail {
  padding-top: 80px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 40px;
}
.hero__idx {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em; color: var(--red);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__content {
  padding: 80px 0 80px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 48px;
}
.hero__hl { display: flex; flex-direction: column; }
.hero__lw { overflow: hidden; }
.hero__l {
  display: block;
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: clamp(72px,12vw,176px);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  transform: translateY(110%);
}
.hero__l--red { color: var(--red); }
.hero__sub {
  display: flex; align-items: flex-end; gap: 64px;
}
.hero__sub p {
  font-size: clamp(15px,1.4vw,18px);
  color: var(--gray-lt); font-weight: 300; line-height: 1.65;
  max-width: 340px;
}
.hero__ticker {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 24px;
  padding: 18px 48px 18px 72px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em;
  color: var(--gray); text-transform: uppercase;
  overflow: hidden; white-space: nowrap;
}
.hero__ticker .dot { color: var(--red); font-size: 8px; }
.hero__scroll {
  position: absolute; right: 48px; bottom: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .3em; color: var(--gray);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scpulse 2s ease-in-out infinite;
}
@keyframes scpulse {
  0%,100% { opacity: .3; }
  50% { opacity: 1; }
}

/* ─── STATS ───────────────────────────────── */
.stats { padding: 80px 0; border-bottom: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats__item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 40px; border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__n {
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: clamp(52px,6vw,88px);
  line-height: 1;
}
.stats__n sup { font-size: .45em; color: var(--red); vertical-align: super; }
.stats__lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .15em;
  color: var(--gray-mid); text-transform: uppercase; line-height: 1.6;
}

/* ─── MANIFESTO ───────────────────────────── */
.manifesto { padding: 120px 0; border-bottom: 1px solid var(--border); }
.manifesto__inner {
  display: grid; grid-template-columns: 180px 1fr; gap: 64px; align-items: start;
}
.manifesto__hl {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(38px,4.5vw,68px);
  line-height: 1.1; letter-spacing: -.01em;
  margin-bottom: 32px;
}
.manifesto__hl em { font-style: italic; color: var(--red); }
.manifesto__body {
  font-size: 18px; line-height: 1.85;
  color: var(--gray-lt); font-weight: 300;
  max-width: 600px;
}
.manifesto__body + .manifesto__body { margin-top: 24px; }

/* ─── DIVISIONS PREVIEW ───────────────────── */
.div-prev { padding: 120px 0; border-bottom: 1px solid var(--border); }
.div-prev__grid { display: grid; grid-template-columns: repeat(5,1fr); }
.div-card {
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden; cursor: none;
}
.div-card:last-child { border-right: none; }
.div-card__inner {
  padding: 36px 28px; min-height: 300px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s;
}
.div-card:hover .div-card__inner { background: var(--bg-3); }
.div-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s var(--ease-out);
}
.div-card:hover::before { transform: scaleY(1); }
.div-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.div-card__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--red); }
.div-card__tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; color: var(--gray); text-transform: uppercase; text-align: right; line-height: 1.5; }
.div-card__name { font-family: var(--font-disp); font-weight: 700; font-size: 26px; letter-spacing: .02em; flex: 1; }
.div-card__desc { font-size: 13px; line-height: 1.6; color: var(--gray-mid); flex: 1; }
.div-card__lnk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; color: var(--gray); transition: color .2s; margin-top: auto; }
.div-card:hover .div-card__lnk { color: var(--red); }

/* ─── FEATURED CASE ───────────────────────── */
.feat-case { padding: 120px 0; border-bottom: 1px solid var(--border); }
.feat-case__card {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; border: 1px solid var(--border);
}
.feat-case__info {
  padding: 64px; display: flex; flex-direction: column; gap: 24px; justify-content: center;
}
.feat-case__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: var(--red); text-transform: uppercase; }
.feat-case__title { font-family: var(--font-disp); font-weight: 700; font-size: clamp(32px,3.5vw,52px); line-height: 1.1; }
.feat-case__desc { font-size: 16px; line-height: 1.7; color: var(--gray-lt); max-width: 400px; }
.feat-case__vis {
  background: var(--bg-3); border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feat-case__vis-num {
  font-family: var(--font-disp); font-weight: 900; font-size: 220px;
  color: rgba(255,255,255,.03); user-select: none; line-height: 1;
}

/* ─── CTA BAND ────────────────────────────── */
.cta-band {
  padding: 160px 0; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'GO';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-disp); font-weight: 900; font-size: 380px;
  color: rgba(212,32,32,.04); line-height: 1; user-select: none; pointer-events: none;
}
.cta-band__inner { display: flex; flex-direction: column; gap: 24px; max-width: 800px; }
.cta-band__lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: .25em; color: var(--red); text-transform: uppercase; }
.cta-band__hl {
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: clamp(64px,9vw,136px);
  line-height: .9; letter-spacing: -.02em;
}

/* ─── FOOTER ──────────────────────────────── */
.footer { padding: 80px 0 40px; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid var(--border);
}
.footer__logo { font-family: var(--font-disp); font-weight: 900; font-size: 30px; letter-spacing: .15em; margin-bottom: 14px; }
.footer__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--gray-mid); }
.footer__col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--red); text-transform: uppercase; margin-bottom: 22px; display: block; }
.footer__col a, .footer__col p { display: block; font-size: 14px; color: var(--gray-mid); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__btm {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--gray);
}

/* ─── PAGE HERO (interior) ────────────────── */
.pg-hero { padding: calc(var(--nav-h) + 80px) 0 80px; border-bottom: 1px solid var(--border); }
.pg-hero__inner { display: grid; grid-template-columns: 180px 1fr; gap: 64px; align-items: end; }
.pg-hero__title {
  font-family: var(--font-disp); font-weight: 900;
  font-size: clamp(60px,8vw,120px);
  line-height: .9; letter-spacing: -.02em; text-transform: uppercase;
}
.pg-hero__sub { font-size: clamp(16px,1.4vw,20px); color: var(--gray-lt); font-weight: 300; line-height: 1.7; margin-top: 28px; max-width: 580px; }

/* ─── ABOUT PAGE ──────────────────────────── */
.about-stmt { padding: 120px 0; border-bottom: 1px solid var(--border); }
.about-stmt__p {
  font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(22px,2.5vw,36px); line-height: 1.45;
  max-width: 1060px; margin: 0 auto; text-align: center;
  color: var(--white-dim);
}
.about-stmt__p strong { color: var(--white); }
.about-stmt__p .r { color: var(--red); }

.pillars { padding: 120px 0; border-bottom: 1px solid var(--border); }
.pillars__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.pillar { padding: 48px 40px; border-right: 1px solid var(--border); }
.pillar:last-child { border-right: none; }
.pillar__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--red); display: block; margin-bottom: 20px; }
.pillar__title { font-family: var(--font-disp); font-weight: 700; font-size: 30px; letter-spacing: .02em; margin-bottom: 14px; }
.pillar__text { font-size: 15px; line-height: 1.75; color: var(--gray-lt); }

.values { padding: 120px 0; border-bottom: 1px solid var(--border); }
.values__grid { display: grid; grid-template-columns: repeat(2,1fr); }
.value { padding: 48px 40px; }
.value:nth-child(odd) { border-right: 1px solid var(--border); }
.value:nth-child(1), .value:nth-child(2) { border-bottom: 1px solid var(--border); }
.value__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: var(--red); text-transform: uppercase; display: block; margin-bottom: 14px; }
.value__title { font-family: var(--font-disp); font-weight: 700; font-size: 24px; margin-bottom: 12px; }
.value__text { font-size: 15px; line-height: 1.75; color: var(--gray-lt); }

/* ─── DIVISIONS PAGE ──────────────────────── */
.div-section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.div-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.div-section__idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--red); display: block; margin-bottom: 14px; }
.div-section__name {
  font-family: var(--font-disp); font-weight: 900;
  font-size: clamp(48px,6vw,88px);
  line-height: .9; letter-spacing: -.02em; margin-bottom: 14px;
}
.div-section__tagline {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  color: var(--gray-mid); text-transform: uppercase;
  padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 28px 0;
}
.div-section__desc { font-size: 17px; line-height: 1.85; color: var(--gray-lt); font-weight: 300; }
.svc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--red); text-transform: uppercase; margin-bottom: 20px; display: block; }
.svc-list li {
  font-size: 16px; color: var(--white);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  transition: color .2s, padding-left .3s var(--ease-out);
}
.svc-list li::before { content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.svc-list li:first-child { border-top: 1px solid var(--border); }
.svc-list li:hover { color: var(--red); padding-left: 6px; }

/* ─── CLIENTS PAGE ────────────────────────── */
.clients-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 64px 0; }
.client-item {
  aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px; cursor: none; transition: background .3s;
}
.client-item:nth-child(4n) { border-right: none; }
.client-item:hover { background: var(--bg-3); }
.client-item span {
  font-family: var(--font-disp); font-weight: 700; font-size: 18px;
  letter-spacing: .1em; color: var(--gray); text-transform: uppercase;
  transition: color .3s;
}
.client-item:hover span { color: var(--white); }

.industries { padding: 80px 0; border-bottom: 1px solid var(--border); }
.ind-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.ind-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em;
  color: var(--gray-mid); text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}
.ind-tag:hover { border-color: var(--red); color: var(--red); }

.testimonials { padding: 120px 0; border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; }
.testi {
  padding: 48px; border-right: 1px solid var(--border);
  position: relative;
}
.testi:nth-child(even) { border-right: none; }
.testi:nth-child(1), .testi:nth-child(2) { border-bottom: 1px solid var(--border); }
.testi__quote {
  font-family: var(--font-disp); font-size: 24px; font-style: italic;
  line-height: 1.4; color: var(--white-dim); margin-bottom: 24px;
}
.testi__quote::before { content: '"'; color: var(--red); }
.testi__quote::after  { content: '"'; color: var(--red); }
.testi__author { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; color: var(--red); text-transform: uppercase; }
.testi__company { font-size: 14px; color: var(--gray-mid); margin-top: 4px; }

/* ─── CASES PAGE ──────────────────────────── */
.cases-filter { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 60px; overflow-x: auto; }
.cf-btn {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-mid); padding: 18px 26px;
  background: none; border: none; cursor: none;
  transition: color .2s;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.cf-btn:hover { color: var(--white); }
.cf-btn.active { color: var(--red); border-bottom-color: var(--red); }

.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.case-card { background: var(--bg); cursor: none; position: relative; overflow: hidden; }
.case-card__vis {
  aspect-ratio: 4/3; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.case-card__vis-bg {
  font-family: var(--font-disp); font-weight: 900; font-size: 120px;
  color: rgba(255,255,255,.04); user-select: none;
}
.case-card__hover {
  position: absolute; inset: 0;
  background: rgba(12,12,12,.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.case-card:hover .case-card__hover { opacity: 1; }
.case-card__info { padding: 28px; }
.case-card__cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--red); text-transform: uppercase; margin-bottom: 6px; }
.case-card__title { font-family: var(--font-disp); font-weight: 700; font-size: 21px; letter-spacing: .02em; margin-bottom: 8px; }
.case-card__client { font-size: 13px; color: var(--gray-mid); }

/* ─── TEAM PAGE ───────────────────────────── */
.team-intro { padding: 80px 0; border-bottom: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.team-member { border-right: 1px solid var(--border); }
.team-member:nth-child(4n) { border-right: none; }
.team-member:nth-child(n+5) { border-top: 1px solid var(--border); }
.team-member__photo {
  aspect-ratio: 3/4; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-member__initials {
  font-family: var(--font-disp); font-weight: 900; font-size: 72px;
  color: rgba(255,255,255,.07); user-select: none;
}
.team-member__photo-overlay {
  position: absolute; inset: 0; background: var(--red-dim);
  opacity: 0; transition: opacity .3s;
}
.team-member:hover .team-member__photo-overlay { opacity: 1; }
.team-member__info { padding: 22px; }
.team-member__name { font-family: var(--font-disp); font-weight: 700; font-size: 20px; letter-spacing: .02em; margin-bottom: 4px; }
.team-member__role { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; color: var(--red); text-transform: uppercase; margin-bottom: 10px; }
.team-member__bio { font-size: 13px; line-height: 1.6; color: var(--gray-mid); }

/* ─── CONTACT PAGE ────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 80px 0; }
.contact-form-wrap { padding-right: 80px; border-right: 1px solid var(--border); }
.contact-info-wrap { padding-left: 80px; }
.ci-item { margin-bottom: 44px; }
.ci-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--red); text-transform: uppercase; display: block; margin-bottom: 10px; }
.ci-val { font-family: var(--font-disp); font-weight: 600; font-size: 22px; letter-spacing: .02em; }
.ci-val a { transition: color .2s; }
.ci-val a:hover { color: var(--red); }

.c-form { display: flex; flex-direction: column; }
.fg { position: relative; border-bottom: 1px solid var(--border); }
.fg:first-child { border-top: 1px solid var(--border); }
.fg label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em; color: var(--gray-mid); text-transform: uppercase; position: absolute; top: 18px; left: 0; pointer-events: none; transition: color .2s; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: 17px;
  padding: 38px 0 14px; cursor: none; resize: none;
}
.fg select option { background: var(--bg-2); }
.fg textarea { min-height: 110px; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray); }
.fg:focus-within label { color: var(--red); }
.fg:focus-within { border-bottom-color: var(--red); }
.form-sub { margin-top: 44px; }

/* ─── SCROLL REVEALS ──────────────────────── */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.rv-l.in { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.rv-r.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .div-prev__grid { grid-template-columns: repeat(3,1fr); }
  .div-prev__grid .div-card:nth-child(3) { border-right: none; }
  .div-prev__grid .div-card:nth-child(n+4) { border-top: 1px solid var(--border); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .team-member:nth-child(4n) { border-right: 1px solid var(--border); }
  .team-member:nth-child(3n) { border-right: none; }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__container { padding: 0 24px; }
  .hero__grid { grid-template-columns: 1fr; padding: 0 24px; }
  .hero__rail { display: none; }
  .hero__content { padding: 60px 0; }
  .hero__sub { flex-direction: column; align-items: flex-start; gap: 28px; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .manifesto__inner { grid-template-columns: 1fr; gap: 28px; }
  .div-prev__grid { grid-template-columns: 1fr 1fr; }
  .feat-case__card { grid-template-columns: 1fr; }
  .feat-case__vis { height: 260px; border-left: none; border-top: 1px solid var(--border); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .pg-hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .div-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .client-item:nth-child(4n) { border-right: 1px solid var(--border); }
  .client-item:nth-child(2n) { border-right: none; }
  .cases-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .team-member:nth-child(n) { border-right: 1px solid var(--border); }
  .team-member:nth-child(2n) { border-right: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding-right: 0; border-right: none; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
  .contact-info-wrap { padding-left: 0; padding-top: 64px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .values__grid { grid-template-columns: 1fr; }
  .value:nth-child(odd) { border-right: none; }
  .value { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .div-prev__grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__btm { flex-direction: column; gap: 10px; text-align: center; }
  .cta-band__hl { font-size: clamp(52px,12vw,100px); }
}
