@font-face {
  font-family: "Proxima Nova";
  src: url("../assets/fonts/proxima-nova-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../assets/fonts/proxima-nova-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../assets/fonts/proxima-nova-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../assets/fonts/proxima-nova-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

:root {
  --offwhite: #f3f1eb;
  --white: #faf9f6;
  --black: #111111;
  --ink: #161616;
  --muted: #6a6964;
  --line: rgba(17, 17, 17, 0.18);
  --line-strong: rgba(17, 17, 17, 0.38);
  --line-light: rgba(243, 241, 235, 0.22);
  --accent: #c49a00;
  --accent-neon: #c49a00;
  --gray: #cfcbc3;
  --hero-line: rgba(17, 17, 17, 0.16);
  --pad: clamp(1.25rem, 3.2vw, 3.5rem);
  --header-h: 4.75rem;
  --max: 92rem;
  --font: "Proxima Nova";
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  overflow-x: clip;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--black);
  color: var(--offwhite);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

body.nav-open {
  overflow: hidden;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: var(--offwhite);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}

.brand-logo {
  height: 1.05rem;
  width: auto;
  display: block;
}

.brand-claim {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink);
}

.accent {
  color: var(--accent);
  font-weight: 600;
}

.brand-claim .accent {
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.15rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}

.nav a:hover::after {
  background: var(--accent);
  transform: scaleX(1);
}

.nav a.is-active::after,
.nav a[aria-current="page"]::after {
  background: var(--ink);
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2rem;
  height: 1.4rem;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 41;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  height: 1px;
  background: var(--black);
  width: 1.5rem;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.42rem;
}

.nav-toggle span::after {
  top: 0.42rem;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) 3.2rem;
  min-height: calc(100svh - var(--header-h));
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem var(--pad) 3rem;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  max-width: 36rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.35rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 1.35rem;
  color: var(--black);
}

.hero-graphic .draw-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 2.4s var(--ease) 0.2s forwards;
}

.hero-sub {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.8rem;
  color: var(--ink);
}

.hero-lead {
  max-width: 28rem;
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0 0 2.4rem;
}

.hero-graphic {
  position: relative;
  min-height: 28rem;
}

.hero-graphic svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.hero-graphic.is-in .hero-orbits {
  transform-origin: 320px 320px;
  animation: hero-orbit 72s linear 2.5s infinite;
}

.hero-graphic.is-in .hero-rings {
  transform-origin: 320px 320px;
  animation: hero-ring-pulse 9s ease-in-out 2.4s infinite;
}

.hero-signet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.6rem;
  height: auto;
  transform: translate(-50%, -50%);
  color: var(--black);
  animation: signet-breathe 8s ease-in-out infinite;
}

.hero-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem 0;
}

.vtext {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-spine .vtext:first-child,
.hero-spine .vtext:last-child {
  font-size: 0.78rem;
}

.plus {
  color: var(--accent);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  width: fit-content;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.12rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link:hover {
  color: var(--black);
  border-color: var(--accent);
}

.text-link.accent {
  border-bottom-color: var(--accent);
}

.text-link.light {
  border-bottom-color: var(--offwhite);
}

.text-link.light:hover {
  border-bottom-color: var(--accent);
}

/* Projects home */

.section-rule {
  border-top: 1px solid var(--line-strong);
}

.projects-head,
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker.accent {
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.78rem;
}

.kicker a {
  color: inherit;
}

.kicker a:hover {
  color: var(--accent);
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin: 1.7rem 0 0;
}

.project-filter button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.15rem 0;
  margin: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  cursor: pointer;
  position: relative;
}

.project-filter button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.project-filter button:hover,
.project-filter button[aria-pressed="true"] {
  color: var(--ink);
}

.project-filter button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 4.5rem;
  gap: 0;
}

[data-rotate-projects] .project-card:nth-child(n + 4) {
  display: none;
}

[data-filter-projects] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

[data-filter-projects] .project-card {
  border-left: 1px solid var(--line);
}

[data-filter-projects] .project-card.is-row-start {
  border-left: 0;
}

[data-filter-projects] .project-card.is-row-start .project-meta {
  padding-left: 0;
}

[data-filter-projects] .project-card:not(.is-row-start) .project-meta {
  padding-left: 1.1rem;
}

.project-card {
  display: block;
  border-left: 1px solid var(--line);
  padding: 0 0 1.4rem;
  min-width: 0;
}

.project-card:nth-child(3n + 1) {
  border-left: 0;
}

.project-card .media {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 1 / 1;
}

.project-card .media .project-no {
  position: absolute;
  top: 0.85rem;
  left: 0.95rem;
  z-index: 1;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.project-grid--bw .project-card img {
  filter: grayscale(1) contrast(1.06);
}

.project-card img[src*="praxis-logo"] {
  object-position: 8% 50%;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-grid--bw .project-card:hover img,
.project-grid--bw .project-card:focus-visible img {
  filter: grayscale(0) contrast(1);
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.9rem;
  padding: 1rem 1.1rem 0 0;
  align-items: start;
}

.project-card:first-child .project-meta {
  padding-left: 0;
}

.project-card:not(:first-child) .project-meta {
  padding-left: 1.1rem;
}

.project-meta h3,
.project-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
  grid-column: 1;
}

.project-meta p {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  grid-column: 1;
}

.project-year {
  font-size: 0.82rem;
  color: var(--muted);
  grid-column: 1;
}

.project-arrow {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  font-size: 1.1rem;
}

/* Dual black section */

.dual {
  background: #000;
  color: var(--offwhite);
  position: relative;
  overflow: visible;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 44rem;
}

.dual-half {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem minmax(12rem, 1.1fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 4.5rem var(--pad);
  align-items: center;
  overflow: hidden;
}

.dual-half.data {
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 1.1fr) 3.4rem;
  border-left: 1px solid var(--line-light);
}

.vword {
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(243, 241, 235, 0.52);
  writing-mode: vertical-rl;
  justify-self: center;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.vword.up {
  transform: rotate(180deg);
}

.dual .portrait {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.dual-half .portrait {
  justify-content: flex-end;
}

.dual-half.data .portrait {
  justify-content: flex-start;
}

.dual .portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 36rem;
  object-fit: contain;
  object-position: center center;
}

.dual-copy {
  align-self: center;
  padding: 0;
  position: relative;
  z-index: 1;
}

.dual-copy .who {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
}

.dual-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.6rem;
}

.service-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.service-list li {
  margin: 0.35rem 0;
}

.service-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.service-list a::after {
  content: "→";
  flex-shrink: 0;
}

.dual-half.data .service-list a {
  flex-direction: row-reverse;
  text-align: right;
}

.dual-half.data .service-list a::after {
  content: "←";
}

.dual-half.data .text-link {
  margin-left: auto;
}

.service-list a:hover {
  color: var(--accent);
}

.dual .plus {
  color: var(--accent-neon);
}

.dual-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 5;
}

.mark-circle {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--offwhite);
  color: var(--black);
  display: grid;
  place-items: center;
}

.mark-circle img,
.mark-circle svg {
  width: 1.7rem;
  height: auto;
  animation: signet-tilt 8s ease-in-out infinite;
}

/* Method */

.method {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem var(--pad) 6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 3rem;
}

.method h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.9rem 0 2.2rem;
}

.claim-line {
  font-size: 1rem;
  font-weight: 600;
}

.claim-line .accent {
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  padding: 0.2rem 1.15rem 0 0;
  border-left: 1px solid var(--line);
}

.step:first-child {
  border-left: 0;
  padding-left: 0;
}

.step:not(:first-child) {
  padding-left: 1.15rem;
}

.step-no {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.step h3 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* CTA */

.cta {
  background: var(--black);
  color: var(--offwhite);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.2rem var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.cta p {
  margin: 0;
  color: rgba(243, 241, 235, 0.72);
  max-width: 28rem;
}

.cta .accent {
  color: var(--accent);
}

.cta .text-link.accent {
  border-bottom-color: var(--accent);
}

.cta .text-link.accent:hover {
  border-bottom-color: var(--accent);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-consent:hover {
  color: var(--accent);
}

.footer-consent {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}

.footer-logo {
  height: 0.95rem;
  width: auto;
}

/* Page heroes */

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem var(--pad) 3.5rem;
}

.page-hero.narrow {
  max-width: 52rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 1.4rem;
}

.page-hero .lede {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.25;
  max-width: 36rem;
  margin: 0;
}

.page-hero .lede--lead {
  font-weight: 600;
  max-width: 46rem;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero .lede-quiet {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  max-width: 40rem;
  margin: 0.75rem 0 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero .lede-quiet + .project-filter {
  margin-top: 1.7rem;
}

.design-hero,
.data-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.95fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.design-raster {
  position: relative;
  width: 100%;
  max-width: 36rem;
  justify-self: end;
}

.design-raster-lines {
  display: block;
  width: 100%;
  height: auto;
}

.design-raster-signet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18.6%;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: signet-breathe 8s ease-in-out infinite;
}

.data-machine .design-raster-signet {
  left: 55.6%;
  top: 50%;
  width: 14.2%;
}

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 5rem;
}

.band h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1.2rem;
}

.band p {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.band p + p {
  margin-top: 1.1rem;
}

.split-type {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.split-type .idx {
  font-size: 0.8rem;
  color: var(--muted);
}

.split-type h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 0.85rem;
}

.split-type p {
  max-width: 38rem;
  margin: 0;
}

.prose-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.95fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
  padding-bottom: 2.2rem;
}

.contact-hero .hero-graphic {
  width: 100%;
  max-width: 28rem;
  min-height: 0;
  aspect-ratio: 1;
  justify-self: end;
}

.contact-actions {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 5.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 2.6rem 2.4rem 2.3rem 0;
  text-decoration: none;
  color: inherit;
}

.contact-card + .contact-card {
  padding-left: 2.4rem;
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.contact-card-line {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.55rem 0 1.15rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.18rem;
  width: max-content;
  max-width: 100%;
}

.contact-card:hover .contact-card-line {
  border-bottom-color: var(--accent);
}

.contact-card-hint {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 18rem;
}

.figure {
  margin: 2.5rem 0 0;
}

.figure img {
  width: 100%;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.case-gallery .figure {
  margin: 0;
}

.case-gallery .span-2 {
  grid-column: 1 / -1;
}

.figure.bw img {
  filter: grayscale(1) contrast(1.05);
}

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

.field {
  padding: 1.4rem 1.5rem 1.6rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.field:nth-child(2n) {
  padding-left: 1.5rem;
  border-right: 0;
}

.field-no {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.45rem;
}

.field h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.field p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 28rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  padding: 0.4rem 0 1rem;
}

.chips span {
  font-size: 0.95rem;
  font-weight: 600;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36rem;
  border-left: 2px solid var(--accent);
  padding-left: 1.1rem;
}

.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.person {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  min-height: 22rem;
}

.person--flip {
  grid-template-columns: minmax(0, 1fr) 42%;
}

.person--flip .portrait {
  order: 2;
  justify-self: stretch;
}

.person--flip .person-copy {
  order: 1;
}

.person + .person {
  border-left: 1px solid var(--line);
}

.person .person-copy,
.person--flip .person-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 2.5rem;
}

.person .portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #000;
}

.person .portrait::before {
  display: none;
}

.person .portrait img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.person--flip .portrait img {
  object-position: center bottom;
}

.form {
  display: grid;
  gap: 1.4rem;
  max-width: 38rem;
}

.field-input label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.field-input input,
.field-input textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 0.55rem 0;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}

.field-input input:focus,
.field-input textarea:focus {
  border-bottom-color: var(--accent);
}

.field-input textarea {
  min-height: 8rem;
  resize: vertical;
}

.submit {
  justify-self: start;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.submit:hover {
  border-bottom-color: var(--accent);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.field-check input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.field-check label {
  margin: 0;
}

.field-input [aria-invalid="true"],
.field-check [aria-invalid="true"] {
  outline: 1px solid var(--ink);
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-status.is-ok {
  color: var(--ink);
}

.form-status.is-err {
  color: #8a3a2a;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit:disabled {
  opacity: 0.45;
  cursor: wait;
}

.legal {
  max-width: 44rem;
  padding-bottom: 5rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.legal li {
  margin: 0.2rem 0;
}

.legal-missing {
  display: inline;
  background: rgba(196, 154, 0, 0.16);
  color: var(--ink);
  padding: 0.05em 0.28em;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: var(--line-strong);
}

.crumbs a:hover {
  color: var(--accent);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.2rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.55rem 0.7rem 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.legal-table th {
  color: var(--ink);
  font-weight: 600;
}

.case {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem var(--pad) 4.5rem;
}

.case-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 2rem;
  align-items: end;
  padding-bottom: 1.35rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.case-head h1 {
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0.4rem 0 0;
}

.case-back {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.36fr) minmax(0, 1fr);
  gap: 2rem 2.75rem;
  align-items: start;
}

.case-copy {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.case-copy article,
.case-copy section {
  padding: 1.05rem 0 1.1rem;
  border-top: 1px solid var(--line);
}

.case-copy article:first-of-type,
.case-copy section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.case-copy h2 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.case-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: none;
}

.case-copy p.case-lead {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  margin: 0 0 0.85rem;
}

.case-copy article + article,
.case-copy section + section {
  margin-top: 0;
}

.case-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}

.case-services li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.case-services li:not(:last-child)::after {
  content: " · ";
  white-space: pre;
}

.case-result {
  margin-top: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-strong);
}

.case-result .idx {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.case-result p {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}

.case-slider {
  min-width: 0;
}

.case-slider-stage {
  position: relative;
  background: #e8e4dc;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.case-slider-stage figure {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  inset: 0;
}

.case-slider-stage figure.is-active {
  display: block;
}

.case-slider-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.case-slider-stage figcaption {
  display: none;
}

.case-slider-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.case-slider-bar button {
  background: none;
  border: 0;
  padding: 0.2rem 0;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}

.case-slider-bar button:hover {
  color: var(--accent);
}

.case-slider-count {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-placeholder {
  min-height: 28rem;
  background: #e4e0d8;
}

.project-card .media .media-placeholder {
  min-height: 0;
  height: 100%;
}

.next-project {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

/* Motion */

.reveal {
  animation: fade-up 0.8s var(--ease);
}

.reveal-d1 { animation-delay: 0.08s; }
.reveal-d2 { animation-delay: 0.18s; }
.reveal-d3 { animation-delay: 0.3s; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-on-scroll.is-in {
  opacity: 1;
  transform: none;
}

.draw-on-scroll .draw-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.draw-on-scroll.is-in .draw-line {
  animation: draw 2.4s var(--ease) 0.1s forwards;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .draw-line,
  .hero-graphic .draw-line,
  .draw-on-scroll .draw-line {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-up {
  from {
    opacity: 0.01;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes signet-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(6deg);
  }
}

@keyframes signet-tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

@keyframes hero-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-ring-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 2.4rem;
    min-height: auto;
    padding-top: 3rem;
  }

  .design-hero,
  .data-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .design-raster,
  .contact-hero .hero-graphic {
    order: -1;
    max-width: 22rem;
    justify-self: end;
    min-height: 0;
    grid-column: auto;
  }

  .hero-graphic {
    grid-column: 1;
    min-height: 22rem;
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-spine {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .method,
  .cta-inner,
  .dual-half,
  .dual-half.data,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .dual-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 0;
    padding: 2rem 0 2.1rem;
  }

  .contact-card + .contact-card {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .dual-half.data {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .dual-half.data .vword {
    order: 1;
  }

  .dual-half.data .dual-copy {
    order: 2;
  }

  .dual-half.data .portrait {
    order: 3;
  }

  .dual-half.data .service-list a {
    flex-direction: row;
    text-align: left;
  }

  .dual-half.data .service-list a::after {
    content: "→";
  }

  .dual-half.data .text-link {
    margin-left: 0;
  }

  .vword {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.82rem;
    letter-spacing: 0.28em;
    justify-self: start;
    height: auto;
  }

  .vword.up {
    transform: none;
  }

  .dual-mark {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    padding: 1.2rem 0;
  }

  .dual-half,
  .dual-half.data {
    padding: 3.2rem var(--pad);
  }

  .dual .portrait {
    min-height: 0;
    justify-content: flex-start;
  }

  .dual .portrait img {
    height: auto;
    width: min(100%, 22rem);
    max-width: 22rem;
  }

  .dual-copy {
    padding: 0;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
  }

  .step,
  .step:first-child,
  .step:not(:first-child) {
    border-left: 0;
    padding: 0 1rem 1.4rem 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-inner {
    gap: 1.4rem;
  }

  .people,
  .person,
  .person--flip,
  .prose-wide,
  .case-grid,
  .case-facts,
  .case-gallery,
  .case-layout,
  .case-head {
    grid-template-columns: 1fr;
  }

  .case-copy {
    position: static;
  }

  .person,
  .person--flip {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
  }

  .person .person-copy,
  .person--flip .person-copy {
    padding: 2rem;
  }

  .person .portrait,
  .person--flip .portrait {
    min-height: 20rem;
    width: min(42%, 16rem);
    justify-self: start;
  }

  .person--flip .portrait {
    justify-self: end;
  }

  .person + .person {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
  }

  .person--flip .portrait,
  .person--flip .person-copy {
    order: 0;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--offwhite);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--pad);
    gap: 1.3rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav.is-open {
    transform: none;
  }

  .nav a {
    font-size: 1.35rem;
  }

  .brand-claim {
    display: none;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card:nth-child(odd) {
    border-left: 0;
  }

  [data-filter-projects] .project-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  [data-filter-projects] .project-card.is-row-start {
    border-left: 0;
  }

  .fields {
    grid-template-columns: 1fr;
  }

  .field:nth-child(2n) {
    padding-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.8rem;
  }

  .footer-copy,
  .footer-links {
    text-align: left;
    justify-content: flex-start;
  }

  .split-type {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }

  .hero-spine {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem 0 0;
  }

  .hero-spine .vtext {
    writing-mode: horizontal-tb;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }

  [data-filter-projects] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-filter-projects] .project-card,
  [data-filter-projects] .project-card:first-child {
    border-top: 0;
  }

  .project-card,
  .project-card:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .project-meta,
  .project-card:not(:first-child) .project-meta {
    padding-left: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .method {
    padding-top: 3.5rem;
  }

  h1,
  .hero h1,
  .page-hero h1 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .person .portrait,
  .person--flip .portrait {
    width: min(100%, 18rem);
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  [data-filter-projects] {
    grid-template-columns: 1fr;
  }

  [data-filter-projects] .project-card,
  [data-filter-projects] .project-card:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.85rem, 11vw, 2.6rem);
  }

  .brand-logo,
  .footer-logo {
    height: 0.95rem;
    max-width: 9.5rem;
  }
}

.maintenance-hero .kicker {
  margin: 0 0 1.15rem;
}

.maintenance-hero .hero-sub {
  margin-bottom: 1.35rem;
}

.consent-root {
  display: none;
}

.consent-root.is-open {
  display: block;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--offwhite);
  border-top: 1px solid var(--line-strong);
  padding: 1.35rem var(--pad) calc(1.35rem + env(safe-area-inset-bottom));
  max-height: min(88vh, 40rem);
  overflow: auto;
}

.consent-inner p a {
  color: inherit;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.consent-inner p a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.consent-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consent-banner h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.consent-banner p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.consent-links a,
.consent-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.08rem;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
  font-family: inherit;
}

.consent-links a:hover,
.consent-text:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.consent-btn {
  appearance: none;
  background: var(--offwhite);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.consent-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-settings h3 {
  margin: 1.1rem 0 0.5rem;
  font-size: 1rem;
}

.consent-cat {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.consent-cat-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  font-weight: 700;
}

.consent-switch {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.consent-cat details {
  margin-top: 0.45rem;
}

.consent-cat summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.consent-cat ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .nav {
    z-index: 30;
    overflow: auto;
  }

  .nav:not(.is-open) {
    visibility: hidden;
    pointer-events: none;
  }

  .nav.is-open {
    visibility: visible;
  }
}
