:root {
  --ink: #0d0d0b;
  --paper: #f4f0e8;
  --bone: #fffaf0;
  --acid: #d7ff5f;
  --coral: #ff6b45;
  --blue: #7da7ff;
  --muted: rgba(244, 240, 232, .66);
  --line: rgba(244, 240, 232, .16);
  --dark-line: rgba(13, 13, 11, .14);
  --font-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--ink); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  overflow-x: hidden;
}
body[data-page="home"] {
  height: 100svh;
  overflow: hidden;
}
html:has(body[data-page="home"]) {
  height: 100svh;
  overflow: hidden;
}
body[data-page="home"] main {
  height: 100svh;
  overflow: hidden;
}
body[data-page="home"] main > section:not(.spatial-hero),
body[data-page="home"] .site-footer {
  display: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.08) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: soft-light;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--acid); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(215,255,95,.12), transparent 31%),
    #030303;
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--paper);
}
.preloader__inner {
  width: 100%;
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.preloader__top,
.preloader__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
}
.preloader__mark {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}
.preloader p {
  margin: 0;
  font-size: clamp(4.5rem, 17vw, 18rem);
  letter-spacing: 0;
  line-height: .72;
}
.preloader strong {
  font-size: clamp(2.8rem, 8vw, 8rem);
  font-weight: 400;
  line-height: .8;
  color: var(--acid);
}
.preloader__bottom {
  align-items: center;
}
.preloader__bottom i {
  position: relative;
  display: block;
  width: min(54vw, 720px);
  height: 1px;
  overflow: hidden;
  background: rgba(244,240,232,.18);
}
.preloader__bottom b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--acid);
}
.preloader__curtain, .transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: bottom;
}

.cursor {
  position: fixed;
  z-index: 210;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: width .25s, height .25s, margin .25s, background .25s;
}
.cursor span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  color: var(--paper);
}
.cursor.is-active { width: 72px; height: 72px; margin: -36px 0 0 -36px; background: rgba(244,240,232,.08); }
.cursor.is-active span { opacity: 1; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem clamp(1rem, 3vw, 3rem);
  color: var(--paper);
  mix-blend-mode: difference;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.desktop-nav a, .button {
  padding: .65rem .9rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
}
.spatial-hero ~ * .desktop-nav a,
body[data-page="home"] .desktop-nav a {
  border: 0;
  padding: .2rem 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
}
.nav-cta, .button { background: var(--paper); color: var(--ink); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  align-content: space-between;
  padding: 6rem 1.2rem 1.2rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-100%);
}
.mobile-menu nav { display: grid; gap: .25rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 18vw, 7rem);
  line-height: .85;
  text-transform: uppercase;
}

.section-dark { background: var(--ink); color: var(--paper); }
.section-light { background: var(--paper); color: var(--ink); }
.eyebrow {
  margin: 0 0 1rem;
  font-size: .78rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 7rem clamp(1rem, 4vw, 4rem) 2rem;
  overflow: hidden;
}
.spatial-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  perspective: 1200px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.07), transparent 28%),
    #020202;
}
.spatial-grid {
  position: absolute;
  left: -12vw;
  right: -12vw;
  bottom: -18vh;
  height: 52vh;
  transform: rotateX(69deg);
  transform-origin: top;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 74%, transparent);
}
.spatial-rail {
  position: absolute;
  top: 25vh;
  left: 0;
  right: 0;
  height: min(37vw, 455px);
  --slide-gap: 28px;
  transform-style: preserve-3d;
  transform: rotateX(0deg);
  will-change: transform;
  touch-action: pan-x;
}
.spatial-rail.is-dragging .spatial-card {
  pointer-events: none;
}
.spatial-card {
  position: absolute;
  left: 0;
  top: 0;
  width: min(44vw, 760px);
  height: min(37vw, 455px);
  overflow: hidden;
  border-radius: 20px;
  background: #d8d8d0;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: rotateY(calc((var(--i) - 2) * -10deg));
  cursor: default;
}
.spatial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.18) 45%, rgba(0,0,0,.62));
}
.spatial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .8s;
}
.spatial-card:hover img { transform: scale(1.11); filter: contrast(1.08) saturate(.9); }
.spatial-card span {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  max-width: 11ch;
  color: #111;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: .82;
  text-transform: uppercase;
}
.spatial-card strong {
  position: absolute;
  left: 1.35rem;
  bottom: 1.05rem;
  z-index: 2;
  font-size: clamp(1.1rem, 1.7vw, 2rem);
  letter-spacing: -.03em;
}
.spatial-card em {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  min-height: 2.45rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  color: #050505;
  background: #f4f0e8;
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
  font-style: normal;
  font-size: 0;
  transition: transform .25s ease, background .25s ease;
  cursor: pointer;
}
.spatial-card em::before {
  content: "Visit";
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.spatial-card em:hover {
  transform: translateY(-2px);
  background: #fff;
}
.corner-nav {
  position: absolute;
  z-index: 3;
  bottom: 5.2rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.corner-nav--left { left: clamp(1rem, 5vw, 6.3rem); }
.corner-nav--right { right: clamp(1rem, 5vw, 6.3rem); }
.corner-nav span { color: rgba(255,255,255,.45); padding: 0 .35rem; }
.spatial-copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 3.8rem;
  width: min(28rem, 42vw);
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}
.spatial-copy p { margin: 0; }
.hero--index {
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 24rem);
  grid-template-rows: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(13,13,11,.98), rgba(13,13,11,.82)),
    var(--ink);
}
.hero--index .hero__copy {
  grid-column: 1 / -1;
  align-self: end;
}
.hero--index .hero-title {
  max-width: 14.5ch;
  font-size: clamp(4.2rem, 11.8vw, 13.4rem);
  line-height: .82;
}
.hero-profile {
  position: absolute;
  right: clamp(1rem, 5vw, 6rem);
  top: 18vh;
  width: clamp(10rem, 23vw, 23rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
}
.hero-profile img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}
.hero-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 36rem) auto;
  gap: 2rem;
  grid-column: 1 / -1;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.hero-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.28;
}
.hero-intro p:first-child { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.hero-tabs {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  gap: .45rem;
}
.hero-tabs a {
  padding: .65rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero__visual {
  position: absolute;
  inset: 0;
  opacity: .88;
}
.hero__visual canvas { width: 100%; height: 100%; display: block; }
.hero__copy { position: relative; z-index: 2; }
.hero-title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 17rem);
  font-weight: 400;
  line-height: .77;
  text-transform: uppercase;
}
.hero__bottom {
  display: grid;
  grid-template-columns: minmax(0, 34rem) auto;
  gap: 2rem;
  align-items: end;
  margin-top: 2rem;
}
.hero__bottom p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.25;
}
.scroll-indicator {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: .72rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}
.marquee div {
  width: max-content;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: .85;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(4rem, 9vw, 9rem) clamp(1rem, 4vw, 4rem) 2rem;
  border-bottom: 1px solid var(--line);
}
.section-kicker p:last-child { max-width: 23rem; margin: 0; color: var(--muted); }
.selected-work { position: relative; background: var(--ink); }
.project-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  opacity: .2;
  overflow: hidden;
  pointer-events: none;
}
.project-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.16);
  transform: scale(1.08);
}
.project-stack--index {
  position: relative;
  z-index: 2;
  margin-top: -100svh;
  padding-top: 16vh;
  background: linear-gradient(90deg, rgba(13,13,11,.96), rgba(13,13,11,.34));
}
.project-stack { display: grid; }
.project-row {
  position: relative;
  min-height: 25rem;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(12rem, 22vw);
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(244,240,232,.22);
  overflow: hidden;
}
.project-row > span { color: var(--acid); }
.project-row h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8.8vw, 10rem);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
}
.project-row p { margin: 1rem 0 0; color: var(--muted); }
.project-row figure {
  height: min(46vh, 27rem);
  margin: 0;
  overflow: hidden;
  clip-path: inset(12% 0 12% 0);
}
.project-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s cubic-bezier(.76,0,.24,1);
  z-index: -1;
}
.project-row:hover,
.project-row:focus-visible { color: var(--ink); }
.project-row:hover::before,
.project-row:focus-visible::before {
  transform: scaleY(1);
  transform-origin: bottom;
}
.project-row:hover p,
.project-row:focus-visible p { color: rgba(13,13,11,.62); }
.project-row img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.88) contrast(1.08);
}
.floating-preview {
  position: fixed;
  z-index: 80;
  width: 18rem;
  height: 24rem;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}
.floating-preview img { width: 100%; height: 100%; object-fit: cover; }

.studio-statement {
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 4vw, 4rem);
}
.studio-statement h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 13rem);
  font-weight: 400;
  line-height: .78;
  text-transform: uppercase;
}
.statement-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 30rem) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: end;
  margin-top: 4rem;
}
.statement-grid p { margin: 0; font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.35; }
.statement-grid figure { height: 46rem; margin: 0; overflow: hidden; }
.statement-grid img, .full-image img, .case-hero img { width: 100%; height: 120%; object-fit: cover; }

.services { padding-bottom: clamp(4rem, 8vw, 8rem); }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 6rem minmax(14rem, 28rem);
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.service-item span {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 8rem);
  line-height: .85;
  text-transform: uppercase;
}
.service-item em { color: var(--acid); font-style: normal; }
.service-item small { color: var(--muted); font-size: .95rem; line-height: 1.35; opacity: 0; transform: translateY(12px); }
.service-item:focus-visible, .desktop-nav a:focus-visible, .button:focus-visible, .mega-link:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.process { overflow: hidden; padding: clamp(5rem, 10vw, 10rem) 0; }
.process > .eyebrow { padding-left: clamp(1rem, 4vw, 4rem); }
.process-track {
  display: flex;
  width: max-content;
  padding: 2rem clamp(1rem, 4vw, 4rem);
}
.process-step {
  width: min(78vw, 42rem);
  min-height: 30rem;
  display: grid;
  align-content: space-between;
  padding-right: clamp(2rem, 6vw, 7rem);
}
.process-step span { color: var(--coral); }
.process-step h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
}
.process-step p { max-width: 30rem; margin: 0; font-size: 1.2rem; line-height: 1.35; }

.metrics, .results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.results { grid-template-columns: repeat(3, 1fr); border-color: var(--dark-line); }
.metric {
  min-height: 22rem;
  display: grid;
  align-content: space-between;
  padding: 2rem;
  border-right: 1px solid currentColor;
}
.metric strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: .8;
}
.metric span { max-width: 11rem; text-transform: uppercase; font-size: .8rem; }

.testimonials { padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 4vw, 4rem); overflow: hidden; }
.testimonial-rail {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.testimonial-rail::-webkit-scrollbar { display: none; }
blockquote {
  flex: 0 0 min(84vw, 64rem);
  margin: 0;
  scroll-snap-align: start;
}
blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: .82;
  text-transform: uppercase;
}
cite { display: block; margin-top: 2rem; font-style: normal; }

.final-cta, .next-project {
  min-height: 80svh;
  display: grid;
  place-content: center;
  padding: clamp(4rem, 8vw, 8rem) 1rem;
  text-align: center;
}
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 13rem);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
}
.mega-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 17vw, 18rem);
  line-height: .78;
  text-transform: uppercase;
  color: var(--acid);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.site-footer div { display: grid; gap: .35rem; }
.site-footer p, .site-footer small { margin: 0; color: var(--muted); }
.availability {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  margin-right: .35rem;
  border-radius: 50%;
  background: var(--acid);
}

.case-hero { min-height: 100svh; padding: 8rem clamp(1rem, 4vw, 4rem) 2rem; }
.case-hero figure { height: 52vh; margin: 3rem 0 0; overflow: hidden; }
.case-copy {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 4vw, 4rem);
}
.case-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 400;
  line-height: .85;
  text-transform: uppercase;
}
.case-copy > p { margin: 0; font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.35; }
.case-split { display: grid; grid-template-columns: 1fr 1fr; }
.case-split article { min-height: 30rem; padding: clamp(2rem, 5vw, 5rem); border-right: 1px solid var(--line); }
.case-split span { color: var(--acid); text-transform: uppercase; }
.case-split p { margin: 4rem 0 0; font-size: clamp(1.6rem, 4vw, 4rem); line-height: .95; }
.full-image { height: 100svh; overflow: hidden; }

.char, .word, .line { display: inline-block; }
.line { overflow: hidden; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 92svh; }
  .hero--index { grid-template-columns: 1fr; }
  .hero-profile { right: -5rem; top: 9vh; width: 82vw; opacity: .75; }
  .hero-intro, .hero__bottom, .statement-grid, .case-copy, .case-split { grid-template-columns: 1fr; }
  .hero-tabs { flex-wrap: wrap; }
  .spatial-rail {
    top: 17vh;
    left: 1rem;
    right: 1rem;
    height: 52vh;
    transform: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .spatial-card {
    position: relative;
    width: 82vw;
    height: 52vh;
    transform: none;
    scroll-snap-align: center;
  }
  .spatial-grid { height: 38vh; background-size: 54px 54px; }
  .spatial-copy {
    display: block;
    left: 1rem;
    right: 1rem;
    bottom: 4.2rem;
    width: auto;
    transform: none;
    text-align: left;
  }
  .corner-nav { bottom: 1.1rem; }
  .project-row {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 3rem;
  }
  .project-stage { display: none; }
  .project-stack--index { margin-top: 0; padding-top: 0; background: var(--ink); }
  .project-row figure { height: 62vw; clip-path: inset(0); }
  .service-item { grid-template-columns: 1fr auto; }
  .service-item small { grid-column: 1 / -1; opacity: 1; transform: none; }
  .metrics, .results, .site-footer { grid-template-columns: 1fr; }
  .metric { min-height: 13rem; border-right: 0; border-bottom: 1px solid currentColor; }
  .statement-grid figure { height: 70vw; }
}

@media (max-width: 560px) {
  .hero-title, .studio-statement h2, .final-cta h2, .mega-link { word-break: break-word; }
  .hero__bottom p { font-size: 1rem; }
  .section-kicker { display: grid; }
  .process-step { width: 86vw; min-height: 24rem; }
  blockquote { flex-basis: 90vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .preloader { display: none; }
  .hero__visual { opacity: .22; }
}
    display: flex;
    gap: 1rem;
