:root {
  --ink: #171713;
  --ink-soft: #2a2924;
  --paper: #f8f7f2;
  --ivory: #eeece3;
  --chalk: #fffef9;
  --stone: #a19e91;
  --line: rgba(23, 23, 19, 0.18);
  --line-light: rgba(255, 254, 249, 0.28);
  --copper: #b66a3c;
  --copper-dark: #8d4c28;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(6rem, 11vw, 11rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-base: 0;
  --z-content: 10;
  --z-nav: 40;
  --z-skip: 100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

address {
  font-style: normal;
}

::selection {
  color: var(--chalk);
  background: var(--copper-dark);
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: var(--z-skip);
  padding: 0.8rem 1rem;
  color: var(--chalk);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5.75rem;
  padding: 1.1rem var(--gutter);
  color: var(--chalk);
  border-bottom: 1px solid var(--line-light);
  transition:
    min-height 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.75rem;
  color: var(--ink);
  background: rgba(248, 247, 242, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 3.75rem;
  min-height: 3rem;
  transition: width 220ms ease;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

.site-header.is-scrolled .brand {
  width: 3rem;
}

.site-header.is-scrolled .brand img {
  filter: invert(1);
}

.brand--footer img {
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.primary-nav a {
  position: relative;
  min-height: 2.75rem;
  padding-top: 0.8rem;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid currentColor;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.header-cta svg,
.button svg,
.text-link svg,
.service-row svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: var(--chalk);
  border-color: var(--chalk);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible {
  color: var(--chalk);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
}

.menu-toggle span {
  position: absolute;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-0.23rem);
}

.menu-toggle span:last-child {
  transform: translateY(0.23rem);
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--chalk);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center 58%;
  animation: hero-settle 1.2s var(--ease) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(9, 9, 7, 0.42) 0%, rgba(9, 9, 7, 0.04) 34%, rgba(9, 9, 7, 0.78) 100%),
    linear-gradient(90deg, rgba(9, 9, 7, 0.42), transparent 60%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.16;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100%, var(--container));
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(8.5rem, 14vw, 12rem) var(--gutter) clamp(4.5rem, 7vw, 6.5rem);
}

.hero-eyebrow {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  animation: rise-in 700ms 120ms var(--ease) both;
}

.hero h1 {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 12.75rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-wrap: balance;
  animation: rise-in 850ms 180ms var(--ease) both;
}

.hero h1 em,
.manifesto h2 em,
.expertise h2 em,
.final-cta h2 em {
  font-weight: 500;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(16rem, 29rem) auto;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  animation: rise-in 750ms 300ms var(--ease) both;
}

.hero-bottom > p {
  max-width: 42rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.circle-link {
  display: grid;
  place-items: center;
  width: 8.5rem;
  height: 8.5rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.circle-link span {
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.circle-link svg {
  width: 1.25rem;
  margin-top: -0.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.circle-link:hover,
.circle-link:focus-visible {
  color: var(--ink);
  background: var(--chalk);
  border-color: var(--chalk);
}

.hero-index {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-index span:first-child {
  padding-right: 1.5rem;
  border-right: 1px solid var(--line-light);
}

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

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.section-kicker span:last-child {
  color: #68665e;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.6fr);
  gap: clamp(4rem, 11vw, 11rem);
  padding-top: clamp(3.5rem, 7vw, 6.75rem);
}

.manifesto h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 7vw, 7.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

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

.manifesto-copy > p {
  color: #514f48;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.75rem;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  transition: color 200ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--copper-dark);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--chalk);
  background: var(--ink);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item {
  display: flex;
  flex-direction: column;
  min-height: 14rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.75rem);
  font-weight: 500;
  line-height: 1;
}

.proof-item span {
  max-width: 11rem;
  margin-top: auto;
  color: #c7c4ba;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.projects,
.approach,
.journal {
  padding-block: var(--section);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(2rem, 3vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.expertise h2,
.credentials h2,
.journal h2 {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 7vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.section-heading > p,
.expertise-intro > p:last-child {
  color: #5c5a53;
  line-height: 1.75;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 7rem) clamp(1.25rem, 3vw, 3rem);
}

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

.project-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d4c9;
}

.project-card--wide .project-image-wrap {
  aspect-ratio: 16 / 8.7;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition:
    transform 400ms var(--ease),
    filter 300ms ease;
}

.project-card:hover .project-image-wrap img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.025);
}

.project-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--chalk);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  background: rgba(23, 23, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
}

.project-meta p,
.project-meta > span {
  color: #77746a;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.1;
}

.project-meta > span {
  flex: none;
  padding-top: 0.15rem;
}

.expertise {
  padding-top: var(--section);
  color: var(--chalk);
  background: var(--ink);
}

.expertise-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.45fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.expertise-intro .eyebrow {
  grid-column: 1 / -1;
  color: #b5b2a8;
}

.expertise h2 {
  max-width: 10ch;
  margin: 0;
}

.expertise-intro > p:last-child {
  color: #c4c1b7;
}

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

.service-row {
  display: grid;
  grid-template-columns: 3rem minmax(14rem, 0.9fr) minmax(16rem, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  min-height: 8.5rem;
  border-bottom: 1px solid var(--line-light);
}

.service-row > span {
  color: #817e74;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  font-weight: 500;
  line-height: 1.05;
}

.service-row p {
  max-width: 35rem;
  color: #b7b4aa;
  font-size: 0.9rem;
}

.service-row svg {
  width: 1.45rem;
  color: #77746a;
  transition:
    color 220ms ease,
    transform 220ms var(--ease);
}

.service-row:hover svg {
  color: var(--chalk);
  transform: translateX(0.3rem);
}

.material-triptych {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 0.3rem;
  margin-top: var(--section);
  background: var(--ink);
}

.material-triptych figure {
  min-height: 34rem;
  overflow: hidden;
}

.material-triptych figure:nth-child(2) {
  transform: translateY(-3rem);
}

.material-triptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid li {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 2rem clamp(1.5rem, 2.6vw, 2.75rem) 2.5rem 0;
  border-right: 1px solid var(--line);
}

.process-grid li:not(:first-child) {
  padding-left: clamp(1.5rem, 2.6vw, 2.75rem);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-grid h3 {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  font-weight: 500;
}

.process-grid p {
  margin-top: 1rem;
  color: #5f5c55;
  font-size: 0.88rem;
  line-height: 1.7;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  min-height: 54rem;
  color: var(--chalk);
  background: var(--copper-dark);
}

.credentials-media {
  min-height: 100%;
}

.credentials-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.credentials-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem) var(--gutter);
}

.credentials-copy .eyebrow {
  color: #e0c4b0;
}

.credentials h2 {
  max-width: 8ch;
}

.credentials-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 2rem;
  color: #eddccd;
  line-height: 1.75;
}

.credentials dl {
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.credentials dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.2rem 0;
  font-size: 0.76rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.credentials dt {
  color: #dec6b4;
}

.credentials dd {
  text-align: right;
}

.journal .section-heading {
  grid-template-columns: 1fr auto;
}

.journal .text-link {
  justify-self: end;
  margin: 0;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.journal-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d7d3c8;
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition:
    transform 400ms var(--ease),
    filter 240ms ease;
}

.journal-card::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(14, 14, 11, 0.78));
}

.journal-card span {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  color: var(--chalk);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.journal-card:hover img,
.journal-card:focus-visible img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.03);
}

.final-cta {
  position: relative;
  color: var(--chalk);
  background: var(--ink);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  top: -14rem;
  right: -9rem;
  width: 36rem;
  height: 36rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.final-cta::after {
  position: absolute;
  top: -7rem;
  right: -2rem;
  width: 22rem;
  height: 22rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(7rem, 13vw, 13rem);
}

.final-cta .eyebrow {
  color: #a9a69d;
}

.final-cta h2 {
  max-width: 12ch;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.button--light {
  min-height: 4rem;
  padding-inline: 1.6rem;
  color: var(--ink);
  background: var(--chalk);
  border-color: var(--chalk);
}

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

.text-link--light {
  margin: 0;
  color: var(--chalk);
}

.text-link--light:hover,
.text-link--light:focus-visible {
  color: #d5a485;
}

.site-footer {
  color: #cac7bc;
  background: #0d0d0b;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand--footer {
  width: 8rem;
}

.footer-top > p {
  color: var(--chalk);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.75fr 0.75fr;
  gap: 3rem;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-grid span {
  margin-bottom: 1rem;
  color: #77746d;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid address {
  font-size: 0.84rem;
  line-height: 1.75;
}

.footer-grid a {
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--chalk);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.4rem 2.4rem;
  color: #77746d;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 360ms var(--ease),
    transform 360ms var(--ease);
}

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

@keyframes hero-settle {
  from {
    opacity: 0.35;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .primary-nav {
    gap: 1.25rem;
    margin-left: 2rem;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-index {
    display: none;
  }

  .manifesto-grid,
  .section-heading,
  .expertise-intro {
    gap: 4rem;
  }

  .proof-item {
    min-height: 12rem;
    padding: 2.2rem;
  }

  .service-row {
    grid-template-columns: 2rem minmax(12rem, 0.8fr) minmax(15rem, 1fr) auto;
    gap: 1.75rem;
  }

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

  .process-grid li {
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(n + 3) {
    border-bottom: 0;
  }

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

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 5rem;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
    min-height: 4.75rem;
    padding-block: 0.85rem;
  }

  .brand {
    width: 2.75rem;
  }

  .brand--footer {
    width: 7rem;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: 4.75rem 0 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: var(--gutter);
    color: var(--chalk);
    background: rgba(23, 23, 19, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition:
      visibility 0s 240ms,
      opacity 240ms ease,
      transform 240ms var(--ease);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .primary-nav a {
    width: 100%;
    min-height: auto;
    padding: 0.8rem 0;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 9vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .header-cta {
    display: none;
  }

  .site-header.menu-active {
    color: var(--chalk);
    background: var(--ink);
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .site-header.menu-active .brand img {
    filter: none;
  }

  .hero h1 {
    font-size: clamp(4.75rem, 19vw, 8rem);
    line-height: 0.76;
  }

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

  .circle-link {
    width: 7.25rem;
    height: 7.25rem;
  }

  .manifesto-grid,
  .section-heading,
  .expertise-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto h2 {
    max-width: 14ch;
  }

  .manifesto-copy {
    max-width: 36rem;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-heading > p {
    max-width: 36rem;
  }

  .project-card--wide {
    grid-column: auto;
  }

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

  .service-row {
    grid-template-columns: 2rem 1fr auto;
    gap: 1.25rem;
    min-height: auto;
    padding-block: 2rem;
  }

  .service-row p {
    grid-column: 2 / -1;
    padding-right: 3rem;
  }

  .service-row svg {
    grid-column: 3;
    grid-row: 1;
  }

  .material-triptych {
    grid-template-columns: 1fr 1fr;
  }

  .material-triptych figure {
    min-height: 24rem;
  }

  .material-triptych figure:nth-child(2) {
    transform: none;
  }

  .material-triptych figure:last-child {
    grid-column: span 2;
    min-height: 20rem;
  }

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

  .credentials-media {
    min-height: 70vw;
  }

  .credentials-copy {
    padding-inline: var(--gutter);
  }

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

  .journal .text-link {
    justify-self: start;
  }

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

  .journal-card:last-child {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 580px) {
  .section-kicker {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 22vw, 7rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .circle-link {
    display: flex;
    width: auto;
    height: 3.4rem;
    border-radius: 0;
  }

  .circle-link span br {
    display: none;
  }

  .circle-link svg {
    margin: 0 0 0 auto;
    transform: rotate(-90deg);
  }

  .manifesto h2,
  .section-heading h2,
  .expertise h2,
  .credentials h2,
  .journal h2 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .proof-item {
    min-height: 10.5rem;
    padding: 1.5rem;
  }

  .proof-item strong {
    font-size: 3.25rem;
  }

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

  .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .service-row {
    grid-template-columns: 1.5rem 1fr auto;
  }

  .service-row p {
    padding-right: 0;
  }

  .material-triptych {
    grid-template-columns: 1fr;
  }

  .material-triptych figure,
  .material-triptych figure:last-child {
    grid-column: auto;
    min-height: 24rem;
  }

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

  .process-grid li,
  .process-grid li:nth-child(n + 3) {
    min-height: 18rem;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:not(:first-child) {
    padding-left: 0;
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .credentials dl div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .credentials dd {
    text-align: left;
  }

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

  .journal-card,
  .journal-card:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .final-cta h2 {
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-link--light {
    align-self: flex-start;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-grid {
    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;
  }

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