/* ==========================================================================
   DIGITAL TRIBE — stylesheet
   Premium · editorial · motion-led · dark by default
   Implements design from claude.ai/design handoff bundle.
   ========================================================================== */

/* ---------- tokens --------------------------------------------------------- */
:root {
  --ink:        #0A0A0A;
  --ink-off:    #0E0E0F;
  --ink-char:  #141416;
  --ink-deep:  #1A1A1D;
  --ink-line:  #26262A;

  --bone:      #F4F1EA;
  --bone-dim:  #A8A39A;
  --bone-mute: #6E6A62;

  --flame:     #FF4A1C;
  --flame-hot: #FF6A3C;

  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo:  cubic-bezier(0.87, 0, 0.13, 1);

  --edge:       28px;
}
@media (min-width: 768px)  { :root { --edge: 48px; } }
@media (min-width: 1200px) { :root { --edge: 64px; } }


/* ---------- reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02", "cv11";
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}
::selection { background: var(--flame); color: var(--ink); }
::-webkit-scrollbar { width: 0; height: 0; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.mono   { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace; font-weight: 500; }
.serif  { font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic; font-weight: 400; }
.flame  { color: var(--flame); }
.block  { display: block; }

.edge {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--edge);
}


/* ---------- type scale ----------------------------------------------------- */
.t-mega       { font-size: clamp(4rem, 14vw, 14rem); line-height: 0.86; letter-spacing: -0.045em; font-weight: 500; }
.t-titan      { font-size: clamp(3rem, 9vw, 9rem);    line-height: 0.92; letter-spacing: -0.035em; font-weight: 500; }
.t-hero       { font-size: clamp(2.5rem, 6vw, 6rem);  line-height: 0.96; letter-spacing: -0.03em;  font-weight: 500; }
.t-display    { font-size: clamp(2rem, 4.2vw, 4rem);  line-height: 1;    letter-spacing: -0.025em; font-weight: 500; }
.t-editorial  { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.25; letter-spacing: -0.015em; font-weight: 400; }

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--row  { gap: 12px; }
.eyebrow--mute { color: var(--bone-mute); }
.eyebrow__sep  { color: var(--ink-line); }


/* ---------- atoms ---------------------------------------------------------- */
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--flame);
  vertical-align: middle;
  flex-shrink: 0;
}
.dot--live { animation: pulse 1.6s ease-in-out infinite; box-shadow: 0 0 12px var(--flame); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
.dot-flame { color: var(--flame); }

.pad-y    { padding-block: clamp(80px, 12vw, 180px); }
.pad-y-sm { padding-block: clamp(56px, 8vw, 110px); }

section { position: relative; }

/* Soft grain across the page */
.grain::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 70;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ---------- placeholder — striped, mono-labelled (design signature) -------- */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(244,241,234,0.04) 0px,
      rgba(244,241,234,0.04) 1px,
      transparent 1px,
      transparent 8px
    ),
    var(--ink-deep);
  border: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-mute);
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 700ms var(--ease-apple), border-color 500ms;
}
.placeholder::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
}


/* ---------- buttons -------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  padding: 14px 24px;
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone);
  transition: color 400ms var(--ease-apple), border-color 400ms;
  isolation: isolate;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform 600ms var(--ease-apple);
  z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0%); }

.btn--solid { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--solid::before { background: var(--flame); }
.btn--solid:hover { color: var(--bone); border-color: var(--flame); }

.btn--flame { border-color: var(--flame); color: var(--flame); }
.btn--flame::before { background: var(--flame); }
.btn--flame:hover { color: var(--ink); border-color: var(--flame); }

.btn .arrow {
  display: inline-block;
  transition: transform 400ms var(--ease-apple);
}
.btn:hover .arrow { transform: translateX(4px); }


/* ---------- reveal-on-scroll line masks ------------------------------------ */
.reveal-mask { display: block; overflow: hidden; line-height: 0.92; }
.reveal-mask > [data-r] {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1000ms var(--ease-apple);
  will-change: transform;
}
.reveal-mask.in > [data-r] { transform: translateY(0); }


/* ---------- preloader ------------------------------------------------------ */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 200;
  display: grid; place-items: center;
  transition: opacity 600ms var(--ease-apple), visibility 600ms;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner {
  width: min(86vw, 720px);
  display: grid;
  gap: 22px;
}
.preloader__mark { font-size: 13px; letter-spacing: 0.2em; color: var(--bone-dim); }
.preloader__count {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1; color: var(--bone);
  letter-spacing: -0.02em;
}
.preloader__pct { color: var(--bone-mute); font-size: .35em; margin-left: 10px; }
.preloader__bar { position: relative; height: 1px; background: var(--ink-line); }
.preloader__bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%; background: var(--flame);
  transition: width 220ms linear;
}
.preloader__caption { font-size: 11px; color: var(--bone-mute); letter-spacing: .2em; }


/* ---------- custom cursor -------------------------------------------------- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 150;
  mix-blend-mode: difference;
}
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--bone);
  transition: width 300ms var(--ease-apple), height 300ms var(--ease-apple);
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid var(--bone);
  transition: width 400ms var(--ease-apple), height 400ms var(--ease-apple), background 300ms;
}
.cursor.is-hover .cursor__dot { width: 0; height: 0; }
.cursor.is-hover .cursor__ring {
  width: 52px; height: 52px;
  background: var(--bone);
}
.cursor__label {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: .15em; color: var(--ink);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 240ms var(--ease-apple);
  pointer-events: none;
  white-space: nowrap;
  font-weight: 500;
}
.cursor.is-hover .cursor__label { opacity: 1; }
@media (pointer: coarse) { .cursor { display: none; } }


/* ---------- NAV ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 400ms ease, border-color 400ms ease, padding 400ms ease;
}
.nav.is-condensed {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ink-line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bone);
}
.nav__wordmark { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

.nav__menu {
  display: none;
  gap: 36px;
  align-items: center;
}
.nav__menu a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 300ms;
}
.nav__menu a:hover { color: var(--bone); }

.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__lagos {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

@media (min-width: 980px) {
  .nav__menu  { display: flex; }
  .nav__lagos { display: inline-flex; }
}
@media (max-width: 640px) {
  .nav__right .btn { padding: 12px 18px; font-size: 10px; }
}


/* ---------- HERO ----------------------------------------------------------- */
.hero {
  position: relative;
  padding-top:    clamp(140px, 16vw, 220px);
  padding-bottom: clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.7;
}
.hero__edge { position: relative; z-index: 1; }

.hero__meta {
  display: flex; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(56px, 8vw, 96px);
  flex-wrap: wrap;
}

.hero__title { position: relative; }
.hero__title em { color: var(--flame); }

.hero__sub {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) {
  .hero__sub { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end; }
}
.hero__lede {
  color: var(--bone);
  max-width: 560px;
  margin-top: 16px;
}
.hero__live-col { display: flex; flex-direction: column; gap: 24px; }
.hero__live {
  display: flex; align-items: baseline; gap: 14px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding-block: 20px;
}
.hero__live-tag {
  font-size: 11px; color: var(--bone-mute); letter-spacing: 0.18em;
}
.hero__live-word {
  color: var(--flame); font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); letter-spacing: -0.01em;
  transition: opacity 300ms;
}
.hero__live-word.is-fading { opacity: 0; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  left: var(--edge);
  bottom: 36px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0.7;
}
.hero__scroll .mono { font-size: 10px; letter-spacing: 0.2em; color: var(--bone-mute); }
.hero__scroll-line {
  display: inline-block;
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--bone-mute), transparent);
}
@media (max-width: 720px) { .hero__scroll { display: none; } }


/* ---------- CHANNEL RAIL (marquee) ----------------------------------------- */
.channel-rail {
  padding-block: 32px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; flex: none;
  gap: 80px;
  padding-right: 80px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 28px;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.marquee-item.is-flame { color: var(--flame); }
.marquee-item__sep {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bone-mute);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------- CAPABILITIES --------------------------------------------------- */
.caps__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.caps__title { max-width: 1100px; }
.caps__title em { color: var(--flame); }

.caps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 980px) {
  .caps__head { grid-template-columns: 1fr 2fr; align-items: end; gap: 48px; }
  .caps__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
}

.caps__list { display: grid; }
.cap {
  border-top: 1px solid var(--ink-line);
  cursor: pointer;
  padding: clamp(20px, 2.4vw, 32px) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 24px;
  position: relative;
  transition: padding-left 500ms var(--ease-apple);
}
.cap:last-child { border-bottom: 1px solid var(--ink-line); }
.cap.is-active { padding-left: 24px; }
.cap::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 2px;
  background: var(--flame);
  transition: width 500ms var(--ease-apple);
}
.cap.is-active::before { width: 12px; }

.cap__n {
  font-size: 12px;
  color: var(--bone-mute);
  letter-spacing: 0.18em;
  transition: color 300ms;
}
.cap.is-active .cap__n { color: var(--flame); }

.cap__title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1;
  color: var(--bone-mute);
  transition: color 400ms;
}
.cap.is-active .cap__title,
.cap:hover .cap__title { color: var(--bone); }

.cap__tag {
  font-size: 10px;
  color: var(--bone-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 720px) { .cap__tag { display: none; } }

.caps__detail {
  position: sticky;
  top: 120px;
  align-self: start;
  background: var(--ink-off);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 720px) { .caps__detail { position: relative; top: 0; } }

.caps__detail-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.caps__index { font-size: 11px; letter-spacing: 0.18em; color: var(--flame); }
.caps__type  { font-size: 10px; letter-spacing: 0.18em; color: var(--bone-mute); }
.caps__visual { aspect-ratio: 16/10; }
.caps__copy {
  color: var(--bone-dim);
  font-size: 17px;
  line-height: 1.5;
  max-width: 540px;
}
.caps__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--bone-dim);
}


/* ---------- WORK — portfolio by request (used on /work.html) ------------ */
.work__title { margin-top: 16px; }
.work__title em, .work__title .serif { color: var(--bone); }
.work__title .dot-flame { color: var(--flame); }

.work__request {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 960px) {
  .work__request { grid-template-columns: 1.4fr 1fr; gap: clamp(48px, 6vw, 96px); }
}

.work__request-body p.t-editorial {
  color: var(--bone);
  max-width: 38ch;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.work__request-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--ink-line);
  background: var(--ink-off);
  border-radius: 6px;
  position: sticky;
  top: 120px;
}
@media (max-width: 959px) { .work__request-cta { position: relative; top: 0; } }
.work__request-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.work__request-link {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--bone);
  word-break: break-word;
  border-bottom: 1px solid transparent;
  transition: color 400ms var(--ease-apple);
}
.work__request-link:hover { color: var(--flame); }
.work__request-link .serif { color: var(--bone); font-weight: 400; }
.work__request-link:hover .serif { color: var(--flame); }
.work__request-phone {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 12px;
}
.work__request-phone:hover { color: var(--flame); }
.work__request-btn { margin-top: 8px; align-self: flex-start; }


/* ---------- PHILOSOPHY ----------------------------------------------------- */
.phil {
  background: var(--ink-off);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.phil__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 880px) {
  .phil__grid { grid-template-columns: 1fr 1.6fr; }
}
.phil__eyebrow { margin-bottom: 24px; }
.phil__sticky {
  position: sticky;
  top: 140px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.phil__visual { aspect-ratio: 3 / 4; }
.phil__hq {
  display: flex; flex-direction: column; gap: 4px;
}
.phil__hq .mono { font-size: 11px; color: var(--bone-mute); letter-spacing: 0.16em; text-transform: uppercase; }
.phil__hq span:last-child { font-size: 16px; }

.phil__title { margin-bottom: 48px; }
.phil__title em { color: var(--flame); }
.phil__title-mute { color: var(--bone-mute); }

.phil__copy {
  display: grid; gap: 28px;
  max-width: 640px;
}
.phil__copy p:not(.t-editorial) {
  font-size: 17px;
  color: var(--bone-dim);
  line-height: 1.6;
}

.phil__numbers {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 640px;
}
.phil__num {
  border-top: 1px solid var(--ink-line);
  padding-top: 16px;
}
.phil__num-k {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--bone);
}
.phil__num-v {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-mute);
}


/* ---------- CONTACT -------------------------------------------------------- */
.contact__eyebrow { margin-bottom: 32px; }
.contact__mail {
  display: block;
  position: relative;
  padding-block: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.contact__mail-inner {
  display: flex; align-items: baseline; gap: 24px;
  justify-content: space-between; flex-wrap: wrap;
}
.contact__line {
  transition: color 600ms var(--ease-apple);
  color: var(--bone);
}
.contact__mail:hover .contact__line { color: var(--flame); }
.contact__tld { color: var(--bone); }
.contact__mail:hover .contact__tld { color: var(--flame); }

.contact__arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--flame);
  color: var(--ink);
  font-size: 32px;
  transition: transform 600ms var(--ease-apple);
  flex: none;
}
.contact__mail:hover .contact__arrow {
  transform: rotate(45deg) scale(1.1);
}

.contact__meta {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px)  { .contact__meta { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1100px) { .contact__meta { grid-template-columns: repeat(4, 1fr); } }

.contact__col { border-top: 1px solid var(--ink-line); padding-top: 20px; }
.contact__col-title {
  font-size: 11px; color: var(--bone-mute); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 16px;
}
.contact__col ul { display: flex; flex-direction: column; gap: 4px; }
.contact__col li { font-size: 16px; color: var(--bone); }
.contact__col a {
  color: var(--bone);
  transition: color 300ms;
  border-bottom: 1px solid transparent;
}
.contact__col a:hover { color: var(--flame); border-bottom-color: var(--flame); }


/* ---------- FOOTER --------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(56px, 6vw, 80px);
}
.footer__wordmark-row {
  margin-bottom: clamp(56px, 8vw, 120px);
  display: flex; align-items: flex-end; gap: 24px;
  flex-wrap: wrap; justify-content: space-between;
}
.footer__wordmark {
  font-size: clamp(4rem, 18vw, 18rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin: 0;
}
.footer__status {
  display: flex; flex-direction: column; gap: 8px; padding-bottom: 12px;
}
.footer__status .mono {
  font-size: 11px; letter-spacing: 0.18em; color: var(--bone-mute);
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.footer__status-sub { color: var(--bone-mute); }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-line);
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__col-title {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--bone-mute); margin-bottom: 16px;
  text-transform: uppercase;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 15px; color: var(--bone);
  transition: color 200ms;
}
.footer__col a:hover { color: var(--flame); }

.footer__base {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer__base .mono { font-size: 11px; color: var(--bone-mute); letter-spacing: 0.16em; }


/* ==========================================================================
   CSS ART — case study + capability detail panel visuals
   ========================================================================== */
.art {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  background: var(--ink-deep);
  transition: border-color 500ms var(--ease-apple);
}
.case-tile:hover .art, .case-deep:hover .art { border-color: var(--bone-mute); }

.art__chip, .art__tag {
  position: absolute;
  top: 16px;
  z-index: 4;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.art__chip {
  left: 16px;
  color: var(--bone);
  padding: 5px 10px;
  background: rgba(10, 10, 10, 0.65);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
}
.art__tag { right: 16px; color: var(--bone-mute); }


/* ---- 01 FirstBank · programmatic orbits ---- */
.art--firstbank { background: radial-gradient(ellipse at 50% 55%, #181520, var(--ink) 70%); }
.art--firstbank .art__orbit {
  position: absolute;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  aspect-ratio: 1;
  width: 26%;
  animation: spin 32s linear infinite;
}
.art--firstbank .art__orbit::before {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--flame);
  box-shadow: 0 0 18px var(--flame);
}
.art--firstbank .art__orbit--2 { width: 48%; animation-duration: 52s; animation-direction: reverse; }
.art--firstbank .art__orbit--2::before { background: var(--bone); box-shadow: 0 0 12px var(--bone); }
.art--firstbank .art__orbit--3 { width: 72%; animation-duration: 80s; opacity: 0.5; }
.art--firstbank .art__orbit--3::before { background: var(--flame-hot); box-shadow: 0 0 10px var(--flame-hot); }
.art--firstbank .art__core {
  position: absolute;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  width: 6%; aspect-ratio: 1;
  border-radius: 999px;
  background: var(--bone);
  box-shadow: 0 0 60px var(--bone), 0 0 16px var(--bone);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }


/* ---- 02 MTN · Y'ello Star ---- */
.art--mtn { background: radial-gradient(circle at 50% 45%, #1c1a14, var(--ink) 70%); }
.art--mtn .art__star {
  position: absolute;
  left: 50%; top: 50%;
  width: 52%; aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(0deg);
  background: linear-gradient(180deg, #ffd86b, #f4a51c);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: starSpin 20s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255, 216, 107, 0.25));
}
.art--mtn .art__ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78%; aspect-ratio: 1;
  border: 1px dashed rgba(244,241,234,0.18);
  border-radius: 999px;
  animation: spin 60s linear infinite;
}
@keyframes starSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }


/* ---- 03 Guinness · pint silhouette ---- */
.art--guinness { background: radial-gradient(ellipse at 50% 110%, #2a1a0c, var(--ink) 65%); }
.art--guinness .art__pint {
  position: absolute;
  left: 50%; bottom: 12%;
  transform: translateX(-50%);
  width: 38%; height: 76%;
  border: 1.5px solid var(--bone-mute);
  border-radius: 4px 4px 16px 16px / 4px 4px 24px 24px;
  overflow: hidden;
}
.art--guinness .art__pint-body {
  position: absolute; inset: 18% 0 0 0;
  background: linear-gradient(180deg, #1a0f06 0%, #050300 100%);
}
.art--guinness .art__pint-foam {
  position: absolute; top: 0; left: 0; right: 0; height: 24%;
  background: radial-gradient(ellipse at 30% 60%, #f4f1ea 0%, #cfc6b3 60%, #b0a691 100%);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}
.art--guinness::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; bottom: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--flame), transparent);
}


/* ---- 04 Stanbic · city skyline + acquisition target ---- */
.art--stanbic { background: linear-gradient(180deg, #0d1418 0%, var(--ink) 80%); }
.art--stanbic .art__skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  display: flex; align-items: flex-end; gap: 4px;
  padding: 0 8%;
}
.art--stanbic .art__skyline span {
  flex: 1;
  background: linear-gradient(180deg, var(--bone-mute), #1a1a1d);
  border-top: 1px solid var(--bone-mute);
}
.art--stanbic .art__skyline span:nth-child(1) { height: 42%; }
.art--stanbic .art__skyline span:nth-child(2) { height: 68%; }
.art--stanbic .art__skyline span:nth-child(3) { height: 54%; }
.art--stanbic .art__skyline span:nth-child(4) {
  height: 88%;
  background: linear-gradient(180deg, var(--flame), #1a1a1d);
  border-top-color: var(--flame);
  box-shadow: 0 0 30px rgba(255,74,28,0.4);
}
.art--stanbic .art__skyline span:nth-child(5) { height: 60%; }
.art--stanbic .art__skyline span:nth-child(6) { height: 76%; }
.art--stanbic .art__skyline span:nth-child(7) { height: 48%; }
.art--stanbic .art__skyline span:nth-child(8) { height: 64%; }
.art--stanbic .art__target {
  position: absolute;
  left: 50%; top: 30%;
  transform: translate(-50%, -50%);
  width: 16%; aspect-ratio: 1;
  border: 1px solid var(--flame);
  border-radius: 999px;
  animation: pulseTarget 2.4s ease-in-out infinite;
}
.art--stanbic .art__target::before, .art--stanbic .art__target::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--flame);
  border-radius: 999px;
  opacity: 0.45;
  transform: scale(1.6);
}
.art--stanbic .art__target::after { transform: scale(2.4); opacity: 0.2; }
@keyframes pulseTarget {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}


/* ---- 05 Hennessy · editorial bottle ---- */
.art--hennessy { background: radial-gradient(ellipse at 50% 50%, #2a1b0a, var(--ink) 75%); }
.art--hennessy .art__bottle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 28%; height: 78%;
  display: flex; flex-direction: column;
  align-items: center;
}
.art--hennessy .art__bottle-neck {
  width: 30%; height: 22%;
  background: #0f0a05;
  border: 1px solid #3a2a14;
  border-bottom: 0;
}
.art--hennessy .art__bottle-body {
  position: relative;
  width: 100%; flex: 1;
  background: linear-gradient(180deg, #d68a3d 0%, #9b5a1e 65%, #4a2a0e 100%);
  border: 1px solid #4a2a0e;
  border-radius: 6px 6px 8px 8px;
  box-shadow: inset 6px 0 12px rgba(255,255,255,0.18),
              inset -6px 0 12px rgba(0,0,0,0.35),
              0 24px 50px rgba(0,0,0,0.5);
}
.art--hennessy .art__bottle-mono {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--bone);
  z-index: 2;
}
.art--hennessy .art__rule {
  position: absolute;
  left: 8%; right: 8%; top: 16%;
  height: 1px;
  background: var(--bone-mute);
  opacity: 0.4;
}


/* ==========================================================================
   SUBPAGE LAYOUT — used on /work.html and /journal.html
   ========================================================================== */
.subpage {
  padding-top: clamp(140px, 14vw, 200px);
  padding-bottom: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--ink-line);
}
.subpage__meta {
  display: flex; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
  flex-wrap: wrap;
}
.subpage__back {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
  transition: color 300ms;
  display: inline-flex; align-items: center; gap: 6px;
}
.subpage__back:hover { color: var(--bone); }
.subpage__crumb {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.subpage__title {
  margin: 0;
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--bone);
}
.subpage__title em { color: var(--flame); }
.subpage__lede {
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: var(--bone-dim);
}


/* ==========================================================================
   /work.html — expanded case studies
   ========================================================================== */
.cases { padding-block: clamp(80px, 10vw, 140px); }
.case-deep {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(80px, 10vw, 140px);
  margin-bottom: clamp(80px, 10vw, 140px);
  border-bottom: 1px solid var(--ink-line);
}
.case-deep:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
@media (min-width: 980px) {
  .case-deep { grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 5vw, 96px); }
  .case-deep:nth-child(even) > .case-deep__media { order: 2; }
}
.case-deep__media {
  aspect-ratio: 4 / 3;
  position: sticky;
  top: 120px;
}
@media (max-width: 979px) {
  .case-deep__media { position: relative; top: 0; aspect-ratio: 16 / 10; }
}
.case-deep__body { display: flex; flex-direction: column; gap: 28px; }
.case-deep__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-line);
}
.case-deep__client {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--flame); text-transform: uppercase;
}
.case-deep__sector {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--bone-mute); text-transform: uppercase;
}
.case-deep__title {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--bone);
}
.case-deep__blocks {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}
.case-deep__block { display: grid; gap: 6px; }
.case-deep__block-tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.case-deep__block-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--bone-dim);
}
.case-deep__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  margin-top: 12px;
  border-top: 1px solid var(--ink-line);
}
.case-deep__metric { display: grid; gap: 4px; }
.case-deep__metric-k {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.case-deep__metric .flame { color: var(--flame); }
.case-deep__metric-l {
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--bone-mute); text-transform: uppercase;
}
.case-deep__platforms {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}


/* ==========================================================================
   /journal.html — full article list
   ========================================================================== */
.journal-page { padding-block: clamp(80px, 10vw, 140px); }
.journal-page__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-line);
}
.j-filter {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--bone-dim);
  cursor: pointer;
  transition: all 300ms var(--ease-apple);
}
.j-filter:hover { color: var(--bone); border-color: var(--bone-mute); }
.j-filter.is-active { background: var(--flame); color: var(--ink); border-color: var(--flame); }

.journal-page__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 40px);
}
@media (min-width: 760px)  { .journal-page__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .journal-page__list { grid-template-columns: repeat(3, 1fr); } }


/* ==========================================================================
   HOMEPAGE TEASERS — Work + Journal compact link sections
   ========================================================================== */
.work-teaser__head {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.work-teaser__head .work__title { margin-top: 16px; }
.work-teaser__head .work__title em,
.work-teaser__head .work__title .serif { color: var(--bone); }
.work-teaser__head .work__title .dot-flame { color: var(--flame); }

.work-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
}
@media (min-width: 760px)  { .work-teaser__grid { grid-template-columns: repeat(5, 1fr); } }

.case-tile {
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
}
.case-tile__art { aspect-ratio: 4 / 5; }
.case-tile__meta {
  display: flex; justify-content: space-between;
  font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--bone-mute);
  text-transform: uppercase;
  gap: 8px;
}
.case-tile__client { color: var(--flame); }
.case-tile:hover .case-tile__client { color: var(--bone); }

.work-teaser__foot {
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.work-teaser__foot p {
  margin: 0; max-width: 50ch;
  color: var(--bone-dim);
  font-size: 14.5px;
}

/* Journal teaser */
.journal-teaser__head {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.journal-teaser__title { margin-top: 16px; }
.journal-teaser__title em { color: var(--flame); }

.journal-teaser__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
@media (min-width: 880px) {
  .journal-teaser__feature { grid-template-columns: 1.1fr 1fr; }
}
.journal-teaser__media { aspect-ratio: 4 / 3; }
.journal-teaser__body { display: flex; flex-direction: column; gap: 18px; }
.journal-teaser__meta {
  display: flex; gap: 20px;
  font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--bone-mute);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-line);
}
.journal-teaser__meta .flame { color: var(--flame); }
.journal-teaser__heading {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--bone);
  transition: color 300ms;
}
.journal-teaser__feature:hover .journal-teaser__heading { color: var(--flame); }
.journal-teaser__lede {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}
.journal-teaser__byline {
  font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--bone-mute); text-transform: uppercase;
}


/* ==========================================================================
   CAPABILITY DETAIL ART — bespoke visuals per capability
   ========================================================================== */
.caps__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-deep);
  border: 1px solid var(--ink-line);
  color: var(--bone);
}
.caps__visual .art {
  position: absolute; inset: 0;
  border: 0;
  background: transparent;
}

/* 0 Programmatic — node graph */
.art--cap-programmatic {
  background: radial-gradient(ellipse at 50% 60%, #18141d, var(--ink) 80%);
}
.art--cap-programmatic .art__node {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--bone);
  border-radius: 999px;
}
.art--cap-programmatic .art__node       { top: 30%; left: 22%; }
.art--cap-programmatic .art__node--2    { top: 60%; left: 38%; background: var(--flame); box-shadow: 0 0 14px var(--flame); }
.art--cap-programmatic .art__node--3    { top: 30%; left: 62%; }
.art--cap-programmatic .art__node--4    { top: 70%; left: 80%; }
.art--cap-programmatic .art__edge {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bone-mute), transparent);
}
.art--cap-programmatic .art__edge       { left: 22%; top: 30%; width: 40%; transform: rotate(20deg); transform-origin: left center; }
.art--cap-programmatic .art__edge--2    { left: 38%; top: 60%; width: 30%; transform: rotate(-22deg); transform-origin: left center; background: linear-gradient(90deg, transparent, var(--flame), transparent); }
.art--cap-programmatic .art__edge--3    { left: 62%; top: 30%; width: 22%; transform: rotate(40deg); transform-origin: left center; }

/* 1 Rich Media — banner with play */
.art--cap-richmedia {
  background: radial-gradient(circle at 30% 30%, #1a1a1c, var(--ink) 70%);
}
.art--cap-richmedia .art__banner {
  position: absolute;
  inset: 22%;
  border: 1px solid var(--bone-mute);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255,74,28,0.1), transparent 60%);
}
.art--cap-richmedia .art__banner::before {
  content: "";
  position: absolute;
  top: -1px; left: 20%; right: 20%; height: 2px;
  background: var(--flame);
}
.art--cap-richmedia .art__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--flame);
  box-shadow: 0 0 0 0 rgba(255,74,28,0.5);
  animation: pulseRing 2.4s ease-out infinite;
}
.art--cap-richmedia .art__play::after {
  content: "";
  position: absolute;
  left: 56%; top: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,74,28,0.5); }
  100% { box-shadow: 0 0 0 40px rgba(255,74,28,0); }
}

/* 2 Performance — bars climbing */
.art--cap-performance {
  background: linear-gradient(180deg, #14181a, var(--ink) 80%);
}
.art--cap-performance .art__bar {
  position: absolute;
  bottom: 18%;
  width: 9%;
  background: linear-gradient(180deg, var(--bone-mute), #1a1a1d);
  border-top: 1px solid var(--bone-mute);
}
.art--cap-performance .art__bar       { left: 18%; height: 30%; }
.art--cap-performance .art__bar--2    { left: 32%; height: 42%; }
.art--cap-performance .art__bar--3    { left: 46%; height: 56%; }
.art--cap-performance .art__bar--4    { left: 60%; height: 68%; }
.art--cap-performance .art__bar--5    { left: 74%; height: 78%; background: linear-gradient(180deg, var(--flame), #1a1a1d); border-top-color: var(--flame); box-shadow: 0 0 30px rgba(255,74,28,0.4); }
.art--cap-performance .art__trend {
  position: absolute;
  left: 18%; bottom: 48%;
  width: 64%; height: 1px;
  background: linear-gradient(90deg, var(--bone-mute), var(--flame));
  transform: rotate(-22deg);
  transform-origin: left center;
}

/* 3 Creative & Studio — geometric composition */
.art--cap-creative {
  background: linear-gradient(135deg, #1d1a14, var(--ink) 70%);
}
.art--cap-creative .art__shape {
  position: absolute;
}
.art--cap-creative .art__shape--c {
  left: 16%; top: 22%;
  width: 30%; aspect-ratio: 1;
  background: var(--flame);
  border-radius: 999px;
}
.art--cap-creative .art__shape--t {
  right: 18%; top: 18%;
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--bone);
}
.art--cap-creative .art__shape--s {
  left: 36%; bottom: 14%;
  width: 24%; aspect-ratio: 1;
  background: transparent;
  border: 2px solid var(--bone);
  transform: rotate(45deg);
}

/* 4 Insights — wave */
.art--cap-insights {
  background: radial-gradient(circle at 50% 50%, #14181d, var(--ink) 75%);
  color: var(--flame);
}
.art--cap-insights .art__wave {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* 5 Partnerships — pills */
.art--cap-partnerships {
  background: radial-gradient(ellipse at 50% 50%, #181420, var(--ink) 75%);
}
.art--cap-partnerships .art__pill {
  position: absolute;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: rgba(244,241,234,0.04);
  color: var(--bone);
}
.art--cap-partnerships .art__pill:nth-child(1) { top: 22%; left: 14%; }
.art--cap-partnerships .art__pill:nth-child(2) { top: 38%; right: 14%; color: var(--flame); border-color: var(--flame); }
.art--cap-partnerships .art__pill:nth-child(3) { bottom: 36%; left: 22%; }
.art--cap-partnerships .art__pill:nth-child(4) { bottom: 18%; right: 18%; }
.art--cap-partnerships .art__link {
  position: absolute;
  inset: 30% 24%;
  border: 1px dashed var(--bone-mute);
  border-radius: 999px;
  opacity: 0.4;
  animation: spin 60s linear infinite;
}


/* ==========================================================================
   PROOF · TRUST · OPERATIONAL SECTIONS
   Added in the "credibility evolution" pass.
   ========================================================================== */

/* ---------- TRUSTED ROSTER — categorised brand wall + footer stats ------ */
.roster {
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(80px, 10vw, 140px);
}
.roster__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(48px, 6vw, 88px);
  align-items: end;
}
@media (min-width: 980px) {
  .roster__head { grid-template-columns: 1.8fr 1fr; gap: 60px; }
}
.roster__head-left { display: grid; gap: 22px; }
.roster__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--bone);
  text-wrap: balance;
}
.roster__title em { color: var(--flame); }
.roster__lede {
  margin: 0;
  font-size: 13.5px;
  color: var(--bone-dim);
  line-height: 1.55;
  max-width: 40ch;
}

/* hairline brand grid */
.roster__wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
  list-style: none;
  padding: 0; margin: 0;
}
@media (min-width: 600px)  { .roster__wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .roster__wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .roster__wall { grid-template-columns: repeat(6, 1fr); } }

.brand {
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 28px);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone-mute);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  min-height: 88px;
  cursor: default;
  transition: color 300ms var(--ease-apple), background 400ms var(--ease-apple);
}
.brand:hover { color: var(--bone); background: var(--ink-off); }
.brand--more {
  color: var(--bone-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.brand--more:hover { color: var(--flame); background: transparent; }

.roster__industries {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex; flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bone-mute);
}
.roster__industries .mono { display: inline-flex; gap: 4px; }
.roster__industries b { color: var(--bone); font-weight: 500; }


/* ---------- PLATFORM STACK ----------------------------------------------- */
.stack {
  background: var(--ink-off);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.stack__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (min-width: 980px) {
  .stack__head { grid-template-columns: 2fr 1fr; gap: 60px; align-items: end; }
}
.stack__title em { color: var(--flame); }
.stack__lede {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.55;
  max-width: 38ch;
}
.stack__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px)  { .stack__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .stack__grid { grid-template-columns: repeat(3, 1fr); } }

.plat {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 400ms var(--ease-apple), background 400ms;
  min-height: 240px;
}
.plat:hover { border-color: var(--bone-mute); }
.plat__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
}
.plat__name {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.plat__role {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
}
.plat__copy {
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.5;
  flex: 1;
}
.plat__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.plat--owned {
  background:
    linear-gradient(135deg, rgba(255,74,28,0.08) 0%, transparent 60%),
    var(--ink);
  border-color: rgba(255,74,28,0.4);
}
.plat--owned .plat__name { color: var(--bone); }
.plat--owned .plat__role { color: var(--flame); }
.plat--owned:hover { border-color: var(--flame); }

.stack__foot {
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.stack__foot .mono {
  font-size: 11px; color: var(--bone-mute); letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* ---------- INSIGHTS / JOURNAL ------------------------------------------- */
.journal__head {
  display: flex; justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.journal__title { margin-top: 16px; }
.journal__title em { color: var(--flame); }

.journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 40px);
}
@media (min-width: 760px)  { .journal__grid { grid-template-columns: repeat(3, 1fr); } }

.article {
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}
.article__no {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
}
.article__media { aspect-ratio: 4 / 3; }
.article__meta {
  display: flex; justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--bone-mute);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink-line);
  gap: 12px; flex-wrap: wrap;
}
.article__cat { color: var(--flame); }
.article__title {
  margin: 4px 0 0;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--bone);
  transition: color 300ms var(--ease-apple);
}
.article:hover .article__title { color: var(--flame); }
.article__lede {
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.5;
}
.article__byline { font-size: 10px; letter-spacing: 0.16em; color: var(--bone-mute); margin-top: auto; }


/* ---------- CONTACT — additional channels + offices ---------------------- */
.contact__channels {
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .contact__channels { grid-template-columns: repeat(3, 1fr); } }
.contact__channel {
  display: grid; gap: 8px;
}
.contact__channel-tag {
  font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.contact__channel-mail {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bone);
  transition: color 300ms;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 6px;
}
.contact__channel-mail:hover { color: var(--flame); border-bottom-color: var(--flame); }

.contact__col-name { font-size: 17px; color: var(--bone); }
.contact__col-role {
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--bone-mute); text-transform: uppercase;
  margin-bottom: 12px;
}

.contact__offices {
  margin-top: clamp(56px, 6vw, 96px);
  padding-top: 32px;
  border-top: 1px solid var(--ink-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
}
@media (min-width: 880px) { .contact__offices { grid-template-columns: 1fr 1fr; } }
.office { display: flex; flex-direction: column; gap: 16px; }
.office__pin {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  text-transform: uppercase;
}
.office__addr {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0;
}
.office__list { display: grid; gap: 8px; }
.office__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: 14.5px;
  color: var(--bone);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-line);
}
.office__list .mono { font-size: 10px; letter-spacing: 0.18em; color: var(--bone-mute); }
.office__list a { color: var(--bone); border-bottom: 1px solid var(--bone-mute); }
.office__list a:hover { color: var(--flame); border-bottom-color: var(--flame); }
.office__map {
  aspect-ratio: 4 / 2.4;
  margin-top: 6px;
}


/* ---------- FOOTER — two-office block ------------------------------------ */
.footer__offices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 40px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--ink-line);
}
@media (min-width: 760px) { .footer__offices { grid-template-columns: repeat(3, 1fr); } }
.footer__office { display: grid; gap: 6px; }
.footer__office-tag {
  font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--flame); text-transform: uppercase;
}
.footer__office p {
  margin: 0;
  font-size: 15px;
  color: var(--bone);
}
.footer__office p.mono {
  font-size: 11px;
  color: var(--bone-mute);
  letter-spacing: 0.14em;
}
.footer__office a:hover { color: var(--flame); }


/* ==========================================================================
   "THE TRIBE" — leadership grid (replaces Studio gallery)
   ========================================================================== */
.tribe {
  background: var(--ink-off);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.tribe__head {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 1100px;
}
.tribe__title em { color: var(--flame); }

.tribe__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
@media (min-width: 760px)  { .tribe__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .tribe__grid { grid-template-columns: repeat(5, 1fr); } }

.member {
  display: flex; flex-direction: column;
  gap: 14px;
}
.member__photo {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.member__meta { display: grid; gap: 4px; }
.member__name {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.member__role {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--bone-mute);
  text-transform: uppercase;
}

.tribe__foot {
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; align-items: center;
}
.tribe__roles {
  display: flex; flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--bone-mute);
}
.tribe__roles b { color: var(--bone); font-weight: 500; }
.tribe__careers {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--flame);
  text-transform: uppercase;
  border-bottom: 1px solid var(--flame);
  padding-bottom: 4px;
  transition: opacity 300ms;
}
.tribe__careers:hover { opacity: 0.7; }


/* ==========================================================================
   PHILOSOPHY — integrated MD quote (merged founder note)
   ========================================================================== */
.phil__quote {
  margin: 0 0 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.phil__quote .t-editorial {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.32;
  color: var(--bone);
  font-style: normal;
}
.phil__mark {
  display: inline-block;
  color: var(--flame);
  font-size: 1.3em;
  line-height: 0;
  vertical-align: -0.06em;
}
.phil__quote-meta {
  margin-top: 22px;
  display: flex; flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 11px;
  color: var(--bone-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.phil__meta-sep { color: var(--ink-line); }
.phil__link { color: var(--bone); border-bottom: 1px solid var(--bone-mute); }
.phil__link:hover { color: var(--flame); border-bottom-color: var(--flame); }

.phil__hq-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--bone);
}
.phil__hq--addr { margin-top: 8px; }


/* ---------- single office layout ---------------------------------------- */
.office--solo { max-width: 720px; }


/* ==========================================================================
   TESTIMONIALS — horizontal scroll-snap row of client voices
   ========================================================================== */
.testimonials {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.testimonials__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 980px) {
  .testimonials__head { grid-template-columns: 1.6fr 1fr; gap: 60px; }
}
.testimonials__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--bone);
  text-wrap: balance;
}
.testimonials__title em { color: var(--flame); }
.testimonials__lede {
  margin: 0;
  font-size: 13.5px;
  color: var(--bone-dim);
  line-height: 1.55;
  max-width: 40ch;
}

/* Scroll row + right-edge fade hint */
.testimonials__viewport {
  position: relative;
}
.testimonials__row {
  list-style: none;
  display: flex;
  gap: clamp(16px, 1.4vw, 24px);
  padding: 4px var(--edge) 24px var(--edge);
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--edge);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.testimonials__row:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 6px;
}
.testimonials__row::-webkit-scrollbar { height: 3px; background: transparent; }
.testimonials__row::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 2px; }
.testimonials__row:hover::-webkit-scrollbar-thumb { background: var(--bone-mute); }

.testimonial {
  flex: 0 0 clamp(280px, 28vw, 380px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 32px);
  background: var(--ink-off);
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  transition: border-color 400ms var(--ease-apple), background 400ms var(--ease-apple);
}
.testimonial:hover {
  border-color: var(--bone-mute);
  background: var(--ink-char);
}

/* Quote badge — circular icon, top-left */
.testimonial__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  margin-bottom: 22px;
  flex-shrink: 0;
}
.testimonial__mark svg {
  display: block;
  fill: var(--flame);
}

.testimonial__body {
  margin: 0 0 24px 0;
  flex: 1;
  color: var(--bone);
  font-size: 14.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.testimonial__by {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-line);
}
.testimonial__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.testimonial__role {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--bone-mute);
  text-transform: uppercase;
  line-height: 1.45;
}

/* Right-edge fade — hints there's more to scroll */
.testimonials::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: clamp(40px, 6vw, 96px);
  background: linear-gradient(90deg, transparent 0%, var(--ink) 80%);
  pointer-events: none;
  z-index: 2;
}
.testimonials { position: relative; }

.testimonials__foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between;
  gap: 16px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--bone-mute);
  text-transform: uppercase;
}


/* ==========================================================================
   FOCUS STATES — keyboard accessibility
   ========================================================================== */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
.case-tile:focus-visible,
.cap:focus-visible,
.j-filter:focus-visible,
.nav__menu a:focus-visible,
.nav__cta:focus-visible,
.subpage__back:focus-visible {
  outline-offset: 4px;
}
a.article:focus-visible,
.article a:focus-visible { outline-offset: 6px; }


/* ---------- reduced motion ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-mask > [data-r] { transform: translateY(0) !important; }
  .cursor { display: none; }
  .marquee-track { animation: none !important; }
}
