/* ═══════════════════════════════════════════════════════
   FANEXA — THE SHOW (restored + hardened)
   Colossal kinetic type · electric gold · black & bone
   ═══════════════════════════════════════════════════════ */

:root {
  --ink:      #0B0B0C;
  --ink-2:    #131314;
  --bone:     #EFEAE0;
  --bone-2:   #E4DECF;
  --white:    #F6F3EB;
  --black-t:  #121213;
  --mut-d:    #8F8D86;
  --mut-l:    #77705F;
  --gold:     #E8B84B;
  --gold-hi:  #FFDF8A;
  --gold-dp:  #B9871E;
  --gold-ink: #8F6A14;  /* readable gold on bone */
  --grad-gold: linear-gradient(100deg, #FFDF8A 0%, #E8B84B 45%, #C9962D 100%);
  --grad-gold-l: linear-gradient(100deg, #A87614 0%, #8F6A14 55%, #6E5310 100%);
  --line-d:   rgba(246, 243, 235, 0.12);
  --line-l:   rgba(18, 18, 19, 0.14);
  --f-disp:   "Anybody", "Arial Black", sans-serif;
  --f-label:  "Space Grotesk", sans-serif;
  --f-body:   "Inter", sans-serif;
  --ease:     cubic-bezier(0.19, 1, 0.22, 1);
  --pad: clamp(20px, 4.5vw, 72px);
}

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

html { scrollbar-color: var(--gold-dp) var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dp); }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; }

.js-scroll #scroller {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  will-change: transform;
}

/* ─── grain ─── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9500;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(9) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-2%,2%); }
  50% { transform: translate(2%,-2%); }
  75% { transform: translate(-2%,-2%); }
}

/* ─── cursor ─── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9800;
  border-radius: 50%;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(232, 184, 75, 0.55);
  display: flex; align-items: center; justify-content: center;
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s, border-color .3s;
}
.cursor-ring span {
  opacity: 0;
  font-family: var(--f-label);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  white-space: nowrap;
  transition: opacity .25s;
}
.cursor-ring.on { width: 58px; height: 58px; background: rgba(232, 184, 75, 0.12); }
.cursor-ring.view {
  width: 92px; height: 92px;
  background: var(--gold);
  border-color: var(--gold);
}
.cursor-ring.view span { opacity: 1; }
@media (hover: hover) and (pointer: fine) { body { cursor: none; } a, button { cursor: none; } }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── preloader ─── */
.preloader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease);
  border-bottom: 2px solid var(--gold);
}
.preloader.done { transform: translateY(-101%); }
.pre-count {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 120, "wght" 800;
  font-size: clamp(90px, 17vw, 240px);
  line-height: 1;
  color: var(--white);
}
.pre-name {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-label);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.55em; text-indent: 0.55em;
  color: var(--mut-d);
}
.pre-name b { color: var(--gold); font-weight: 500; }
.preloader.done .pre-count, .preloader.done .pre-name { animation: preOut .4s forwards; }
@keyframes preOut { to { opacity: 0; transform: translateY(-40px); } }

/* ─── nav (blend on text only — the gold logo stays gold) ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: transform .5s var(--ease);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav.hide { transform: translateY(-110%); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { height: 26px; width: auto; display: block; transition: transform .5s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.1); }
.brand-word {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 110, "wght" 700;
  font-size: 16px;
  letter-spacing: 0.28em;
  color: #fff;
  mix-blend-mode: difference;
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 46px); mix-blend-mode: difference; }
.nav-links a {
  position: relative;
  font-family: var(--f-label);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 6px 0;
  overflow: hidden;
}
.nav-links a i {
  font-style: normal; display: inline-block;
  transition: transform .45s var(--ease);
}
.nav-links a::after {
  content: attr(data-txt);
  content: attr(data-txt) / "";
  position: absolute; left: 0; top: 100%;
  padding: 6px 0;
  color: var(--gold);
  transition: transform .45s var(--ease);
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
}
.nav-links a:hover i { transform: translateY(-160%); }
/* travels exactly its own height (top:100% -> 0) so it lands over the original
   word; -160% overshot and the label vanished above the overflow:hidden edge */
.nav-links a:hover::after { transform: translateY(-100%); }
.nav-burger {
  display: none;
  background: none; border: 0;
  width: 36px; height: 28px; position: relative; cursor: pointer;
  mix-blend-mode: difference;
}
.nav-burger span {
  position: absolute; left: 4px; right: 4px; height: 2px;
  background: #fff;
  transition: transform .4s var(--ease), top .4s;
}
.nav-burger span:nth-child(1) { top: 10px; }
.nav-burger span:nth-child(2) { top: 18px; }
.nav-burger.open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { top: 14px; transform: rotate(-45deg); }

/* mobile menu */
.m-menu {
  position: fixed; inset: 0;
  z-index: 850;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  visibility: hidden; pointer-events: none; opacity: 0;
  transition: opacity .5s, visibility .5s;
}
.m-menu.open { visibility: visible; pointer-events: auto; opacity: 1; }
.m-menu a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 95, "wght" 750;
  font-size: clamp(38px, 11vw, 64px);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-d);
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.m-menu.open a { opacity: 1; transform: none; }
.m-menu.open a:nth-child(1) { transition-delay: .06s; }
.m-menu.open a:nth-child(2) { transition-delay: .12s; }
.m-menu.open a:nth-child(3) { transition-delay: .18s; }
.m-menu.open a:nth-child(4) { transition-delay: .24s; }
.m-menu a i { font-family: var(--f-label); font-style: normal; font-size: 12px; color: var(--gold); }

/* ─── buttons & shared ─── */
.label {
  font-family: var(--f-label);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.label.on-dark { color: var(--gold); }

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 38px;
  border: 2px solid var(--gold);
  font-family: var(--f-label);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  will-change: transform;
  transition: color .35s;
}
.btn::before {
  content: "";
  position: absolute; inset: -2px;
  background: var(--grad-gold);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn > * { position: relative; }
.btn-big { padding: 24px 54px; font-size: 15px; }

.reveal { opacity: 0; transform: translateY(60px); transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.rl .l { display: block; overflow: hidden; }
.rl .li { display: inline-block; transform: translateY(115%); transition: transform 1.1s var(--ease); }
.rl.in .li { transform: none; }
.rl .l:nth-child(2) .li { transition-delay: .08s; }
.rl .l:nth-child(3) .li { transition-delay: .16s; }

/* gold text: bright on dark, deep (readable) on bone */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.light .gold-text {
  background: var(--grad-gold-l);
  -webkit-background-clip: text; background-clip: text;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-net {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.6s ease .3s;
}
body.loaded .hero-net { opacity: 1; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(90px, 14vh, 150px) var(--pad) 120px;
}
.hero-eyebrow {
  font-family: var(--f-label);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--mut-d);
  text-transform: uppercase;
  margin-bottom: clamp(24px, 4vh, 44px);
  opacity: 0;
  transition: opacity .8s ease .2s;
}
body.loaded .hero-eyebrow { opacity: 1; }
.hero-eyebrow b { color: var(--gold); font-weight: 600; }
.hero-h { line-height: 0.98; }
.h-wrap { display: block; overflow: hidden; }
.h-line {
  display: inline-block;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 112, "wght" 850;
  font-size: clamp(50px, 10.8vw, 168px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease), font-variation-settings .7s var(--ease);
}
body.loaded .h-line { transform: none; }
body.loaded .h-wrap:nth-child(1) .h-line { transition-delay: 0s, 0s; }
body.loaded .h-wrap:nth-child(2) .h-line { transition-delay: .12s, 0s; }
body.loaded .h-wrap:nth-child(3) .h-line { transition-delay: .24s, 0s; }
.h-line:hover { font-variation-settings: "wdth" 121, "wght" 900; }
.h-solid { color: var(--white); }
.h-out { color: transparent; -webkit-text-stroke: 2.5px var(--white); }
.h-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-bottom {
  margin-top: clamp(34px, 6vh, 60px);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 34px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease .55s, transform .9s var(--ease) .55s;
}
body.loaded .hero-bottom { opacity: 1; transform: none; }
.hero-desc {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mut-d);
}
.hero-desc b { color: var(--white); font-weight: 500; }
.hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-label);
  font-size: 10px; letter-spacing: 0.5em; text-indent: 0.5em;
  color: var(--mut-d);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 1;
}
.hero-scroll i { width: 2px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════ MARQUEE BANDS ═══════════ */
.band {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.6vh, 30px) 0;
  z-index: 5;
}
.band-gold { background: var(--gold); transform: rotate(-1.6deg) scale(1.04); margin: -14px 0; }
.band-ink  { background: var(--ink); transform: rotate(1.4deg) scale(1.04); margin: -14px 0; border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.band .mq-track { display: flex; width: max-content; will-change: transform; }
.band span {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 110, "wght" 800;
  font-size: clamp(26px, 4vw, 54px);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.band-gold span { color: var(--ink); }
.band-ink span { color: var(--white); }
.band em { font-style: normal; margin: 0 26px; }
.band-gold em { color: var(--ink); opacity: .45; }
.band-ink em { color: var(--gold); }

/* ═══════════ SECTIONS ═══════════ */
section.block { position: relative; padding: clamp(110px, 16vh, 190px) var(--pad); }
.light { background: var(--bone); color: var(--black-t); }
.dark  { background: var(--ink);  color: var(--white); }

.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: clamp(50px, 9vh, 90px);
  gap: 20px;
}
.sec-title {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 118, "wght" 850;
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.sec-index {
  font-family: var(--f-label);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-ink);
  white-space: nowrap;
}
.dark .sec-index { color: var(--gold); }

/* ═══════════ ABOUT (bone) ═══════════ */
.about-statement {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 640;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 21ch;
}
.about-statement .word {
  display: inline-block;
  opacity: 0.12;
  transform: translateY(0.3em) rotate(2deg);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--wd, 0s);
}
.about-statement.in .word { opacity: 1; transform: none; }
.about-meta {
  margin-top: clamp(50px, 9vh, 90px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 2px solid var(--black-t);
}
.about-meta div { padding: 22px 18px 0 0; }
.about-meta b {
  display: block;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--mut-l);
  margin-bottom: 10px;
}
.about-meta span {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 105, "wght" 700;
  font-size: clamp(17px, 1.6vw, 24px);
  text-transform: uppercase;
}

/* ═══════════ SERVICES (bone) ═══════════ */
.svc-list { border-top: 2px solid var(--black-t); }
.svc {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 50px);
  padding: clamp(26px, 4.6vh, 44px) 0;
  border-bottom: 2px solid var(--black-t);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.svc:hover::before { transform: scaleY(1); }
.svc > * { position: relative; z-index: 1; }
.svc-num {
  font-family: var(--f-label);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--gold-ink);
  transition: color .35s;
}
.svc:hover .svc-num { color: var(--gold); }
.svc-name {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 112, "wght" 820;
  font-size: clamp(34px, 6.2vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black-t);
  transition: color .35s, transform .5s var(--ease);
}
.svc:hover .svc-name { color: var(--bone); transform: translateX(18px); }
.svc-tags {
  font-family: var(--f-label);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut-l);
  max-width: 300px;
  text-align: right;
  line-height: 1.9;
  transition: color .35s;
}
.svc:hover .svc-tags { color: var(--gold); }

/* ═══════════ WORK (dark) ═══════════ */
.case {
  position: relative;
  margin-bottom: clamp(80px, 14vh, 150px);
}
.case:last-child { margin-bottom: 0; }
.case-visual {
  position: relative;
  height: clamp(340px, 72vh, 720px);
  overflow: hidden;
}
.case-visual img {
  position: absolute;
  left: 0; top: -12%;
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
  filter: saturate(0.85);
  transition: filter .6s;
}
.case:hover .case-visual img { filter: saturate(1.1); }
.case-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 12, 0.72));
}
.js .case-visual { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.js .case.in .case-visual { clip-path: inset(0 0 0 0); }
.case-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}
.case-idx {
  position: absolute;
  top: -0.45em; right: var(--pad);
  z-index: 2;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 120, "wght" 900;
  font-size: clamp(80px, 14vw, 210px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  pointer-events: none;
}
.case-meta {
  position: absolute;
  left: var(--pad); bottom: 34px;
  z-index: 2;
  display: flex; align-items: baseline; gap: 26px; flex-wrap: wrap;
}
.case-meta h3 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 115, "wght" 850;
  font-size: clamp(34px, 5.4vw, 84px);
  text-transform: uppercase;
  line-height: 1;
}
.case-meta p { font-size: 14px; color: var(--mut-d); letter-spacing: 0.04em; }

/* ═══════════ PHILOSOPHY — horizontal runway ═══════════ */
.phil { position: relative; height: 320vh; background: var(--ink); }
.phil-pin {
  height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  will-change: transform;
}
.no-smooth .phil-pin { position: sticky; top: 0; }
.phil-track {
  display: flex; align-items: center;
  white-space: nowrap;
  will-change: transform;
  padding-left: 6vw;
}
.phil-track b, .phil-track s {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 118, "wght" 880;
  font-size: clamp(90px, 24vh, 260px);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 5vw;
}
.phil-track b { color: var(--white); }
.phil-track s { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.phil-track .solid-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
}
.no-runway .phil { height: auto; }
.no-runway .phil-pin { height: auto; padding: 110px 0; position: static; }
.no-runway .phil-track { white-space: normal; flex-wrap: wrap; padding: 0 var(--pad); }
.no-runway .phil-track b, .no-runway .phil-track s { font-size: clamp(40px, 10vw, 90px); margin-right: 2vw; }

/* ═══════════ TEAM (bone) ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.member { position: relative; }
.member-a { grid-column: 1 / span 5; }
.member-b { grid-column: 7 / span 5; margin-top: clamp(60px, 11vh, 130px); }
.member-c { grid-column: 4 / span 5; margin-top: clamp(40px, 8vh, 90px); }
.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone-2);
}
.portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .9s var(--ease), filter .6s;
  will-change: transform;
}
.member:hover .portrait img { transform: scale(1.1); filter: contrast(1.06); }
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.member:hover .portrait::after { opacity: 0.28; }
.member-meta { margin-top: 20px; position: relative; }
.member-meta h3 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 112, "wght" 830;
  font-size: clamp(24px, 2.6vw, 40px);
  text-transform: uppercase;
  line-height: 1;
}
.member-meta b {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-ink);
  text-transform: uppercase;
}
.member-meta p { margin-top: 10px; font-size: 13.5px; line-height: 1.75; color: var(--mut-l); max-width: 330px; }
.member-num {
  position: absolute;
  top: -16px; right: 0;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 120, "wght" 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--black-t);
  opacity: .5;
}
.team-close {
  margin-top: clamp(90px, 15vh, 170px);
  text-align: center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 116, "wght" 860;
  font-size: clamp(38px, 7.4vw, 110px);
  line-height: 1.04;
  text-transform: uppercase;
}

/* ═══════════ CONTACT (dark) ═══════════ */
.contact {
  min-height: 96svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.contact-title {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 118, "wght" 880;
  font-size: clamp(52px, 11.5vw, 180px);
  line-height: 0.94;
  text-transform: uppercase;
}
.contact-title .out { color: transparent; -webkit-text-stroke: 2px var(--white); }
.contact-sub { margin-top: 30px; font-size: 15px; line-height: 1.8; color: var(--mut-d); }
.contact .btn-big { margin-top: 48px; }
.contact-mail {
  margin-top: 30px;
  font-family: var(--f-label);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--mut-d);
  text-decoration: none;
  transition: color .3s;
}
.contact-mail:hover { color: var(--gold); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  position: relative;
  background: var(--ink);
  padding: clamp(40px, 8vh, 80px) var(--pad) 30px;
  border-top: 2px solid var(--gold);
}
.footer-dust { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.footer-word {
  position: relative;
  z-index: 1;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 100, "wght" 800;
  font-size: clamp(64px, 16vw, 270px);
  line-height: 0.92;
  text-align: center;
  letter-spacing: 0.01em;
  color: transparent;
  margin-bottom: clamp(40px, 8vh, 80px);
  user-select: none;
}
.footer-word::before {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: var(--grad-gold);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-stroke-width: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
  animation: goldShimmer 6s linear infinite;
}
.footer-word::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  z-index: -1;
  color: transparent;
  text-shadow: 0 0 50px rgba(232, 184, 75, 0.35), 0 0 130px rgba(232, 184, 75, 0.16);
  opacity: 0;
  transition: opacity 2s ease .3s;
}
.footer-word.lit::before, .footer-word.lit::after { opacity: 1; }
@keyframes goldShimmer { from { background-position: 0% 0; } to { background-position: 240% 0; } }
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line-d);
  font-family: var(--f-label);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut-d);
}
.footer-row nav { display: flex; gap: clamp(16px, 2.4vw, 34px); flex-wrap: wrap; }
.footer-row a { color: var(--mut-d); text-decoration: none; transition: color .3s; }
.footer-row a:hover { color: var(--gold); }
.footer-row .tag em { font-style: normal; color: var(--gold); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .h-line { font-size: min(15.5vw, 20svh); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .svc { grid-template-columns: 48px 1fr; }
  .svc-tags { display: none; }
  .case-visual { height: 52vh; }
  .case-idx { font-size: min(21vw, 120px); }
  .team-grid { grid-template-columns: 1fr; }
  .member-a, .member-b, .member-c { grid-column: 1 / -1; margin-top: 0; }
  .member { margin-bottom: 44px; }
  .band span { font-size: 7vw; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero-scroll i { animation: none; }
  .preloader { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .reveal, .rl .li, .about-statement .word { opacity: 1 !important; transform: none !important; transition: none; }
  .h-line { transform: none !important; transition: none; }
  .hero-net { display: none; }
  .hero-eyebrow, .hero-bottom { opacity: 1 !important; transform: none !important; }
  .js .case-visual { clip-path: none; }
  .footer-word::before, .footer-word::after { opacity: 1; animation: none; transition: none; }
  .footer-dust { display: none; }
  .phil { height: auto !important; }
  .phil-pin { position: static !important; height: auto !important; padding: 110px 0; }
  .phil-track { white-space: normal; flex-wrap: wrap; padding: 0 var(--pad); }
}

/* ═══════════ START A PROJECT PAGE ═══════════ */
.sp-page { background: var(--ink); }
.sp-main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(130px, 18vh, 180px) var(--pad) 90px;
}
.sp-title {
  margin-top: 22px;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 116, "wght" 860;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.96;
  text-transform: uppercase;
}
.sp-sub { margin-top: 18px; font-size: 15px; line-height: 1.8; color: var(--mut-d); }
.sp-form { margin-top: 48px; display: flex; flex-direction: column; gap: 30px; }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sp-field { display: flex; flex-direction: column; gap: 9px; }
.sp-field span, .sp-set legend {
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.sp-field input, .sp-field textarea {
  background: transparent;
  border: 2px solid var(--line-d);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .3s;
  border-radius: 0;
}
.sp-field textarea { resize: vertical; min-height: 130px; }
.sp-field input::placeholder, .sp-field textarea::placeholder { color: var(--mut-d); opacity: .7; }
.sp-field input:focus, .sp-field textarea:focus { border-color: var(--gold); }
.sp-set { border: 0; display: flex; flex-direction: column; gap: 12px; }
.sp-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.sp-chips button {
  background: transparent;
  border: 2px solid var(--line-d);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  cursor: pointer;
  transition: border-color .25s, background .25s, color .25s, transform .3s var(--ease);
}
.sp-chips button:hover { border-color: var(--gold); transform: translateY(-2px); }
.sp-chips button.on { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.sp-error { color: #E8785B; font-size: 14px; }
.sp-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 4px; }
.sp-actions .contact-mail { margin-top: 0; }
.sp-done { padding: 40px 0 60px; }
.sp-done b { color: var(--gold); font-weight: 600; }
@media (max-width: 700px) { .sp-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   SERVICE PAGES  (services.html + individual service pages)
   ═══════════════════════════════════════════════════════ */
.sv-page { background: var(--ink); }

/* ─── service hero ─── */
.sv-hero {
  position: relative;
  display: flex; align-items: flex-end;
  min-height: 86svh;
  padding: clamp(140px, 20vh, 210px) var(--pad) clamp(56px, 9vh, 96px);
  background: var(--ink);
  overflow: hidden;
}
.sv-net {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease .2s;
}
body.loaded .sv-net { opacity: 1; }
.sv-hero-inner { position: relative; z-index: 1; width: 100%; }

.sv-crumb {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mut-d);
}
.sv-crumb a { color: var(--mut-d); text-decoration: none; transition: color .3s; }
.sv-crumb a:hover { color: var(--gold); }
.sv-crumb em { font-style: normal; color: var(--gold); }

.sv-title {
  margin-top: clamp(20px, 3vh, 30px);
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 116, "wght" 860;
  font-size: clamp(42px, 9vw, 140px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.sv-title .out { color: transparent; -webkit-text-stroke: 2px var(--white); }

.sv-lede {
  margin-top: clamp(24px, 4vh, 36px);
  max-width: 58ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.82;
  color: var(--mut-d);
}
.sv-lede b { color: var(--white); font-weight: 500; }

.sv-tags { margin-top: clamp(28px, 4.5vh, 42px); display: flex; flex-wrap: wrap; gap: 10px; }
.sv-tags span {
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 184, 75, 0.34);
  padding: 9px 16px;
}

/* ─── two-column narrative ─── */
.sv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 88px);
  align-items: start;
}
.sv-lead {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 102, "wght" 660;
  font-size: clamp(26px, 3.6vw, 54px);
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 18ch;
}
.sv-body p { font-size: 15px; line-height: 1.9; color: var(--mut-l); max-width: 54ch; }
.dark .sv-body p { color: var(--mut-d); }
.sv-body p + p { margin-top: 18px; }
.sv-body b { color: var(--black-t); font-weight: 600; }
.dark .sv-body b { color: var(--white); font-weight: 500; }

/* ─── client-signal quotes ─── */
.quote-list { margin-top: clamp(32px, 5vh, 48px); list-style: none; border-top: 2px solid var(--black-t); }
.dark .quote-list { border-top-color: var(--gold); }
.quote-list li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-l);
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 620;
  font-size: clamp(16px, 1.85vw, 25px);
  line-height: 1.32;
  text-transform: uppercase;
}
.dark .quote-list li { border-bottom-color: var(--line-d); }
.quote-list li::before {
  content: "\2726";
  flex: none;
  font-family: var(--f-label);
  font-size: 12px;
  color: var(--gold-ink);
  transform: translateY(-0.2em);
}
.dark .quote-list li::before { color: var(--gold); }

/* ─── capability / problem / industry cards ─── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  border-top: 2px solid var(--gold);
  border-left: 1px solid var(--line-d);
}
.light .cap-grid { border-left-color: var(--line-l); }
.cap {
  position: relative;
  padding: 30px 26px 34px;
  border-bottom: 1px solid var(--line-d);
  border-right: 1px solid var(--line-d);
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.light .cap { border-bottom-color: var(--line-l); border-right-color: var(--line-l); }
.cap::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.cap:hover::before { transform: scaleY(1); }
.cap > * { position: relative; z-index: 1; }
.cap i {
  font-style: normal;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
  transition: color .35s;
}
.light .cap i { color: var(--gold-ink); }
.cap h3 {
  margin-top: 14px;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 108, "wght" 800;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--white);
  transition: color .35s;
}
.light .cap h3 { color: var(--black-t); }
.cap p { margin-top: 12px; font-size: 13.5px; line-height: 1.78; color: var(--mut-d); transition: color .35s; }
.light .cap p { color: var(--mut-l); }
.cap:hover i, .cap:hover h3, .cap:hover p { color: var(--ink); }

/* ─── example callout ─── */
.callout {
  margin-top: clamp(34px, 5vh, 54px);
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px clamp(22px, 3vw, 34px);
}
.callout .q {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 650;
  font-size: clamp(21px, 2.9vw, 42px);
  line-height: 1.16;
  text-transform: uppercase;
}
.callout .q + .q { margin-top: 14px; color: transparent; -webkit-text-stroke: 1.5px var(--black-t); }
.dark .callout .q + .q { -webkit-text-stroke-color: var(--white); }
.callout .a { margin-top: 20px; font-size: 14.5px; line-height: 1.85; color: var(--mut-l); max-width: 56ch; }
.dark .callout .a { color: var(--mut-d); }

/* ─── process steps ─── */
.step-list { border-top: 2px solid var(--gold); }
.step {
  display: grid;
  grid-template-columns: clamp(70px, 9vw, 130px) 1fr;
  gap: clamp(14px, 3vw, 46px);
  align-items: baseline;
  padding: clamp(22px, 3.4vh, 36px) 0;
  border-bottom: 1px solid var(--line-d);
}
.light .step { border-bottom-color: var(--line-l); }
.step > b {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 120, "wght" 880;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.step h3 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 110, "wght" 800;
  font-size: clamp(21px, 2.6vw, 38px);
  line-height: 1.02;
  text-transform: uppercase;
}
.step p { margin-top: 12px; font-size: 14.5px; line-height: 1.85; color: var(--mut-d); max-width: 60ch; }
.light .step p { color: var(--mut-l); }

/* ─── pills ─── */
.pill-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: clamp(28px, 4vh, 40px); }
.pill {
  font-family: var(--f-label);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px 20px;
  border: 2px solid var(--line-d);
  color: var(--white);
  transition: border-color .3s, color .3s, transform .35s var(--ease);
}
.light .pill { border-color: var(--line-l); color: var(--black-t); }
.pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.light .pill:hover { border-color: var(--gold-ink); color: var(--gold-ink); }

/* ─── related services ─── */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: clamp(14px, 2vw, 26px);
}
.rel {
  display: block;
  text-decoration: none;
  border: 2px solid var(--line-l);
  padding: 28px 24px 30px;
  transition: border-color .4s, transform .5s var(--ease);
}
.dark .rel { border-color: var(--line-d); }
.rel i {
  font-style: normal;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-ink);
}
.dark .rel i { color: var(--gold); }
.rel h3 {
  margin-top: 12px;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 110, "wght" 810;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.04;
  text-transform: uppercase;
}
.rel span {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--mut-l);
  transition: color .3s;
}
.dark .rel span { color: var(--mut-d); }
.rel:hover { border-color: var(--gold-ink); transform: translateY(-6px); }
.dark .rel:hover { border-color: var(--gold); }
.rel:hover span { color: var(--gold-ink); }
.dark .rel:hover span { color: var(--gold); }

/* ─── service list rows as links (home + hub) ─── */
a.svc { text-decoration: none; color: inherit; }
.svc-go {
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-ink);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .35s, transform .45s var(--ease), color .35s;
  white-space: nowrap;
}
.svc:hover .svc-go { opacity: 1; transform: none; color: var(--gold); }
.svc-more {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: clamp(34px, 5vh, 50px);
  font-family: var(--f-label);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-ink);
  transition: gap .35s var(--ease);
}
.dark .svc-more { color: var(--gold); }
.svc-more:hover { gap: 22px; }

/* ─── compact contact block for subpages ─── */
.contact.compact { min-height: auto; padding-top: clamp(90px, 15vh, 150px); padding-bottom: clamp(90px, 15vh, 150px); }

/* ─── the approach chain ─── */
.chain {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  margin-top: clamp(30px, 5vh, 46px);
}
.chain b {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 112, "wght" 820;
  font-size: clamp(20px, 3.1vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}
.chain b:nth-of-type(2n) { color: transparent; -webkit-text-stroke: 1.5px var(--black-t); }
.dark .chain b:nth-of-type(2n) { -webkit-text-stroke-color: var(--white); }
.chain em { font-style: normal; color: var(--gold); font-size: clamp(14px, 1.8vw, 24px); }
.light .chain em { color: var(--gold-ink); }

@media (max-width: 900px) {
  .sv-split { grid-template-columns: 1fr; }
  .sv-hero { min-height: auto; }
  .svc-go { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-net { display: none; }
}

/* longer service names need a slightly smaller display size to keep rows even */
.svc-list .svc-name { font-size: clamp(28px, 4.2vw, 58px); }
.svc-list .svc-tags { max-width: 250px; }
@media (max-width: 900px) { .svc-list .svc-name { font-size: clamp(26px, 6.4vw, 44px); } }

/* second paragraph inside a card = the solutions line */
.cap .cap-sol { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-d); color: var(--gold); }
.light .cap .cap-sol { border-top-color: var(--line-l); color: var(--gold-ink); }
.cap:hover .cap-sol { color: var(--ink); border-top-color: rgba(11,11,12,.28); }

/* ═══════════════════════════════════════════════════════
   FULL SITE — nav, footer, work, articles, contact, 404
   ═══════════════════════════════════════════════════════ */

/* six nav items need a tighter rhythm than four */
.nav-links { gap: clamp(13px, 2vw, 32px); }
.m-menu.open a:nth-child(5) { transition-delay: .30s; }
.m-menu.open a:nth-child(6) { transition-delay: .36s; }
.m-menu.open a:nth-child(7) { transition-delay: .42s; }
.m-menu a { font-size: clamp(28px, 8vw, 52px); padding: 7px 0; }

/* ─── expanded footer ─── */
.footer-cols {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(24px, 3vw, 50px);
  padding-bottom: clamp(34px, 5vh, 54px);
}
.footer-col b {
  display: block;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span.fc-line {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mut-d);
  text-decoration: none;
  padding: 7px 0;
  transition: color .3s, padding-left .35s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 8px; }

/* ─── prose (articles, policy) ─── */
.prose { max-width: 68ch; }
.prose h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 110, "wght" 800;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.06;
  text-transform: uppercase;
  margin: clamp(44px, 6vh, 72px) 0 20px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--f-label);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-ink);
  margin: 34px 0 14px;
}
.dark .prose h3 { color: var(--gold); }
.prose p { font-size: 16px; line-height: 1.9; color: var(--mut-l); margin-bottom: 20px; }
.dark .prose p { color: var(--mut-d); }
.prose b, .prose strong { color: var(--black-t); font-weight: 600; }
.dark .prose b, .dark .prose strong { color: var(--white); font-weight: 500; }
.prose ul, .prose ol { list-style: none; margin: 0 0 26px; padding: 0; }
.prose li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.85; color: var(--mut-l); margin-bottom: 10px; }
.dark .prose li { color: var(--mut-d); }
.prose li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold-ink); }
.dark .prose li::before { color: var(--gold); }
.prose blockquote { border-left: 3px solid var(--gold); padding-left: clamp(20px, 3vw, 30px); margin: clamp(34px, 5vh, 48px) 0; }
.prose blockquote p {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 640;
  font-size: clamp(19px, 2.3vw, 31px);
  line-height: 1.24;
  text-transform: uppercase;
  color: var(--black-t);
  margin: 0;
}
.dark .prose blockquote p { color: var(--white); }
.prose a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 4px; }
.dark .prose a { color: var(--gold); }
.prose a:hover { color: var(--black-t); }
.dark .prose a:hover { color: var(--white); }

/* ─── article index ─── */
.art-list { border-top: 2px solid var(--black-t); }
.dark .art-list { border-top-color: var(--gold); }
.art {
  position: relative;
  display: grid;
  grid-template-columns: clamp(110px, 13vw, 170px) 1fr clamp(80px, 9vw, 120px);
  gap: clamp(14px, 3vw, 44px);
  align-items: baseline;
  padding: clamp(24px, 3.6vh, 38px) 0;
  border-bottom: 1px solid var(--line-l);
  text-decoration: none;
  transition: padding-left .4s var(--ease);
}
.dark .art { border-bottom-color: var(--line-d); }
.art:hover { padding-left: 16px; }
.art-cat {
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-ink);
}
.dark .art-cat { color: var(--gold); }
.art h3 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 108, "wght" 800;
  font-size: clamp(21px, 2.7vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--black-t);
  transition: color .35s;
}
.dark .art h3 { color: var(--white); }
.art:hover h3 { color: var(--gold-ink); }
.dark .art:hover h3 { color: var(--gold); }
.art p { margin-top: 11px; font-size: 14px; line-height: 1.78; color: var(--mut-l); max-width: 62ch; }
.dark .art p { color: var(--mut-d); }
.art-read {
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mut-l);
  text-align: right;
  white-space: nowrap;
}
.dark .art-read { color: var(--mut-d); }

/* ─── article page ─── */
.art-meta {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
  margin-top: clamp(28px, 4vh, 40px);
  padding-top: 22px;
  border-top: 1px solid var(--line-d);
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mut-d);
}
.art-meta em { font-style: normal; color: var(--gold); }

/* ─── case study ─── */
.cs-hero { position: relative; height: clamp(400px, 76vh, 780px); overflow: hidden; background: var(--ink); }
.cs-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.cs-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.72) 0%, rgba(11,11,12,.14) 28%, rgba(11,11,12,.72) 62%, rgba(11,11,12,.97) 100%);
}
.cs-hero-inner { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 0 var(--pad) clamp(40px, 6.5vh, 76px); }
.cs-title {
  margin-top: 18px;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 116, "wght" 860;
  font-size: clamp(44px, 10vw, 148px);
  line-height: 0.94;
  text-transform: uppercase;
}
.cs-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  border-top: 2px solid var(--gold);
  border-left: 1px solid var(--line-d);
}
.cs-fact { padding: 24px 20px 28px; border-right: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); }
.cs-fact b {
  display: block;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cs-fact span {
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 105, "wght" 720;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.25;
  text-transform: uppercase;
}
.cs-fact a { text-decoration: none; color: var(--gold); transition: color .3s; }
.cs-fact a:hover { color: var(--gold-hi); }

/* ─── contact page ─── */
.ct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 44px);
  border-top: 2px solid var(--gold);
  padding-top: clamp(34px, 5vh, 52px);
}
.ct-item b {
  display: block;
  font-family: var(--f-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ct-item a, .ct-item > span {
  display: block;
  font-family: var(--f-disp);
  font-weight: 700;
  font-variation-settings: "wdth" 105, "wght" 720;
  font-size: clamp(17px, 1.8vw, 26px);
  line-height: 1.3;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s;
}
.ct-item a:hover { color: var(--gold); }
.ct-item p { margin-top: 12px; font-size: 14px; line-height: 1.8; color: var(--mut-d); }

/* ─── 404 ─── */
.nf {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px var(--pad) 90px;
  background: var(--ink);
}
.nf-code {
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 130, "wght" 900;
  font-size: clamp(110px, 26vw, 330px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}
.nf h1 {
  margin-top: 16px;
  font-family: var(--f-disp);
  font-weight: 800;
  font-variation-settings: "wdth" 116, "wght" 860;
  font-size: clamp(32px, 6vw, 80px);
  line-height: 0.98;
  text-transform: uppercase;
}
.nf p { margin-top: 22px; font-size: 15px; line-height: 1.8; color: var(--mut-d); }
.nf .btn { margin-top: 42px; }

/* ─── form status ─── */
.sp-note { font-size: 13.5px; line-height: 1.75; color: var(--mut-d); }
.sp-note b { color: var(--gold); font-weight: 600; }
.btn[disabled] { opacity: .55; pointer-events: none; }

@media (max-width: 900px) {
  .art { grid-template-columns: 1fr; gap: 10px; }
  .art-read { text-align: left; }
  .cs-hero { height: 62vh; }
}

.cs-hero .sv-crumb { color: var(--bone-2); }
.cs-hero .sv-crumb a { color: var(--bone-2); }
.cs-hero .sv-lede { color: var(--bone-2); }
