:root {
  color-scheme: light;
  --paper: #f4f1e8;
  --paper-deep: #e8e3d7;
  --white: #fffdf8;
  --ink: #171713;
  --muted: #68675f;
  --line: rgba(23, 23, 19, .2);
  --line-soft: rgba(23, 23, 19, .1);
  --blue: #2850e7;
  --orange: #f05a32;
  --acid: #d5ef63;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", Consolas, monospace;
  --page: min(1280px, calc(100% - 64px));
  --ease: cubic-bezier(.2, .78, .24, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--paper);
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

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

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

img,
video {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: var(--orange);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 241, 232, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 241, 232, .96);
}

.header-inner {
  width: var(--page);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  min-width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
  transition: transform .4s var(--ease), background .2s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-12deg);
  background: var(--blue);
}

.brand-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--blue);
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  content: "";
  transition: transform .3s var(--ease);
}

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

.nav .nav-cta {
  min-height: 44px;
  margin-left: 8px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .25s var(--ease);
}

.nav .nav-cta::after {
  display: none;
}

.nav .nav-cta span {
  margin-left: 10px;
  font-size: 14px;
}

.nav .nav-cta:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 19px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main,
.site-footer {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: clamp(58px, 8vw, 105px) 0 74px;
  border-bottom: 1px solid var(--line);
}

.hero-heading {
  position: relative;
  z-index: 2;
}

.edition-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(50px, 7vw, 90px);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.case-meta,
.project-meta,
.project-number,
.date,
dt {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  max-width: 1220px;
  font-size: clamp(61px, 8.4vw, 126px);
  line-height: .86;
  letter-spacing: -.07em;
}

h1 em,
h2 em {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  max-width: 960px;
  font-size: clamp(44px, 6.3vw, 88px);
  line-height: .95;
  letter-spacing: -.055em;
}

h3 {
  font-size: clamp(25px, 3.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(520px, 1.38fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  margin-top: 64px;
}

.hero-intro {
  align-self: end;
  padding-bottom: 34px;
}

.hero-intro > p {
  max-width: 460px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--white);
}

.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-collage {
  position: relative;
  min-height: clamp(420px, 45vw, 590px);
}

.collage-disc {
  position: absolute;
  z-index: 0;
  top: 2%;
  right: 3%;
  width: min(35vw, 450px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 42px);
  font-style: italic;
  animation: disc-spin 28s linear infinite;
}

.collage-disc::before,
.collage-disc::after {
  position: absolute;
  border: 1px solid rgba(23, 23, 19, .35);
  border-radius: 50%;
  content: "";
}

.collage-disc::before { inset: 16%; }
.collage-disc::after { inset: 36%; background: var(--paper); }

.collage-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 13px 13px 0 rgba(23, 23, 19, .12);
}

.collage-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.collage-main {
  z-index: 2;
  right: 9%;
  bottom: 6%;
  width: 76%;
  height: 64%;
  transform: rotate(-2.4deg) translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform .2s ease-out;
}

.collage-main img {
  filter: saturate(.74) contrast(1.05);
}

.collage-main figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.collage-specimen {
  z-index: 4;
  left: 0;
  bottom: 0;
  width: 36%;
  height: 47%;
  overflow: visible;
  border: 0;
  background: var(--orange);
  box-shadow: none;
  transform: rotate(4deg) translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  animation: specimen-float 5s ease-in-out infinite;
}

.collage-specimen img {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 116%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(10px 16px 10px rgba(23, 23, 19, .2));
}

.collage-note {
  position: absolute;
  z-index: 5;
  top: 2%;
  left: 6%;
  width: 200px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.3;
  transform: rotate(-4deg);
}

.collage-note span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.spark {
  position: absolute;
  z-index: 6;
  color: var(--blue);
  font-size: 40px;
  animation: spark-turn 9s linear infinite;
}

.spark-one { top: 31%; left: 1%; }
.spark-two { right: 0; bottom: 6%; color: var(--orange); font-size: 25px; animation-direction: reverse; }

.hero-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-index > div {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 12px;
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.hero-index > div:last-child { border-right: 0; }
.hero-index span { grid-row: 1 / 3; color: var(--orange); font-family: var(--serif); font-size: 16px; font-style: italic; }
.hero-index strong { font-size: 14px; }
.hero-index small { color: var(--muted); font-size: 10px; }

.marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  white-space: nowrap;
  animation: marquee-move 30s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.marquee-track i {
  color: var(--acid);
  font-size: 10px;
  font-style: normal;
}

.section {
  position: relative;
  scroll-margin-top: 76px;
  padding: clamp(100px, 13vw, 180px) 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(64px, 9vw, 120px);
}

.section-label span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: end;
}

.profile-statement h2 {
  max-width: 860px;
}

.pull-quote {
  max-width: 780px;
  margin-top: 58px;
  padding-left: 28px;
  border-left: 4px solid var(--orange);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 42px);
  font-style: italic;
  line-height: 1.2;
}

.profile-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

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

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

.profile-facts > div {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.profile-facts > div:last-child { border-right: 0; }
.profile-facts span { margin-bottom: auto; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.profile-facts strong { font-family: var(--serif); font-size: 20px; font-style: italic; font-weight: 400; }
.profile-facts small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.projects-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  background: var(--white);
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 92px;
}

.projects-heading p {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
}

.project-stack {
  position: relative;
}

.case-study {
  position: sticky;
  z-index: 1;
  top: 96px;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  margin-bottom: 9vh;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: 0 20px 50px rgba(23, 23, 19, .12);
}

.case-study:nth-child(2) { z-index: 2; top: 108px; }
.case-study:nth-child(3) { z-index: 3; top: 120px; }
.case-study:nth-child(4) { z-index: 4; top: 132px; }

.case-link {
  position: absolute;
  z-index: 10;
  inset: 0;
}

.case-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 56px);
}

.case-blue {
  background: var(--blue);
  color: var(--white);
}

.case-paper {
  background: var(--paper-deep);
}

.case-orange {
  background: var(--orange);
  color: var(--ink);
}

.case-ink {
  background: var(--ink);
  color: var(--white);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 8px;
}

.case-blue .case-meta,
.case-ink .case-meta {
  color: rgba(255, 255, 255, .7);
}

.case-study h3 {
  max-width: 520px;
  margin-top: 72px;
}

.case-study p {
  max-width: 470px;
  margin-top: 24px;
  font-size: 15px;
}

.case-blue p,
.case-ink p {
  color: rgba(255, 255, 255, .74);
}

.case-study ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 36px 55px 0 0;
  list-style: none;
}

.case-study li {
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.case-blue li,
.case-ink li {
  border-color: rgba(255, 255, 255, .35);
}

.case-arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  transition: transform .35s var(--ease), background .2s ease, color .2s ease;
}

.case-study:hover .case-arrow {
  transform: rotate(45deg);
  background: var(--acid);
  color: var(--ink);
}

.case-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--paper-deep);
}

.case-visual > img:first-child {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.75) contrast(1.04);
  transition: transform .9s var(--ease), filter .5s ease;
}

.case-study:hover .case-visual > img:first-child {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.02);
}

.image-label {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.collage-visual {
  padding: 9%;
  background: var(--acid);
}

.collage-visual > img:first-child {
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(23, 23, 19, .16);
  object-fit: cover;
}

.visual-inset {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 6%;
  width: 34%;
  height: 36%;
  object-fit: cover;
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
  transform: rotate(4deg);
  transition: transform .5s var(--ease);
}

.case-study:hover .visual-inset {
  transform: rotate(1deg) translateY(-8px);
}

.poster-visual {
  padding: 6%;
  background: var(--ink);
}

.poster-visual > img:first-child {
  border: 1px solid rgba(255, 255, 255, .45);
  object-fit: contain;
}

.case-diagram {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .4);
  background: var(--acid);
  color: var(--ink);
}

.case-diagram::before,
.case-diagram::after {
  position: absolute;
  border: 1px solid rgba(23, 23, 19, .2);
  border-radius: 50%;
  content: "";
}

.case-diagram::before { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.case-diagram::after { width: 330px; height: 330px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.diagram-word {
  position: absolute;
  z-index: 3;
  width: 170px;
  padding: 17px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.diagram-word small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.word-request { top: 13%; left: 9%; transform: rotate(-3deg); }
.word-reason { top: 42%; left: 40%; background: var(--blue); color: var(--white); transform: rotate(2deg); }
.word-reason small { color: rgba(255,255,255,.7); }
.word-act { right: 8%; bottom: 12%; background: var(--orange); transform: rotate(-2deg); }

.diagram-path {
  position: absolute;
  z-index: 2;
  height: 2px;
  transform-origin: left;
  background: var(--ink);
}

.path-a { top: 30%; left: 25%; width: 34%; transform: rotate(29deg); }
.path-b { top: 60%; left: 56%; width: 32%; transform: rotate(32deg); }

.diagram-path::after {
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  animation: dot-pulse 2s ease-in-out infinite;
}

.diagram-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  animation: diagram-spin 16s linear infinite;
}

.extra-project {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 190px 30px;
  align-items: center;
  gap: 25px;
  padding: 28px 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.extra-project::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateX(-101%);
  background: var(--acid);
  content: "";
  transition: transform .55s var(--ease);
}

.extra-project:hover::before { transform: translateX(0); }
.extra-project span,
.extra-project em { color: var(--muted); font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.extra-project strong { font-size: clamp(18px, 2.2vw, 29px); }
.extra-project i { justify-self: end; font-size: 22px; font-style: normal; }

.methods-section {
  background: var(--paper);
}

.methods-layout {
  display: grid;
  grid-template-columns: minmax(330px, .7fr) minmax(0, 1.3fr);
  gap: clamp(70px, 11vw, 155px);
  align-items: start;
}

.methods-heading {
  position: sticky;
  top: 120px;
}

.methods-heading h2 {
  max-width: 500px;
}

.method-list {
  border-top: 1px solid var(--ink);
}

.method {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 30px;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--ink);
  transition: padding-left .35s var(--ease), background .2s ease;
}

.method:hover {
  padding-left: 18px;
  background: var(--white);
}

.method > span {
  color: var(--orange);
  font-family: var(--serif);
  font-style: italic;
}

.method h3 {
  font-size: clamp(22px, 2.6vw, 36px);
}

.method p {
  max-width: 650px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.method > i {
  font-size: 20px;
  font-style: normal;
  transition: transform .3s var(--ease);
}

.method:hover > i { transform: rotate(-45deg); color: var(--blue); }

.research-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  background: var(--blue);
  color: var(--white);
}

.research-section .section-label span {
  border-color: var(--white);
  color: var(--acid);
}

.research-heading {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: end;
  gap: 70px;
  margin-bottom: 72px;
}

.research-heading p {
  color: rgba(255, 255, 255, .7);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.research-table {
  border-top: 1px solid rgba(255, 255, 255, .55);
}

.research-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 130px;
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  transition: padding-left .35s var(--ease), background .2s ease;
}

.research-row:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, .06);
}

.research-year {
  color: var(--acid);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.research-row small {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.65);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.research-row h3 {
  max-width: 790px;
  font-size: clamp(19px, 2.2vw, 29px);
  line-height: 1.2;
}

.research-row p {
  margin-top: 9px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.research-mark {
  justify-self: end;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.research-mark.live {
  display: flex;
  align-items: center;
  gap: 7px;
}

.research-mark.live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

.contact {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 820px;
}

.contact-copy > p:last-child {
  max-width: 620px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  position: relative;
  z-index: 3;
}

.contact-email {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 700;
  transition: transform .3s var(--ease), background .2s ease;
}

.contact-email:hover {
  transform: translateY(-4px) rotate(-1deg);
  background: var(--orange);
}

.contact-email span { font-size: 21px; }

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.contact-links a {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.contact-links a:last-child { border-right: 0; }
.contact-links a:hover { background: var(--acid); }

.contact-stamp {
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: -2%;
  width: 540px;
  height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(40, 80, 231, .1);
  font-size: 56px;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.06em;
  text-align: center;
  animation: stamp-float 6s ease-in-out infinite;
}

.contact-stamp::before,
.contact-stamp::after {
  position: absolute;
  inset: 11%;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  content: "";
}

.contact-stamp::after { inset: 24%; }

.site-footer {
  min-height: 106px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.site-footer > p:last-child { justify-self: end; }
.site-footer .brand-text { display: none; }
.site-footer .brand-mark { min-width: 35px; height: 35px; font-size: 8px; }

/* Project detail pages */
body:not(.home-page) .project-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

body:not(.home-page) .project-hero::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -4%;
  width: clamp(310px, 42vw, 600px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  content: "";
  animation: stamp-float 6s ease-in-out infinite;
}

body:not(.home-page) .project-hero::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 13%;
  width: 65px;
  height: 65px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

body:not(.home-page) .project-hero > * {
  position: relative;
  z-index: 2;
}

body:not(.home-page) .project-hero h1 {
  max-width: 1050px;
}

body:not(.home-page) .project-hero .lede {
  max-width: 760px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 140px);
}

.copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  max-width: 940px;
  margin-bottom: 44px;
}

.section-head .section-intro {
  max-width: 670px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.project-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--paper-deep);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .2s ease;
}

.project-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--acid);
}

.project-card .project-number { color: var(--blue); }
.project-card .project-meta { color: var(--orange); font-size: 9px; line-height: 1.5; }
.project-card p,
.project-card li { color: var(--muted); font-size: 14px; }
.project-card ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; }
.project-card .text-link { margin-top: auto; }
.card-status { margin-top: auto; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }

.timeline {
  border-top: 1px solid var(--ink);
}

.timeline-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.timeline-row .date { color: var(--blue); padding-top: 6px; }
.timeline-row div { display: grid; gap: 9px; }
.timeline-row p { color: var(--muted); }
.timeline-row a { transition: color .2s ease; }
.timeline-row a:hover { color: var(--blue); }

.media-frame,
.media-card {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--paper-deep);
}

.media-frame video,
.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.media-frame figcaption,
.media-card figcaption {
  padding: 13px 15px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 10px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.media-card.wide { grid-column: 1 / -1; }
.media-link { min-height: 190px; display: grid; align-content: end; gap: 12px; padding: 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.media-link:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--acid); }
.media-link p { color: var(--muted); }

body:not(.home-page) .contact {
  min-height: auto;
  display: block;
  padding-bottom: 115px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.contact-grid a {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .25s var(--ease);
}

.contact-grid a:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); }

/* Entrance motion */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .profile-facts.reveal,
.motion-ready .case-study.reveal {
  transform: translateY(40px) scale(.985);
}

.motion-ready .profile-facts.reveal.is-visible,
.motion-ready .case-study.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes disc-spin {
  to { transform: rotate(360deg); }
}

@keyframes specimen-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes spark-turn {
  to { transform: rotate(360deg); }
}

@keyframes marquee-move {
  to { transform: translateX(-50%); }
}

@keyframes diagram-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: .5; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes stamp-float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-12px); }
}

@media (max-width: 1080px) {
  :root { --page: min(100% - 40px, 1280px); }

  .hero-bottom { grid-template-columns: minmax(260px, .65fr) minmax(430px, 1.35fr); gap: 40px; }
  .collage-main { width: 82%; }
  .profile-facts { grid-template-columns: repeat(2, 1fr); }
  .profile-facts > div:nth-child(2) { border-right: 0; }
  .profile-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .case-study { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); }
  .case-study h3 { margin-top: 54px; }
  .case-study ul { padding-top: 28px; }
}

@media (max-width: 820px) {
  :root { --page: min(100% - 30px, 1280px); }

  .header-inner { min-height: 68px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }

  .nav {
    flex: 1 0 100%;
    max-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height .35s var(--ease), opacity .22s ease, padding .35s var(--ease), visibility 0s linear .35s;
  }

  .site-header.nav-open .nav {
    max-height: 420px;
    padding: 8px 0 16px;
    visibility: visible;
    opacity: 1;
    transition: max-height .35s var(--ease), opacity .22s ease, padding .35s var(--ease), visibility 0s;
  }

  .nav a { min-height: 48px; border-top: 1px solid var(--line); }
  .nav .nav-cta { grid-column: 1 / -1; margin: 8px 0 0; justify-content: space-between; }

  h1 { font-size: clamp(54px, 13.2vw, 92px); }
  h2 { font-size: clamp(42px, 10vw, 68px); }

  .hero-bottom,
  .profile-layout,
  .projects-heading,
  .methods-layout,
  .research-heading,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-intro { padding-bottom: 0; }
  .hero-collage { min-height: 540px; width: min(100%, 680px); margin: 10px auto 0; }
  .collage-disc { width: 390px; }
  .hero-index { grid-template-columns: 1fr; }
  .hero-index > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-index > div:last-child { border-bottom: 0; }

  .section { padding: 110px 0; }
  .profile-layout { gap: 62px; }
  .profile-facts { margin-top: 72px; }

  .projects-section,
  .research-section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .projects-heading { gap: 26px; margin-bottom: 70px; }

  .case-study,
  .case-study:nth-child(2),
  .case-study:nth-child(3),
  .case-study:nth-child(4) {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .case-copy { min-height: 480px; }
  .case-visual,
  .case-diagram { min-height: 430px; border-top: 1px solid var(--ink); border-left: 0; }
  .case-ink .case-diagram { border-top-color: rgba(255, 255, 255, .4); }

  .extra-project { grid-template-columns: 130px 1fr 30px; }
  .extra-project em { display: none; }

  .methods-layout { gap: 70px; }
  .methods-heading { position: relative; top: auto; }

  .research-heading { gap: 28px; }
  .contact { min-height: 700px; gap: 55px; }

  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 250px; }
}

@media (max-width: 560px) {
  :root { --page: calc(100% - 22px); }

  .header-inner { min-height: 62px; }
  .brand-mark { min-width: 37px; height: 37px; }
  .brand-text { font-size: 9px; }

  .hero { padding-top: 45px; }
  .edition-line { margin-bottom: 46px; }
  .edition-line span:last-child { display: none; }
  h1 { font-size: clamp(47px, 14.5vw, 68px); }
  h2 { font-size: clamp(38px, 12vw, 56px); }

  .actions { flex-direction: column; }
  .button { width: 100%; }

  .hero-collage { min-height: 390px; }
  .collage-disc { right: -12%; width: 300px; }
  .collage-main { right: 2%; bottom: 5%; width: 88%; height: 61%; }
  .collage-specimen { width: 39%; height: 41%; }
  .collage-note { top: -2%; left: 1%; width: 156px; padding: 12px; font-size: 13px; }
  .spark-one { top: 27%; }

  .section { padding: 84px 0; }
  .section-label { margin-bottom: 54px; }
  .pull-quote { margin-top: 42px; padding-left: 18px; }

  .profile-facts { grid-template-columns: 1fr; }
  .profile-facts > div { min-height: 128px; border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-facts > div:last-child { border-bottom: 0; }

  .projects-section,
  .research-section { padding-right: 11px; padding-left: 11px; }
  .case-copy { min-height: 450px; padding: 24px 20px; }
  .case-meta { display: grid; gap: 5px; }
  .case-study h3 { margin-top: 38px; }
  .case-visual,
  .case-diagram { min-height: 310px; }
  .case-arrow { right: 20px; bottom: 20px; }
  .word-request { top: 8%; left: 3%; }
  .word-reason { top: 40%; left: 25%; }
  .word-act { right: 2%; bottom: 8%; }
  .diagram-word { width: 145px; padding: 12px; }

  .extra-project { grid-template-columns: 1fr 30px; gap: 10px; padding: 22px 12px; }
  .extra-project > span { grid-column: 1 / -1; }

  .method { grid-template-columns: 35px minmax(0, 1fr) 22px; gap: 10px; }

  .research-row { grid-template-columns: 50px minmax(0, 1fr); gap: 16px; }
  .research-mark { grid-column: 2; justify-self: start; }

  .contact { padding-top: 100px; padding-bottom: 100px; }
  .contact-email { min-height: 66px; padding: 0 14px; font-size: 10px; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links a { border-right: 0; border-bottom: 1px solid var(--ink); }
  .contact-links a:last-child { border-bottom: 0; }
  .contact-stamp { right: -78%; }

  .site-footer { min-height: 88px; grid-template-columns: auto 1fr; }
  .site-footer > p:first-of-type { display: none; }

  body:not(.home-page) .project-hero { min-height: 560px; padding: 70px 0 90px; }
  body:not(.home-page) .project-hero .lede { font-size: 17px; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card.wide { grid-column: auto; }
  .timeline-row { grid-template-columns: 1fr; gap: 9px; }
  .contact-grid { flex-direction: column; }
  .contact-grid a { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .profile-facts.reveal,
  .motion-ready .case-study.reveal {
    opacity: 1;
    transform: none;
  }
}
