@font-face {
  font-family: "Fjalla";
  src: url("assets/FjallaOne-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --ink-soft: #121212;
  --paper: #f1f0e9;
  --paper-dim: #c9c8c0;
  --cyan: #2de2e6;
  --blue: #3e83ff;
  --acid: var(--cyan);
  --violet: #9f7cff;
  --orange: #ff7a38;
  --line: rgba(241, 240, 233, .18);
  --line-dark: rgba(10, 10, 10, .16);
  --page-pad: clamp(1.25rem, 3.2vw, 4rem);
  --display: "Fjalla", "Arial Narrow", sans-serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.loading {
  overflow: hidden;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.no-js .loader {
  display: none;
}

.no-js body {
  overflow: auto;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image:
    repeating-radial-gradient(circle at 18% 23%, rgba(255,255,255,.16) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 77% 61%, rgba(255,255,255,.1) 0 1px, transparent 1px 5px);
  background-size: 9px 11px, 13px 15px;
  mix-blend-mode: soft-light;
}

#ambient-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .75;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(45, 226, 230, .72);
}

.loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--blue) 56%, var(--violet));
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}

.loader::after {
  content: "";
  position: absolute;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 10, 10, .24);
  border-radius: 50%;
  animation: loaderPulse 1.35s ease-in-out infinite;
}

.loader.is-done {
  transform: translateY(-105%);
}

.loader-name {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--display);
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.loader-name span:last-child {
  color: transparent;
  -webkit-text-stroke: clamp(1px, .15vw, 2px) var(--ink);
}

.loader-line {
  position: absolute;
  bottom: 13%;
  left: var(--page-pad);
  right: var(--page-pad);
  height: 2px;
  overflow: hidden;
  background: rgba(10, 10, 10, .15);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: translateX(-100%);
  animation: loaderLine 1.2s cubic-bezier(.65, 0, .35, 1) forwards;
}

.loader-meta {
  position: absolute;
  bottom: 7%;
  left: var(--page-pad);
  right: var(--page-pad);
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.cursor {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  display: grid;
  width: 12px;
  height: 12px;
  place-items: center;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--acid);
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s ease, height .25s ease, background .25s ease, opacity .18s ease, visibility .18s ease;
}

.cursor span {
  opacity: 0;
  color: var(--ink);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .12em;
  transition: opacity .2s ease;
}

.cursor.is-active {
  width: 68px;
  height: 68px;
  visibility: visible;
  opacity: 1;
  background: var(--acid);
}

.cursor.is-active span {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1.25rem var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  padding-block: .9rem;
  border-color: var(--line);
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  justify-self: start;
  align-items: center;
  gap: .35rem;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand-slash {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  gap: clamp(1.1rem, 2.8vw, 2.8rem);
}

.desktop-nav a,
.lang-toggle {
  position: relative;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: var(--acid);
  transition: right .25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 1rem;
}

.lang-toggle,
.menu-toggle {
  border: 0;
  cursor: pointer;
  background: none;
}

.lang-toggle {
  display: flex;
  gap: .25rem;
  padding: .5rem;
}

.lang-toggle span:not(.active) {
  color: rgba(241, 240, 233, .38);
}

.lang-toggle .active {
  color: var(--acid);
}

.menu-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  padding: .65rem .35rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: .28rem 0;
  background: currentColor;
  transition: transform .3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(.28rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-.28rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 75;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  padding: var(--page-pad);
  visibility: hidden;
  opacity: 0;
  background: var(--acid);
  transform: translateY(-100%);
  transition: transform .65s cubic-bezier(.76, 0, .24, 1), opacity .4s ease, visibility .65s;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.5rem, 15vw, 7rem);
  line-height: .98;
  text-transform: uppercase;
}

main,
footer {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 6.5rem var(--page-pad) 2rem;
  background:
    radial-gradient(circle at 76% 26%, rgba(159, 124, 255, .2), transparent 23rem),
    radial-gradient(circle at 38% 92%, rgba(45, 226, 230, .1), transparent 28rem),
    radial-gradient(circle at 88% 78%, rgba(255, 122, 56, .06), transparent 24rem);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  top: 20%;
  right: 14%;
  border: 1px solid rgba(45, 226, 230, .16);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(45, 226, 230, .05), inset 0 0 80px rgba(159, 124, 255, .05);
  animation: breathe 7s ease-in-out infinite;
}

.hero-grid-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .19;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: calc(100vw / 6) 100%, 100% 25vh;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 .25rem rgba(255, 122, 56, .13);
  animation: statusPulse 2s ease infinite;
}

.hero-index {
  margin: 0;
  color: var(--paper-dim);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.hero-title-wrap {
  position: relative;
  z-index: 3;
  margin-top: 5vh;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 17.2vw, 20rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.word-row {
  display: block;
  overflow: hidden;
  padding: .025em 0 .07em;
  margin-bottom: -.07em;
}

.word-row-second {
  margin-left: 12vw;
}

.hero-word {
  display: block;
  transform: translateY(110%);
  animation: heroReveal .95s 1.45s cubic-bezier(.16, 1, .3, 1) forwards;
}

.word-row-second .hero-word {
  animation-delay: 1.57s;
}

.acid {
  color: var(--acid);
}

.hero-title .acid {
  color: var(--orange);
}

.hero-lower {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(15rem, .9fr) minmax(18rem, .76fr) minmax(12rem, .55fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
  margin-top: -.45vw;
  padding-left: 4vw;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--paper-dim);
  font-size: .64rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  color: var(--acid);
}

.hero-copy {
  max-width: 27rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link .arrow {
  color: var(--acid);
  font-size: 1.1rem;
  transition: transform .25s ease;
}

.text-link:hover .arrow {
  transform: translate(.25rem, .25rem);
}

.hero-portrait {
  position: relative;
  z-index: 4;
  width: min(100%, 23rem);
  margin: -4.5rem auto 0;
  perspective: 900px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: .76;
  border-radius: 50% 50% 4px 4px;
  background: #202020;
  transform: rotate(2deg);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .45);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(.82) contrast(1.04);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

.hero-portrait:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.portrait-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(62, 131, 255, .18), transparent 42%, rgba(255, 122, 56, .09));
  mix-blend-mode: color;
}

.hero-portrait figcaption,
.about-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .8rem;
  color: var(--paper-dim);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-note {
  align-self: center;
  max-width: 14rem;
}

.hero-note .line {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--acid);
}

.hero-note p {
  margin: 0;
  color: var(--paper-dim);
  font-size: .72rem;
  line-height: 1.65;
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  writing-mode: vertical-rl;
  color: var(--paper-dim);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 3rem;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  animation: scrollLine 2s ease-in-out infinite;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, .85);
}

.metric {
  min-height: 14rem;
  padding: clamp(1.5rem, 3vw, 3rem) var(--page-pad);
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric-value {
  margin: 0 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.4vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.04em;
}

.metric > p:last-child {
  max-width: 12rem;
  margin: 0;
  color: var(--paper-dim);
  font-size: .65rem;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(6rem, 12vw, 11rem) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading h2 {
  max-width: 65rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9.5vw, 10rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.about {
  color: var(--ink);
  background: var(--paper);
}

.about .eyebrow {
  color: #6a6963;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr .78fr .78fr;
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.about-copy {
  padding: clamp(1rem, 3vw, 3rem) clamp(1rem, 4vw, 5rem) 2rem 0;
}

.about-copy .lead {
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.about-copy > p:not(.lead) {
  max-width: 35rem;
  margin: 0;
  color: #575650;
  font-size: clamp(.95rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.about-photo {
  margin: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  filter: saturate(.8);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

.about-photo:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.about-photo figcaption {
  margin: 0;
  padding-top: .75rem;
  color: #64635e;
}

.about-photo-main {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.about-photo-main img {
  flex: 1;
  min-height: 52rem;
}

.belief-card {
  display: flex;
  flex-direction: column;
  min-height: 27rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--paper);
  background: var(--ink);
}

.belief-words {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: .93;
  text-transform: uppercase;
}

.belief-words span:nth-child(2) {
  color: var(--acid);
  transform: translateX(12%);
}

.belief-words span:nth-child(3) {
  color: transparent;
  -webkit-text-stroke: 1px var(--paper);
}

.belief-card > p:last-child {
  max-width: 18rem;
  margin: 2rem 0 0;
  color: var(--paper-dim);
  font-size: .72rem;
  line-height: 1.6;
}

.about-photo-wide img {
  min-height: 22rem;
  max-height: 31rem;
  object-position: center 38%;
}

.marquee {
  overflow: hidden;
  padding: 1.8rem 0;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(-1.15deg) scale(1.02);
  transform-origin: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 1;
  white-space: nowrap;
}

.marquee i {
  padding: 0 .22em;
  font-style: normal;
}

.work {
  background: var(--ink);
}

.work-heading {
  grid-template-columns: .42fr .84fr .42fr;
}

.work-heading > p:last-child {
  align-self: end;
  max-width: 22rem;
  margin: 0;
  color: var(--paper-dim);
  font-size: .78rem;
  line-height: 1.7;
}

.flagship {
  position: relative;
  display: block;
  min-height: min(54rem, 84vh);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3.5rem);
  color: var(--paper);
  border: 1px solid rgba(45, 226, 230, .3);
  background: #0d1318;
  isolation: isolate;
}

.flagship-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 78% 45%, rgba(45, 226, 230, .2), transparent 28%),
    radial-gradient(circle at 30% 90%, rgba(255, 122, 56, .08), transparent 28%),
    linear-gradient(rgba(62, 131, 255, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 131, 255, .065) 1px, transparent 1px);
  background-size: auto, auto, 4rem 4rem, 4rem 4rem;
}

.flagship::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55rem;
  height: 55rem;
  top: -8rem;
  right: -9rem;
  border: 1px solid rgba(45, 226, 230, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 7rem rgba(45, 226, 230, .04);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.flagship:hover::after {
  transform: scale(1.08) rotate(8deg);
}

.flagship-head {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.project-number {
  color: var(--paper-dim);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(45, 226, 230, .42);
  border-radius: 999px;
  color: var(--acid);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.launch-badge i {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.project-arrow {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: color .25s ease, background .25s ease, transform .35s ease;
}

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

.flagship-content {
  position: absolute;
  z-index: 3;
  left: clamp(1.5rem, 3vw, 3.5rem);
  bottom: clamp(5rem, 8vw, 7.5rem);
  max-width: min(58rem, 62%);
}

.project-role {
  margin: 0 0 1.2rem;
  color: var(--acid);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.flagship-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 15rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.055em;
}

.flagship-content > p:not(.project-role) {
  max-width: 40rem;
  margin: 2rem 0;
  color: var(--paper-dim);
  font-size: clamp(.95rem, 1.35vw, 1.25rem);
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.project-tags span {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.property-stack {
  position: absolute;
  top: 22%;
  right: 5%;
  width: min(30vw, 26rem);
  aspect-ratio: 1;
}

.property-card {
  position: absolute;
  width: 67%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: .45rem;
  background: var(--paper);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .45);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1);
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-one {
  z-index: 3;
  top: 22%;
  left: 1%;
  transform: rotate(-8deg);
}

.property-two {
  z-index: 2;
  top: 0;
  right: 0;
  transform: rotate(8deg);
}

.property-three {
  z-index: 1;
  right: 1%;
  bottom: -12%;
  transform: rotate(16deg);
}

.flagship:hover .property-one {
  transform: translate(-13%, 5%) rotate(-14deg);
}

.flagship:hover .property-two {
  transform: translate(12%, -8%) rotate(15deg);
}

.flagship:hover .property-three {
  transform: translate(16%, 10%) rotate(22deg);
}

.flagship-foot {
  position: absolute;
  left: clamp(1.5rem, 3vw, 3.5rem);
  right: clamp(1.5rem, 3vw, 3.5rem);
  bottom: 2rem;
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1rem, 1.8vw, 1.8rem);
  background: var(--ink);
}

.project-card-wide {
  grid-column: 1 / -1;
}

.project-media {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  aspect-ratio: 16 / 8;
  background: #ffaaa9;
}

.project-card:not(.project-card-wide) .project-media {
  aspect-ratio: 4 / 3;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

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

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(45, 226, 230, .1);
  mix-blend-mode: color;
  transition: opacity .4s ease;
}

.project-card:hover .project-media::after {
  opacity: 1;
}

.project-media .project-arrow {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  color: var(--ink);
  background: rgba(241, 240, 233, .84);
  backdrop-filter: blur(8px);
}

.project-media-dark .project-arrow {
  color: var(--paper);
  background: rgba(10, 10, 10, .55);
}

.card-stat {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 6.4rem;
  padding: .85rem 1rem;
  color: var(--ink);
  border-radius: 2px;
  background: var(--acid);
}

.card-stat strong {
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -.02em;
}

.card-stat span {
  margin-top: .25rem;
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.project-info {
  display: grid;
  grid-template-columns: 1fr minmax(12rem, .65fr);
  gap: 2rem;
  align-items: end;
  padding: 1.6rem .25rem 1rem;
}

.project-card:not(.project-card-wide) .project-info {
  grid-template-columns: 1fr;
}

.project-info h3 {
  margin: .55rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.3vw, 5rem);
  font-weight: 400;
  line-height: .95;
}

.project-card:not(.project-card-wide) .project-info h3 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.project-info p {
  margin: 0;
  color: var(--paper-dim);
  font-size: .78rem;
  line-height: 1.65;
}

.lab {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(3rem, 8vw, 10rem);
  margin-top: clamp(7rem, 12vw, 13rem);
}

.lab-intro h3 {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}

.lab-intro > p:last-child {
  max-width: 25rem;
  margin: 0;
  color: var(--paper-dim);
  font-size: .82rem;
  line-height: 1.7;
}

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

.venture:last-child {
  border-bottom: 1px solid var(--line);
}

.venture-trigger {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  width: 100%;
  padding: 1.7rem 0;
  border: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
}

.venture-num {
  color: var(--paper-dim);
  font-size: .55rem;
  font-weight: 800;
}

.venture-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 4rem);
  line-height: 1;
  transition: color .25s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.venture:hover .venture-title,
.venture.active .venture-title {
  color: var(--venture-color);
  transform: translateX(.5rem);
}

.venture-icon {
  font-size: 1.7rem;
  font-weight: 200;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.venture.active .venture-icon {
  transform: rotate(45deg);
}

.venture-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .6s cubic-bezier(.16, 1, .3, 1);
}

.venture.active .venture-panel {
  grid-template-rows: 1fr;
}

.venture-panel-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 2rem;
  min-height: 0;
  overflow: hidden;
  padding: 0 0 1.8rem 3rem;
}

.venture-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.venture-copy p {
  margin: 0;
  color: var(--paper-dim);
  font-size: .78rem;
  line-height: 1.65;
}

.venture-copy a {
  align-self: flex-start;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--venture-color);
  color: var(--venture-color);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.venture-panel-inner img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}

.commissioned {
  margin-top: clamp(7rem, 12vw, 13rem);
  padding-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.commissioned-heading {
  display: grid;
  grid-template-columns: .5fr 1fr .55fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.commissioned-heading .eyebrow {
  align-self: start;
}

.commissioned-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.commissioned-heading > p:last-child {
  margin: 0;
  color: var(--paper-dim);
  font-size: .78rem;
  line-height: 1.7;
}

.commissioned-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.commissioned-card {
  min-width: 0;
  padding: clamp(.8rem, 1.4vw, 1.4rem);
  background: var(--ink);
}

.commissioned-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
}

.commissioned-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.commissioned-card:hover .commissioned-media img {
  transform: scale(1.035);
}

.commissioned-media .project-arrow {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  color: var(--ink);
  background: rgba(241, 240, 233, .86);
  backdrop-filter: blur(8px);
}

.commissioned-info {
  display: grid;
  grid-template-columns: 1fr minmax(12rem, .7fr);
  gap: 2rem;
  align-items: end;
  padding: 1.4rem .2rem .35rem;
}

.commissioned-info span {
  color: var(--cyan);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.commissioned-info h4 {
  margin: .55rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 4.5rem);
  font-weight: 400;
  line-height: .95;
}

.commissioned-info p {
  margin: 0;
  color: var(--paper-dim);
  font-size: .72rem;
  line-height: 1.65;
}

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

.mindset .eyebrow {
  color: rgba(10, 10, 10, .62);
}

.mindset .eyebrow > span:first-child {
  color: var(--ink);
}

.mindset .section-heading h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

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

.principle {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 3.5rem);
  border-right: 1px solid var(--line-dark);
}

.principle:last-child {
  border-right: 0;
}

.principle > span {
  font-size: .6rem;
  font-weight: 900;
}

.principle h3 {
  max-width: 18rem;
  margin: 6rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.principle p {
  max-width: 19rem;
  margin: 0;
  font-size: .78rem;
  line-height: 1.6;
}

.big-quote {
  position: relative;
  margin-top: clamp(5rem, 10vw, 10rem);
  padding: 4rem 0 1rem clamp(2rem, 8vw, 9rem);
}

.quote-mark {
  position: absolute;
  top: -2rem;
  left: 0;
  font-family: Georgia, serif;
  font-size: clamp(8rem, 17vw, 18rem);
  line-height: 1;
  opacity: .18;
}

.big-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.5vw, 8.5rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.quote-credit {
  display: block;
  margin-top: 2rem;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.contact {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) var(--page-pad) 3rem;
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.contact-orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(62vw, 54rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, var(--orange), #1f86b8 27%, #493975 55%, transparent 72%);
  filter: blur(10px) saturate(1.25);
  opacity: .46;
  transform: translate(-50%, -50%);
  animation: contactFloat 10s ease-in-out infinite alternate;
}

.contact-main {
  position: relative;
  z-index: 2;
  margin-top: 18vh;
}

.contact-main > p {
  margin: 0 0 1rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: .2em;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(3.4rem, 9.2vw, 10.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.email-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -.6rem;
  left: 0;
  height: 3px;
  background: var(--acid);
  transition: right .65s cubic-bezier(.16, 1, .3, 1);
}

.email-link:hover::after {
  right: 0;
}

.email-link span {
  color: var(--acid);
  font-size: .48em;
}

.contact-bottom {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.contact-bottom > p {
  max-width: 22rem;
  margin: 0;
  color: var(--paper-dim);
  font-size: .72rem;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 2rem;
}

.social-links a {
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--line);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}

.social-links a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem var(--page-pad);
  background: var(--ink);
}

footer p,
footer a {
  margin: 0;
  color: var(--paper-dim);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .12em;
}

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

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity .8s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}

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

@keyframes loaderLine {
  to { transform: translateX(0); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(.8); opacity: .15; }
  50% { transform: scale(1); opacity: .42; }
}

@keyframes heroReveal {
  to { transform: translateY(0); }
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 .45rem rgba(255, 122, 56, 0); }
}

@keyframes breathe {
  50% { transform: scale(1.08); opacity: .6; }
}

@keyframes scrollLine {
  0% { transform: translateY(-110%); }
  50%, 100% { transform: translateY(110%); }
}

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

@keyframes contactFloat {
  from { transform: translate(-50%, -53%) scale(.92) rotate(-6deg); }
  to { transform: translate(-48%, -47%) scale(1.05) rotate(7deg); }
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: clamp(7rem, 20vw, 14rem);
  }

  .hero-lower {
    grid-template-columns: 1fr .8fr;
  }

  .hero-note {
    display: none;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
  }

  .about-copy {
    grid-column: 1 / -1;
  }

  .about-photo-main {
    grid-row: auto;
  }

  .about-photo-main img {
    min-height: 38rem;
  }

  .about-photo-wide {
    grid-column: 1 / -1;
  }

  .work-heading {
    grid-template-columns: .35fr 1fr;
  }

  .work-heading > p:last-child {
    grid-column: 2;
  }

  .flagship-content {
    max-width: 70%;
  }

  .property-stack {
    right: 2%;
    width: 30vw;
  }

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

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

  .lab-intro {
    display: grid;
    grid-template-columns: .4fr 1fr;
    gap: 2rem;
  }

  .lab-intro h3 {
    margin-top: 0;
  }

  .lab-intro > p:last-child {
    grid-column: 2;
  }

  .commissioned-heading {
    grid-template-columns: .35fr 1fr;
  }

  .commissioned-heading > p:last-child {
    grid-column: 2;
  }

  .commissioned-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cursor {
    display: none;
  }

  .marquee {
    transform: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    grid-column: 2;
  }

  .mobile-menu.open ~ * .site-header,
  body.menu-open .site-header {
    color: var(--ink);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding-top: 6rem;
  }

  .hero-title-wrap {
    margin-top: 8vh;
  }

  .hero-title {
    font-size: clamp(6.4rem, 31vw, 10.5rem);
    line-height: .78;
  }

  .word-row-second {
    margin-left: 0;
  }

  .hero-lower {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 0;
  }

  .hero-portrait {
    width: 58%;
    margin: -1rem 0 0 auto;
  }

  .hero-statement {
    max-width: 88%;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .scroll-cue {
    display: none;
  }

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

  .metric {
    min-height: 10rem;
    padding: 1.5rem var(--page-pad);
  }

  .metric-value {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .section-heading,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading h2 {
    font-size: clamp(3.8rem, 17vw, 7rem);
  }

  .work-heading > p:last-child,
  .lab-intro > p:last-child {
    grid-column: auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-photo-wide {
    grid-column: auto;
  }

  .about-photo-main img,
  .about-photo img {
    min-height: 31rem;
  }

  .belief-card {
    min-height: 26rem;
  }

  .flagship {
    min-height: 43rem;
  }

  .flagship-content {
    max-width: calc(100% - 3rem);
    bottom: 5.2rem;
  }

  .flagship-content h3 {
    font-size: clamp(4.8rem, 24vw, 8rem);
  }

  .flagship-content > p:not(.project-role) {
    font-size: .82rem;
  }

  .property-stack {
    top: 12%;
    right: 4%;
    width: 50vw;
    opacity: .72;
  }

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

  .project-card-wide {
    grid-column: auto;
  }

  .project-media,
  .project-card:not(.project-card-wide) .project-media {
    min-height: 18rem;
    aspect-ratio: 4 / 3;
  }

  .project-info h3,
  .project-card:not(.project-card-wide) .project-info h3 {
    font-size: 2.8rem;
  }

  .lab-intro {
    display: block;
  }

  .venture-trigger {
    grid-template-columns: 2rem 1fr auto;
  }

  .venture-title {
    font-size: clamp(1.5rem, 7.5vw, 2.4rem);
  }

  .venture-panel-inner {
    grid-template-columns: 1fr;
    padding-left: 2rem;
  }

  .venture-panel-inner img {
    height: 10rem;
  }

  .commissioned-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .commissioned-heading > p:last-child {
    grid-column: auto;
    max-width: 25rem;
  }

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

  .commissioned-info h4 {
    font-size: 2.8rem;
  }

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

  .principle {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 3rem;
  }

  .big-quote {
    padding-left: 1rem;
  }

  .contact {
    min-height: 80vh;
  }

  .contact-main {
    margin-top: 15vh;
  }

  .email-link {
    font-size: clamp(2.3rem, 11vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .contact-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    flex-wrap: wrap;
  }

  footer {
    flex-wrap: wrap;
  }

  footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 29.5vw;
  }

  .hero-topline .hero-index {
    display: none;
  }

  .hero-portrait {
    width: 68%;
  }

  .metric > p:last-child {
    font-size: .55rem;
  }

  .property-stack {
    width: 58vw;
  }

  .project-card {
    padding: .75rem;
  }

  .project-media,
  .project-card:not(.project-card-wide) .project-media {
    min-height: 15rem;
  }

  .flagship-foot {
    font-size: .45rem;
  }
}

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

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

  #ambient-canvas,
  .cursor {
    display: none;
  }

  .hero-word {
    transform: none;
  }
}
