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

.home-page {
  --journey-gutter: clamp(22px, 4.2vw, 72px);
  --journey-max: 1480px;
  overflow-x: clip;
}

.home-page .site-header {
  mix-blend-mode: normal;
}

.journey-main {
  position: relative;
  overflow: clip;
}

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

.journey-index,
.journey-kicker {
  margin: 0;
  color: #9b9b98;
  font-size: 9px;
  letter-spacing: .16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.journey-link,
.journey-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: #f4f4f0;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: border-color .25s ease, gap .35s var(--ease), opacity .25s ease;
}

.journey-link:hover,
.journey-text-link:hover {
  gap: 20px;
  border-color: #fff;
}

.journey-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

/* Hero */
.journey-hero {
  --hero-progress: 0;
  position: relative;
  height: 165svh;
}

.journey-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.journey-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  transform: scale(calc(1.08 - var(--hero-progress) * .08));
  transform-origin: center;
  will-change: transform;
}

.journey-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: translateY(calc(var(--hero-progress) * -2.5%));
  filter: saturate(.88) contrast(.98) brightness(.78);
  will-change: transform;
}

.journey-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,.78) 0%, rgba(6,6,6,.38) 43%, rgba(6,6,6,.08) 73%),
    linear-gradient(180deg, rgba(6,6,6,.28), transparent 30%, rgba(6,6,6,.38));
  opacity: calc(1 - var(--hero-progress) * .32);
}

.journey-hero__copy {
  position: absolute;
  z-index: 2;
  left: var(--journey-gutter);
  bottom: clamp(92px, 12vh, 150px);
  width: min(790px, calc(100% - var(--journey-gutter) * 2));
  transform: translateY(calc(var(--hero-progress) * -26px));
  opacity: calc(1 - var(--hero-progress) * .9);
  will-change: transform, opacity;
}

.journey-hero__copy h1 {
  max-width: 780px;
  margin: 24px 0 30px;
  font-size: clamp(60px, 8.3vw, 132px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .86;
}

.journey-hero__intro {
  max-width: 530px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.68;
}

.journey-hero__caption {
  position: absolute;
  z-index: 2;
  right: var(--journey-gutter);
  bottom: 28px;
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.62);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--journey-gutter);
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

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

.journey-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(-100%);
  animation: journey-scroll-line 2.2s ease-in-out infinite;
}

@keyframes journey-scroll-line {
  0% { transform: translateY(-100%); }
  48% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* Studio introduction */
.journey-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: center;
  min-height: 125svh;
  padding-top: clamp(130px, 16vw, 240px);
  padding-bottom: clamp(130px, 16vw, 240px);
}

.journey-intro__statement {
  position: relative;
  z-index: 2;
  align-self: center;
}

.journey-intro__statement h2 {
  max-width: 720px;
  margin: 24px 0 34px;
  font-size: clamp(38px, 4.55vw, 72px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.journey-intro__statement > p:not(.journey-index) {
  max-width: 590px;
  margin: 0 0 34px;
  color: #aaa;
  font-size: 16px;
  line-height: 1.75;
}

.journey-intro__images {
  position: relative;
  min-height: 780px;
}

.journey-intro__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.journey-intro__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.85) saturate(.55) brightness(.83);
  transition: filter .7s ease, transform 1s var(--ease);
}

.journey-intro__image:hover img {
  filter: grayscale(0) saturate(.88) brightness(.94);
  transform: scale(1.016);
}

.journey-intro__image figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.68), transparent);
  color: rgba(255,255,255,.72);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.journey-intro__image--large {
  inset: 0 8% 12% 0;
}

.journey-intro__image--small {
  right: 0;
  bottom: 0;
  width: 44%;
  aspect-ratio: 1 / 1.18;
  box-shadow: 0 0 0 14px var(--bg);
}

/* Shared section headings */
.journey-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .5fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  margin-bottom: clamp(66px, 8vw, 118px);
}

.journey-section-head h2 {
  max-width: 900px;
  margin: 22px 0 0;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.journey-section-head > p {
  max-width: 440px;
  margin: 0;
  color: #9d9d9a;
  font-size: 14px;
  line-height: 1.7;
}

/* Services */
.journey-services {
  padding-top: clamp(130px, 16vw, 240px);
  padding-bottom: clamp(130px, 16vw, 240px);
}

.journey-services__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.journey-services__list {
  border-top: 1px solid var(--line);
}

.journey-service__row {
  display: grid;
  grid-template-columns: 46px minmax(150px, .65fr) minmax(220px, 1fr) 20px;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--line-soft);
  color: #6e6e6c;
  transition: color .35s ease, padding-left .45s var(--ease), border-color .35s ease;
}

.journey-service__row:hover,
.journey-service__row:focus-visible,
.journey-service__row.is-active {
  color: #f4f4f0;
  padding-left: 12px;
  border-color: rgba(255,255,255,.24);
}

.journey-service__number {
  color: #686866;
  font-size: 8px;
  letter-spacing: .14em;
}

.journey-service__name {
  font-size: clamp(18px, 1.7vw, 27px);
  letter-spacing: -.02em;
}

.journey-service__description {
  max-width: 360px;
  font-size: 12px;
  line-height: 1.55;
}

.journey-service__arrow {
  font-size: 13px;
  opacity: .28;
  transition: opacity .25s ease, transform .35s var(--ease);
}

.journey-service__row:hover .journey-service__arrow,
.journey-service__row.is-active .journey-service__arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.journey-services__visual {
  position: sticky;
  top: calc(var(--header) + 38px);
  height: min(72svh, 820px);
  overflow: hidden;
  background: #101010;
}

.journey-service__image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .65s ease, transform 1s var(--ease);
  pointer-events: none;
}

.journey-service__image.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.journey-service__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.74) brightness(.82);
}

.journey-service__image[data-service-image="5"] img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 50px);
  background: #f1f1ed;
  filter: grayscale(.2) contrast(.92);
}

.journey-service__image figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  color: rgba(255,255,255,.7);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-service__image[data-service-image="5"] figcaption {
  color: rgba(0,0,0,.55);
}

/* Work scrollytelling */
.journey-work {
  --work-progress: 0;
  position: relative;
  height: 500svh;
  background: #050505;
}

.journey-work__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.journey-work__header {
  position: absolute;
  z-index: 10;
  top: calc(var(--header) + 22px);
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  pointer-events: none;
}

.journey-work__header h2 {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.45vw, 22px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.35;
  text-align: right;
}

.journey-work__stage,
.journey-work__slide,
.journey-work__slide img,
.journey-work__shade {
  position: absolute;
  inset: 0;
}

.journey-work__slide {
  display: block;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .72s ease, transform 1.15s var(--ease);
  pointer-events: none;
}

.journey-work__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.journey-work__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) brightness(.72);
}

.journey-work__shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.14) 55%, rgba(0,0,0,.1)),
    linear-gradient(to top, rgba(0,0,0,.64), transparent 48%);
}

.journey-work__meta {
  position: absolute;
  z-index: 3;
  left: var(--journey-gutter);
  bottom: clamp(66px, 10vh, 115px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 18px;
  max-width: min(840px, calc(100vw - var(--journey-gutter) * 2));
}

.journey-work__number,
.journey-work__category,
.journey-work__location {
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-work__number {
  color: rgba(255,255,255,.52);
}

.journey-work__category,
.journey-work__location {
  color: rgba(255,255,255,.66);
}

.journey-work__meta strong {
  grid-column: 2;
  display: block;
  margin: 5px 0 12px;
  font-size: clamp(46px, 6.5vw, 106px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}

.journey-work__location {
  grid-column: 2;
}

.journey-work__pagination {
  position: absolute;
  z-index: 12;
  right: var(--journey-gutter);
  bottom: clamp(70px, 10vh, 118px);
  display: grid;
  gap: 10px;
}

.journey-work__dot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 48px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.35);
  font: inherit;
  font-size: 8px;
  letter-spacing: .12em;
  cursor: pointer;
  transition: color .3s ease, width .4s var(--ease);
}

.journey-work__dot::before {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width .4s var(--ease);
}

.journey-work__dot.is-active {
  width: 70px;
  color: #fff;
}

.journey-work__dot.is-active::before {
  width: 36px;
}

.journey-work__all {
  position: absolute;
  z-index: 12;
  right: var(--journey-gutter);
  top: calc(var(--header) + 90px);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.7);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Principles */
.journey-principles {
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.journey-principles__track {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  width: max-content;
  padding-left: var(--journey-gutter);
  animation: journey-marquee 34s linear infinite;
}

.journey-principles__track span {
  font-size: clamp(66px, 10vw, 164px);
  letter-spacing: -.06em;
  line-height: .8;
  white-space: nowrap;
}

.journey-principles__track i {
  color: #3b3b39;
  font-size: clamp(32px, 5vw, 78px);
  font-style: normal;
}

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

/* Process */
.journey-process {
  padding-top: clamp(130px, 16vw, 240px);
  padding-bottom: clamp(130px, 16vw, 240px);
}

.journey-process__layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.journey-process__visual {
  position: sticky;
  top: calc(var(--header) + 38px);
  height: min(72svh, 820px);
  overflow: hidden;
  background: #111;
}

.journey-process__image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .7s ease, transform 1s var(--ease);
}

.journey-process__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.journey-process__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.28) saturate(.72) brightness(.8);
}

.journey-process__image[data-process-image="2"] img,
.journey-process__image[data-process-image="3"] img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 46px);
  background: #f0f0ec;
  filter: grayscale(.15) contrast(.94);
}

.journey-process__image figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: rgba(255,255,255,.7);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-process__image[data-process-image="2"] figcaption,
.journey-process__image[data-process-image="3"] figcaption {
  color: rgba(0,0,0,.55);
}

.journey-process__steps {
  border-top: 1px solid var(--line);
}

.journey-process__step {
  min-height: 48svh;
  padding: clamp(46px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line-soft);
  color: #666;
  transition: color .45s ease;
}

.journey-process__step.is-active {
  color: #f2f2ef;
}

.journey-process__step > span {
  display: block;
  margin-bottom: 18px;
  color: #777;
  font-size: 8px;
  letter-spacing: .15em;
}

.journey-process__step h3 {
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.journey-process__step p {
  max-width: 520px;
  margin: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.72;
}

.journey-process__mobile-image {
  display: none;
}

.journey-process__steps > .journey-text-link {
  margin-top: 42px;
}

/* Practice */
.journey-practice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
  gap: clamp(70px, 12vw, 190px);
  padding-top: clamp(120px, 14vw, 210px);
  padding-bottom: clamp(120px, 14vw, 210px);
  border-top: 1px solid var(--line-soft);
}

.journey-practice h2 {
  margin: 24px 0 0;
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .88;
}

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

.journey-practice__details dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.journey-practice__details dt {
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -.04em;
}

.journey-practice__details dd {
  margin: 0;
  color: #9d9d9a;
  font-size: 12px;
}

.journey-practice__details > p {
  max-width: 530px;
  margin: 0;
  color: #aaa;
  font-size: 15px;
  line-height: 1.75;
}

/* Contact finale */
.journey-contact {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.journey-contact__media,
.journey-contact__media img,
.journey-contact__media > span {
  position: absolute;
  inset: 0;
  margin: 0;
}

.journey-contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.35) saturate(.58) brightness(.54);
  transform: scale(1.035);
}

.journey-contact__media > span {
  background:
    linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.35) 58%, rgba(5,5,5,.18)),
    linear-gradient(to top, rgba(5,5,5,.55), transparent 55%);
}

.journey-contact__copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--journey-max));
  margin: auto;
  padding: 120px var(--journey-gutter);
}

.journey-contact h2 {
  max-width: 980px;
  margin: 22px 0 30px;
  font-size: clamp(64px, 9.2vw, 148px);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .83;
}

.journey-contact__copy > p:not(.journey-index) {
  max-width: 560px;
  margin: 0 0 40px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}

.journey-contact__actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.journey-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.58);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, gap .35s var(--ease);
}

.journey-button:hover {
  gap: 30px;
  color: #080808;
  background: #fff;
}

.journey-contact__actions > a:last-child {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

/* Page transition */
.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: journey-page-out .38s ease both;
}

::view-transition-new(root) {
  animation: journey-page-in .5s var(--ease) both;
}

@keyframes journey-page-out {
  to { opacity: 0; transform: scale(.99); }
}

@keyframes journey-page-in {
  from { opacity: 0; transform: translateY(14px); }
}

/* Responsive */
@media (max-width: 980px) {
  .journey-intro,
  .journey-services__layout,
  .journey-process__layout,
  .journey-practice {
    grid-template-columns: 1fr;
  }

  .journey-intro {
    gap: 80px;
  }

  .journey-intro__images {
    min-height: 720px;
  }

  .journey-services__visual,
  .journey-process__visual {
    position: relative;
    top: auto;
    height: min(72svh, 700px);
    order: -1;
  }

  .journey-services__layout {
    gap: 36px;
  }

  .journey-process__layout {
    gap: 50px;
  }

  .journey-process__step {
    min-height: auto;
  }

  .journey-practice {
    gap: 80px;
  }
}

@media (max-width: 760px) {
  .journey-hero {
    height: 125svh;
  }

  .journey-hero__copy h1 {
    font-size: clamp(56px, 17vw, 90px);
  }

  .journey-hero__intro {
    max-width: 92%;
    font-size: 14px;
  }

  .journey-hero__caption {
    left: var(--journey-gutter);
    right: auto;
  }

  .journey-scroll-cue {
    display: none;
  }

  .journey-intro,
  .journey-services,
  .journey-process,
  .journey-practice {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .journey-intro__images {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .journey-intro__image,
  .journey-intro__image--large,
  .journey-intro__image--small {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    box-shadow: none;
  }

  .journey-intro__image--small {
    width: 72%;
    margin-left: auto;
  }

  .journey-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 58px;
  }

  .journey-section-head h2 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .journey-service__row {
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    min-height: 92px;
  }

  .journey-service__description {
    display: none;
  }

  .journey-service__arrow {
    grid-column: 3;
  }

  .journey-services__visual {
    height: 54svh;
  }

  .journey-work {
    height: auto;
    padding: 100px var(--journey-gutter);
  }

  .journey-work__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .journey-work__header {
    position: relative;
    top: auto;
    padding: 0;
    margin-bottom: 54px;
    display: grid;
    gap: 18px;
  }

  .journey-work__header h2 {
    max-width: 520px;
    text-align: left;
  }

  .journey-work__stage {
    position: relative;
    display: grid;
    gap: 18px;
  }

  .journey-work__slide,
  .journey-work__slide.is-active {
    position: relative;
    inset: auto;
    height: 78svh;
    min-height: 540px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .journey-work__meta {
    left: 18px;
    bottom: 22px;
    max-width: calc(100% - 36px);
  }

  .journey-work__meta strong {
    font-size: clamp(38px, 12vw, 66px);
  }

  .journey-work__pagination {
    display: none;
  }

  .journey-work__all {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: 32px;
  }

  .journey-principles__track span {
    font-size: 72px;
  }

  .journey-process__visual {
    display: none;
  }

  .journey-process__mobile-image {
    display: block;
    margin-bottom: 30px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
  }

  .journey-process__mobile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .journey-process__step:nth-child(3) .journey-process__mobile-image img,
  .journey-process__step:nth-child(4) .journey-process__mobile-image img {
    object-fit: contain;
    padding: 16px;
    background: #f0f0ec;
  }

  .journey-practice h2 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .journey-contact {
    min-height: 92svh;
  }

  .journey-contact h2 {
    font-size: clamp(64px, 18vw, 100px);
  }

  .journey-contact__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .journey-hero__media,
  .journey-hero__image,
  .journey-hero__copy {
    transform: none !important;
    opacity: 1 !important;
  }

  .journey-scroll-cue,
  .journey-principles__track {
    animation: none;
  }

  .journey-work {
    height: auto;
    padding: 100px var(--journey-gutter);
  }

  .journey-work__sticky {
    position: relative;
    height: auto;
  }

  .journey-work__stage {
    position: relative;
    display: grid;
    gap: 18px;
  }

  .journey-work__slide,
  .journey-work__slide.is-active {
    position: relative;
    inset: auto;
    min-height: 70svh;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.home-page {
  --journey-light: #e9e7e1;
  --journey-light-soft: #dedbd3;
  --journey-ink: #11110f;
}

.home-page .journey-hero__copy h1 {
  max-width: 720px;
  font-size: clamp(56px, 7vw, 112px);
  line-height: .89;
}

.home-page .journey-section-head h2,
.home-page .journey-intro__statement h2 {
  font-size: clamp(38px, 4.25vw, 66px);
  line-height: 1.01;
}

.home-page .journey-work__meta strong {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 84px);
  line-height: .91;
}

.home-page .journey-practice h2 {
  font-size: clamp(46px, 6vw, 86px);
  line-height: .92;
}

.home-page .journey-contact h2 {
  max-width: 830px;
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: .88;
}

.home-page .journey-hero__image {
  filter: saturate(.95) contrast(1) brightness(.9);
}

.home-page .journey-hero__veil {
  background:
    linear-gradient(90deg, rgba(6,6,6,.7) 0%, rgba(6,6,6,.25) 44%, rgba(6,6,6,.03) 76%),
    linear-gradient(180deg, rgba(6,6,6,.18), transparent 35%, rgba(6,6,6,.28));
}

.home-page .journey-service__image img {
  filter: saturate(.9) contrast(1) brightness(.92);
}

.home-page .journey-work__image {
  filter: saturate(.9) contrast(1) brightness(.86);
}

.home-page .journey-work__shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.08) 58%, rgba(0,0,0,.02)),
    linear-gradient(to top, rgba(0,0,0,.52), transparent 52%);
}

.home-page .journey-contact__media img {
  filter: grayscale(.08) saturate(.86) brightness(.72);
}

.home-page .journey-contact__media > span {
  background:
    linear-gradient(90deg, rgba(5,5,5,.68), rgba(5,5,5,.22) 58%, rgba(5,5,5,.08)),
    linear-gradient(to top, rgba(5,5,5,.4), transparent 58%);
}

.home-page .journey-intro {
  width: 100%;
  max-width: none;
  min-height: 118svh;
  padding-left: max(var(--journey-gutter), calc((100vw - var(--journey-max)) / 2 + var(--journey-gutter)));
  padding-right: max(var(--journey-gutter), calc((100vw - var(--journey-max)) / 2 + var(--journey-gutter)));
  color: var(--journey-ink);
  background: var(--journey-light);
}

.home-page .journey-intro .journey-index {
  color: #69675f;
}

.home-page .journey-intro__statement > p:not(.journey-index) {
  color: #56544e;
}

.home-page .journey-intro .journey-text-link {
  color: var(--journey-ink);
  border-color: rgba(17,17,15,.3);
}

.home-page .journey-intro .journey-text-link:hover {
  border-color: var(--journey-ink);
}

.home-page .journey-intro__image img {
  filter: grayscale(.28) saturate(.78) brightness(.96);
}

.home-page .journey-intro__image:hover img {
  filter: grayscale(0) saturate(.95) brightness(1);
}

.home-page .journey-intro__image--small {
  box-shadow: 0 0 0 14px var(--journey-light);
}

.morphd-seam {
  position: relative;
  min-height: clamp(190px, 25vw, 360px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080808;
}

.morphd-seam--first {
  color: #f1f0eb;
}

.morphd-seam--second {
  color: var(--journey-ink);
  background: var(--journey-light);
}

.morphd-seam__inner {
  position: relative;
  width: min(78vw, 980px);
  height: clamp(80px, 11vw, 150px);
}

.morphd-seam__letter {
  position: absolute;
  left: calc(8% + var(--i) * 15%);
  top: calc(18% + (var(--i) % 3) * 24%);
  font-size: clamp(20px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -.04em;
  opacity: .18;
  transform:
    translate(calc((var(--i) - 2.5) * 24px), calc((var(--i) % 2) * 34px - 17px))
    rotate(calc((var(--i) - 2.5) * 7deg));
  transition:
    left 1.15s var(--ease),
    top 1.15s var(--ease),
    opacity .7s ease,
    transform 1.15s var(--ease);
}

.morphd-seam__line {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: .34;
  transform: translateX(-50%);
  transition: width 1.1s .18s var(--ease);
}

.morphd-seam__note {
  position: absolute;
  left: 50%;
  bottom: 34px;
  margin: 0;
  color: currentColor;
  opacity: .42;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.morphd-seam.is-resolved .morphd-seam__letter {
  left: calc(27.5% + var(--i) * 9%);
  top: 27%;
  opacity: .92;
  transform: none;
}

.morphd-seam.is-resolved .morphd-seam__line {
  width: min(84vw, 1120px);
}

.home-page .journey-service__image::after,
.home-page .journey-work__slide::after,
.home-page .journey-process__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(16.666% - 1px),
      rgba(255,255,255,.14) calc(16.666% - 1px),
      rgba(255,255,255,.14) 16.666%
    );
}

.home-page .journey-service__image.is-active::after,
.home-page .journey-work__slide.is-active::after,
.home-page .journey-process__image.is-active::after {
  animation: morphd-image-resolve 1.05s var(--ease) both;
}

@keyframes morphd-image-resolve {
  0% { opacity: .42; transform: scaleX(.72); }
  58% { opacity: .18; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

.home-page .journey-services__visual {
  height: min(68svh, 760px);
  margin-top: 24px;
  background: #141414;
}

.home-page .journey-service__image {
  inset: clamp(10px, 1.25vw, 18px);
}

.home-page .journey-service__image figcaption {
  right: 28px;
  bottom: 24px;
  left: 28px;
}

.home-page .journey-work__header {
  top: calc(var(--header) + 30px);
}

.home-page .journey-work__meta {
  bottom: clamp(72px, 9vh, 106px);
}

.home-page .journey-work__all {
  top: calc(var(--header) + 100px);
}

.journey-principles {
  color: var(--journey-ink);
  background: var(--journey-light);
  border-top: 1px solid rgba(17,17,15,.12);
  border-bottom: 1px solid rgba(17,17,15,.12);
}

.journey-principles__inner {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.journey-principles__intro {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(420px, 1.15fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.journey-principles__intro .journey-index {
  color: #66645e;
}

.journey-principles__intro h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(38px, 4.3vw, 66px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.journey-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17,17,15,.2);
}

.journey-principle {
  min-height: 280px;
  padding: 22px clamp(18px, 2.2vw, 34px) 24px 0;
  border-right: 1px solid rgba(17,17,15,.15);
}

.journey-principle + .journey-principle {
  padding-left: clamp(18px, 2.2vw, 34px);
}

.journey-principle:last-child {
  border-right: 0;
}

.journey-principle > span {
  display: block;
  color: #77746c;
  font-size: 8px;
  letter-spacing: .14em;
}

.journey-principle h3 {
  margin: clamp(72px, 8vw, 118px) 0 16px;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.journey-principle p {
  max-width: 240px;
  margin: 0;
  color: #5e5b54;
  font-size: 12px;
  line-height: 1.65;
}

.home-page .journey-process {
  position: relative;
  width: 100%;
  color: var(--journey-ink);
  background: #f2f0ea;
}

.home-page .journey-process__inner {
  padding-top: clamp(120px, 15vw, 220px);
  padding-bottom: clamp(120px, 15vw, 220px);
}

.home-page .journey-process .journey-index,
.home-page .journey-process .journey-section-head > p {
  color: #69665f;
}

.home-page .journey-process .journey-section-head {
  margin-bottom: clamp(70px, 8vw, 112px);
}

.home-page .journey-process__layout {
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(64px, 9vw, 136px);
}

.home-page .journey-process__steps {
  position: relative;
  border-top: 1px solid rgba(17,17,15,.18);
}

.home-page .journey-process__rail {
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 82px;
  width: 1px;
  overflow: hidden;
  background: rgba(17,17,15,.12);
}

.home-page .journey-process__rail i {
  display: block;
  width: 100%;
  height: 25%;
  background: var(--journey-ink);
  transform: translateY(calc(var(--process-step, 0) * 100%));
  transition: transform .65s var(--ease);
}

.home-page .journey-process__step {
  min-height: 36svh;
  padding: clamp(44px, 5vw, 70px) 0 clamp(44px, 5vw, 70px) clamp(28px, 3vw, 48px);
  border-bottom: 1px solid rgba(17,17,15,.12);
  color: #aaa69c;
}

.home-page .journey-process__step.is-active {
  color: var(--journey-ink);
}

.home-page .journey-process__step h3 {
  font-size: clamp(36px, 4vw, 60px);
}

.home-page .journey-process__step p {
  max-width: 450px;
  font-size: 14px;
}

.home-page .journey-process__visual {
  top: calc(var(--header) + 48px);
  height: min(70svh, 760px);
  background: #e0ddd5;
  border: 1px solid rgba(17,17,15,.12);
}

.home-page .journey-process__image {
  inset: clamp(14px, 1.7vw, 26px);
  background: #ddd9d1;
}

.home-page .journey-process__image img {
  filter: grayscale(.08) saturate(.88) brightness(.98);
}

.home-page .journey-process__image[data-process-image="2"] img,
.home-page .journey-process__image[data-process-image="3"] img {
  background: #f6f5f1;
  filter: grayscale(.04) contrast(.98);
}

.home-page .journey-process__image figcaption {
  color: rgba(17,17,15,.58);
  background: rgba(242,240,234,.86);
  width: fit-content;
  padding: 7px 9px;
}

.home-page .journey-process__steps > .journey-text-link {
  color: var(--journey-ink);
  border-color: rgba(17,17,15,.28);
}

.home-page .journey-practice {
  border-top: 0;
  padding-top: clamp(130px, 15vw, 220px);
  padding-bottom: clamp(130px, 15vw, 220px);
}

.home-page .journey-contact__copy > p:not(.journey-index) {
  color: rgba(255,255,255,.82);
}

@media (max-width: 980px) {
  .journey-principles__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .journey-principle:nth-child(2) {
    border-right: 0;
  }

  .journey-principle:nth-child(-n+2) {
    border-bottom: 1px solid rgba(17,17,15,.15);
  }

  .home-page .journey-process__layout {
    grid-template-columns: 1fr;
  }

  .home-page .journey-process__visual {
    order: -1;
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .home-page .journey-hero__copy h1 {
    font-size: clamp(54px, 15.5vw, 82px);
  }

  .home-page .journey-intro {
    padding-left: var(--journey-gutter);
    padding-right: var(--journey-gutter);
  }

  .home-page .journey-intro__image--small {
    box-shadow: none;
  }

  .morphd-seam {
    min-height: 210px;
  }

  .morphd-seam__inner {
    width: 94vw;
  }

  .morphd-seam.is-resolved .morphd-seam__letter {
    left: calc(24% + var(--i) * 10.5%);
  }

  .morphd-seam__note {
    width: 90%;
    text-align: center;
  }

  .journey-principles__grid {
    grid-template-columns: 1fr;
  }

  .journey-principle,
  .journey-principle + .journey-principle {
    min-height: 0;
    padding: 24px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(17,17,15,.15);
  }

  .journey-principle h3 {
    margin: 44px 0 12px;
  }

  .home-page .journey-process__rail {
    display: none;
  }

  .home-page .journey-process__step {
    padding-left: 0;
  }

  .home-page .journey-contact h2 {
    font-size: clamp(58px, 16vw, 88px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .morphd-seam__letter {
    opacity: .92;
    transform: none;
  }

  .morphd-seam__line {
    width: min(84vw, 1120px);
  }

  .home-page .journey-service__image::after,
  .home-page .journey-work__slide::after,
  .home-page .journey-process__image::after {
    display: none;
  }
}

.project-matrix {
  position: relative;
  color: #11110f;
  background: #ebe9e3;
  border-top: 1px solid rgba(17,17,15,.12);
  border-bottom: 1px solid rgba(17,17,15,.12);
}

.project-matrix__shell {
  padding-top: clamp(120px, 14vw, 210px);
  padding-bottom: clamp(120px, 14vw, 210px);
}

.project-matrix__header {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(340px, .56fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: end;
  margin-bottom: clamp(72px, 9vw, 132px);
}

.project-matrix__header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.project-matrix__header > p {
  max-width: 470px;
  margin: 0;
  color: #5f5c55;
  font-size: 13px;
  line-height: 1.72;
}

.project-matrix__stage {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(54px, 8vw, 124px);
  align-items: center;
}

.project-matrix__mark {
  --active-row: 0;
  --active-col: 0;
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  background: #070707;
  box-shadow:
    0 0 0 1px rgba(17,17,15,.12),
    0 32px 90px rgba(17,17,15,.12);
}

.project-matrix__mark > img {
  position: absolute;
  inset: 7.5%;
  display: block;
  width: 85%;
  height: 85%;
  object-fit: contain;
  opacity: .94;
  pointer-events: none;
}

.project-matrix__hotspots {
  position: absolute;
  inset: 7.5%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.project-matrix__hotspots::before,
.project-matrix__hotspots::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity .45s ease,
    transform .55s var(--ease);
}

.project-matrix__hotspots::before {
  top: 0;
  bottom: 0;
  left: calc((var(--active-col) + .5) * 16.6667%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-50%) scaleY(.7);
}

.project-matrix__hotspots::after {
  right: 0;
  left: 0;
  top: calc((var(--active-row) + .5) * 16.6667%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.2), transparent);
  transform: translateY(-50%) scaleX(.7);
}

.project-matrix__mark.has-active .project-matrix__hotspots::before,
.project-matrix__mark.has-active .project-matrix__hotspots::after {
  opacity: 1;
  transform: translate(-50%, 0) scaleY(1);
}

.project-matrix__mark.has-active .project-matrix__hotspots::after {
  transform: translate(0, -50%) scaleX(1);
}

.project-matrix__cell {
  position: relative;
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  cursor: crosshair;
}

.project-matrix__cell::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid transparent;
  background: rgba(255,255,255,0);
  transition:
    border-color .35s ease,
    background .35s ease,
    transform .45s var(--ease);
}

.project-matrix__cell > span {
  position: absolute;
  right: 8%;
  bottom: 7%;
  color: rgba(255,255,255,0);
  font-size: 7px;
  letter-spacing: .12em;
  transition: color .35s ease;
}

.project-matrix__cell:hover::before,
.project-matrix__cell:focus-visible::before,
.project-matrix__cell.is-active::before {
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.055);
  transform: scale(.9);
}

.project-matrix__cell:hover > span,
.project-matrix__cell:focus-visible > span,
.project-matrix__cell.is-active > span {
  color: rgba(255,255,255,.45);
}

.project-matrix__cell:focus-visible {
  outline: 1px solid rgba(255,255,255,.72);
  outline-offset: -3px;
}

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

.project-matrix__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d5d2cb;
}

.project-matrix__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  filter: saturate(.78) contrast(.98) brightness(.91);
  transition:
    opacity .62s cubic-bezier(.2,.72,.2,1),
    transform 1.05s cubic-bezier(.2,.72,.2,1),
    filter .8s ease;
}

.project-matrix__image.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: saturate(.94) contrast(1) brightness(.98);
}

.project-matrix__media-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .14;
  background:
    linear-gradient(90deg, transparent calc(33.333% - .5px), rgba(255,255,255,.45) calc(33.333% - .5px), rgba(255,255,255,.45) 33.333%, transparent 33.333%),
    linear-gradient(90deg, transparent calc(66.666% - .5px), rgba(255,255,255,.45) calc(66.666% - .5px), rgba(255,255,255,.45) 66.666%, transparent 66.666%);
  mix-blend-mode: soft-light;
}

.project-matrix__counter {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  padding: 7px 9px;
  color: rgba(255,255,255,.78);
  background: rgba(8,8,8,.28);
  backdrop-filter: blur(10px);
  font-size: 8px;
  letter-spacing: .14em;
}

.project-matrix__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(17,17,15,.18);
}

.project-matrix__copy > p:first-child {
  grid-column: 1 / -1;
  margin: 0 0 44px;
  color: #74716a;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.project-matrix__copy h3 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 3.25vw, 52px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}

.project-matrix__view {
  grid-column: 1;
  margin: 12px 0 0;
  color: #5e5b54;
  font-size: 13px;
}

.project-matrix__meta {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: #77746d;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-matrix__link {
  grid-column: 2;
  grid-row: 2 / 5;
  align-self: end;
  white-space: nowrap;
  color: #11110f;
  border-color: rgba(17,17,15,.28);
}

.project-matrix__link:hover {
  border-color: #11110f;
}

@media (max-width: 1100px) {
  .project-matrix__stage {
    grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
    gap: 48px;
  }

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

  .project-matrix__link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 30px;
  }
}

@media (max-width: 860px) {
  .project-matrix__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .project-matrix__mark {
    width: min(88vw, 620px);
  }

  .project-matrix__preview {
    width: min(100%, 760px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .project-matrix__shell {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .project-matrix__header {
    margin-bottom: 58px;
  }

  .project-matrix__header h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .project-matrix__mark {
    width: 100%;
  }

  .project-matrix__cell {
    cursor: pointer;
  }

  .project-matrix__media {
    aspect-ratio: 4 / 3;
  }

  .project-matrix__copy > p:first-child {
    margin-bottom: 26px;
  }

  .project-matrix__copy h3 {
    font-size: 34px;
  }

  .project-matrix__meta span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-matrix__image,
  .project-matrix__cell::before,
  .project-matrix__hotspots::before,
  .project-matrix__hotspots::after {
    transition-duration: .01ms !important;
  }
}


/*
  The official SVG contains its own internal clear space.
  The letter centres occupy the middle 80% of the SVG viewBox, not the
  full visible image box. The interaction field therefore needs a second
  inset independent from the logo image itself.
*/
.home-page .project-matrix__stage {
  align-items: start;
}

.home-page .project-matrix__mark {
  align-self: start;
}

.home-page .project-matrix__hotspots {
  /*
    Logo image: 7.5% outer inset.
    Letter-grid boundary: 10% of the SVG viewBox.
    Combined boundary: 7.5% + (85% × 10%) = 16%.
  */
  inset: 16%;
}

.home-page .project-matrix__cell::before {
  /*
    Keep the selection quieter and closer to the optical body of each
    glyph while retaining the whole grid cell as the hit area.
  */
  inset: 8%;
}

.home-page .project-matrix__preview {
  align-self: start;
}

.home-page .project-matrix__media {
  margin-top: 0;
}

/* Both principal visual blocks now share one exact top datum. */
@media (min-width: 861px) {
  .home-page .project-matrix__mark,
  .home-page .project-matrix__media {
    transform: translateY(0);
  }
}

/*
  The 6×6 matrix is now the singular branded interaction.
  Other transient grid effects are removed to avoid visual competition.
*/
.home-page .journey-service__image::after,
.home-page .journey-work__slide::after,
.home-page .journey-process__image::after {
  display: none;
}

/* Intro: enough space to settle, without behaving like another hero. */
.home-page .journey-intro {
  min-height: 100svh;
  padding-top: clamp(108px, 12vw, 176px);
  padding-bottom: clamp(108px, 12vw, 176px);
}

/* Services: six disciplines remain, but the chapter becomes tighter. */
.home-page .journey-services {
  padding-top: clamp(104px, 11vw, 172px);
  padding-bottom: clamp(104px, 11vw, 172px);
}

.home-page .journey-services__layout {
  gap: clamp(48px, 7vw, 104px);
}

.home-page .journey-services__visual {
  height: min(64svh, 720px);
}

/*
  Four flagship projects. 380svh gives each project approximately
  95svh of scroll time: deliberate, but not ceremonially endless.
*/
.home-page .journey-work {
  height: 380svh;
}

.home-page .journey-work__slide {
  transition:
    opacity .68s ease,
    transform .96s var(--ease);
}

.home-page .journey-work__meta {
  bottom: clamp(64px, 8vh, 94px);
}

.home-page .journey-work__pagination {
  bottom: clamp(66px, 8vh, 98px);
}

/* Project matrix: retain prominence while reducing dead travel around it. */
.home-page .project-matrix__shell {
  padding-top: clamp(98px, 11vw, 164px);
  padding-bottom: clamp(100px, 11.5vw, 170px);
}

.home-page .project-matrix__header {
  margin-bottom: clamp(56px, 7vw, 94px);
}

.home-page .project-matrix__stage {
  gap: clamp(48px, 7vw, 102px);
}

.home-page .project-matrix__image {
  transition:
    opacity .7s cubic-bezier(.2,.72,.2,1),
    transform .92s cubic-bezier(.2,.72,.2,1),
    filter .72s ease;
}

.home-page .project-matrix__copy > p:first-child {
  margin-bottom: 34px;
}

/* Principles: useful content, not another full chapter of ceremony. */
.home-page .journey-principles__inner {
  padding-top: clamp(88px, 10vw, 148px);
  padding-bottom: clamp(88px, 10vw, 148px);
}

.home-page .journey-principles__intro {
  margin-bottom: clamp(52px, 6vw, 86px);
}

.home-page .journey-principle {
  min-height: 236px;
}

.home-page .journey-principle h3 {
  margin-top: clamp(58px, 6vw, 86px);
}

/* Process: four phases, one sustained visual, less vertical repetition. */
.home-page .journey-process__inner {
  padding-top: clamp(96px, 11vw, 166px);
  padding-bottom: clamp(100px, 11.5vw, 174px);
}

.home-page .journey-process .journey-section-head {
  margin-bottom: clamp(50px, 6vw, 78px);
}

.home-page .journey-process__layout {
  gap: clamp(54px, 7.5vw, 110px);
}

.home-page .journey-process__step {
  min-height: 31svh;
  padding-top: clamp(38px, 4vw, 58px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

.home-page .journey-process__visual {
  height: min(66svh, 710px);
}

.home-page .journey-process__image {
  transition:
    opacity .68s ease,
    transform .9s var(--ease);
}

/* Practice is necessary context, but not another visual climax. */
.home-page .journey-practice {
  padding-top: clamp(96px, 10.5vw, 158px);
  padding-bottom: clamp(96px, 10.5vw, 158px);
}

/* Keep the finale strong while reducing the feeling of a second hero. */
.home-page .journey-contact {
  min-height: 92svh;
}

@media (max-width: 980px) {
  .home-page .journey-work {
    height: auto;
  }

  .home-page .project-matrix__shell,
  .home-page .journey-process__inner {
    padding-top: 96px;
    padding-bottom: 104px;
  }
}

@media (max-width: 760px) {
  .home-page .journey-intro,
  .home-page .journey-services,
  .home-page .journey-principles__inner,
  .home-page .journey-practice {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .home-page .journey-services__visual {
    height: 58svh;
    min-height: 430px;
  }

  .home-page .project-matrix__header {
    margin-bottom: 48px;
  }

  .home-page .journey-process__step {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .home-page .journey-contact {
    min-height: 84svh;
  }
}

/* --------------------------------------------------------------
   1. Framed scroll-linked hero
   -------------------------------------------------------------- */

.home-page .journey-hero {
  height: 155svh;
  background: #070707;
}

.home-page .journey-hero__sticky {
  isolation: isolate;
}

.home-page .journey-hero__sticky::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: var(--journey-gutter);
  top: calc(var(--header) + 34px);
  bottom: clamp(42px, 7vh, 76px);
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.22),
    rgba(255,255,255,.04) 72%,
    transparent
  );
  opacity: calc(.32 - var(--hero-progress) * .2);
}

.home-page .journey-hero__media {
  inset: auto;
  top: 12svh;
  right: clamp(28px, 4.4vw, 78px);
  width: min(69vw, 1120px);
  height: 76svh;
  max-height: 790px;
  border: 1px solid rgba(255,255,255,.1);
  background: #111;
  transform:
    translateX(calc((1 - var(--hero-progress)) * 2.6vw))
    scale(calc(.92 + var(--hero-progress) * .08));
  transform-origin: right center;
  box-shadow: 0 34px 110px rgba(0,0,0,.25);
}

.home-page .journey-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}

.home-page .journey-hero__image {
  transform:
    translate3d(
      calc((1 - var(--hero-progress)) * 2.2%),
      calc(var(--hero-progress) * -1.4%),
      0
    )
    scale(calc(1.045 - var(--hero-progress) * .045));
  object-position: 52% 53%;
  filter: saturate(.94) contrast(1) brightness(.9);
}

.home-page .journey-hero__veil {
  background:
    linear-gradient(90deg, rgba(6,6,6,.48), rgba(6,6,6,.08) 52%, transparent),
    linear-gradient(to top, rgba(6,6,6,.24), transparent 48%);
  opacity: calc(.72 - var(--hero-progress) * .28);
}

.home-page .journey-hero__copy {
  left: clamp(46px, 5.2vw, 92px);
  bottom: clamp(108px, 14vh, 170px);
  width: min(350px, 23vw);
  transform: translateY(calc(var(--hero-progress) * -18px));
  opacity: calc(1 - var(--hero-progress) * .88);
}

.home-page .journey-hero__copy h1 {
  max-width: 360px;
  margin: 22px 0 26px;
  font-size: clamp(54px, 5.35vw, 88px);
  line-height: .9;
}

.home-page .journey-hero__intro {
  max-width: 350px;
  margin-bottom: 28px;
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.62;
}

.home-page .journey-hero__caption {
  right: clamp(28px, 4.4vw, 78px);
  bottom: clamp(24px, 5.5vh, 54px);
  width: min(69vw, 1120px);
  justify-content: space-between;
  color: rgba(255,255,255,.52);
}

.home-page .journey-scroll-cue {
  left: clamp(46px, 5.2vw, 92px);
  right: auto;
  top: auto;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: none;
}

.home-page .journey-scroll-cue i {
  width: 72px;
  height: 1px;
}

.home-page .journey-scroll-cue i::after {
  transform: translateX(-100%);
  animation-name: journey-scroll-line-horizontal;
}

@keyframes journey-scroll-line-horizontal {
  0% { transform: translateX(-100%); }
  48% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* --------------------------------------------------------------
   2. Studio introduction without image overlap
   -------------------------------------------------------------- */

.home-page .journey-intro {
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: center;
}

.home-page .journey-intro__images {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(150px, .56fr);
  gap: clamp(14px, 1.7vw, 26px);
  align-items: end;
  min-height: 0;
}

.home-page .journey-intro__image,
.home-page .journey-intro__image--large,
.home-page .journey-intro__image--small {
  position: relative;
  inset: auto;
  right: auto;
  bottom: auto;
  width: auto;
  box-shadow: none;
}

.home-page .journey-intro__image--large {
  aspect-ratio: 16 / 11;
}

.home-page .journey-intro__image--small {
  aspect-ratio: 4 / 5;
}

.home-page .journey-intro__image img {
  filter: grayscale(.32) saturate(.76) brightness(.94);
}

.home-page .journey-intro__image:hover img {
  filter: grayscale(0) saturate(.95) brightness(1);
  transform: scale(1.01);
}

.home-page .journey-intro__image figcaption {
  padding: 34px 14px 12px;
}

/* --------------------------------------------------------------
   3. Services: light proportion and crop corrections only
   -------------------------------------------------------------- */

.home-page .journey-services__layout {
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  gap: clamp(50px, 7vw, 98px);
}

.home-page .journey-services__visual {
  height: min(62svh, 690px);
  border: 1px solid rgba(255,255,255,.075);
}

.home-page .journey-service__image {
  inset: clamp(9px, .9vw, 14px);
}

.home-page .journey-service__image[data-service-image="0"] img {
  object-position: 50% 46%;
}

.home-page .journey-service__image[data-service-image="1"] img {
  object-position: 52% 50%;
}

.home-page .journey-service__image[data-service-image="2"] img {
  object-position: 50% 45%;
}

.home-page .journey-service__image[data-service-image="3"] img {
  object-position: 50% 54%;
}

.home-page .journey-service__image[data-service-image="4"] img {
  object-position: 50% 52%;
}

/* --------------------------------------------------------------
   4. Framed Selected Work with preserved scroll pause
   -------------------------------------------------------------- */

.home-page .journey-work {
  height: 372svh;
  background:
    radial-gradient(circle at 72% 46%, rgba(255,255,255,.028), transparent 28%),
    #060606;
}

.home-page .journey-work__sticky::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(var(--header) + 82px);
  bottom: 48px;
  left: var(--journey-gutter);
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,.18), transparent 82%);
}

.home-page .journey-work__header {
  top: calc(var(--header) + 26px);
}

.home-page .journey-work__header h2 {
  max-width: 500px;
  font-size: clamp(14px, 1.2vw, 19px);
  line-height: 1.42;
}

.home-page .journey-work__stage {
  position: absolute;
  inset: 0;
}

.home-page .journey-work__slide {
  position: absolute;
  inset: 0;
  transform: none;
  transition: opacity .72s ease;
}

.home-page .journey-work__slide.is-active {
  transform: none;
}

.home-page .journey-work__image {
  position: absolute;
  inset: auto;
  top: 50%;
  right: clamp(34px, 5vw, 88px);
  width: min(63vw, 1020px);
  height: min(68svh, 720px);
  border: 1px solid rgba(255,255,255,.1);
  object-fit: cover;
  filter: saturate(.88) contrast(1) brightness(.84);
  transform: translateY(-50%) scale(1.025);
  transform-origin: center;
  transition:
    transform .96s var(--ease),
    filter .72s ease;
  box-shadow: 0 34px 110px rgba(0,0,0,.23);
}

.home-page .journey-work__slide.is-active .journey-work__image {
  transform: translateY(-50%) scale(1);
  filter: saturate(.96) contrast(1) brightness(.94);
}

.home-page .journey-work__shade {
  position: absolute;
  inset: auto;
  top: 50%;
  right: clamp(34px, 5vw, 88px);
  width: min(63vw, 1020px);
  height: min(68svh, 720px);
  border: 1px solid rgba(255,255,255,.04);
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 46%),
    linear-gradient(to top, rgba(0,0,0,.24), transparent 34%);
  transform: translateY(-50%);
  pointer-events: none;
}

.home-page .journey-work__meta {
  left: clamp(48px, 5.4vw, 98px);
  top: 50%;
  bottom: auto;
  width: min(340px, 23vw);
  max-width: none;
  grid-template-columns: 34px minmax(0, 1fr);
  transform: translateY(calc(-50% + 14px));
  opacity: 0;
  transition:
    opacity .46s ease .08s,
    transform .72s var(--ease) .04s;
}

.home-page .journey-work__slide.is-active .journey-work__meta {
  opacity: 1;
  transform: translateY(-50%);
}

.home-page .journey-work__meta strong {
  margin: 10px 0 16px;
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: .94;
}

.home-page .journey-work__category,
.home-page .journey-work__location {
  color: rgba(255,255,255,.58);
}

.home-page .journey-work__pagination {
  right: auto;
  left: clamp(48px, 5.4vw, 98px);
  bottom: clamp(44px, 6vh, 72px);
  grid-auto-flow: column;
  gap: 16px;
}

.home-page .journey-work__dot {
  justify-content: flex-start;
  width: 34px;
}

.home-page .journey-work__dot::before {
  width: 10px;
}

.home-page .journey-work__dot.is-active {
  width: 58px;
}

.home-page .journey-work__dot.is-active::before {
  width: 28px;
}

.home-page .journey-work__all {
  top: calc(var(--header) + 92px);
  right: clamp(34px, 5vw, 88px);
}

/* --------------------------------------------------------------
   5–9. Supporting-section proportion checks
   -------------------------------------------------------------- */

.home-page .project-matrix__header {
  grid-template-columns: minmax(0, .74fr) minmax(320px, .5fr);
}

.home-page .journey-principles__grid {
  align-items: stretch;
}

.home-page .journey-principle {
  display: flex;
  flex-direction: column;
}

.home-page .journey-principle h3 {
  margin-bottom: 14px;
}

.home-page .journey-principle p {
  margin-top: auto;
}

.home-page .journey-process__visual {
  height: min(64svh, 680px);
}

.home-page .journey-process__image {
  inset: clamp(12px, 1.35vw, 22px);
}

.home-page .journey-practice__details dl div {
  min-height: 82px;
}

.home-page .journey-contact {
  min-height: 88svh;
}

.home-page .journey-contact__copy {
  max-width: 840px;
}

/* --------------------------------------------------------------
   Responsive layouts
   -------------------------------------------------------------- */

@media (max-width: 1100px) {
  .home-page .journey-hero__media {
    width: min(67vw, 900px);
  }

  .home-page .journey-hero__copy {
    width: min(310px, 25vw);
  }

  .home-page .journey-intro {
    grid-template-columns: minmax(260px, .68fr) minmax(430px, 1.32fr);
    gap: 54px;
  }

  .home-page .journey-work__image,
  .home-page .journey-work__shade {
    width: min(61vw, 820px);
  }

  .home-page .journey-work__meta {
    width: min(300px, 26vw);
  }
}

@media (max-width: 900px) {
  .home-page .journey-intro {
    grid-template-columns: 1fr;
  }

  .home-page .journey-intro__statement {
    max-width: 780px;
  }

  .home-page .journey-intro__images {
    grid-template-columns: minmax(0, 1.55fr) minmax(130px, .5fr);
  }

  .home-page .journey-services__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-page .journey-hero {
    height: 138svh;
  }

  .home-page .journey-hero__sticky::before {
    display: none;
  }

  .home-page .journey-hero__media {
    top: 34svh;
    right: 16px;
    left: 16px;
    width: auto;
    height: 56svh;
    max-height: none;
    transform:
      translateY(calc((1 - var(--hero-progress)) * 12px))
      scale(calc(.95 + var(--hero-progress) * .05));
  }

  .home-page .journey-hero__copy {
    top: calc(var(--header) + 42px);
    bottom: auto;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 560px;
    transform: translateY(calc(var(--hero-progress) * -12px));
  }

  .home-page .journey-hero__copy h1 {
    max-width: 520px;
    margin: 18px 0 20px;
    font-size: clamp(50px, 14vw, 78px);
  }

  .home-page .journey-hero__intro {
    max-width: 480px;
    margin-bottom: 22px;
  }

  .home-page .journey-hero__caption {
    right: 16px;
    bottom: 7svh;
    width: calc(100% - 32px);
  }

  .home-page .journey-scroll-cue {
    left: 20px;
    bottom: 20px;
  }

  .home-page .journey-intro__images {
    grid-template-columns: minmax(0, 1.55fr) minmax(92px, .48fr);
    gap: 10px;
  }

  .home-page .journey-work {
    height: auto;
    padding: 92px 16px;
  }

  .home-page .journey-work__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .home-page .journey-work__sticky::before {
    display: none;
  }

  .home-page .journey-work__header {
    position: relative;
    top: auto;
    padding: 0;
    margin-bottom: 44px;
  }

  .home-page .journey-work__stage {
    position: relative;
    display: grid;
    gap: 54px;
  }

  .home-page .journey-work__slide {
    position: relative;
    inset: auto;
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .home-page .journey-work__image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .home-page .journey-work__slide.is-active .journey-work__image {
    transform: none;
  }

  .home-page .journey-work__shade {
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .home-page .journey-work__meta {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding-top: 22px;
    opacity: 1;
    transform: none;
  }

  .home-page .journey-work__slide.is-active .journey-work__meta {
    transform: none;
  }

  .home-page .journey-work__meta strong {
    font-size: clamp(34px, 10vw, 52px);
  }

  .home-page .journey-work__pagination,
  .home-page .journey-work__all {
    display: none;
  }

  .home-page .journey-process__visual {
    height: 58svh;
  }
}

@media (max-width: 520px) {
  .home-page .journey-hero__media {
    top: 37svh;
    height: 52svh;
  }

  .home-page .journey-hero__caption {
    display: grid;
    gap: 4px;
  }

  .home-page .journey-intro__images {
    grid-template-columns: 1fr;
  }

  .home-page .journey-intro__image--small {
    width: 42%;
    justify-self: end;
  }

  .home-page .journey-services__visual {
    min-height: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .journey-hero__media,
  .home-page .journey-hero__image,
  .home-page .journey-work__image,
  .home-page .journey-work__meta {
    transform: none;
  }
}

.home-page {
  --matrix-hero-progress: 0;
}

/* --------------------------------------------------------------
   Entrance handoff
   -------------------------------------------------------------- */

.home-page .intro {
  --intro-target-left: var(--intro-stage-left);
  --intro-target-top: var(--intro-stage-top);
  --intro-target-size: var(--intro-stage-size);
  transition:
    opacity .72s ease,
    visibility .72s ease,
    background-color 1.05s ease;
}

.home-page .intro__stage {
  transition:
    transform 1.82s cubic-bezier(.18,.76,.18,1),
    left 1.16s cubic-bezier(.2,.72,.2,1),
    top 1.16s cubic-bezier(.2,.72,.2,1),
    width 1.16s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro-logo-svg > g > g > path,
.home-page .intro-logo-svg > g > g > polygon,
.home-page .intro-logo-svg > g > g > rect {
  transition-duration: .72s;
}

.home-page .intro.phase-letters .intro-logo-svg > g > g > .st1 { transition-delay: 0s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st2 { transition-delay: .28s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st3 { transition-delay: .56s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st4 { transition-delay: .84s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st5 { transition-delay: 1.12s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st6 { transition-delay: 1.4s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st0 { transition-delay: 1.68s; }

.home-page .intro.phase-handoff {
  background-color: rgba(235,233,227,0);
}

.home-page .intro.phase-handoff .intro__stage {
  left: var(--intro-target-left);
  top: var(--intro-target-top);
  width: var(--intro-target-size);
  transform: scale(1);
}

.home-page.intro-active .matrix-hero__mark,
.home-page.intro-active .matrix-hero__header,
.home-page.intro-active .matrix-hero__preview,
.home-page.intro-active .matrix-hero__scroll {
  opacity: 0;
}

.home-page.intro-handoff .matrix-hero__mark {
  opacity: 1;
  transition:
    opacity .45s ease .72s,
    transform .7s var(--ease);
}

.home-page.intro-handoff .matrix-hero__header,
.home-page.intro-handoff .matrix-hero__preview,
.home-page.intro-handoff .matrix-hero__scroll {
  opacity: 1;
  transition:
    opacity .72s ease .28s,
    transform .82s var(--ease) .2s;
}

/* --------------------------------------------------------------
   Matrix Hero
   -------------------------------------------------------------- */

.home-page .project-matrix--hero {
  position: relative;
  height: 148svh;
  color: #11110f;
  background:
    radial-gradient(circle at 76% 40%, rgba(255,255,255,.52), transparent 34%),
    #ebe9e3;
  border: 0;
}

.home-page .project-matrix--hero .project-matrix__shell {
  position: sticky;
  top: 0;
  width: min(100%, 1540px);
  height: 100svh;
  padding:
    calc(var(--header) + clamp(24px, 3vh, 38px))
    var(--journey-gutter)
    clamp(24px, 4vh, 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  overflow: hidden;
}

.home-page .matrix-hero__header {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(430px, .94fr) minmax(300px, .52fr);
  gap: clamp(54px, 8vw, 126px);
  align-items: end;
  margin: 0 0 clamp(34px, 4.6vh, 54px);
  transform:
    translateY(calc(var(--matrix-hero-progress) * -14px));
  opacity: calc(1 - var(--matrix-hero-progress) * .68);
}

.home-page .matrix-hero__header h1 {
  max-width: 750px;
  margin: 18px 0 0;
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.home-page .matrix-hero__intro {
  align-self: end;
  max-width: 470px;
}

.home-page .matrix-hero__intro > p:first-child {
  margin: 0;
  color: #57544e;
  font-size: 13px;
  line-height: 1.7;
}

.home-page .matrix-hero__hint {
  margin: 20px 0 24px;
  color: #76726a;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-page .matrix-hero__continue {
  color: #11110f;
  border-color: rgba(17,17,15,.28);
}

.home-page .matrix-hero__continue:hover {
  border-color: #11110f;
}

.home-page .matrix-hero__stage {
  position: relative;
  z-index: 5;
  min-height: 0;
  display: grid;
  grid-template-columns:
    minmax(360px, .78fr)
    minmax(520px, 1.22fr);
  gap: clamp(52px, 7.2vw, 112px);
  align-items: start;
  transform:
    translateY(calc(var(--matrix-hero-progress) * -8px))
    scale(calc(1 + var(--matrix-hero-progress) * .018));
  transform-origin: center 48%;
}

.home-page .matrix-hero__mark {
  width: min(38vw, 540px, calc(100svh - 320px));
  min-width: 350px;
  align-self: start;
  justify-self: start;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .45s ease,
    transform .7s var(--ease);
}

.home-page .matrix-hero__preview {
  width: 100%;
  min-width: 0;
  align-self: start;
  opacity: 1;
  transform: translateY(0);
}

.home-page .matrix-hero__preview .project-matrix__media {
  aspect-ratio: 16 / 9;
  max-height: min(52svh, 570px);
}

.home-page .matrix-hero__preview .project-matrix__copy {
  padding-top: 20px;
}

.home-page .matrix-hero__preview .project-matrix__copy > p:first-child {
  margin-bottom: 28px;
}

.home-page .matrix-hero__preview .project-matrix__copy h3 {
  font-size: clamp(29px, 3vw, 48px);
}

.home-page .matrix-hero__scroll {
  position: relative;
  z-index: 7;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #77736b;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(calc(var(--matrix-hero-progress) * 8px));
  opacity: calc(1 - var(--matrix-hero-progress) * .9);
}

.home-page .matrix-hero__scroll i {
  position: relative;
  display: block;
  width: 78px;
  height: 1px;
  overflow: hidden;
  background: rgba(17,17,15,.18);
}

.home-page .matrix-hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #11110f;
  animation: matrix-hero-scroll 2.5s ease-in-out infinite;
}

@keyframes matrix-hero-scroll {
  0% { transform: translateX(-100%); }
  48% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Light homepage header while the matrix hero is visible. */
.home-page:not(.intro-active) .site-header:not(.is-scrolled) {
  color: #11110f;
  background: linear-gradient(180deg, rgba(235,233,227,.94), rgba(235,233,227,0));
}

.home-page:not(.intro-active) .site-header:not(.is-scrolled) .digital-wordmark img {
  filter: invert(1);
}

.home-page:not(.intro-active) .site-header:not(.is-scrolled) .site-nav > a:not(.nav-cta) {
  color: rgba(17,17,15,.68);
}

.home-page:not(.intro-active) .site-header:not(.is-scrolled) .site-nav > a:not(.nav-cta):hover {
  color: #11110f;
}

.home-page:not(.intro-active) .site-header:not(.is-scrolled) .nav-cta {
  color: #11110f;
  border-color: rgba(17,17,15,.34);
}

.home-page:not(.intro-active) .site-header:not(.is-scrolled) .nav-cta:hover {
  color: #f4f4f0;
  background: #11110f;
}

.home-page:not(.intro-active) .site-header:not(.is-scrolled) .menu-toggle span {
  background: #11110f;
}

/* --------------------------------------------------------------
   Compact selected case studies
   -------------------------------------------------------------- */

.home-page .selected-cases {
  color: #f3f3ef;
  background: #080808;
}

.home-page .selected-cases__shell {
  padding-top: clamp(104px, 12vw, 184px);
  padding-bottom: clamp(112px, 13vw, 196px);
}

.home-page .selected-cases__header {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(330px, .52fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: end;
  margin-bottom: clamp(62px, 8vw, 116px);
}

.home-page .selected-cases__header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -.048em;
  line-height: 1;
}

.home-page .selected-cases__header > p {
  max-width: 470px;
  margin: 0;
  color: #969693;
  font-size: 13px;
  line-height: 1.72;
}

.home-page .selected-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(20px, 2.4vw, 38px);
  row-gap: clamp(62px, 7vw, 104px);
}

.home-page .selected-case {
  display: grid;
  min-width: 0;
}

.home-page .selected-case:nth-child(even) {
  margin-top: clamp(56px, 7vw, 104px);
}

.home-page .selected-case__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #131313;
}

.home-page .selected-case__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) brightness(.86);
  transform: scale(1.018);
  transition:
    transform .9s var(--ease),
    filter .72s ease;
}

.home-page .selected-case__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.3), transparent 42%),
    linear-gradient(90deg, rgba(0,0,0,.08), transparent 54%);
  pointer-events: none;
}

.home-page .selected-case:hover .selected-case__media img,
.home-page .selected-case:focus-visible .selected-case__media img {
  filter: saturate(.96) brightness(.96);
  transform: scale(1);
}

.home-page .selected-case__copy {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.home-page .selected-case__copy > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #898986;
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-page .selected-case__copy h3 {
  margin: 34px 0 38px;
  max-width: 560px;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -.038em;
  line-height: .98;
}

.home-page .selected-cases__all {
  margin-top: clamp(68px, 8vw, 112px);
}

/* --------------------------------------------------------------
   Rhythm after the opening change
   -------------------------------------------------------------- */

.home-page .journey-intro {
  min-height: auto;
  padding-top: clamp(112px, 13vw, 186px);
  padding-bottom: clamp(112px, 13vw, 186px);
}

.home-page .journey-services {
  padding-top: clamp(104px, 11vw, 166px);
  padding-bottom: clamp(104px, 11vw, 166px);
}

/* --------------------------------------------------------------
   Responsive
   -------------------------------------------------------------- */

@media (max-width: 1100px) {
  .home-page .matrix-hero__header {
    grid-template-columns: minmax(380px, .9fr) minmax(260px, .5fr);
    gap: 48px;
  }

  .home-page .matrix-hero__stage {
    grid-template-columns: minmax(310px, .74fr) minmax(430px, 1.26fr);
    gap: 44px;
  }

  .home-page .matrix-hero__mark {
    min-width: 310px;
  }
}

@media (max-width: 860px) {
  .home-page .project-matrix--hero {
    height: auto;
    min-height: 100svh;
  }

  .home-page .project-matrix--hero .project-matrix__shell {
    position: relative;
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--header) + 28px);
    padding-bottom: 48px;
    overflow: visible;
  }

  .home-page .matrix-hero__header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
    transform: none;
    opacity: 1;
  }

  .home-page .matrix-hero__header h1 {
    max-width: 660px;
    font-size: clamp(42px, 8.8vw, 68px);
  }

  .home-page .matrix-hero__intro {
    max-width: 610px;
  }

  .home-page .matrix-hero__stage {
    grid-template-columns: 1fr;
    gap: 44px;
    transform: none;
  }

  .home-page .matrix-hero__mark {
    width: min(68vw, 430px);
    min-width: 0;
    justify-self: center;
  }

  .home-page .matrix-hero__preview {
    width: min(100%, 760px);
    justify-self: center;
  }

  .home-page .matrix-hero__scroll {
    display: none;
  }

  .home-page .selected-cases__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .home-page .matrix-hero__header h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .home-page .matrix-hero__continue {
    display: none;
  }

  .home-page .matrix-hero__mark {
    width: min(82vw, 390px);
  }

  .home-page .matrix-hero__preview .project-matrix__media {
    aspect-ratio: 4 / 3;
  }

  .home-page .selected-cases__shell {
    padding-top: 90px;
    padding-bottom: 102px;
  }

  .home-page .selected-cases__grid {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .home-page .selected-case:nth-child(even) {
    margin-top: 0;
  }

  .home-page .selected-case__media {
    aspect-ratio: 4 / 3;
  }

  .home-page .selected-case__copy h3 {
    margin: 28px 0 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: auto;
  }

  .home-page .project-matrix--hero .project-matrix__shell {
    position: relative;
    height: auto;
    min-height: 100svh;
  }

  .home-page .matrix-hero__header,
  .home-page .matrix-hero__stage,
  .home-page .matrix-hero__scroll {
    transform: none;
    opacity: 1;
  }

  .home-page .matrix-hero__scroll i::after {
    animation: none;
  }
}

/* Preserve a meaningful heading without adding visual clutter. */
.home-page .matrix-hero__sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* The complete hero now fits inside the first viewport. */
.home-page .project-matrix--hero {
  height: 124svh;
}

.home-page .project-matrix--hero .project-matrix__shell {
  grid-template-rows: minmax(0, 1fr);
  padding:
    calc(var(--header) + clamp(16px, 2.4vh, 26px))
    var(--journey-gutter)
    clamp(18px, 3vh, 30px);
}

/*
  The stage is vertically centred as one composition.
  Matrix and project preview still share the same top datum.
*/
.home-page .matrix-hero__stage {
  align-self: center;
  width: 100%;
  grid-template-columns:
    minmax(350px, .76fr)
    minmax(540px, 1.24fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: start;
  transform:
    translateY(calc(var(--matrix-hero-progress) * -5px))
    scale(calc(1 + var(--matrix-hero-progress) * .012));
}

/*
  Exact original-logo geometry:
  the cropped official SVG already has the black square as its viewBox.
  No additional inner scaling is allowed.
*/
.home-page .matrix-hero__mark {
  width: min(38vw, 66svh, 536px);
  min-width: 350px;
  margin: 0;
  overflow: hidden;
}

.home-page .matrix-hero__mark > img {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: contain;
}

/*
  The letter grid occupies the central 80% of the original black square.
  This matches the official logo geometry directly.
*/
.home-page .project-matrix__hotspots {
  inset: 10%;
}

.home-page .project-matrix__cell::before {
  inset: 8%;
}

/* Preview is compact enough for all project data to remain visible. */
.home-page .matrix-hero__preview {
  align-self: start;
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
}

.home-page .matrix-hero__preview .project-matrix__media {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 8.9;
}

.home-page .matrix-hero__preview .project-matrix__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "category category"
    "title link"
    "view link"
    "meta link";
  column-gap: 28px;
  row-gap: 0;
  align-items: end;
  min-height: 150px;
  padding-top: 18px;
}

.home-page .matrix-hero__preview .project-matrix__copy > p:first-child {
  grid-area: category;
  margin: 0 0 26px;
}

.home-page .matrix-hero__preview .project-matrix__copy h3 {
  grid-area: title;
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: .96;
}

.home-page .matrix-hero__preview .project-matrix__view {
  grid-area: view;
  margin: 10px 0 0;
}

.home-page .matrix-hero__preview .project-matrix__meta {
  grid-area: meta;
  margin-top: 24px;
}

.home-page .matrix-hero__preview .project-matrix__link {
  grid-area: link;
  align-self: end;
  margin-bottom: 0;
}

.home-page .project-matrix__counter {
  top: 14px;
  right: 14px;
}

/* Slightly quieter image transition now that the hero is the first screen. */
.home-page .project-matrix__image {
  transition:
    opacity .64s cubic-bezier(.2,.72,.2,1),
    transform .86s cubic-bezier(.2,.72,.2,1),
    filter .68s ease;
}

/* Intro and final matrix use the same square and letter geometry. */
.home-page .intro.phase-handoff .intro__stage {
  transform: scale(1);
}

@media (max-width: 1180px) {
  .home-page .matrix-hero__stage {
    grid-template-columns:
      minmax(320px, .72fr)
      minmax(460px, 1.28fr);
    gap: 46px;
  }

  .home-page .matrix-hero__mark {
    min-width: 320px;
  }

  .home-page .matrix-hero__preview .project-matrix__copy h3 {
    font-size: clamp(32px, 3.5vw, 48px);
  }
}

@media (max-width: 860px) {
  .home-page .project-matrix--hero {
    height: auto;
    min-height: 100svh;
  }

  .home-page .project-matrix--hero .project-matrix__shell {
    padding-top: calc(var(--header) + 24px);
    padding-bottom: 54px;
  }

  .home-page .matrix-hero__stage {
    align-self: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    transform: none;
  }

  .home-page .matrix-hero__mark {
    width: min(72vw, 440px);
    min-width: 0;
    justify-self: center;
  }

  .home-page .matrix-hero__preview {
    width: min(100%, 760px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .home-page .matrix-hero__mark {
    width: min(84vw, 390px);
  }

  .home-page .matrix-hero__preview .project-matrix__media {
    aspect-ratio: 4 / 3;
  }

  .home-page .matrix-hero__preview .project-matrix__copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "category"
      "title"
      "view"
      "meta"
      "link";
    min-height: 0;
  }

  .home-page .matrix-hero__preview .project-matrix__copy > p:first-child {
    margin-bottom: 22px;
  }

  .home-page .matrix-hero__preview .project-matrix__copy h3 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .home-page .matrix-hero__preview .project-matrix__link {
    justify-self: start;
    margin-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: auto;
  }

  .home-page .matrix-hero__stage {
    transform: none;
  }
}

.home-page .journey-work {
  height: 372svh;
  margin-top: 0;
}

.home-page .journey-work__header {
  z-index: 5;
}

.home-page .journey-work__stage,
.home-page .journey-work__pagination,
.home-page .journey-work__all {
  z-index: 3;
}

/*
  Preserve a clear transition between the light Matrix Hero sequence
  and the dark case-study chapter.
*/
.home-page .journey-work::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(255,255,255,.08);
  z-index: 6;
}

/*
  The matrix already offers broad exploration, so the case-study section
  keeps only four flagship projects and a restrained framed presentation.
*/
.home-page .journey-work__header h2 {
  max-width: 480px;
}

@media (max-width: 760px) {
  .home-page .journey-work {
    height: auto;
    margin-top: 0;
  }
}

/* ==============================================================
   0. Intro: exact snapshot handoff, no overlapping logo layers
   ============================================================== */

.home-page .intro {
  --handoff-start-left: 0px;
  --handoff-start-top: 0px;
  --handoff-start-size: 0px;
  --handoff-target-left: 0px;
  --handoff-target-top: 0px;
  --handoff-target-size: 0px;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: background-color .92s cubic-bezier(.2,.72,.2,1);
  contain: layout paint;
}

.home-page .intro__stage {
  transform: translateZ(0) scale(var(--intro-start-scale));
  backface-visibility: hidden;
  perspective: 1000px;
}

.home-page .intro.phase-prelude .intro__stage {
  transform: translateZ(0) scale(1);
}

.home-page .intro-logo-svg {
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: opacity .12s linear;
}

.home-page .intro__handoff-logo {
  position: absolute;
  z-index: 3;
  left: var(--handoff-start-left);
  top: var(--handoff-start-top);
  width: var(--handoff-start-size);
  height: var(--handoff-start-size);
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: left, top, width, height;
  transition:
    left 1.02s cubic-bezier(.2,.72,.2,1),
    top 1.02s cubic-bezier(.2,.72,.2,1),
    width 1.02s cubic-bezier(.2,.72,.2,1),
    height 1.02s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro.phase-lock .intro__handoff-logo {
  opacity: 1;
}

.home-page .intro.phase-lock .intro-logo-svg {
  opacity: 0;
}

.home-page .intro.phase-handoff {
  background-color: #ebe9e3;
}

.home-page .intro.phase-handoff .intro__stage {
  left: var(--intro-stage-left);
  top: var(--intro-stage-top);
  width: var(--intro-stage-size);
  transform: translateZ(0) scale(1);
}

.home-page .intro.phase-handoff .intro__handoff-logo {
  left: var(--handoff-target-left);
  top: var(--handoff-target-top);
  width: var(--handoff-target-size);
  height: var(--handoff-target-size);
}

.home-page.intro-active .matrix-hero__mark,
.home-page.intro-active .matrix-hero__preview {
  opacity: 0 !important;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1;
  transition: none;
}

.home-page.intro-interface-ready .matrix-hero__preview {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .64s ease .06s,
    transform .78s var(--ease) .04s;
}

/* Do not fade two black squares through one another. */
.home-page.intro-handoff .matrix-hero__mark,
.home-page.intro-handoff .matrix-hero__preview {
  opacity: 0 !important;
}

/* ==============================================================
   1. Studio: one image, one clear visual idea
   ============================================================== */

.home-page .journey-intro {
  grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr);
  gap: clamp(58px, 8vw, 126px);
  min-height: auto;
  padding-top: clamp(92px, 10vw, 148px);
  padding-bottom: clamp(92px, 10vw, 148px);
}

.home-page .journey-intro__images {
  display: block;
}

.home-page .journey-intro__image--large {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.home-page .journey-intro__image figcaption {
  padding: 30px 14px 12px;
}

/* ==============================================================
   2. Services: the complete chapter stays fixed while disciplines
   change through scrolling
   ============================================================== */

.home-page .journey-services {
  --service-progress: 0;
  position: relative;
  width: 100%;
  height: 410svh;
  padding: 0;
  background: #080808;
}

.home-page .journey-services__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  padding-top: calc(var(--header) + clamp(18px, 2.6vh, 28px));
  padding-bottom: clamp(18px, 3vh, 30px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.home-page .journey-services .journey-section-head {
  margin-bottom: clamp(26px, 3.2vh, 40px);
}

.home-page .journey-services__layout {
  min-height: 0;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  gap: clamp(48px, 6.5vw, 92px);
  align-items: stretch;
}

.home-page .journey-services__list {
  align-self: center;
}

.home-page .journey-service__row {
  min-height: 0;
  padding-top: clamp(14px, 1.75vh, 20px);
  padding-bottom: clamp(14px, 1.75vh, 20px);
}

.home-page .journey-service__description {
  max-width: 360px;
}

.home-page .journey-services__visual {
  position: relative;
  top: auto;
  height: 100%;
  min-height: 0;
  max-height: 66svh;
  align-self: center;
}

/* ==============================================================
   3. Selected Work: six projects, shorter dwell, consistent subtitle
   ============================================================== */

.home-page .journey-work {
  height: 450svh;
}

.home-page .journey-work__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  align-items: baseline;
}

.home-page .journey-work__header h2 {
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  white-space: nowrap;
}

.home-page .journey-work__image {
  height: min(66svh, 700px);
}

.home-page .journey-work__shade {
  height: min(66svh, 700px);
}

.home-page .journey-work__meta strong {
  font-size: clamp(36px, 4vw, 64px);
}

.home-page .journey-work__pagination {
  gap: 12px;
}

.home-page .journey-work__dot {
  width: 30px;
}

.home-page .journey-work__dot.is-active {
  width: 50px;
}

/* ==============================================================
   4. Principles: keep it quiet, reduce excess vertical ceremony
   ============================================================== */

.home-page .journey-principles__inner {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.home-page .journey-principles__intro {
  margin-bottom: clamp(42px, 5vw, 70px);
}

.home-page .journey-principle {
  min-height: 206px;
}

/* ==============================================================
   5. Process: complete chapter stays fixed while phases change
   ============================================================== */

.home-page .journey-process {
  --process-progress: 0;
  position: relative;
  height: 330svh;
  padding: 0;
}

.home-page .journey-process__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  padding-top: calc(var(--header) + clamp(18px, 2.5vh, 28px));
  padding-bottom: clamp(18px, 3vh, 30px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.home-page .journey-process .journey-section-head {
  margin-bottom: clamp(24px, 3vh, 38px);
}

.home-page .journey-process__layout {
  min-height: 0;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 6.5vw, 94px);
  align-items: stretch;
}

.home-page .journey-process__steps {
  align-self: center;
}

.home-page .journey-process__step {
  min-height: 0;
  padding-top: clamp(18px, 2vh, 24px);
  padding-bottom: clamp(18px, 2vh, 24px);
}

.home-page .journey-process__step h3 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.home-page .journey-process__step p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
}

.home-page .journey-process__visual {
  position: relative;
  top: auto;
  height: 100%;
  max-height: 64svh;
  min-height: 0;
  align-self: center;
}

/* ==============================================================
   6. End of page: reduce oversized pauses
   ============================================================== */

.home-page .journey-practice {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.home-page .journey-practice h2 {
  font-size: clamp(40px, 5vw, 72px);
}

.home-page .journey-practice__details dl div {
  min-height: 68px;
}

.home-page .journey-contact {
  min-height: 78svh;
}

.home-page .journey-contact h2 {
  font-size: clamp(50px, 6.6vw, 96px);
}

/* ==============================================================
   Responsive fallback: normal document flow on tablets and mobile
   ============================================================== */

@media (max-width: 1000px) {
  .home-page .journey-services {
    height: auto;
  }

  .home-page .journey-services__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .home-page .journey-services__layout {
    grid-template-columns: 1fr;
  }

  .home-page .journey-services__visual {
    height: 58svh;
    min-height: 430px;
    max-height: none;
  }

  .home-page .journey-process {
    height: auto;
  }

  .home-page .journey-process__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .home-page .journey-process__layout {
    grid-template-columns: 1fr;
  }

  .home-page .journey-process__visual {
    order: -1;
    height: 58svh;
    min-height: 430px;
    max-height: none;
  }
}

@media (max-width: 760px) {
  .home-page .journey-intro {
    grid-template-columns: 1fr;
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .home-page .journey-work {
    height: auto;
  }

  .home-page .journey-work__header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .journey-work__header h2 {
    white-space: normal;
  }

  .home-page .journey-services__sticky,
  .home-page .journey-process__sticky {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .home-page .journey-practice {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .home-page .journey-contact {
    min-height: 72svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro__handoff-logo,
  .home-page .intro-logo-svg {
    transition: none !important;
  }

  .home-page .journey-services,
  .home-page .journey-process {
    height: auto;
  }

  .home-page .journey-services__sticky,
  .home-page .journey-process__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
}

/* ==============================================================
   Process: everything remains visible inside the sticky viewport
   ============================================================== */

.home-page .journey-process {
  height: 286svh;
}

.home-page .journey-process__sticky {
  position: sticky;
  top: var(--header);
  height: calc(100svh - var(--header));
  padding-top: clamp(14px, 2vh, 22px);
  padding-bottom: clamp(14px, 2vh, 22px);
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.home-page .journey-process .journey-section-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.home-page .journey-process .journey-section-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.45vw, 54px);
  line-height: .98;
}

.home-page .journey-process .journey-section-head > p {
  max-width: 430px;
  font-size: 12px;
  line-height: 1.55;
}

.home-page .journey-process__layout {
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(360px, .78fr) minmax(440px, 1.22fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: stretch;
}

.home-page .journey-process__steps {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-top: 1px solid rgba(17,17,15,.18);
}

.home-page .journey-process__step {
  flex: 1 1 0;
  min-height: 0;
  padding: clamp(10px, 1.35vh, 15px) 0 clamp(10px, 1.35vh, 15px) 30px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number copy";
  column-gap: 8px;
  align-content: center;
}

.home-page .journey-process__step > span {
  grid-area: number;
  align-self: start;
  margin: 7px 0 0;
}

.home-page .journey-process__step h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: .98;
}

.home-page .journey-process__step p {
  grid-area: copy;
  max-width: 430px;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.48;
}

.home-page .journey-process__steps > .journey-text-link {
  flex: 0 0 auto;
  margin: 12px 0 0 30px;
}

.home-page .journey-process__rail {
  top: 0;
  bottom: 34px;
}

.home-page .journey-process__visual {
  position: relative;
  top: auto;
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  align-self: stretch;
}

.home-page .journey-process__image {
  inset: 14px;
}

.home-page .journey-process__image[data-process-image="2"] img,
.home-page .journey-process__image[data-process-image="3"] img {
  padding: clamp(14px, 1.8vw, 28px);
}

/* ==============================================================
   Practice: compact credibility chapter, not another full scene
   ============================================================== */

.home-page .journey-practice {
  min-height: 0;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .72fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.home-page .journey-practice h2 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: .94;
}

.home-page .journey-practice__details dl {
  margin-bottom: 26px;
}

.home-page .journey-practice__details dl div {
  min-height: 0;
  padding: 14px 0;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
}

.home-page .journey-practice__details dt {
  font-size: clamp(28px, 2.8vw, 42px);
}

.home-page .journey-practice__details > p {
  max-width: 500px;
  font-size: 13px;
  line-height: 1.62;
}

/* ==============================================================
   Contact: shorter final chapter
   ============================================================== */

.home-page .journey-contact {
  min-height: 64svh;
}

.home-page .journey-contact__copy {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.home-page .journey-contact h2 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(46px, 5.8vw, 84px);
  line-height: .88;
}

.home-page .journey-contact__copy > p:not(.journey-index) {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .home-page .journey-process {
    height: auto;
  }

  .home-page .journey-process__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding-top: 88px;
    padding-bottom: 96px;
    overflow: visible;
  }

  .home-page .journey-process .journey-section-head,
  .home-page .journey-process__layout,
  .home-page .journey-practice {
    grid-template-columns: 1fr;
  }

  .home-page .journey-process__steps {
    display: block;
  }

  .home-page .journey-process__step {
    display: block;
    padding: 32px 0;
  }

  .home-page .journey-process__step > span {
    display: block;
    margin-bottom: 12px;
  }

  .home-page .journey-process__visual {
    order: -1;
    height: 58svh;
    min-height: 420px;
  }

  .home-page .journey-practice {
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .home-page .journey-process__sticky {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .home-page .journey-process .journey-section-head h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .home-page .journey-practice {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .home-page .journey-contact {
    min-height: 60svh;
  }

  .home-page .journey-contact__copy {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* Final surgical refinement */

/* ==============================================================
   Entrance: exact source/target geometry and clean layer commit
   ============================================================== */

.home-page .intro {
  --handoff-start-width: 0px;
  --handoff-start-height: 0px;
  --handoff-target-width: 0px;
  --handoff-target-height: 0px;
}

.home-page .intro-logo-svg {
  transition: opacity .16s linear;
}

.home-page .intro__handoff-logo {
  width: var(--handoff-start-width);
  height: var(--handoff-start-height);
  transition:
    opacity .16s linear,
    left 1.02s cubic-bezier(.2,.72,.2,1),
    top 1.02s cubic-bezier(.2,.72,.2,1),
    width 1.02s cubic-bezier(.2,.72,.2,1),
    height 1.02s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro.phase-handoff .intro__handoff-logo {
  width: var(--handoff-target-width);
  height: var(--handoff-target-height);
}

/* Exact overlap for one frame before the intro layer is removed. */
.home-page.intro-active.intro-committed .matrix-hero__mark {
  opacity: 1 !important;
  transition: none !important;
}

.home-page.intro-active.intro-committed .matrix-hero__preview {
  opacity: 0 !important;
}

/* ==============================================================
   Capabilities: short laptop / browser-zoom fit
   ============================================================== */

@media (min-width: 1001px) and (max-height: 820px) {
  .home-page .journey-services__sticky {
    padding-top: calc(var(--header) + 10px);
    padding-bottom: 10px;
  }

  .home-page .journey-services .journey-section-head {
    margin-bottom: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(250px, .45fr);
    gap: 34px;
  }

  .home-page .journey-services .journey-section-head h2 {
    max-width: 720px;
    font-size: clamp(32px, 3.15vw, 44px);
    line-height: .98;
  }

  .home-page .journey-services .journey-section-head > p {
    font-size: 10px;
    line-height: 1.45;
  }

  .home-page .journey-services__layout {
    gap: clamp(32px, 4.5vw, 64px);
  }

  .home-page .journey-services__list {
    height: 100%;
    min-height: 0;
    align-self: stretch;
    display: grid;
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .home-page .journey-service__row {
    min-height: 0;
    height: 100%;
    padding: 5px 0;
    grid-template-columns: 30px minmax(120px, .58fr) minmax(170px, 1fr) 16px;
    gap: 10px;
  }

  .home-page .journey-service__row:hover,
  .home-page .journey-service__row:focus-visible,
  .home-page .journey-service__row.is-active {
    padding-left: 8px;
  }

  .home-page .journey-service__name {
    font-size: clamp(15px, 1.35vw, 20px);
  }

  .home-page .journey-service__description {
    font-size: 9px;
    line-height: 1.35;
  }

  .home-page .journey-services__visual {
    height: 100%;
    max-height: none;
    margin-top: 0;
  }
}

@media (min-width: 1001px) and (max-height: 650px) {
  .home-page .journey-services .journey-section-head h2 {
    font-size: clamp(29px, 2.8vw, 38px);
  }

  .home-page .journey-services .journey-section-head > p {
    font-size: 9px;
  }

  .home-page .journey-service__row {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .home-page .journey-service__name {
    font-size: 15px;
  }

  .home-page .journey-service__description {
    font-size: 8.5px;
    line-height: 1.28;
  }
}

/* ==============================================================
   Selected Work: verified status without changing its composition
   ============================================================== */

.home-page .journey-work__status {
  grid-column: 2;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ==============================================================
   Final-page rhythm
   ============================================================== */

.home-page .journey-practice {
  padding-top: clamp(46px, 5.5vw, 78px);
  padding-bottom: clamp(46px, 5.5vw, 78px);
}

.home-page .journey-practice h2 {
  max-width: 630px;
  font-size: clamp(36px, 4.1vw, 60px);
}

.home-page .journey-practice__details dl div {
  padding-top: 11px;
  padding-bottom: 11px;
}

.home-page .journey-contact {
  min-height: clamp(430px, 55svh, 510px);
}

.home-page .journey-contact__copy {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.home-page .journey-contact h2 {
  max-width: 700px;
  font-size: clamp(44px, 5.3vw, 76px);
}

.home-page .journey-contact__copy > p:not(.journey-index) {
  max-width: 650px;
  line-height: 1.58;
}

@media (max-width: 760px) {
  .home-page .journey-practice {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .home-page .journey-contact {
    min-height: 520px;
  }
}

/* ==============================================================
   Project first viewport: verified context and laptop-height fit
   ============================================================== */

.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 {
    padding-top: calc(var(--header) + 22px);
    padding-bottom: 22px;
    gap: clamp(42px, 5.5vw, 82px);
  }

  .project-page .project-hero h1 {
    margin-bottom: 30px;
    font-size: clamp(42px, 4.6vw, 64px);
  }

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

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

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


/* Final reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .home-page .journey-services,
  .home-page .journey-process {
    height: auto;
  }

  .home-page .journey-services__sticky,
  .home-page .journey-process__sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .home-page .journey-process__steps {
    height: auto;
    display: block;
  }

  .home-page .journey-process__step {
    display: block;
    padding: 30px 0;
  }

  .home-page .journey-process__visual {
    height: min(62svh, 680px);
    min-height: 420px;
  }
}

.home-page .intro__handoff-logo {
  display: none !important;
}

.home-page .intro {
  --intro-target-stage-left: var(--intro-stage-left);
  --intro-target-stage-top: var(--intro-stage-top);
  --intro-target-stage-width: var(--intro-stage-size);
  background: #fff;
  transition: background-color 1.24s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro__stage {
  transition:
    transform 2.3s cubic-bezier(.18,.76,.18,1),
    left 1.45s cubic-bezier(.2,.72,.2,1),
    top 1.45s cubic-bezier(.2,.72,.2,1),
    width 1.45s cubic-bezier(.2,.72,.2,1);
  backface-visibility: hidden;
  transform: translateZ(0) scale(var(--intro-start-scale));
}

.home-page .intro.phase-prelude .intro__stage {
  transform: translateZ(0) scale(1);
}

.home-page .intro-logo-svg {
  opacity: 1 !important;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
  transition: none !important;
}

.home-page .intro-logo-svg > g > g > path,
.home-page .intro-logo-svg > g > g > polygon,
.home-page .intro-logo-svg > g > g > rect {
  transition-duration: 1.05s;
}

.home-page .intro.phase-letters .intro-logo-svg > g > g > .st1 { transition-delay: 0s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st2 { transition-delay: .36s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st3 { transition-delay: .72s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st4 { transition-delay: 1.08s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st5 { transition-delay: 1.44s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st6 { transition-delay: 1.8s; }
.home-page .intro.phase-letters .intro-logo-svg > g > g > .st0 { transition-delay: 2.16s; }

.home-page .intro.phase-handoff {
  background-color: #ebe9e3;
}

.home-page .intro.phase-handoff .intro__stage {
  left: var(--intro-target-stage-left);
  top: var(--intro-target-stage-top);
  width: var(--intro-target-stage-width);
  transform: translateZ(0) scale(1);
}

.home-page.intro-active .matrix-hero__mark,
.home-page.intro-active .matrix-hero__preview {
  opacity: 0 !important;
}

.home-page.intro-active.intro-committed .matrix-hero__mark {
  opacity: 1 !important;
  transition: none !important;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1;
  transition: none;
}

.home-page.intro-interface-ready .matrix-hero__preview {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .74s ease .12s,
    transform .86s var(--ease) .08s;
}

.home-page .matrix-hero__replay {
  position: absolute;
  z-index: 9;
  left: var(--journey-gutter);
  bottom: clamp(16px, 2.5vh, 26px);
  border: 0;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(17,17,15,.24);
  background: transparent;
  color: rgba(17,17,15,.48);
  font: inherit;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .28s ease, border-color .28s ease;
}

.home-page .matrix-hero__replay:hover,
.home-page .matrix-hero__replay:focus-visible {
  color: #11110f;
  border-color: rgba(17,17,15,.72);
}

.home-page .matrix-hero__replay:focus-visible {
  outline: 1px solid rgba(17,17,15,.5);
  outline-offset: 6px;
}

@media (max-width: 860px) {
  .home-page .matrix-hero__replay {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: start;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro {
    display: none !important;
  }

  .home-page .matrix-hero__replay {
    display: none;
  }
}

/*
  ARCHITECTS belongs to the full entrance signature but not to the square
  matrix used by the interface. It therefore withdraws during the handoff
  instead of being cut off when the intro layer is removed.
*/
.home-page .intro-architects {
  opacity: 1;
  transform: translateY(0);
  transform-box: fill-box;
  transform-origin: center;
  filter: blur(0);
  will-change: opacity, transform, filter;
  transition:
    opacity 1.82s cubic-bezier(.2,.72,.2,1),
    transform 1.84s cubic-bezier(.2,.72,.2,1),
    filter 1.48s ease;
}

/*
  A restrained micro-stagger prevents the word from disappearing as one
  rigid bitmap. The movement travels from right to left, leaving the first
  letter last as the square settles into the matrix.
*/
.home-page .intro-architects__letter {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 1.06s cubic-bezier(.2,.72,.2,1),
    transform 1.18s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro.phase-handoff .intro-architects {
  opacity: 0;
  transform: translateY(-5px);
  filter: blur(1.4px);
}

.home-page .intro.phase-handoff .intro-architects__letter {
  opacity: 0;
  transform: translateY(-2px);
  transition-delay:
    calc((9 - var(--architect-letter, 0)) * 54ms);
}

/*
  Override the original tonal-class delay once handoff begins. Otherwise
  the late st0 reveal delay can compete with the exit transition.
*/
.home-page .intro.phase-handoff .intro-architects .st0 {
  transition-delay:
    calc((9 - var(--architect-letter, 0)) * 54ms) !important;
}

/* The word completes its fade before the intro layer is committed. */
.home-page .intro.is-dormant .intro-architects {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro-architects,
  .home-page .intro-architects__letter {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/*
  After the opening contraction reaches scale(1), remove the compositor
  transform and backface layer. This prevents fine SVG strokes from being
  sampled as a slightly offset cached texture while the bold white letters
  finish forming.
*/
.home-page .intro.phase-sharp:not(.phase-handoff) .intro__stage {
  transform: none;
  transition: none;
  backface-visibility: visible;
  perspective: none;
  will-change: auto;
}

.home-page .intro.phase-sharp .intro-logo-svg {
  transform: none !important;
  backface-visibility: visible;
  will-change: auto;
}

/*
  Earlier versions deliberately exposed the homepage matrix for one frame
  beneath the inline intro logo. Even a subpixel geometry difference creates
  a visible one-pixel duplicate. Keep the destination matrix hidden until
  the intro overlay has actually been removed.
*/
.home-page.intro-active.intro-committed .matrix-hero__mark {
  opacity: 0 !important;
}

.home-page.intro-active .matrix-hero__mark {
  opacity: 0 !important;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1;
  transition: opacity .24s ease !important;
}

/* The preview follows after the mark, keeping the identity handoff legible. */
.home-page.intro-interface-ready .matrix-hero__preview {
  transition:
    opacity .74s ease .16s,
    transform .86s var(--ease) .12s;
}

@media (prefers-reduced-motion: reduce) {
  .home-page.intro-interface-ready .matrix-hero__mark {
    transition: none !important;
  }
}

.home-page .intro {
  --intro-logo-size: clamp(240px, 23vw, 360px);
  --intro-origin-left: calc(50vw - (var(--intro-logo-size) / 2));
  --intro-origin-top: calc(50vh - (var(--intro-logo-size) * .5) - 28px);
  --intro-target-left: var(--intro-origin-left);
  --intro-target-top: var(--intro-origin-top);
  --intro-target-size: var(--intro-logo-size);
  position: fixed;
  inset: 0;
  z-index: 150;
  overflow: hidden;
  background: #050505;
  color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .52s ease, visibility .52s ease;
}

.home-page .intro.is-dormant {
  display: none;
}


.home-page .intro__stage {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  transform: none !important;
  transform-origin: center;
  transition: none !important;
  will-change: auto;
  backface-visibility: visible;
  perspective: none;
  contain: none;
}

.home-page .intro__signals,
.home-page .intro__composition {
  position: absolute;
}

.home-page .intro__signals {
  inset: 0;
}

.home-page .intro__line,
.home-page .intro__dot,
.home-page .intro__axis,
.home-page .intro__square,
.home-page .intro__cell,
.home-page .intro__architects,
.home-page .intro__architects span {
  transition-timing-function: cubic-bezier(.2,.72,.2,1);
}

.home-page .intro__line,
.home-page .intro__dot {
  position: absolute;
  background: rgba(255,255,255,.14);
  opacity: 0;
}

.home-page .intro__line {
  transform-origin: left center;
  transform: scaleX(0);
  height: 1px;
}

.home-page .intro__line--1 { left: 2.2vw; top: 7.8vh; width: 48px; }
.home-page .intro__line--2 { left: 12.8vw; top: 1.9vh; width: 1px; height: 44px; transform-origin: center top; transform: scaleY(0); }
.home-page .intro__line--3 { left: 41.8vw; top: 6.8vh; width: 74px; }
.home-page .intro__line--4 { right: 22vw; top: 11.8vh; width: 84px; }
.home-page .intro__line--5 { right: 3vw; top: 49vh; width: 52px; }
.home-page .intro__line--6 { left: 21vw; bottom: 6.5vh; width: 1px; height: 48px; transform-origin: center top; transform: scaleY(0); }

.home-page .intro__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  transform: scale(.4);
}

.home-page .intro__dot--1 { left: 2.05vw; top: 7.65vh; }
.home-page .intro__dot--2 { left: 12.72vw; top: 1.82vh; }
.home-page .intro__dot--3 { left: 41.6vw; top: 6.63vh; }
.home-page .intro__dot--4 { right: 22vw; top: 11.65vh; }
.home-page .intro__dot--5 { right: 2.85vw; top: 48.85vh; }
.home-page .intro__dot--6 { left: 20.92vw; bottom: 6.34vh; }

.home-page .intro.phase-edge .intro__line,
.home-page .intro.phase-entry .intro__line,
.home-page .intro.phase-cross .intro__line,
.home-page .intro.phase-grid .intro__line,
.home-page .intro.phase-architects .intro__line,
.home-page .intro.phase-handoff .intro__line,
.home-page .intro.phase-interface .intro__line,
.home-page .intro.phase-edge .intro__dot,
.home-page .intro.phase-entry .intro__dot,
.home-page .intro.phase-cross .intro__dot,
.home-page .intro.phase-grid .intro__dot,
.home-page .intro.phase-architects .intro__dot,
.home-page .intro.phase-handoff .intro__dot,
.home-page .intro.phase-interface .intro__dot {
  opacity: 1;
}

.home-page .intro.phase-edge .intro__line--1,
.home-page .intro.phase-edge .intro__line--3,
.home-page .intro.phase-edge .intro__line--4,
.home-page .intro.phase-edge .intro__line--5,
.home-page .intro.phase-entry .intro__line--1,
.home-page .intro.phase-entry .intro__line--3,
.home-page .intro.phase-entry .intro__line--4,
.home-page .intro.phase-entry .intro__line--5,
.home-page .intro.phase-cross .intro__line--1,
.home-page .intro.phase-cross .intro__line--3,
.home-page .intro.phase-cross .intro__line--4,
.home-page .intro.phase-cross .intro__line--5,
.home-page .intro.phase-grid .intro__line--1,
.home-page .intro.phase-grid .intro__line--3,
.home-page .intro.phase-grid .intro__line--4,
.home-page .intro.phase-grid .intro__line--5,
.home-page .intro.phase-architects .intro__line--1,
.home-page .intro.phase-architects .intro__line--3,
.home-page .intro.phase-architects .intro__line--4,
.home-page .intro.phase-architects .intro__line--5,
.home-page .intro.phase-handoff .intro__line--1,
.home-page .intro.phase-handoff .intro__line--3,
.home-page .intro.phase-handoff .intro__line--4,
.home-page .intro.phase-handoff .intro__line--5,
.home-page .intro.phase-interface .intro__line--1,
.home-page .intro.phase-interface .intro__line--3,
.home-page .intro.phase-interface .intro__line--4,
.home-page .intro.phase-interface .intro__line--5 {
  transform: scaleX(1);
  transition: transform .72s cubic-bezier(.2,.72,.2,1), opacity .6s ease;
}

.home-page .intro.phase-edge .intro__line--2,
.home-page .intro.phase-edge .intro__line--6,
.home-page .intro.phase-entry .intro__line--2,
.home-page .intro.phase-entry .intro__line--6,
.home-page .intro.phase-cross .intro__line--2,
.home-page .intro.phase-cross .intro__line--6,
.home-page .intro.phase-grid .intro__line--2,
.home-page .intro.phase-grid .intro__line--6,
.home-page .intro.phase-architects .intro__line--2,
.home-page .intro.phase-architects .intro__line--6,
.home-page .intro.phase-handoff .intro__line--2,
.home-page .intro.phase-handoff .intro__line--6,
.home-page .intro.phase-interface .intro__line--2,
.home-page .intro.phase-interface .intro__line--6 {
  transform: scaleY(1);
  transition: transform .72s cubic-bezier(.2,.72,.2,1), opacity .6s ease;
}

.home-page .intro.phase-entry .intro__dot,
.home-page .intro.phase-cross .intro__dot,
.home-page .intro.phase-grid .intro__dot,
.home-page .intro.phase-architects .intro__dot,
.home-page .intro.phase-handoff .intro__dot,
.home-page .intro.phase-interface .intro__dot {
  transform: scale(1);
  transition: transform .66s cubic-bezier(.2,.72,.2,1), opacity .6s ease;
}

.home-page .intro__composition {
  left: var(--intro-origin-left);
  top: var(--intro-origin-top);
  width: var(--intro-logo-size);
  font-size: calc(var(--intro-logo-size) / 14.8);
  transition:
    left 1.08s cubic-bezier(.2,.72,.2,1),
    top 1.08s cubic-bezier(.2,.72,.2,1),
    width 1.08s cubic-bezier(.2,.72,.2,1),
    opacity .52s ease;
}

.home-page .intro.phase-handoff .intro__composition,
.home-page .intro.phase-interface .intro__composition {
  left: var(--intro-target-left);
  top: var(--intro-target-top);
  width: var(--intro-target-size);
}

.home-page .intro__matrix-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.home-page .intro__axis,
.home-page .intro__square {
  position: absolute;
  opacity: 0;
}

.home-page .intro__axis {
  background: rgba(255,255,255,.11);
}

.home-page .intro__axis--h {
  left: -34%;
  top: 50%;
  width: 168%;
  height: 1px;
  transform: translateY(-50%) scaleX(.12);
  transform-origin: center;
}

.home-page .intro__axis--v {
  top: -34%;
  left: 50%;
  width: 1px;
  height: 168%;
  transform: translateX(-50%) scaleY(.12);
  transform-origin: center;
}

.home-page .intro.phase-cross .intro__axis,
.home-page .intro.phase-grid .intro__axis,
.home-page .intro.phase-architects .intro__axis,
.home-page .intro.phase-handoff .intro__axis,
.home-page .intro.phase-interface .intro__axis {
  opacity: 1;
}

.home-page .intro.phase-cross .intro__axis--h,
.home-page .intro.phase-grid .intro__axis--h,
.home-page .intro.phase-architects .intro__axis--h,
.home-page .intro.phase-handoff .intro__axis--h,
.home-page .intro.phase-interface .intro__axis--h {
  transform: translateY(-50%) scaleX(1);
  transition: transform .94s cubic-bezier(.2,.72,.2,1), opacity .58s ease;
}

.home-page .intro.phase-cross .intro__axis--v,
.home-page .intro.phase-grid .intro__axis--v,
.home-page .intro.phase-architects .intro__axis--v,
.home-page .intro.phase-handoff .intro__axis--v,
.home-page .intro.phase-interface .intro__axis--v {
  transform: translateX(-50%) scaleY(1);
  transition: transform .94s cubic-bezier(.2,.72,.2,1), opacity .58s ease;
}

.home-page .intro__square {
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
  transform: scale(.96);
}

.home-page .intro.phase-grid .intro__square,
.home-page .intro.phase-architects .intro__square,
.home-page .intro.phase-handoff .intro__square,
.home-page .intro.phase-interface .intro__square {
  opacity: 1;
  transform: scale(1);
  transition: opacity .8s ease, transform .9s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro__matrix {
  position: absolute;
  inset: 0;
}

.home-page .intro__cell {
  position: absolute;
  left: calc(var(--entry-x) * 1%);
  top: calc(var(--entry-y) * 1%);
  transform: translate(-50%, -50%);
  font-size: .95em;
  font-weight: 500;
  letter-spacing: .2em;
  color: rgba(255,255,255,.16);
  opacity: 0;
  line-height: 1;
  transition:
    left .92s cubic-bezier(.2,.72,.2,1),
    top .92s cubic-bezier(.2,.72,.2,1),
    opacity .62s ease,
    color .72s ease,
    filter .62s ease;
}

.home-page .intro.phase-entry .intro__cell.is-cross {
  opacity: .42;
  color: rgba(255,255,255,.34);
}

.home-page .intro.phase-cross .intro__cell {
  left: calc(var(--cross-x) * 1%);
  top: calc(var(--cross-y) * 1%);
}

.home-page .intro.phase-cross .intro__cell.is-cross {
  opacity: 1;
  color: rgba(255,255,255,.9);
}

.home-page .intro.phase-cross .intro__cell:not(.is-cross) {
  opacity: .04;
  color: rgba(255,255,255,.16);
}

.home-page .intro.phase-grid .intro__cell,
.home-page .intro.phase-architects .intro__cell,
.home-page .intro.phase-handoff .intro__cell,
.home-page .intro.phase-interface .intro__cell {
  left: calc(var(--final-x) * 1%);
  top: calc(var(--final-y) * 1%);
  opacity: .52;
  color: rgba(255,255,255,.38);
  filter: blur(0);
}

.home-page .intro.phase-grid .intro__cell.is-highlight,
.home-page .intro.phase-architects .intro__cell.is-highlight,
.home-page .intro.phase-handoff .intro__cell.is-highlight,
.home-page .intro.phase-interface .intro__cell.is-highlight {
  opacity: 1;
  color: #ffffff;
}

.home-page .intro.phase-handoff .intro__cell,
.home-page .intro.phase-interface .intro__cell {
  transition-duration: 1.06s, 1.06s, .92s, .92s, .92s;
}

.home-page .intro__architects {
  margin-top: clamp(18px, 2vw, 28px);
  display: flex;
  justify-content: center;
  gap: .62em;
  font-size: .34em;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  opacity: 0;
  transform: translateY(6px);
  filter: blur(.8px);
  will-change: opacity, transform, filter;
}

.home-page .intro__architects span {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity .82s ease,
    transform .9s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro.phase-architects .intro__architects,
.home-page .intro.phase-handoff .intro__architects,
.home-page .intro.phase-interface .intro__architects {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 1.1s ease, transform 1.12s cubic-bezier(.2,.72,.2,1), filter .82s ease;
}

.home-page .intro.phase-architects .intro__architects span,
.home-page .intro.phase-handoff .intro__architects span,
.home-page .intro.phase-interface .intro__architects span {
  opacity: 1;
  transform: translateY(0);
}

.home-page .intro.phase-architects .intro__architects span:nth-child(1) { transition-delay: .02s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(2) { transition-delay: .05s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(3) { transition-delay: .08s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(4) { transition-delay: .11s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(5) { transition-delay: .14s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(6) { transition-delay: .17s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(7) { transition-delay: .20s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(8) { transition-delay: .23s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(9) { transition-delay: .26s; }
.home-page .intro.phase-architects .intro__architects span:nth-child(10) { transition-delay: .29s; }

.home-page .intro.phase-handoff .intro__architects,
.home-page .intro.phase-interface .intro__architects {
  opacity: 0;
  transform: translateY(-4px);
  filter: blur(1px);
  transition: opacity .92s ease, transform .94s cubic-bezier(.2,.72,.2,1), filter .78s ease;
}

.home-page .intro.phase-handoff .intro__architects span,
.home-page .intro.phase-interface .intro__architects span {
  opacity: 0;
  transform: translateY(-3px);
}

.home-page .intro.phase-handoff .intro__architects span:nth-child(1),
.home-page .intro.phase-interface .intro__architects span:nth-child(1) { transition-delay: .27s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(2),
.home-page .intro.phase-interface .intro__architects span:nth-child(2) { transition-delay: .24s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(3),
.home-page .intro.phase-interface .intro__architects span:nth-child(3) { transition-delay: .21s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(4),
.home-page .intro.phase-interface .intro__architects span:nth-child(4) { transition-delay: .18s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(5),
.home-page .intro.phase-interface .intro__architects span:nth-child(5) { transition-delay: .15s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(6),
.home-page .intro.phase-interface .intro__architects span:nth-child(6) { transition-delay: .12s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(7),
.home-page .intro.phase-interface .intro__architects span:nth-child(7) { transition-delay: .09s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(8),
.home-page .intro.phase-interface .intro__architects span:nth-child(8) { transition-delay: .06s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(9),
.home-page .intro.phase-interface .intro__architects span:nth-child(9) { transition-delay: .03s; }
.home-page .intro.phase-handoff .intro__architects span:nth-child(10),
.home-page .intro.phase-interface .intro__architects span:nth-child(10) { transition-delay: 0s; }

.home-page.intro-active .site-header,
.home-page.intro-active .matrix-hero__header,
.home-page.intro-active .matrix-hero__preview,
.home-page.intro-active .matrix-hero__replay {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.home-page.intro-active .matrix-hero__mark {
  opacity: 0 !important;
  pointer-events: none;
}

.home-page.intro-interface-ready .site-header,
.home-page.intro-interface-ready .matrix-hero__header,
.home-page.intro-interface-ready .matrix-hero__preview,
.home-page.intro-interface-ready .matrix-hero__replay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity .72s ease .1s,
    transform .82s cubic-bezier(.2,.72,.2,1) .1s;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .22s ease .08s;
  pointer-events: auto;
}

.home-page.intro-interface-ready .project-matrix__hotspots {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .home-page .intro {
    --intro-logo-size: clamp(220px, 56vw, 300px);
  }

  .home-page .intro__composition {
    font-size: calc(var(--intro-logo-size) / 13.5);
  }

  .home-page .intro__architects {
    font-size: .36em;
    gap: .5em;
  }

  .home-page .intro__line--3,
  .home-page .intro__line--4 {
    width: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro,
  .home-page .intro * {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    animation: none !important;
  }
}

/* Hard isolation from legacy intro handoff selectors */
.home-page .intro.phase-handoff,
.home-page .intro.phase-interface {
  background: #050505 !important;
  background-color: #050505 !important;
}

.home-page .intro.phase-handoff .intro__stage,
.home-page .intro.phase-interface .intro__stage {
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  transition: none !important;
}

/* Matrix lock must supersede the earlier cross-only visibility state. */
.home-page .intro.phase-grid .intro__cell:not(.is-cross),
.home-page .intro.phase-architects .intro__cell:not(.is-cross),
.home-page .intro.phase-handoff .intro__cell:not(.is-cross),
.home-page .intro.phase-interface .intro__cell:not(.is-cross) {
  opacity: .42;
  color: rgba(255,255,255,.44);
}

/*
  The inline intro matrix and the homepage matrix are now generated from the
  same official SVG source. No HTML typography is used for the calligram.
*/
.home-page .intro__matrix-shell {
  position: relative;
}

.home-page .intro__official-matrix {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.home-page .intro__official-matrix .intro__matrix-bg {
  fill: #010202;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(.965);
  transition:
    opacity .72s ease,
    transform .9s cubic-bezier(.2,.72,.2,1);
}

.home-page .intro.phase-grid .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-interface .intro__official-matrix .intro__matrix-bg {
  opacity: 1;
  transform: scale(1);
}

/*
  Every glyph is an exact copied path or polygon from
  morphd-matrix-original.svg.
*/
.home-page .intro__glyph {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform:
    translate(
      var(--entry-tx, 0px),
      var(--entry-ty, 0px)
    );
  transition:
    transform .98s cubic-bezier(.2,.72,.2,1),
    opacity .62s ease;
  will-change: transform, opacity;
}

.home-page .intro.phase-entry .intro__glyph.is-cross,
.home-page .intro.phase-cross .intro__glyph.is-cross {
  opacity: 1;
  transform:
    translate(
      var(--cross-tx, 0px),
      var(--cross-ty, 0px)
    );
}

.home-page .intro.phase-entry .intro__glyph.is-cross {
  opacity: .46;
}

.home-page .intro.phase-cross .intro__glyph.is-cross {
  opacity: 1;
}

/* Exact official matrix lock. */
.home-page .intro.phase-grid .intro__glyph,
.home-page .intro.phase-architects .intro__glyph,
.home-page .intro.phase-handoff .intro__glyph,
.home-page .intro.phase-interface .intro__glyph {
  opacity: 1;
  transform: translate(0, 0);
}

/* Keep the official tonal hierarchy untouched. */
.home-page .intro__glyph .st1 { fill:#131313; }
.home-page .intro__glyph .st2 { fill:#313132; }
.home-page .intro__glyph .st3 { fill:#3A3A3A; }
.home-page .intro__glyph .st4 { fill:#616161; }
.home-page .intro__glyph .st5 { fill:#5C5C5C; }
.home-page .intro__glyph .st6 { fill:#FFFFFF; }

/* Replace reconstructed text with the exact official vector signature. */
.home-page .intro__architects {
  width: 78%;
  margin:
    clamp(18px, 2vw, 28px)
    auto
    0;
  display: block;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(.7px);
  transition:
    opacity 1.08s ease,
    transform 1.12s cubic-bezier(.2,.72,.2,1),
    filter .86s ease;
}

.home-page .intro__architects-mark {
  display: block;
  width: 100%;
  height: auto;
}

.home-page .intro.phase-architects .intro__architects {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.home-page .intro.phase-handoff .intro__architects,
.home-page .intro.phase-interface .intro__architects {
  opacity: 0;
  transform: translateY(-4px);
  filter: blur(1px);
  transition-duration: 1.12s, 1.14s, .9s;
}

/*
  During handoff, preserve exact 1:1 matrix geometry. The intro composition
  width is measured from the real homepage matrix rectangle.
*/
.home-page .intro.phase-handoff .intro__composition,
.home-page .intro.phase-interface .intro__composition {
  left: var(--intro-target-left);
  top: var(--intro-target-top);
  width: var(--intro-target-size);
}

/* Remove obsolete reconstructed-cell behaviour. */
.home-page .intro__cell {
  display: none !important;
}

/*
  The destination matrix arrives only after the identical inline vector has
  completed its move, avoiding a visible double image.
*/
.home-page.intro-active .matrix-hero__mark {
  opacity: 0 !important;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .2s ease .04s !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro__glyph,
  .home-page .intro__official-matrix .intro__matrix-bg,
  .home-page .intro__architects {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* Disable obsolete auxiliary square. The official SVG square is sufficient. */
.home-page .intro__square {
  display: none !important;
}

/*
  Initial state:
  - all official glyphs are hidden;
  - only the selected eleven glyphs receive off-canvas entry positions;
  - no second matrix or text layer exists.
*/
.home-page .intro__glyph {
  opacity: 0 !important;
  transform: translate(0, 0) !important;
  transition:
    transform 1.02s cubic-bezier(.2,.72,.2,1),
    opacity .58s ease;
}

.home-page .intro__glyph > path,
.home-page .intro__glyph > polygon,
.home-page .intro__glyph > rect {
  transition: fill .72s ease;
}

.home-page .intro__glyph.is-cross-source {
  transform:
    translate(
      var(--entry-tx, 0px),
      var(--entry-ty, 0px)
    ) !important;
}

/* Phase 2: selected official glyphs appear at the orthogonal edges. */
.home-page .intro.phase-entry .intro__glyph.is-cross-source {
  opacity: .42 !important;
}

/* Phase 3: those same eleven glyphs form one clean cross. */
.home-page .intro.phase-cross .intro__glyph.is-cross-source,
.home-page .intro.phase-cross-hold .intro__glyph.is-cross-source {
  opacity: 1 !important;
  transform:
    translate(
      var(--cross-tx, 0px),
      var(--cross-ty, 0px)
    ) !important;
}

/* Cross is monochrome and isolated. */
.home-page .intro.phase-entry .intro__glyph.is-cross-source > *,
.home-page .intro.phase-cross .intro__glyph.is-cross-source > *,
.home-page .intro.phase-cross-hold .intro__glyph.is-cross-source > *,
.home-page .intro.phase-matrix .intro__glyph.is-cross-source > * {
  fill: #fff !important;
}

/*
  Phase 4: only the same eleven cross glyphs move to their official matrix
  positions. The other twenty-five remain invisible.
*/
.home-page .intro.phase-matrix .intro__glyph.is-cross-source {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*
  Phase 5: after the cross movement finishes, reveal the black square and the
  remaining official glyphs. This is the first moment the complete matrix is
  visible.
*/
.home-page .intro__official-matrix .intro__matrix-bg {
  opacity: 0 !important;
  transform: scale(.98) !important;
}

.home-page .intro.phase-fill .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-interface .intro__official-matrix .intro__matrix-bg {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.home-page .intro.phase-fill .intro__glyph,
.home-page .intro.phase-architects .intro__glyph,
.home-page .intro.phase-handoff .intro__glyph,
.home-page .intro.phase-interface .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Restore the exact official tonal hierarchy only after matrix lock. */
.home-page .intro.phase-fill .intro__glyph .st1,
.home-page .intro.phase-architects .intro__glyph .st1,
.home-page .intro.phase-handoff .intro__glyph .st1,
.home-page .intro.phase-interface .intro__glyph .st1 { fill:#131313 !important; }

.home-page .intro.phase-fill .intro__glyph .st2,
.home-page .intro.phase-architects .intro__glyph .st2,
.home-page .intro.phase-handoff .intro__glyph .st2,
.home-page .intro.phase-interface .intro__glyph .st2 { fill:#313132 !important; }

.home-page .intro.phase-fill .intro__glyph .st3,
.home-page .intro.phase-architects .intro__glyph .st3,
.home-page .intro.phase-handoff .intro__glyph .st3,
.home-page .intro.phase-interface .intro__glyph .st3 { fill:#3A3A3A !important; }

.home-page .intro.phase-fill .intro__glyph .st4,
.home-page .intro.phase-architects .intro__glyph .st4,
.home-page .intro.phase-handoff .intro__glyph .st4,
.home-page .intro.phase-interface .intro__glyph .st4 { fill:#616161 !important; }

.home-page .intro.phase-fill .intro__glyph .st5,
.home-page .intro.phase-architects .intro__glyph .st5,
.home-page .intro.phase-handoff .intro__glyph .st5,
.home-page .intro.phase-interface .intro__glyph .st5 { fill:#5C5C5C !important; }

.home-page .intro.phase-fill .intro__glyph .st6,
.home-page .intro.phase-architects .intro__glyph .st6,
.home-page .intro.phase-handoff .intro__glyph .st6,
.home-page .intro.phase-interface .intro__glyph .st6 { fill:#FFFFFF !important; }

/* ARCHITECTS does not begin until the matrix is completely locked. */
.home-page .intro__architects {
  opacity: 0 !important;
  pointer-events: none;
}

.home-page .intro.phase-architects .intro__architects {
  opacity: 1 !important;
  transform: translateY(0);
  filter: blur(0);
}

.home-page .intro.phase-handoff .intro__architects,
.home-page .intro.phase-interface .intro__architects {
  opacity: 0 !important;
  transform: translateY(-4px);
  filter: blur(1px);
}

/* Keep destination artwork absent until the inline official matrix is gone. */
.home-page.intro-active .matrix-hero__mark {
  opacity: 0 !important;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .18s ease .04s !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro__glyph,
  .home-page .intro__glyph > *,
  .home-page .intro__official-matrix .intro__matrix-bg {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* Remove every obsolete guide, cross and reconstructed-letter layer. */
.home-page .intro__signals,
.home-page .intro__axis,
.home-page .intro__square,
.home-page .intro__cell {
  display: none !important;
}

.home-page .intro,
.home-page .intro__stage {
  background: #050505;
}

.home-page .intro__official-matrix {
  opacity: 1 !important;
  transform: none !important;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

/* The black square appears only after all 36 glyphs have reached the logo. */
.home-page .intro__official-matrix .intro__matrix-bg {
  opacity: 0 !important;
  transform: scale(.985) !important;
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity .86s ease,
    transform 1s cubic-bezier(.2,.72,.2,1) !important;
}

/*
  All glyphs remain the exact official paths and polygons with their exact
  original tonal classes. Only translation and opacity are animated.
*/
.home-page .intro__glyph {
  opacity: 0 !important;
  transform:
    translate(
      var(--entry-x, 0px),
      var(--entry-y, 0px)
    ) !important;
  transform-box: view-box;
  transform-origin: center;
  transition:
    transform 1.52s cubic-bezier(.18,.72,.18,1),
    opacity .54s ease !important;
  transition-delay:
    var(--glyph-delay, 0s),
    var(--glyph-delay, 0s) !important;
  will-change: transform, opacity;
}

.home-page .intro.is-preparing .intro__glyph,
.home-page .intro.is-preparing .intro__official-matrix .intro__matrix-bg,
.home-page .intro.is-preparing .intro__architects {
  transition: none !important;
}

/* All 36 glyphs travel directly to their final official matrix positions. */
.home-page .intro.phase-entry .intro__glyph,
.home-page .intro.phase-settle .intro__glyph,
.home-page .intro.phase-architects .intro__glyph,
.home-page .intro.phase-handoff .intro__glyph,
.home-page .intro.phase-interface .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Preserve every original fill value throughout the complete motion. */
.home-page .intro__glyph .st1 { fill:#131313 !important; }
.home-page .intro__glyph .st2 { fill:#313132 !important; }
.home-page .intro__glyph .st3 { fill:#3A3A3A !important; }
.home-page .intro__glyph .st4 { fill:#616161 !important; }
.home-page .intro__glyph .st5 { fill:#5C5C5C !important; }
.home-page .intro__glyph .st6 { fill:#FFFFFF !important; }

.home-page .intro.phase-settle .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-interface .intro__official-matrix .intro__matrix-bg {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Official outlined ARCHITECTS asset appears only after the matrix is complete. */
.home-page .intro__architects {
  opacity: 0 !important;
  transform: translateY(5px);
  filter: blur(.7px);
  pointer-events: none;
  transition:
    opacity 1.12s ease,
    transform 1.18s cubic-bezier(.2,.72,.2,1),
    filter .9s ease !important;
}

.home-page .intro.phase-architects .intro__architects {
  opacity: 1 !important;
  transform: translateY(0);
  filter: blur(0);
}

.home-page .intro.phase-handoff .intro__architects,
.home-page .intro.phase-interface .intro__architects {
  opacity: 0 !important;
  transform: translateY(-4px);
  filter: blur(1px);
}

/* The inline official matrix moves into the identical homepage matrix. */
.home-page .intro.phase-handoff .intro__composition,
.home-page .intro.phase-interface .intro__composition {
  left: var(--intro-target-left);
  top: var(--intro-target-top);
  width: var(--intro-target-size);
}

.home-page.intro-active .matrix-hero__mark {
  opacity: 0 !important;
}

.home-page.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .18s ease .04s !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro__glyph,
  .home-page .intro__official-matrix .intro__matrix-bg,
  .home-page .intro__architects {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/*
  The exact official glyphs now travel for longer from the physical viewport
  boundaries. Their destination geometry and original gradient are unchanged.
*/
.home-page .intro__glyph {
  transition:
    transform 2.34s cubic-bezier(.16,.68,.16,1),
    opacity .24s linear !important;
  transition-delay:
    var(--glyph-delay, 0s),
    var(--glyph-delay, 0s) !important;
}

/*
  Make each glyph visible as soon as its centre crosses the screen edge. The
  longer spatial translation, not a long opacity fade, carries the animation.
*/
.home-page .intro.phase-entry .intro__glyph,
.home-page .intro.phase-settle .intro__glyph,
.home-page .intro.phase-architects .intro__glyph,
.home-page .intro.phase-handoff .intro__glyph,
.home-page .intro.phase-interface .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Give the completed matrix a quiet pause before ARCHITECTS appears. */
.home-page .intro.phase-settle .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-page .intro.phase-interface .intro__official-matrix .intro__matrix-bg {
  transition-duration: .98s, 1.08s !important;
}

@media (max-width: 720px) {
  .home-page .intro__glyph {
    transition-duration: 2.08s, .22s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .intro__glyph {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

@media (min-width: 1001px) {
  /* ============================================================
     Capabilities: natural text flow + sticky visual
     ============================================================ */

  .home-page .journey-services {
    height: auto !important;
    padding: clamp(104px, 10vw, 154px) 0 clamp(112px, 11vw, 168px);
  }

  .home-page .journey-services__sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .home-page .journey-services .journey-section-head {
    margin-bottom: clamp(54px, 6vw, 86px);
  }

  .home-page .journey-services__layout {
    min-height: 0;
    grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
    gap: clamp(54px, 7vw, 100px);
    align-items: start;
  }

  .home-page .journey-services__list {
    align-self: start;
  }

  .home-page .journey-service__row {
    min-height: clamp(160px, 24svh, 230px) !important;
    padding-top: clamp(28px, 4vh, 44px) !important;
    padding-bottom: clamp(28px, 4vh, 44px) !important;
    align-content: center;
  }

  .home-page .journey-services__visual {
    position: sticky !important;
    top: calc(var(--header) + clamp(24px, 3vh, 38px)) !important;
    width: 100%;
    height: min(68svh, 720px) !important;
    min-height: 480px !important;
    max-height: none !important;
    align-self: start !important;
  }

  /* ============================================================
     Process: natural phase sequence + sticky visual
     ============================================================ */

  .home-page .journey-process {
    height: auto !important;
    padding: clamp(104px, 10vw, 154px) 0 clamp(112px, 11vw, 168px);
  }

  .home-page .journey-process__sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .home-page .journey-process .journey-section-head {
    margin-bottom: clamp(54px, 6vw, 86px);
  }

  .home-page .journey-process__layout {
    height: auto !important;
    min-height: 0;
    grid-template-columns: minmax(360px, .82fr) minmax(440px, 1.18fr);
    gap: clamp(52px, 7vw, 96px);
    align-items: start !important;
  }

  .home-page .journey-process__steps {
    position: relative;
    height: auto !important;
    min-height: 0;
    display: block !important;
    align-self: start !important;
  }

  .home-page .journey-process__step {
    min-height: clamp(230px, 34svh, 340px) !important;
    padding-top: clamp(38px, 5vh, 58px) !important;
    padding-bottom: clamp(38px, 5vh, 58px) !important;
    align-content: center;
  }

  .home-page .journey-process__steps > .journey-text-link {
    display: inline-flex;
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .home-page .journey-process__rail {
    bottom: 74px;
  }

  .home-page .journey-process__visual {
    position: sticky !important;
    top: calc(var(--header) + clamp(24px, 3vh, 38px)) !important;
    width: 100%;
    height: min(68svh, 720px) !important;
    min-height: 480px !important;
    max-height: none !important;
    align-self: start !important;
  }
}

/* More literal guidance, kept visually subordinate. */
.home-page .journey-section-head__scroll-note {
  display: block;
  margin-top: 14px;
  color: inherit;
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .home-page .journey-section-head__scroll-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .journey-services__visual,
  .home-page .journey-process__visual {
    position: relative !important;
    top: auto !important;
  }
}

.home-page .simple-work {
  position: relative;
  padding: clamp(84px, 9vw, 140px) 0;
  overflow: hidden;
  background: #080808;
  color: #fff;
}

.home-page .simple-work__header {
  padding-bottom: clamp(32px, 4vw, 54px);
}

.home-page .simple-work__header > div { max-width: 800px; }
.home-page .simple-work__header h2 { max-width: 760px; margin: 0; }
.home-page .simple-work__intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.56);
  line-height: 1.6;
}

.home-page .simple-carousel {
  width: min(100%, 1580px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  padding: 0 16px;
  outline: none;
}

.home-page .simple-carousel__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(520px, 45vw, 650px);
  overflow: hidden;
  isolation: isolate;
}

.home-page .simple-carousel__slide {
  --card-width: clamp(340px, 34vw, 500px);
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--card-width);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 64px, 0) scale(.72);
  transform-origin: 50% 12%;
  transition: transform .6s cubic-bezier(.2,.72,.2,1);
  will-change: transform;
}

.home-page .simple-carousel__slide[hidden] { display: block !important; }

.home-page .simple-carousel__slide.is-active,
.home-page .simple-carousel__slide.is-previous,
.home-page .simple-carousel__slide.is-next,
.home-page .simple-carousel__slide.is-far-previous,
.home-page .simple-carousel__slide.is-far-next {
  opacity: 1;
  visibility: visible;
}

.home-page .simple-carousel__slide.is-active { --card-saturation: 1; }
.home-page .simple-carousel__slide.is-previous,
.home-page .simple-carousel__slide.is-next { --card-saturation: .6; }
.home-page .simple-carousel__slide.is-far-previous,
.home-page .simple-carousel__slide.is-far-next { --card-saturation: .3; }

.home-page .simple-carousel__slide.is-active {
  z-index: 5;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.home-page .simple-carousel__slide.is-previous,
.home-page .simple-carousel__slide.is-next {
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.home-page .simple-carousel__slide.is-previous {
  transform: translate3d(calc(-50% - clamp(230px, 21vw, 320px)), 34px, 0) scale(.84);
}

.home-page .simple-carousel__slide.is-next {
  transform: translate3d(calc(-50% + clamp(230px, 21vw, 320px)), 34px, 0) scale(.84);
}

.home-page .simple-carousel__slide.is-far-previous,
.home-page .simple-carousel__slide.is-far-next {
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.home-page .simple-carousel__slide.is-far-previous {
  transform: translate3d(calc(-50% - clamp(400px, 34vw, 520px)), 64px, 0) scale(.72);
}

.home-page .simple-carousel__slide.is-far-next {
  transform: translate3d(calc(-50% + clamp(400px, 34vw, 520px)), 64px, 0) scale(.72);
}

.home-page .simple-carousel__image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.home-page .simple-carousel__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
  filter: saturate(var(--card-saturation, 1));
  opacity: 1 !important;
  transition: filter .6s cubic-bezier(.2,.72,.2,1);
  user-select: none;
  -webkit-user-drag: none;
}

.home-page .simple-carousel__meta {
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease .18s;
}

.home-page .simple-carousel__slide.is-active .simple-carousel__meta {
  opacity: 1;
  visibility: visible;
}

.home-page .simple-carousel__meta-top,
.home-page .simple-carousel__meta-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}

.home-page .simple-carousel__meta h3 {
  margin: 12px 0 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 450;
}

.home-page .simple-carousel__meta h3 a { color: inherit; text-decoration: none; }

.home-page .simple-carousel__arrow {
  position: relative;
  z-index: 8;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  background: #080808;
  color: #fff;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.home-page .simple-carousel__arrow:hover,
.home-page .simple-carousel__arrow:focus-visible {
  background: #fff;
  color: #080808;
  border-color: #fff;
}

.home-page .simple-work__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.home-page .simple-carousel__counter,
.home-page .simple-work__all {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-page .simple-carousel__counter { color: rgba(255,255,255,.48); }
.home-page .simple-work__all { color: #fff; text-decoration: none; }

/* Testimonials stay a static grid. */
.home-page .journey-testimonials {
  padding: clamp(84px, 9vw, 140px) 0;
  background: #f0eee8;
  color: #111;
}
.home-page .journey-testimonials__header { display: block; padding-bottom: clamp(30px, 4vw, 50px); }
.home-page .journey-testimonials__header > div { max-width: 850px; }
.home-page .journey-testimonials__header h2 { margin: 0; }
.home-page .journey-testimonials__header > div > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(17,17,17,.58);
  line-height: 1.6;
}
.home-page .testimonial-grid-wrap { width: min(100% - 40px, 1360px); margin: 0 auto; }
.home-page .testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.home-page .testimonial-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.25);
}
.home-page .testimonial-card__top,
.home-page .testimonial-card footer { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.home-page .testimonial-card__top,
.home-page .testimonial-card footer span,
.home-page .testimonial-card footer strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.home-page .testimonial-card blockquote {
  margin: 42px 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-style: normal;
}
.home-page .testimonial-card footer { padding-top: 20px; border-top: 1px solid rgba(17,17,17,.16); }

/* Five cards need real width. Below this point, the far pair is removed rather
   than squeezed into decorative slivers. The carousel data still remains intact. */
@media (max-width: 1080px) {
  .home-page .simple-carousel__stage { height: clamp(500px, 62vw, 620px); }
  .home-page .simple-carousel__slide { --card-width: clamp(330px, 46vw, 450px); }
  .home-page .simple-carousel__slide.is-previous {
    transform: translate3d(calc(-50% - clamp(220px, 30vw, 300px)), 34px, 0) scale(.82);
  }
  .home-page .simple-carousel__slide.is-next {
    transform: translate3d(calc(-50% + clamp(220px, 30vw, 300px)), 34px, 0) scale(.82);
  }
  .home-page .simple-carousel__slide.is-far-previous,
  .home-page .simple-carousel__slide.is-far-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  .home-page .simple-carousel {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 18px;
  }
  .home-page .simple-carousel__stage {
    grid-column: 1 / -1;
    grid-row: 1;
    height: min(126vw, 610px);
  }
  .home-page .simple-carousel__slide { --card-width: min(76vw, 430px); }
  .home-page .simple-carousel__slide.is-previous {
    transform: translate3d(calc(-50% - 57vw), 32px, 0) scale(.70);
  }
  .home-page .simple-carousel__slide.is-next {
    transform: translate3d(calc(-50% + 57vw), 32px, 0) scale(.70);
  }
  .home-page .simple-carousel__arrow { width: 100%; height: 46px; grid-row: 2; }
  .home-page .simple-carousel__arrow--prev { grid-column: 1; }
  .home-page .simple-carousel__arrow--next { grid-column: 2; }
  .home-page .simple-carousel__meta-top,
  .home-page .simple-carousel__meta-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .home-page .simple-work__footer { align-items: flex-start; flex-direction: column; }
  .home-page .testimonial-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .simple-carousel__slide,
  .home-page .simple-carousel__meta,
  .home-page .simple-carousel__image {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* Carousel saturation tuning */
.home-page .simple-carousel__slide.is-active { --card-saturation: 1; }
.home-page .simple-carousel__slide.is-previous,
.home-page .simple-carousel__slide.is-next { --card-saturation: .4; }
.home-page .simple-carousel__slide.is-far-previous,
.home-page .simple-carousel__slide.is-far-next { --card-saturation: .1; }

/* Overall vertical rhythm */
.home-page .journey-intro {
  min-height: auto;
  gap: clamp(42px, 7vw, 96px);
  padding-top: clamp(84px, 10vw, 150px);
  padding-bottom: clamp(84px, 10vw, 150px);
}

.home-page .journey-intro__images { min-height: 620px; }
.home-page .journey-intro__statement h2 { margin: 18px 0 24px; }
.home-page .journey-intro__statement > p:not(.journey-index) { margin-bottom: 24px; }

@media (min-width: 1001px) {
  .home-page .journey-services {
    padding: clamp(76px, 8vw, 118px) 0 clamp(84px, 8.5vw, 124px);
  }

  .home-page .journey-services .journey-section-head {
    margin-bottom: clamp(34px, 4vw, 56px);
  }

  .home-page .journey-services__layout {
    gap: clamp(38px, 5vw, 72px);
  }

  .home-page .journey-service__row {
    min-height: clamp(126px, 18svh, 170px) !important;
    padding-top: clamp(20px, 2.6vh, 28px) !important;
    padding-bottom: clamp(20px, 2.6vh, 28px) !important;
  }

  .home-page .journey-services__visual {
    top: calc(var(--header) + 20px) !important;
    height: min(60svh, 620px) !important;
    min-height: 420px !important;
  }

  .home-page .journey-process {
    padding: clamp(76px, 8vw, 118px) 0 clamp(84px, 8.5vw, 124px);
  }

  .home-page .journey-process .journey-section-head {
    margin-bottom: clamp(36px, 4vw, 58px);
  }

  .home-page .journey-process__layout {
    gap: clamp(38px, 5vw, 72px);
  }

  .home-page .journey-process__step {
    min-height: clamp(180px, 26svh, 250px) !important;
    padding-top: clamp(28px, 3.2vh, 40px) !important;
    padding-bottom: clamp(28px, 3.2vh, 40px) !important;
  }

  .home-page .journey-process__steps > .journey-text-link {
    margin-top: 22px;
    margin-bottom: 6px;
  }

  .home-page .journey-process__rail {
    bottom: 56px;
  }

  .home-page .journey-process__visual {
    top: calc(var(--header) + 20px) !important;
    height: min(60svh, 620px) !important;
    min-height: 420px !important;
  }
}

.home-page .journey-principles__inner {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.home-page .journey-principles__intro {
  margin-bottom: clamp(42px, 5vw, 68px);
}

.home-page .journey-principle {
  min-height: 220px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-page .journey-principle h3 {
  margin: clamp(38px, 4vw, 64px) 0 12px;
}

.home-page .journey-practice {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

.home-page .journey-practice__details > p { max-width: 56ch; }

.home-page .journey-testimonials {
  padding: clamp(54px, 6vw, 84px) 0;
}

.home-page .journey-testimonials__header {
  padding-bottom: clamp(20px, 3vw, 30px);
}

.home-page .journey-testimonials__header > div > p:last-child {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.home-page .testimonial-grid {
  gap: 14px;
}

.home-page .testimonial-card {
  min-height: 230px;
  padding: clamp(18px, 2vw, 26px);
}

.home-page .testimonial-card blockquote {
  margin: 24px 0;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.34;
}

.home-page .testimonial-card footer {
  padding-top: 14px;
}

.home-page .journey-contact__copy {
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

@media (max-width: 1000px) {
  .home-page .journey-intro {
    padding-top: 72px;
    padding-bottom: 78px;
    gap: 30px;
  }

  .home-page .journey-intro__images { min-height: 0; }
  .home-page .journey-services,
  .home-page .journey-process,
  .home-page .journey-principles__inner,
  .home-page .journey-practice,
  .home-page .journey-testimonials {
    padding-top: 64px;
    padding-bottom: 68px;
  }
}

@media (max-width: 760px) {
  .home-page .testimonial-card {
    min-height: 0;
  }

  .home-page .testimonial-card blockquote {
    font-size: 17px;
  }
}

.home-page .editorial-testimonials{background:#080808;color:#f5f4ef;border-top:1px solid rgba(255,255,255,.12);padding-top:clamp(72px,8vw,122px)}
.home-page .editorial-testimonials__top{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.42fr) auto;gap:clamp(34px,6vw,90px);align-items:end;padding-bottom:clamp(54px,6vw,86px)}
.home-page .editorial-testimonials__top h2{margin:18px 0 22px;font-size:clamp(38px,4.5vw,68px);font-weight:400;letter-spacing:-.045em;line-height:1.05;text-transform:uppercase}
.home-page .editorial-testimonials__rule{display:block;width:38px;border-top:1px solid rgba(255,255,255,.72)}
.home-page .editorial-testimonials__intro{color:rgba(255,255,255,.62);font-size:13px;line-height:1.65}
.home-page .editorial-testimonials__intro p{margin:0 0 5px}
.home-page .editorial-testimonials__arrows{display:flex;gap:34px}
.home-page .editorial-testimonials__arrows button{border:0;background:transparent;color:#fff;font-size:26px;cursor:pointer;padding:8px;transition:opacity .2s ease}
.home-page .editorial-testimonials__arrows button:hover{opacity:.55}
.home-page .editorial-testimonials__stage{position:relative;display:grid;grid-template-columns:minmax(0,1fr) 90px;gap:0;padding-bottom:clamp(58px,7vw,96px)}
.home-page .editorial-testimonial{display:grid;grid-template-columns:minmax(360px,.92fr) minmax(390px,1.08fr);min-height:500px}
.home-page .editorial-testimonial[hidden]{display:none}
.home-page .editorial-testimonial figure{margin:0;min-height:500px;overflow:hidden;background:#111}
.home-page .editorial-testimonial figure img{width:100%;height:100%;display:block;object-fit:cover;filter:saturate(.48) brightness(.72);animation:testimonialImage .7s cubic-bezier(.2,.72,.2,1)}
.home-page .editorial-testimonial__quote{display:flex;flex-direction:column;justify-content:center;padding:clamp(38px,6vw,88px);border-right:1px solid rgba(255,255,255,.13)}
.home-page .editorial-testimonial__quote>span{font-size:56px;line-height:.5;color:rgba(255,255,255,.7)}
.home-page .editorial-testimonial blockquote{margin:34px 0 40px;max-width:760px;font-size:clamp(24px,2.5vw,40px);font-weight:300;letter-spacing:-.025em;line-height:1.42}
.home-page .editorial-testimonial footer{padding-top:24px;border-top:1px solid rgba(255,255,255,.12);display:flex;flex-direction:column;gap:7px;font-size:10px;letter-spacing:.1em;text-transform:uppercase}
.home-page .editorial-testimonial footer span{color:rgba(255,255,255,.48)}
.home-page .editorial-testimonials__index{display:flex;flex-direction:column;justify-content:center;gap:24px;padding-left:32px}
.home-page .editorial-testimonials__index button{position:relative;border:0;background:transparent;color:rgba(255,255,255,.32);font-size:11px;text-align:left;cursor:pointer;padding:0}
.home-page .editorial-testimonials__index button.is-active{color:#fff}
.home-page .editorial-testimonials__index button.is-active:after{content:"";position:absolute;left:32px;top:50%;width:38px;border-top:1px solid rgba(255,255,255,.65)}
.home-page .editorial-testimonials__clients{border-top:1px solid rgba(255,255,255,.12);padding:34px 0}
.home-page .editorial-testimonials__clients .journey-shell{display:grid;grid-template-columns:1.3fr repeat(6,1fr);align-items:center;gap:24px;color:rgba(255,255,255,.32)}
.home-page .editorial-testimonials__clients span,.home-page .editorial-testimonials__clients strong{font-size:10px;letter-spacing:.1em;text-transform:uppercase;font-weight:400}
.home-page .editorial-testimonials__clients strong{font-size:clamp(12px,1.5vw,22px);letter-spacing:.03em;text-align:center}
@keyframes testimonialImage{from{opacity:.35;transform:scale(1.015)}to{opacity:1;transform:scale(1)}}
@media(max-width:900px){.home-page .editorial-testimonials__top{grid-template-columns:1fr}.home-page .editorial-testimonials__arrows{justify-self:start}.home-page .editorial-testimonials__stage{grid-template-columns:1fr}.home-page .editorial-testimonial{grid-template-columns:1fr}.home-page .editorial-testimonial figure{min-height:52vw}.home-page .editorial-testimonial__quote{border-right:0}.home-page .editorial-testimonials__index{flex-direction:row;padding:24px 0 0;gap:26px}.home-page .editorial-testimonials__index button.is-active:after{display:none}.home-page .editorial-testimonials__clients .journey-shell{grid-template-columns:repeat(3,1fr)}.home-page .editorial-testimonials__clients span{grid-column:1/-1}.home-page .editorial-testimonials__clients strong{text-align:left}}
@media(max-width:600px){.home-page .editorial-testimonials{padding-top:58px}.home-page .editorial-testimonial figure{min-height:74vw}.home-page .editorial-testimonial__quote{padding:32px 0}.home-page .editorial-testimonial blockquote{font-size:22px}.home-page .editorial-testimonials__clients .journey-shell{grid-template-columns:repeat(2,1fr)}}

.home-page .editorial-testimonial {
  min-height: 0;
  align-items: center;
}

.home-page .editorial-testimonial figure {
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  align-self: center;
}

.home-page .editorial-testimonial figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .editorial-testimonial__quote {
  align-self: stretch;
}

@media (max-width: 900px) {
  .home-page .editorial-testimonial figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .home-page .editorial-testimonial figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 901px) {
  .home-page .editorial-testimonial {
    grid-template-columns: clamp(480px, 42vw, 620px) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    height: clamp(360px, 31.5vw, 465px);
    min-height: 0;
    overflow: hidden;
    align-items: stretch;
  }

  .home-page .editorial-testimonial figure {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
  }

  .home-page .editorial-testimonial__quote {
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-content: stretch;
    align-content: stretch;
    padding: clamp(30px, 4.2vw, 62px);
    overflow: hidden;
  }

  .home-page .editorial-testimonial__quote > span {
    align-self: start;
  }

  .home-page .editorial-testimonial blockquote {
    align-self: center;
    max-width: 720px;
    margin: 18px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    font-size: clamp(22px, 2.15vw, 34px);
    line-height: 1.38;
  }

  .home-page .editorial-testimonial footer {
    align-self: end;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .home-page .editorial-testimonial {
    min-height: 0;
    align-items: stretch;
  }

  .home-page .editorial-testimonial__quote {
    min-height: 330px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: clamp(28px, 6vw, 52px) 0;
    overflow: hidden;
  }

  .home-page .editorial-testimonial blockquote {
    align-self: center;
    margin: 22px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }

  .home-page .editorial-testimonial footer {
    align-self: end;
  }
}

@media (max-width: 600px) {
  .home-page .editorial-testimonial__quote {
    min-height: 300px;
  }

  .home-page .editorial-testimonial blockquote {
    font-size: 20px;
    line-height: 1.42;
  }
}

.home-page .editorial-testimonials__top {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
}

.home-page .editorial-testimonials__arrows {
  display: none;
}

.home-page .editorial-testimonials__slides {
  display: grid;
  min-width: 0;
  isolation: isolate;
}

.home-page .editorial-testimonial {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(14px, 0, 0);
  transition:
    opacity 820ms cubic-bezier(.2, .72, .2, 1),
    transform 820ms cubic-bezier(.2, .72, .2, 1),
    visibility 0s linear 820ms;
}

.home-page .editorial-testimonial.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 80ms, 80ms, 0s;
  z-index: 2;
}

.home-page .editorial-testimonial.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-10px, 0, 0);
  transition-delay: 0s;
  z-index: 1;
}

.home-page .editorial-testimonial[hidden] {
  display: none;
}

.home-page .editorial-testimonials__index {
  align-items: center;
  gap: 12px;
  padding-left: 28px;
}

.home-page .editorial-testimonials__index button {
  --testimonial-duration: 9000ms;
  position: relative;
  display: block;
  width: 54px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.home-page .editorial-testimonials__index button::before,
.home-page .editorial-testimonials__index button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform-origin: left center;
}

.home-page .editorial-testimonials__index button::before {
  background: rgba(255,255,255,.22);
  transition: background-color 240ms ease;
}

.home-page .editorial-testimonials__index button::after {
  background: rgba(255,255,255,.9);
  transform: scaleX(0);
}

.home-page .editorial-testimonials__index button:hover::before,
.home-page .editorial-testimonials__index button:focus-visible::before {
  background: rgba(255,255,255,.5);
}

.home-page .editorial-testimonials__index button:focus-visible {
  outline: 1px solid rgba(255,255,255,.72);
  outline-offset: 3px;
}

.home-page .editorial-testimonials__index button.is-active::after {
  animation: testimonialLineProgress var(--testimonial-duration) linear forwards;
}

.home-page .editorial-testimonials.is-autoplay-paused .editorial-testimonials__index button.is-active::after {
  animation-play-state: paused;
}

@keyframes testimonialLineProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .home-page .editorial-testimonials__top {
    grid-template-columns: 1fr;
  }

  .home-page .editorial-testimonials__index {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 24px 0 0;
  }

  .home-page .editorial-testimonials__index button {
    width: clamp(34px, 10vw, 52px);
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .editorial-testimonial {
    transition: none;
    transform: none;
  }

  .home-page .editorial-testimonials__index button.is-active::after {
    animation: none;
    transform: scaleX(1);
  }
}

.home-page .editorial-testimonial blockquote {
  display: block;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-overflow: clip;
  font-size: clamp(20px, 1.85vw, 30px);
  line-height: 1.38;
}

.home-page .editorial-testimonial__quote {
  overflow: hidden;
}

.home-page .editorial-testimonials__index button {
  --testimonial-duration: 9000ms;
}

@media (min-width: 901px) {
  .home-page .editorial-testimonial__quote {
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: clamp(28px, 3.6vw, 52px);
  }

  .home-page .editorial-testimonial blockquote {
    width: 100%;
    max-width: 760px;
    margin: 14px 0;
  }
}

@media (max-width: 900px) {
  .home-page .editorial-testimonial__quote {
    min-height: 340px;
  }

  .home-page .editorial-testimonial blockquote {
    margin: 18px 0;
    font-size: clamp(19px, 4.6vw, 25px);
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  .home-page .editorial-testimonial__quote {
    min-height: 320px;
  }

  .home-page .editorial-testimonial blockquote {
    font-size: clamp(18px, 5.2vw, 22px);
  }
}

/* ------------------------------------------------------------
   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;
  }
}

.visual-audit.home-page .editorial-testimonials__index button::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.visual-audit.home-page .editorial-testimonials__index button::before {
  background: rgba(255,255,255,.22);
  transition:
    background-color 320ms ease,
    transform 320ms cubic-bezier(.22,.61,.36,1);
  transform: scaleX(.72);
  transform-origin: center;
}

.visual-audit.home-page .editorial-testimonials__index button.is-active::before {
  background: rgba(255,255,255,.92);
  transform: scaleX(1);
}

.visual-audit.home-page .editorial-testimonials__index button:hover::before,
.visual-audit.home-page .editorial-testimonials__index button:focus-visible::before {
  background: rgba(255,255,255,.62);
  transform: scaleX(.88);
}

.visual-audit.home-page .editorial-testimonials__index button.is-active:hover::before,
.visual-audit.home-page .editorial-testimonials__index button.is-active:focus-visible::before {
  background: #fff;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .visual-audit.home-page .editorial-testimonials__index button::before {
    transition: none !important;
  }
}

.visual-audit.home-page .editorial-testimonial {
  transform: translate3d(5px, 0, 0);
  transition:
    opacity 1280ms cubic-bezier(.22,.61,.36,1),
    transform 1380ms cubic-bezier(.22,.61,.36,1),
    visibility 0s linear 1380ms;
}

.visual-audit.home-page .editorial-testimonial.is-active {
  transform: translate3d(0, 0, 0);
  transition-delay: 140ms, 140ms, 0s;
}

.visual-audit.home-page .editorial-testimonial.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-4px, 0, 0);
  transition-delay: 0s;
}

.visual-audit.home-page .editorial-testimonial figure img {
  transition:
    opacity 1380ms cubic-bezier(.22,.61,.36,1),
    transform 1500ms cubic-bezier(.22,.61,.36,1),
    filter 1380ms ease;
}

.visual-audit.home-page .editorial-testimonial:not(.is-active):not(.is-leaving) figure img {
  opacity: .88;
  transform: scale(1.008);
}

.visual-audit.home-page .editorial-testimonial.is-active figure img {
  opacity: 1;
  transform: scale(1);
}

.visual-audit.home-page .editorial-testimonial.is-leaving figure img {
  opacity: .74;
  transform: scale(.997);
}

@media (prefers-reduced-motion: reduce) {
  .visual-audit.home-page .editorial-testimonial,
  .visual-audit.home-page .editorial-testimonial figure img {
    transition: none !important;
    transform: none !important;
  }
}

.home-page .project-matrix__cell { cursor: pointer; }
.home-page .project-matrix__cell:focus-visible {
  outline: 1px solid rgba(255,255,255,.9);
  outline-offset: -2px;
}
@media (hover:hover) {
  .home-page .project-matrix__cell:hover { cursor: pointer; }
}

.home-page .project-matrix__cell,
.home-page .project-matrix__cell:hover,
.home-page .project-matrix__cell:active,
.home-page .project-matrix__cell:focus-visible {
  cursor: default !important;
}

.home-page .project-matrix__cell,
.home-page .project-matrix__cell:hover,
.home-page .project-matrix__cell:active,
.home-page .project-matrix__cell:focus-visible {
  cursor: crosshair !important;
}

.visual-audit.home-page .editorial-testimonial {
  opacity: 1;
  visibility: hidden;
  transform: none;
  transition: visibility 0s linear 1480ms;
}

.visual-audit.home-page .editorial-testimonial.is-active,
.visual-audit.home-page .editorial-testimonial.is-leaving {
  visibility: visible;
  transform: none;
}

.visual-audit.home-page .editorial-testimonial.is-active {
  z-index: 2;
  pointer-events: auto;
  transition-delay: 0s;
}

.visual-audit.home-page .editorial-testimonial.is-leaving {
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition-delay: 0s;
}

/* Let the incoming image dissolve over the outgoing image. Keeping the
   outgoing image stable avoids the muddy dip that appears when both images
   are simultaneously semi-transparent. */
.visual-audit.home-page .editorial-testimonial figure {
  opacity: 0;
  transform: scale(1.006);
  transition:
    opacity 1320ms cubic-bezier(.22,.61,.36,1),
    transform 1480ms cubic-bezier(.22,.61,.36,1);
}

.visual-audit.home-page .editorial-testimonial.is-active figure,
.visual-audit.home-page .editorial-testimonial.is-leaving figure {
  opacity: 1;
}

.visual-audit.home-page .editorial-testimonial.is-active figure {
  transform: scale(1);
}

.visual-audit.home-page .editorial-testimonial.is-leaving figure {
  transform: scale(.998);
}

.visual-audit.home-page .editorial-testimonial figure img,
.visual-audit.home-page .editorial-testimonial.is-active figure img,
.visual-audit.home-page .editorial-testimonial.is-leaving figure img {
  opacity: 1;
  transform: none;
  transition: filter 1320ms ease;
}

/* Text uses a sequential dissolve: outgoing copy clears first, followed by
   a short visual pause, then the new quote enters. */
.visual-audit.home-page .editorial-testimonial__quote {
  opacity: 0;
  transform: translate3d(0, 3px, 0);
  transition:
    opacity 680ms cubic-bezier(.22,.61,.36,1) 520ms,
    transform 760ms cubic-bezier(.22,.61,.36,1) 520ms;
}

.visual-audit.home-page .editorial-testimonial.is-active .editorial-testimonial__quote {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.visual-audit.home-page .editorial-testimonial.is-leaving .editorial-testimonial__quote {
  opacity: 0;
  transform: translate3d(0, -2px, 0);
  transition:
    opacity 400ms cubic-bezier(.4,0,1,1),
    transform 460ms cubic-bezier(.4,0,1,1);
}

@media (prefers-reduced-motion: reduce) {
  .visual-audit.home-page .editorial-testimonial,
  .visual-audit.home-page .editorial-testimonial figure,
  .visual-audit.home-page .editorial-testimonial figure img,
  .visual-audit.home-page .editorial-testimonial__quote {
    transition: none !important;
    transform: none !important;
  }
}

.home-page {
  --intro-intro-opacity: 1;
  --intro-intro-bg-opacity: 1;
  --intro-matrix-opacity: 0;
  --intro-preview-opacity: 0;
  --intro-header-opacity: 0;
}

.home-page.intro-active,
.home-page.identity-parallax-active {
  overflow-y: auto !important;
}

.home-page .project-matrix--hero {
  height: 190svh !important;
  min-height: 190svh !important;
}

.home-page .project-matrix--hero .project-matrix__shell {
  position: sticky !important;
  top: 0 !important;
  height: 100svh !important;
}

.home-page .matrix-hero__stage {
  transform: none !important;
}

/* One fixed identity layer, controlled entirely by scroll position. */
.home-page .intro {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 150 !important;
  overflow: hidden !important;
  opacity: var(--intro-intro-opacity) !important;
  visibility: visible !important;
  pointer-events: none !important;
  background: rgba(5, 5, 5, var(--intro-intro-bg-opacity)) !important;
  transition: none !important;
}

.home-page.identity-complete .intro {
  visibility: hidden !important;
}

.home-page .intro.is-dormant {
  display: block !important;
}

.home-page .intro__stage {
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  transition: none !important;
}

.home-page .intro__composition {
  position: absolute !important;
  left: var(--intro-composition-left, var(--intro-origin-left)) !important;
  top: var(--intro-composition-top, var(--intro-origin-top)) !important;
  width: var(--intro-composition-size, var(--intro-logo-size)) !important;
  opacity: var(--intro-composition-opacity, 1) !important;
  transform: none !important;
  transition: none !important;
  will-change: left, top, width, opacity;
}

.home-page .intro__official-matrix,
.home-page .intro__official-matrix * {
  transition: none !important;
}

.home-page .intro__glyph {
  opacity: var(--intro-glyph-opacity, 0) !important;
  transform: translate(
    var(--intro-glyph-x, var(--entry-x, 0px)),
    var(--intro-glyph-y, var(--entry-y, 0px))
  ) !important;
  transform-box: view-box !important;
  transform-origin: center !important;
  transition: none !important;
  will-change: transform, opacity;
}

.home-page .intro__official-matrix .intro__matrix-bg {
  opacity: var(--intro-square-opacity, 0) !important;
  transform: scale(var(--intro-square-scale, .985)) !important;
  transform-box: fill-box !important;
  transform-origin: center !important;
  transition: none !important;
}

.home-page .intro__architects {
  opacity: var(--intro-architects-opacity, 0) !important;
  transform: translateY(var(--intro-architects-y, 6px)) !important;
  filter: blur(var(--intro-architects-blur, .7px)) !important;
  transition: none !important;
}


.home-page .intro__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3.6vh, 38px);
  z-index: 8;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: var(--intro-scroll-cue-opacity, 1);
  pointer-events: none;
}

.home-page .intro__scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  margin: 10px auto 0;
  background: rgba(255,255,255,.32);
}

/* The interface fades in only after the calligram reaches its exact target. */
.home-page .matrix-hero__mark {
  opacity: var(--intro-matrix-opacity) !important;
  transition: none !important;
}

.home-page .matrix-hero__preview,
.home-page .matrix-hero__replay {
  opacity: var(--intro-preview-opacity) !important;
  transform: translateY(calc((1 - var(--intro-preview-opacity)) * 10px)) !important;
  transition: none !important;
}

.home-page .site-header {
  opacity: var(--intro-header-opacity) !important;
  pointer-events: none;
  transition: none !important;
}

.home-page.identity-interface-ready .site-header {
  pointer-events: auto;
}

.home-page .project-matrix__hotspots,
.home-page .matrix-hero__replay,
.home-page .matrix-hero__preview a {
  pointer-events: none !important;
}

.home-page.identity-complete .project-matrix__hotspots,
.home-page.identity-complete .matrix-hero__replay,
.home-page.identity-complete .matrix-hero__preview a {
  pointer-events: auto !important;
}

/* Keep final-stage content visually stable during the assembly. */
.home-page .matrix-hero__mark,
.home-page .matrix-hero__preview,
.home-page .site-header {
  will-change: opacity, transform;
}

@media (max-width: 980px) {
  .home-page .project-matrix--hero {
    height: 150svh !important;
    min-height: 150svh !important;
  }

  .home-page .project-matrix--hero .project-matrix__shell {
    position: sticky !important;
    top: 0 !important;
    height: 100svh !important;
    min-height: 0 !important;
    padding-top: calc(var(--header) + 12px) !important;
    padding-bottom: 14px !important;
    overflow: hidden !important;
  }

  .home-page .matrix-hero__stage {
    align-self: center !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    height: auto;
  }

  .home-page .matrix-hero__mark {
    width: min(48vw, 250px) !important;
  }

  .home-page .matrix-hero__preview {
    width: min(100%, 620px) !important;
  }

  .home-page .matrix-hero__preview .project-matrix__media {
    aspect-ratio: 16 / 6.4 !important;
  }

  .home-page .matrix-hero__preview .project-matrix__copy {
    min-height: 0 !important;
    padding-top: 10px !important;
  }

  .home-page .matrix-hero__preview .project-matrix__copy > p:first-child {
    margin-bottom: 10px !important;
  }

  .home-page .matrix-hero__preview .project-matrix__copy h3 {
    font-size: clamp(25px, 5.4vw, 38px) !important;
  }

  .home-page .matrix-hero__preview .project-matrix__view {
    margin-top: 5px !important;
  }

  .home-page .matrix-hero__preview .project-matrix__meta {
    margin-top: 9px !important;
  }

  .home-page .matrix-hero__preview .project-matrix__link {
    margin-top: 10px !important;
  }
}

@media (max-width: 620px) {
  .home-page .project-matrix--hero {
    height: 142svh !important;
    min-height: 142svh !important;
  }

  .home-page .matrix-hero__mark {
    width: min(50vw, 210px) !important;
  }

  .home-page .matrix-hero__preview .project-matrix__media {
    aspect-ratio: 16 / 6 !important;
  }

  .home-page .matrix-hero__preview .project-matrix__copy {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    grid-template-areas:
      "category category"
      "title link"
      "view link"
      "meta meta" !important;
    column-gap: 14px !important;
  }

  .home-page .matrix-hero__preview .project-matrix__link {
    justify-self: end !important;
    align-self: end !important;
    margin-top: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: auto !important;
    min-height: 100svh !important;
  }

  .home-page .intro {
    display: none !important;
  }

  .home-page .matrix-hero__mark,
  .home-page .matrix-hero__preview,
  .home-page .matrix-hero__replay,
  .home-page .site-header {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-page .project-matrix__hotspots,
  .home-page .matrix-hero__replay,
  .home-page .matrix-hero__preview a,
  .home-page .site-header {
    pointer-events: auto !important;
  }
}

/* Old intro layers carried their own opaque black background. The scroll fade
   belongs to the parent only, otherwise the interface appears in one abrupt cut. */
.home-page .intro__stage,
.home-page .intro__matrix-shell {
  background: transparent !important;
}

.home-page .matrix-hero__replay {
  transform: none !important;
}

.home-page .project-matrix--hero {
  height: 260svh !important;
  min-height: 260svh !important;
}

/* The central black identity reverses into a light/transparent matrix. */
.home-page .intro__official-matrix {
  filter: invert(var(--intro-invert, 0));
  will-change: filter;
}

/* The destination is the transparent tonal glyph grid, not another black square. */
.home-page .matrix-hero__mark {
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.home-page .matrix-hero__mark > img {
  inset: 10% !important;
  width: 80% !important;
  height: 80% !important;
  filter: invert(1);
  opacity: .96 !important;
}

.home-page .project-matrix__hotspots {
  inset: 10% !important;
}

/* A restrained white field appears only while the identity is becoming the matrix. */
.home-page .matrix-hero__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(17,17,15,.08);
  opacity: var(--intro-matrix-opacity);
  pointer-events: none;
}

@media (max-width: 980px) {
  .home-page .project-matrix--hero {
    height: 205svh !important;
    min-height: 205svh !important;
  }
}

@media (max-width: 620px) {
  .home-page .project-matrix--hero {
    height: 178svh !important;
    min-height: 178svh !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: auto !important;
    min-height: 100svh !important;
  }
}

/* The protection area remains as layout space, not a visible square. */
.home-page .intro__official-matrix .intro__matrix-bg,
.home-page .intro__square {
  display: none !important;
  fill: transparent !important;
  opacity: 0 !important;
}

.home-page .matrix-hero__mark,
.home-page .project-matrix__mark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-page .matrix-hero__mark::before,
.home-page .matrix-hero__mark::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  border: 0 !important;
}

/* Preserve the approved invisible safety zone around the 6 × 6 glyph field. */
.home-page .matrix-hero__mark > img,
.home-page .project-matrix__hotspots {
  inset: 10% !important;
}

/* Restore the interaction geometry in dark tones on the light matrix. */
.home-page .project-matrix__hotspots::before {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(17,17,15,.25),
    transparent
  ) !important;
}

.home-page .project-matrix__hotspots::after {
  background: linear-gradient(
    to right,
    transparent,
    rgba(17,17,15,.25),
    transparent
  ) !important;
}

.home-page .project-matrix__cell::before {
  background: rgba(17,17,15,0) !important;
}

.home-page .project-matrix__cell:hover::before,
.home-page .project-matrix__cell:focus-visible::before,
.home-page .project-matrix__cell.is-active::before {
  border-color: rgba(17,17,15,.34) !important;
  background: rgba(17,17,15,.035) !important;
}

.home-page .project-matrix__cell:hover > span,
.home-page .project-matrix__cell:focus-visible > span,
.home-page .project-matrix__cell.is-active > span {
  color: rgba(17,17,15,.48) !important;
}

.home-page .project-matrix__cell:focus-visible {
  outline-color: rgba(17,17,15,.76) !important;
}

.home-page .project-matrix--hero {
  height: 330svh !important;
  min-height: 330svh !important;
}

@media (max-width: 980px) {
  .home-page .project-matrix--hero {
    height: 265svh !important;
    min-height: 265svh !important;
  }
}

@media (max-width: 620px) {
  .home-page .project-matrix--hero {
    height: 225svh !important;
    min-height: 225svh !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: auto !important;
    min-height: 100svh !important;
  }
}

/* Internal returns are identified before first paint, preventing a black intro flash. */
html.identity-skip-load,
html.identity-skip-load body {
  background: #ebe9e3 !important;
}

html.identity-skip-load .home-page {
  --intro-intro-opacity: 0;
  --intro-intro-bg-opacity: 0;
  --intro-matrix-opacity: 1;
  --intro-preview-opacity: 1;
  --intro-header-opacity: 1;
}

html.identity-skip-load .home-page .intro {
  display: none !important;
  visibility: hidden !important;
}

html.identity-skip-load .home-page .site-header,
html.identity-skip-load .home-page .matrix-hero__mark,
html.identity-skip-load .home-page .matrix-hero__preview,
html.identity-skip-load .home-page .matrix-hero__replay {
  opacity: 1 !important;
  transform: none !important;
}

/* Once completed, the identity becomes a normal one-viewport homepage hero. */
.home-page.identity-locked .project-matrix--hero,
html.identity-skip-load .home-page .project-matrix--hero {
  height: 100svh !important;
  min-height: 100svh !important;
}

.home-page.identity-locked .intro {
  display: none !important;
  visibility: hidden !important;
}

.home-page.identity-locked .site-header,
.home-page.identity-locked .matrix-hero__mark,
.home-page.identity-locked .matrix-hero__preview,
.home-page.identity-locked .matrix-hero__replay {
  opacity: 1 !important;
  transform: none !important;
}

.home-page.identity-locked .site-header,
.home-page.identity-locked .project-matrix__hotspots,
.home-page.identity-locked .matrix-hero__replay,
.home-page.identity-locked .matrix-hero__preview a,
html.identity-skip-load .home-page .site-header,
html.identity-skip-load .home-page .project-matrix__hotspots,
html.identity-skip-load .home-page .matrix-hero__replay,
html.identity-skip-load .home-page .matrix-hero__preview a {
  pointer-events: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: 100svh !important;
    min-height: 100svh !important;
  }
}

.home-page .site-header {
  background: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    opacity .55s ease,
    transform .55s var(--ease),
    color .16s linear,
    border-color .16s linear !important;
}

/* Header over the completed light matrix hero. */
.home-page .site-header.is-over-hero {
  color: #11110f;
  background: transparent !important;
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-page .site-header.is-over-hero .digital-wordmark img {
  filter: invert(1);
}

.home-page .site-header.is-over-hero .site-nav > a:not(.nav-cta) {
  color: rgba(17,17,15,.68);
}

.home-page .site-header.is-over-hero .site-nav > a:not(.nav-cta):hover {
  color: #11110f;
}

.home-page .site-header.is-over-hero .nav-cta {
  color: #11110f;
  border-color: rgba(17,17,15,.34);
}

.home-page .site-header.is-over-hero .nav-cta:hover {
  color: #f4f4f0;
  background: #11110f;
}

.home-page .site-header.is-over-hero .menu-toggle span {
  background: #11110f;
}

/* Dark header begins only after leaving the hero. The background itself
   switches without interpolation, preventing the accidental grey frame. */
.home-page .site-header:not(.is-over-hero) {
  color: #f3f3f0;
  background: rgba(8,8,8,.96) !important;
  border-color: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.home-page .site-header:not(.is-over-hero) .digital-wordmark img {
  filter: none;
}

.home-page .site-header:not(.is-over-hero) .site-nav > a:not(.nav-cta) {
  color: rgba(255,255,255,.72);
}

.home-page .site-header:not(.is-over-hero) .site-nav > a:not(.nav-cta):hover {
  color: #fff;
}

.home-page .site-header:not(.is-over-hero) .nav-cta {
  color: #f3f3f0;
  border-color: rgba(255,255,255,.35);
}

.home-page .site-header:not(.is-over-hero) .nav-cta:hover {
  color: #080808;
  background: #fff;
}

.home-page .site-header:not(.is-over-hero) .menu-toggle span {
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .site-header {
    transition: none !important;
  }
}

/* During the few milliseconds before identity geometry is measured, keep the
   glyph composition hidden rather than rendering it at a stale legacy position. */
html.identity-booting .home-page .intro__composition {
  opacity: 0 !important;
}

/* Header surfaces switch discretely. Opacity remains controlled by the identity. */
.home-page .site-header {
  transition:
    color .12s linear,
    border-color .12s linear !important;
}

/* Once the completed matrix has been scrolled slightly, the header becomes the
   standard dark site header while still inside the hero. */
.home-page .site-header.is-matrix-scrolled {
  color: #f3f3f0;
  background: rgba(8,8,8,.96) !important;
  border-color: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.home-page .site-header.is-matrix-scrolled .digital-wordmark img {
  filter: none !important;
}

.home-page .site-header.is-matrix-scrolled .site-nav > a:not(.nav-cta) {
  color: rgba(255,255,255,.72) !important;
}

.home-page .site-header.is-matrix-scrolled .site-nav > a:not(.nav-cta):hover {
  color: #fff !important;
}

.home-page .site-header.is-matrix-scrolled .nav-cta {
  color: #f3f3f0 !important;
  border-color: rgba(255,255,255,.35) !important;
}

.home-page .site-header.is-matrix-scrolled .nav-cta:hover {
  color: #080808 !important;
  background: #fff !important;
}

.home-page .site-header.is-matrix-scrolled .menu-toggle span {
  background: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  html.identity-booting .home-page .intro__composition {
    opacity: 1 !important;
  }
}

html.identity-booting .home-page .intro__composition {
  opacity: 1 !important;
}

.home-page .intro__composition,
.home-page .intro__glyph,
.home-page .intro__official-matrix,
.home-page .intro__official-matrix * {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html.identity-booting .home-page .intro {
    display: none !important;
  }
}

.home-page .project-matrix--hero {
  height: 202svh !important;
  min-height: 202svh !important;
}

/* Restore the original long-range automatic glyph entry until ARCHITECTS is
   fully visible. Start from a visible edge state, never an empty black frame. */
.home-page.identity-auto-playing .intro__glyph {
  opacity: .22 !important;
  transform: translate(var(--entry-x, 0px), var(--entry-y, 0px)) !important;
  transform-box: view-box !important;
  transform-origin: center !important;
  transition:
    transform 2.34s cubic-bezier(.16,.68,.16,1),
    opacity .24s linear !important;
  transition-delay:
    var(--glyph-delay, 0s),
    var(--glyph-delay, 0s) !important;
  will-change: transform, opacity;
}

.home-page.identity-auto-playing .intro.phase-entry .intro__glyph,
.home-page.identity-auto-playing .intro.phase-settle .intro__glyph,
.home-page.identity-auto-playing .intro.phase-architects .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.home-page.identity-auto-playing .intro__architects {
  opacity: 0 !important;
  transform: translateY(5px) !important;
  filter: blur(.7px) !important;
  transition:
    opacity .86s ease,
    transform .92s cubic-bezier(.2,.72,.2,1),
    filter .7s ease !important;
}

.home-page.identity-auto-playing .intro.phase-architects .intro__architects {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

.home-page.identity-auto-playing .intro__scroll-cue {
  opacity: 0 !important;
}

/* Preserve the transparent safety zone throughout both chapters. */
.home-page.identity-auto-playing .intro__official-matrix .intro__matrix-bg,
.home-page.identity-auto-playing .intro__square {
  display: none !important;
  opacity: 0 !important;
  fill: transparent !important;
}

@media (max-width: 980px) {
  .home-page .project-matrix--hero {
    height: 173svh !important;
    min-height: 173svh !important;
  }
}

@media (max-width: 620px) {
  .home-page .project-matrix--hero {
    height: 155svh !important;
    min-height: 155svh !important;
  }

  .home-page.identity-auto-playing .intro__glyph {
    transition-duration: 2.08s, .22s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix--hero {
    height: 100svh !important;
    min-height: 100svh !important;
  }
}


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


/* Exact 6×6 illustration field: no outer canvas, panel or mismatched tone. */
.home-page .journey-services__visual,
.home-page .journey-process__visual,
.home-page .journey-service__image,
.home-page .journey-process__image,
.home-page .journey-process__mobile-image {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.home-page .journey-service__image picture,
.home-page .journey-process__image picture,
.home-page .journey-process__mobile-image picture,
.home-page .journey-service__image img,
.home-page .journey-process__image img,
.home-page .journey-process__mobile-image img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  filter: none !important;
}
.home-page .journey-service__image figcaption,
.home-page .journey-process__image figcaption { display: none !important; }

/* The carousel accepts horizontal swipe without stealing vertical scroll. */
.simple-carousel { touch-action: pan-y pinch-zoom; }
.simple-carousel.is-dragging { cursor: grabbing; }
.simple-carousel.is-dragging a { pointer-events: none; }

/* Space toolbar */
.space-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.space-view-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
}
.space-view-switcher button {
  min-height: 38px;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  color: #8f8f8f;
  font: inherit;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.space-view-switcher button:hover,
.space-view-switcher button:focus-visible,
.space-view-switcher button.is-active { background: #fff; color: #080808; }

/* Every grid image shares one axis, crop and visual footprint. */
.space-grid {
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  grid-auto-flow: row !important;
  align-items: start;
}
.space-grid:not(.is-list) .space-card,
.space-grid:not(.is-list) .space-card--wide,
.space-grid:not(.is-list) .space-card--portrait,
.space-grid:not(.is-list) .space-card--square,
.space-grid:not(.is-list) .space-card--aligned { grid-column: span 1 !important; }
.space-grid:not(.is-list) .space-card figure {
  width: 100%;
  aspect-ratio: 4 / 3 !important;
}
.space-grid:not(.is-list) .space-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.space-grid:not(.is-list) .space-card__meta { min-height: 72px; }

/* List view: compact, aligned and still image-led. */
.space-grid.is-list {
  display: block !important;
  border-top: 1px solid var(--line);
}
.space-grid.is-list .space-card[hidden] { display: none !important; }
.space-grid.is-list .space-card {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0,1fr);
  gap: clamp(22px,4vw,72px);
  align-items: center;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.space-grid.is-list .space-card figure {
  width: 100%;
  aspect-ratio: 3 / 2 !important;
}
.space-grid.is-list .space-card img { width:100%; height:100%; object-fit:cover; }
.space-grid.is-list .space-card__meta {
  grid-template-columns: minmax(160px,.7fr) minmax(0,1.3fr);
  align-items: center;
  padding: 0;
}

@media (max-width: 980px) {
  .space-toolbar { display: block; }
  .space-view-switcher { margin-top: 14px; }
  .space-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
}
@media (max-width: 680px) {
  .space-grid { grid-template-columns: 1fr !important; }
  .space-view-switcher { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .space-grid.is-list .space-card { grid-template-columns: 96px minmax(0,1fr); gap: 14px; padding: 13px 0; }
  .space-grid.is-list .space-card__meta { grid-template-columns: 1fr; gap: 8px; }
  .space-grid.is-list .space-card__meta small { margin-bottom: 2px; }
}


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


.home-page .journey-contact--home {
  position: relative;
  display: grid;
  min-height: 100svh !important;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
  color: #fff;
  border: 0;
}

.home-page .journey-contact--home .journey-contact__media,
.home-page .journey-contact--home .journey-contact__media img,
.home-page .journey-contact--home .journey-contact__media > span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.home-page .journey-contact--home .journey-contact__media {
  z-index: 0;
  overflow: hidden;
  background: #080808;
}

.home-page .journey-contact--home .journey-contact__media img {
  object-fit: cover;
  object-position: center 52%;
  filter: grayscale(.28) saturate(.62) brightness(.54);
  transform: scale(1.035);
}

.home-page .journey-contact--home .journey-contact__media > span {
  display: block !important;
  background:
    linear-gradient(90deg, rgba(5,5,5,.88) 0%, rgba(5,5,5,.66) 39%, rgba(5,5,5,.27) 72%, rgba(5,5,5,.18) 100%),
    linear-gradient(to top, rgba(5,5,5,.68) 0%, rgba(5,5,5,.12) 58%, rgba(5,5,5,.18) 100%);
}

.home-page .journey-contact--home .journey-contact__copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--journey-max));
  max-width: none;
  margin: auto;
  padding: clamp(112px, 12vh, 160px) var(--journey-gutter) clamp(96px, 11vh, 148px);
}

.home-page .journey-contact--home .journey-index {
  margin: 0 0 clamp(24px, 3vw, 42px);
  color: rgba(255,255,255,.62);
}

.home-page .journey-contact--home h2 {
  max-width: 1120px;
  margin: 0 0 clamp(28px, 3vw, 42px);
  font-size: clamp(64px, 8.6vw, 138px);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .86;
  text-wrap: balance;
}

.home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
  max-width: 620px;
  margin: 0 0 clamp(34px, 4vw, 50px);
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
}

.home-page .journey-contact--home .journey-contact__actions {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 60px);
}

.home-page .journey-contact--home .journey-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.62);
  color: #fff;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, gap .35s var(--ease);
}

.home-page .journey-contact--home .journey-button:hover,
.home-page .journey-contact--home .journey-button:focus-visible {
  gap: 30px;
  color: #080808;
  background: #fff;
}

.home-page .journey-contact--home .journey-contact__actions > a:last-child {
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

.home-page .journey-contact--home a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Let the photographic contact section close before the footer begins. */
.home-page + .site-footer,
.home-page .site-footer {
  border-top: 0;
}

@media (max-width: 980px) {
  .home-page .journey-contact--home {
    min-height: max(760px, 100svh) !important;
  }

  .home-page .journey-contact--home .journey-contact__media img {
    object-position: 61% center;
  }

  .home-page .journey-contact--home .journey-contact__media > span {
    background:
      linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.48) 78%, rgba(5,5,5,.28)),
      linear-gradient(to top, rgba(5,5,5,.76), rgba(5,5,5,.16) 68%);
  }

  .home-page .journey-contact--home h2 {
    max-width: 850px;
    font-size: clamp(58px, 10.5vw, 92px);
  }
}

@media (max-width: 680px) {
  .home-page .journey-contact--home {
    min-height: max(720px, 100svh) !important;
    align-items: end;
  }

  .home-page .journey-contact--home .journey-contact__media img {
    object-position: 66% center;
    transform: scale(1.02);
  }

  .home-page .journey-contact--home .journey-contact__copy {
    padding-top: 118px;
    padding-bottom: 74px;
  }

  .home-page .journey-contact--home h2 {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: clamp(44px, 13vw, 62px);
    line-height: .94;
  }

  .home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
    max-width: 520px;
    margin-bottom: 34px;
    font-size: 15px;
  }

  .home-page .journey-contact--home .journey-contact__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .journey-contact--home .journey-button {
    transition: none;
  }
}


.home-page .journey-contact--home {
  min-height: clamp(430px, 55svh, 510px) !important;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

.home-page .journey-contact--home .journey-contact__media,
.home-page .journey-contact--home .journey-contact__media img,
.home-page .journey-contact--home .journey-contact__media > span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.home-page .journey-contact--home .journey-contact__media img {
  object-fit: cover;
  object-position: center center;
  filter: grayscale(.08) saturate(.86) brightness(.72);
  transform: scale(1.035);
}

.home-page .journey-contact--home .journey-contact__media > span {
  display: block !important;
  background:
    linear-gradient(90deg, rgba(5,5,5,.68), rgba(5,5,5,.22) 58%, rgba(5,5,5,.08)),
    linear-gradient(to top, rgba(5,5,5,.4), transparent 58%);
}

.home-page .journey-contact--home .journey-contact__copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--journey-max));
  max-width: 840px;
  margin: auto;
  padding: clamp(30px, 3.5vw, 48px) var(--journey-gutter);
}

.home-page .journey-contact--home .journey-index {
  margin: 0 0 18px;
  color: rgba(255,255,255,.62);
}

.home-page .journey-contact--home h2 {
  max-width: 700px;
  margin: 18px 0 24px;
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .88;
  text-wrap: balance;
}

.home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.58;
}

.home-page .journey-contact--home .journey-contact__actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.home-page .journey-contact--home .journey-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.58);
  color: #fff;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-page .journey-contact--home .journey-contact__actions > a:last-child {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

@media (max-width: 760px) {
  .home-page .journey-contact--home {
    min-height: 520px !important;
    align-items: center;
  }

  .home-page .journey-contact--home .journey-contact__media img {
    object-position: 62% center;
    transform: scale(1.035);
  }

  .home-page .journey-contact--home .journey-contact__copy {
    max-width: 840px;
    padding-top: clamp(30px, 3.5vw, 48px);
    padding-bottom: clamp(30px, 3.5vw, 48px);
  }

  .home-page .journey-contact--home h2 {
    max-width: 700px;
    margin: 18px 0 24px;
    font-size: clamp(44px, 5.3vw, 76px);
    line-height: .88;
  }

  .home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .home-page .journey-contact--home .journey-contact__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* The illustration pixels are displayed unchanged. */
.morphd-illustration__image,
.journey-service__image img,
.journey-process__image img,
.journey-process__mobile-image img,
.services-hero-mosaic--illustrations img,
.process-phase__media--illustration img,
.studio-hero-illustration img,
.contact-page__media--illustration img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  transition: none !important;
}

/* No overlays, masks, gradients or side fades. */
.journey-service__image::before,
.journey-service__image::after,
.journey-process__image::before,
.journey-process__image::after,
.services-hero-mosaic--illustrations figure::before,
.services-hero-mosaic--illustrations figure::after,
.process-phase__media--illustration::before,
.process-phase__media--illustration::after,
.studio-hero-illustration::before,
.studio-hero-illustration::after,
.contact-page__media--illustration::before,
.contact-page__media--illustration::after {
  display: none !important;
  content: none !important;
}

/* Homepage Services: one full black illustration, switching instantly. */
.journey-services__visual {
  display: block !important;
  width: min(100%, 760px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  background: #080808 !important;
  overflow: hidden !important;
}
.journey-service__image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  opacity: 0 !important;
  transform: none !important;
  transition: none !important;
  background: #080808 !important;
}
.journey-service__image.is-active {
  opacity: 1 !important;
}

/* Homepage Process: one full white illustration, switching instantly. */
.journey-process__visual {
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
  width: min(100%, 760px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  background: #f4f2ec !important;
  overflow: hidden !important;
}
.journey-process__image,
.journey-process__image.is-active {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  transform: none !important;
  transition: none !important;
  background: #f4f2ec !important;
}
.journey-process__image {
  opacity: 0 !important;
}
.journey-process__image.is-active {
  opacity: 1 !important;
}
.journey-process__mobile-image {
  background: #f4f2ec !important;
}

/* Preserve all captions as plain text, without gradient treatment. */
.journey-service__image figcaption,
.journey-process__image figcaption,
.services-hero-mosaic--illustrations figcaption {
  background: transparent !important;
  background-image: none !important;
  filter: none !important;
}

/* Services page: exact black tiles fill their existing modules. */
.services-hero-mosaic--illustrations,
.services-hero-mosaic--illustrations figure,
.services-hero-mosaic--illustrations .services-hero-mosaic__link {
  background: #080808 !important;
}

/* Process stage illustrations: exact white files, full width, no framing. */
.process-phase__media--illustration {
  padding: 0 !important;
  background: #f4f2ec !important;
  overflow: hidden !important;
}
.process-phase__media--illustration picture {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}
.process-phase__media--illustration img {
  height: auto !important;
}
.process-phase__media--illustration figcaption {
  position: static !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Studio and Contact: use the package ratio variants at full available width. */
.studio-hero-illustration,
.contact-page__media--illustration {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: #080808 !important;
}
.studio-hero-illustration picture,
.contact-page__media--illustration picture,
.studio-hero-illustration img,
.contact-page__media--illustration img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
}

@media (max-width: 680px) {
  .journey-services__visual,
  .journey-process__visual {
    width: 100% !important;
  }
}


/* Stable page geometry retained after removing the legacy illustration treatment stylesheets. */
.services-hero-mosaic--illustrations {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  height: auto !important;
  gap: 1px !important;
}
.services-hero-mosaic--illustrations figure,
.services-hero-mosaic--illustrations .services-hero-mosaic__link {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
}
.studio-hero-illustration figcaption {
  display: block !important;
  position: static !important;
  padding-top: 10px !important;
  background: transparent !important;
}
@media (max-width: 980px) {
  .services-hero-mosaic--illustrations {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }
}


/* Homepage Services: the source file is square. Render its box as square too,
   so object-fit does not add dark side bands that resemble a fade. */
@media (min-width: 981px) {
  body.home-page.visual-audit.production-audit .journey-services__visual {
    width: min(100%, 653px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    align-self: start !important;
    overflow: hidden !important;
    background: #080808 !important;
  }

  body.home-page.visual-audit.production-audit .journey-service__image,
  body.home-page.visual-audit.production-audit .journey-service__image picture,
  body.home-page.visual-audit.production-audit .journey-service__image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* Remove any legacy decoration from both Services presentations. */
body.home-page .journey-services__visual::before,
body.home-page .journey-services__visual::after,
body.home-page .journey-service__image::before,
body.home-page .journey-service__image::after,
body.content-page .services-hero-mosaic--illustrations::before,
body.content-page .services-hero-mosaic--illustrations::after,
body.content-page .services-hero-mosaic--illustrations figure::before,
body.content-page .services-hero-mosaic--illustrations figure::after,
body.content-page .services-hero-mosaic--illustrations .services-hero-mosaic__link::before,
body.content-page .services-hero-mosaic--illustrations .services-hero-mosaic__link::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

body.content-page .services-hero-mosaic--illustrations img,
body.home-page .journey-service__image img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  mask: none !important;
  -webkit-mask: none !important;
  clip-path: none !important;
}

/* Process page: use one equal two-column grid for all four illustration stages.
   Reverse changes order only, never media width. */
@media (min-width: 981px) {
  body.content-page .process-phase,
  body.content-page .process-phase.process-phase--options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.content-page .process-phase__media--illustration {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 1 / 1 !important;
  }

  body.content-page .process-phase__media--illustration picture,
  body.content-page .process-phase__media--illustration img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}


/* 07 / Client feedback -------------------------------------------------- */
.home-page .editorial-testimonials {
  padding-top: clamp(48px, 5vw, 68px) !important;
}

.home-page .editorial-testimonials__top {
  gap: clamp(28px, 4vw, 58px) !important;
  padding-bottom: clamp(28px, 3.4vw, 44px) !important;
}

.home-page .editorial-testimonials__top h2 {
  margin: 12px 0 16px !important;
  font-size: clamp(36px, 3.7vw, 54px) !important;
  line-height: 1 !important;
}

.home-page .editorial-testimonials__stage {
  padding-bottom: clamp(36px, 4vw, 54px) !important;
}

.home-page .editorial-testimonial {
  height: clamp(340px, 32vw, 390px) !important;
  min-height: 0 !important;
}

.home-page .editorial-testimonial figure {
  height: 100% !important;
  min-height: 0 !important;
}

.home-page .editorial-testimonial__quote {
  min-height: 0 !important;
  padding: clamp(28px, 4vw, 54px) !important;
}

.home-page .editorial-testimonial__quote > span {
  font-size: 42px !important;
}

.home-page .editorial-testimonial blockquote {
  margin: 22px 0 26px !important;
  font-size: clamp(23px, 2.15vw, 32px) !important;
  line-height: 1.34 !important;
}

.home-page .editorial-testimonial footer {
  padding-top: 16px !important;
}

/* 08 / Contact ---------------------------------------------------------- */
.home-page .journey-contact--home {
  min-height: clamp(390px, 43svh, 430px) !important;
}

.home-page .journey-contact--home .journey-contact__copy {
  max-width: 780px !important;
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

.home-page .journey-contact--home .journey-index {
  margin-bottom: 12px !important;
}

.home-page .journey-contact--home h2 {
  max-width: 660px !important;
  margin: 12px 0 18px !important;
  font-size: clamp(38px, 4.3vw, 60px) !important;
  line-height: .91 !important;
}

.home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
  max-width: 600px !important;
  margin-bottom: 22px !important;
}

.home-page .journey-contact--home .journey-button {
  padding: 13px 18px !important;
}

/* Footer --------------------------------------------------------------- */
.home-page .site-footer {
  padding-top: 22px !important;
  padding-bottom: 18px !important;
  grid-template-columns: 72px minmax(280px, 1fr) minmax(210px, .56fr) auto !important;
  gap: clamp(18px, 2.5vw, 36px) !important;
  min-height: 0 !important;
}

.home-page .footer-logo {
  display: block !important;
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  overflow: hidden !important;
}

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

.home-page .footer-links {
  gap: 4px 16px !important;
}

@media (max-width: 900px) {
  .home-page .editorial-testimonials__top {
    gap: 22px !important;
  }

  .home-page .editorial-testimonial {
    height: auto !important;
  }

  .home-page .editorial-testimonial figure {
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .home-page .editorial-testimonial__quote {
    padding: 28px 0 !important;
  }
}

@media (max-width: 760px) {
  .home-page .editorial-testimonials {
    padding-top: 46px !important;
  }

  .home-page .editorial-testimonials__top {
    padding-bottom: 26px !important;
  }

  .home-page .editorial-testimonials__top h2 {
    font-size: clamp(34px, 10vw, 42px) !important;
  }

  .home-page .editorial-testimonials__intro {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .home-page .editorial-testimonials__stage {
    padding-bottom: 34px !important;
  }

  .home-page .editorial-testimonial blockquote {
    margin: 18px 0 22px !important;
    font-size: 20px !important;
    line-height: 1.38 !important;
  }

  .home-page .editorial-testimonials__index {
    padding-top: 12px !important;
  }

  .home-page .journey-contact--home {
    min-height: 440px !important;
  }

  .home-page .journey-contact--home .journey-contact__copy {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .home-page .journey-contact--home h2 {
    margin: 10px 0 16px !important;
    font-size: clamp(36px, 10.8vw, 46px) !important;
    line-height: .94 !important;
  }

  .home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
    margin-bottom: 20px !important;
    font-size: 13px !important;
  }

  .home-page .journey-contact--home .journey-contact__actions {
    gap: 16px !important;
  }

  .home-page .site-footer {
    padding-top: 22px !important;
    padding-bottom: max(18px, env(safe-area-inset-bottom)) !important;
    gap: 14px !important;
    grid-template-columns: 1fr !important;
  }

  .home-page .footer-logo {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
  }

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

/* Final compact calibration after rendered desktop/mobile review. */
@media (min-width: 901px) {
  .home-page .editorial-testimonials {
    padding-top: 56px !important;
  }

  .home-page .editorial-testimonials__top {
    padding-bottom: 34px !important;
  }

  .home-page .editorial-testimonial {
    height: 360px !important;
  }

  .home-page .editorial-testimonials__stage {
    padding-bottom: 42px !important;
  }

  .home-page .journey-contact--home {
    min-height: 400px !important;
  }
}

@media (max-width: 760px) {
  .home-page .editorial-testimonials {
    padding-top: 40px !important;
  }

  .home-page .editorial-testimonials__top {
    gap: 16px !important;
    padding-bottom: 20px !important;
  }

  .home-page .editorial-testimonials__top h2 {
    margin-top: 10px !important;
    margin-bottom: 12px !important;
    font-size: 30px !important;
    line-height: 1.02 !important;
  }

  .home-page .editorial-testimonials__top h2 br {
    display: none !important;
  }

  .home-page .editorial-testimonials__intro p {
    margin-bottom: 3px !important;
  }

  .home-page .editorial-testimonials__stage {
    padding-bottom: 26px !important;
  }

  .home-page .editorial-testimonial figure {
    aspect-ratio: 2 / 1 !important;
  }

  .home-page .editorial-testimonial__quote {
    padding: 20px 0 !important;
  }

  .home-page .editorial-testimonial__quote > span {
    font-size: 32px !important;
  }

  .home-page .editorial-testimonial blockquote {
    margin: 12px 0 16px !important;
    font-size: 18px !important;
    line-height: 1.36 !important;
  }

  .home-page .editorial-testimonial footer {
    padding-top: 12px !important;
  }

  .home-page .editorial-testimonials__index {
    padding-top: 8px !important;
  }

  .home-page .journey-contact--home {
    min-height: 410px !important;
  }

  .home-page .journey-contact--home h2 {
    font-size: clamp(34px, 10vw, 42px) !important;
  }

  .home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }

  .home-page .site-footer {
    padding-top: 18px !important;
    padding-bottom: max(16px, env(safe-area-inset-bottom)) !important;
    gap: 10px !important;
  }

  .home-page .footer-logo {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
  }

  .home-page .footer-links a,
  .home-page .footer-contact a {
    min-height: 24px !important;
  }
}
@media (max-width: 760px) {
  .home-page .editorial-testimonial__quote {
    overflow: visible !important;
  }
}


/* Client feedback → Contact */
.home-page .journey-contact--home {
  margin-top: 72px !important;
}

/* Contact → Footer */
.home-page .site-footer {
  margin-top: 40px !important;
}

@media (max-width: 900px) {
  .home-page .journey-contact--home {
    margin-top: 56px !important;
  }

  .home-page .site-footer {
    margin-top: 34px !important;
  }
}

@media (max-width: 760px) {
  .home-page .journey-contact--home {
    margin-top: 48px !important;
  }

  .home-page .site-footer {
    margin-top: 28px !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;
  }
}


/* Process → Client feedback */
.home-page .editorial-testimonials {
  margin-top: 72px !important;
}

/* Client feedback → Contact */
.home-page .journey-contact--home {
  margin-top: 80px !important;
}

/* Contact → Footer */
.home-page .site-footer {
  margin-top: 48px !important;
}

@media (max-width: 900px) {
  .home-page .editorial-testimonials {
    margin-top: 56px !important;
  }

  .home-page .journey-contact--home {
    margin-top: 64px !important;
  }

  .home-page .site-footer {
    margin-top: 40px !important;
  }
}

@media (max-width: 760px) {
  .home-page .editorial-testimonials {
    margin-top: 44px !important;
  }

  .home-page .journey-contact--home {
    margin-top: 52px !important;
  }

  .home-page .site-footer {
    margin-top: 32px !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;
  }
}


:root {
  --home-lower-title-measure: 760px;
}

/* Equal title hierarchy for Process, Client feedback and Contact. */
.home-page #processTitle,
.home-page #testimonialsTitle,
.home-page #homeContactTitle {
  width: auto !important;
  max-width: var(--home-lower-title-measure) !important;
  margin: 0 !important;
  font-size: var(--morphd-title-section) !important;
  font-weight: 400 !important;
  line-height: var(--morphd-leading-section) !important;
  letter-spacing: -.04em !important;
  text-transform: none !important;
  text-wrap: balance;
}

/* Equal label-to-title spacing. */
.home-page .journey-process .journey-index,
.home-page .editorial-testimonials__top .journey-index,
.home-page .journey-contact--home .journey-index {
  margin: 0 0 var(--morphd-label-title-gap) !important;
}

/* Keep the testimonial title block on the same left datum and measure as 05. */
.home-page .editorial-testimonials__top > div:first-child {
  width: 100%;
  max-width: var(--home-lower-title-measure);
}

/* Contact keeps its image-led composition, but its content starts from the
   same journey-shell gutter as Process and Client feedback. */
.home-page .journey-contact--home .journey-contact__copy {
  width: min(100%, var(--journey-max)) !important;
  max-width: var(--journey-max) !important;
  margin-inline: auto !important;
  padding-inline: var(--journey-gutter) !important;
}

.home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
  margin-top: var(--morphd-title-copy-gap) !important;
}

@media (max-width: 760px) {
  :root {
    --home-lower-title-measure: none;
  }

  .home-page #processTitle,
  .home-page #testimonialsTitle,
  .home-page #homeContactTitle {
    max-width: none !important;
  }
}


/* ==============================================================
   Desktop: retain the active-image interaction, remove excess dwell
   ============================================================== */
@media (min-width: 1001px) {
  body.home-page .journey-services,
  body.home-page .journey-process {
    padding-top: clamp(58px, 5.2vw, 76px) !important;
    padding-bottom: clamp(66px, 5.8vw, 88px) !important;
  }

  body.home-page .journey-services .journey-section-head,
  body.home-page .journey-process .journey-section-head {
    margin-bottom: clamp(28px, 2.8vw, 38px) !important;
  }

  body.home-page .journey-services__layout,
  body.home-page .journey-process__layout {
    gap: clamp(38px, 4.5vw, 66px) !important;
  }

  body.home-page .journey-services__list {
    display: grid !important;
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
    align-self: start !important;
    min-height: 0 !important;
  }

  body.home-page .journey-service__row {
    min-height: 92px !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    grid-template-columns: 38px minmax(138px, .62fr) minmax(190px, 1fr) 18px !important;
    gap: 14px !important;
  }

  body.home-page .journey-service__row:hover,
  body.home-page .journey-service__row:focus-visible,
  body.home-page .journey-service__row.is-active {
    padding-left: 8px !important;
  }

  body.home-page .journey-service__description {
    max-width: 340px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  body.home-page.home-page.visual-audit.production-audit .journey-services__visual,
  body.home-page .journey-process__visual {
    width: min(100%, 560px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    top: calc(var(--header) + 20px) !important;
    align-self: start !important;
  }

  body.home-page .journey-process__steps {
    align-self: start !important;
  }

  body.home-page .journey-process__step {
    min-height: 132px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  body.home-page .journey-process__step > span {
    margin-bottom: 10px !important;
  }

  body.home-page .journey-process__step h3 {
    margin-bottom: 10px !important;
  }

  body.home-page .journey-process__step p {
    max-width: 430px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  body.home-page .journey-process__steps > .journey-text-link {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
  }

  body.home-page .journey-process__rail {
    bottom: 44px !important;
  }
}

/* ==============================================================
   Tablet: compact split Capabilities + two-column Process preview
   ============================================================== */
@media (min-width: 681px) and (max-width: 1000px) {
  body.home-page .journey-services,
  body.home-page .journey-process {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }

  body.home-page .journey-services .journey-section-head,
  body.home-page .journey-process .journey-section-head {
    margin-bottom: 30px !important;
  }

  body.home-page .journey-services__sticky,
  body.home-page .journey-process__sticky {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.home-page .journey-services__layout {
    grid-template-columns: minmax(250px, .9fr) minmax(280px, 1.1fr) !important;
    gap: 30px !important;
    align-items: center !important;
  }

  body.home-page .journey-services__list {
    align-self: center !important;
  }

  body.home-page .journey-service__row {
    min-height: 64px !important;
    padding: 10px 0 !important;
    grid-template-columns: 28px minmax(0, 1fr) 16px !important;
    gap: 10px !important;
  }

  body.home-page .journey-service__description {
    display: none !important;
  }

  body.home-page .journey-service__name {
    font-size: clamp(16px, 2.15vw, 20px) !important;
  }

  body.home-page .journey-service__arrow {
    grid-column: 3 !important;
  }

  body.home-page .journey-services__visual {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 1px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 3 / 2 !important;
    position: relative !important;
    top: auto !important;
    background: #1b1b1b !important;
  }

  body.home-page .journey-service__image,
  body.home-page .journey-service__image.is-active {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    opacity: 1 !important;
    margin: 0 !important;
  }

  body.home-page .journey-service__image figcaption {
    display: none !important;
  }

  body.home-page .journey-process__layout {
    display: block !important;
  }

  body.home-page .journey-process__visual,
  body.home-page .journey-process__rail {
    display: none !important;
  }

  body.home-page .journey-process__steps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 30px !important;
    row-gap: 0 !important;
    border-top: 0 !important;
  }

  body.home-page .journey-process__step {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    grid-template-rows: auto auto 1fr !important;
    column-gap: 16px !important;
    align-content: start !important;
    min-height: 156px !important;
    padding: 18px 0 !important;
    color: #f2f2ef !important;
    border-top: 1px solid var(--line-soft) !important;
    border-bottom: 0 !important;
  }

  body.home-page .journey-process__mobile-image {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    width: 92px !important;
    height: 92px !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1 !important;
    align-self: start !important;
    overflow: hidden !important;
  }

  body.home-page .journey-process__step > span,
  body.home-page .journey-process__step h3,
  body.home-page .journey-process__step p {
    grid-column: 2 !important;
  }

  body.home-page .journey-process__step > span {
    margin: 0 0 6px !important;
  }

  body.home-page .journey-process__step h3 {
    margin: 0 0 8px !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  body.home-page .journey-process__step p {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  body.home-page .journey-process__steps > .journey-text-link {
    grid-column: 1 / -1 !important;
    margin-top: 22px !important;
  }
}

/* ==============================================================
   Mobile: two-column capability index + compact process rows
   ============================================================== */
@media (max-width: 680px) {
  body.home-page .journey-services,
  body.home-page .journey-process {
    padding-top: 50px !important;
    padding-bottom: 56px !important;
  }

  body.home-page .journey-services .journey-section-head,
  body.home-page .journey-process .journey-section-head {
    margin-bottom: 26px !important;
  }

  body.home-page .journey-services__sticky,
  body.home-page .journey-process__sticky {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.home-page .journey-services__layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.home-page .journey-services__list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 18px !important;
    border-top: 0 !important;
  }

  body.home-page .journey-service__row {
    min-height: 68px !important;
    padding: 10px 0 !important;
    grid-template-columns: 22px minmax(0, 1fr) 14px !important;
    gap: 7px !important;
    border-top: 1px solid var(--line-soft) !important;
    border-bottom: 0 !important;
    color: rgba(244,244,240,.82) !important;
  }

  body.home-page .journey-service__row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft) !important;
  }

  body.home-page .journey-service__row:hover,
  body.home-page .journey-service__row:focus-visible,
  body.home-page .journey-service__row.is-active {
    padding-left: 0 !important;
  }

  body.home-page .journey-service__description {
    display: none !important;
  }

  body.home-page .journey-service__name {
    font-size: 15px !important;
    line-height: 1.12 !important;
  }

  body.home-page .journey-service__number {
    font-size: 7px !important;
  }

  body.home-page .journey-service__arrow {
    grid-column: 3 !important;
  }

  body.home-page .journey-services__visual {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 1px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 3 / 2 !important;
    position: relative !important;
    top: auto !important;
    background: #1b1b1b !important;
  }

  body.home-page .journey-service__image,
  body.home-page .journey-service__image.is-active {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    opacity: 1 !important;
    margin: 0 !important;
  }

  body.home-page .journey-service__image figcaption {
    display: none !important;
  }

  body.home-page .journey-process__layout {
    display: block !important;
  }

  body.home-page .journey-process__visual,
  body.home-page .journey-process__rail {
    display: none !important;
  }

  body.home-page .journey-process__steps {
    display: block !important;
    border-top: 1px solid var(--line-soft) !important;
  }

  body.home-page .journey-process__step {
    display: grid !important;
    grid-template-columns: 84px minmax(0, 1fr) !important;
    grid-template-rows: auto auto 1fr !important;
    column-gap: 16px !important;
    align-content: start !important;
    min-height: 132px !important;
    padding: 16px 0 !important;
    color: #f2f2ef !important;
  }

  body.home-page .journey-process__mobile-image {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    width: 84px !important;
    height: 84px !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1 !important;
    align-self: start !important;
    overflow: hidden !important;
  }

  body.home-page .journey-process__step > span,
  body.home-page .journey-process__step h3,
  body.home-page .journey-process__step p {
    grid-column: 2 !important;
  }

  body.home-page .journey-process__step > span {
    margin: 0 0 5px !important;
  }

  body.home-page .journey-process__step h3 {
    margin: 0 0 7px !important;
    font-size: 23px !important;
    line-height: 1 !important;
  }

  body.home-page .journey-process__step p {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.42 !important;
  }

  body.home-page .journey-process__steps > .journey-text-link {
    margin-top: 20px !important;
  }
}


/* ==============================================================
   Process — compact, left-aligned preview rather than a full-width chapter
   ============================================================== */
@media (min-width: 1001px) {
  body.home-page .journey-process {
    height: auto !important;
  }

  body.home-page .journey-process__sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding-top: clamp(58px, 5.2vw, 76px) !important;
    padding-bottom: clamp(66px, 5.8vw, 88px) !important;
  }

  body.home-page .journey-process .journey-section-head {
    margin-bottom: clamp(28px, 2.8vw, 38px) !important;
  }

  body.home-page .journey-process__layout {
    width: min(100%, 1040px) !important;
    max-width: 1040px !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    grid-template-columns: minmax(0, 520px) minmax(0, 440px) !important;
    gap: clamp(36px, 3.5vw, 52px) !important;
    align-items: start !important;
  }

  body.home-page .journey-process__steps {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    align-self: start !important;
  }

  body.home-page .journey-process__step {
    flex: 0 0 auto !important;
    min-height: 104px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  body.home-page .journey-process__step h3 {
    margin-bottom: 7px !important;
  }

  body.home-page .journey-process__step p {
    max-width: 410px !important;
    font-size: 11.5px !important;
    line-height: 1.48 !important;
  }

  body.home-page .journey-process__visual {
    position: relative !important;
    top: auto !important;
    width: 440px !important;
    max-width: 100% !important;
    height: 440px !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    align-self: start !important;
  }

  body.home-page .journey-process__steps > .journey-text-link {
    margin-top: 18px !important;
  }

  body.home-page .journey-process__rail {
    bottom: 38px !important;
  }
}

/* ==============================================================
   Contact — inset photographic panel, aligned to the same title datum
   ============================================================== */
body.home-page .journey-contact--home {
  --home-contact-content-left: max(
    var(--journey-gutter),
    calc((100vw - var(--journey-max)) / 2 + var(--journey-gutter))
  );
  --home-contact-panel-overhang: clamp(12px, 2vw, 28px);
  --home-contact-panel-left: max(
    12px,
    calc(var(--home-contact-content-left) - var(--home-contact-panel-overhang))
  );

  width: min(
    1280px,
    calc(100% - var(--home-contact-panel-left) - var(--home-contact-content-left))
  ) !important;
  margin-left: var(--home-contact-panel-left) !important;
  margin-right: auto !important;
  min-height: 400px !important;
}

body.home-page .journey-contact--home .journey-contact__copy {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: var(--home-contact-panel-overhang) !important;
  padding-right: clamp(28px, 5vw, 72px) !important;
}

@media (min-width: 681px) and (max-width: 1000px) {
  body.home-page .journey-process__layout {
    max-width: 780px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  body.home-page .journey-contact--home {
    width: calc(100% - var(--home-contact-panel-left) - var(--home-contact-content-left)) !important;
    min-height: 400px !important;
  }
}

@media (max-width: 680px) {
  body.home-page .journey-process {
    padding-top: 46px !important;
    padding-bottom: 50px !important;
  }

  body.home-page .journey-process .journey-section-head {
    margin-bottom: 22px !important;
  }

  body.home-page .journey-process__step {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    min-height: 116px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  body.home-page .journey-process__mobile-image {
    width: 74px !important;
    height: 74px !important;
  }

  body.home-page .journey-process__step h3 {
    font-size: 21px !important;
  }

  body.home-page .journey-process__step p {
    font-size: 10.5px !important;
    line-height: 1.4 !important;
  }

  body.home-page .journey-contact--home {
    --home-contact-panel-overhang: 10px;
    width: calc(100% - var(--home-contact-panel-left) - var(--home-contact-content-left)) !important;
    min-height: 410px !important;
  }

  body.home-page .journey-contact--home .journey-contact__copy {
    padding-right: 22px !important;
  }
}

/* Final cascade calibration against legacy audit selectors. */
@media (min-width: 1001px) {
  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__layout {
    width: min(100%, 1040px) !important;
    max-width: 1040px !important;
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: minmax(0, 520px) minmax(0, 440px) !important;
    gap: clamp(36px, 3.5vw, 52px) !important;
    align-items: start !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__steps {
    height: auto !important;
    min-height: 0 !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__step {
    flex: 0 0 auto !important;
    min-height: 104px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__visual,
  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__image {
    top: auto !important;
    width: 440px !important;
    max-width: 100% !important;
    height: 440px !important;
    min-height: 0 !important;
    max-height: 440px !important;
  }
}

/* Final visual calibration after rendered measurement. */
body.home-page .journey-process {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (min-width: 1001px) {
  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__layout {
    width: min(100%, 960px) !important;
    max-width: 960px !important;
    grid-template-columns: minmax(0, 500px) minmax(0, 400px) !important;
    gap: 40px !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__visual,
  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__image {
    width: 400px !important;
    height: 400px !important;
    max-height: 400px !important;
  }
}

body.home-page .journey-contact--home {
  width: min(
    1180px,
    calc(100% - var(--home-contact-panel-left) - var(--home-contact-content-left))
  ) !important;
}

@media (max-width: 1000px) {
  body.home-page .journey-contact--home {
    width: calc(100% - var(--home-contact-panel-left) - var(--home-contact-content-left)) !important;
  }
}

/* Keep the Process heading inside the same compact preview measure. */
@media (min-width: 681px) {
  body.home-page .journey-process .journey-section-head {
    display: block !important;
    width: min(100%, 960px) !important;
    max-width: 960px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  body.home-page .journey-process .journey-section-head > p {
    max-width: 520px !important;
    margin-top: 18px !important;
  }
}

@media (max-width: 1000px) {
  body.home-page .journey-process__step {
    color: rgba(17,17,15,.52) !important;
  }

  body.home-page .journey-process__step.is-active {
    color: #11110f !important;
  }

  body.home-page .journey-process__step h3,
  body.home-page .journey-process__step p,
  body.home-page .journey-process__step > span {
    color: inherit !important;
  }
}


/* ==============================================================
   Process — same sizing principle as Capabilities
   ============================================================== */
@media (min-width: 1001px) {
  body.home-page .journey-process {
    padding-top: clamp(58px, 5.2vw, 76px) !important;
    padding-bottom: clamp(66px, 5.8vw, 88px) !important;
  }

  body.home-page .journey-process__sticky {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.home-page .journey-process .journey-section-head {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: clamp(28px, 2.8vw, 38px) !important;
  }

  body.home-page .journey-process .journey-section-head > p {
    max-width: 520px !important;
    margin-top: 0 !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__layout,
  body.home-page .journey-process__layout {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 560px) !important;
    gap: clamp(38px, 4.5vw, 66px) !important;
    align-items: start !important;
  }

  body.home-page .journey-process__steps {
    display: grid !important;
    grid-template-rows: repeat(4, minmax(0, 1fr)) auto !important;
    width: 100% !important;
    min-height: 560px !important;
    align-self: start !important;
    border-top: 1px solid var(--line) !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__step,
  body.home-page .journey-process__step {
    display: grid !important;
    grid-template-columns: 38px minmax(150px, .52fr) minmax(220px, 1fr) !important;
    align-items: center !important;
    column-gap: 14px !important;
    min-height: 0 !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    outline: none !important;
  }

  body.home-page .journey-process__step > span {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    align-self: start !important;
    padding-top: 6px !important;
  }

  body.home-page .journey-process__step h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: clamp(27px, 2.45vw, 38px) !important;
    line-height: 1 !important;
  }

  body.home-page .journey-process__step p {
    grid-column: 3 !important;
    grid-row: 1 !important;
    max-width: 360px !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  body.home-page .journey-process__step:hover,
  body.home-page .journey-process__step:focus-visible,
  body.home-page .journey-process__step.is-active {
    color: #11110f !important;
  }

  body.home-page .journey-process__steps > .journey-text-link {
    align-self: end !important;
    margin: 18px 0 0 38px !important;
  }

  body.home-page .journey-process__rail {
    display: none !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__visual,
  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__image,
  body.home-page .journey-process__visual {
    position: relative !important;
    top: auto !important;
    width: min(100%, 560px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    align-self: start !important;
    justify-self: end !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__image {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
  }
}

/* ==============================================================
   Contact — reuse the site's split contact template
   ============================================================== */
body.home-page .journey-contact--home {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr) !important;
  gap: clamp(46px, 7vw, 104px) !important;
  align-items: center !important;
  width: min(100%, var(--journey-max)) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: clamp(72px, 7vw, 96px) var(--journey-gutter) !important;
  overflow: visible !important;
  isolation: auto !important;
  background: transparent !important;
  color: #11110f !important;
}

body.home-page .journey-contact--home .journey-contact__copy {
  position: static !important;
  z-index: auto !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: center !important;
}

body.home-page .journey-contact--home .journey-contact__media {
  position: relative !important;
  inset: auto !important;
  z-index: auto !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  aspect-ratio: 8 / 5 !important;
  overflow: hidden !important;
  background: #080808 !important;
}

body.home-page .journey-contact--home .journey-contact__media picture,
body.home-page .journey-contact--home .journey-contact__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  transform: none !important;
}

body.home-page .journey-contact--home .journey-index {
  margin: 0 0 18px !important;
  color: #777773 !important;
}

body.home-page .journey-contact--home h2 {
  max-width: 760px !important;
  margin: 0 0 24px !important;
  color: #11110f !important;
  font-size: 54px !important;
  line-height: .96 !important;
  letter-spacing: -.052em !important;
}

body.home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
  max-width: 520px !important;
  margin: 0 0 30px !important;
  color: #666660 !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}

body.home-page .journey-contact--home .journey-contact__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 18px 30px !important;
}

body.home-page .journey-contact--home .journey-button {
  color: #11110f !important;
  border-color: rgba(17,17,15,.46) !important;
  background: transparent !important;
}

body.home-page .journey-contact--home .journey-button:hover,
body.home-page .journey-contact--home .journey-button:focus-visible {
  color: #f4f2ec !important;
  background: #11110f !important;
}

body.home-page .journey-contact--home .journey-contact__actions > a:last-child {
  color: #666660 !important;
  border-bottom: 1px solid rgba(17,17,15,.28) !important;
}

/* Tablet retains the same two-part template with a calmer image ratio. */
@media (min-width: 681px) and (max-width: 1000px) {
  body.home-page .journey-process__layout {
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr) !important;
    gap: 30px !important;
    align-items: center !important;
  }

  body.home-page .journey-process__visual {
    display: block !important;
    width: 100% !important;
    max-width: 460px !important;
    aspect-ratio: 1 / 1 !important;
    justify-self: end !important;
  }

  body.home-page .journey-process__image,
  body.home-page .journey-process__image.is-active {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
  }

  body.home-page .journey-process__image.is-active {
    opacity: 1 !important;
  }

  body.home-page .journey-process__steps {
    display: block !important;
  }

  body.home-page .journey-process__step {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 12px !important;
    min-height: 88px !important;
    padding: 12px 0 !important;
  }

  body.home-page .journey-process__mobile-image {
    display: none !important;
  }

  body.home-page .journey-process__step > span {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
  }

  body.home-page .journey-process__step h3,
  body.home-page .journey-process__step p {
    grid-column: 2 !important;
  }

  body.home-page .journey-process__step h3 {
    font-size: 23px !important;
  }

  body.home-page .journey-process__step p {
    font-size: 10.5px !important;
  }

  body.home-page .journey-process__steps > .journey-text-link {
    margin-left: 28px !important;
  }

  body.home-page .journey-contact--home {
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr) !important;
    gap: 34px !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  body.home-page .journey-contact--home h2 {
    font-size: 44px !important;
  }
}

/* Mobile: retain the existing compact Process rows and stack the approved
   contact split as copy followed by authored image. */
@media (max-width: 680px) {
  body.home-page .journey-contact--home {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    width: 100% !important;
    padding: 58px var(--journey-gutter) !important;
  }

  body.home-page .journey-contact--home .journey-contact__copy,
  body.home-page .journey-contact--home .journey-contact__media {
    grid-column: 1 !important;
  }

  body.home-page .journey-contact--home .journey-contact__copy {
    grid-row: 1 !important;
    max-width: none !important;
  }

  body.home-page .journey-contact--home .journey-contact__media {
    grid-row: 2 !important;
    aspect-ratio: 1 / 1 !important;
  }

  body.home-page .journey-contact--home h2 {
    margin-bottom: 20px !important;
    font-size: 35px !important;
    line-height: .98 !important;
  }

  body.home-page .journey-contact--home .journey-contact__copy > p:not(.journey-index) {
    margin-bottom: 26px !important;
    font-size: 13px !important;
  }

  body.home-page .journey-contact--home .journey-contact__actions {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 18px !important;
  }
}

/* The homepage body is dark between chapters; the split Contact template owns
   its light field so black copy and the dark authored illustration remain legible. */
body.home-page .journey-contact--home {
  background: #f2f0ea !important;
  border-top: 1px solid rgba(17,17,15,.08) !important;
}

/* Keep the four authored Process files layered inside the shared square,
   exactly as the Capabilities images are layered inside their visual field. */
@media (min-width: 1001px) {
  body.home-page.home-page.visual-audit.home-page.production-audit .journey-process__image,
  body.home-page .journey-process__image,
  body.home-page .journey-process__image.is-active {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
  }

  body.home-page .journey-process__image {
    opacity: 0 !important;
  }

  body.home-page .journey-process__image.is-active {
    opacity: 1 !important;
  }
}


/* Never apply low-resolution rendering shortcuts to the authored line work. */
body.home-page #services .morphd-illustration__image,
body.home-page #process .morphd-illustration__image,
body.home-page #contact .morphd-illustration__image {
  image-rendering: auto !important;
  backface-visibility: visible !important;
  will-change: auto !important;
  transform: none !important;
  filter: none !important;
}

/* Transparent lossless masters sit on the same approved fields as before. */
body.home-page #services .journey-services__visual,
body.home-page #services .journey-service__image {
  background: #080808 !important;
}

body.home-page #process .journey-process__visual,
body.home-page #process .journey-process__image,
body.home-page #process .journey-process__mobile-image {
  background: #f4f2ec !important;
}

body.home-page #contact .journey-contact__media {
  background: #080808 !important;
}

@media (min-width: 1001px) {
  body.home-page #process.journey-process {
    padding-top: clamp(76px, 6vw, 88px) !important;
    padding-bottom: clamp(84px, 6.6vw, 98px) !important;
  }

  body.home-page #process .journey-section-head {
    margin-bottom: clamp(38px, 3.2vw, 46px) !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit #process .journey-process__layout,
  body.home-page #process .journey-process__layout {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 580px) !important;
    gap: clamp(54px, 5.2vw, 76px) !important;
    min-height: 580px !important;
    align-items: start !important;
  }

  body.home-page #process .journey-process__steps {
    display: grid !important;
    grid-template-rows: repeat(4, 128px) 48px !important;
    width: 100% !important;
    height: 580px !important;
    min-height: 580px !important;
    align-self: start !important;
    border-top: 1px solid var(--line) !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit #process .journey-process__step,
  body.home-page #process .journey-process__step {
    display: grid !important;
    grid-template-columns: 40px minmax(170px, .62fr) minmax(240px, 1fr) !important;
    align-items: center !important;
    column-gap: 18px !important;
    min-height: 128px !important;
    padding: 22px 0 !important;
  }

  body.home-page #process .journey-process__step > span {
    padding-top: 5px !important;
  }

  body.home-page #process .journey-process__step h3 {
    font-size: clamp(29px, 2.3vw, 35px) !important;
    line-height: 1.02 !important;
  }

  body.home-page #process .journey-process__step p {
    max-width: 390px !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  body.home-page #process .journey-process__steps > .journey-text-link {
    align-self: end !important;
    margin: 0 0 2px 40px !important;
  }

  body.home-page.home-page.visual-audit.home-page.production-audit #process .journey-process__visual,
  body.home-page #process .journey-process__visual {
    width: min(100%, 580px) !important;
    height: 580px !important;
    min-height: 580px !important;
    aspect-ratio: 1 / 1 !important;
  }
}

/* Tablet: retain the split preview but remove the cramped 88px stages. */
@media (min-width: 681px) and (max-width: 1000px) {
  body.home-page #process.journey-process {
    padding-top: 66px !important;
    padding-bottom: 74px !important;
  }

  body.home-page #process .journey-section-head {
    margin-bottom: 36px !important;
  }

  body.home-page #process .journey-process__layout {
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr) !important;
    gap: 38px !important;
    align-items: center !important;
  }

  body.home-page #process .journey-process__visual {
    max-width: 470px !important;
  }

  body.home-page #process .journey-process__step {
    min-height: 104px !important;
    padding: 16px 0 !important;
    column-gap: 14px !important;
  }

  body.home-page #process .journey-process__step h3 {
    margin-bottom: 8px !important;
    font-size: 25px !important;
  }

  body.home-page #process .journey-process__step p {
    max-width: 330px !important;
    font-size: 11.5px !important;
    line-height: 1.5 !important;
  }
}

/* Mobile: preserve the compact preview, but enlarge the authored image and
   increase row rhythm enough for the text to read without feeling compressed. */
@media (max-width: 680px) {
  body.home-page #services .journey-services__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    aspect-ratio: 2 / 3 !important;
  }

  body.home-page #process.journey-process {
    padding-top: 58px !important;
    padding-bottom: 66px !important;
  }

  body.home-page #process .journey-section-head {
    margin-bottom: 32px !important;
  }

  body.home-page #process .journey-process__step {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    column-gap: 18px !important;
    min-height: 152px !important;
    padding: 20px 0 !important;
  }

  body.home-page #process .journey-process__mobile-image {
    width: 96px !important;
    height: 96px !important;
  }

  body.home-page #process .journey-process__step h3 {
    margin-bottom: 9px !important;
    font-size: 24px !important;
  }

  body.home-page #process .journey-process__step p {
    font-size: 11.5px !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 680px) {
  body.home-page #process .journey-process__step > span {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
  }

  body.home-page #process .journey-process__step h3 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 0 9px !important;
  }

  body.home-page #process .journey-process__step p {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }
}


body.home-page #services .journey-services__visual,
body.home-page #services .journey-service__image,
body.home-page #process .journey-process__visual,
body.home-page #process .journey-process__image,
body.home-page #process .journey-process__mobile-image,
body.home-page #contact .journey-contact__media {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  mask: none !important;
  -webkit-mask: none !important;
  clip-path: none !important;
}

body.home-page #services .journey-service__image::before,
body.home-page #services .journey-service__image::after,
body.home-page #process .journey-process__image::before,
body.home-page #process .journey-process__image::after,
body.home-page #process .journey-process__mobile-image::before,
body.home-page #process .journey-process__mobile-image::after,
body.home-page #contact .journey-contact__media::before,
body.home-page #contact .journey-contact__media::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

body.home-page #services .morphd-illustration,
body.home-page #process .morphd-illustration,
body.home-page #contact .morphd-illustration,
body.home-page #services .morphd-illustration__image,
body.home-page #process .morphd-illustration__image,
body.home-page #contact .morphd-illustration__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  mix-blend-mode: normal !important;
  mask: none !important;
  -webkit-mask: none !important;
  clip-path: none !important;
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto !important;
  backface-visibility: visible !important;
  will-change: auto !important;
}

/* Active-state switching remains instant. It changes which complete authored file
   is displayed, never the appearance of the file itself. */
body.home-page #services .journey-service__image,
body.home-page #process .journey-process__image {
  transition: none !important;
  transform: none !important;
}

body.home-page #services .journey-service__image:not(.is-active),
body.home-page #process .journey-process__image:not(.is-active) {
  opacity: 0 !important;
}

body.home-page #services .journey-service__image.is-active,
body.home-page #process .journey-process__image.is-active {
  opacity: 1 !important;
}


body.home-page #contact.journey-contact--home {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: max(
    var(--journey-gutter),
    calc((100vw - var(--journey-max)) / 2 + var(--journey-gutter))
  ) !important;
  padding-right: max(
    var(--journey-gutter),
    calc((100vw - var(--journey-max)) / 2 + var(--journey-gutter))
  ) !important;
  background: #fff !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* Preserve the existing contact typography and split grid. */
body.home-page #contact .journey-contact__copy,
body.home-page #contact .journey-contact__media {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* The artwork is a finished authored file. No visual treatment. */
body.home-page #contact .journey-contact__media,
body.home-page #contact .morphd-illustration,
body.home-page #contact .morphd-illustration__image {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  mix-blend-mode: normal !important;
  mask: none !important;
  -webkit-mask: none !important;
  clip-path: none !important;
}

@media (max-width: 680px) {
  body.home-page #contact.journey-contact--home {
    width: 100% !important;
    padding-left: var(--journey-gutter) !important;
    padding-right: var(--journey-gutter) !important;
  }
}


body.home-page #contact.journey-contact--home {
  background: #f4f3ec !important;
}


body.home-page #client-feedback.editorial-testimonials {
  margin-top: 0 !important;
  padding-top: 56px !important;
  border-top: 0 !important;
}

body.home-page #client-feedback .editorial-testimonials__stage {
  padding-bottom: 56px !important;
}

/* The small underline was a legacy decorative rule and has no current job. */
body.home-page #client-feedback .editorial-testimonials__rule {
  display: none !important;
}

@media (max-width: 900px) {
  body.home-page #client-feedback.editorial-testimonials {
    margin-top: 0 !important;
    padding-top: 48px !important;
  }

  body.home-page #client-feedback .editorial-testimonials__stage {
    padding-bottom: 48px !important;
  }
}

@media (max-width: 760px) {
  body.home-page #client-feedback.editorial-testimonials {
    padding-top: 40px !important;
  }

  body.home-page #client-feedback .editorial-testimonials__stage {
    padding-bottom: 40px !important;
  }
}


/* Studio opening -------------------------------------------------------- */
body.content-page .page-hero--studio .page-hero__media,
body.content-page .page-hero--studio .studio-hero-illustration {
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  justify-self: center !important;
  align-self: center !important;
  margin-inline: auto !important;
  background: transparent !important;
  overflow: visible !important;
}

body.content-page .page-hero--studio .page-hero__media picture,
body.content-page .page-hero--studio .page-hero__media img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Homepage Process ------------------------------------------------------ */
body.home-page #process,
body.home-page .journey-process,
body.home-page .journey-process__visual,
body.home-page .journey-process__image,
body.home-page .journey-process__mobile-image,
body.home-page #process .morphd-illustration,
body.home-page #process .morphd-illustration__image,
body.home-page #process .journey-process__visual,
body.home-page #process .journey-process__image,
body.home-page #process .journey-process__mobile-image,
body.home-page #process .morphd-illustration,
body.home-page #process .morphd-illustration__image {
  background: #f4f3ec !important;
  background-image: none !important;
}

/* Keep the image field clean. */
body.home-page #process .journey-process__image::before,
body.home-page #process .journey-process__image::after,
body.home-page #process .journey-process__image::before,
body.home-page #process .journey-process__image::after {
  display: none !important;
  content: none !important;
}


:root {
  --home-index-row-h: 104px;
  --home-index-number-size: 8px;
  --home-index-title-size: clamp(20px, 1.55vw, 24px);
  --home-index-copy-size: 11px;
  --home-index-transition: 160ms cubic-bezier(.22,.61,.36,1);
}

@media (min-width: 1001px) {
  body.home-page #services .journey-services__list,
  body.home-page #process .journey-process__steps {
    display: grid !important;
    grid-template-rows: repeat(5, var(--home-index-row-h)) auto !important;
    align-self: start !important;
    border-top: 1px solid currentColor !important;
  }

  body.home-page #services .journey-services__list {
    color: rgba(255,255,255,.16) !important;
  }
  body.home-page #process .journey-process__steps {
    color: rgba(17,17,15,.16) !important;
  }

  body.home-page .journey-nav-item,
  body.home-page #services .journey-service__row,
  body.home-page #process .journey-process__step {
    display: grid !important;
    grid-template-columns: 38px minmax(150px,.62fr) minmax(210px,1fr) !important;
    gap: 14px !important;
    align-items: center !important;
    min-height: var(--home-index-row-h) !important;
    height: var(--home-index-row-h) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    transform: none !important;
    transition: color var(--home-index-transition), opacity var(--home-index-transition) !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  body.home-page #services .journey-service__row { color: rgba(244,244,240,.46) !important; }
  body.home-page #process .journey-process__step { color: rgba(17,17,15,.42) !important; }

  body.home-page #services .journey-service__row:hover,
  body.home-page #services .journey-service__row:focus-visible,
  body.home-page #services .journey-service__row.is-active { color: #f4f4f0 !important; }

  body.home-page #process .journey-process__step:hover,
  body.home-page #process .journey-process__step:focus-visible,
  body.home-page #process .journey-process__step.is-active { color: #11110f !important; }

  body.home-page #services .journey-service__number,
  body.home-page #process .journey-process__step > span {
    grid-column: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: var(--home-index-number-size) !important;
    line-height: 1 !important;
    letter-spacing: .14em !important;
    color: currentColor !important;
  }

  body.home-page #services .journey-service__name,
  body.home-page #process .journey-process__step h3 {
    grid-column: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: var(--home-index-title-size) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
    color: currentColor !important;
  }

  body.home-page #services .journey-service__description,
  body.home-page #process .journey-process__step p {
    grid-column: 3 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 340px !important;
    font-size: var(--home-index-copy-size) !important;
    line-height: 1.45 !important;
    color: currentColor !important;
  }

  /* No arrows / side icons / progress rail. */
  body.home-page #services .journey-service__arrow,
  body.home-page #process .journey-process__rail {
    display: none !important;
  }

  /* Same visual-switch timing, with no image transform or treatment. */
  body.home-page #services .journey-service__image,
  body.home-page #process .journey-process__image {
    opacity: 0 !important;
    transform: none !important;
    transition: opacity var(--home-index-transition) !important;
  }
  body.home-page #services .journey-service__image.is-active,
  body.home-page #process .journey-process__image.is-active {
    opacity: 1 !important;
  }

  body.home-page #services .journey-services__visual,
  body.home-page #process .journey-process__visual {
    width: min(100%, 580px) !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    align-self: start !important;
  }

  body.home-page #services .journey-services__layout,
  body.home-page #process .journey-process__layout {
    grid-template-columns: minmax(0,1fr) minmax(440px,580px) !important;
    gap: clamp(44px,5vw,72px) !important;
    align-items: start !important;
  }

  body.home-page #services .journey-text-link,
  body.home-page #process .journey-text-link {
    margin-top: 20px !important;
  }
}

/* Tablet/mobile: same row language, same type hierarchy, no arrow/icon column. */
@media (max-width: 1000px) {
  body.home-page #services .journey-service__arrow,
  body.home-page #process .journey-process__rail { display:none !important; }

  body.home-page #services .journey-service__row,
  body.home-page #process .journey-process__step {
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
    transition: color var(--home-index-transition), opacity var(--home-index-transition) !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  body.home-page #services .journey-service__name,
  body.home-page #process .journey-process__step h3 {
    font-size: 20px !important;
    line-height: 1.05 !important;
    font-weight: 400 !important;
    letter-spacing: -.025em !important;
  }
}

@media (max-width: 680px) {
  body.home-page #services .journey-services__list {
    grid-template-columns: 1fr !important;
    border-top: 1px solid rgba(255,255,255,.16) !important;
  }
  body.home-page #services .journey-service__row,
  body.home-page #process .journey-process__step {
    min-height: 94px !important;
    height: auto !important;
    padding: 14px 0 !important;
  }
}


@media (min-width: 1001px) {
  body.home-page #services.journey-services {
    padding-top: 52px !important;
    padding-bottom: 56px !important;
  }

  body.home-page #services .journey-section-head {
    margin-bottom: 30px !important;
  }

  /* Five rows = 5 × 104 = 520px; illustration = 580px.
     -30px centers the illustration exactly against the five-row text block. */
  body.home-page #services .journey-services__visual {
    margin-top: -30px !important;
    align-self: start !important;
  }
}

@media (min-width: 681px) and (max-width: 1000px) {
  body.home-page #services.journey-services {
    padding-top: 50px !important;
    padding-bottom: 54px !important;
  }

  body.home-page #services .journey-section-head {
    margin-bottom: 28px !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; }
}


.study-project-links {
  margin: 44px 0 54px;
  padding: 22px 0 0;
  border-top: 1px solid var(--study-line);
}
.study-project-links > p {
  margin: 0 0 15px;
  color: var(--study-muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.study-project-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  border-top: 1px solid var(--study-line);
}
.study-project-links__grid a {
  min-height: 112px;
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--study-line) !important;
  border-bottom: 0 !important;
}
.study-project-links__grid a + a { padding-left: 20px; }
.study-project-links__grid a:last-child { border-right: 0 !important; }
.study-project-links__grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.study-project-links__grid span {
  display: block;
  color: var(--study-muted);
  font-size: 11px;
  line-height: 1.5;
}

.study-copy .study-figure--wide { margin-inline: min(-5vw, -36px); }
.study-copy .study-figure--wide img { width: 100%; }

@media (max-width: 760px) {
  .study-project-links__grid { grid-template-columns: 1fr; }
  .study-project-links__grid a,
  .study-project-links__grid a + a {
    min-height: 0;
    padding: 16px 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--study-line) !important;
  }
  .study-project-links__grid a:last-child { border-bottom: 0 !important; }
  .study-copy .study-figure--wide { margin-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; }
}

/* Homepage interaction + responsive consolidation. */
.home-page .intro__descriptor{width:max-content!important;max-width:min(82vw,460px)!important;color:#f4f3ec!important;font-family:"Montserrat","Inter",Arial,sans-serif!important;font-size:clamp(10px,1vw,13px)!important;font-weight:600!important;line-height:1!important;letter-spacing:.20em!important;text-transform:none!important;white-space:nowrap!important}
.home-page #services .journey-section-head,.home-page #process .journey-section-head,.home-page .home-studies__head,.home-page .editorial-testimonials__top{grid-template-columns:minmax(0,1fr)!important}
.home-page #services .journey-section-head>div,.home-page #process .journey-section-head>div,.home-page .home-studies__head>div,.home-page .editorial-testimonials__top>div:first-child{max-width:820px!important}
.home-page #services .journey-services__layout,.home-page #process .journey-process__layout{display:grid!important;grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr)!important;gap:clamp(48px,6vw,88px)!important;align-items:center!important}
.home-page #services .journey-services__list,.home-page #process .journey-process__steps{border-top:1px solid currentColor!important}
.home-page #services .journey-service__row,.home-page #process .journey-process__step{display:grid!important;grid-template-columns:minmax(150px,.48fr) minmax(0,1fr)!important;gap:clamp(20px,2.2vw,34px)!important;align-items:center!important;min-height:92px!important;padding:18px 0!important;border:0!important;border-bottom:1px solid currentColor!important;background:transparent!important;transform:none!important;box-shadow:none!important;text-decoration:none!important;transition:color 360ms var(--ease),opacity 360ms var(--ease)!important}
.home-page #services .journey-service__row{color:rgba(244,243,236,.46)!important;border-color:rgba(255,255,255,.18)!important}.home-page #services .journey-service__row:is(:hover,:focus-visible,.is-active){color:#f4f3ec!important}
.home-page #process .journey-process__step{color:rgba(17,17,15,.42)!important;border-color:rgba(17,17,15,.17)!important}.home-page #process .journey-process__step:is(:hover,:focus-visible,.is-active){color:#11110f!important}
.home-page #services .journey-service__name,.home-page #process .journey-process__step h3{margin:0!important;font-size:clamp(19px,1.55vw,23px)!important;font-weight:400!important;line-height:1.12!important;letter-spacing:-.025em!important;color:inherit!important}
.home-page #services .journey-service__description,.home-page #process .journey-process__step p{margin:0!important;max-width:46ch!important;color:inherit!important;font-size:12px!important;line-height:1.55!important;opacity:.82!important}
.home-page #services .journey-service__number,.home-page #process .journey-process__step>span,.home-page #process .journey-process__rail,.home-page #process .journey-process__mobile-image{display:none!important}
.home-page #services .journey-service__image,.home-page #process .journey-process__image{opacity:0!important;transition:opacity 420ms cubic-bezier(.2,.72,.2,1)!important}.home-page #services .journey-service__image.is-active,.home-page #process .journey-process__image.is-active{opacity:1!important}
.home-page #services .journey-services__visual,.home-page #process .journey-process__visual{position:relative!important;top:auto!important;width:min(100%,580px)!important;height:auto!important;min-height:0!important;aspect-ratio:1/1!important;align-self:center!important;justify-self:center!important;overflow:hidden!important}.home-page #services .journey-services__visual{background:#080808!important}.home-page #process .journey-process__visual{background:#f4f3ec!important}.home-page #services .journey-service__image,.home-page #process .journey-process__image{position:absolute!important;inset:0!important}
.home-page .journey-services,.home-page .journey-process{padding-top:64px!important;padding-bottom:68px!important}.home-page .journey-services__sticky,.home-page .journey-process__sticky{min-height:0!important;position:static!important}.home-page #services .journey-section-head,.home-page #process .journey-section-head{margin-bottom:38px!important}
.home-page .simple-carousel__arrow{display:grid!important;place-items:center!important;width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;padding:0!important;border:1px solid rgba(255,255,255,.34)!important;background:rgba(8,8,8,.64)!important;color:#fff!important;backdrop-filter:blur(8px)}.home-page .simple-carousel__arrow .morphd-icon{width:20px!important;height:20px!important}.home-page .simple-carousel__arrow:is(:hover,:focus-visible){background:#f4f3ec!important;color:#080808!important}
.home-page .matrix-hero__preview .project-matrix__media{width:min(100%,560px)!important;aspect-ratio:1/1!important;justify-self:start!important}.home-page .matrix-hero__preview .project-matrix__copy{width:min(100%,560px)!important;padding-top:20px!important}.home-page .project-matrix__media-grid{display:none!important}
@media(max-width:900px){.home-page .journey-services,.home-page .journey-process{padding-top:52px!important;padding-bottom:58px!important}.home-page #services .journey-section-head,.home-page #process .journey-section-head{margin-bottom:26px!important}.home-page #services .journey-services__layout,.home-page #process .journey-process__layout{display:flex!important;flex-direction:column!important;gap:28px!important}.home-page #services .journey-services__visual,.home-page #process .journey-process__visual{order:1!important;position:relative!important;width:min(100%,520px)!important;max-width:520px!important}.home-page #services .journey-services__list,.home-page #process .journey-process__steps{order:2!important;width:100%!important}.home-page #services .journey-service__row,.home-page #process .journey-process__step{grid-template-columns:minmax(118px,.42fr) minmax(0,1fr)!important;min-height:74px!important;padding:14px 0!important}.home-page #services .journey-service__name,.home-page #process .journey-process__step h3{font-size:18px!important}.home-page #services .journey-service__description,.home-page #process .journey-process__step p{font-size:11px!important}.home-page .matrix-hero__preview .project-matrix__media,.home-page .matrix-hero__preview .project-matrix__copy{width:min(100%,620px)!important}}
@media(max-width:560px){.home-page .intro__descriptor{font-size:9px!important;letter-spacing:.16em!important}.home-page #services .journey-services__visual,.home-page #process .journey-process__visual{width:100%!important}.home-page #services .journey-service__row,.home-page #process .journey-process__step{grid-template-columns:minmax(102px,.4fr) minmax(0,1fr)!important;gap:16px!important}.home-page .simple-carousel__arrow{width:44px!important;height:44px!important;min-width:44px!important;min-height:44px!important}.home-page .matrix-hero__preview .project-matrix__media{width:100%!important}}
@media(prefers-reduced-motion:reduce){.home-page #services .journey-service__row,.home-page #process .journey-process__step,.home-page #services .journey-service__image,.home-page #process .journey-process__image{transition:none!important}}

/* Interaction and light-field refinement ---------------------------------- */
:root { --morphd-light: #f4f3ec; }

/* Intro descriptor is intentionally legible, but remains subordinate to the calligram. */
.home-page .intro__descriptor {
  max-width: min(86vw, 620px) !important;
  font-size: clamp(15px, 1.45vw, 21px) !important;
  letter-spacing: .14em !important;
}

/* Project matrix: square evidence is centred under the calligram field. */
.home-page .matrix-hero__preview .project-matrix__media,
.home-page .matrix-hero__preview .project-matrix__copy {
  justify-self: center !important;
  margin-inline: auto !important;
}
.home-page .matrix-hero__preview .project-matrix__media { width: min(100%, 540px) !important; }
.home-page .matrix-hero__preview .project-matrix__copy { width: min(100%, 540px) !important; }

/* Tiny glyph-field response: enough to feel alive without moving the hit grid. */
@keyframes morphd-glyph-field-shake {
  0%,100% { transform: translate3d(0,0,0); }
  24% { transform: translate3d(.55px,-.45px,0); }
  52% { transform: translate3d(-.6px,.35px,0); }
  76% { transform: translate3d(.35px,.5px,0); }
}
.home-page .project-matrix__mark.is-glyph-shaking > img {
  animation: morphd-glyph-field-shake 180ms linear 1 !important;
}
@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix__mark.is-glyph-shaking > img { animation: none !important; }
}

/* One exact authored light field. No near-whites around light illustrations. */
.home-page .project-matrix,
.home-page #process,
.home-page .journey-process,
.home-page #process .journey-process__visual,
.home-page #process .journey-process__image,
.home-page #process .morphd-illustration,
.home-page #process .morphd-illustration__image,
.home-page .home-studies,
.home-page #contact.journey-contact {
  background-color: var(--morphd-light) !important;
}

/* Carousel controls must be visible controls, not an archaeological rumour. */
.home-page .simple-carousel { position: relative !important; grid-template-columns: minmax(0,1fr) !important; padding-inline: 0 !important; }
.home-page .simple-carousel__stage { grid-column: 1 !important; }
.home-page .simple-carousel__arrow {
  position: absolute !important;
  top: clamp(170px,17vw,250px) !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  width: 48px !important;
  height: 48px !important;
  border-color: rgba(244,243,236,.68) !important;
  background: rgba(8,8,8,.88) !important;
  color: var(--morphd-light) !important;
}
.home-page .simple-carousel__arrow--prev { left: clamp(14px,2.5vw,38px) !important; }
.home-page .simple-carousel__arrow--next { right: clamp(14px,2.5vw,38px) !important; }
.home-page .simple-carousel__arrow .morphd-icon { display:block !important; width:22px !important; height:22px !important; overflow:visible !important; }
.home-page .simple-carousel__slide,
.home-page .simple-carousel__image { transition-duration: 620ms !important; }

/* Feedback is a quieter chapter title, not a second hero. */
.home-page #client-feedback .editorial-testimonials__top h2 {
  max-width: 14ch !important;
  font-size: clamp(34px,3.35vw,48px) !important;
  line-height: 1.02 !important;
}
.home-page #client-feedback .editorial-testimonials__top { padding-bottom: clamp(36px,4vw,54px) !important; }

@media (max-width: 760px) {
  .home-page .intro__descriptor { font-size: clamp(12px,3.6vw,15px) !important; letter-spacing:.12em !important; }
  .home-page .matrix-hero__preview .project-matrix__media,
  .home-page .matrix-hero__preview .project-matrix__copy { width: min(100%, 520px) !important; }
  .home-page .simple-carousel { display:block !important; padding-inline:0 !important; }
  .home-page .simple-carousel__arrow { top: min(38vw,215px) !important; width:44px !important; height:44px !important; }
  .home-page .simple-carousel__arrow--prev { left:12px !important; }
  .home-page .simple-carousel__arrow--next { right:12px !important; }
  .home-page #client-feedback .editorial-testimonials__top h2 { max-width:none !important; font-size:34px !important; }
}
@media (min-width: 761px) {
  .home-page .intro__descriptor { font-size: clamp(16px,1.7vw,24px) !important; }
}

/* Matrix interaction refinement: the field and preview remain fixed. Only the
   glyph inside the active 6×6 cell receives the requested micro-jitter. */
.home-page .project-matrix__mark.is-glyph-shaking > img {
  animation: none !important;
}
.home-page .project-matrix__jitter-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0,0,0) !important;
}
@keyframes morphd-local-glyph-jitter {
  0%,100% { opacity: 1; transform: translate3d(0,0,0); }
  25% { opacity: 1; transform: translate3d(.7px,-.45px,0); }
  52% { opacity: 1; transform: translate3d(-.65px,.35px,0); }
  76% { opacity: 1; transform: translate3d(.4px,.5px,0); }
}
.home-page .project-matrix__jitter-overlay.is-shaking {
  animation: morphd-local-glyph-jitter 180ms linear 1 !important;
}
.home-page .matrix-hero__preview .project-matrix__image,
.home-page .matrix-hero__preview .project-matrix__image.is-visible {
  transform: none !important;
}
.home-page .matrix-hero__preview .project-matrix__image {
  transition: opacity .64s cubic-bezier(.2,.72,.2,1), filter .68s ease !important;
}
@media (prefers-reduced-motion: reduce) {
  .home-page .project-matrix__jitter-overlay.is-shaking { animation: none !important; }
}

/* Direct two-position carousel jumps still use one continuous transform. */
.home-page .simple-carousel__slide {
  transition-timing-function: cubic-bezier(.2,.72,.2,1) !important;
  transition-duration: 620ms !important;
}
.home-page .simple-carousel__slide.is-carousel-entering {
  transition: none !important;
}

/* Matrix + intro + carousel stabilization -------------------------------- */
/* The interactive calligram is completely motionless. Hover changes state,
   never geometry. */
.home-page .project-matrix__mark > img,
.home-page .project-matrix__jitter-overlay {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}
.home-page .project-matrix__jitter-overlay { display: none !important; }
.home-page .project-matrix__cell::before {
  transform: none !important;
  transition: border-color 220ms ease, background-color 220ms ease !important;
}
.home-page .project-matrix__cell:hover::before,
.home-page .project-matrix__cell:focus-visible::before,
.home-page .project-matrix__cell.is-active::before {
  transform: none !important;
}

/* The descriptor is live type, centered by the existing intro geometry. */
.home-page .intro__descriptor {
  text-transform: uppercase !important;
}

/* During a far-card direct motion, Web Animations owns the transform path.
   CSS transitions are suspended so there is no discrete snap at either end. */
.home-page .simple-carousel.is-direct-motion .simple-carousel__slide,
.home-page .simple-carousel.is-direct-motion .simple-carousel__image,
.home-page .simple-carousel.is-direct-motion .simple-carousel__meta {
  transition: none !important;
}

/* V190 — matrix/descriptor interaction lock ---------------------------------
   The matrix itself never moves during pointer interaction. Active feedback is
   tonal only: no tracking lines, scaling or transform-based cell state. */
.home-page .intro__architects.intro__descriptor {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  width: 100% !important;
  column-gap: .72em !important;
  justify-content: stretch !important;
}
.home-page .intro__descriptor-part--left {
  justify-self: end !important;
  text-align: right !important;
}
.home-page .intro__descriptor-cross {
  justify-self: center !important;
  text-align: center !important;
  letter-spacing: 0 !important;
}
.home-page .intro__descriptor-part--right {
  justify-self: start !important;
  text-align: left !important;
}

.home-page .matrix-hero__stage,
.home-page .matrix-hero__mark,
.home-page .project-matrix__mark,
.home-page .project-matrix__mark > img,
.home-page .project-matrix__hotspots {
  transform: none !important;
}
.home-page .matrix-hero__stage,
.home-page .matrix-hero__mark,
.home-page .project-matrix__mark,
.home-page .project-matrix__mark > img {
  transition-property: opacity, filter !important;
}
.home-page .project-matrix__hotspots::before,
.home-page .project-matrix__hotspots::after {
  display: none !important;
  content: none !important;
  transition: none !important;
  transform: none !important;
}
.home-page .project-matrix__cell,
.home-page .project-matrix__cell:hover,
.home-page .project-matrix__cell:focus-visible,
.home-page .project-matrix__cell.is-active {
  transform: none !important;
}
.home-page .project-matrix__cell::before {
  inset: 0 !important;
  border: 0 !important;
  transform: none !important;
  transition: background-color 220ms ease !important;
}
.home-page .project-matrix__cell:hover::before,
.home-page .project-matrix__cell:focus-visible::before,
.home-page .project-matrix__cell.is-active::before {
  border: 0 !important;
  transform: none !important;
  background: rgba(255,255,255,.045) !important;
}
.home-page .project-matrix__cell > span {
  display: none !important;
}

/* The direct far-card animation controls its own transform and layering. */
.home-page .simple-carousel.is-direct-motion .simple-carousel__slide {
  transition: none !important;
}


/* v195 matrix hero refinements */
.home-page .matrix-hero__stage,
.home-page .matrix-hero__header,
.home-page .matrix-hero__scroll,
.home-page .matrix-hero__mark,
.home-page .matrix-hero__preview,
.home-page .project-matrix__hotspots::before,
.home-page .project-matrix__hotspots::after,
.home-page .project-matrix__cell::before,
.home-page .project-matrix__cell > span {
  transition-property: opacity, color, border-color, background-color !important;
  transition-duration: .24s !important;
  transition-timing-function: ease !important;
}

.home-page .project-matrix--hero {
  background: #ebe9e3;
}

.home-page .matrix-hero__stage,
.home-page .matrix-hero__header,
.home-page .matrix-hero__scroll,
.home-page .matrix-hero__mark,
.home-page .matrix-hero__preview {
  transform: none !important;
}

.home-page .matrix-hero__mark {
  position: relative;
  width: min(38vw, 540px, calc(100svh - 320px));
  min-width: 350px;
  overflow: visible;
}

.home-page .project-matrix__mark {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home-page .project-matrix__mark > img {
  opacity: 1;
}

.home-page .project-matrix__hotspots {
  inset: 7.5%;
}

.home-page .project-matrix__hotspots::before,
.home-page .project-matrix__hotspots::after {
  z-index: 0;
}

.home-page .project-matrix__hotspots::before {
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(17,17,15,.08) 16%, rgba(17,17,15,.22) 50%, rgba(17,17,15,.08) 84%, transparent 100%);
}

.home-page .project-matrix__hotspots::after {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(17,17,15,.08) 16%, rgba(17,17,15,.22) 50%, rgba(17,17,15,.08) 84%, transparent 100%);
}

.home-page .project-matrix__mark.has-active .project-matrix__hotspots::before,
.home-page .project-matrix__mark.has-active .project-matrix__hotspots::after {
  opacity: 1;
  transform: none !important;
}

.home-page .project-matrix__cell::before {
  inset: 12%;
  border-color: transparent;
  background: transparent;
  transform: none !important;
}

.home-page .project-matrix__cell:hover::before,
.home-page .project-matrix__cell:focus-visible::before,
.home-page .project-matrix__cell.is-active::before {
  border-color: rgba(17,17,15,.24);
  background: rgba(17,17,15,.02);
}

.home-page .project-matrix__cell > span {
  right: 10%;
  bottom: 8%;
  color: rgba(17,17,15,0);
  font-size: 7px;
  letter-spacing: .14em;
}

.home-page .project-matrix__cell:hover > span,
.home-page .project-matrix__cell:focus-visible > span,
.home-page .project-matrix__cell.is-active > span {
  color: rgba(17,17,15,.42);
}

.home-page .matrix-mobile-instruction {
  display: none;
}

.home-page .matrix-hero__lockup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  justify-items: center;
  width: min(38vw, 540px, calc(100svh - 320px));
  min-width: 350px;
  margin: 24px 0 0;
  text-align: center;
  color: #11110f;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-page .matrix-hero__lockup > span {
  display: block;
}

.home-page .matrix-hero__lockup-x {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 860px) {
  .home-page .matrix-hero__lockup {
    min-width: 0;
    width: min(100%, 420px);
    margin: 18px auto 0;
    font-size: 10px;
    letter-spacing: .16em;
  }
}


/* v196 — final matrix stability + original locator + intro lockup ------------ */

/* ARCHITECTURE / × / INTERIORS belongs to the identity intro, not the hero. */
.home-page .intro__architects.intro__descriptor {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto auto !important;
  justify-items: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: clamp(16px, 1.9vw, 26px) auto 0 !important;
  row-gap: .42em !important;
  column-gap: 0 !important;
  text-align: center !important;
  color: #fff !important;
}
.home-page .intro__descriptor-part--left,
.home-page .intro__descriptor-cross,
.home-page .intro__descriptor-part--right {
  justify-self: center !important;
  text-align: center !important;
  width: auto !important;
}
.home-page .intro__descriptor-part {
  font-size: .49em !important;
  line-height: 1 !important;
  letter-spacing: .22em !important;
}
.home-page .intro__descriptor-cross {
  font-size: .58em !important;
  line-height: .85 !important;
  letter-spacing: 0 !important;
}

/* Remove the v195 hero lockup completely even if stale markup is cached. */
.home-page .matrix-hero__lockup {
  display: none !important;
}

/*
  The shake in the recording came from .matrix-hero__stage being vertically
  centred while its height changed with the preview copy. Give the stage the
  same fixed reference height as the square matrix. Preview text may reflow;
  the matrix datum cannot move with it.
*/
@media (min-width: 861px) {
  .home-page .matrix-hero__stage {
    height: min(38vw, 540px, calc(100svh - 320px)) !important;
    min-height: 350px !important;
    align-self: center !important;
    transform: none !important;
  }
  .home-page .matrix-hero__mark,
  .home-page .project-matrix__mark {
    align-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* Restore the restrained locator that was removed by the v190 !important lock. */
.home-page .project-matrix__hotspots::before,
.home-page .project-matrix__hotspots::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform: none !important;
  transition: opacity .18s ease !important;
  z-index: 3 !important;
}
.home-page .project-matrix__hotspots::before {
  top: 0 !important;
  bottom: 0 !important;
  left: calc((var(--active-col) + .5) * 16.6666667%) !important;
  width: 1px !important;
  height: auto !important;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(17,17,15,.045) 8%,
    rgba(17,17,15,.12) 50%,
    rgba(17,17,15,.045) 92%,
    transparent 100%
  ) !important;
}
.home-page .project-matrix__hotspots::after {
  left: 0 !important;
  right: 0 !important;
  top: calc((var(--active-row) + .5) * 16.6666667%) !important;
  width: auto !important;
  height: 1px !important;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(17,17,15,.045) 8%,
    rgba(17,17,15,.12) 50%,
    rgba(17,17,15,.045) 92%,
    transparent 100%
  ) !important;
}
.home-page .project-matrix__mark.has-active .project-matrix__hotspots::before,
.home-page .project-matrix__mark.has-active .project-matrix__hotspots::after {
  opacity: 1 !important;
  transform: none !important;
}

.home-page .project-matrix__cell::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 10% !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  transform: none !important;
  transition: border-color .16s ease, background-color .16s ease !important;
  z-index: 4 !important;
}
.home-page .project-matrix__cell:hover::before,
.home-page .project-matrix__cell:focus-visible::before,
.home-page .project-matrix__cell.is-active::before {
  border-color: rgba(17,17,15,.20) !important;
  background: rgba(17,17,15,.012) !important;
  transform: none !important;
}

.home-page .project-matrix__cell > span {
  display: block !important;
  position: absolute !important;
  right: 8% !important;
  bottom: 6% !important;
  z-index: 5 !important;
  color: rgba(17,17,15,0) !important;
  font-size: 6px !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
  transition: color .16s ease !important;
}
.home-page .project-matrix__cell:hover > span,
.home-page .project-matrix__cell:focus-visible > span,
.home-page .project-matrix__cell.is-active > span {
  color: rgba(17,17,15,.38) !important;
}

/* Interaction is state-only. Nothing in the square changes geometry. */
.home-page .matrix-hero__stage,
.home-page .matrix-hero__mark,
.home-page .project-matrix__mark,
.home-page .project-matrix__mark > img,
.home-page .project-matrix__hotspots,
.home-page .project-matrix__cell,
.home-page .project-matrix__cell:hover,
.home-page .project-matrix__cell:focus-visible,
.home-page .project-matrix__cell.is-active {
  transform: none !important;
}


/* v197 — two-point refinement only ------------------------------------------
   1) Larger three-line Architecture / × / Interiors lockup that remains fully
      visible at the completed intro rest state and only fades once scrolling starts.
   2) Restore the approved desktop hero composition. Stabilise the preview copy,
      not the whole stage, so project-title reflow cannot move the matrix. */

/* Intro lockup: preserve the three-line composition, just give it proper presence. */
.home-page .intro__architects.intro__descriptor {
  margin-top: clamp(22px, 2.35vw, 34px) !important;
  row-gap: .48em !important;
  font-size: clamp(16px, 1.28vw, 21px) !important;
}
.home-page .intro__descriptor-part {
  font-size: 1em !important;
  line-height: 1 !important;
  letter-spacing: .20em !important;
}
.home-page .intro__descriptor-cross {
  font-size: .92em !important;
  line-height: .9 !important;
}

/* Desktop hero: return to the approved natural centred composition. */
@media (min-width: 861px) {
  .home-page .matrix-hero__stage {
    height: auto !important;
    min-height: 0 !important;
    align-self: center !important;
    align-items: start !important;
    transform: none !important;
  }

  .home-page .matrix-hero__mark,
  .home-page .project-matrix__mark {
    align-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }

  /* The image stays exactly where the approved hero placed it. */
  .home-page .matrix-hero__preview {
    align-self: start !important;
    transform: none !important;
  }

  /* Fixed copy datum = no matrix jump when a project title wraps differently. */
  .home-page .matrix-hero__preview .project-matrix__copy {
    box-sizing: border-box !important;
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
    overflow: visible !important;
  }
}

@media (max-width: 860px) {
  .home-page .intro__architects.intro__descriptor {
    margin-top: 18px !important;
    font-size: clamp(12px, 3.4vw, 16px) !important;
    row-gap: .42em !important;
  }
}


/* v198 — intro lockup timing only. Geometry and styling unchanged from v197. */


/* v200 — hard hold: completed intro remains fully visible until real user scroll. */
.home-page.identity-awaiting-scroll .intro {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #050505 !important;
}
.home-page.identity-awaiting-scroll .intro__composition {
  opacity: 1 !important;
}
.home-page.identity-awaiting-scroll .intro__architects.intro__descriptor {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}
.home-page.identity-awaiting-scroll.identity-complete .intro {
  visibility: visible !important;
  opacity: 1 !important;
}


/* v201 — lockup hold fix: keep the three descriptor lines visible until real user scroll. */
.home-page.identity-awaiting-scroll .intro__architects.intro__descriptor > span,
.home-page.identity-parallax-ready .intro__architects.intro__descriptor > span {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

/* While waiting, the parent itself is also hard-held. After user scroll begins,
   JS controls only the parent opacity through --intro-architects-opacity. */
.home-page.identity-awaiting-scroll .intro__architects.intro__descriptor {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ========================================================================== 
   v204-mobile — deliberate phone layout from LOCKED v202
   All approved desktop behavior remains untouched above 760px.
   ========================================================================== */
@media (max-width: 760px) {
  :root {
    --header: 56px;
    --journey-gutter: 18px;
    --pad: 18px;
    --morphd-title-section: clamp(34px, 9.8vw, 40px);
  }

  html, body { overflow-x: clip !important; }

  /* Header -------------------------------------------------------------- */
  .home-page .site-header {
    height: var(--header) !important;
    padding-inline: 18px !important;
  }
  .home-page .digital-wordmark { width: 90px !important; }
  .home-page .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
  }
  .home-page .site-nav {
    gap: 20px !important;
    padding: 76px 22px 36px !important;
    font-size: 18px !important;
    letter-spacing: .065em !important;
  }
  .home-page .site-nav .nav-cta {
    margin-top: 8px !important;
    padding: 13px 16px !important;
  }

  /* Intro --------------------------------------------------------------- */
  .home-page .intro__stage {
    width: min(62vw, 242px) !important;
  }
  .home-page .intro__architects.intro__descriptor {
    margin-top: 22px !important;
    row-gap: .5em !important;
    font-size: clamp(13px, 3.65vw, 15px) !important;
  }
  .home-page .intro__descriptor-part {
    letter-spacing: .19em !important;
  }
  .home-page .intro__scroll-cue {
    bottom: 18px !important;
    font-size: 7px !important;
    letter-spacing: .15em !important;
  }

  /* Matrix hero --------------------------------------------------------- */
  .home-page .project-matrix--hero {
    height: 100svh !important;
    min-height: 760px !important;
    background: var(--morphd-light) !important;
  }
  .home-page .project-matrix--hero .project-matrix__shell {
    position: relative !important;
    top: auto !important;
    height: 100% !important;
    min-height: 760px !important;
    padding: calc(var(--header) + 12px) 18px 14px !important;
    overflow: hidden !important;
  }
  .home-page .matrix-hero__stage {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-content: start !important;
    align-items: start !important;
    gap: 16px !important;
    transform: none !important;
  }
  .home-page .matrix-hero__mark,
  .home-page .project-matrix__mark {
    width: min(55vw, 214px) !important;
    min-width: 0 !important;
    justify-self: center !important;
    align-self: start !important;
    margin: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }
  .home-page .matrix-mobile-instruction {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    bottom: -14px !important;
    width: max-content !important;
    max-width: 84vw !important;
    margin: 0 !important;
    color: rgba(17,17,15,.42) !important;
    font-size: 6px !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
  }
  .home-page .matrix-hero__preview {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    align-self: start !important;
    transform: none !important;
  }
  .home-page .matrix-hero__preview .project-matrix__media {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 4 / 3 !important;
    max-height: 292px !important;
    margin: 0 !important;
  }
  .home-page .matrix-hero__preview .project-matrix__copy {
    width: 100% !important;
    height: auto !important;
    min-height: 118px !important;
    max-height: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "category category"
      "title link"
      "view link"
      "meta meta" !important;
    column-gap: 14px !important;
    align-content: start !important;
    padding-top: 11px !important;
    overflow: visible !important;
  }
  .home-page .matrix-hero__preview .project-matrix__copy > p:first-child {
    grid-area: category !important;
    margin: 0 0 7px !important;
    font-size: 6.5px !important;
    letter-spacing: .13em !important;
  }
  .home-page .matrix-hero__preview .project-matrix__copy h3 {
    grid-area: title !important;
    margin: 0 !important;
    max-width: 12ch !important;
    font-size: clamp(24px, 7.15vw, 29px) !important;
    line-height: .98 !important;
    letter-spacing: -.042em !important;
  }
  .home-page .matrix-hero__preview .project-matrix__view {
    grid-area: view !important;
    margin: 4px 0 0 !important;
    font-size: 9.5px !important;
    line-height: 1.3 !important;
  }
  .home-page .matrix-hero__preview .project-matrix__meta {
    grid-area: meta !important;
    margin-top: 8px !important;
    font-size: 6.5px !important;
    letter-spacing: .105em !important;
  }
  .home-page .matrix-hero__preview .project-matrix__link {
    grid-area: link !important;
    align-self: end !important;
    justify-self: end !important;
    margin: 0 0 2px !important;
    min-height: 25px !important;
    font-size: 7.5px !important;
    white-space: nowrap !important;
  }
  .home-page .project-matrix__counter {
    top: 9px !important;
    right: 9px !important;
    font-size: 6.5px !important;
  }
  .home-page .matrix-hero__replay {
    position: absolute !important;
    top: calc(var(--header) + 10px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 8 !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(17,17,15,.18) !important;
    background: rgba(244,243,236,.76) !important;
    backdrop-filter: blur(8px) !important;
  }
  .home-page .matrix-hero__replay > span { display: none !important; }
  .home-page .matrix-hero__replay-icon { width: 14px !important; height: 14px !important; }

  /* Shared section rhythm ---------------------------------------------- */
  .home-page .journey-index {
    font-size: 7px !important;
    letter-spacing: .12em !important;
  }
  .home-page .journey-section-head,
  .home-page .simple-work__header,
  .home-page .home-studies__head,
  .home-page .editorial-testimonials__top {
    margin-bottom: 26px !important;
    padding-bottom: 0 !important;
  }
  .home-page .journey-section-head h2,
  .home-page .simple-work__header h2,
  .home-page .home-studies__head h2,
  .home-page #client-feedback .editorial-testimonials__top h2,
  .home-page .journey-contact__copy h2 {
    max-width: none !important;
    font-size: clamp(34px, 9.5vw, 39px) !important;
    line-height: 1.01 !important;
    letter-spacing: -.042em !important;
  }

  /* Studio -------------------------------------------------------------- */
  .home-page .journey-intro {
    min-height: 0 !important;
    padding: 64px 18px 68px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .home-page .journey-intro__statement h2 {
    margin: 12px 0 17px !important;
    font-size: clamp(36px, 10vw, 41px) !important;
    line-height: 1 !important;
    letter-spacing: -.043em !important;
  }
  .home-page .journey-intro__statement > p:not(.journey-index) {
    margin: 0 0 21px !important;
    max-width: 38ch !important;
    font-size: 13.5px !important;
    line-height: 1.58 !important;
  }
  .home-page .journey-intro__images {
    min-height: 0 !important;
    margin: 0 !important;
  }
  .home-page .journey-intro__image--large {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    margin: 0 !important;
  }
  .home-page .journey-intro__image--large img { object-fit: cover !important; }

  /* Capabilities -------------------------------------------------------- */
  .home-page .journey-services {
    min-height: 0 !important;
    padding: 68px 18px 72px !important;
  }
  .home-page .journey-services__sticky {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
  }
  .home-page #services .journey-services__layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  .home-page #services .journey-services__visual {
    order: 1 !important;
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    max-width: 354px !important;
    aspect-ratio: 1 / 1 !important;
    align-self: center !important;
    margin: 0 !important;
  }
  .home-page #services .journey-services__list {
    order: 2 !important;
    width: 100% !important;
    border-top: 1px solid rgba(255,255,255,.18) !important;
  }
  .home-page #services .journey-service__row {
    display: grid !important;
    grid-template-columns: minmax(104px,.40fr) minmax(0,1fr) !important;
    gap: 15px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 14px 0 15px !important;
    border-bottom: 1px solid rgba(255,255,255,.18) !important;
  }
  .home-page #services .journey-service__name {
    font-size: 17px !important;
    line-height: 1.08 !important;
  }
  .home-page #services .journey-service__description {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.48 !important;
    opacity: .76 !important;
  }

  /* Selected work ------------------------------------------------------- */
  .home-page .simple-work {
    padding: 68px 0 68px !important;
    overflow: hidden !important;
  }
  .home-page .simple-work__header,
  .home-page .simple-work__footer {
    padding-inline: 18px !important;
  }
  .home-page .simple-carousel {
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .home-page .simple-carousel__stage {
    height: 455px !important;
    overflow: visible !important;
  }
  .home-page .simple-carousel__slide {
    --card-width: min(86vw, 336px) !important;
  }
  .home-page .simple-carousel__slide.is-active {
    transform: translate3d(-50%,0,0) scale(1) !important;
  }
  .home-page .simple-carousel__slide.is-previous {
    transform: translate3d(calc(-50% - 87vw),10px,0) scale(.94) !important;
  }
  .home-page .simple-carousel__slide.is-next {
    transform: translate3d(calc(-50% + 87vw),10px,0) scale(.94) !important;
  }
  .home-page .simple-carousel__slide.is-far-previous,
  .home-page .simple-carousel__slide.is-far-next {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .home-page .simple-carousel__meta {
    min-height: 104px !important;
    padding-top: 12px !important;
  }
  .home-page .simple-carousel__meta-top,
  .home-page .simple-carousel__meta-bottom {
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 10px !important;
    font-size: 6.5px !important;
    letter-spacing: .095em !important;
  }
  .home-page .simple-carousel__meta h3 {
    margin: 8px 0 9px !important;
    font-size: clamp(25px, 7.5vw, 31px) !important;
    line-height: .98 !important;
  }
  .home-page .simple-carousel__arrow {
    top: 154px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    background: rgba(8,8,8,.82) !important;
  }
  .home-page .simple-carousel__arrow--prev { left: 8px !important; }
  .home-page .simple-carousel__arrow--next { right: 8px !important; }
  .home-page .simple-work__footer {
    padding-top: 12px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Process ------------------------------------------------------------- */
  .home-page .journey-process {
    min-height: 0 !important;
    padding: 68px 18px 72px !important;
  }
  .home-page .journey-process__sticky,
  .home-page .journey-process__inner {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
  }
  .home-page #process .journey-process__layout {
    display: block !important;
  }
  .home-page #process .journey-process__visual {
    display: none !important;
  }
  .home-page #process .journey-process__steps {
    width: 100% !important;
    border-top: 1px solid rgba(17,17,15,.20) !important;
  }
  .home-page #process .journey-process__step {
    display: grid !important;
    grid-template-columns: 96px minmax(0,1fr) !important;
    gap: 15px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 15px 0 16px !important;
    border-bottom: 1px solid rgba(17,17,15,.18) !important;
  }
  .home-page #process .journey-process__step h3 {
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.08 !important;
  }
  .home-page #process .journey-process__step p {
    display: block !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.48 !important;
    opacity: .72 !important;
  }
  .home-page #process .journey-process__steps > .journey-text-link {
    margin-top: 22px !important;
  }

  /* Studies: horizontal phone-native rail instead of 3 full-page cards. */
  .home-page .home-studies {
    padding: 68px 18px 72px !important;
    overflow: hidden !important;
  }
  .home-page .home-studies__grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: min(82vw, 324px) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: calc(100% + 18px) !important;
    margin-right: -18px !important;
    padding: 0 18px 12px 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    overscroll-behavior-inline: contain !important;
    scrollbar-width: none !important;
  }
  .home-page .home-studies__grid::-webkit-scrollbar { display: none !important; }
  .home-page .study-card,
  .home-page .study-card + .study-card {
    scroll-snap-align: start !important;
    padding: 0 0 8px !important;
    border-top: 1px solid rgba(17,17,15,.16) !important;
  }
  .home-page .study-card__image {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    margin-top: 14px !important;
  }
  .home-page .study-card__meta {
    margin-top: 12px !important;
    font-size: 6.5px !important;
  }
  .home-page .study-card h3 {
    margin: 10px 0 10px !important;
    font-size: 22px !important;
    line-height: 1.05 !important;
  }
  .home-page .study-card p {
    font-size: 11.5px !important;
    line-height: 1.5 !important;
  }
  .home-page .study-card__link { margin-top: 16px !important; }
  .home-page .home-studies__footer { margin-top: 24px !important; }

  /* Feedback ------------------------------------------------------------ */
  .home-page #client-feedback.editorial-testimonials {
    padding-top: 68px !important;
  }
  .home-page #client-feedback .editorial-testimonials__stage {
    display: block !important;
    padding-bottom: 58px !important;
  }
  .home-page .editorial-testimonial {
    grid-template-columns: 1fr !important;
  }
  .home-page .editorial-testimonial figure {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }
  .home-page .editorial-testimonial__quote {
    min-height: 0 !important;
    padding: 24px 0 18px !important;
    border-right: 0 !important;
  }
  .home-page .editorial-testimonial__quote > span { font-size: 38px !important; }
  .home-page .editorial-testimonial blockquote {
    margin: 14px 0 20px !important;
    font-size: 19px !important;
    line-height: 1.34 !important;
  }
  .home-page .editorial-testimonials__index {
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 12px 0 0 !important;
  }
  .home-page .editorial-testimonials__index button {
    width: min(52px, calc((100vw - 72px) / 5)) !important;
  }

  /* Contact ------------------------------------------------------------- */
  body.home-page #contact.journey-contact--home {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 68px 18px 0 !important;
    overflow: hidden !important;
  }
  body.home-page #contact .journey-contact__copy {
    position: relative !important;
    width: 100% !important;
    padding: 0 0 46px !important;
    order: 1 !important;
  }
  body.home-page #contact .journey-contact__copy > p:not(.journey-index) {
    margin: 18px 0 24px !important;
    max-width: 38ch !important;
    color: rgba(17,17,15,.62) !important;
    font-size: 13.5px !important;
    line-height: 1.58 !important;
  }
  body.home-page #contact .journey-contact__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  body.home-page #contact .journey-contact__media {
    position: relative !important;
    inset: auto !important;
    width: calc(100% + 36px) !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin-left: -18px !important;
    order: 2 !important;
  }
  body.home-page #contact .journey-contact__media img { object-fit: cover !important; }

  /* Footer -------------------------------------------------------------- */
  .home-page .site-footer {
    padding: 22px 18px 20px !important;
    gap: 16px !important;
  }
}

@media (max-width: 380px) {
  .home-page .matrix-hero__mark,
  .home-page .project-matrix__mark { width: min(52vw, 198px) !important; }
  .home-page .matrix-hero__preview .project-matrix__media { max-height: 268px !important; }
  .home-page .simple-carousel__slide { --card-width: 87vw !important; }
  .home-page #services .journey-service__row { grid-template-columns: 98px minmax(0,1fr) !important; }
  .home-page #process .journey-process__step { grid-template-columns: 90px minmax(0,1fr) !important; }
}


/* ========================================================================== 
   v205-mobile — readable intro→matrix runway + visible process illustrations
   Desktop remains the locked v202 baseline.
   ========================================================================== */
@media (max-width: 760px) {
  /* Give the scroll-driven identity handoff real distance. The sticky viewport
     stays 100svh; only the scroll runway grows. */
  .home-page .project-matrix--hero {
    height: 154svh !important;
    min-height: 980px !important;
  }
  .home-page .project-matrix--hero .project-matrix__shell {
    position: sticky !important;
    top: 0 !important;
    height: 100svh !important;
    min-height: 680px !important;
    max-height: 100svh !important;
    padding: calc(var(--header) + 12px) 18px 14px !important;
    overflow: hidden !important;
  }

  /* Process illustrations: one image belongs to each step on phone. */
  .home-page #process .journey-process__visual {
    display: none !important;
  }
  .home-page #process .journey-process__steps {
    border-top: 0 !important;
  }
  .home-page #process .journey-process__step {
    display: grid !important;
    grid-template-columns: 92px minmax(0,1fr) !important;
    grid-template-areas:
      "media media"
      "title description" !important;
    gap: 0 16px !important;
    padding: 0 0 28px !important;
    margin-bottom: 26px !important;
    border-bottom: 1px solid rgba(17,17,15,.18) !important;
    color: #11110f !important;
  }
  .home-page #process .journey-process__mobile-image {
    grid-area: media !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    margin: 0 0 15px !important;
    overflow: hidden !important;
    background: #eceae4 !important;
  }
  .home-page #process .journey-process__mobile-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: cover !important;
    filter: none !important;
  }
  .home-page #process .journey-process__step:nth-child(3) .journey-process__mobile-image img {
    object-fit: contain !important;
    padding: 14px !important;
    background: #f0f0ec !important;
  }
  .home-page #process .journey-process__step h3 {
    grid-area: title !important;
    align-self: start !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.06 !important;
  }
  .home-page #process .journey-process__step p {
    grid-area: description !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.48 !important;
    opacity: .72 !important;
  }
  .home-page #process .journey-process__steps > .journey-text-link {
    margin-top: 0 !important;
  }
}

@media (max-width: 380px) {
  .home-page .project-matrix--hero {
    height: 158svh !important;
  }
  .home-page #process .journey-process__step {
    grid-template-columns: 84px minmax(0,1fr) !important;
  }
}


.home-page .mobile-scene-detail { display: none; }

/* ========================================================================== 
   v206-mobile — consolidated phone UX refinement
   The locked v202 desktop baseline is untouched above 760px.
   ========================================================================== */
@media (max-width: 760px) {
  /* Functional header --------------------------------------------------- */
  .home-page .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;
  }
  .home-page .menu-toggle .morphd-icon,
  body.menu-open .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; }

  /* Matrix hero: square preview and ratio-safe calligram ---------------- */
  .home-page .project-matrix--hero {
    height: 172svh !important;
    min-height: calc(100svh + 560px) !important;
  }
  .home-page .project-matrix--hero .project-matrix__shell {
    overflow: visible !important;
    min-height: 100svh !important;
  }
  .home-page .matrix-hero__stage {
    gap: clamp(10px, 2.1vh, 18px) !important;
    overflow: visible !important;
  }
  .home-page .matrix-hero__mark,
  .home-page .project-matrix__mark {
    width: min(58vw, 226px) !important;
    max-width: calc(100vw - 44px) !important;
    aspect-ratio: 1 / 1 !important;
    flex: 0 0 auto !important;
    overflow: visible !important;
  }
  .home-page .matrix-hero__mark > img,
  .home-page .project-matrix__mark > img {
    width: 85% !important;
    height: 85% !important;
  }
  .home-page .matrix-hero__preview .project-matrix__media {
    width: min(100%, 390px) !important;
    max-width: 100% !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    margin-inline: auto !important;
  }
  .home-page .matrix-hero__preview .project-matrix__image {
    object-fit: cover !important;
  }
  .home-page .matrix-hero__preview .project-matrix__copy {
    width: min(100%, 390px) !important;
    margin-inline: auto !important;
  }

  /* Capabilities: selector -> image -> selected detail ----------------- */
  .home-page #services .journey-services__layout,
  .home-page #process .journey-process__layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }
  .home-page #services .journey-services__list,
  .home-page #process .journey-process__steps {
    order: 1 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    width: calc(100% + 18px) !important;
    margin-right: -18px !important;
    padding: 0 18px 8px 0 !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border-top: 1px solid currentColor !important;
    border-bottom: 1px solid currentColor !important;
    scrollbar-width: none !important;
    scroll-snap-type: x proximity !important;
  }
  .home-page #services .journey-services__list::-webkit-scrollbar,
  .home-page #process .journey-process__steps::-webkit-scrollbar { display: none !important; }
  .home-page #services .journey-service__row,
  .home-page #process .journey-process__step {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    min-width: max-content !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 17px !important;
    border: 0 !important;
    border-right: 1px solid currentColor !important;
    scroll-snap-align: center !important;
    text-decoration: none !important;
  }
  .home-page #services .journey-service__row:first-child,
  .home-page #process .journey-process__step:first-child { padding-left: 0 !important; }
  .home-page #services .journey-service__name,
  .home-page #process .journey-process__step h3 {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
  .home-page #services .journey-service__description,
  .home-page #process .journey-process__step > p,
  .home-page #process .journey-process__mobile-image { display: none !important; }

  .home-page #services .journey-services__visual,
  .home-page #process .journey-process__visual {
    order: 2 !important;
    display: block !important;
    position: relative !important;
    width: min(100%, 390px) !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
  .home-page #services .journey-service__image,
  .home-page #process .journey-process__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .home-page #services .journey-service__image img,
  .home-page #process .journey-process__image img { object-fit: contain !important; }
  .home-page .mobile-scene-detail {
    order: 3 !important;
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    gap: 18px !important;
    align-items: end !important;
    padding-top: 4px !important;
  }
  .home-page .mobile-scene-detail__copy {
    margin: 0 !important;
    max-width: 38ch !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    opacity: .72 !important;
  }
  .home-page .mobile-scene-detail__link {
    min-height: 34px !important;
    white-space: nowrap !important;
    font-size: 8px !important;
  }
  .home-page #process .journey-process__steps > .journey-text-link { display: none !important; }

  /* Carousel: active card plus visible neighbours ---------------------- */
  .home-page .simple-carousel__stage { height: 430px !important; }
  .home-page .simple-carousel__slide { --card-width: min(76vw, 300px) !important; }
  .home-page .simple-carousel__slide.is-previous {
    opacity: .46 !important;
    visibility: visible !important;
    transform: translate3d(calc(-50% - 73vw), 12px, 0) scale(.90) !important;
  }
  .home-page .simple-carousel__slide.is-next {
    opacity: .46 !important;
    visibility: visible !important;
    transform: translate3d(calc(-50% + 73vw), 12px, 0) scale(.90) !important;
  }
  .home-page .simple-carousel__arrow { top: 134px !important; }

  /* Feedback: swipeable, with visible position controls ---------------- */
  .home-page #client-feedback .editorial-testimonials__stage { touch-action: pan-y pinch-zoom !important; }
  .home-page .editorial-testimonials__index {
    width: 100% !important;
    justify-content: center !important;
    padding-top: 6px !important;
  }

  /* Contact: typographic close only ------------------------------------ */
  body.home-page #contact .journey-contact__media { display: none !important; }
  body.home-page #contact.journey-contact--home { padding-bottom: 66px !important; }
  body.home-page #contact .journey-contact__copy { padding-bottom: 0 !important; }
}

/* Short phones / landscape-ish ratios: never clip the matrix. */
@media (max-width: 760px) and (max-height: 740px) {
  .home-page .project-matrix--hero { height: 190svh !important; min-height: 1120px !important; }
  .home-page .matrix-hero__mark,
  .home-page .project-matrix__mark { width: min(45vw, 176px) !important; }
  .home-page .matrix-hero__preview .project-matrix__media,
  .home-page .matrix-hero__preview .project-matrix__copy { width: min(78vw, 292px) !important; }
  .home-page .matrix-hero__preview .project-matrix__copy { min-height: 108px !important; }
}
