:root {
  --ink: #050505;
  --paper: #f4f4f1;
  --white: #ffffff;
  --fog: #ebebeb;
  --muted: #6a6a66;
  --line: rgba(5, 5, 5, 0.2);
  --pad: clamp(1.25rem, 3vw, 3.75rem);
  --radius: 0.15rem;
  --display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 101;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

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

.noise {
  position: fixed;
  z-index: 99;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 4.75rem;
  height: 4.75rem;
  display: none;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cursor span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cursor.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.section-shell {
  width: 100%;
  padding-inline: var(--pad);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 5.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: min-height 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  min-height: 4.3rem;
  background: rgba(244, 244, 241, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  background: transparent;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.55);
}

.brand-name {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.desktop-nav a,
.availability {
  position: relative;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.availability {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.availability > span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(5, 5, 5, 0.35);
  animation: pulse 2.2s infinite;
}

.menu-toggle {
  justify-self: end;
  width: 2.9rem;
  height: 2.9rem;
  display: none;
  place-content: center;
  gap: 0.38rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 1px;
  display: block;
  background: var(--ink);
  transition: transform 240ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 7rem var(--pad) 2rem;
  color: var(--white);
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
}

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

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--display);
  font-size: clamp(2.8rem, 12vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.mobile-menu nav a span {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.mobile-menu > p {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: max(54rem, 100svh);
  overflow: hidden;
  padding: 7.8rem var(--pad) 4rem;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(5, 5, 5, 0.08) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(5, 5, 5, 0.055) 1px);
  background-size: calc((100vw - (var(--pad) * 2)) / 6) 100%, 100% 8rem;
  background-position: var(--pad) 0, 0 0;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.2rem, 5vh, 4.8rem);
  font-family: var(--display);
  font-size: clamp(5rem, 11.7vw, 12.5rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero-line--offset {
  padding-left: 12.5vw;
}

.hero-line em {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 0.75em;
  font-weight: 400;
  letter-spacing: -0.16em;
  transform: rotate(-8deg) translateY(-0.03em);
}

.hero-line--last {
  font-size: 0.74em;
  letter-spacing: -0.075em;
}

.hero-bottom {
  position: relative;
  z-index: 4;
  width: min(35rem, 42vw);
  margin-top: clamp(4rem, 8vh, 7rem);
}

.hero-intro {
  max-width: 33rem;
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.button {
  min-width: 12.5rem;
  min-height: 3.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: color 220ms ease, background-color 220ms ease;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(0.3rem);
}

.hero-art {
  position: absolute;
  z-index: 3;
  right: clamp(-6rem, -3vw, -2rem);
  bottom: clamp(4rem, 7vh, 6rem);
  width: min(51vw, 49rem);
  transform: rotate(-4.2deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-art__shadow {
  position: absolute;
  z-index: -1;
  inset: 5% -2% 2.1rem 3%;
  background: var(--ink);
  transform: rotate(3deg);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 2.278 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem clamp(2.5rem, 4vw, 4.5rem) 0 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-block: 1px solid var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.ticker i {
  font-style: normal;
  font-size: 0.8rem;
}

.position,
.work,
.process,
.about {
  padding-block: clamp(6rem, 11vw, 11rem);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(3rem, 8.333vw) 1fr;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker--light {
  border-color: rgba(255, 255, 255, 0.42);
}

.position-copy {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(18rem, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.display-copy {
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.25vw, 8.3rem);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.display-copy span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.position-notes {
  display: grid;
  gap: 3rem;
}

.position-notes > p:first-child {
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.micro-note {
  padding-top: 0.9rem;
  border-top: 1px solid var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.section-heading h2,
.capabilities-heading h2,
.contact-heading h2 {
  font-family: var(--display);
  font-size: clamp(4rem, 9.2vw, 10rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 30rem;
  padding-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.55;
}

.filter-bar {
  display: flex;
  gap: 0.55rem;
  margin: clamp(4rem, 7vw, 7rem) 0 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 0.9rem;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.filter-button span {
  font-size: 0.58rem;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.8rem, 5vw, 6rem) clamp(1rem, 2vw, 2rem);
}

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

.project-card {
  min-width: 0;
}

.project-grid.is-single .project-card:not([hidden]) {
  grid-column: 1 / -1;
}

.project-grid.is-single .project-card:not([hidden]) .project-media {
  aspect-ratio: 1.85 / 1;
}

.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
  background: var(--fog);
}

.project-media--wide {
  aspect-ratio: 1.85 / 1;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

.project-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-media--ipticar {
  background: #183159;
}

.project-media--stationi {
  background: #120f19;
}

.project-media--stationi .stationi-card-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stationi-card-glass {
  position: absolute;
  z-index: 1;
  left: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  width: min(66%, 27rem);
  padding: clamp(0.8rem, 2vw, 1.5rem);
  background: rgba(18, 15, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.project-media--stationi .stationi-card-lockup {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.project-card:hover .project-media--stationi .stationi-card-lockup,
.project-card:focus-visible .project-media--stationi .stationi-card-lockup {
  transform: none;
}

.project-media--faculty {
  background: #213655;
}

.project-media--guichet {
  background: #f5f2e7;
}

.project-media--guichet img {
  object-fit: contain;
}

.project-media--jinx {
  background: #ebebeb;
}

.project-media--yolo {
  background: #263c30;
}

.project-media--yolo img {
  object-position: center;
}

.project-media--win-nroh {
  background: #00b389;
}

.project-media--win-nroh img {
  object-position: center;
}

.project-media--arena {
  background: #e2262e;
}

.project-media--arena img {
  object-position: center 46%;
}

.project-card:hover .project-media img,
.project-card:focus-visible .project-media img {
  transform: scale(1.025);
}

.project-media--signature {
  display: grid;
  place-items: center;
  padding: 9%;
}

.project-media--signature img {
  height: auto;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.13);
}

.project-media--mark {
  display: grid;
  place-items: center;
}

.project-media--mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.project-index,
.project-open,
.archive-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  padding: 0.45rem 0.62rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-index {
  top: 0.8rem;
  left: 0.8rem;
}

.project-open {
  right: 0.8rem;
  bottom: 0.8rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 200ms ease, transform 200ms ease;
}

.project-card:hover .project-open,
.project-card:focus-visible .project-open {
  opacity: 1;
  transform: translateY(0);
}

.project-info {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}

.project-info h3 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.project-info p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.project-info .project-type {
  margin: 0;
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.architecture-media svg {
  width: 100%;
  height: 100%;
}

.architecture-lines {
  fill: none;
  stroke: rgba(255, 255, 255, 0.77);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.architecture-points {
  fill: var(--white);
}

.archive-label {
  right: 0.8rem;
  bottom: 0.8rem;
  color: var(--ink);
  background: var(--white);
}

.capabilities {
  padding-block: clamp(6rem, 11vw, 11rem);
  color: var(--white);
  background: var(--ink);
}

.capabilities-heading {
  display: grid;
  grid-template-columns: 2.1fr 0.75fr;
  gap: 4rem;
  align-items: end;
}

.capabilities-heading > p {
  max-width: 20rem;
  padding-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
}

.service-list {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(3rem, 8.333vw) minmax(16rem, 1.7fr) minmax(17rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 8.5rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 220ms ease, background-color 220ms ease, padding-inline 220ms ease;
}

.service-row:hover {
  padding-inline: 1rem;
  color: var(--ink);
  background: var(--white);
}

.service-row > span {
  align-self: start;
  font-size: 0.68rem;
}

.service-row h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.service-row p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.service-row:hover p {
  color: rgba(5, 5, 5, 0.7);
}

.service-row i {
  font-size: 1.5rem;
  font-style: normal;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(3rem, 10vw, 11rem);
}

.process-lead {
  display: grid;
  align-content: space-between;
  gap: 5rem;
}

.process-lead > p {
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.orbit-mark {
  position: relative;
  width: 8.5rem;
  height: 8.5rem;
  display: grid;
  place-items: center;
}

.orbit-mark span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: orbit 6s ease-in-out infinite;
}

.orbit-mark i {
  font-style: normal;
  font-size: 2rem;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-steps li {
  display: grid;
  grid-template-columns: minmax(3rem, 6rem) 1fr;
  gap: 1rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--ink);
}

.process-steps li > span {
  font-size: 0.68rem;
  font-weight: 700;
}

.process-steps h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.process-steps p {
  max-width: 35rem;
  margin-top: 0.8rem;
  color: var(--muted);
}

.about {
  background: var(--fog);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.about-title > p {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.055em;
}

.about-title h2 {
  font-family: var(--display);
  font-size: clamp(4.5rem, 10.5vw, 11.5rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.about-copy {
  padding-top: 1rem;
}

.about-copy > p {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.52;
  letter-spacing: -0.022em;
}

.about-copy > p + p {
  margin-top: 1.4rem;
}

.about-copy .text-link {
  margin-top: 2.5rem;
}

.about-art {
  grid-column: 1 / -1;
  position: relative;
  min-height: clamp(20rem, 40vw, 43rem);
  margin-top: 3rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about-art img {
  position: absolute;
  width: 67%;
  max-width: none;
  height: 132%;
  top: -16%;
  right: -6%;
  object-fit: contain;
  transform: scale(1.25);
  opacity: 0.97;
}

.about-art p {
  position: absolute;
  z-index: 2;
  left: 4%;
  bottom: 6%;
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

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

.contact-top {
  padding-block: clamp(6rem, 11vw, 11rem) 4rem;
}

.contact-heading > p {
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
}

.contact-heading h2 {
  font-size: clamp(5.2rem, 14vw, 14.5rem);
}

.contact-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-link {
  position: relative;
  min-height: 10rem;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: color 220ms ease, background-color 220ms ease;
}

.contact-link:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.contact-link > span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-link i {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.6rem;
  font-style: normal;
}

.contact-note {
  max-width: 34rem;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 2rem;
  align-items: end;
  padding-block: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark--footer {
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.footer-year {
  text-align: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.is-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(2rem);
}

body.is-ready .reveal {
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.is-ready .hero-line:nth-child(2) {
  transition-delay: 80ms;
}

body.is-ready .hero-line:nth-child(3) {
  transition-delay: 150ms;
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.5rem rgba(5, 5, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 5, 5, 0);
  }
}

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

@keyframes orbit {
  50% {
    transform: rotate(180deg) scaleX(0.65);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (pointer: fine) {
  .cursor {
    display: grid;
  }

  [data-cursor] {
    cursor: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .availability {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
  }

  .menu-open .site-header {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
  }

  .menu-open .menu-toggle {
    border-color: var(--white);
  }

  .menu-open .menu-toggle span {
    background: var(--white);
  }

  .hero {
    min-height: auto;
    padding-bottom: 7rem;
  }

  .hero-title {
    font-size: 12.3vw;
  }

  .hero-bottom {
    width: min(30rem, 52vw);
  }

  .hero-art {
    right: -7rem;
    width: 55vw;
  }

  .position-copy,
  .section-heading,
  .capabilities-heading,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .position-notes {
    max-width: 36rem;
    margin-left: auto;
  }

  .section-heading > p,
  .capabilities-heading > p {
    margin-left: auto;
  }

  .about-copy {
    max-width: 38rem;
    margin-left: auto;
  }

  .service-row {
    grid-template-columns: 3.5rem minmax(13rem, 1.5fr) minmax(15rem, 1fr) auto;
  }

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

  .footer-links,
  .footer-year {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 1.1rem;
  }

  html {
    scroll-padding-top: 4.8rem;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 4.6rem;
    padding-block: 0.65rem;
  }

  .mobile-menu nav a {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    font-size: clamp(2.25rem, 10vw, 4.4rem);
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    padding-top: 6.2rem;
    padding-bottom: 4.5rem;
  }

  .hero-grid {
    background-size: calc((100vw - (var(--pad) * 2)) / 4) 100%, 100% 7rem;
  }

  .hero-meta p:first-child {
    max-width: 8rem;
  }

  .hero-meta p:last-child {
    text-align: right;
  }

  .hero-title {
    margin-top: 2.8rem;
    font-size: clamp(4.25rem, 20.8vw, 8rem);
    line-height: 0.76;
  }

  .hero-line--offset {
    padding-left: 0;
  }

  .hero-line--last {
    font-size: 0.59em;
    line-height: 1.05;
    letter-spacing: -0.07em;
  }

  .hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 0.8rem);
    margin: 4.2rem -0.8rem 0 0;
    transform: rotate(-4deg);
  }

  .hero-art figcaption {
    padding-right: 2.5rem;
  }

  .hero-bottom {
    width: 100%;
    margin-top: 4rem;
  }

  .hero-intro {
    max-width: 29rem;
    font-size: 1.1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .section-kicker {
    grid-template-columns: 2.6rem 1fr;
    margin-bottom: 3.8rem;
  }

  .position,
  .work,
  .process,
  .about,
  .capabilities,
  .contact-top {
    padding-block: 5.5rem;
  }

  .display-copy {
    font-size: clamp(3.3rem, 16.5vw, 6.2rem);
  }

  .position-copy {
    gap: 3rem;
  }

  .position-notes {
    gap: 2rem;
    margin-left: 0;
  }

  .section-heading {
    gap: 2rem;
  }

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

  .section-heading > p,
  .capabilities-heading > p {
    margin-left: 0;
  }

  .filter-bar {
    margin-top: 3.5rem;
  }

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

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

  .project-media,
  .project-media--wide {
    aspect-ratio: 1.18 / 1;
  }

  .project-media--ipticar img {
    object-fit: cover;
  }

  .project-media--wide img {
    object-position: center;
  }

  .project-open {
    opacity: 1;
    transform: none;
  }

  .project-info {
    gap: 1rem;
  }

  .project-info .project-type {
    display: none;
  }

  .capabilities-heading {
    gap: 2rem;
  }

  .service-row {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    min-height: 0;
    padding-block: 1.7rem;
  }

  .service-row h3,
  .service-row p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .service-row h3 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .service-row p {
    grid-column: 2 / -1;
    max-width: 27rem;
  }

  .service-row i {
    grid-column: 3;
    grid-row: 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .process-lead {
    gap: 3.5rem;
  }

  .orbit-mark {
    width: 6.5rem;
    height: 6.5rem;
  }

  .about-grid {
    gap: 3rem;
  }

  .about-title h2 {
    font-size: clamp(4.2rem, 19vw, 7rem);
  }

  .about-copy {
    margin-left: 0;
  }

  .about-art {
    min-height: 28rem;
    margin-top: 1rem;
  }

  .about-art img {
    width: 118%;
    height: 100%;
    top: 0;
    right: -45%;
    transform: scale(1.2);
  }

  .about-art p {
    font-size: clamp(3.25rem, 15.5vw, 5.8rem);
  }

  .contact-heading h2 {
    font-size: clamp(5rem, 22vw, 9rem);
  }

  .contact-actions {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .contact-link {
    min-height: 8.5rem;
    padding: 1.5rem 0;
  }

  .contact-link:first-child {
    border-right: 0;
  }

  .contact-link i {
    top: 1.5rem;
    right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
  }

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

  .footer-links {
    justify-self: end;
  }

  .footer-year {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 410px) {
  .brand-name {
    display: none;
  }

  .hero-title {
    font-size: 20vw;
  }

  .hero-meta {
    font-size: 0.59rem;
  }

  .display-copy,
  .section-heading h2,
  .capabilities-heading h2,
  .about-title h2 {
    font-size: 15.5vw;
  }

  .project-info h3 {
    font-size: 1.3rem;
  }

  .footer-links {
    gap: 0.8rem;
  }
}

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

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

  body.is-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
