@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

:root {
  --black: #0b0d0c;
  --black-2: #141614;
  --stone: #f3f1eb;
  --stone-2: #e9e6de;
  --white: #fffefa;
  --yellow: #f0cd20;
  --text-muted: rgba(11, 13, 12, 0.64);
  --light-muted: rgba(255, 254, 250, 0.64);
  --line: rgba(11, 13, 12, 0.18);
  --line-light: rgba(255, 254, 250, 0.2);
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --shell: min(92vw, 1480px);
  --section-space: clamp(6rem, 11vw, 11rem);
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--stone);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(240, 205, 32, 0.2);
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(240, 205, 32, 0.2);
}

address {
  font-style: normal;
}

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

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 5px;
}

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: min-height 320ms var(--ease), background 320ms ease, backdrop-filter 320ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  min-height: 72px;
  background: rgba(11, 13, 12, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(136px, 12vw, 180px);
}

.brand img {
  width: 100%;
  height: auto;
}

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

.desktop-nav a,
.header-cta {
  position: relative;
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.desktop-nav a::after,
.header-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.header-cta[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-cta i {
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.header-cta:hover i {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 12px 7px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 190;
  inset: 0;
  height: 100dvh;
  display: grid;
  align-content: space-between;
  padding: 132px 24px 34px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  color: var(--white);
  background: var(--black);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 300ms ease, transform 300ms var(--ease), visibility 300ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
  touch-action: manipulation;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--yellow);
}

.mobile-menu nav a[aria-current="page"] span {
  color: var(--white);
}

main [id] {
  scroll-margin-top: 88px;
}

.mobile-menu nav span {
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mobile-menu__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: var(--light-muted);
  font-size: 0.88rem;
}

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

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow--dark {
  color: rgba(11, 13, 12, 0.56);
}

.display {
  max-width: 1100px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.4vw, 8.2rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.display--small {
  font-size: clamp(3.2rem, 6vw, 6.9rem);
}

.section-rule {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-rule--light {
  color: var(--light-muted);
  border-color: var(--line-light);
}

.body-large {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.body-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.body-copy--light {
  color: var(--light-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.text-link span {
  transition: transform 240ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 225px;
  padding: 17px 20px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease);
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--black);
  transform: translateY(-2px);
}

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

.media-frame {
  position: relative;
  overflow: hidden;
  background: #cbc8bf;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 500ms ease;
}

.media-frame:hover img {
  transform: scale(1.025);
}

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

.home-hero__image,
.page-hero__image {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  animation: image-settle 1.7s var(--ease) both;
}

.home-hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 7, 0.83) 0%, rgba(6, 8, 7, 0.48) 45%, rgba(6, 8, 7, 0.12) 100%), linear-gradient(0deg, rgba(6, 8, 7, 0.58), transparent 48%);
}

.architectural-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(90deg, transparent calc(25% - 1px), white 25%, transparent calc(25% + 1px)), linear-gradient(90deg, transparent calc(50% - 1px), white 50%, transparent calc(50% + 1px)), linear-gradient(90deg, transparent calc(75% - 1px), white 75%, transparent calc(75% + 1px));
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 180px 0 clamp(3.5rem, 7vh, 6rem);
}

.home-hero__topline {
  position: absolute;
  top: 124px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 254, 250, 0.64);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.home-hero h1 {
  display: grid;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9.2vw, 10rem);
  font-weight: 300;
  line-height: 0.81;
  letter-spacing: -0.068em;
}

.home-hero h1 span {
  display: block;
  overflow: hidden;
  animation: title-rise 900ms var(--ease) both;
}

.home-hero h1 span:nth-child(2) {
  padding-left: 13vw;
  animation-delay: 90ms;
}

.home-hero__bottom {
  display: grid;
  grid-template-columns: minmax(260px, 500px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(2.5rem, 5vh, 4.5rem);
}

.home-hero__bottom p {
  margin: 0;
  color: rgba(255, 254, 250, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.round-link {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 254, 250, 0.54);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(4px);
}

.sector-strip {
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
  border-bottom: 1px solid rgba(11, 13, 12, 0.3);
}

.sector-strip__track {
  display: flex;
  width: max-content;
  padding: 15px 0;
  animation: ticker 28s linear infinite;
}

.sector-strip__track span {
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.sector-strip__track span::after {
  content: "◆";
  padding-left: 48px;
  font-size: 0.75rem;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  align-items: start;
  padding-top: clamp(3.5rem, 7vw, 7rem);
}

.home-intro__aside {
  position: sticky;
  top: 120px;
}

.home-intro__aside .media-frame {
  aspect-ratio: 0.8 / 1;
}

.home-intro__copy {
  display: grid;
  gap: 44px;
}

.home-intro__copy .body-copy {
  max-width: 650px;
  margin-left: auto;
}

.capabilities {
  color: var(--white);
  background: var(--black);
}

.capabilities__intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 6vw;
  padding-top: clamp(3.5rem, 7vw, 7rem);
}

.capabilities__intro .body-copy {
  max-width: 430px;
  justify-self: end;
}

.capability-list {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-light);
}

.capability-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr minmax(260px, 0.65fr);
  align-items: center;
  gap: 24px;
  min-height: 170px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 260ms ease, padding 260ms var(--ease);
}

.capability-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms var(--ease);
}

.capability-row > * {
  position: relative;
  z-index: 1;
}

.capability-row:hover,
.capability-row:focus-visible {
  color: var(--black);
  padding-inline: 22px;
}

.capability-row:hover::before,
.capability-row:focus-visible::before {
  transform: scaleY(1);
}

.capability-row__index {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-row:hover .capability-row__index,
.capability-row:focus-visible .capability-row__index {
  color: var(--black);
}

.capability-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.capability-row p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.capability-row:hover p,
.capability-row:focus-visible p {
  color: rgba(11, 13, 12, 0.68);
}

.capability-row__arrow {
  font-size: 1.35rem;
  transition: transform 240ms var(--ease);
}

.capability-row:hover .capability-row__arrow {
  transform: translate(4px, -4px);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--black);
  background: var(--yellow);
}

.numbers .number:only-child {
  grid-column: 1 / -1;
  min-height: 220px;
  text-align: center;
}

.number {
  min-height: 270px;
  padding: clamp(2.2rem, 4vw, 4.5rem);
  border-right: 1px solid rgba(11, 13, 12, 0.28);
}

.number:last-child {
  border-right: 0;
}

.number strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.number p {
  margin: 42px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.image-statement {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.image-statement > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.image-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 8, 0.82), rgba(7, 9, 8, 0.22)), linear-gradient(0deg, rgba(7, 9, 8, 0.62), transparent 55%);
}

.image-statement__content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  padding-bottom: clamp(4rem, 9vw, 9rem);
}

.image-statement blockquote {
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7.4vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.featured-work__heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 6vw;
  padding-top: clamp(3.5rem, 7vw, 7rem);
}

.featured-work__heading .body-copy {
  max-width: 440px;
  justify-self: end;
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
  margin-top: clamp(4rem, 8vw, 8rem);
}

.work-card {
  grid-column: span 4;
  margin: 0;
}

.work-card:nth-child(2) {
  margin-top: 8vw;
}

.work-card .media-frame {
  aspect-ratio: 0.88 / 1;
}

.work-card img {
  filter: saturate(0.76);
}

.work-card:hover img {
  filter: saturate(1);
}

.work-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.work-card figcaption span:last-child {
  color: var(--text-muted);
}

.closing-cta {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
}

.closing-cta__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 7vw;
}

.closing-cta__grid p {
  max-width: 420px;
  margin: 0 0 34px;
}

.section-heading-space {
  padding-top: clamp(3.5rem, 7vw, 7rem);
}

.section-link-space {
  margin-top: 32px;
}

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

.page-hero--compact {
  min-height: 70svh;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 180px 0 clamp(4rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 1250px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 10vw, 10.8rem);
  font-weight: 300;
  line-height: 0.81;
  letter-spacing: -0.07em;
  text-wrap: balance;
  animation: page-title 850ms var(--ease) both;
}

.page-hero__footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  align-items: end;
  gap: 6vw;
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.page-hero__footer p {
  margin: 0;
  color: var(--light-muted);
  line-height: 1.7;
}

.page-hero__footer p:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.services-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  align-items: start;
}

.services-intro .body-copy {
  max-width: 620px;
  margin: 38px 0 0 auto;
}

.service-chapters {
  color: var(--white);
  background: var(--black);
}

.service-chapter {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 760px;
  border-top: 1px solid var(--line-light);
}

.service-chapter:nth-child(even) .service-chapter__media {
  order: 2;
}

.service-chapter__media {
  min-height: 660px;
}

.service-chapter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.service-chapter__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(3rem, 6vw, 6.5rem);
}

.service-chapter__number {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-chapter h2 {
  margin: 28px 0 25px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.058em;
}

.service-chapter__copy > div > p {
  max-width: 590px;
  margin: 0;
  color: var(--light-muted);
  line-height: 1.75;
}

.service-chapter ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.service-chapter li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 254, 250, 0.78);
  font-size: 0.9rem;
}

.product-index {
  background: var(--stone-2);
}

.product-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 7vw, 7rem);
  background: var(--line);
}

.product-group {
  min-height: 430px;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--stone);
}

.product-group span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-group h3 {
  margin: 55px 0 30px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.product-group li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.projects-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: end;
}

.projects-lead .body-copy {
  max-width: 560px;
  justify-self: end;
}

.portfolio {
  background: var(--stone-2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem) clamp(1rem, 2vw, 2rem);
  margin-top: clamp(4rem, 8vw, 8rem);
}

.portfolio-card {
  grid-column: span 5;
  margin: 0;
}

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

.portfolio-card:nth-child(2),
.portfolio-card:nth-child(5) {
  margin-top: 10vw;
}

.portfolio-card .media-frame {
  aspect-ratio: 1.3 / 1;
}

.portfolio-card--portrait .media-frame {
  aspect-ratio: 0.82 / 1;
}

.portfolio-card figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.portfolio-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.portfolio-card figcaption span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.portfolio-note {
  margin-top: 70px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  align-items: start;
}

.about-intro__copy {
  display: grid;
  gap: 28px;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.vision-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.5rem, 5vw, 5.5rem);
  background: var(--stone-2);
}

.vision-card:nth-child(2) {
  color: var(--white);
  background: var(--black);
}

.vision-card span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.vision-card blockquote {
  margin: 70px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.value-card p {
  margin: 66px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.director-quote {
  color: var(--white);
  background: var(--black);
}

.director-quote__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  align-items: start;
}

.director-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.director-quote cite {
  display: block;
  margin-top: 34px;
  color: var(--light-muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-page {
  min-height: 100svh;
  padding-top: 92px;
  color: var(--white);
  background: var(--black);
}

.contact-page__heading {
  padding-top: clamp(5rem, 9vw, 9rem);
}

.contact-page h1 {
  max-width: 1200px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 10vw, 11rem);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 9vw;
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: var(--section-space);
}

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

.contact-label {
  margin: 38px 0 12px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-label:first-child {
  margin-top: 0;
}

.contact-details a,
.contact-details address,
.contact-details > p:not(.contact-label) {
  margin: 0 0 8px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 32px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-form label {
  display: grid;
  gap: 12px;
}

.contact-form label span {
  color: rgba(255, 254, 250, 0.56);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 0 16px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 254, 250, 0.34);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  transition: border-color 200ms ease;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--white) 50%), linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position: calc(100% - 16px) 18px, calc(100% - 10px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form option {
  color: var(--black);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

.contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: -14px 0 0;
  color: var(--light-muted);
  font-size: 0.84rem;
}

.site-footer {
  color: rgba(255, 254, 250, 0.58);
  background: #070807;
  border-top: 1px solid rgba(255, 254, 250, 0.13);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.site-footer__brand {
  width: min(300px, 70vw);
}

.site-footer__tagline {
  max-width: 600px;
  margin: 35px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  align-content: start;
}

.site-footer__nav a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 254, 250, 0.16);
  color: rgba(255, 254, 250, 0.78);
  font-size: 0.9rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 254, 250, 0.13);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.js .image-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease);
}

.js .image-reveal.in-view {
  clip-path: inset(0);
}

@keyframes image-settle {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes title-rise {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes page-title {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    padding: 0 22px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero__content {
    width: calc(100vw - 44px);
  }

  .home-hero__topline {
    top: 105px;
  }

  .home-intro__grid,
  .services-intro,
  .about-intro,
  .director-quote__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-intro__aside {
    position: relative;
    top: auto;
    width: min(70vw, 620px);
  }

  .capabilities__intro,
  .featured-work__heading,
  .projects-lead,
  .closing-cta__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .capabilities__intro .body-copy,
  .featured-work__heading .body-copy,
  .projects-lead .body-copy {
    justify-self: start;
  }

  .capability-row {
    grid-template-columns: 50px 1fr;
  }

  .capability-row p {
    display: none;
  }

  .service-chapter {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-chapter:nth-child(even) .service-chapter__media {
    order: initial;
  }

  .service-chapter__media {
    min-height: 58vw;
  }

  .product-index__grid {
    grid-template-columns: 1fr;
  }

  .product-group {
    min-height: 0;
  }

  .contact-page {
    padding-top: 78px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 40px);
    --section-space: 5.8rem;
  }

  .display,
  .display--small {
    font-size: clamp(3.35rem, 15.5vw, 5.6rem);
    line-height: 0.9;
  }

  .section-rule {
    gap: 12px;
    font-size: 0.75rem;
  }

  .home-hero__image,
  .page-hero__image {
    object-position: 56% center;
  }

  .home-hero__topline span:first-child {
    display: none;
  }

  .home-hero__topline {
    justify-content: flex-end;
  }

  .home-hero__content {
    padding-top: 150px;
    padding-bottom: 38px;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 18.8vw, 6.3rem);
    line-height: 0.82;
  }

  .home-hero h1 span:nth-child(2) {
    padding-left: 0;
  }

  .home-hero__bottom {
    grid-template-columns: 1fr auto;
    margin-top: 30px;
  }

  .round-link {
    width: 54px;
    height: 54px;
  }

  .home-intro__aside {
    width: 86vw;
  }

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

  .number {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 13, 12, 0.28);
  }

  .number strong {
    font-size: 5.5rem;
  }

  .capability-row {
    grid-template-columns: 34px 1fr;
    min-height: 132px;
    gap: 12px;
  }

  .capability-row:hover,
  .capability-row:focus-visible {
    padding-inline: 10px;
  }

  .capability-row h3 {
    font-size: 2.5rem;
  }

  .image-statement {
    min-height: 78svh;
  }

  .image-statement blockquote {
    font-size: clamp(3.4rem, 15vw, 5.5rem);
  }

  .work-cards {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-column: auto;
  }

  .work-card:nth-child(2) {
    margin-top: 0;
  }

  .work-card .media-frame {
    aspect-ratio: 1.05 / 1;
  }

  .page-hero,
  .page-hero--compact {
    min-height: 74svh;
  }

  .page-hero__content {
    padding-top: 145px;
    padding-bottom: 42px;
  }

  .page-hero h1 {
    font-size: clamp(4rem, 19vw, 7rem);
    line-height: 0.82;
  }

  .page-hero__footer {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .service-chapter__media {
    min-height: 96vw;
  }

  .service-chapter__copy {
    padding: 48px 20px 58px;
  }

  .service-chapter h2 {
    font-size: clamp(3.4rem, 15vw, 5.5rem);
  }

  .service-chapter ul {
    grid-template-columns: 1fr;
  }

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

  .portfolio-card,
  .portfolio-card--wide {
    grid-column: auto;
    margin-top: 0 !important;
  }

  .portfolio-card .media-frame,
  .portfolio-card--portrait .media-frame {
    aspect-ratio: 1.05 / 1;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .vision-card {
    min-height: 430px;
  }

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

  .value-card {
    min-height: 160px;
  }

  .value-card p {
    margin-top: 48px;
  }

  .contact-page h1 {
    font-size: clamp(4rem, 19vw, 7rem);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .site-footer__nav {
    margin-top: 18px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .home-hero__bottom {
    grid-template-columns: 1fr;
  }

  .round-link {
    display: none;
  }

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

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

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

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

  .sector-strip__track {
    transform: none !important;
  }
}
