@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("assets/fonts/roboto-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --paper: #e9e7df;
  --acid: #d8ff32;
  --white: #f5f4ef;
  --gray: #9c9c96;
  --line-dark: rgba(11, 11, 11, 0.22);
  --line-light: rgba(255, 255, 255, 0.25);
  --page-pad: clamp(20px, 3.1vw, 52px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Archivo", "Apple SD Gothic Neo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-loader {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: var(--page-pad);
  background: var(--acid);
  color: var(--ink);
  transition: transform 900ms var(--ease) 200ms;
}

body.is-ready .page-loader {
  transform: translateY(-105%);
}

.loader-mark {
  display: flex;
  justify-content: space-between;
  font-size: clamp(54px, 12vw, 190px);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.075em;
}

.loader-line {
  height: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
  animation: load-line 1s var(--ease) both;
}

@keyframes load-line {
  from { transform: scaleX(0); }
}

.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: 24px var(--page-pad);
  border-bottom: 1px solid transparent;
  color: var(--white);
  mix-blend-mode: difference;
  transition: padding 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: rgba(255, 255, 255, 0.35);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: max-content;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wordmark-dot {
  font-size: 0.55em;
}

.header-meta {
  display: flex;
  gap: 32px;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
}

.menu-button,
.menu-close {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.menu-button-icon {
  display: grid;
  gap: 5px;
  width: 34px;
}

.menu-button-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.menu-button-icon i:last-child {
  width: 62%;
  justify-self: end;
  transition: width 260ms ease;
}

.menu-button:hover .menu-button-icon i:last-child {
  width: 100%;
}

.site-menu {
  position: fixed;
  z-index: 120;
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  width: min(760px, 82vw);
  min-height: 100dvh;
  padding: 28px clamp(24px, 5vw, 64px) 36px;
  background: var(--acid);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform 650ms var(--ease);
  visibility: hidden;
}

.site-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.menu-backdrop {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark-menu {
  font-size: 18px;
}

.close-cross {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
}

.close-cross::before,
.close-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.close-cross::after {
  transform: rotate(-45deg);
}

.menu-nav {
  display: grid;
  margin: auto 0;
}

.menu-nav a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  padding: 9px 0 5px;
}

.menu-nav small {
  margin-top: 0.8em;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
}

.menu-nav span {
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.065em;
  transition: transform 260ms var(--ease);
}

.menu-nav a:hover span,
.menu-nav a:focus-visible span {
  transform: translateX(16px);
}

.menu-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  align-items: end;
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  line-height: 1.6;
}

.menu-bottom p {
  margin: 0;
}

.menu-bottom div {
  display: grid;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #151515;
}

.hero-media,
.hero-media img,
.hero-wash,
.film-grain {
  position: absolute;
  inset: 0;
}

.hero-media img {
  transform: scale(1.035);
  filter: saturate(0.76) contrast(1.06);
  transition: opacity 500ms ease, transform 1.1s var(--ease), filter 500ms ease;
}

.hero-media img.is-changing {
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.2) blur(8px);
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.06) 58%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 42%, rgba(0,0,0,0.7) 100%);
}

.film-grain {
  opacity: 0.13;
  pointer-events: none;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  animation: grain 0.22s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -1%); }
  75% { transform: translate(1%, 2%); }
}

.hero-side-label {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: calc(var(--page-pad) - 7px);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.hero-content {
  position: absolute;
  z-index: 4;
  inset: auto var(--page-pad) clamp(52px, 7vh, 90px);
  width: calc(100% - var(--page-pad) * 2);
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  width: min(63vw, 1050px);
  margin-bottom: clamp(18px, 3vh, 38px);
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.hero-kicker b {
  color: var(--acid);
  font-weight: 400;
}

.hero-title-wrap {
  max-width: 80vw;
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: clamp(12px, 1.1vw, 16px);
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(68px, 12.2vw, 195px);
  font-weight: 700;
  line-height: 0.73;
  letter-spacing: -0.085em;
  overflow-wrap: anywhere;
  transition: opacity 240ms ease, transform 500ms var(--ease);
}

.hero h1.is-changing,
.hero-subtitle.is-changing {
  opacity: 0;
  transform: translateY(24px);
}

.hero-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid currentColor;
  padding: 0 0 8px;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
}

.arrow {
  font-size: 27px;
  transition: transform 260ms var(--ease);
}

.hero-link:hover .arrow {
  transform: translate(5px, 5px);
}

.hero-selector {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: var(--page-pad);
  width: clamp(180px, 17vw, 260px);
  transform: translateY(-45%);
}

.hero-selector button {
  display: grid;
  grid-template-columns: 28px 1fr;
  width: 100%;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  text-align: left;
  opacity: 0.46;
  transition: opacity 200ms ease, color 200ms ease;
}

.hero-selector button:hover,
.hero-selector button.is-active {
  opacity: 1;
}

.hero-selector button.is-active {
  color: var(--acid);
}

.hero-selector span,
.hero-selector b {
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  font-weight: 400;
}

.selector-progress {
  height: 2px;
  margin-top: 14px;
  background: rgba(255,255,255,0.24);
}

.selector-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform-origin: left;
}

.selector-progress span.is-running {
  animation: selector-timer 6s linear both;
}

@keyframes selector-timer {
  from { transform: scaleX(0); }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 7px;
  font-family: "Roboto Mono", monospace;
  font-size: 8px;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 19px;
  background: currentColor;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  50% { transform: scaleY(0.4); transform-origin: bottom; }
}

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

.section-index {
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  min-height: 104vh;
  padding: clamp(100px, 13vw, 210px) var(--page-pad) 100px;
  overflow: hidden;
}

.manifesto-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 25px;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
}

.manifesto h2 {
  margin: 0;
  font-size: clamp(54px, 8.6vw, 136px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.manifesto h2 em,
.contact-main h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 7vw, 120px);
  width: min(730px, 75%);
  margin: 80px 0 0 auto;
}

.manifesto-detail p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.65;
  word-break: keep-all;
}

.orbit-stamp {
  position: absolute;
  right: clamp(18px, 5vw, 75px);
  bottom: 40px;
  display: grid;
  place-items: center;
  width: clamp(110px, 13vw, 180px);
  aspect-ratio: 1;
}

.orbit-stamp svg {
  position: absolute;
  inset: 0;
  animation: stamp-spin 18s linear infinite;
}

.orbit-stamp text {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.orbit-stamp span {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
}

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

.work-section {
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--ink);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 70px;
}

.work-header h2,
.services header h2 {
  margin: 28px 0 0;
  font-size: clamp(72px, 12vw, 186px);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.085em;
}

.work-header sup {
  display: inline-block;
  margin-left: 10px;
  color: var(--acid);
  font-family: "Roboto Mono", monospace;
  font-size: 0.08em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: top;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.work-filter button {
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 8px 13px 7px;
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.work-filter button:hover,
.work-filter button.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: clamp(70px, 10vw, 150px);
}

.project-card {
  grid-column: span 5;
}

.project-card:nth-child(even) {
  grid-column: 7 / span 6;
}

.project-card-wide {
  grid-column: span 7;
}

.project-card-wide:nth-child(even) {
  grid-column: 6 / span 7;
}

.project-card-tall {
  padding: 7vw 3vw 0;
}

.project-card.is-hidden {
  display: none;
}

.project-card button {
  display: block;
  width: 100%;
  text-align: left;
}

.project-image {
  position: relative;
  aspect-ratio: 4 / 2.75;
  overflow: hidden;
  background: #222;
}

.project-card-tall .project-image {
  aspect-ratio: 3 / 4;
}

.project-image::after {
  content: "VIEW PROJECT ↗";
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: var(--acid);
  color: var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  transform: translateY(105%);
  transition: transform 320ms var(--ease);
}

.project-image img {
  filter: saturate(0.75);
  transition: transform 900ms var(--ease), filter 400ms ease;
}

.project-card button:hover .project-image img,
.project-card button:focus-visible .project-image img {
  transform: scale(1.035);
  filter: saturate(1);
}

.project-card button:hover .project-image::after,
.project-card button:focus-visible .project-image::after {
  transform: translateY(0);
}

.project-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: baseline;
  margin-top: 14px;
}

.project-meta h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.project-meta span {
  font-family: "Roboto Mono", monospace;
  font-size: 8px;
  white-space: nowrap;
}

.services {
  padding: clamp(100px, 12vw, 180px) var(--page-pad) 50px;
}

.services header {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  align-items: start;
}

.services header h2 {
  margin-top: 0;
}

.service-list {
  margin-top: 140px;
  border-top: 1px solid var(--line-dark);
}

.service-list article {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 0.55fr;
  gap: 20px;
  align-items: start;
  padding: 35px 0 42px;
  border-bottom: 1px solid var(--line-dark);
}

.service-list article > span,
.service-list p {
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  line-height: 1.65;
}

.service-list h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.service-list p {
  margin: 0;
}

.approach-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 130px;
  padding: 24px 0 0;
  border-top: 1px solid var(--ink);
}

.approach-strip div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.approach-strip span {
  font-size: clamp(16px, 1.7vw, 26px);
  font-weight: 500;
}

.approach-strip small {
  font-family: "Roboto Mono", monospace;
  font-size: 8px;
}

.approach-strip i {
  font-style: normal;
}

.contact-section {
  position: relative;
  min-height: 100svh;
  padding: 90px var(--page-pad) 60px;
  overflow: hidden;
  background: #171717;
}

.contact-bg,
.contact-bg::after {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  filter: grayscale(1) contrast(1.25);
  opacity: 0.35;
  transform: scale(1.05);
}

.contact-bg::after {
  content: "";
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.15)), linear-gradient(0deg, rgba(0,0,0,.7), transparent 60%);
}

.contact-top,
.contact-main {
  position: relative;
  z-index: 2;
}

.contact-top {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
}

.contact-top p {
  margin: 0;
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.55;
}

.contact-main {
  position: absolute;
  right: var(--page-pad);
  bottom: 55px;
  left: var(--page-pad);
}

.contact-main h2 {
  margin: 0;
  font-size: clamp(64px, 11.5vw, 176px);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.085em;
}

.contact-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 40px;
  padding-top: 17px;
  border-top: 1px solid var(--line-light);
}

.contact-actions a {
  display: flex;
  justify-content: space-between;
  width: min(680px, 60vw);
  font-size: clamp(18px, 2.2vw, 34px);
  letter-spacing: -0.03em;
}

.contact-actions button {
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 45px var(--page-pad) 55px;
  background: var(--acid);
  color: var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 8px;
  line-height: 1.55;
}

.footer-wordmark {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
}

.footer-location,
.site-footer nav {
  display: grid;
  gap: 3px;
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.project-dialog {
  width: min(1180px, calc(100vw - 40px));
  max-width: none;
  height: min(760px, calc(100dvh - 40px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.project-dialog::backdrop {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  animation: dialog-in 480ms var(--ease) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(25px) scale(.985); }
}

.dialog-media {
  min-height: 0;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(35px, 5vw, 70px);
}

.dialog-copy > div {
  display: flex;
  justify-content: space-between;
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
}

.dialog-copy h2 {
  margin: auto 0 30px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.dialog-copy p {
  margin: 0 0 55px;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.dialog-copy a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: 1px solid var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--acid);
}

.dialog-close span,
.dialog-close span::after {
  display: block;
  width: 21px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

.dialog-close span::after {
  content: "";
  transform: rotate(90deg);
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  padding: 13px 18px;
  background: var(--acid);
  color: var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 800ms ease, transform 900ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header-meta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-side-label { display: none; }
  .hero-selector { top: 115px; right: var(--page-pad); transform: none; }
  .hero-selector button { display: none; }
  .hero-selector button.is-active { display: grid; }
  .selector-progress { width: 150px; }
  .hero-kicker { width: 100%; }
  .hero-title-wrap { max-width: 100%; }
  .hero-link { position: static; width: max-content; margin-top: 38px; }

  .manifesto,
  .services header,
  .contact-top { grid-template-columns: 1fr; gap: 55px; }
  .manifesto { min-height: auto; }
  .manifesto-detail { width: 88%; }

  .work-header { align-items: start; flex-direction: column; gap: 45px; }
  .work-filter { justify-content: flex-start; }
  .project-card,
  .project-card:nth-child(even),
  .project-card-wide,
  .project-card-wide:nth-child(even) { grid-column: span 6; }
  .project-card-tall { padding: 0; }
  .project-card-tall .project-image { aspect-ratio: 3 / 4; }

  .service-list article { grid-template-columns: 70px 1fr; }
  .service-list p { grid-column: 2; }
  .approach-strip { grid-template-columns: 1fr 1fr; }
  .approach-strip i { display: none; }

  .site-footer { grid-template-columns: 1fr 1fr 1fr; }
  .back-to-top { justify-self: start; }
}

@media (max-width: 620px) {
  :root { --page-pad: 18px; }
  .site-header { padding-top: 18px; padding-bottom: 18px; }
  .site-menu { width: 100vw; }
  .wordmark-menu { font-size: 14px; }
  .menu-nav a { grid-template-columns: 34px 1fr; }
  .menu-nav small { margin-top: .55em; }
  .menu-nav span { font-size: clamp(47px, 16vw, 74px); }
  .menu-bottom { grid-template-columns: 1fr 1fr; }
  .menu-bottom > p:last-child { display: none; }
  .loader-mark { flex-direction: column; }

  .hero { min-height: 760px; height: 100svh; }
  .hero-selector { top: 80px; }
  .hero-selector button { grid-template-columns: 24px 1fr; }
  .hero-content { bottom: 70px; }
  .hero-kicker span:last-child { display: none; }
  .hero-subtitle { max-width: 260px; line-height: 1.5; }
  .hero h1 { font-size: clamp(59px, 19vw, 105px); line-height: .8; }
  .scroll-cue { left: auto; right: 18px; transform: none; }

  .manifesto { padding-top: 90px; padding-bottom: 145px; }
  .manifesto h2 { font-size: clamp(48px, 14vw, 80px); }
  .manifesto-detail { grid-template-columns: 1fr; gap: 24px; width: 100%; margin-top: 55px; }
  .orbit-stamp { right: 20px; bottom: 22px; width: 105px; }

  .work-section { padding-top: 90px; }
  .work-header { margin-bottom: 50px; }
  .work-header h2,
  .services header h2 { font-size: clamp(65px, 21vw, 110px); }
  .project-grid { display: block; }
  .project-card { margin-bottom: 75px; }
  .project-card-tall { width: 82%; margin-left: auto; }
  .project-meta { grid-template-columns: 1fr auto; }
  .project-meta h3 { grid-column: 1 / -1; grid-row: 1; font-size: 29px; }
  .project-meta span:first-child { grid-column: 1; grid-row: 2; }
  .project-meta span:last-child { grid-column: 2; grid-row: 2; }

  .services { padding-top: 90px; }
  .service-list { margin-top: 85px; }
  .service-list article { grid-template-columns: 40px 1fr; padding: 27px 0 32px; }
  .service-list h3 { font-size: 38px; }
  .approach-strip { margin-top: 80px; gap: 28px 20px; }

  .contact-section { min-height: 750px; padding-top: 75px; }
  .contact-top { gap: 25px; }
  .contact-main { bottom: 42px; }
  .contact-main h2 { font-size: clamp(53px, 17vw, 90px); line-height: .78; }
  .contact-actions { display: grid; gap: 25px; }
  .contact-actions a { width: 100%; font-size: 17px; }
  .contact-actions button { justify-self: start; }

  .site-footer { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .footer-wordmark { grid-column: 1 / -1; }
  .site-footer > p { display: none; }

  .project-dialog { width: calc(100vw - 20px); height: calc(100dvh - 20px); }
  .project-dialog[open] { grid-template-columns: 1fr; grid-template-rows: 44% 56%; overflow-y: auto; }
  .dialog-copy { padding: 28px 25px; }
  .dialog-copy h2 { margin: 38px 0 22px; }
  .dialog-copy p { margin-bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
