:root {
  --black: #090909;
  --black-soft: #151515;
  --paper: #f1f0eb;
  --white: #fff;
  --ink: #111;
  --muted: #74746f;
  --line: rgba(17, 17, 17, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #d9c7a2;
  --signal: #d9ff63;
  --header-height: 82px;
  --pad: clamp(24px, 5vw, 84px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  display: block;
}

::selection {
  background: var(--signal);
  color: var(--black);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--signal);
  color: var(--black);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--signal);
  pointer-events: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 180;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--signal);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 255, 99, 0.72);
  transition:
    width 240ms var(--ease),
    height 240ms var(--ease),
    background 240ms ease;
}

.cursor-ring.is-hovering {
  width: 62px;
  height: 62px;
  background: rgba(217, 255, 99, 0.1);
}

.section-pad {
  padding-inline: var(--pad);
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  transition:
    height 420ms var(--ease),
    background 420ms ease,
    color 420ms ease,
    border-color 420ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(18px);
}

.wordmark {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wordmark svg {
  width: 74px;
  fill: currentColor;
}

.wordmark span {
  display: grid;
  line-height: 1;
}

.wordmark strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 13px;
}

.site-nav > a {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
}

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

.nav-contact {
  padding: 11px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition:
    background 300ms ease,
    color 300ms ease;
}

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

.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: none;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 9px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 320ms var(--ease);
}

.menu-toggle > span:first-child {
  top: 17px;
}

.menu-toggle > span:nth-child(2) {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-slides,
.hero-slide,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition:
    opacity 1500ms ease,
    transform 8500ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 66%);
}

.hero-grid {
  z-index: 2;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, transparent calc(25% - 1px), rgba(255, 255, 255, 0.35) 25%, transparent calc(25% + 1px)),
    linear-gradient(to right, transparent calc(50% - 1px), rgba(255, 255, 255, 0.35) 50%, transparent calc(50% + 1px)),
    linear-gradient(to right, transparent calc(75% - 1px), rgba(255, 255, 255, 0.35) 75%, transparent calc(75% + 1px));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 8vh) var(--pad) 130px;
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: clamp(24px, 4vh, 54px);
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 8.4vw, 138px);
  font-weight: 700;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-right: 0.08em;
  padding-bottom: 0.08em;
}

.hero-line > span {
  display: block;
  transform: translateY(112%);
  animation: title-in 1200ms var(--ease) 180ms forwards;
}

.hero-line:nth-child(2) > span {
  animation-delay: 330ms;
}

.hero-line-indent {
  padding-left: clamp(0px, 10vw, 150px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
}

.reveal-hero {
  opacity: 0;
  transform: translateY(26px);
  animation: reveal-hero 900ms var(--ease) 720ms forwards;
}

.hero-summary {
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(650px, 100%);
  margin-top: clamp(24px, 4vh, 54px);
  margin-left: auto;
}

.hero-summary p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.25vw, 18px);
}

.circle-link {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 11px;
  text-transform: uppercase;
  transition:
    background 300ms ease,
    color 300ms ease;
}

.circle-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.circle-link:hover,
.circle-link:focus-visible {
  background: var(--signal);
  color: var(--black);
}

.hero-footer {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 28px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slide-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-left: auto;
}

.slide-status i {
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 78px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}

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

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

.studio,
.mandates,
.portfolio-head {
  padding-top: clamp(100px, 13vw, 190px);
  padding-bottom: clamp(96px, 12vw, 170px);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}

.section-index-light {
  border-color: var(--line-light);
  color: rgba(255, 255, 255, 0.58);
}

.section-index-light span {
  border-color: var(--line-light);
  color: var(--white);
}

.studio-heading,
.mandates-heading {
  padding-top: clamp(52px, 7vw, 100px);
}

.eyebrow {
  margin-bottom: 22px;
  color: #5f5f5a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.57);
}

.display-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6.7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.display-title em {
  color: transparent;
  font-style: normal;
  font-weight: 500;
  -webkit-text-stroke: 1.2px var(--ink);
}

.display-title-light {
  color: var(--white);
}

.display-title-light em {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.82);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: end;
  margin-top: clamp(60px, 9vw, 130px);
}

.studio-copy {
  max-width: 720px;
  margin-left: clamp(0px, 14vw, 220px);
}

.studio-copy p:not(.lead-copy) {
  max-width: 590px;
  margin-top: 28px;
  color: #555550;
  font-size: 16px;
}

.lead-copy {
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.26;
}

.text-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link svg,
.contact-email svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 300ms var(--ease);
}

.text-link:hover svg,
.text-link:focus-visible svg,
.contact-email:hover svg,
.contact-email:focus-visible svg {
  transform: translateX(6px);
}

.principal-card {
  position: relative;
}

.principal-image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: #ded9cf;
}

.principal-image::before,
.principal-image::after {
  position: absolute;
  z-index: 1;
  width: 36px;
  height: 36px;
  content: "";
  border-color: var(--signal);
}

.principal-image::before {
  top: 15px;
  left: 15px;
  border-top: 2px solid var(--signal);
  border-left: 2px solid var(--signal);
}

.principal-image::after {
  right: 15px;
  bottom: 15px;
  border-right: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
}

.principal-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05);
  transform: scale(1.015);
  transition: transform 900ms var(--ease);
}

.principal-card:hover img {
  transform: scale(1.07);
}

.principal-card figcaption {
  display: grid;
  gap: 6px;
  padding-top: 20px;
}

.principal-card figcaption span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.principal-card figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.principal-card figcaption p {
  color: var(--muted);
  font-size: 13px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(90px, 12vw, 180px);
  border-top: 1px solid var(--line);
}

.metrics article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 30px 24px 0 0;
  border-right: 1px solid var(--line);
}

.metrics article:not(:first-child) {
  padding-left: 30px;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.metrics sup {
  color: #758443;
  font-size: 0.55em;
}

.metrics span:not(.counter) {
  color: var(--muted);
  font-size: 12px;
}

.expertise,
.clients {
  background: var(--black);
  color: var(--white);
}

.expertise-intro {
  display: grid;
  gap: clamp(56px, 8vw, 120px);
  padding-top: clamp(100px, 13vw, 190px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

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

.expertise-panel {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid var(--line-light);
  background: var(--black);
  transition:
    background 500ms ease,
    color 500ms ease;
}

.expertise-panel:nth-child(4) {
  border-right: 0;
}

.expertise-panel-featured {
  grid-column: span 2;
  min-height: 610px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35)),
    url("assets/hero-commercial.jpg") center / cover;
}

.expertise-panel:hover:not(.expertise-panel-featured) {
  background: var(--signal);
  color: var(--black);
}

.panel-number {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.panel-copy {
  position: relative;
  z-index: 2;
}

.panel-label {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.expertise-panel:hover:not(.expertise-panel-featured) .panel-label {
  color: rgba(0, 0, 0, 0.55);
}

.panel-copy h3 {
  max-width: 520px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(29px, 3.4vw, 55px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.panel-copy > p:not(.panel-label) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.expertise-panel:hover:not(.expertise-panel-featured) .panel-copy > p {
  color: rgba(0, 0, 0, 0.68);
}

.panel-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.panel-copy li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 11px;
}

.panel-word {
  position: absolute;
  right: -16px;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Manrope", sans-serif;
  font-size: clamp(88px, 15vw, 220px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.design-capabilities {
  padding-top: clamp(90px, 12vw, 170px);
  padding-bottom: clamp(100px, 13vw, 190px);
}

.design-note {
  width: min(700px, 100%);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.32;
}

.design-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--line-light);
}

.design-list article {
  min-height: 320px;
  padding: 32px 34px 20px 0;
  border-right: 1px solid var(--line-light);
}

.design-list article + article {
  padding-left: 42px;
  border-right: 0;
}

.design-list span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.design-list h3 {
  margin-top: 82px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.design-list p {
  max-width: 470px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
}

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

.mandate-list {
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.mandate-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 360ms var(--ease);
}

.mandate-row:hover {
  padding-inline: 18px;
}

.mandate-number {
  color: var(--muted);
  font-size: 11px;
}

.mandate-row p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mandate-row h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.mandate-type {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.authority-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 72px;
}

.authority-cloud span {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  transition:
    background 250ms ease,
    border-color 250ms ease;
}

.authority-cloud span:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.portfolio {
  background: #e8e6df;
}

.portfolio-head {
  display: grid;
  gap: clamp(50px, 7vw, 100px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filters button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

.filters button:hover,
.filters button:focus-visible,
.filters button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 2px 2px;
  background: var(--black);
}

.project-card {
  position: relative;
  min-height: clamp(400px, 48vw, 680px);
  overflow: hidden;
  background: var(--black-soft);
  color: var(--white);
  transition:
    opacity 500ms ease,
    transform 500ms var(--ease);
}

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

.project-card-tall {
  min-height: clamp(520px, 62vw, 840px);
}

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

.project-grid.is-filtered .project-card {
  grid-column: auto;
  min-height: clamp(440px, 52vw, 700px);
}

.project-card figure {
  position: absolute;
  inset: 0;
}

.project-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82));
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 1100ms var(--ease),
    filter 600ms ease;
}

.project-card:hover img {
  filter: saturate(0.72);
  transform: scale(1.075);
}

.project-meta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 44px);
}

.project-meta span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin-top: 9px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-meta p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  transform: translateY(10px);
  transition:
    max-height 400ms var(--ease),
    opacity 400ms ease,
    transform 400ms var(--ease);
}

.project-card:hover .project-meta p {
  max-height: 40px;
  opacity: 1;
  transform: translateY(0);
}

.statement-band {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 15vw, 220px) var(--pad);
  background: var(--accent);
}

.statement-track {
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  color: rgba(9, 9, 9, 0.2);
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 700;
  letter-spacing: -0.05em;
  animation: marquee 22s linear infinite;
}

.statement-track i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
}

.statement-band blockquote {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 5.2vw, 80px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-align: center;
}

.clients {
  padding-top: clamp(100px, 13vw, 180px);
  padding-bottom: clamp(110px, 14vw, 190px);
  overflow: hidden;
}

.clients-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 46px;
  margin-top: clamp(54px, 8vw, 110px);
}

.clients-heading .eyebrow {
  grid-column: 1 / -1;
}

.clients-heading > p:last-child {
  width: min(330px, 100%);
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.logo-marquee {
  position: relative;
  margin-top: clamp(70px, 9vw, 130px);
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(30px, 7vw, 120px);
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--black), transparent);
}

.logo-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: logo-marquee 36s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-tile {
  width: 210px;
  height: 126px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #f8f7f2;
  transition:
    transform 360ms var(--ease),
    border-color 360ms ease;
}

.logo-tile:hover {
  z-index: 2;
  border-color: var(--signal);
  transform: translateY(-8px);
}

.logo-tile img {
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 76px;
  margin: auto;
  object-fit: contain;
}

.contact {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-image {
  background: url("assets/hero-one-bkc.png") center / cover;
  transform: scale(1.02);
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
}

.contact-content {
  position: relative;
  z-index: 2;
  min-height: 84svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 9vw, 144px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.contact h2 em {
  color: var(--signal);
  font-style: normal;
}

.contact-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(60px, 8vw, 120px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.4vw, 36px);
}

.contact-actions > div {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-align: right;
}

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 46px;
  align-items: center;
  padding: 38px var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-wordmark {
  color: var(--white);
}

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

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

.js .image-reveal {
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 1200ms var(--ease),
    opacity 200ms ease,
    transform 1200ms var(--ease);
}

.js .image-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

@keyframes title-in {
  to {
    transform: translateY(0);
  }
}

@keyframes reveal-hero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes logo-marquee {
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a {
    font-size: 12px;
  }

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

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

  .expertise-panel-featured {
    grid-column: 1 / -1;
  }

  .expertise-panel:nth-child(3) {
    border-right: 0;
  }

  .expertise-panel:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 380px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px var(--pad) 60px;
    background: var(--black);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-24px);
    transition:
      opacity 320ms ease,
      transform 420ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-contact {
    margin-top: 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
  }

  .hero-grid {
    background-image: linear-gradient(
      to right,
      transparent calc(50% - 1px),
      rgba(255, 255, 255, 0.35) 50%,
      transparent calc(50% + 1px)
    );
  }

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

  .hero-summary {
    margin-left: 0;
  }

  .scroll-cue {
    display: none;
  }

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

  .principal-card {
    width: min(430px, 100%);
    margin-left: auto;
  }

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

  .metrics article {
    border-bottom: 1px solid var(--line);
  }

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

  .expertise-panel {
    min-height: 420px;
  }

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

  .design-list article,
  .design-list article + article {
    min-height: 260px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .design-list h3 {
    margin-top: 64px;
  }

  .mandate-row {
    grid-template-columns: 48px 1fr;
  }

  .mandate-type {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

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

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

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

  .contact-actions > div {
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 580px) {
  .wordmark svg {
    width: 62px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 180px;
  }

  .hero-kicker {
    width: auto;
    border: 0;
    padding: 0;
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 78px);
  }

  .hero-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .circle-link {
    width: 72px;
    height: 72px;
  }

  .hero-footer {
    gap: 14px;
    font-size: 8px;
  }

  .hero-footer > span:nth-child(2) {
    display: none;
  }

  .display-title {
    font-size: clamp(39px, 12.2vw, 64px);
  }

  .studio-grid {
    margin-top: 54px;
  }

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

  .metrics article,
  .metrics article:not(:first-child) {
    min-height: 150px;
    padding: 28px 0;
    border-right: 0;
  }

  .expertise-panels {
    grid-template-columns: 1fr;
  }

  .expertise-panel,
  .expertise-panel-featured,
  .expertise-panel:nth-child(4) {
    grid-column: auto;
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .panel-copy ul {
    display: grid;
  }

  .mandate-row {
    grid-template-columns: 1fr;
  }

  .mandate-type {
    grid-column: 1;
  }

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

  .project-card,
  .project-card-wide,
  .project-card-tall {
    grid-column: auto;
    min-height: 480px;
  }

  .statement-band blockquote {
    text-align: left;
  }

  .clients-heading {
    display: block;
  }

  .clients-heading .display-title {
    margin-bottom: 30px;
  }

  .logo-tile {
    width: 170px;
    height: 110px;
  }

  .logo-tile img {
    max-width: 120px;
    max-height: 60px;
  }

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

  .contact-email {
    gap: 12px;
    font-size: 18px;
  }
}

@media (hover: none) {
  .project-meta p {
    max-height: 40px;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-line > span {
    transform: none;
  }

  .logo-track {
    flex-wrap: wrap;
    width: auto;
  }
}
