@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --paper: #efeee8;
  --paper-deep: #e5e3da;
  --white: #f7f5ef;
  --muted: #7c7a74;
  --acid: #a0e0ab;
  --amber: #ffac2e;
  --oxblood: #a52d25;
  --shell: min(1440px, calc(100vw - 72px));
  --ease: cubic-bezier(.19, 1, .22, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: #777 var(--ink);
  scrollbar-width: thin;
}

section[id],
footer[id] {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "General Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .25s ease;
}

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

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

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  color: var(--white);
  transition: height .4s var(--ease), background-color .4s ease, border-color .4s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(11, 11, 11, .78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.wordmark {
  width: max-content;
  display: inline-flex;
  gap: .34em;
  align-items: center;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span:last-child {
  font-weight: 300;
}

.main-nav {
  display: flex;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
}

.main-nav a,
.lang-switch button,
.site-footer__inner > a:last-child {
  position: relative;
  border: 0;
  background: none;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.main-nav a::after,
.site-footer__inner > a:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.site-footer__inner > a:last-child:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  gap: 28px;
  align-items: center;
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switch span {
  opacity: .35;
}

.lang-switch button {
  padding: 5px 0;
  opacity: .42;
  transition: opacity .25s ease;
}

.lang-switch button[aria-pressed="true"],
.lang-switch button:hover {
  opacity: 1;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.menu-button__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-button__icon {
  position: relative;
  width: 22px;
  height: 14px;
}

.menu-button__icon i {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: top .35s var(--ease), transform .35s var(--ease);
}

.menu-button__icon i:first-child {
  top: 3px;
}

.menu-button__icon i:last-child {
  top: 10px;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 44%, rgba(165, 45, 37, .13), transparent 32%),
    radial-gradient(circle at 66% 34%, rgba(255, 172, 46, .08), transparent 25%),
    var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, .52) 0%, rgba(11, 11, 11, .18) 48%, rgba(11, 11, 11, .04) 100%),
    url("/assets/images/hero-cover-v2.webp") center / cover no-repeat;
  opacity: .92;
  transform: scale(1.01);
}

.thread-canvas,
.hero-glow,
.grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.thread-canvas {
  z-index: -1;
  opacity: .34;
  mix-blend-mode: screen;
}

.hero-glow {
  z-index: -2;
  background: radial-gradient(circle at var(--glow-x, 70%) var(--glow-y, 45%), rgba(255, 172, 46, .12), transparent 26%);
  filter: blur(24px);
}

.grain {
  z-index: 0;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' 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)'/%3E%3C/svg%3E");
  background-size: 160px;
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(112px, 13vh, 156px);
  padding-bottom: 34px;
}

.eyebrow,
.section-label,
.clients__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__eyebrow {
  width: max-content;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px;
  color: rgba(255, 255, 255, .7);
}

.hero__title {
  width: 100%;
  margin: auto 0 clamp(30px, 5vh, 60px);
  font-size: clamp(66px, 10.9vw, 176px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .79;
  text-wrap: balance;
}

.hero__title > span {
  display: block;
}

.hero__title > span:nth-child(2) {
  margin-left: 13.5vw;
}

.hero__title > span:nth-child(3) {
  margin-left: 5vw;
}

.hero__title-accent {
  width: max-content;
  max-width: 100%;
  padding-right: .08em;
  background: linear-gradient(100deg, var(--acid) 0%, var(--amber) 48%, #d76732 72%, var(--oxblood) 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.08em;
  animation: gradient-shift 9s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
  to { background-position: 100% 0; }
}

.hero__bottom {
  display: grid;
  grid-template-columns: minmax(260px, 480px) auto;
  gap: 52px;
  align-items: end;
  justify-content: space-between;
}

.hero__intro {
  color: rgba(255, 255, 255, .68);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.button {
  min-height: 52px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  transition: color .45s var(--ease), background-color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}

.button span:last-child {
  font-size: 18px;
  transition: transform .45s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span:last-child {
  transform: translate(2px, 2px);
}

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

.button--light:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .08);
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 121px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  animation: scroll-line 2.2s var(--ease) infinite;
}

@keyframes scroll-line {
  45%, 100% { transform: translateX(100%); }
}

.section {
  padding-block: clamp(104px, 12vw, 184px);
}

.section-label {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.section-label span:first-child {
  color: rgba(11, 11, 11, .38);
  font-variant-numeric: tabular-nums;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 36px;
}

.manifesto__body {
  display: grid;
  gap: clamp(56px, 8vw, 116px);
}

.display-title {
  max-width: 12.8ch;
  font-size: clamp(52px, 7.2vw, 112px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
}

.manifesto__copy {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 88px);
  margin-left: auto;
  color: #5f5d57;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.55;
}

.work {
  padding-top: 0;
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 104px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(11, 11, 11, .2);
}

.section-title {
  font-size: clamp(54px, 8vw, 126px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .8;
}

.section-note {
  max-width: 31ch;
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(72px, 8vw, 128px) 24px;
}

.project {
  grid-column: span 5;
}

.project__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project__link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 8px;
}

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

.project:nth-child(3) {
  grid-column: 1 / span 5;
}

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

.project:nth-child(5) {
  grid-column: 2 / span 5;
}

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

.project__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #161616;
}

.project__media--landscape {
  aspect-ratio: 16 / 10;
}

.project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  pointer-events: none;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.project__link:hover .project__media img,
.project__link:focus-visible .project__media img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.project__index {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.project__open {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 245, 239, .94);
  color: var(--ink);
  font-size: 19px;
  opacity: 0;
  transform: translateY(8px) rotate(-12deg);
  transition: opacity .45s var(--ease), transform .55s var(--ease), background-color .35s ease;
}

.project__link:hover .project__open,
.project__link:focus-visible .project__open {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.project__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: baseline;
  padding-top: 16px;
}

.project__caption h3 {
  overflow: hidden;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project__caption p,
.project__caption time {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.approach {
  position: relative;
  margin-top: clamp(104px, 12vw, 184px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.approach::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 52%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255, 172, 46, .18);
  border-radius: 45% 55% 61% 39% / 47% 38% 62% 53%;
  transform: rotate(18deg);
  box-shadow: 0 0 120px rgba(165, 45, 37, .08), inset 0 0 120px rgba(160, 224, 171, .04);
}

.approach::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 60%;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(160, 224, 171, .12);
  border-radius: 57% 43% 35% 65% / 40% 58% 42% 60%;
  transform: rotate(-24deg);
}

.approach .shell {
  position: relative;
  z-index: 1;
}

.section-head--light {
  border-color: rgba(255, 255, 255, .17);
}

.section-head--light .section-label,
.section-head--light .section-label span:first-child {
  color: rgba(255, 255, 255, .43);
}

.section-head--light .section-title {
  max-width: 9.5ch;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .9;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  min-height: 260px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto 1fr;
  gap: 36px 22px;
  align-content: start;
  padding: 32px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.process-step__number {
  color: rgba(255, 255, 255, .35);
  font-size: 11px;
  letter-spacing: .12em;
}

.process-step h3 {
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.process-step p {
  grid-column: 2;
  max-width: 42ch;
  color: rgba(255, 255, 255, .52);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.services {
  background: var(--paper);
}

.services-list {
  border-top: 1px solid rgba(11, 11, 11, .22);
}

.service {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 72px minmax(220px, 1fr) minmax(260px, .9fr) 40px;
  gap: 28px;
  align-items: center;
  min-height: 138px;
  border-bottom: 1px solid rgba(11, 11, 11, .22);
  transition: padding .55s var(--ease), background-color .55s var(--ease), color .55s var(--ease);
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease);
}

.service:hover {
  padding-inline: 22px;
  color: var(--white);
}

.service:hover::before {
  transform: scaleY(1);
}

.service__number {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}

.service h3 {
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.service p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  transition: color .55s var(--ease);
}

.service:hover p {
  color: rgba(255, 255, 255, .55);
}

.service__mark {
  color: var(--amber);
  font-size: 22px;
  opacity: 0;
  transform: rotate(-35deg) scale(.5);
  transition: opacity .45s var(--ease), transform .55s var(--ease);
}

.service:hover .service__mark {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.clients {
  padding: 46px 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: var(--ink);
  color: var(--white);
}

.clients__label {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .38);
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee__track {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  padding-right: 28px;
  animation: marquee 38s linear infinite;
}

.marquee__track span {
  font-size: clamp(42px, 6.4vw, 104px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1;
  white-space: nowrap;
}

.marquee__track i {
  color: var(--amber);
  font-size: clamp(14px, 1.5vw, 24px);
  font-style: normal;
}

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

.contact {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 78% 45%, rgba(165, 45, 37, .15), transparent 36%);
}

.contact__art {
  position: absolute;
  top: 50%;
  right: -4vw;
  z-index: -1;
  width: min(48vw, 700px);
  transform: translateY(-50%);
  opacity: .88;
}

.contact__art svg {
  width: 100%;
  overflow: visible;
}

.contact__art path {
  fill: none;
  stroke: url(#contact-gradient);
  stroke-linecap: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 22px rgba(255, 172, 46, .18));
}

.contact__art path:nth-child(2) {
  stroke-width: 1.4;
  opacity: .55;
}

.contact__art path:nth-child(3) {
  stroke-width: .8;
  opacity: .4;
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  margin-bottom: 48px;
  color: rgba(255, 255, 255, .42);
}

.contact h2 {
  max-width: 10ch;
  font-size: clamp(64px, 9.3vw, 148px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .85;
}

.contact h2 span {
  display: block;
}

.contact h2 span:last-child {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .72);
}

.contact__email {
  width: max-content;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: clamp(54px, 7vw, 92px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  font-size: clamp(22px, 2.5vw, 38px);
  letter-spacing: -.025em;
  text-decoration: none;
  transition: border-color .35s ease, color .35s ease;
}

.contact__email:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.contact__email span {
  transition: transform .45s var(--ease);
}

.contact__email:hover span {
  transform: translate(4px, -4px);
}

.contact__meta {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 92px;
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.site-footer__inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__inner p {
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer__inner > a:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, .68);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(1440px, calc(100vw - 48px));
  }

  .site-header {
    padding-inline: 24px;
  }

  .main-nav {
    gap: 24px;
  }

  .hero__title {
    font-size: clamp(66px, 11.4vw, 140px);
  }

  .hero__bottom {
    grid-template-columns: minmax(260px, 440px) auto;
    gap: 28px;
  }

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

  .project__caption p {
    grid-row: 2;
  }

  .project__caption time {
    grid-column: 2;
    grid-row: 1;
  }

  .service {
    grid-template-columns: 54px minmax(210px, 1fr) minmax(230px, .9fr) 28px;
    gap: 18px;
  }
}

@media (max-width: 840px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    padding: 92px 18px 36px;
    background: rgba(11, 11, 11, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .4s ease, transform .5s var(--ease), visibility .4s;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 82px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: clamp(30px, 8vw, 54px);
    font-weight: 400;
    letter-spacing: -.045em;
    text-transform: none;
  }

  .main-nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    gap: 22px;
  }

  .menu-button {
    display: flex;
  }

  .hero__inner {
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .hero::before {
    background-position: 62% center;
    opacity: .82;
  }

  .thread-canvas {
    opacity: .24;
  }

  .hero__title {
    margin-bottom: 40px;
    font-size: clamp(60px, 15.6vw, 118px);
    line-height: .82;
  }

  .hero__title > span:nth-child(2) {
    margin-left: 5vw;
  }

  .hero__title > span:nth-child(3) {
    margin-left: 0;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__intro {
    max-width: 560px;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 104px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .manifesto__body {
    gap: 60px;
  }

  .display-title {
    font-size: clamp(48px, 11vw, 84px);
  }

  .manifesto__copy {
    margin-left: 0;
  }

  .section-head {
    grid-template-columns: 1fr auto;
    gap: 32px 16px;
    align-items: end;
  }

  .section-head .section-label {
    grid-column: 1 / -1;
  }

  .section-title {
    font-size: clamp(54px, 13vw, 96px);
  }

  .section-note {
    max-width: 24ch;
  }

  .project-grid {
    gap-block: 78px;
  }

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

  .project:nth-child(even) {
    width: 84%;
    margin-left: auto;
  }

  .project__media,
  .project__media--landscape {
    aspect-ratio: 16 / 10;
  }

  .approach {
    margin-top: 104px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 230px;
  }

  .service {
    grid-template-columns: 46px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 28px 0;
  }

  .service p {
    grid-column: 2;
    max-width: 48ch;
  }

  .service__mark {
    position: absolute;
    top: 34px;
    right: 0;
  }

  .service:hover {
    padding-inline: 16px;
  }

  .contact {
    min-height: 820px;
  }

  .contact__art {
    right: -20vw;
    width: 78vw;
    opacity: .58;
  }

  .contact h2 {
    font-size: clamp(60px, 13.5vw, 104px);
  }
}

@media (max-width: 560px) {
  .header-actions {
    gap: 16px;
  }

  .lang-switch {
    gap: 5px;
  }

  .lang-switch button {
    font-size: 10px;
  }

  .menu-button__label {
    display: none;
  }

  .hero__inner {
    padding-top: 94px;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero__eyebrow {
    font-size: 9px;
  }

  .hero__title {
    margin-top: clamp(72px, 14vh, 132px);
    margin-bottom: auto;
    font-size: clamp(54px, 16.9vw, 88px);
    line-height: .84;
  }

  .hero__title > span:nth-child(2) {
    margin-left: 0;
  }

  .hero__bottom {
    margin-top: 48px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__meta {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .section {
    padding-block: 88px;
  }

  .section-label {
    gap: 18px;
  }

  .manifesto {
    gap: 44px;
  }

  .display-title {
    font-size: clamp(43px, 13vw, 64px);
    line-height: .98;
  }

  .manifesto__copy {
    grid-template-columns: 1fr;
    gap: 24px;
    font-size: 16px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 52px;
  }

  .section-head .section-label,
  .section-title,
  .section-note {
    grid-column: 1;
    justify-self: start;
  }

  .section-title {
    font-size: clamp(50px, 17vw, 78px);
  }

  .section-note {
    max-width: 34ch;
  }

  .project-grid {
    gap-block: 62px;
  }

  .project:nth-child(even) {
    width: 100%;
  }

  .project__media,
  .project__media--landscape {
    aspect-ratio: 16 / 10;
  }

  .project--wide .project__media {
    aspect-ratio: 16 / 10;
  }

  .project__caption h3 {
    font-size: 21px;
  }

  .project__caption p,
  .project__caption time {
    font-size: 9px;
  }

  .approach {
    margin-top: 88px;
  }

  .section-head--light .section-title {
    font-size: clamp(48px, 14vw, 68px);
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 36px 1fr;
    gap: 24px 14px;
    padding: 28px 0 38px;
  }

  .process-step h3 {
    font-size: 29px;
  }

  .process-step p {
    font-size: 14px;
  }

  .service {
    grid-template-columns: 32px 1fr;
  }

  .service h3 {
    padding-right: 28px;
    font-size: 30px;
  }

  .service p {
    font-size: 14px;
  }

  .marquee__track {
    gap: 18px;
    padding-right: 18px;
  }

  .contact {
    min-height: 690px;
  }

  .contact .eyebrow {
    margin-bottom: 32px;
  }

  .contact h2 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .contact__email {
    font-size: 22px;
  }

  .contact__meta {
    display: grid;
    gap: 9px;
    margin-top: 36px;
    font-size: 9px;
  }

  .site-footer__inner {
    min-height: 120px;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-block: 26px;
  }

  .site-footer__inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (hover: none) {
  .service__mark {
    opacity: .55;
    transform: none;
  }

  .service:hover {
    padding-inline: 0;
    color: inherit;
  }

  .service:hover::before {
    transform: scaleY(0);
  }

  .service:hover p {
    color: var(--muted);
  }
}

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

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

  .marquee__track {
    animation: none;
    transform: none;
  }

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