
:root {
  --bg: #080808;
  --bg-soft: #0e0e0e;
  --ink: #f3f3f0;
  --muted: #969696;
  --line: rgba(255,255,255,.14);
  --line-soft: rgba(255,255,255,.08);
  --pad: clamp(22px, 4.1vw, 70px);
  --max: 1320px;
  --header: 78px;
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "loos-normal", "Loos Normal", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.intro-active { overflow: hidden; }

img { max-width: 100%; }

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

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

button { color: inherit; }

::selection {
  color: #080808;
  background: #f2f2ef;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 200;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

@font-face {
  font-family: "Loos Normal";
  src: local("Loos Normal Regular"), local("LoosNormal-Regular");
  font-weight: 400;
}
@font-face {
  font-family: "Loos Normal";
  src: local("Loos Normal Medium"), local("LoosNormal-Medium");
  font-weight: 500;
}
@font-face {
  font-family: "Loos Normal";
  src: local("Loos Normal Bold"), local("LoosNormal-Bold");
  font-weight: 700;
}

/* Intro */
.intro {
  --intro-stage-left: 50vw;
  --intro-stage-top: 50vh;
  --intro-stage-size: 460px;
  --intro-start-scale: 10;
  position: fixed;
  inset: 0;
  z-index: 150;
  overflow: hidden;
  background: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.05s ease, visibility 1.05s ease;
}
.intro.is-fading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro.is-dormant { display: none; }
.intro.is-resetting,
.intro.is-resetting *,
.intro.is-resetting *::before,
.intro.is-resetting *::after {
  transition: none !important;
}
.intro__stage {
  position: absolute;
  left: var(--intro-stage-left);
  top: var(--intro-stage-top);
  width: var(--intro-stage-size);
  transform-origin: 49.95% 43.62%;
  transform: scale(var(--intro-start-scale));
  will-change: transform;
  transition: transform 2.18s cubic-bezier(.18,.76,.18,1);
}
.intro.phase-prelude .intro__stage { transform: scale(1); }
.intro-logo-svg {
  display: block;
  width: 100%;
  height: auto;
}
.intro-logo-svg > g > rect.st0 { opacity: 1; }
.intro-logo-svg > g > g > path,
.intro-logo-svg > g > g > polygon,
.intro-logo-svg > g > g > rect {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1.08s;
  transition-timing-function: ease;
}
.intro.phase-letters .intro-logo-svg > g > g > .st1 { opacity: 1; transition-delay: 0s; }
.intro.phase-letters .intro-logo-svg > g > g > .st2 { opacity: 1; transition-delay: .384s; }
.intro.phase-letters .intro-logo-svg > g > g > .st3 { opacity: 1; transition-delay: .768s; }
.intro.phase-letters .intro-logo-svg > g > g > .st4 { opacity: 1; transition-delay: 1.152s; }
.intro.phase-letters .intro-logo-svg > g > g > .st5 { opacity: 1; transition-delay: 1.536s; }
.intro.phase-letters .intro-logo-svg > g > g > .st6 { opacity: 1; transition-delay: 1.944s; }
.intro.phase-letters .intro-logo-svg > g > g > .st0 { opacity: 1; transition-delay: 2.352s; }
body.intro-active { overflow: hidden; }
body.intro-active .site-header,
body.intro-active .hero__copy,
body.intro-active .hero__media,
body.intro-active .hero__media figcaption {
  opacity: 1;
  transform: none;
}
.intro-replay {
  justify-self: end;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.intro-replay:hover {
  color: #fff;
  border-color: #fff;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8,8,8,.7), rgba(8,8,8,0));
  transition: background .35s ease, border-color .35s ease, opacity .55s ease, transform .55s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8,8,8,.93);
  border-color: var(--line-soft);
  backdrop-filter: blur(16px);
}

.digital-wordmark {
  display: inline-flex;
  width: 102px;
  flex: 0 0 auto;
  transition: opacity .25s ease;
}
.digital-wordmark:hover { opacity: .68; }
.digital-wordmark img { width: 100%; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  color: rgba(255,255,255,.72);
  transition: color .2s ease;
}
.site-nav > a:not(.nav-cta):hover { color: #fff; }

.nav-cta {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.35);
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover {
  color: #080808;
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: #fff;
  transition: transform .25s ease;
}
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Type */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -.025em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 94px);
  line-height: .98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(35px, 3.8vw, 57px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.18;
}

.eyebrow,
.section-index {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 10vw, 150px) var(--pad);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .55fr);
  align-items: end;
  gap: clamp(46px, 7vw, 110px);
  margin-bottom: clamp(50px, 6vw, 86px);
}

.section-head > div {
  max-width: 760px;
}

.section-head > p {
  max-width: 390px;
  margin-bottom: 4px;
  color: #b7b7b5;
  font-size: 15px;
  line-height: 1.7;
}

.section-head--compact h2 {
  max-width: 720px;
  font-size: clamp(31px, 3.3vw, 49px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 49px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.48);
  background: transparent;
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover {
  color: #080808;
  border-color: #fff;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.38);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .25s ease;
}
.text-link:hover { border-color: #fff; }

/* Hero */
.hero {
  width: min(100%, 1460px);
  min-height: min(900px, 90svh);
  margin: 0 auto;
  padding: calc(var(--header) + 48px) var(--pad) 54px;
  display: grid;
  grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
}

.hero__copy {
  max-width: 610px;
}

.hero__intro {
  max-width: 470px;
  margin-bottom: 34px;
  color: #b9b9b6;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.72;
}

.hero__media {
  margin: 0;
  align-self: center;
}

.hero__media img {
  display: block;
  width: 100%;
  height: min(68svh, 690px);
  object-fit: cover;
}

.hero__media figcaption {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Projects */
.projects {
  padding-top: clamp(105px, 10vw, 150px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 58px) clamp(20px, 2.6vw, 36px);
}

.project-card {
  min-width: 0;
}

.project-card a {
  display: block;
}

.project-card img {
  display: block;
  width: 100%;
  height: clamp(320px, 33vw, 500px);
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s ease;
}

.project-card a:hover img {
  transform: scale(1.012);
  opacity: .9;
}

.project-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding-top: 17px;
}

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

.project-card__meta h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.25vw, 34px);
}

.project-card__meta > span {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.section-action {
  margin-top: 48px;
}

/* Studio */
.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(54px, 8vw, 126px);
}

.studio__media {
  margin: 0;
}

.studio__media img {
  display: block;
  width: 100%;
  height: min(67svh, 700px);
  object-fit: cover;
}

.studio__copy {
  max-width: 560px;
}

.studio__copy h2 {
  margin-bottom: 30px;
  font-size: clamp(35px, 3.7vw, 55px);
}

.studio__copy > p:not(.section-index) {
  max-width: 520px;
  margin-bottom: 18px;
  color: #b9b9b6;
  font-size: 16px;
  line-height: 1.72;
}

.studio__copy .text-link {
  margin-top: 16px;
}

/* Capabilities */
.capabilities {
  width: min(100%, 1210px);
}

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

.capability-row {
  display: grid;
  grid-template-columns: 58px minmax(180px, .55fr) minmax(300px, 1.2fr);
  align-items: baseline;
  gap: 26px;
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--line);
}

.capability-row > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
}

.capability-row h3 {
  margin-bottom: 0;
  font-size: clamp(20px, 1.8vw, 27px);
}

.capability-row p {
  max-width: 670px;
  margin-bottom: 0;
  color: #a9a9a7;
  font-size: 15px;
  line-height: 1.65;
}

/* Process */
.process {
  width: min(100%, 1210px);
}

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

.process-step {
  min-height: 210px;
  padding: 28px 26px 32px 0;
}

.process-step + .process-step {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.process-step > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
}

.process-step h3 {
  margin: 36px 0 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.process-step p {
  max-width: 230px;
  margin-bottom: 0;
  color: #a9a9a7;
  font-size: 14px;
  line-height: 1.6;
}

/* Proof */
.proof {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
  gap: clamp(54px, 8vw, 126px);
}

.proof__intro {
  max-width: 520px;
}

.proof__intro h2 {
  font-size: clamp(34px, 3.55vw, 53px);
}

.proof__details dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.proof__details dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.proof__details dt {
  font-size: clamp(25px, 2.5vw, 39px);
  font-weight: 500;
}

.proof__details dd {
  margin: 0;
  color: #ababaa;
  font-size: 14px;
}

.proof blockquote {
  max-width: 630px;
  margin: 54px 0 0;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
}

.proof blockquote footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.contact__intro {
  position: sticky;
  top: calc(var(--header) + 44px);
  max-width: 460px;
}

.contact__intro h2 {
  margin-bottom: 25px;
  font-size: clamp(39px, 4.1vw, 61px);
}

.contact__intro p:not(.section-index) {
  color: #aeaeac;
  line-height: 1.7;
}

.contact__intro > a {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 1px solid rgba(255,255,255,.36);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 28px;
}

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

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form label > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 8px 0 13px;
  transition: border-color .2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
}

.contact-form select option {
  color: #080808;
}

.contact-form .button {
  width: max-content;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 72px var(--pad) 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(190px, .8fr) 1fr auto;
  align-items: end;
  gap: 44px;
}

.footer-logo {
  display: inline-flex;
  width: 190px;
}

.footer-logo img {
  display: block;
  width: 100%;
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a:not(.footer-logo) {
  font-size: 13px;
}

.site-footer > p:last-child {
  margin-bottom: 0;
  text-align: right;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px var(--pad);
    background: rgba(8,8,8,.98);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 60px);
    padding-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__media img {
    height: min(68svh, 640px);
  }

  .section-head,
  .studio,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-head > p {
    max-width: 620px;
  }

  .studio__copy {
    max-width: 700px;
  }

  .capability-row {
    grid-template-columns: 46px minmax(170px, .55fr) 1fr;
  }

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

  .process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact__intro {
    position: static;
    max-width: 620px;
  }

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

  .site-footer > p:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root { --pad: 20px; }

  body { font-size: 15px; }

  .digital-wordmark { width: 88px; }

  h1 {
    font-size: clamp(47px, 14vw, 67px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(31px, 9vw, 43px);
  }

  .intro__stage {
    width: min(82vw, 390px);
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-head {
    gap: 28px;
    margin-bottom: 46px;
  }

  .hero {
    gap: 42px;
    padding-top: calc(var(--header) + 44px);
  }

  .hero__media img {
    height: 58svh;
  }

  .hero__media figcaption {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .intro-replay {
    justify-self: start;
    margin-top: 4px;
  }

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

  .project-card img {
    height: 63vw;
    min-height: 270px;
  }

  .project-card__meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-card__meta > span {
    white-space: normal;
  }

  .studio {
    gap: 42px;
  }

  .studio__media img {
    height: 58svh;
  }

  .capability-row {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .capability-row p {
    grid-column: 2;
  }

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

  .process-step,
  .process-step + .process-step {
    min-height: auto;
    padding: 24px 0 27px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step h3 {
    margin-top: 22px;
  }

  .proof__details dl > div {
    grid-template-columns: 84px 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label.full {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 54px;
  }

  .footer-logo {
    width: 178px;
  }
}

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

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

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


.site-nav a[aria-current="page"] {
  color: #fff;
}

.page-hero {
  width: min(100%, 1420px);
  min-height: min(820px, 88svh);
  margin: 0 auto;
  padding: calc(var(--header) + 58px) var(--pad) 60px;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
}

.page-hero__copy {
  max-width: 650px;
}

.page-hero__copy h1 {
  font-size: clamp(50px, 5.4vw, 82px);
}

.page-hero__copy > p:not(.section-index) {
  max-width: 520px;
  color: #b8b8b5;
  font-size: 17px;
  line-height: 1.72;
}

.page-hero__media {
  margin: 0;
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: min(68svh, 700px);
  object-fit: cover;
}

.page-hero--services .page-hero__media img,
.page-hero--process .page-hero__media img {
  object-fit: contain;
  padding: clamp(14px, 2vw, 28px);
  background: #f1f1ed;
}

.studio-profile,
.founder-profile,
.remote-model,
.scope-boundaries,
.start-checklist,
.brief-guide {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(58px, 9vw, 140px);
}

.studio-profile__copy,
.founder-profile__copy,
.remote-model__copy,
.scope-boundaries__copy,
.start-checklist__copy,
.brief-guide__copy {
  max-width: 760px;
}

.studio-profile__copy p,
.founder-profile__copy p,
.remote-model__copy p {
  color: #b2b2af;
  font-size: 17px;
  line-height: 1.75;
}

.founder-profile__facts dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.founder-profile__facts dl div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.founder-profile__facts dt {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.founder-profile__facts dd {
  margin: 5px 0 0;
  font-size: 14px;
}

.principle-grid,
.engagement-grid,
.approval-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-card,
.engagement-grid article,
.approval-flow__grid article {
  min-height: 245px;
  padding: 28px 24px 30px;
}

.principle-card + .principle-card,
.engagement-grid article + article,
.approval-flow__grid article + article {
  border-left: 1px solid var(--line);
}

.principle-card > span,
.engagement-grid span,
.approval-flow__grid span,
.service-detail__title > span,
.process-phase__copy > span,
.remote-model__list span,
.start-checklist__items span,
.brief-guide__grid span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
}

.principle-card h3,
.engagement-grid h3,
.approval-flow__grid h3 {
  margin: 48px 0 14px;
}

.principle-card p,
.engagement-grid p,
.approval-flow__grid p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.65;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.evidence-strip figure {
  margin: 0;
}

.evidence-strip img {
  display: block;
  width: 100%;
  height: clamp(280px, 29vw, 460px);
  object-fit: cover;
}

.evidence-strip figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.remote-model__list,
.start-checklist__items,
.brief-guide__grid {
  border-top: 1px solid var(--line);
}

.remote-model__list > div,
.start-checklist__items > div,
.brief-guide__grid > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.remote-model__list p,
.start-checklist__items p,
.brief-guide__grid p {
  margin: 0;
  color: #b0b0ad;
}

.service-catalogue {
  width: min(100%, 1210px);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 8vw, 120px);
  padding: clamp(58px, 7vw, 95px) 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail__title {
  display: grid;
  align-content: start;
  grid-template-columns: 50px 1fr;
  gap: 12px;
}

.service-detail__title h2 {
  font-size: clamp(31px, 3vw, 45px);
}

.service-detail__body > p {
  max-width: 720px;
  color: #b2b2af;
  font-size: 17px;
  line-height: 1.7;
}

.service-detail__body h3 {
  margin: 34px 0 16px;
  font-size: 15px;
  letter-spacing: .04em;
}

.service-detail__body ul,
.scope-boundaries__grid ul,
.process-phase__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail__body li,
.scope-boundaries__grid li,
.process-phase__copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: #aaa;
}

.engagement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scope-boundaries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 70px);
}

.scope-boundaries__grid h3 {
  margin-bottom: 22px;
}

.process-phases {
  padding-top: 40px;
}

.process-phase {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) 0;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.process-phase--reverse .process-phase__copy {
  order: 2;
}

.process-phase--reverse .process-phase__media,
.process-phase--reverse .process-options {
  order: 1;
}

.process-phase__copy h2 {
  margin: 18px 0 26px;
  font-size: clamp(33px, 3.35vw, 49px);
}

.process-phase__copy > p:not(.section-index) {
  color: #b0b0ad;
  font-size: 16px;
  line-height: 1.72;
}

.process-phase__copy h3 {
  margin: 30px 0 8px;
  font-size: 15px;
}

.process-phase__media {
  margin: 0;
}

.process-phase__media img {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.process-phase__media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-options img {
  width: 100%;
  aspect-ratio: .76;
  object-fit: cover;
}

.contact-page {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: calc(var(--header) + 90px) var(--pad) clamp(110px, 11vw, 160px);
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 140px);
}

.contact-page__intro {
  position: sticky;
  top: calc(var(--header) + 44px);
  align-self: start;
}

.contact-page__intro h1 {
  font-size: clamp(48px, 5vw, 76px);
}

.contact-page__intro > p:not(.section-index) {
  color: #b2b2af;
  line-height: 1.72;
}

.contact-page__intro > a {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.contact-form--full {
  align-self: start;
}

.contact-form__detail {
  align-self: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 4px;
}

.practice-note {
  margin-top: 48px;
}

.practice-note p {
  max-width: 610px;
  color: #b0b0ad;
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.5;
}

.practice-note .text-link {
  margin-top: 20px;
}

.page-cta {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.page-cta h2 {
  max-width: 850px;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  color: #a7a7a4;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  margin-bottom: 4px;
}

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

.site-footer--compact {
  width: 100%;
  max-width: none;
  padding-left: var(--pad);
  padding-right: var(--pad);
  background: #080808;
}

.legal-page,
.not-found {
  width: min(100%, 900px);
  min-height: 75svh;
  margin: 0 auto;
  padding: calc(var(--header) + 90px) var(--pad) 110px;
}

.legal-page h1,
.not-found h1 {
  max-width: 800px;
}

.legal-page h2 {
  margin: 48px 0 16px;
  font-size: 26px;
}

.legal-page p,
.not-found p {
  max-width: 720px;
  color: #b2b2af;
  font-size: 16px;
  line-height: 1.72;
}

.not-found .button {
  margin-top: 26px;
}

.archive-summary {
  display: flex;
  gap: clamp(28px, 5vw, 80px);
  padding: 0 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.archive-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-summary strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.projects-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.view-switcher {
  display: flex;
  gap: 8px;
}

.view-switcher button {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: #999;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.view-switcher button.is-active {
  background: #fff;
  color: #080808;
  border-color: #fff;
}

.filter-result {
  margin: -28px 0 35px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.projects-list__grid.is-list-view {
  display: block;
  border-top: 1px solid var(--line);
}

.projects-list__grid.is-list-view .project-card {
  border-bottom: 1px solid var(--line);
}

.projects-list__grid.is-list-view .project-card a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px 0;
}

.projects-list__grid.is-list-view .project-card img {
  width: 150px;
  height: 90px;
}

.projects-list__grid.is-list-view .project-card__meta {
  padding-top: 0;
}

@media (max-width: 980px) {
  .page-hero,
  .studio-profile,
  .founder-profile,
  .remote-model,
  .scope-boundaries,
  .start-checklist,
  .brief-guide,
  .service-detail,
  .process-phase,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 64px);
  }

  .principle-grid,
  .approval-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-card:nth-child(3),
  .approval-flow__grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .principle-card:nth-child(4),
  .approval-flow__grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-phase--reverse .process-phase__copy,
  .process-phase--reverse .process-phase__media,
  .process-phase--reverse .process-options {
    order: initial;
  }

  .contact-page__intro {
    position: static;
  }

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

@media (max-width: 680px) {
  .page-hero__media img {
    height: 58svh;
  }

  .principle-grid,
  .engagement-grid,
  .approval-flow__grid,
  .evidence-strip,
  .scope-boundaries__grid {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .engagement-grid article,
  .approval-flow__grid article {
    min-height: auto;
    padding: 25px 0;
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }

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

  .process-options {
    gap: 6px;
  }

  .projects-toolbar {
    display: grid;
  }

  .filter-result {
    margin-top: 0;
  }

  .projects-list__grid.is-list-view .project-card a {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
  }

  .projects-list__grid.is-list-view .project-card img {
    width: 100px;
    height: 75px;
  }

  .footer-links {
    gap: 10px 18px;
  }

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


:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.project-card img,
.page-hero__media img,
.hero__media img,
.evidence-strip img {
  background: #111;
}

.project-page .project-gallery,
.project-page .design-docs,
.project-page .project-end,
.content-page main > section:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.project-page .project-hero__meta dd,
.project-page .project-intro__facts dd {
  text-wrap: balance;
}

.project-tier--flagship .project-intro__copy h2 {
  max-width: 840px;
}

.project-tier--standard .project-intro__copy h2 {
  max-width: 740px;
}

@media (max-width: 680px) {
  .project-page .project-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .project-page .project-hero__meta > div {
    min-height: 92px;
    padding: 14px 12px 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .project-page .project-hero__meta > div:nth-child(even) {
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }

  .project-page .project-intro__facts dl div {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
  }

  .project-page .project-story__copy h2,
  .project-page .project-intro__copy h2 {
    text-wrap: pretty;
  }

  .project-card__meta {
    align-items: start;
  }
}


.editorial-atlas {
  width: min(100%, 1210px);
}

.editorial-atlas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.editorial-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.editorial-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(.35) contrast(.96) brightness(.82);
  transform: scale(1.012);
  transition:
    filter .7s ease,
    transform .9s cubic-bezier(.2,.72,.2,1);
}

.editorial-figure:hover img {
  filter: grayscale(0) saturate(.9) contrast(1) brightness(.96);
  transform: scale(1);
}

.editorial-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 34px 18px 15px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  color: rgba(255,255,255,.82);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.studio__media {
  overflow: hidden;
}

.studio__media img[src*="/editorial/"] {
  filter: grayscale(1) contrast(1.02) brightness(.84);
  transform: scale(1.012);
  transition:
    filter .8s ease,
    transform 1s cubic-bezier(.2,.72,.2,1);
}

.studio__media:hover img[src*="/editorial/"] {
  filter: grayscale(.25) contrast(1) brightness(.93);
  transform: scale(1);
}

.studio-hero-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, .62fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  height: min(70svh, 720px);
}

.studio-hero-collage figure,
.services-hero-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.studio-hero-collage__main {
  grid-row: 1 / 3;
}

.studio-hero-collage img,
.services-hero-mosaic img {
  display: block;
  width: 100%;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
  filter: grayscale(.72) saturate(.55) contrast(.98) brightness(.86);
  transition:
    filter .65s ease,
    transform .85s cubic-bezier(.2,.72,.2,1);
}

.studio-hero-collage figure:hover img,
.services-hero-mosaic figure:hover img {
  filter: grayscale(0) saturate(.9) brightness(.96);
  transform: scale(1.015);
}

.studio-hero-collage figcaption,
.services-hero-mosaic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: rgba(255,255,255,.82);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.services-hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(9px, 1.2vw, 15px);
  height: min(68svh, 700px);
}

.page-hero--services .services-hero-mosaic img {
  background: transparent;
}

.service-image-ribbon {
  width: min(100%, 1210px);
}

.service-image-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.service-image-ribbon__grid .editorial-figure {
  aspect-ratio: 4 / 5;
}

.sector-evidence .evidence-strip img[src*="/editorial/"] {
  filter: grayscale(.55) saturate(.65) brightness(.88);
  transition: filter .6s ease, transform .8s ease;
}

.sector-evidence .evidence-strip figure:hover img[src*="/editorial/"] {
  filter: grayscale(0) saturate(.9) brightness(.97);
  transform: scale(1.012);
}

.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.contact-editorial__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.contact-editorial__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,8,.08), rgba(8,8,8,.34)),
    linear-gradient(to top, rgba(8,8,8,.25), transparent 45%);
  pointer-events: none;
}

.contact-editorial__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.42) saturate(.65) brightness(.83);
}

.contact-editorial__copy {
  max-width: 560px;
}

.contact-editorial__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.4vw, 51px);
}

.contact-editorial__copy > p:not(.section-index) {
  color: #aaa;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .studio-hero-collage {
    height: min(64svh, 620px);
  }

  .contact-editorial {
    grid-template-columns: 1fr;
  }

  .contact-editorial__copy {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .editorial-atlas__grid,
  .service-image-ribbon__grid {
    grid-template-columns: 1fr;
  }

  .editorial-figure,
  .service-image-ribbon__grid .editorial-figure {
    aspect-ratio: 4 / 3;
  }

  .studio-hero-collage {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .studio-hero-collage__main {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .studio-hero-collage__secondary {
    aspect-ratio: 4 / 3;
  }

  .services-hero-mosaic {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .services-hero-mosaic figure {
    aspect-ratio: 1 / 1;
  }

  .contact-editorial__media {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-figure img,
  .studio__media img[src*="/editorial/"],
  .studio-hero-collage img,
  .services-hero-mosaic img,
  .sector-evidence .evidence-strip img[src*="/editorial/"] {
    transition: none;
    transform: none;
  }
}

.page-wipe{position:fixed;z-index:500;inset:0;pointer-events:none;background:#080808;transform:scaleY(0);transform-origin:bottom;transition:transform .52s var(--ease)}
body.is-leaving .page-wipe{transform:scaleY(1);transform-origin:top}
@view-transition{navigation:auto}
::view-transition-old(root){animation:page-out .38s ease both}
::view-transition-new(root){animation:page-in .5s var(--ease) both}
@keyframes page-out{to{opacity:0;transform:scale(.99)}}
@keyframes page-in{from{opacity:0;transform:translateY(14px)}}
@media(prefers-reduced-motion:reduce){.page-wipe{transition:none}}


.site-footer {
  width: min(100%, 1440px);
  padding: 46px var(--pad) 30px;
  grid-template-columns:
    minmax(120px, .42fr)
    minmax(320px, 1fr)
    minmax(220px, .62fr)
    auto;
  align-items: end;
  gap: clamp(24px, 3.5vw, 54px);
}

.footer-logo {
  width: 138px;
  align-self: end;
}

.footer-links {
  align-self: end;
  gap: 8px 18px;
}

.footer-contact {
  align-self: end;
}

.footer-copy,
.site-footer > p:last-child {
  align-self: end;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-footer {
    grid-template-columns: 140px minmax(0, 1fr) minmax(210px, .7fr);
  }

  .footer-copy,
  .site-footer > p:last-child {
    grid-column: 2 / -1;
    margin-top: 8px;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 38px;
    padding-bottom: 26px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .footer-logo {
    width: 118px;
  }

  .footer-copy,
  .site-footer > p:last-child {
    grid-column: auto;
    text-align: left;
  }
}


/* Final surgical refinement / footer */
.site-footer {
  width: min(100%, 1440px);
  padding: 28px var(--pad) 22px;
  grid-template-columns:
    minmax(90px, .30fr)
    minmax(300px, 1fr)
    minmax(210px, .56fr)
    auto;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
}

.footer-logo {
  width: 96px;
  align-self: center;
}

.footer-links,
.footer-contact,
.footer-copy,
.site-footer > p:last-child {
  align-self: center;
}

@media (max-width: 1080px) {
  .site-footer {
    padding-top: 28px;
    padding-bottom: 24px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 30px;
    padding-bottom: 24px;
    gap: 20px;
  }

  .footer-logo {
    width: 92px;
  }
}


/* Final mobile footer reset */
@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    overflow: hidden;
  }

  .footer-links,
  .footer-contact,
  .footer-copy,
  .site-footer > p:last-child {
    grid-column: auto;
    width: auto;
    max-width: 100%;
    justify-self: start;
    align-self: start;
    text-align: left;
    white-space: normal;
  }
}




.additional-projects {margin-top: 84px; padding-top: 42px; border-top: 1px solid var(--line);}
.additional-projects__intro {display:grid; grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap:30px; align-items:end; margin-bottom:32px;}
.additional-projects__intro p {margin:0; color:var(--muted);}
.additional-projects__status {font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted);}
@media (max-width: 980px){.additional-projects__intro{grid-template-columns:1fr;}}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}



.project-page {
  --project-width: 1240px;
}

.project-page .site-header {
  background: rgba(8,8,8,.94);
  border-bottom-color: var(--line-soft);
}

.project-hero {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: calc(var(--header) + 34px) var(--pad) 0;
}

.project-hero__media {
  width: min(100%, 1250px);
  margin: 0 auto;
}

.project-hero__media img {
  display: block;
  width: 100%;
  height: min(68svh, 730px);
  object-fit: cover;
}

.project-hero--contained .project-hero__media img {
  object-fit: contain;
  background: #101010;
}

.project-hero__content {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 38px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .6fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: end;
}

.project-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.02;
}

.project-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
}

.project-hero__meta div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-hero__meta dt,
.project-intro__facts dt {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.project-hero__meta dd {
  margin: 5px 0 0;
  font-size: 13px;
}

.project-intro {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: clamp(58px, 9vw, 130px);
}

.project-intro__facts {
  align-self: start;
}

.project-intro__facts dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.project-intro__facts dl div {
  padding: 13px 0 15px;
  border-bottom: 1px solid var(--line);
}

.project-intro__facts dd {
  margin: 5px 0 0;
  color: #c1c1bf;
  font-size: 13px;
  line-height: 1.55;
}

.project-intro__copy h2 {
  max-width: 800px;
  margin-bottom: 34px;
  font-size: clamp(34px, 3.55vw, 52px);
}

.project-intro__copy p {
  max-width: 750px;
  margin-bottom: 20px;
  color: #b2b2af;
  font-size: 17px;
  line-height: 1.72;
}

.project-gallery {
  width: min(100%, 1360px);
}

.project-story {
  width: min(100%, 1060px);
  margin: 0 auto clamp(48px, 5vw, 76px);
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
}

.project-story__label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-story__copy h2 {
  max-width: 780px;
  margin-bottom: 25px;
  font-size: clamp(31px, 3.1vw, 46px);
}

.project-story__copy p {
  max-width: 740px;
  margin-bottom: 0;
  color: #aaa;
  font-size: 16px;
  line-height: 1.72;
}

figure {
  margin-top: 0;
}

.media-full {
  width: min(100%, 1020px);
  margin: 0 auto clamp(54px, 6vw, 84px);
}

.media-full--wide {
  width: min(100%, 1220px);
}

.media-full--medium {
  width: min(100%, 900px);
}

.media-full--narrow {
  width: min(100%, 690px);
}

.media-full--right {
  margin-right: 5%;
}

.media-full img,
.media-grid img,
.compare img,
.media-triptych img {
  display: block;
  width: 100%;
  height: auto;
}

.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.media-grid {
  width: min(100%, 1050px);
  margin: 0 auto clamp(54px, 6vw, 84px);
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}

.media-grid--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-grid--asym {
  grid-template-columns: 1.18fr .82fr;
  align-items: start;
}

.media-grid--calm {
  width: min(100%, 980px);
}

.media-grid figure {
  margin: 0;
}

.media-grid--fixed figure {
  min-height: clamp(280px, 29vw, 490px);
}

.media-grid--fixed img {
  height: 100%;
  object-fit: cover;
}

.compare {
  width: min(100%, 1010px);
  margin: 0 auto clamp(54px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.compare figure {
  margin: 0;
}

.compare__label {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.media-triptych {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.media-triptych figure {
  margin: 0;
}

.media-triptych figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.design-docs {
  width: 100%;
  max-width: none;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.design-docs > * {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.design-docs__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .65fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 74px);
}

.design-docs__head h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.25vw, 48px);
}

.design-docs__head > p {
  max-width: 450px;
  margin-bottom: 3px;
  color: #a8a8a6;
  font-size: 15px;
  line-height: 1.7;
}

.drawing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.drawing-grid figure {
  margin: 0;
  padding: 18px;
  background: #f3f3ef;
}

.drawing-grid img {
  display: block;
  width: 100%;
}

.drawing-grid figcaption {
  margin-top: 12px;
  color: #575757;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-end {
  width: min(100%, 1420px);
  min-height: 58vh;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.project-end__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(.35);
}

.project-end::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.86), rgba(8,8,8,.18));
}

.project-end__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1060px);
  min-height: 58vh;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-end h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 56px);
}

.project-end__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.project-nav-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-nav-footer a {
  transition: opacity .2s ease;
}

.project-nav-footer a:hover {
  opacity: .62;
}

/* Projects archive */
.projects-list-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header) + 90px) var(--pad) clamp(70px, 8vw, 110px);
}

.projects-list-hero h1 {
  max-width: 930px;
  margin-bottom: 0;
  font-size: clamp(47px, 5.5vw, 82px);
}

.projects-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(105px, 10vw, 150px);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 48px;
}

.project-filters button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: #aaa;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.project-filters button:hover,
.project-filters button.is-active {
  border-color: #fff;
  background: #fff;
  color: #080808;
}

.projects-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 58px) clamp(20px, 2.6vw, 36px);
}

.projects-list__grid .project-card[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .project-hero__content,
  .project-intro,
  .project-story,
  .design-docs__head {
    grid-template-columns: 1fr;
  }

  .project-hero__content {
    gap: 34px;
  }

  .project-intro {
    gap: 48px;
  }

  .project-story {
    gap: 28px;
  }

  .project-story__label {
    margin-bottom: 0;
  }

  .design-docs__head {
    gap: 28px;
  }

  .projects-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .project-hero {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .project-hero__media img {
    height: 58svh;
  }

  .project-hero__content {
    padding-top: 27px;
  }

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

  .project-intro__copy p {
    font-size: 16px;
  }

  .media-grid--balanced,
  .media-grid--asym,
  .compare,
  .media-triptych,
  .drawing-grid,
  .projects-list__grid {
    grid-template-columns: 1fr;
  }

  .media-full--right {
    margin-right: auto;
  }

  .project-nav-footer {
    display: grid;
    gap: 14px;
  }
}


.case-summary {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 20px;
  padding-bottom: 90px;
}

.case-summary article {
  min-height: 220px;
  padding: 28px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-summary article + article {
  border-left: 1px solid var(--line);
}

.case-summary span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.case-summary h3 {
  margin: 42px 0 0;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.35;
}

@media (max-width: 760px) {
  .case-summary {
    grid-template-columns: 1fr;
  }

  .case-summary article {
    min-height: auto;
    border-left: 0 !important;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .case-summary article:last-child {
    border-bottom: 1px solid var(--line);
  }
}


/*
  Three controlled formats replace the earlier collection of arbitrary
  narrow, medium, wide, right-aligned and asymmetrical image treatments.
*/
.project-page .media-full,
.project-page .media-full--wide,
.project-page .media-full--medium,
.project-page .media-full--narrow,
.project-page .media-full--right {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(58px, 6vw, 86px);
}

.project-page .media-full--ratio-wide {
  width: min(100%, 1180px);
}

.project-page .media-full--ratio-standard {
  width: min(100%, 980px);
}

.project-page .media-full--ratio-portrait {
  width: min(100%, 700px);
}

.project-page .media-full img {
  width: 100%;
  height: auto;
  max-height: 82svh;
  object-fit: contain;
}

/*
  All supporting image groups use equal columns.
  The frame changes only according to the source orientation.
*/
.project-page .media-grid,
.project-page .media-grid--balanced,
.project-page .media-grid--asym,
.project-page .media-grid--calm {
  width: min(100%, 1120px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(58px, 6vw, 86px);
}

.project-page .media-grid figure {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #0d0d0d;
}

.project-page .media-grid--ratio-wide figure {
  aspect-ratio: 16 / 10;
}

.project-page .media-grid--ratio-standard figure {
  aspect-ratio: 1 / 1;
}

.project-page .media-grid--ratio-portrait figure {
  aspect-ratio: 4 / 5;
}

.project-page .media-grid--ratio-mixed figure {
  aspect-ratio: 4 / 3;
  padding: clamp(10px, 1.2vw, 16px);
}

.project-page .media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-page .media-grid--ratio-mixed img {
  object-fit: contain;
}

/* Before / after and option groups also follow one predictable rhythm. */
.project-page .compare {
  width: min(100%, 1120px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(58px, 6vw, 86px);
}

.project-page .compare figure {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0d0d0d;
}

.project-page .compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-page .media-triptych {
  width: min(100%, 1120px);
  gap: clamp(12px, 1.6vw, 20px);
  margin-bottom: clamp(58px, 6vw, 86px);
}

.project-page .media-triptych figure {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0d0d0d;
}

.project-page .media-triptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Technical sheets remain complete, but every sheet occupies the same frame. */
.project-page .drawing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.project-page .drawing-grid figure {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 4 / 3;
  padding: clamp(14px, 1.7vw, 22px);
  overflow: hidden;
  background: #f3f3ef;
}

.project-page .drawing-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.project-page .drawing-grid figcaption {
  align-self: end;
}

/* Hero images use only a wide or standard presentation. */
.project-page .project-hero__media {
  width: min(100%, 1220px);
}

.project-page .project-hero__media img {
  width: 100%;
  object-fit: cover;
}

.project-page .project-hero--ratio-wide .project-hero__media {
  aspect-ratio: 16 / 9;
}

.project-page .project-hero--ratio-standard .project-hero__media {
  width: min(100%, 1040px);
  aspect-ratio: 4 / 3;
}

.project-page .project-hero--ratio-wide .project-hero__media img,
.project-page .project-hero--ratio-standard .project-hero__media img {
  height: 100%;
}

@media (max-width: 680px) {
  .project-page .media-grid,
  .project-page .media-grid--balanced,
  .project-page .media-grid--asym,
  .project-page .media-grid--calm,
  .project-page .compare,
  .project-page .media-triptych,
  .project-page .drawing-grid {
    grid-template-columns: 1fr;
  }

  .project-page .media-grid--ratio-wide figure,
  .project-page .compare figure {
    aspect-ratio: 4 / 3;
  }

  .project-page .media-grid--ratio-standard figure,
  .project-page .media-triptych figure {
    aspect-ratio: 1 / 1;
  }

  .project-page .drawing-grid figure {
    aspect-ratio: 4 / 3;
  }

  .project-page .project-hero--ratio-wide .project-hero__media,
  .project-page .project-hero--ratio-standard .project-hero__media {
    aspect-ratio: 4 / 3;
  }
}


.project-page .project-gallery {
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.project-page .project-story {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.project-page .media-full,
.project-page .media-grid,
.project-page .media-triptych,
.project-page .compare {
  margin-top: 0;
}

.project-page .drawing-grid figure {
  border: 1px solid rgba(0,0,0,.07);
}

@media (max-width: 680px) {
  .project-page .project-gallery {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .project-page .project-story {
    margin-bottom: 34px;
  }
}


.project-page .project-hero {
  width: min(100%, 1440px);
  min-height: 100svh;
  box-sizing: border-box;
  padding:
    calc(var(--header) + clamp(28px, 4vh, 46px))
    var(--pad)
    clamp(44px, 6vh, 68px);
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
  grid-template-areas: "content media";
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}

.project-page .project-hero__content {
  grid-area: content;
  width: auto;
  margin: 0;
  padding: 0;
  display: block;
  align-self: center;
}

.project-page .project-hero__content.reveal {
  opacity: 1;
  transform: none;
}

.project-page .project-hero__content .eyebrow {
  margin-bottom: 20px;
}

.project-page .project-hero h1 {
  max-width: 620px;
  margin: 0 0 clamp(40px, 5vh, 62px);
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: .96;
}

.project-page .project-hero__meta {
  width: min(100%, 470px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.project-page .project-hero__media {
  grid-area: media;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.project-page .project-hero__media img,
.project-page .project-hero--contained .project-hero__media img,
.project-page .project-hero--ratio-wide .project-hero__media img,
.project-page .project-hero--ratio-standard .project-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.project-page .project-hero--ratio-wide .project-hero__media {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.project-page .project-hero--ratio-standard .project-hero__media {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.project-page .project-hero--contained .project-hero__media {
  width: min(100%, 690px);
  aspect-ratio: 1 / 1;
  justify-self: end;
}

.project-page .project-intro {
  padding-top: clamp(72px, 8vw, 116px);
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 980px) {
  .project-page .project-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media";
    gap: 42px;
    padding-top: calc(var(--header) + 46px);
  }

  .project-page .project-hero__content {
    width: min(100%, 760px);
  }

  .project-page .project-hero h1 {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .project-page .project-hero__media,
  .project-page .project-hero--contained .project-hero__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .project-page .project-hero {
    gap: 30px;
    padding-top: calc(var(--header) + 32px);
    padding-bottom: 48px;
  }

  .project-page .project-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

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


/* Final project first-viewport fitting */
.project-page .project-hero__meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
}

.project-page .project-hero__meta dd {
  line-height: 1.35;
}

@media (min-width: 981px) and (max-height: 820px) {
  .project-page .project-hero {
    min-height: 100svh;
    padding-top: calc(var(--header) + 20px);
    padding-bottom: 20px;
    gap: clamp(38px, 5vw, 72px);
  }

  .project-page .project-hero h1 {
    margin-bottom: 26px;
    font-size: clamp(40px, 4.4vw, 60px);
  }

  .project-page .project-hero__content {
    max-height: calc(100svh - var(--header) - 40px);
  }

  .project-page .project-hero__media {
    max-height: calc(100svh - var(--header) - 40px);
  }

  .project-page .project-hero--contained .project-hero__media {
    width: min(100%, calc(100svh - var(--header) - 40px));
    max-width: 690px;
  }
}


/* ------------------------------------------------------------
   Shared editorial rhythm
   ------------------------------------------------------------ */
.visual-audit {
  --section-space: clamp(72px, 7vw, 108px);
  --section-space-mobile: 58px;
}

.visual-audit.content-page .section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.visual-audit .section-head {
  margin-bottom: clamp(38px, 4.8vw, 66px);
}

.visual-audit .page-hero {
  min-height: min(720px, 80svh);
  padding-top: calc(var(--header) + 46px);
  padding-bottom: 48px;
  gap: clamp(44px, 6vw, 88px);
}

.visual-audit .page-hero__copy h1 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
  text-wrap: balance;
}

.visual-audit .page-hero__copy > p:not(.section-index) {
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.66;
}

.visual-audit .page-hero__media img {
  height: min(60svh, 620px);
}

.visual-audit .studio-profile,
.visual-audit .founder-profile,
.visual-audit .remote-model,
.visual-audit .scope-boundaries,
.visual-audit .start-checklist,
.visual-audit .brief-guide {
  gap: clamp(46px, 7vw, 104px);
}

.visual-audit .studio-profile__copy p,
.visual-audit .founder-profile__copy p,
.visual-audit .remote-model__copy p {
  font-size: 16px;
  line-height: 1.68;
}

.visual-audit .principle-card,
.visual-audit .engagement-grid article,
.visual-audit .approval-flow__grid article {
  min-height: 205px;
  padding: 24px 22px 26px;
}

.visual-audit .principle-card h3,
.visual-audit .engagement-grid h3,
.visual-audit .approval-flow__grid h3 {
  margin-top: 34px;
}

.visual-audit .evidence-strip img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-audit .service-detail {
  gap: clamp(46px, 7vw, 102px);
  padding: clamp(48px, 5.6vw, 76px) 0;
}

.visual-audit .service-detail__body > p {
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.66;
}

.visual-audit .process-phases {
  padding-top: 20px;
}

.visual-audit .process-phase {
  padding: clamp(60px, 6.5vw, 96px) 0;
  gap: clamp(48px, 7vw, 104px);
}

.visual-audit .process-phase__copy > p:not(.section-index) {
  max-width: 62ch;
  line-height: 1.66;
}

.visual-audit .process-phase__media img {
  max-height: 590px;
}

.visual-audit .page-cta {
  min-height: 360px;
}

.visual-audit .contact-page {
  padding-top: calc(var(--header) + 72px);
  padding-bottom: clamp(84px, 8vw, 118px);
  gap: clamp(54px, 8vw, 112px);
}

.visual-audit .contact-editorial,
.visual-audit .brief-guide {
  gap: clamp(44px, 6.5vw, 92px);
}

/* ------------------------------------------------------------
   Homepage pacing — preserve the approved interactions
   ------------------------------------------------------------ */
.visual-audit.home-page .project-matrix--hero {
  height: 118svh;
}

.visual-audit.home-page .journey-intro {
  min-height: auto;
  gap: clamp(38px, 6vw, 82px);
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.visual-audit.home-page .journey-intro__images {
  min-height: clamp(500px, 48vw, 590px);
}

.visual-audit.home-page .journey-services,
.visual-audit.home-page .journey-process {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(70px, 7.5vw, 104px);
}

.visual-audit.home-page .journey-services .journey-section-head,
.visual-audit.home-page .journey-process .journey-section-head {
  margin-bottom: clamp(30px, 3.5vw, 48px);
}

.visual-audit.home-page .journey-service__row {
  min-height: clamp(116px, 16svh, 148px) !important;
  padding-top: clamp(18px, 2.3vh, 25px) !important;
  padding-bottom: clamp(18px, 2.3vh, 25px) !important;
}

.visual-audit.home-page .journey-services__visual,
.visual-audit.home-page .journey-process__visual {
  height: min(57svh, 590px) !important;
  min-height: 400px !important;
}

.visual-audit.home-page .simple-work {
  padding-top: clamp(70px, 7.5vw, 108px);
  padding-bottom: clamp(72px, 7.5vw, 110px);
}

.visual-audit.home-page .journey-principles__inner {
  padding-top: clamp(62px, 6.5vw, 92px);
  padding-bottom: clamp(62px, 6.5vw, 92px);
}

.visual-audit.home-page .journey-principles__intro {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.visual-audit.home-page .journey-principle {
  min-height: 180px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.visual-audit.home-page .journey-principle h3 {
  margin-top: clamp(30px, 3vw, 46px);
}

.visual-audit.home-page .journey-process__step {
  min-height: clamp(170px, 23svh, 228px) !important;
  padding-top: clamp(24px, 2.8vh, 34px) !important;
  padding-bottom: clamp(24px, 2.8vh, 34px) !important;
}

.visual-audit.home-page .journey-practice {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}

.visual-audit.home-page .editorial-testimonials {
  padding-top: clamp(62px, 6.8vw, 96px);
}

.visual-audit.home-page .editorial-testimonials__top {
  padding-bottom: clamp(40px, 4.8vw, 66px);
}

.visual-audit.home-page .editorial-testimonials__clients {
  padding-top: 26px;
  padding-bottom: 26px;
}

.visual-audit.home-page .journey-contact__copy {
  padding-top: clamp(30px, 3.5vw, 48px);
  padding-bottom: clamp(30px, 3.5vw, 48px);
}

/* ------------------------------------------------------------
   Projects archive — consistent, editorial 4:3 thumbnails
   ------------------------------------------------------------ */
.visual-audit .projects-list-hero {
  padding-top: calc(var(--header) + 72px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.visual-audit .projects-list-hero h1 {
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: .98;
  text-wrap: balance;
}

.visual-audit .projects-list {
  padding-bottom: clamp(78px, 8vw, 116px);
}

.visual-audit .projects-list__grid,
.visual-audit .project-grid {
  gap: clamp(30px, 3.4vw, 48px) clamp(18px, 2.2vw, 30px);
}

.visual-audit .project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-audit .project-card__meta {
  padding-top: 14px;
}

.visual-audit .project-card__meta h3 {
  font-size: clamp(21px, 2.1vw, 31px);
}

/* ------------------------------------------------------------
   Individual projects — preserve source orientation and shorten pages
   ------------------------------------------------------------ */
.visual-audit.project-page .project-hero {
  min-height: min(900px, 96svh);
}

.visual-audit.project-page .project-intro {
  padding-top: clamp(60px, 6.5vw, 92px);
  gap: clamp(46px, 7vw, 100px);
}

.visual-audit.project-page .project-intro__copy h2 {
  margin-bottom: 26px;
}

.visual-audit.project-page .project-intro__copy p {
  font-size: 16px;
  line-height: 1.68;
}

.visual-audit.project-page .project-gallery {
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.visual-audit.project-page .project-story {
  margin-bottom: clamp(30px, 3.8vw, 52px);
}

.visual-audit.project-page .project-story__copy p {
  line-height: 1.66;
}

.visual-audit.project-page .media-grid,
.visual-audit.project-page .compare,
.visual-audit.project-page .media-triptych {
  gap: clamp(14px, 1.7vw, 22px);
  margin-bottom: clamp(36px, 4.2vw, 58px);
}

.visual-audit.project-page .media-grid figure,
.visual-audit.project-page .compare figure,
.visual-audit.project-page .media-triptych figure {
  height: auto;
  min-height: 0;
  align-self: start;
}

.visual-audit.project-page .media-group--mixed-orientation {
  align-items: start;
}

.visual-audit.project-page figure.media-orientation--wide {
  aspect-ratio: 16 / 10 !important;
}

.visual-audit.project-page figure.media-orientation--landscape {
  aspect-ratio: 4 / 3 !important;
}

.visual-audit.project-page figure.media-orientation--square {
  aspect-ratio: 1 / 1 !important;
}

.visual-audit.project-page figure.media-orientation--portrait {
  aspect-ratio: 4 / 5 !important;
}

.visual-audit.project-page figure.media-orientation--wide img,
.visual-audit.project-page figure.media-orientation--landscape img,
.visual-audit.project-page figure.media-orientation--square img,
.visual-audit.project-page figure.media-orientation--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-audit.project-page .design-docs {
  padding-top: clamp(66px, 6.5vw, 94px);
  padding-bottom: clamp(66px, 6.5vw, 94px);
}

.visual-audit.project-page .design-docs__head {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.visual-audit.project-page .drawing-grid figure {
  padding: clamp(12px, 1.4vw, 18px);
}

.visual-audit.project-page .project-end__content {
  padding-top: clamp(66px, 7vw, 102px);
  padding-bottom: clamp(66px, 7vw, 102px);
}

/* ------------------------------------------------------------
   Responsive correction
   ------------------------------------------------------------ */
@media (max-width: 980px) {
  .visual-audit .page-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 44px);
    padding-bottom: 42px;
    gap: 36px;
  }

  .visual-audit .page-hero__media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .visual-audit.home-page .project-matrix--hero {
    height: auto;
    min-height: 100svh;
  }

  .visual-audit.home-page .journey-intro,
  .visual-audit.home-page .journey-services,
  .visual-audit.home-page .journey-process,
  .visual-audit.home-page .journey-principles__inner,
  .visual-audit.home-page .journey-practice {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .visual-audit.home-page .journey-services__visual,
  .visual-audit.home-page .journey-process__visual {
    min-height: 0 !important;
    height: auto !important;
  }
}

@media (max-width: 680px) {
  .visual-audit.content-page .section {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .visual-audit .page-hero__copy h1,
  .visual-audit .projects-list-hero h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .visual-audit .principle-card,
  .visual-audit .engagement-grid article,
  .visual-audit .approval-flow__grid article {
    min-height: auto;
    padding: 22px 0 24px;
  }

  .visual-audit .service-detail {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .visual-audit .process-phase {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .visual-audit .page-cta {
    min-height: 300px;
  }

  .visual-audit .projects-list-hero {
    padding-top: calc(var(--header) + 50px);
    padding-bottom: 46px;
  }

  .visual-audit .projects-list {
    padding-bottom: 72px;
  }

  .visual-audit .project-card__meta {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .visual-audit .project-card__meta > span {
    padding-bottom: 0;
    white-space: normal;
  }

  .visual-audit.project-page .project-hero {
    gap: 26px;
    padding-bottom: 42px;
  }

  .visual-audit.project-page .project-hero h1 {
    font-size: clamp(39px, 11.5vw, 54px);
  }

  .visual-audit.project-page .project-intro,
  .visual-audit.project-page .project-gallery,
  .visual-audit.project-page .design-docs {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .visual-audit.project-page .project-story {
    margin-bottom: 28px;
  }

  .visual-audit.project-page .media-grid,
  .visual-audit.project-page .compare,
  .visual-audit.project-page .media-triptych {
    margin-bottom: 34px;
  }

  .visual-audit.project-page figure.media-orientation--wide {
    aspect-ratio: 16 / 10 !important;
  }

  .visual-audit.project-page figure.media-orientation--landscape {
    aspect-ratio: 4 / 3 !important;
  }

  .visual-audit.project-page figure.media-orientation--portrait {
    aspect-ratio: 4 / 5 !important;
  }

  .visual-audit.home-page .editorial-testimonials__top {
    padding-bottom: 34px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .visual-audit.home-page .journey-service__row {
    min-height: 112px !important;
  }

  .visual-audit.home-page .journey-process__step {
    min-height: 164px !important;
  }

  .visual-audit .page-hero {
    min-height: calc(100svh - 18px);
    padding-top: calc(var(--header) + 28px);
    padding-bottom: 28px;
  }
}

/* Tablet-specific containment and testimonial density. */
@media (min-width: 681px) and (max-width: 980px) {
  .visual-audit.home-page .journey-intro {
    grid-template-columns: 1fr !important;
  }

  .visual-audit.home-page .journey-intro__images {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    overflow: hidden;
    justify-self: stretch;
  }

  .visual-audit.home-page .journey-intro__image--large {
    width: min(100%, 680px) !important;
    margin-left: auto;
  }

  .visual-audit.home-page .journey-intro__image--small {
    display: none;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .visual-audit.home-page .editorial-testimonials__stage {
    grid-template-columns: minmax(0, 1fr) 58px;
    padding-bottom: 54px;
  }

  .visual-audit.home-page .editorial-testimonial {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    height: 420px;
    min-height: 0;
  }

  .visual-audit.home-page .editorial-testimonial figure {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .visual-audit.home-page .editorial-testimonial__quote {
    min-height: 0;
    height: 100%;
    padding: 30px;
  }

  .visual-audit.home-page .editorial-testimonial blockquote {
    font-size: clamp(19px, 2.8vw, 24px);
    line-height: 1.36;
  }

  .visual-audit.home-page .editorial-testimonials__index {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 0 0 22px;
  }
}


:root {
  --focus-color: #f4f3ee;
  --touch-target: 44px;
  --readable-width: 68ch;
}

html {
  scroll-padding-top: calc(var(--header) + 22px);
  scrollbar-gutter: stable;
}

body.production-audit {
  overflow-x: clip;
}

.production-audit img,
.production-audit svg {
  display: block;
}

.production-audit figure {
  min-width: 0;
}

.production-audit h1,
.production-audit h2,
.production-audit h3 {
  text-wrap: balance;
}

.production-audit p,
.production-audit blockquote {
  text-wrap: pretty;
}

.production-audit button,
.production-audit summary,
.production-audit [role="button"] {
  cursor: pointer;
}

.production-audit :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.production-audit .site-header {
  isolation: isolate;
  min-width: 0;
}

.production-audit .digital-wordmark,
.production-audit .menu-toggle {
  position: relative;
  z-index: 3;
}

.production-audit .site-nav > a {
  white-space: nowrap;
}

.production-audit .journey-shell,
.production-audit .section,
.production-audit .site-footer,
.production-audit .project-hero__content,
.production-audit .project-intro,
.production-audit .project-gallery > *,
.production-audit .design-docs > *,
.production-audit .project-end__content {
  min-width: 0;
}

/* Keep deferred sections from producing abrupt scroll-height corrections. */
.production-audit .project-gallery,
.production-audit .design-docs,
.production-audit .project-end,
.production-audit.content-page main > section:not(:first-child) {
  contain-intrinsic-block-size: auto 900px;
}

/* Header and navigation --------------------------------------------------- */
@media (max-width: 980px) {
  .production-audit .menu-toggle {
    width: var(--touch-target);
    height: var(--touch-target);
    padding: 11px;
    margin-right: -8px;
  }

  .production-audit .site-nav {
    z-index: 1;
    visibility: hidden;
    gap: 0;
    padding:
      calc(var(--header) + 38px)
      max(var(--pad), env(safe-area-inset-right))
      max(38px, env(safe-area-inset-bottom))
      max(var(--pad), env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .production-audit .site-nav.is-open {
    visibility: visible;
  }

  .production-audit .site-nav > a {
    display: flex;
    width: min(100%, 560px);
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: clamp(15px, 4vw, 19px);
    letter-spacing: .1em;
  }

  .production-audit .site-nav > a:first-child {
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .production-audit .site-nav .nav-cta {
    width: min(100%, 560px);
    min-height: 54px;
    margin-top: 28px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.38);
  }
}

/* Homepage --------------------------------------------------------------- */
.production-audit.home-page .project-matrix--hero,
.production-audit.home-page .journey-main > section {
  overflow: clip;
}

.production-audit.home-page .journey-intro__statement > p:not(.journey-index),
.production-audit.home-page .journey-section-head > p,
.production-audit.home-page .journey-practice__details > p,
.production-audit.home-page .editorial-testimonials__intro {
  max-width: var(--readable-width);
}

@media (min-width: 981px) {
  .production-audit.home-page .journey-services__layout,
  .production-audit.home-page .journey-process__layout {
    align-items: start;
  }

  .production-audit.home-page .journey-services__visual,
  .production-audit.home-page .journey-process__visual {
    top: calc(var(--header) + 28px) !important;
    height: min(58svh, 600px) !important;
    max-height: calc(100svh - var(--header) - 56px);
    min-height: min(410px, calc(100svh - var(--header) - 56px)) !important;
  }

  .production-audit.home-page .journey-service__row {
    min-height: clamp(112px, 15svh, 144px) !important;
  }

  .production-audit.home-page .journey-process__step {
    min-height: clamp(164px, 22svh, 220px) !important;
  }
}

.production-audit.home-page .journey-service__row,
.production-audit.home-page .journey-process__step {
  scroll-margin-top: calc(var(--header) + 24px);
}

.production-audit.home-page .simple-carousel {
  overflow: clip;
  touch-action: pan-y;
}

.production-audit.home-page .simple-carousel__arrow {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  display: inline-grid;
  place-items: center;
}

.production-audit.home-page .simple-carousel__slide a:focus-visible {
  outline-offset: -2px;
}

.production-audit.home-page .editorial-testimonials__index button {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
}

.production-audit.home-page .editorial-testimonial__quote {
  min-width: 0;
}

.production-audit.home-page .editorial-testimonial blockquote {
  overflow-wrap: anywhere;
}

.production-audit.home-page .journey-contact__copy {
  align-content: center;
}

.production-audit.home-page .journey-contact__media img {
  object-position: center center;
}

@media (max-width: 980px) {
  .production-audit.home-page .journey-services__layout,
  .production-audit.home-page .journey-process__layout {
    gap: 34px;
  }

  .production-audit.home-page .journey-services__visual,
  .production-audit.home-page .journey-process__visual {
    position: relative !important;
    top: auto !important;
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
  }

  .production-audit.home-page .journey-service__image,
  .production-audit.home-page .journey-process__image {
    height: 100%;
  }

  .production-audit.home-page .journey-service__row,
  .production-audit.home-page .journey-process__step {
    min-height: 0 !important;
  }
}

@media (max-width: 680px) {
  .production-audit.home-page .journey-intro,
  .production-audit.home-page .journey-services,
  .production-audit.home-page .simple-work,
  .production-audit.home-page .journey-process,
  .production-audit.home-page .journey-practice,
  .production-audit.home-page .editorial-testimonials,
  .production-audit.home-page .journey-contact {
    scroll-margin-top: var(--header);
  }

  .production-audit.home-page .journey-services__visual,
  .production-audit.home-page .journey-process__visual {
    aspect-ratio: 4 / 3;
  }

  .production-audit.home-page .simple-carousel__controls {
    gap: 8px;
  }

  .production-audit.home-page .editorial-testimonial {
    min-height: 0;
  }

  .production-audit.home-page .editorial-testimonial figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .production-audit.home-page .editorial-testimonial__quote {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* Content pages ---------------------------------------------------------- */
.production-audit.content-page .page-hero__copy,
.production-audit.content-page .studio-profile__copy,
.production-audit.content-page .founder-profile__copy,
.production-audit.content-page .remote-model__copy,
.production-audit.content-page .service-detail__body,
.production-audit.content-page .process-phase__copy,
.production-audit.content-page .contact-page__intro {
  min-width: 0;
}

.production-audit.content-page .page-hero__copy > p,
.production-audit.content-page .studio-profile__copy p,
.production-audit.content-page .founder-profile__copy p,
.production-audit.content-page .remote-model__copy p,
.production-audit.content-page .service-detail__body > p,
.production-audit.content-page .process-phase__copy > p,
.production-audit.content-page .contact-page__intro > p {
  max-width: var(--readable-width);
}

.production-audit.content-page .page-hero__media,
.production-audit.content-page .process-phase__media,
.production-audit.content-page .editorial-figure,
.production-audit.content-page .studio-hero-collage,
.production-audit.content-page .services-hero-mosaic {
  overflow: clip;
}

.production-audit.content-page .page-hero__media img,
.production-audit.content-page .process-phase__media img,
.production-audit.content-page .editorial-figure img,
.production-audit.content-page .studio-hero-collage img,
.production-audit.content-page .services-hero-mosaic img {
  width: 100%;
}

/* Projects archive ------------------------------------------------------- */
.production-audit .projects-toolbar {
  align-items: start;
}

.production-audit .project-filters {
  min-width: 0;
  flex-wrap: wrap;
}

.production-audit .project-filters button,
.production-audit [data-view] {
  min-height: var(--touch-target);
}

.production-audit .filter-result {
  min-height: 1.5em;
}

.production-audit .project-card a {
  min-width: 0;
}

.production-audit .project-card img {
  transition: transform .7s var(--ease), filter .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .production-audit .project-card a:hover img {
    transform: scale(1.018);
  }
}

@media (max-width: 980px) {
  .production-audit .projects-toolbar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .production-audit .project-filters,
  .production-audit .view-toggle {
    width: 100%;
  }

  .production-audit .project-filters button,
  .production-audit .view-toggle button {
    flex: 1 1 130px;
  }
}

@media (max-width: 680px) {
  .production-audit .project-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-audit .project-filters button:first-child {
    grid-column: 1 / -1;
  }

  .production-audit .view-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Individual projects ---------------------------------------------------- */
.production-audit.project-page .project-hero__content,
.production-audit.project-page .project-intro,
.production-audit.project-page .project-story,
.production-audit.project-page .design-docs__head,
.production-audit.project-page .project-end__content {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.production-audit.project-page .project-intro__copy p,
.production-audit.project-page .project-story__copy p {
  max-width: var(--readable-width);
}

.production-audit.project-page .media-grid,
.production-audit.project-page .media-triptych,
.production-audit.project-page .compare,
.production-audit.project-page .drawing-grid {
  align-items: start;
}

.production-audit.project-page .media-grid figure,
.production-audit.project-page .media-triptych figure,
.production-audit.project-page .compare figure,
.production-audit.project-page .drawing-grid figure,
.production-audit.project-page .media-full {
  overflow: clip;
}

.production-audit.project-page .media-caption,
.production-audit.project-page figcaption {
  overflow-wrap: anywhere;
}

.production-audit.project-page .project-end__actions a {
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
}

@media (max-width: 760px) {
  .production-audit.project-page .project-hero__meta {
    gap: 14px 22px;
  }

  .production-audit.project-page .media-grid,
  .production-audit.project-page .media-triptych,
  .production-audit.project-page .compare,
  .production-audit.project-page .drawing-grid {
    grid-template-columns: 1fr !important;
  }

  .production-audit.project-page .project-end__actions {
    align-items: stretch;
  }

  .production-audit.project-page .project-end__actions a {
    justify-content: space-between;
  }
}

/* Contact and forms ------------------------------------------------------ */
.production-audit .contact-form input,
.production-audit .contact-form select {
  min-height: 50px;
}

.production-audit .contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.production-audit .contact-form label > span {
  line-height: 1.35;
}

.production-audit .contact-form__optional {
  min-width: 0;
}

.production-audit .contact-form__optional summary {
  min-height: var(--touch-target);
  display: grid;
  align-content: center;
}

.production-audit .contact-form .button {
  min-height: 50px;
}

/* Footer ---------------------------------------------------------------- */
.production-audit .site-footer {
  width: min(100%, 1440px);
  margin-inline: auto;
  align-items: center;
}

.production-audit .footer-links {
  min-width: 0;
}

.production-audit .footer-links a,
.production-audit .footer-contact a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
}

@media (min-width: 1081px) {
  .production-audit .site-footer {
    grid-template-columns: 96px minmax(320px, 1fr) minmax(220px, .62fr) auto;
  }
}

@media (max-width: 1080px) and (min-width: 721px) {
  .production-audit .site-footer {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
  }

  .production-audit .footer-contact,
  .production-audit .footer-copy,
  .production-audit .site-footer > p:last-child {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .production-audit .site-footer {
    padding-top: 34px;
    padding-bottom: max(26px, env(safe-area-inset-bottom));
    gap: 22px;
  }

  .production-audit .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 4px 20px;
  }
}

/* Motion and input modes ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .production-audit *,
  .production-audit *::before,
  .production-audit *::after {
    scroll-behavior: auto !important;
  }

  .production-audit .project-card img,
  .production-audit .digital-wordmark,
  .production-audit .journey-button,
  .production-audit .button {
    transition-duration: .01ms !important;
  }
}

.production-audit img.image-load-failed {
  opacity: .28;
  background:
    linear-gradient(135deg, transparent 49.5%, currentColor 50%, transparent 50.5%),
    #151515;
}


@media (max-width: 980px) {
  /* Do not let will-change/transform turn the full-screen nav into a 70px child. */
  .site-header {
    z-index: 1230 !important;
    transform: none !important;
    will-change: opacity !important;
  }

  .menu-toggle {
    z-index: 1220 !important;
  }

  /* The hotfix script moves this element to body on mobile. */
  body > .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1210 !important;
    box-sizing: border-box !important;
    display: flex !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100svh !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding:
      calc(max(var(--header), env(safe-area-inset-top)) + 22px)
      max(var(--pad), env(safe-area-inset-right))
      max(30px, env(safe-area-inset-bottom))
      max(var(--pad), env(safe-area-inset-left)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    background: #080808 !important;
    color: #f4f4f0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: opacity .22s ease, visibility 0s linear .22s !important;
  }

  body > .site-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity .22s ease !important;
  }

  body > .site-nav > a {
    display: flex !important;
    width: 100% !important;
    min-height: 58px !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.14) !important;
    color: rgba(255,255,255,.82) !important;
    font-size: clamp(17px, 5vw, 22px) !important;
    letter-spacing: .08em !important;
    white-space: normal !important;
  }

  body > .site-nav > a:first-child {
    border-top: 1px solid rgba(255,255,255,.14) !important;
  }

  body > .site-nav > a[aria-current="page"] {
    color: #fff !important;
  }

  body > .site-nav .nav-cta {
    min-height: 56px !important;
    margin-top: 24px !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,.42) !important;
    color: #fff !important;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  body.menu-open .site-header,
  body.menu-open .menu-toggle {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.menu-open .site-header {
    background: #080808 !important;
    border-bottom-color: transparent !important;
  }

  body.menu-open .digital-wordmark img {
    filter: none !important;
  }

  body.menu-open .menu-toggle span {
    background: #fff !important;
  }

  /* A touchable 6×6 matrix: about 44px per cell on normal mobile widths. */
  .home-page .matrix-hero__mark,
  .home-page .matrix-hero__mark {
    width: min(88vw, 350px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .matrix-mobile-instruction {
    position: absolute;
    left: 50%;
    bottom: -25px;
    display: block;
    width: max-content;
    max-width: 92vw;
    margin: 0;
    color: rgba(17,17,15,.58);
    font-size: 8px;
    letter-spacing: .12em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .project-matrix__cell.is-touch-armed::before {
    border-color: rgba(17,17,15,.68) !important;
    background: rgba(17,17,15,.08) !important;
  }

  .project-matrix__cell.is-touch-armed > span {
    color: rgba(17,17,15,.72) !important;
  }
}

@media (min-width: 981px) {
  .matrix-mobile-instruction { display: none; }
}


@media (hover:hover) and (pointer:fine) {
  .project-matrix__cell,
  .project-matrix__cell:hover,
  .project-matrix__cell:active,
  .project-matrix__cell:focus-visible,
  .project-hero-reveal__cell,
  .project-hero-reveal__cell:hover,
  .project-hero-reveal__cell:active,
  .project-hero-reveal__cell:focus-visible {
    cursor: url("../ui/morphd-field-cursor.svg") 16 16, default !important;
  }
}
@media (hover:none), (pointer:coarse) {
  .project-matrix__cell,
  .project-hero-reveal__cell { cursor: auto !important; }
}


:root {
  --section-space-desktop: clamp(68px, 5.8vw, 88px);
  --section-space-tablet: 58px;
  --section-space-compact: 46px;
  --section-heading-gap: clamp(34px, 4.2vw, 54px);
}

/* Anchor targets should arrive below the fixed header rather than half-hidden. */
main [id],
.service-detail[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

/* Shared editorial spacing. */
body.visual-audit.content-page .section,
body.production-audit:not(.home-page) .section {
  padding-top: var(--section-space-desktop) !important;
  padding-bottom: var(--section-space-desktop) !important;
}

body.visual-audit .section-head {
  margin-bottom: var(--section-heading-gap) !important;
}

/* A single hero composition should sit comfortably inside a laptop viewport.
   Dense project information and galleries remain naturally scrollable. */
body.visual-audit .page-hero {
  min-height: min(700px, calc(100svh - 18px)) !important;
  padding-top: calc(var(--header) + 38px) !important;
  padding-bottom: 40px !important;
  gap: clamp(38px, 5vw, 72px) !important;
}

body.visual-audit .page-hero__media img {
  max-height: min(60svh, 620px) !important;
}

/* Process stages: same media geometry and enough compression to keep each
   mobile stage close to one coherent viewport without hiding information. */
body.content-page .process-phase {
  padding-top: clamp(54px, 5.5vw, 78px) !important;
  padding-bottom: clamp(54px, 5.5vw, 78px) !important;
  gap: clamp(42px, 6vw, 82px) !important;
}

body.content-page .process-phase__media--illustration {
  justify-self: center;
}

/* Compact conversion sections; remove inherited full-screen tendencies. */
body.visual-audit .page-cta {
  min-height: 0 !important;
  padding-top: clamp(68px, 6vw, 88px) !important;
  padding-bottom: clamp(68px, 6vw, 88px) !important;
}

body.visual-audit .page-cta h2 {
  margin-bottom: 30px !important;
}

/* ----------------------------------------------------------------------
   Global footer: identical, compact proportions on every route.
   The old SVG was 652px high and several pages allowed that intrinsic height
   to define the footer. The image is now explicitly contained.
   ---------------------------------------------------------------------- */
body .site-footer {
  box-sizing: border-box !important;
  width: min(100%, 1440px) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 20px var(--pad) 18px !important;
  grid-template-columns: 68px minmax(280px, 1fr) minmax(190px, .52fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  overflow: hidden !important;
}

body .footer-logo {
  display: block !important;
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  min-height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  align-self: center !important;
  overflow: hidden !important;
}

body .footer-logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

body .footer-links,
body .footer-contact,
body .footer-copy,
body .site-footer > p:last-child {
  min-width: 0 !important;
  align-self: center !important;
  margin: 0 !important;
}

body .footer-links {
  gap: 2px 16px !important;
}

body .site-footer a:not(.footer-logo) {
  display: inline-flex !important;
  min-height: 28px !important;
  align-items: center !important;
}

/* Controls that are not inline prose links meet the current WCAG 2.2 AA
   pointer-target minimum, with 44px used for primary/navigation controls. */
.project-end__actions a,
.project-nav a,
.simple-carousel__control,
.menu-toggle,
.contact-form summary,
.projects-view-controls button,
.project-filter button {
  min-height: 44px !important;
}

.journey-text-link,
.simple-work__all {
  min-height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
}

@media (max-width: 1080px) and (min-width: 721px) {
  body.visual-audit.content-page .section,
  body.production-audit:not(.home-page) .section {
    padding-top: var(--section-space-tablet) !important;
    padding-bottom: var(--section-space-tablet) !important;
  }

  body .site-footer {
    padding-top: 20px !important;
    padding-bottom: 18px !important;
    grid-template-columns: 64px minmax(0, 1fr) minmax(180px, .65fr) !important;
    gap: 16px 26px !important;
  }

  body .footer-logo {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
  }

  body .footer-copy,
  body .site-footer > p:last-child {
    grid-column: 2 / -1 !important;
    justify-self: start !important;
    text-align: left !important;
  }
}

@media (max-width: 720px) {
  body.visual-audit.content-page .section,
  body.production-audit:not(.home-page) .section {
    padding-top: var(--section-space-compact) !important;
    padding-bottom: var(--section-space-compact) !important;
  }

  body.visual-audit .section-head {
    margin-bottom: 30px !important;
  }

  body.visual-audit .page-hero {
    min-height: 0 !important;
    padding-top: calc(var(--header) + 30px) !important;
    padding-bottom: 42px !important;
    gap: 30px !important;
  }

  body.visual-audit .page-hero__media,
  body.visual-audit .page-hero__media--rendered-plan,
  body.visual-audit .studio-hero-illustration,
  body.visual-audit .services-hero-mosaic {
    width: min(100%, 332px) !important;
    max-width: 332px !important;
    justify-self: center !important;
  }

  body.visual-audit .page-hero__media img {
    width: 100% !important;
    height: auto !important;
    max-height: 350px !important;
    object-fit: contain !important;
  }

  body.content-page .process-phase {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
    gap: 28px !important;
  }

  body.content-page .process-phase__media--illustration,
  body.content-page .process-phase__media--illustration picture {
    width: min(100%, 316px) !important;
    max-width: 316px !important;
    margin-inline: auto !important;
  }

  body.visual-audit .page-cta {
    padding-top: 54px !important;
    padding-bottom: 58px !important;
  }

  /* Contact opening: retain the authored illustration, but prevent one image
     from turning the opening into a 1.3-screen composition. */
  body.content-page .contact-page--single {
    padding-top: calc(var(--header) + 30px) !important;
    padding-bottom: 48px !important;
    gap: 30px !important;
  }

  body.content-page .contact-page__media {
    width: min(100%, 310px) !important;
    max-width: 310px !important;
    justify-self: center !important;
  }

  /* Project opening media can shrink, but facts and project identity remain. */
  body.project-page .project-hero__media,
  body.project-page .project-matrix--detail {
    width: min(100%, 330px) !important;
    max-width: 330px !important;
    justify-self: center !important;
  }

  body .site-footer {
    padding-top: 18px !important;
    padding-bottom: max(16px, env(safe-area-inset-bottom)) !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 10px !important;
  }

  body .footer-logo {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    align-self: start !important;
  }

  body .footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 0 12px !important;
  }

  body .footer-links a,
  body .footer-contact a {
    min-height: 28px !important;
  }

  body .footer-contact,
  body .footer-copy,
  body .site-footer > p:last-child {
    grid-column: auto !important;
    justify-self: start !important;
    align-self: start !important;
    text-align: left !important;
    white-space: normal !important;
  }
}

@media (max-width: 360px) {
  body .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Final mobile calibration after rendered section-by-section measurement. */
@media (max-width: 720px) {
  /* Six authored service images remain visible, arranged 3 × 2 so the opening
     fits as one composition rather than stretching past the viewport. */
  body.content-page .services-hero-mosaic--illustrations {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 332px) !important;
    height: auto !important;
    aspect-ratio: 3 / 2 !important;
    gap: 5px !important;
  }

  body.content-page .services-hero-mosaic--illustrations figure,
  body.content-page .services-hero-mosaic--illustrations .services-hero-mosaic__link {
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  body.content-page .services-hero-mosaic--illustrations img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  body.content-page .page-hero--process .page-hero__media,
  body.content-page .page-hero--studio .page-hero__media {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
  }

  body.content-page .contact-page__media {
    width: min(100%, 260px) !important;
    max-width: 260px !important;
  }

  body.project-page .project-hero__media,
  body.project-page .project-matrix--detail {
    width: min(100%, 280px) !important;
    max-width: 280px !important;
  }

  /* Four Process stages preserve every line of copy and every output, but use
     mobile-specific editorial spacing so each stage reads as one chapter. */
  body.content-page .process-phase__copy h2 {
    margin-top: 12px !important;
    margin-bottom: 18px !important;
    font-size: clamp(30px, 8.6vw, 38px) !important;
    line-height: 1.02 !important;
  }

  body.content-page .process-phase__copy > p:not(.section-index) {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  body.content-page .process-phase__copy h3 {
    margin-top: 20px !important;
    margin-bottom: 6px !important;
  }

  body.content-page .process-phase__copy li {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  body.content-page .process-phase__media--illustration,
  body.content-page .process-phase__media--illustration picture {
    width: min(100%, 280px) !important;
    max-width: 280px !important;
  }

  body.content-page .process-phase__media--illustration figcaption {
    margin-top: 8px !important;
  }
}

/* Final narrow-screen fit: keep single-composition openings and each Process
   stage understandable without a corrective half-scroll on a 390 × 844 screen. */
@media (max-width: 720px) {
  body.content-page .page-hero--studio,
  body.content-page .page-hero--process,
  body.content-page .page-hero--services {
    padding-top: calc(var(--header) + 18px) !important;
    padding-bottom: 34px !important;
    gap: 24px !important;
  }

  body.content-page .page-hero--studio .page-hero__media {
    width: min(100%, 300px) !important;
    height: 300px !important;
    max-height: 300px !important;
    overflow: hidden !important;
  }

  body.content-page .page-hero--studio .page-hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  body.content-page .contact-page--single {
    padding-top: calc(var(--header) + 18px) !important;
    padding-bottom: 36px !important;
    gap: 24px !important;
  }

  body.content-page .contact-page__intro h1 {
    font-size: clamp(40px, 11vw, 48px) !important;
    line-height: .98 !important;
  }

  body.content-page .contact-page__media {
    width: min(100%, 240px) !important;
    max-width: 240px !important;
  }

  body.project-page .project-hero {
    padding-top: calc(var(--header) + 18px) !important;
    padding-bottom: 30px !important;
    gap: 20px !important;
  }

  body.project-page .project-hero__media,
  body.project-page .project-matrix--detail {
    width: min(100%, 260px) !important;
    max-width: 260px !important;
  }

  body.content-page .process-phase {
    padding-top: 30px !important;
    padding-bottom: 34px !important;
    gap: 20px !important;
  }

  body.content-page .process-phase__media--illustration,
  body.content-page .process-phase__media--illustration picture {
    width: min(100%, 240px) !important;
    max-width: 240px !important;
  }
}
@media (max-width: 720px) {
  body.project-page .project-hero {
    padding-top: calc(var(--header) + 12px) !important;
    padding-bottom: 24px !important;
  }
}

/* Navigation target sizing. */
.site-nav > a {
  display: inline-flex !important;
  min-height: 28px !important;
  align-items: center !important;
}

.project-nav-footer a {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
}

@media (max-width: 720px) {
  body.content-page .process-phase__media--illustration {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  body.content-page .process-phase__media--illustration picture {
    width: 240px !important;
    max-width: 240px !important;
    margin-inline: auto !important;
  }

  body.content-page .process-phase__media--illustration figcaption {
    width: 100% !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}
@media (max-width: 720px) {
  body.project-page .project-hero {
    padding-top: calc(var(--header) + 10px) !important;
    padding-bottom: 22px !important;
  }
}


:root {
  --morphd-label-size: 10px;
  --morphd-label-leading: 1.45;
  --morphd-label-tracking: .14em;
  --morphd-title-page: clamp(45px, 5vw, 72px);
  --morphd-title-section: clamp(35px, 3.75vw, 54px);
  --morphd-title-subsection: clamp(31px, 3.06vw, 44px);
  --morphd-title-component: clamp(23px, 2.1vw, 30px);
  --morphd-leading-page: .98;
  --morphd-leading-section: 1.08;
  --morphd-leading-subsection: 1.08;
  --morphd-label-title-gap: 18px;
  --morphd-title-copy-gap: 24px;
}

/* One label system everywhere. */
.section-index,
.journey-index,
.project-story__label,
.eyebrow {
  margin: 0 0 var(--morphd-label-title-gap) !important;
  font-size: var(--morphd-label-size) !important;
  font-weight: 400 !important;
  line-height: var(--morphd-label-leading) !important;
  letter-spacing: var(--morphd-label-tracking) !important;
  text-transform: uppercase !important;
}

/* One page-title system across Studio, Services, Process, Projects,
   Contact, Privacy, project case studies and utility pages. */
main h1:not(.matrix-hero__sr-title) {
  margin: 0 !important;
  max-width: 14ch;
  font-size: var(--morphd-title-page) !important;
  font-weight: 400 !important;
  line-height: var(--morphd-leading-page) !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}

/* Primary section titles. */
.journey-intro h2,
.journey-section-head h2,
.simple-work__header h2,
.editorial-testimonials__top h2,
.journey-contact__copy h2,
.section-head h2,
.studio-profile__statement h2,
.founder-profile__copy h2,
.remote-model__copy h2,
.scope-boundaries__copy h2,
.start-checklist__copy h2,
.contact-editorial__copy h2,
.contact-form-section__intro h2,
.page-cta h2,
.space-archive__intro h2,
.project-intro__copy h2,
.design-docs__head h2,
.project-end__content h2,
.project-tour__header h2,
.tour-prototype-note h2 {
  margin: 0 !important;
  max-width: 20ch;
  font-size: var(--morphd-title-section) !important;
  font-weight: 400 !important;
  line-height: var(--morphd-leading-section) !important;
  letter-spacing: -.04em !important;
  text-wrap: balance;
}

/* Repeated content modules share one subsection scale. */
.service-detail__title h2,
.process-phase__copy h2,
.project-story__copy h2,
.space-viewer__meta h2 {
  margin: 0 !important;
  max-width: 24ch;
  font-size: var(--morphd-title-subsection) !important;
  font-weight: 400 !important;
  line-height: var(--morphd-leading-subsection) !important;
  letter-spacing: -.035em !important;
  text-wrap: balance;
}

/* Component headings remain clearly subordinate. */
.principle-card h3,
.engagement-card h3,
.review-step h3,
.case-summary h3,
.process-phase__outputs h3,
.service-detail__body h3,
.chaos-tour__cover-copy h3 {
  font-size: var(--morphd-title-component) !important;
  font-weight: 400 !important;
  line-height: 1.14 !important;
  letter-spacing: -.025em !important;
}

/* Editorial/legal subheads remain a smaller document tier. */
.policy-page h2,
.privacy-page h2 {
  font-size: clamp(24px, 2vw, 28px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.02em !important;
}

/* Consistent title-to-copy rhythm in page openings. */
.page-hero__copy > p:not(.section-index),
.projects-list-hero__copy > p:not(.section-index),
.contact-page__intro > p:not(.section-index),
.tour-prototype-hero__copy > p:not(.section-index) {
  max-width: 42rem;
  margin-top: var(--morphd-title-copy-gap) !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.6 !important;
}

/* Section headers use the same baseline and relationship between title and
   supporting copy, without changing their existing grid structures. */
.section-head,
.journey-section-head,
.simple-work__header,
.editorial-testimonials__top,
.space-archive__intro,
.project-tour__header {
  align-items: end !important;
}

.section-head > p,
.journey-section-head > p,
.simple-work__header > p,
.editorial-testimonials__top > p,
.space-archive__intro > p,
.project-tour__header > p {
  margin: 0 !important;
  max-width: 42rem;
  font-size: clamp(15px, 1.15vw, 17px) !important;
  line-height: 1.62 !important;
}

/* Maintain a consistent separation when title and body copy share one column. */
.founder-profile__copy h2 + p,
.remote-model__copy h2 + p,
.scope-boundaries__copy h2 + p,
.start-checklist__copy h2 + p,
.contact-editorial__copy h2 + p,
.project-intro__copy h2 + p,
.project-story__copy h2 + p,
.process-phase__copy h2 + p {
  margin-top: var(--morphd-title-copy-gap) !important;
}

/* Homepage headings now use the same section-title tier rather than six
   unrelated one-off sizes. Contact keeps its existing column and image-led
   composition; only its type scale is normalised. */
.home-page .journey-intro h2,
.home-page .journey-section-head h2,
.home-page .simple-work__header h2,
.home-page .editorial-testimonials__top h2,
.home-page .journey-contact__copy h2 {
  font-size: var(--morphd-title-section) !important;
  line-height: var(--morphd-leading-section) !important;
}

@media (max-width: 760px) {
  :root {
    --morphd-label-title-gap: 14px;
    --morphd-title-copy-gap: 20px;
  }

  main h1:not(.matrix-hero__sr-title),
  .journey-intro h2,
  .journey-section-head h2,
  .simple-work__header h2,
  .editorial-testimonials__top h2,
  .journey-contact__copy h2,
  .section-head h2,
  .studio-profile__statement h2,
  .founder-profile__copy h2,
  .remote-model__copy h2,
  .scope-boundaries__copy h2,
  .start-checklist__copy h2,
  .contact-editorial__copy h2,
  .contact-form-section__intro h2,
  .page-cta h2,
  .space-archive__intro h2,
  .project-intro__copy h2,
  .design-docs__head h2,
  .project-end__content h2,
  .service-detail__title h2,
  .process-phase__copy h2,
  .project-story__copy h2 {
    max-width: none;
  }
}

/* Resolve older page-specific mobile selectors with higher specificity. */
@media (max-width: 760px) {
  .contact-page.contact-page--single .contact-page__intro h1,
  .page-hero .page-hero__copy h1,
  .projects-list-hero .projects-list-hero__copy h1,
  .project-hero .project-hero__content h1 {
    font-size: var(--morphd-title-page) !important;
    line-height: var(--morphd-leading-page) !important;
  }

  .process-phase .process-phase__copy h2,
  .service-detail .service-detail__title h2,
  .project-story .project-story__copy h2 {
    font-size: var(--morphd-title-subsection) !important;
    line-height: var(--morphd-leading-subsection) !important;
  }
}

@media (max-width: 760px) {
  body.content-page .process-phase .process-phase__copy h2 {
    font-size: var(--morphd-title-subsection) !important;
    line-height: var(--morphd-leading-subsection) !important;
  }
}

@media (max-width: 760px) {
  .contact-page .contact-page__intro h1 {
    font-size: var(--morphd-title-page) !important;
    line-height: var(--morphd-leading-page) !important;
  }
}

@media (max-width: 760px) {
  body.content-page main .contact-page .contact-page__intro h1 {
    font-size: var(--morphd-title-page) !important;
    line-height: var(--morphd-leading-page) !important;
  }
}


.morphd-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  color: inherit;
  flex: 0 0 auto;
  overflow: visible;
}

.morphd-icon--compact { width: 1rem; height: 1rem; }
.morphd-icon--large { width: 2rem; height: 2rem; }
.morphd-icon--left { transform: rotate(180deg); }
.morphd-icon--up { transform: rotate(-90deg); }
.morphd-icon--down { transform: rotate(90deg); }

.morphd-icon-button {
  --icon-shift: 0px;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  color: inherit;
}

.morphd-icon-button .morphd-icon {
  transform: translateX(var(--icon-shift));
  transition: transform 320ms cubic-bezier(.22,1,.36,1), opacity 220ms ease;
}

.morphd-icon-button:hover { --icon-shift: 2px; }
.morphd-icon-button[data-icon="replay"]:hover .morphd-icon { transform: rotate(24deg); }
.morphd-icon-button[data-icon="expand"]:hover .morphd-icon { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .morphd-icon-button .morphd-icon { transition: none; }
}


:root {
  --morphd-icon-ease: cubic-bezier(.22,1,.36,1);
  --morphd-icon-motion: 280ms;
}

/* Package construction is preserved: 24px master, currentColor, no circles. */
.morphd-icon {
  color: inherit;
  stroke: currentColor;
}

/* Directional icons move only enough to confirm affordance. */
a .morphd-link-icon,
.button .morphd-link-icon,
.journey-button .morphd-link-icon,
.text-link .morphd-link-icon,
.journey-text-link .morphd-link-icon,
.thank-you-page__link .morphd-link-icon {
  margin-left: .45em;
  vertical-align: -.18em;
  transition: transform var(--morphd-icon-motion) var(--morphd-icon-ease), opacity 220ms ease;
}

a:hover .morphd-link-icon,
.button:hover .morphd-link-icon,
.journey-button:hover .morphd-link-icon,
.text-link:hover .morphd-link-icon,
.journey-text-link:hover .morphd-link-icon,
.thank-you-page__link:hover .morphd-link-icon {
  transform: translateX(2px);
}

/* Header menu ---------------------------------------------------------- */
.menu-toggle {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 10px !important;
  display: none;
  place-items: center;
  color: #fff;
}

.menu-toggle .menu-toggle__icon {
  width: 24px;
  height: 24px;
  grid-area: 1 / 1;
  transition: opacity 220ms ease, transform var(--morphd-icon-motion) var(--morphd-icon-ease);
}

.menu-toggle__icon--menu { opacity: 1; }
.menu-toggle__icon--close { opacity: 0; transform: scale(.92); }
.menu-toggle.is-open .menu-toggle__icon--menu { opacity: 0; transform: scale(.92); }
.menu-toggle.is-open .menu-toggle__icon--close { opacity: 1; transform: scale(1); }

/* Neutralize the old hamburger-span implementation if cached markup survives. */
.menu-toggle > span { display: none !important; }

/* Replay --------------------------------------------------------------- */
.matrix-hero__replay {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  min-height: 44px;
}
.matrix-hero__replay-icon {
  width: 18px;
  height: 18px;
  transition: transform 320ms var(--morphd-icon-ease);
}
.matrix-hero__replay:hover .matrix-hero__replay-icon { transform: rotate(24deg); }

/* Intro scroll cue ----------------------------------------------------- */
.intro__scroll-cue {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.intro__scroll-icon { width: 16px; height: 16px; }

/* Carousel ------------------------------------------------------------- */
.simple-carousel__arrow {
  display: grid !important;
  place-items: center;
  min-width: 44px !important;
  min-height: 44px !important;
}
.simple-carousel__arrow .morphd-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--morphd-icon-motion) var(--morphd-icon-ease);
}
.simple-carousel__arrow--prev:hover .morphd-icon { transform: rotate(180deg) translateX(2px); }
.simple-carousel__arrow--next:hover .morphd-icon { transform: translateX(2px); }

/* View-switch controls ------------------------------------------------- */
.view-switcher button,
.space-view-switcher button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px !important;
}
.view-switcher__icon {
  width: 16px;
  height: 16px;
}

/* Project previous / next --------------------------------------------- */
.project-nav-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.project-nav-footer .project-nav__icon {
  transition: transform var(--morphd-icon-motion) var(--morphd-icon-ease);
}
.project-nav-footer a:first-child:hover .project-nav__icon { transform: rotate(180deg) translateX(2px); }
.project-nav-footer a:last-child:hover .project-nav__icon { transform: translateX(2px); }

/* Virtual tour --------------------------------------------------------- */
.chaos-tour__enter,
.chaos-tour__control {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

/* The icon system is explicitly forbidden from the two editorial indexes. */
#services .journey-service__row .morphd-icon,
#process .journey-process__step .morphd-icon {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-toggle { display: grid !important; }
}

@media (prefers-reduced-motion: reduce) {
  .morphd-icon,
  .menu-toggle .menu-toggle__icon,
  .matrix-hero__replay-icon,
  .simple-carousel__arrow .morphd-icon,
  .project-nav-footer .project-nav__icon,
  a .morphd-link-icon {
    transition: none !important;
  }
}


:root {
  --study-light: #f4f3ec;
  --study-ink: #11110f;
  --study-muted: #68665f;
  --study-line: rgba(17,17,15,.16);
}

/* Header: one extra nav item without squeezing the 981–1180px range. */
@media (min-width: 981px) and (max-width: 1180px) {
  .site-nav { gap: 14px !important; font-size: 10px !important; }
  .nav-cta { padding-inline: 11px !important; }
}

/* Homepage Studies preview ------------------------------------------------ */
.home-studies {
  color: var(--study-ink);
  background: var(--study-light);
  border-top: 1px solid var(--study-line);
  padding: clamp(68px, 6.5vw, 92px) 0 clamp(72px, 7vw, 102px);
}
.home-studies__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(38px, 4.5vw, 58px);
}
.home-studies__head h2 {
  margin: 0;
  max-width: 720px;
  font-size: var(--morphd-title-section, clamp(35px, 3.75vw, 54px));
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.home-studies__head > p {
  margin: 0;
  max-width: 470px;
  color: var(--study-muted);
  font-size: 13px;
  line-height: 1.65;
}
.home-studies .journey-index { color: var(--study-muted); }
.home-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--study-line);
}
.study-card {
  min-width: 0;
  padding: 20px clamp(18px, 2vw, 30px) 0 0;
  border-right: 1px solid var(--study-line);
}
.study-card + .study-card { padding-left: clamp(18px, 2vw, 30px); }
.study-card:last-child { border-right: 0; padding-right: 0; }
.study-card > a { display: block; color: inherit; }
.study-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
  background: #dedcd5;
}
.study-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--study-muted);
  font-size: 9px;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}
.study-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.study-card p {
  margin: 0;
  max-width: 42ch;
  color: var(--study-muted);
  font-size: 12px;
  line-height: 1.62;
}
.study-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(17,17,15,.28);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-studies__footer { margin-top: 34px; }
.home-studies__all {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17,17,15,.35);
  color: var(--study-ink);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Studies index ----------------------------------------------------------- */
.studies-page { background: #080808; }
.studies-hero {
  width: min(100%, 1420px);
  min-height: min(650px, 78svh);
  margin: 0 auto;
  padding: calc(var(--header) + 54px) var(--pad) 62px;
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(360px,1.2fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.studies-hero__copy { max-width: 650px; }
.studies-hero__copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: var(--morphd-title-page, clamp(45px,5vw,72px));
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.studies-hero__copy > p:not(.section-index) {
  max-width: 54ch;
  margin-top: 24px;
  color: #b8b8b5;
  font-size: 16px;
  line-height: 1.66;
}
.studies-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}
.studies-index {
  color: var(--study-ink);
  background: var(--study-light);
  padding: clamp(72px,7vw,104px) var(--pad) clamp(88px,8vw,120px);
}
.studies-index__inner { width: min(100%, 1320px); margin: 0 auto; }
.studies-index__head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.45fr);
  gap: clamp(40px,7vw,100px);
  align-items: end;
  margin-bottom: 54px;
}
.studies-index__head h2 {
  margin: 0;
  font-size: var(--morphd-title-section, clamp(35px,3.75vw,54px));
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.studies-index__head p:last-child { margin:0; color:var(--study-muted); font-size:13px; line-height:1.65; }
.studies-index__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); border-top:1px solid var(--study-line); }
.studies-index__grid .study-card { padding-top: 28px; padding-bottom: 44px; }
.studies-index__grid .study-card:nth-child(2n) { border-right: 0; padding-right:0; padding-left:clamp(24px,3vw,44px); }
.studies-index__grid .study-card:nth-child(2n+1) { padding-right:clamp(24px,3vw,44px); }
.studies-index__grid .study-card:nth-child(n+3) { border-top:1px solid var(--study-line); }

/* Article ---------------------------------------------------------------- */
.study-page { background: #080808; }
.study-article-hero {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: calc(var(--header) + 58px) var(--pad) clamp(54px,6vw,78px);
}
.study-article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(360px,1.28fr);
  gap: clamp(48px,7vw,110px);
  align-items: end;
}
.study-article-hero__meta { align-self:start; padding-top: 8px; }
.study-article-hero__meta p { margin:0 0 8px; color:#8e8d88; font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.study-article-hero__meta a { color:#dddcd7; }
.study-article-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(46px,5.2vw,76px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}
.study-article-hero__deck {
  max-width: 58ch;
  margin: 28px 0 0;
  color: #b8b8b5;
  font-size: 17px;
  line-height: 1.64;
}
.study-article-hero__image {
  display:block;
  width:min(100%,1320px);
  max-height: min(66svh, 760px);
  margin: 54px auto 0;
  object-fit: cover;
}
.study-article {
  color: var(--study-ink);
  background: var(--study-light);
  padding: clamp(70px,7vw,104px) var(--pad) clamp(92px,9vw,136px);
}
.study-article__layout {
  width:min(100%,1180px);
  margin:0 auto;
  display:grid;
  grid-template-columns: 190px minmax(0,760px);
  gap: clamp(46px,8vw,110px);
  justify-content:center;
  align-items:start;
}
.study-article__aside { position:sticky; top:calc(var(--header) + 28px); }
.study-article__aside p { margin:0 0 8px; color:var(--study-muted); font-size:9px; letter-spacing:.12em; line-height:1.45; text-transform:uppercase; }
.study-article__aside a { display:inline-flex; min-height:32px; align-items:center; border-bottom:1px solid rgba(17,17,15,.25); color:var(--study-ink); font-size:11px; }
.study-copy { min-width:0; }
.study-summary {
  margin: 0 0 52px;
  padding: 24px 26px 26px;
  border-top: 1px solid var(--study-ink);
  border-bottom: 1px solid var(--study-line);
}
.study-summary h2 { margin:0 0 14px; font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.study-summary p, .study-summary li { font-size:15px; line-height:1.65; }
.study-summary ul { margin:0; padding-left:1.15em; }
.study-copy > p { margin:0 0 24px; font-size:17px; line-height:1.76; }
.study-copy h2 {
  margin: 64px 0 22px;
  font-size: clamp(31px,3.2vw,44px);
  font-weight:400;
  line-height:1.08;
  letter-spacing:-.035em;
}
.study-copy h3 { margin:38px 0 14px; font-size:22px; font-weight:400; line-height:1.18; letter-spacing:-.02em; }
.study-copy ul, .study-copy ol { margin:0 0 28px; padding-left:1.25em; }
.study-copy li { margin-bottom:10px; font-size:16px; line-height:1.7; }
.study-copy a:not(.button) { border-bottom:1px solid rgba(17,17,15,.32); color:inherit; }
.study-figure { margin: 44px 0; }
.study-figure img { display:block; width:100%; height:auto; }
.study-figure figcaption { margin-top:10px; color:var(--study-muted); font-size:10px; line-height:1.5; }
.study-note {
  margin: 48px 0;
  padding: 22px 0;
  border-top:1px solid var(--study-line);
  border-bottom:1px solid var(--study-line);
  color:#4f4d48;
  font-size:14px;
  line-height:1.68;
}
.study-related {
  background:#080808;
  color:#f4f3ec;
  padding: clamp(62px,6vw,90px) var(--pad);
}
.study-related__inner { width:min(100%,1180px); margin:0 auto; }
.study-related h2 { margin:0 0 34px; font-size:clamp(30px,3vw,42px); font-weight:400; line-height:1.08; letter-spacing:-.035em; }
.study-related__links { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid rgba(255,255,255,.15); }
.study-related__links a { min-height:132px; padding:20px 24px 22px 0; border-right:1px solid rgba(255,255,255,.15); color:#f4f3ec; }
.study-related__links a + a { padding-left:24px; }
.study-related__links a:last-child { border-right:0; }
.study-related__links span { display:block; margin-bottom:30px; color:#8f8f8b; font-size:9px; letter-spacing:.12em; text-transform:uppercase; }
.study-related__links strong { display:block; max-width:24ch; font-size:18px; font-weight:400; line-height:1.24; }

@media (max-width: 900px) {
  .home-studies__head, .studies-index__head { grid-template-columns:1fr; gap:20px; }
  .study-article-hero__inner { grid-template-columns:1fr; gap:24px; }
  .study-article-hero__meta { order:2; display:flex; flex-wrap:wrap; gap:10px 18px; }
  .study-article-hero__meta p { margin:0; }
  .study-article__layout { grid-template-columns:1fr; gap:30px; }
  .study-article__aside { position:static; display:flex; flex-wrap:wrap; gap:8px 18px; }
  .study-related__links { grid-template-columns:1fr; }
  .study-related__links a, .study-related__links a + a { min-height:0; padding:20px 0; border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
}

@media (max-width: 680px) {
  .home-studies { padding: 52px 0 60px; }
  .home-studies__grid, .studies-index__grid { grid-template-columns:1fr; }
  .study-card, .study-card + .study-card, .studies-index__grid .study-card:nth-child(n) {
    padding:22px 0 30px;
    border-right:0;
    border-top:1px solid var(--study-line);
  }
  .home-studies__grid { border-top:0; }
  .study-card__image { aspect-ratio: 16 / 10; }
  .studies-hero { min-height:0; grid-template-columns:1fr; gap:30px; padding-top:calc(var(--header) + 34px); }
  .studies-hero__image { aspect-ratio:1 / 1; }
  .studies-index { padding-top:56px; padding-bottom:72px; }
  .study-article-hero { padding-top:calc(var(--header) + 34px); }
  .study-article-hero h1 { font-size:clamp(40px,12vw,54px); }
  .study-article-hero__deck { font-size:15px; }
  .study-article-hero__image { margin-top:34px; aspect-ratio: 4/3; }
  .study-article { padding-top:54px; padding-bottom:78px; }
  .study-copy > p { font-size:16px; line-height:1.72; }
  .study-copy h2 { margin-top:48px; }
  .study-summary { margin-bottom:40px; padding-inline:0; }
}



/* Production typography + project-index consolidation */
:root {
  --morphd-label-size: 10px;
  --morphd-title-page: clamp(45px, 5vw, 72px);
  --morphd-title-section: clamp(35px, 3.75vw, 54px);
  --morphd-title-subsection: clamp(31px, 3.06vw, 44px);
  --morphd-title-component: clamp(23px, 2.1vw, 30px);
  --morphd-title-copy-gap: 24px;
}
main h1:not(.matrix-hero__sr-title),
.study-article-hero h1,
.studies-hero__copy h1,
.projects-list-hero h1 {
  margin: 0 !important;
  max-width: 14ch !important;
  font-size: var(--morphd-title-page) !important;
  font-weight: 400 !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}
.projects-list-hero,
.studies-hero,
.study-article-hero {
  padding-top: calc(var(--header) + 38px) !important;
}
.projects-list-hero { padding-bottom: 52px !important; }
.study-article-hero__deck,
.studies-hero__copy > p:not(.section-index),
.projects-list-hero__copy > p:not(.section-index) {
  max-width: 42rem !important;
  margin-top: var(--morphd-title-copy-gap) !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.6 !important;
}
.studies-index__head h2,
.study-related h2 {
  font-size: var(--morphd-title-section) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}
/* Project archive: primary mode choice, not a tiny utility toggle. */
.projects-page .archive-mode-switch {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  width: 100% !important;
  margin: 0 0 clamp(40px,4.5vw,62px) !important;
  padding: 0 !important;
  gap: 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
}
.projects-page .archive-mode-switch button {
  position: relative;
  min-height: 68px !important;
  padding: 0 18px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.42) !important;
  text-align: left !important;
  font-size: clamp(15px,1.25vw,18px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
  transition: color 160ms ease !important;
}
.projects-page .archive-mode-switch button + button { padding-left: clamp(20px,3vw,42px) !important; border-left: 1px solid var(--line) !important; }
.projects-page .archive-mode-switch button:hover,
.projects-page .archive-mode-switch button:focus-visible,
.projects-page .archive-mode-switch button.is-active { color: #fff !important; }
.projects-page .archive-mode-switch button::after {
  content:"";
  position:absolute;
  left:0; right:18px; bottom:-1px;
  height:1px;
  background:#fff;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 180ms ease;
}
.projects-page .archive-mode-switch button + button::after { left:clamp(20px,3vw,42px); }
.projects-page .archive-mode-switch button.is-active::after { transform:scaleX(1); }
.projects-page .archive-mode-switch__index {
  display:inline-block;
  width:32px;
  color:rgba(255,255,255,.34);
  font-size:9px;
  letter-spacing:.12em;
  vertical-align:2px;
}
.projects-page .archive-mode-switch button.is-active .archive-mode-switch__index { color:rgba(255,255,255,.72); }
.projects-page .archive-summary { display:none !important; }
.projects-page .filter-result {
  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;
}
@media (max-width:760px) {
  :root { --morphd-title-copy-gap: 20px; }
  .projects-list-hero,
  .studies-hero,
  .study-article-hero { padding-top: calc(var(--header) + 24px) !important; }
  .projects-page .archive-mode-switch button { min-height:60px !important; font-size:15px !important; }
}

/* Responsive navigation: one unambiguous functional system. */
@media (max-width:980px){
.site-header{height:var(--header)!important;padding-inline:max(18px,var(--pad))!important;z-index:120!important}
.menu-toggle{position:relative!important;z-index:122!important;display:grid!important;place-items:center!important;width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important;padding:0!important;border:1px solid rgba(255,255,255,.28)!important;background:rgba(8,8,8,.78)!important;color:#fff!important;backdrop-filter:blur(10px)}
.menu-toggle .menu-toggle__icon{width:20px!important;height:20px!important;stroke:currentColor!important}
.site-nav{position:fixed!important;inset:0!important;z-index:121!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;justify-content:center!important;gap:0!important;padding:calc(var(--header) + 34px) max(24px,var(--pad)) 42px!important;background:#080808!important;color:#fff!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(-8px)!important;transition:opacity 300ms var(--ease),transform 300ms var(--ease),visibility 300ms!important}
.site-nav.is-open{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0)!important}
.site-nav>a,.site-nav>a:not(.nav-cta),.site-nav .nav-cta{display:flex!important;align-items:center!important;width:100%!important;min-height:56px!important;padding:0!important;border:0!important;border-bottom:1px solid rgba(255,255,255,.16)!important;background:transparent!important;color:#f4f3ec!important;font-size:clamp(22px,7vw,32px)!important;font-weight:400!important;line-height:1!important;letter-spacing:-.025em!important;text-transform:none!important}
.site-nav .nav-cta{margin-top:20px!important;font-size:16px!important}.menu-open .digital-wordmark{position:relative;z-index:123}
}
@media(prefers-reduced-motion:reduce){.site-nav{transition:none!important}}


/* v206 mobile navigation guard */
@media (max-width: 980px) {
  .menu-toggle,
  body.menu-open .menu-toggle {
    display:grid !important;
    place-items:center !important;
    color:#fff !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
  .menu-toggle .morphd-icon {
    display:block !important;
    width:20px !important;
    height:20px !important;
    color:currentColor !important;
  }
  body.menu-open .menu-toggle__icon--menu { opacity:0 !important; }
  body.menu-open .menu-toggle__icon--close { opacity:1 !important; transform:none !important; }
  body.menu-open .digital-wordmark { pointer-events:auto !important; }
  body > .site-nav > [data-mobile-home] { display:flex !important; }
}
