:root {
  --paper: #f6f6f2;
  --white: #ffffff;
  --ink: #090909;
  --muted: #77776f;
  --line: rgba(9, 9, 9, 0.22);
  --line-light: rgba(255, 255, 255, 0.24);
  --acid: #eaff00;
  --header-h: 90px;
  --gutter: 3.5vw;
  --marquee-gap: 1.25vw;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --project-accent: var(--acid);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  padding: 12px 16px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  background: var(--acid);
  transform: translateY(-102%);
  transition: transform 0.8s var(--ease);
}

body.is-loading .page-curtain {
  transform: translateY(0);
}

body.is-leaving .page-curtain {
  transform: translateY(0);
  transition-duration: 0.43s;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 0 var(--gutter);
  background: var(--white);
  color: var(--ink);
  transition: transform 0.3s ease, background-color 0.16s ease, color 0.16s ease;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

body[data-header="overlay"] .site-header:not(.is-solid) {
  background: transparent;
  color: var(--white);
}

.site-header.is-solid {
  background: var(--white);
  color: var(--ink);
}

body.menu-open .site-header {
  transform: translateY(0);
  background: transparent;
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 145px;
  height: auto;
  transition: filter 0.16s ease;
}

.brand-logo--symbol {
  display: none;
  width: 42px;
}

.brand-logo--wordmark,
.header-mark {
  display: none;
}

.tagline {
  justify-self: start;
  overflow: hidden;
  white-space: nowrap;
  font-size: clamp(16px, 1.55vw, 24px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.tagline span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.65s var(--ease);
  transition-delay: calc(0.14s + var(--i) * 0.017s);
}

body.is-loading .tagline span {
  opacity: 0;
  transform: translateY(120%);
}

.header-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.15vw, 38px);
  font-size: 14px;
}

.header-nav a {
  position: relative;
  padding: 8px 0;
}

.header-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

body[data-header="overlay"] .site-header:not(.is-solid) .brand-logo {
  filter: invert(1);
}

body.menu-open .brand-logo {
  filter: none !important;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  margin-right: -5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 3px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.menu-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body.menu-open .menu-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-toggle::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  border: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.29);
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.menu-open .menu-scrim {
  pointer-events: auto;
  opacity: 1;
}

.menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 110;
  width: min(34vw, 480px);
  min-width: 410px;
  min-height: 100svh;
  padding: 145px 38px 42px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  background: var(--acid);
  color: var(--ink);
  transform: translateX(102%);
  transition: transform 0.7s var(--ease);
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-nav {
  display: flex;
  flex-direction: column;
}

.menu-nav a {
  width: fit-content;
  font-size: clamp(45px, 4.2vw, 68px);
  line-height: 1.14;
  letter-spacing: -0.055em;
  transition: transform 0.3s var(--ease);
}

.menu-nav a:hover,
.menu-nav a:focus-visible,
.menu-nav a[aria-current="page"] {
  transform: translateX(13px);
}

.menu-nav a[aria-current="page"]::before {
  content: "•";
  margin-right: 10px;
  font-size: 0.55em;
  vertical-align: 0.18em;
}

.menu-meta {
  display: grid;
  gap: 30px;
  font-size: 16px;
}

.menu-meta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-meta small,
.eyebrow,
.section-label,
.micro-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-meta small {
  margin-bottom: 5px;
  opacity: 0.58;
}

main {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.button,
.pill-link {
  min-height: 44px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.button:hover,
.pill-link:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.button--acid {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button--acid:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.video-placeholder-section {
  padding: calc(var(--header-h) + var(--gutter)) var(--gutter) var(--gutter);
  background: var(--white);
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: clamp(540px, calc(100svh - var(--header-h) - (var(--gutter) * 2)), 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #262626;
  background: #0d0d0d;
  color: var(--white);
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 8vw 8vw;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  width: min(62vw, 950px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.video-placeholder__meta {
  position: absolute;
  inset: 22px 24px auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.video-placeholder__center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.video-placeholder__center p,
.video-placeholder > small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-placeholder__play {
  width: 80px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
}

.video-placeholder__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}

.video-placeholder__mark {
  position: absolute;
  z-index: 1;
  width: min(58vw, 890px);
  opacity: 0.08;
  filter: invert(1);
}

.video-placeholder > small {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  color: #8d8d87;
}

.project-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.project-media.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project-card:hover .project-media.has-image img {
  transform: scale(1.025);
}

.project-art {
  min-height: 360px;
  background: #111;
  color: var(--white);
}

.project-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent 36%);
}

.art-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 9vw 9vw;
}

.art-shape {
  position: absolute;
  display: block;
  transition: transform 0.8s var(--ease), border-radius 0.8s var(--ease);
}

.art-code {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.art-word {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(58%, 510px);
  aspect-ratio: 2007.272 / 1021.3333;
  display: block;
  background: currentColor;
  -webkit-mask: url("vizart-symbol.svg") center / contain no-repeat;
  mask: url("vizart-symbol.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.project-media figcaption {
  position: absolute;
  z-index: 6;
  left: 22px;
  bottom: 20px;
  max-width: 58%;
  font-size: 14px;
}

.art-signal {
  background: #0b0b0b;
}

.art-signal .art-shape-a {
  width: 64%;
  aspect-ratio: 1;
  top: -21%;
  right: -8%;
  border-radius: 50%;
  background: var(--accent);
}

.art-signal .art-shape-b {
  width: 18%;
  height: 72%;
  left: 18%;
  top: 14%;
  background: var(--white);
  transform: rotate(11deg);
}

.art-signal .art-shape-c {
  width: 34%;
  height: 4px;
  left: 11%;
  bottom: 22%;
  background: var(--accent);
}

.art-pack {
  background: var(--accent);
  color: var(--ink);
}

.art-pack::after,
.art-type::after,
.art-mono::after,
.art-space::after {
  background: linear-gradient(to top, rgba(0,0,0,.16), transparent 34%);
}

.art-pack .art-shape {
  width: 18%;
  height: 58%;
  top: 21%;
  background: var(--white);
  box-shadow: 18px 23px 30px rgba(0,0,0,.18);
}

.art-pack .art-shape-a { left: 20%; transform: rotate(-8deg); }
.art-pack .art-shape-b { left: 42%; height: 66%; top: 17%; background: var(--ink); }
.art-pack .art-shape-c { right: 18%; transform: rotate(9deg); background: #f5d438; }
.art-pack .art-word { color: var(--white); mix-blend-mode: difference; }

.art-space {
  background: #d9d5cd;
  color: var(--ink);
}

.art-space .art-grid {
  opacity: 0.5;
  background-image: linear-gradient(rgba(9,9,9,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(9,9,9,.22) 1px, transparent 1px);
}

.art-space .art-shape-a {
  inset: 17% 11% 18%;
  background: linear-gradient(145deg, var(--accent) 0 52%, #153db8 52% 100%);
  clip-path: polygon(0 8%, 100% 0, 84% 100%, 9% 86%);
}

.art-space .art-shape-b {
  width: 38%;
  height: 12%;
  top: 27%;
  left: 29%;
  border: 4px solid var(--white);
}

.art-space .art-word { color: var(--white); }

.art-mono {
  background: #f1f0eb;
  color: var(--ink);
}

.art-mono .art-grid { opacity: 0.12; filter: invert(1); }
.art-mono .art-shape-a { inset: 13% 53% 13% 8%; background: var(--ink); }
.art-mono .art-shape-b { width: 38%; aspect-ratio: 1; top: 20%; right: 11%; border: 4vw solid var(--ink); border-radius: 50%; }
.art-mono .art-shape-c { width: 25%; height: 10%; right: 16%; bottom: 15%; background: var(--accent); }
.art-mono .art-word { color: var(--white); mix-blend-mode: difference; }

.art-type {
  background: var(--accent);
  color: var(--ink);
}

.art-type .art-shape-a { width: 75%; height: 23%; top: 14%; left: -8%; background: var(--ink); transform: rotate(-9deg); }
.art-type .art-shape-b { width: 60%; height: 23%; top: 42%; right: -6%; border: 5px solid var(--ink); transform: rotate(7deg); }
.art-type .art-shape-c { width: 26%; aspect-ratio: 1; left: 12%; bottom: 7%; border-radius: 50%; background: var(--white); }
.art-type .art-word { color: var(--ink); font-weight: 900; }

.art-orbit {
  background: #15131a;
}

.art-orbit .art-shape-a,
.art-orbit .art-shape-b,
.art-orbit .art-shape-c {
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
}

.art-orbit .art-shape-a { width: 72%; aspect-ratio: 1; right: -12%; top: -18%; }
.art-orbit .art-shape-b { width: 49%; aspect-ratio: 1; right: -1%; top: -7%; }
.art-orbit .art-shape-c { width: 25%; aspect-ratio: 1; right: 11%; top: 5%; background: var(--accent); border: 0; }

.project-card:hover .art-shape-a {
  transform: translate3d(3%, -2%, 0) rotate(2deg);
}

.project-card:hover .art-shape-b {
  transform: translate3d(-2%, 2%, 0) rotate(-2deg);
}

.project-card:hover .art-pack .art-shape-a { transform: translateY(-3%) rotate(-4deg); }
.project-card:hover .art-pack .art-shape-c { transform: translateY(-3%) rotate(5deg); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease var(--delay, 120ms), transform 0.9s var(--ease) var(--delay, 120ms);
}

.reveal.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.intro-section {
  padding: clamp(100px, 13vw, 190px) var(--gutter) clamp(105px, 12vw, 170px);
  background: var(--white);
}

.intro-section__inner {
  width: min(83%, 1180px);
  margin: 0 auto;
}

.intro-copy {
  max-width: 1120px;
  margin: 0 0 42px;
  font-size: clamp(38px, 4.7vw, 70px);
  line-height: 1.16;
  letter-spacing: -0.052em;
}

.section-shell {
  padding: 120px var(--gutter) 145px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin-top: 25px;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 76px 28px;
  padding-top: 34px;
}

.project-card {
  min-width: 0;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.project-card.is-filtered-out {
  opacity: 0;
  transform: translateY(10px);
}

.project-card[hidden] {
  display: none;
}

.project-card .project-media {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  transition: transform 0.55s var(--ease);
}

.project-card .project-media figcaption {
  display: none;
}

.project-card:hover .project-media {
  transform: scale(0.985);
}

.project-card__meta {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 12px 0 15px;
  border-bottom: 1px solid var(--line);
}

.project-card__meta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.project-card__meta span,
.project-card__meta small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card__meta h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.project-card__meta p {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
}

.project-card__meta small {
  justify-self: end;
}

.capabilities-section {
  padding: 112px var(--gutter) 135px;
  background: var(--paper);
}

.capabilities-section--white {
  background: var(--white);
}

.capabilities-title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.capability-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  padding: 35px 0 39px;
  border-bottom: 1px solid var(--line);
}

.capability-row h3 {
  margin-bottom: 7px;
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.capability-row__lead p {
  max-width: 500px;
  font-size: 18px;
}

.capability-row ul,
.service-list,
.project-services {
  list-style: none;
  margin: 0;
  padding: 0;
}

.capability-row ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
  align-content: start;
}

.capability-row li,
.service-list li,
.project-services li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.studio-band {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--white);
}

.studio-band__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.studio-band__visual .giant-mark {
  position: absolute;
  inset: 12% 8%;
  background: currentColor;
  -webkit-mask: url("vizart-symbol.svg") center / contain no-repeat;
  mask: url("vizart-symbol.svg") center / contain no-repeat;
}

.studio-band__visual span {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.studio-band__visual span:nth-child(2) { top: 26px; left: 28px; }
.studio-band__visual span:nth-child(3) { right: 25px; bottom: 28px; transform: rotate(90deg); transform-origin: right bottom; }

.studio-band__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 7vw;
}

.studio-band__copy h2 {
  margin: 28px 0 45px;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.studio-band__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 35px;
  color: #bdbdb5;
  font-size: 18px;
  line-height: 1.58;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--acid);
}

.stat {
  min-height: 280px;
  padding: 34px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(9,9,9,.28);
}

.stat:last-child { border: 0; }
.stat strong { font-size: clamp(72px, 9vw, 142px); line-height: 0.8; letter-spacing: -0.08em; }
.stat span { font-size: 14px; }

.page-hero {
  min-height: 77svh;
  padding: calc(var(--header-h) + 90px) var(--gutter) 90px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: auto 1fr;
  gap: 40px 8vw;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero .eyebrow {
  grid-column: 1 / -1;
}

.page-hero h1 {
  align-self: end;
  font-size: clamp(78px, 10.5vw, 170px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.085em;
}

.page-hero__aside {
  align-self: end;
  max-width: 480px;
  padding-bottom: 5px;
  font-size: 19px;
  line-height: 1.55;
}

.filter-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 73px;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}

.filter-bar button {
  min-height: 36px;
  padding: 0 15px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.work-grid-shell {
  padding: 70px var(--gutter) 150px;
}

.work-grid-shell .project-grid {
  padding-top: 0;
}

.service-hero-note {
  padding: 27px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: clamp(22px, 2.6vw, 39px);
  letter-spacing: -0.04em;
}

.process-section {
  padding: 120px var(--gutter) 140px;
  background: var(--ink);
  color: var(--white);
}

.process-section h2 {
  max-width: 1050px;
  margin: 25px 0 75px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.process-grid article {
  min-height: 280px;
  padding: 22px 28px 30px 0;
  border-right: 1px solid var(--line-light);
}

.process-grid article + article { padding-left: 28px; }
.process-grid article:last-child { border-right: 0; }
.process-grid span { font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.process-grid h3 { margin: 105px 0 14px; font-size: 23px; font-weight: 500; letter-spacing: -.035em; }
.process-grid p { max-width: 260px; color: #a6a69f; font-size: 14px; line-height: 1.5; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 780px;
}

.about-story__visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--acid);
}

.about-story__visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--ink);
  -webkit-mask: url("vizart-symbol.svg") center / contain no-repeat;
  mask: url("vizart-symbol.svg") center / contain no-repeat;
}

.about-story__visual span {
  position: absolute;
  right: 25px;
  bottom: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 7vw;
}

.about-story__copy h2 {
  margin: 26px 0 44px;
  font-size: clamp(48px, 5.8vw, 90px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.about-story__copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.commitments {
  padding: 120px var(--gutter) 145px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--ink);
}

.commitment-grid article {
  min-height: 300px;
  padding: 22px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.commitment-grid article + article { padding-left: 28px; }
.commitment-grid article:last-child { border-right: 0; }
.commitment-grid span { font-size: 10px; font-weight: 700; }
.commitment-grid h3 { margin: 105px 0 16px; font-size: 25px; font-weight: 500; }
.commitment-grid p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.quote-section {
  padding: clamp(100px, 14vw, 205px) 8vw;
  background: var(--acid);
  text-align: center;
}

.quote-section blockquote {
  max-width: 1250px;
  margin: 0 auto 40px;
  font-size: clamp(38px, 5.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.quote-section cite {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-main {
  min-height: 100svh;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-statement {
  padding: 85px var(--gutter) 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.contact-statement h1 {
  margin: 65px 0;
  font-size: clamp(82px, 11.2vw, 175px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.085em;
}

.contact-statement > p:last-child {
  max-width: 650px;
  color: #bcbcb4;
  font-size: 20px;
  line-height: 1.55;
}

.contact-details {
  padding: 90px 4.2vw 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
}

.contact-details__primary {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-details__primary a {
  width: fit-content;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.contact-details__primary a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.contact-details__grid div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(9,9,9,.4);
}

.contact-details__grid small {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.project-page {
  background: var(--white);
}

.project-hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.project-hero > [data-project-hero],
.project-hero .project-media {
  width: 100%;
  height: 100%;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.42), transparent 35%);
}

.project-hero__index {
  position: absolute;
  z-index: 6;
  right: var(--gutter);
  bottom: 30px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.project-intro {
  padding: 115px 9vw 125px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.project-intro h1 {
  margin: 23px 0 12px;
  font-size: clamp(64px, 8.2vw, 130px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.08em;
}

.project-intro h2 {
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.project-intro__body {
  align-self: end;
}

.project-intro__body > p {
  margin-bottom: 42px;
  font-size: 20px;
  line-height: 1.58;
}

.project-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
}

.project-facts div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.project-facts small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-media {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.case-media + .case-media {
  margin-top: 0;
}

.case-media--inset {
  width: 72%;
  min-height: 620px;
  margin: 110px auto;
}

.case-media > .project-media,
.case-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.case-media__label {
  position: absolute;
  z-index: 8;
  top: 22px;
  left: 22px;
  padding: 8px 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.case-copy {
  padding: 130px 9vw;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  background: var(--ink);
  color: var(--white);
}

.case-copy h2 {
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.065em;
}

.case-copy p {
  max-width: 720px;
  color: #b7b7af;
  font-size: 20px;
  line-height: 1.62;
}

.how-helped {
  padding: 105px 9vw 120px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  background: var(--project-accent);
}

.how-helped h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.project-services li {
  border-color: rgba(9,9,9,.35);
  font-size: clamp(24px, 3.1vw, 48px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.related-section {
  padding: 115px var(--gutter) 140px;
}

.related-section .project-grid {
  padding-top: 35px;
}

.footer-cta {
  min-height: 510px;
  padding: 90px var(--gutter);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  background: var(--acid);
}

.footer-cta h2 {
  max-width: 1020px;
  margin-top: 28px;
  font-size: clamp(64px, 9.5vw, 150px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.085em;
}

.footer-cta .button {
  margin-bottom: 8px;
  flex: 0 0 auto;
}

.site-footer {
  position: relative;
  z-index: 0;
  padding: 72px var(--gutter) 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  min-height: 180px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line-light);
}

.footer-top .brand {
  color: var(--white);
}

.footer-logo {
  width: clamp(150px, 13vw, 215px);
  height: auto;
  filter: invert(1);
}

.footer-top p {
  max-width: 600px;
  color: #b3b3ac;
  font-size: clamp(24px, 2.8vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 50px;
  padding: 55px 0 95px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.footer-grid small {
  margin-bottom: 12px;
  color: #77776f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-grid a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: #7c7c75;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .site-header > .brand {
    grid-column: 1;
  }

  .brand-logo--horizontal {
    display: none;
  }

  .brand-logo--wordmark {
    display: block;
    width: 120px;
  }

  .tagline {
    display: none;
  }

  .header-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .header-mark__image {
    width: 100%;
    height: auto;
    transition: filter 0.16s ease;
  }

  .site-header > .header-nav {
    grid-column: 3;
  }

  body[data-header="overlay"] .site-header:not(.is-solid) .header-mark__image {
    filter: invert(1);
  }

  [data-project-gallery] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(22px, 2.4vw, 42px);
    padding: clamp(28px, 3.5vw, 58px) var(--gutter);
    background: var(--white);
  }

  [data-project-gallery] .case-media,
  [data-project-gallery] .case-media--inset {
    width: 100%;
    min-height: 0;
    margin: 0;
    background: transparent;
  }

  [data-project-gallery] .case-media > .project-media,
  [data-project-gallery] .case-media > img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 74px;
    --gutter: 22px;
    --marquee-gap: 12px;
  }

  .tagline { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .video-placeholder { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .intro-section__inner { width: 100%; }
  .project-grid { gap: 55px 18px; }
  .capability-row { gap: 35px; }
  .studio-band,
  .about-story,
  .contact-main { grid-template-columns: 1fr; }
  .studio-band__visual,
  .about-story__visual { min-height: 620px; }
  .stats-strip { grid-template-columns: 1fr 1fr 1fr; }
  .page-hero { min-height: 650px; grid-template-columns: 1fr; }
  .page-hero__aside { justify-self: start; }
  .process-grid,
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2),
  .commitment-grid article:nth-child(2) { border-right: 0; }
  .process-grid article,
  .commitment-grid article { border-bottom: 1px solid var(--line-light); }
  .commitment-grid article { border-bottom-color: var(--line); }
  .contact-main { padding-top: var(--header-h); }
  .contact-statement { min-height: 650px; }
  .contact-details { min-height: 600px; }
  .project-intro,
  .case-copy,
  .how-helped { grid-template-columns: 1fr; gap: 55px; }
  .project-intro__body { max-width: 750px; }
  .case-media { min-height: 580px; }
  .case-media--inset { width: calc(100% - 44px); min-height: 520px; margin: 70px auto; }
  .footer-cta { align-items: start; flex-direction: column; justify-content: center; }
}

@media (max-width: 640px) {
  .brand-logo--horizontal { display: none; }
  .brand-logo--symbol { display: block; width: 39px; }
  .header-nav { display: none; }
  .menu-toggle { width: 44px; height: 44px; }
  .menu-toggle { display: block; }
  .menu-toggle::before,
  .menu-toggle::after { width: 31px; height: 2px; }
  .menu-scrim { display: block; }
  .menu-panel { width: 100%; min-width: 0; display: flex; padding: 122px 22px 32px; }
  .menu-nav a { font-size: clamp(46px, 15vw, 64px); }
  .video-placeholder-section { padding-top: calc(var(--header-h) + 22px); }
  .video-placeholder__meta { inset: 15px 16px auto; }
  .video-placeholder__play { width: 58px; }
  .video-placeholder__mark { width: 72%; }
  .video-placeholder > small { right: 16px; bottom: 15px; }
  .art-code { top: 16px; right: 16px; }
  .art-word { width: 72%; }
  .project-art { min-height: 310px; }
  .intro-section { padding-top: 82px; padding-bottom: 90px; }
  .intro-copy { font-size: clamp(34px, 10.8vw, 52px); }
  .section-shell,
  .capabilities-section,
  .commitments,
  .process-section,
  .related-section { padding-top: 82px; padding-bottom: 95px; }
  .section-heading { align-items: start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-card__meta { grid-template-columns: 1fr auto; }
  .project-card__meta p { grid-column: 1 / -1; grid-row: 2; }
  .project-card__meta small { grid-column: 2; grid-row: 1; }
  .capability-row { grid-template-columns: 1fr; gap: 30px; padding: 29px 0 34px; }
  .capability-row ul { grid-template-columns: 1fr; }
  .studio-band__visual,
  .about-story__visual { min-height: 480px; }
  .studio-band__copy,
  .about-story__copy { padding: 80px 22px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(9,9,9,.28); }
  .page-hero { min-height: 610px; padding-top: calc(var(--header-h) + 65px); padding-bottom: 65px; }
  .page-hero h1 { font-size: clamp(72px, 22vw, 112px); }
  .page-hero__aside { font-size: 17px; }
  .process-grid,
  .commitment-grid { grid-template-columns: 1fr; }
  .process-grid article,
  .process-grid article + article,
  .commitment-grid article,
  .commitment-grid article + article { min-height: 220px; padding: 22px 0; border-right: 0; }
  .process-grid h3,
  .commitment-grid h3 { margin-top: 65px; }
  .quote-section { padding-left: 22px; padding-right: 22px; }
  .contact-statement { min-height: 600px; padding: 65px 22px; }
  .contact-statement h1 { font-size: clamp(76px, 24vw, 122px); }
  .contact-details { min-height: 530px; padding: 65px 22px 40px; }
  .contact-details__primary a { font-size: 31px; }
  .contact-details__grid { grid-template-columns: 1fr; gap: 28px; }
  .project-hero { height: 82svh; min-height: 610px; }
  .project-intro { padding: 80px 22px 90px; }
  .project-intro h1 { font-size: clamp(68px, 20vw, 104px); }
  .project-intro__body > p { font-size: 17px; }
  .case-media { min-height: 430px; }
  .case-media--inset { width: calc(100% - 44px); min-height: 390px; margin: 44px auto; }
  .case-copy,
  .how-helped { padding: 85px 22px; }
  .footer-cta { min-height: 480px; padding: 72px 22px; }
  .footer-cta h2 { font-size: clamp(62px, 20vw, 105px); }
  .site-footer { padding-left: 22px; padding-right: 22px; }
  .footer-top { align-items: start; flex-direction: column; }
  .footer-top p { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; padding-bottom: 70px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
