
/* ===== SOURCE: styles.css ===== */

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


/* v21: deeper studio, services, process and conversion system */
.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;
  }
}


/* v24 / Portfolio system lock */
: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;
  }
}


/* v25 / Editorial image bank integration */

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

/* v27 / shared navigation 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:v27-page-out .38s ease both}
::view-transition-new(root){animation:v27-page-in .5s var(--ease) both}
@keyframes v27-page-out{to{opacity:0;transform:scale(.99)}}
@keyframes v27-page-in{from{opacity:0;transform:translateY(14px)}}
@media(prefers-reduced-motion:reduce){.page-wipe{transition:none}}


/* Version 37 / Compact, aligned footer */
.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;}}

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

/* ===== SOURCE: v27-home.css ===== */
/* Version 27: continuous image-led homepage journey */

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

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

/* ===== SOURCE: v28-refine.css ===== */

/* Version 28: refinement of the continuous journey */

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

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

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

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

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

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

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

.home-v28 .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-v28 .journey-service__image img {
  filter: saturate(.9) contrast(1) brightness(.92);
}

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

.home-v28 .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-v28 .journey-contact__media img {
  filter: grayscale(.08) saturate(.86) brightness(.72);
}

.home-v28 .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-v28 .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-v28 .journey-intro .journey-index {
  color: #69675f;
}

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

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

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

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

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

.home-v28 .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-v28 .journey-service__image::after,
.home-v28 .journey-work__slide::after,
.home-v28 .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-v28 .journey-service__image.is-active::after,
.home-v28 .journey-work__slide.is-active::after,
.home-v28 .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-v28 .journey-services__visual {
  height: min(68svh, 760px);
  margin-top: 24px;
  background: #141414;
}

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

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

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

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

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

.journey-principles-v28 {
  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-v28__inner {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.journey-principles-v28__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-v28__intro .journey-index {
  color: #66645e;
}

.journey-principles-v28__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-v28__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17,17,15,.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-v28 .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-v28 .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-v28 .journey-process__step.is-active {
  color: var(--journey-ink);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .home-v28 .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-v28__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .home-v28 .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-v28 .journey-service__image::after,
  .home-v28 .journey-work__slide::after,
  .home-v28 .journey-process__image::after {
    display: none;
  }
}

/* ===== SOURCE: v29-matrix.css ===== */

/* Version 29 / 6 × 6 project matrix */

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


/* Version 30 / Exact matrix alignment */

/*
  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-v29 .project-matrix__stage {
  align-items: start;
}

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

.home-v29 .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-v29 .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-v29 .project-matrix__preview {
  align-self: start;
}

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

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

/* ===== SOURCE: v31-cleanup.css ===== */

/* Version 31 / Cleanup and calibrated rhythm */

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

/* Intro: enough space to settle, without behaving like another hero. */
.home-v31 .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-v31 .journey-services {
  padding-top: clamp(104px, 11vw, 172px);
  padding-bottom: clamp(104px, 11vw, 172px);
}

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

.home-v31 .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-v31 .journey-work {
  height: 380svh;
}

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

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

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

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

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

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

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

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

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

.home-v31 .journey-principles-v28__intro {
  margin-bottom: clamp(52px, 6vw, 86px);
}

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

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

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

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

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

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

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

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

/* Practice is necessary context, but not another visual climax. */
.home-v31 .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-v31 .journey-contact {
  min-height: 92svh;
}

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

  .home-v31 .project-matrix__shell,
  .home-v31 .journey-process-v28__inner {
    padding-top: 96px;
    padding-bottom: 104px;
  }
}

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

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

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

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

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

/* ===== SOURCE: v32-framed.css ===== */

/* Version 32 / Framed scroll journey */

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

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

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

.home-v32 .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-v32 .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-v32 .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-v32 .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-v32 .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-v32 .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-v32 .journey-hero__copy h1 {
  max-width: 360px;
  margin: 22px 0 26px;
  font-size: clamp(54px, 5.35vw, 88px);
  line-height: .9;
}

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

.home-v32 .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-v32 .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-v32 .journey-scroll-cue i {
  width: 72px;
  height: 1px;
}

.home-v32 .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-v32 .journey-intro {
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: center;
}

.home-v32 .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-v32 .journey-intro__image,
.home-v32 .journey-intro__image--large,
.home-v32 .journey-intro__image--small {
  position: relative;
  inset: auto;
  right: auto;
  bottom: auto;
  width: auto;
  box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-v32 .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-v32 .journey-work__header {
  top: calc(var(--header) + 26px);
}

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

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

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

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

.home-v32 .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-v32 .journey-work__slide.is-active .journey-work__image {
  transform: translateY(-50%) scale(1);
  filter: saturate(.96) contrast(1) brightness(.94);
}

.home-v32 .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-v32 .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-v32 .journey-work__slide.is-active .journey-work__meta {
  opacity: 1;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

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

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

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

.home-v32 .journey-principles-v28__grid {
  align-items: stretch;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .home-v32 .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-v32 .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-v32 .journey-hero__copy h1 {
    max-width: 520px;
    margin: 18px 0 20px;
    font-size: clamp(50px, 14vw, 78px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== SOURCE: v33-matrix-hero.css ===== */

/* Version 33 / Entrance resolves directly into the Matrix Hero */

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

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

.home-v33 .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-v33 .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-v33 .intro-logo-svg > g > g > path,
.home-v33 .intro-logo-svg > g > g > polygon,
.home-v33 .intro-logo-svg > g > g > rect {
  transition-duration: .72s;
}

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

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

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

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

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

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

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

.home-v33 .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-v33 .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-v33 .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-v33 .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-v33 .matrix-hero__intro {
  align-self: end;
  max-width: 470px;
}

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

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

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

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

.home-v33 .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-v33 .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-v33 .matrix-hero__preview {
  width: 100%;
  min-width: 0;
  align-self: start;
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

.home-v33 .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-v33 .matrix-hero__scroll i {
  position: relative;
  display: block;
  width: 78px;
  height: 1px;
  overflow: hidden;
  background: rgba(17,17,15,.18);
}

.home-v33 .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-v33: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-v33:not(.intro-active) .site-header:not(.is-scrolled) .digital-wordmark img {
  filter: invert(1);
}

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

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

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

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

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

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

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

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

.home-v33 .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-v33 .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-v33 .selected-cases__header > p {
  max-width: 470px;
  margin: 0;
  color: #969693;
  font-size: 13px;
  line-height: 1.72;
}

.home-v33 .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-v33 .selected-case {
  display: grid;
  min-width: 0;
}

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

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

.home-v33 .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-v33 .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-v33 .selected-case:hover .selected-case__media img,
.home-v33 .selected-case:focus-visible .selected-case__media img {
  filter: saturate(.96) brightness(.96);
  transform: scale(1);
}

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

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

.home-v33 .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-v33 .selected-cases__all {
  margin-top: clamp(68px, 8vw, 112px);
}

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

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

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

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

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

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

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

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

  .home-v33 .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-v33 .matrix-hero__header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
    transform: none;
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== SOURCE: v34-matrix-hero-fix.css ===== */

/* Version 34 / Minimal, centered Matrix Hero correction */

/* Preserve a meaningful heading without adding visual clutter. */
.home-v34 .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-v34 .project-matrix--hero {
  height: 124svh;
}

.home-v34 .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-v34 .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-v34 .matrix-hero__mark {
  width: min(38vw, 66svh, 536px);
  min-width: 350px;
  margin: 0;
  overflow: hidden;
}

.home-v34 .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-v34 .project-matrix__hotspots {
  inset: 10%;
}

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

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

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

.home-v34 .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-v34 .matrix-hero__preview .project-matrix__copy > p:first-child {
  grid-area: category;
  margin: 0 0 26px;
}

.home-v34 .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-v34 .matrix-hero__preview .project-matrix__view {
  grid-area: view;
  margin: 10px 0 0;
}

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

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

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

/* Slightly quieter image transition now that the hero is the first screen. */
.home-v34 .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-v34 .intro.phase-handoff .intro__stage {
  transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== SOURCE: v35-restored-work.css ===== */

/* Version 35 / Restore framed Selected Work after the Matrix Hero */

/*
  The Matrix remains the opening identity and exploration interface.
  Selected Work returns to the framed, scroll-linked pause from Version 32.
*/
.home-v35 .journey-work {
  height: 372svh;
  margin-top: 0;
}

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

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

/*
  Preserve a clear transition between the light Matrix Hero sequence
  and the dark case-study chapter.
*/
.home-v35 .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-v35 .journey-work__header h2 {
  max-width: 480px;
}

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

/* ===== SOURCE: v36-fluid-sticky.css ===== */

/* Version 36 / Fluid handoff, fixed service and process chapters */

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

.home-v36 .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-v36 .intro__stage {
  transform: translateZ(0) scale(var(--intro-start-scale));
  backface-visibility: hidden;
  perspective: 1000px;
}

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

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

.home-v36 .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-v36 .intro.phase-lock .intro__handoff-logo {
  opacity: 1;
}

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

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

.home-v36 .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-v36 .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-v36.intro-active .matrix-hero__mark,
.home-v36.intro-active .matrix-hero__preview {
  opacity: 0 !important;
}

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

.home-v36.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-v36.intro-handoff .matrix-hero__mark,
.home-v36.intro-handoff .matrix-hero__preview {
  opacity: 0 !important;
}

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

.home-v36 .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-v36 .journey-intro__images {
  display: block;
}

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

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

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

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

.home-v36 .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-v36 .journey-services .journey-section-head {
  margin-bottom: clamp(26px, 3.2vh, 40px);
}

.home-v36 .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-v36 .journey-services__list {
  align-self: center;
}

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

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

.home-v36 .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-v36 .journey-work {
  height: 450svh;
}

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

.home-v36 .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-v36 .journey-work__image {
  height: min(66svh, 700px);
}

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

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

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

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

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

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

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

.home-v36 .journey-principles-v28__intro {
  margin-bottom: clamp(42px, 5vw, 70px);
}

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

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

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

.home-v36 .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-v36 .journey-process-v28 .journey-section-head {
  margin-bottom: clamp(24px, 3vh, 38px);
}

.home-v36 .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-v36 .journey-process__steps {
  align-self: center;
}

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

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

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

.home-v36 .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-v36 .journey-practice {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

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

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

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

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

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

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

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

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

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

  .home-v36 .journey-process-v28 {
    height: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== SOURCE: v37-continuity.css ===== */

/* Version 37 / Process fit, compact ending, project-page continuity */

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

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

.home-v37 .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-v37 .journey-process-v28 .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-v37 .journey-process-v28 .journey-section-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.45vw, 54px);
  line-height: .98;
}

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

.home-v37 .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-v37 .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-v37 .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-v37 .journey-process__step > span {
  grid-area: number;
  align-self: start;
  margin: 7px 0 0;
}

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

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

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

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

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

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

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

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

.home-v37 .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-v37 .journey-practice h2 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: .94;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== SOURCE: final-refinement.css ===== */

/* Final surgical refinement */

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

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

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

.home-final .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-final .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-final.intro-active.intro-committed .matrix-hero__mark {
  opacity: 1 !important;
  transition: none !important;
}

.home-final.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-final .journey-services__sticky {
    padding-top: calc(var(--header) + 10px);
    padding-bottom: 10px;
  }

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

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

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

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

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

  .home-final .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-final .journey-service__row:hover,
  .home-final .journey-service__row:focus-visible,
  .home-final .journey-service__row.is-active {
    padding-left: 8px;
  }

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

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

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

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

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

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

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

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

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

.home-final .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-final .journey-practice {
  padding-top: clamp(46px, 5.5vw, 78px);
  padding-bottom: clamp(46px, 5.5vw, 78px);
}

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

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

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

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

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

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

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

  .home-final .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-final .journey-services,
  .home-final .journey-process-v28 {
    height: auto;
  }

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

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

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

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

/* ===== SOURCE: v38-intro-polish.css ===== */

/* Version 38 / Slower, direct intro-to-matrix handoff */

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

.home-v38 .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-v38 .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-v38 .intro.phase-prelude .intro__stage {
  transform: translateZ(0) scale(1);
}

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

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

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

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

.home-v38 .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-v38.intro-active .matrix-hero__mark,
.home-v38.intro-active .matrix-hero__preview {
  opacity: 0 !important;
}

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

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

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

.home-v38 .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-v38 .matrix-hero__replay:hover,
.home-v38 .matrix-hero__replay:focus-visible {
  color: #11110f;
  border-color: rgba(17,17,15,.72);
}

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

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

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

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

/* ===== SOURCE: v52-intro-architects-fade.css ===== */

/* Version 50 / Smooth full-signature to matrix handoff */

/*
  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-v38 .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-v38 .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-v38 .intro.phase-handoff .intro-architects {
  opacity: 0;
  transform: translateY(-5px);
  filter: blur(1.4px);
}

.home-v38 .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-v38 .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-v38 .intro.is-dormant .intro-architects {
  opacity: 0;
}

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

/* ===== SOURCE: v53-intro-render-fix.css ===== */

/* Version 53 / Clean intro logo rendering */

/*
  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-v53 .intro.phase-sharp:not(.phase-handoff) .intro__stage {
  transform: none;
  transition: none;
  backface-visibility: visible;
  perspective: none;
  will-change: auto;
}

.home-v53 .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-v53.intro-active.intro-committed .matrix-hero__mark {
  opacity: 0 !important;
}

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

.home-v53.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-v53.intro-interface-ready .matrix-hero__preview {
  transition:
    opacity .74s ease .16s,
    transform .86s var(--ease) .12s;
}

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

/* ===== SOURCE: v55-storyboard-intro.css ===== */
/* Version 54 / Storyboard intro rebuild */

.home-v54 .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-v54 .intro.is-dormant {
  display: none;
}


.home-v54 .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-v54 .intro__signals,
.home-v54 .intro__composition {
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

.home-v54 .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-v54 .intro.phase-handoff .intro__composition,
.home-v54 .intro.phase-interface .intro__composition {
  left: var(--intro-target-left);
  top: var(--intro-target-top);
  width: var(--intro-target-size);
}

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

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

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

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

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

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

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

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

.home-v54 .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-v54 .intro.phase-grid .intro__square,
.home-v54 .intro.phase-architects .intro__square,
.home-v54 .intro.phase-handoff .intro__square,
.home-v54 .intro.phase-interface .intro__square {
  opacity: 1;
  transform: scale(1);
  transition: opacity .8s ease, transform .9s cubic-bezier(.2,.72,.2,1);
}

.home-v54 .intro__matrix {
  position: absolute;
  inset: 0;
}

.home-v54 .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-v54 .intro.phase-entry .intro__cell.is-cross {
  opacity: .42;
  color: rgba(255,255,255,.34);
}

.home-v54 .intro.phase-cross .intro__cell {
  left: calc(var(--cross-x) * 1%);
  top: calc(var(--cross-y) * 1%);
}

.home-v54 .intro.phase-cross .intro__cell.is-cross {
  opacity: 1;
  color: rgba(255,255,255,.9);
}

.home-v54 .intro.phase-cross .intro__cell:not(.is-cross) {
  opacity: .04;
  color: rgba(255,255,255,.16);
}

.home-v54 .intro.phase-grid .intro__cell,
.home-v54 .intro.phase-architects .intro__cell,
.home-v54 .intro.phase-handoff .intro__cell,
.home-v54 .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-v54 .intro.phase-grid .intro__cell.is-highlight,
.home-v54 .intro.phase-architects .intro__cell.is-highlight,
.home-v54 .intro.phase-handoff .intro__cell.is-highlight,
.home-v54 .intro.phase-interface .intro__cell.is-highlight {
  opacity: 1;
  color: #ffffff;
}

.home-v54 .intro.phase-handoff .intro__cell,
.home-v54 .intro.phase-interface .intro__cell {
  transition-duration: 1.06s, 1.06s, .92s, .92s, .92s;
}

.home-v54 .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-v54 .intro__architects span {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity .82s ease,
    transform .9s cubic-bezier(.2,.72,.2,1);
}

.home-v54 .intro.phase-architects .intro__architects,
.home-v54 .intro.phase-handoff .intro__architects,
.home-v54 .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-v54 .intro.phase-architects .intro__architects span,
.home-v54 .intro.phase-handoff .intro__architects span,
.home-v54 .intro.phase-interface .intro__architects span {
  opacity: 1;
  transform: translateY(0);
}

.home-v54 .intro.phase-architects .intro__architects span:nth-child(1) { transition-delay: .02s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(2) { transition-delay: .05s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(3) { transition-delay: .08s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(4) { transition-delay: .11s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(5) { transition-delay: .14s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(6) { transition-delay: .17s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(7) { transition-delay: .20s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(8) { transition-delay: .23s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(9) { transition-delay: .26s; }
.home-v54 .intro.phase-architects .intro__architects span:nth-child(10) { transition-delay: .29s; }

.home-v54 .intro.phase-handoff .intro__architects,
.home-v54 .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-v54 .intro.phase-handoff .intro__architects span,
.home-v54 .intro.phase-interface .intro__architects span {
  opacity: 0;
  transform: translateY(-3px);
}

.home-v54 .intro.phase-handoff .intro__architects span:nth-child(1),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(1) { transition-delay: .27s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(2),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(2) { transition-delay: .24s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(3),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(3) { transition-delay: .21s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(4),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(4) { transition-delay: .18s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(5),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(5) { transition-delay: .15s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(6),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(6) { transition-delay: .12s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(7),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(7) { transition-delay: .09s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(8),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(8) { transition-delay: .06s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(9),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(9) { transition-delay: .03s; }
.home-v54 .intro.phase-handoff .intro__architects span:nth-child(10),
.home-v54 .intro.phase-interface .intro__architects span:nth-child(10) { transition-delay: 0s; }

.home-v54.intro-active .site-header,
.home-v54.intro-active .matrix-hero__header,
.home-v54.intro-active .matrix-hero__preview,
.home-v54.intro-active .matrix-hero__replay {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.home-v54.intro-active .matrix-hero__mark {
  opacity: 0 !important;
  pointer-events: none;
}

.home-v54.intro-interface-ready .site-header,
.home-v54.intro-interface-ready .matrix-hero__header,
.home-v54.intro-interface-ready .matrix-hero__preview,
.home-v54.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-v54.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .22s ease .08s;
  pointer-events: auto;
}

.home-v54.intro-interface-ready .project-matrix__hotspots {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .home-v54 .intro {
    --intro-logo-size: clamp(220px, 56vw, 300px);
  }

  .home-v54 .intro__composition {
    font-size: calc(var(--intro-logo-size) / 13.5);
  }

  .home-v54 .intro__architects {
    font-size: .36em;
    gap: .5em;
  }

  .home-v54 .intro__line--3,
  .home-v54 .intro__line--4 {
    width: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v54 .intro,
  .home-v54 .intro * {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    animation: none !important;
  }
}

/* Hard isolation from legacy intro handoff selectors */
.home-v54 .intro.phase-handoff,
.home-v54 .intro.phase-interface {
  background: #050505 !important;
  background-color: #050505 !important;
}

.home-v54 .intro.phase-handoff .intro__stage,
.home-v54 .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-v54 .intro.phase-grid .intro__cell:not(.is-cross),
.home-v54 .intro.phase-architects .intro__cell:not(.is-cross),
.home-v54 .intro.phase-handoff .intro__cell:not(.is-cross),
.home-v54 .intro.phase-interface .intro__cell:not(.is-cross) {
  opacity: .42;
  color: rgba(255,255,255,.44);
}

/* ===== SOURCE: v56-official-logo-intro.css ===== */

/* Version 56 / Exact official-logo storyboard intro */

/*
  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-v56 .intro__matrix-shell {
  position: relative;
}

.home-v56 .intro__official-matrix {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.home-v56 .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-v56 .intro.phase-grid .intro__official-matrix .intro__matrix-bg,
.home-v56 .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-v56 .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-v56 .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-v56 .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-v56 .intro.phase-entry .intro__glyph.is-cross,
.home-v56 .intro.phase-cross .intro__glyph.is-cross {
  opacity: 1;
  transform:
    translate(
      var(--cross-tx, 0px),
      var(--cross-ty, 0px)
    );
}

.home-v56 .intro.phase-entry .intro__glyph.is-cross {
  opacity: .46;
}

.home-v56 .intro.phase-cross .intro__glyph.is-cross {
  opacity: 1;
}

/* Exact official matrix lock. */
.home-v56 .intro.phase-grid .intro__glyph,
.home-v56 .intro.phase-architects .intro__glyph,
.home-v56 .intro.phase-handoff .intro__glyph,
.home-v56 .intro.phase-interface .intro__glyph {
  opacity: 1;
  transform: translate(0, 0);
}

/* Keep the official tonal hierarchy untouched. */
.home-v56 .intro__glyph .st1 { fill:#131313; }
.home-v56 .intro__glyph .st2 { fill:#313132; }
.home-v56 .intro__glyph .st3 { fill:#3A3A3A; }
.home-v56 .intro__glyph .st4 { fill:#616161; }
.home-v56 .intro__glyph .st5 { fill:#5C5C5C; }
.home-v56 .intro__glyph .st6 { fill:#FFFFFF; }

/* Replace reconstructed text with the exact official vector signature. */
.home-v56 .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-v56 .intro__architects-mark {
  display: block;
  width: 100%;
  height: auto;
}

.home-v56 .intro.phase-architects .intro__architects {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.home-v56 .intro.phase-handoff .intro__architects,
.home-v56 .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-v56 .intro.phase-handoff .intro__composition,
.home-v56 .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-v56 .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-v56.intro-active .matrix-hero__mark {
  opacity: 0 !important;
}

.home-v56.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .2s ease .04s !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-v56 .intro__glyph,
  .home-v56 .intro__official-matrix .intro__matrix-bg,
  .home-v56 .intro__architects {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* ===== SOURCE: v57-clean-single-glyph-intro.css ===== */

/* Version 57 / Clean single-glyph intro */

/* Disable obsolete auxiliary square. The official SVG square is sufficient. */
.home-v57 .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-v57 .intro__glyph {
  opacity: 0 !important;
  transform: translate(0, 0) !important;
  transition:
    transform 1.02s cubic-bezier(.2,.72,.2,1),
    opacity .58s ease;
}

.home-v57 .intro__glyph > path,
.home-v57 .intro__glyph > polygon,
.home-v57 .intro__glyph > rect {
  transition: fill .72s ease;
}

.home-v57 .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-v57 .intro.phase-entry .intro__glyph.is-cross-source {
  opacity: .42 !important;
}

/* Phase 3: those same eleven glyphs form one clean cross. */
.home-v57 .intro.phase-cross .intro__glyph.is-cross-source,
.home-v57 .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-v57 .intro.phase-entry .intro__glyph.is-cross-source > *,
.home-v57 .intro.phase-cross .intro__glyph.is-cross-source > *,
.home-v57 .intro.phase-cross-hold .intro__glyph.is-cross-source > *,
.home-v57 .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-v57 .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-v57 .intro__official-matrix .intro__matrix-bg {
  opacity: 0 !important;
  transform: scale(.98) !important;
}

.home-v57 .intro.phase-fill .intro__official-matrix .intro__matrix-bg,
.home-v57 .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-v57 .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-v57 .intro.phase-interface .intro__official-matrix .intro__matrix-bg {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.home-v57 .intro.phase-fill .intro__glyph,
.home-v57 .intro.phase-architects .intro__glyph,
.home-v57 .intro.phase-handoff .intro__glyph,
.home-v57 .intro.phase-interface .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Restore the exact official tonal hierarchy only after matrix lock. */
.home-v57 .intro.phase-fill .intro__glyph .st1,
.home-v57 .intro.phase-architects .intro__glyph .st1,
.home-v57 .intro.phase-handoff .intro__glyph .st1,
.home-v57 .intro.phase-interface .intro__glyph .st1 { fill:#131313 !important; }

.home-v57 .intro.phase-fill .intro__glyph .st2,
.home-v57 .intro.phase-architects .intro__glyph .st2,
.home-v57 .intro.phase-handoff .intro__glyph .st2,
.home-v57 .intro.phase-interface .intro__glyph .st2 { fill:#313132 !important; }

.home-v57 .intro.phase-fill .intro__glyph .st3,
.home-v57 .intro.phase-architects .intro__glyph .st3,
.home-v57 .intro.phase-handoff .intro__glyph .st3,
.home-v57 .intro.phase-interface .intro__glyph .st3 { fill:#3A3A3A !important; }

.home-v57 .intro.phase-fill .intro__glyph .st4,
.home-v57 .intro.phase-architects .intro__glyph .st4,
.home-v57 .intro.phase-handoff .intro__glyph .st4,
.home-v57 .intro.phase-interface .intro__glyph .st4 { fill:#616161 !important; }

.home-v57 .intro.phase-fill .intro__glyph .st5,
.home-v57 .intro.phase-architects .intro__glyph .st5,
.home-v57 .intro.phase-handoff .intro__glyph .st5,
.home-v57 .intro.phase-interface .intro__glyph .st5 { fill:#5C5C5C !important; }

.home-v57 .intro.phase-fill .intro__glyph .st6,
.home-v57 .intro.phase-architects .intro__glyph .st6,
.home-v57 .intro.phase-handoff .intro__glyph .st6,
.home-v57 .intro.phase-interface .intro__glyph .st6 { fill:#FFFFFF !important; }

/* ARCHITECTS does not begin until the matrix is completely locked. */
.home-v57 .intro__architects {
  opacity: 0 !important;
  pointer-events: none;
}

.home-v57 .intro.phase-architects .intro__architects {
  opacity: 1 !important;
  transform: translateY(0);
  filter: blur(0);
}

.home-v57 .intro.phase-handoff .intro__architects,
.home-v57 .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-v57.intro-active .matrix-hero__mark {
  opacity: 0 !important;
}

.home-v57.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .18s ease .04s !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-v57 .intro__glyph,
  .home-v57 .intro__glyph > *,
  .home-v57 .intro__official-matrix .intro__matrix-bg {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* ===== SOURCE: v59-36-glyph-assembly.css ===== */
/* Version 59 / 36 official glyphs assemble the logo */

/* Remove every obsolete guide, cross and reconstructed-letter layer. */
.home-v59 .intro__signals,
.home-v59 .intro__axis,
.home-v59 .intro__square,
.home-v59 .intro__cell {
  display: none !important;
}

.home-v59 .intro,
.home-v59 .intro__stage {
  background: #050505;
}

.home-v59 .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-v59 .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-v59 .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-v59 .intro.is-preparing .intro__glyph,
.home-v59 .intro.is-preparing .intro__official-matrix .intro__matrix-bg,
.home-v59 .intro.is-preparing .intro__architects {
  transition: none !important;
}

/* All 36 glyphs travel directly to their final official matrix positions. */
.home-v59 .intro.phase-entry .intro__glyph,
.home-v59 .intro.phase-settle .intro__glyph,
.home-v59 .intro.phase-architects .intro__glyph,
.home-v59 .intro.phase-handoff .intro__glyph,
.home-v59 .intro.phase-interface .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Preserve every original fill value throughout the complete motion. */
.home-v59 .intro__glyph .st1 { fill:#131313 !important; }
.home-v59 .intro__glyph .st2 { fill:#313132 !important; }
.home-v59 .intro__glyph .st3 { fill:#3A3A3A !important; }
.home-v59 .intro__glyph .st4 { fill:#616161 !important; }
.home-v59 .intro__glyph .st5 { fill:#5C5C5C !important; }
.home-v59 .intro__glyph .st6 { fill:#FFFFFF !important; }

.home-v59 .intro.phase-settle .intro__official-matrix .intro__matrix-bg,
.home-v59 .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-v59 .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-v59 .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-v59 .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-v59 .intro.phase-architects .intro__architects {
  opacity: 1 !important;
  transform: translateY(0);
  filter: blur(0);
}

.home-v59 .intro.phase-handoff .intro__architects,
.home-v59 .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-v59 .intro.phase-handoff .intro__composition,
.home-v59 .intro.phase-interface .intro__composition {
  left: var(--intro-target-left);
  top: var(--intro-target-top);
  width: var(--intro-target-size);
}

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

.home-v59.intro-interface-ready .matrix-hero__mark {
  opacity: 1 !important;
  transition: opacity .18s ease .04s !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-v59 .intro__glyph,
  .home-v59 .intro__official-matrix .intro__matrix-bg,
  .home-v59 .intro__architects {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* ===== SOURCE: v60-long-range-glyph-entry.css ===== */

/* Version 60 / Long-range viewport-edge entry */

/*
  The exact official glyphs now travel for longer from the physical viewport
  boundaries. Their destination geometry and original gradient are unchanged.
*/
.home-v60 .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-v60 .intro.phase-entry .intro__glyph,
.home-v60 .intro.phase-settle .intro__glyph,
.home-v60 .intro.phase-architects .intro__glyph,
.home-v60 .intro.phase-handoff .intro__glyph,
.home-v60 .intro.phase-interface .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Give the completed matrix a quiet pause before ARCHITECTS appears. */
.home-v60 .intro.phase-settle .intro__official-matrix .intro__matrix-bg,
.home-v60 .intro.phase-architects .intro__official-matrix .intro__matrix-bg,
.home-v60 .intro.phase-handoff .intro__official-matrix .intro__matrix-bg,
.home-v60 .intro.phase-interface .intro__official-matrix .intro__matrix-bg {
  transition-duration: .98s, 1.08s !important;
}

@media (max-width: 720px) {
  .home-v60 .intro__glyph {
    transition-duration: 2.08s, .22s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v60 .intro__glyph {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* ===== SOURCE: v78-soft-sticky-chapters.css ===== */
/* Version 78 / Soft-sticky Capabilities and Process chapters
   The document now keeps moving while only the supporting visual remains
   sticky. This preserves the active-image sequences without making the
   interface feel frozen or scroll-trapped. */

@media (min-width: 1001px) {
  /* ============================================================
     Capabilities: natural text flow + sticky visual
     ============================================================ */

  .home-v78 .journey-services {
    height: auto !important;
    padding: clamp(104px, 10vw, 154px) 0 clamp(112px, 11vw, 168px);
  }

  .home-v78 .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-v78 .journey-services .journey-section-head {
    margin-bottom: clamp(54px, 6vw, 86px);
  }

  .home-v78 .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-v78 .journey-services__list {
    align-self: start;
  }

  .home-v78 .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-v78 .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-v78 .journey-process-v28 {
    height: auto !important;
    padding: clamp(104px, 10vw, 154px) 0 clamp(112px, 11vw, 168px);
  }

  .home-v78 .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-v78 .journey-process-v28 .journey-section-head {
    margin-bottom: clamp(54px, 6vw, 86px);
  }

  .home-v78 .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-v78 .journey-process__steps {
    position: relative;
    height: auto !important;
    min-height: 0;
    display: block !important;
    align-self: start !important;
  }

  .home-v78 .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-v78 .journey-process__steps > .journey-text-link {
    display: inline-flex;
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .home-v78 .journey-process__rail {
    bottom: 74px;
  }

  .home-v78 .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-v78 .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-v78 .journey-section-head__scroll-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v78 .journey-services__visual,
  .home-v78 .journey-process__visual {
    position: relative !important;
    top: auto !important;
  }
}

/* ===== SOURCE: v89-saturation-depth.css ===== */
/* V89 — five-card saturation depth
   All visible cards remain fully opaque. Visual depth combines overlap, scale,
   vertical offset, stacking order and smoothly interpolated saturation. */

.home-v89 .simple-work {
  position: relative;
  padding: clamp(84px, 9vw, 140px) 0;
  overflow: hidden;
  background: #080808;
  color: #fff;
}

.home-v89 .simple-work__header {
  padding-bottom: clamp(32px, 4vw, 54px);
}

.home-v89 .simple-work__header > div { max-width: 800px; }
.home-v89 .simple-work__header h2 { max-width: 760px; margin: 0; }
.home-v89 .simple-work__intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.56);
  line-height: 1.6;
}

.home-v89 .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-v89 .simple-carousel__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(520px, 45vw, 650px);
  overflow: hidden;
  isolation: isolate;
}

.home-v89 .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-v89 .simple-carousel__slide[hidden] { display: block !important; }

.home-v89 .simple-carousel__slide.is-active,
.home-v89 .simple-carousel__slide.is-previous,
.home-v89 .simple-carousel__slide.is-next,
.home-v89 .simple-carousel__slide.is-far-previous,
.home-v89 .simple-carousel__slide.is-far-next {
  opacity: 1;
  visibility: visible;
}

.home-v89 .simple-carousel__slide.is-active { --card-saturation: 1; }
.home-v89 .simple-carousel__slide.is-previous,
.home-v89 .simple-carousel__slide.is-next { --card-saturation: .6; }
.home-v89 .simple-carousel__slide.is-far-previous,
.home-v89 .simple-carousel__slide.is-far-next { --card-saturation: .3; }

.home-v89 .simple-carousel__slide.is-active {
  z-index: 5;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.home-v89 .simple-carousel__slide.is-previous,
.home-v89 .simple-carousel__slide.is-next {
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.home-v89 .simple-carousel__slide.is-previous {
  transform: translate3d(calc(-50% - clamp(230px, 21vw, 320px)), 34px, 0) scale(.84);
}

.home-v89 .simple-carousel__slide.is-next {
  transform: translate3d(calc(-50% + clamp(230px, 21vw, 320px)), 34px, 0) scale(.84);
}

.home-v89 .simple-carousel__slide.is-far-previous,
.home-v89 .simple-carousel__slide.is-far-next {
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.home-v89 .simple-carousel__slide.is-far-previous {
  transform: translate3d(calc(-50% - clamp(400px, 34vw, 520px)), 64px, 0) scale(.72);
}

.home-v89 .simple-carousel__slide.is-far-next {
  transform: translate3d(calc(-50% + clamp(400px, 34vw, 520px)), 64px, 0) scale(.72);
}

.home-v89 .simple-carousel__image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.home-v89 .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-v89 .simple-carousel__meta {
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease .18s;
}

.home-v89 .simple-carousel__slide.is-active .simple-carousel__meta {
  opacity: 1;
  visibility: visible;
}

.home-v89 .simple-carousel__meta-top,
.home-v89 .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-v89 .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-v89 .simple-carousel__meta h3 a { color: inherit; text-decoration: none; }

.home-v89 .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-v89 .simple-carousel__arrow:hover,
.home-v89 .simple-carousel__arrow:focus-visible {
  background: #fff;
  color: #080808;
  border-color: #fff;
}

.home-v89 .simple-work__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.home-v89 .simple-carousel__counter,
.home-v89 .simple-work__all {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-v89 .simple-carousel__counter { color: rgba(255,255,255,.48); }
.home-v89 .simple-work__all { color: #fff; text-decoration: none; }

/* Testimonials stay a static grid. */
.home-v89 .journey-testimonials {
  padding: clamp(84px, 9vw, 140px) 0;
  background: #f0eee8;
  color: #111;
}
.home-v89 .journey-testimonials__header { display: block; padding-bottom: clamp(30px, 4vw, 50px); }
.home-v89 .journey-testimonials__header > div { max-width: 850px; }
.home-v89 .journey-testimonials__header h2 { margin: 0; }
.home-v89 .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-v89 .testimonial-grid-wrap { width: min(100% - 40px, 1360px); margin: 0 auto; }
.home-v89 .testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.home-v89 .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-v89 .testimonial-card__top,
.home-v89 .testimonial-card footer { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.home-v89 .testimonial-card__top,
.home-v89 .testimonial-card footer span,
.home-v89 .testimonial-card footer strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.home-v89 .testimonial-card blockquote {
  margin: 42px 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-style: normal;
}
.home-v89 .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-v89 .simple-carousel__stage { height: clamp(500px, 62vw, 620px); }
  .home-v89 .simple-carousel__slide { --card-width: clamp(330px, 46vw, 450px); }
  .home-v89 .simple-carousel__slide.is-previous {
    transform: translate3d(calc(-50% - clamp(220px, 30vw, 300px)), 34px, 0) scale(.82);
  }
  .home-v89 .simple-carousel__slide.is-next {
    transform: translate3d(calc(-50% + clamp(220px, 30vw, 300px)), 34px, 0) scale(.82);
  }
  .home-v89 .simple-carousel__slide.is-far-previous,
  .home-v89 .simple-carousel__slide.is-far-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  .home-v89 .simple-carousel {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 18px;
  }
  .home-v89 .simple-carousel__stage {
    grid-column: 1 / -1;
    grid-row: 1;
    height: min(126vw, 610px);
  }
  .home-v89 .simple-carousel__slide { --card-width: min(76vw, 430px); }
  .home-v89 .simple-carousel__slide.is-previous {
    transform: translate3d(calc(-50% - 57vw), 32px, 0) scale(.70);
  }
  .home-v89 .simple-carousel__slide.is-next {
    transform: translate3d(calc(-50% + 57vw), 32px, 0) scale(.70);
  }
  .home-v89 .simple-carousel__arrow { width: 100%; height: 46px; grid-row: 2; }
  .home-v89 .simple-carousel__arrow--prev { grid-column: 1; }
  .home-v89 .simple-carousel__arrow--next { grid-column: 2; }
  .home-v89 .simple-carousel__meta-top,
  .home-v89 .simple-carousel__meta-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .home-v89 .simple-work__footer { align-items: flex-start; flex-direction: column; }
  .home-v89 .testimonial-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .home-v89 .simple-carousel__slide,
  .home-v89 .simple-carousel__meta,
  .home-v89 .simple-carousel__image {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}

/* ===== SOURCE: v90-density-and-copy.css ===== */
/* V90 — reduced saturation + tighter section rhythm + refined testimonials */

/* Carousel saturation tuning */
.home-v90 .simple-carousel__slide.is-active { --card-saturation: 1; }
.home-v90 .simple-carousel__slide.is-previous,
.home-v90 .simple-carousel__slide.is-next { --card-saturation: .4; }
.home-v90 .simple-carousel__slide.is-far-previous,
.home-v90 .simple-carousel__slide.is-far-next { --card-saturation: .1; }

/* Overall vertical rhythm */
.home-v90 .journey-intro {
  min-height: auto;
  gap: clamp(42px, 7vw, 96px);
  padding-top: clamp(84px, 10vw, 150px);
  padding-bottom: clamp(84px, 10vw, 150px);
}

.home-v90 .journey-intro__images { min-height: 620px; }
.home-v90 .journey-intro__statement h2 { margin: 18px 0 24px; }
.home-v90 .journey-intro__statement > p:not(.journey-index) { margin-bottom: 24px; }

@media (min-width: 1001px) {
  .home-v90 .journey-services {
    padding: clamp(76px, 8vw, 118px) 0 clamp(84px, 8.5vw, 124px);
  }

  .home-v90 .journey-services .journey-section-head {
    margin-bottom: clamp(34px, 4vw, 56px);
  }

  .home-v90 .journey-services__layout {
    gap: clamp(38px, 5vw, 72px);
  }

  .home-v90 .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-v90 .journey-services__visual {
    top: calc(var(--header) + 20px) !important;
    height: min(60svh, 620px) !important;
    min-height: 420px !important;
  }

  .home-v90 .journey-process-v28 {
    padding: clamp(76px, 8vw, 118px) 0 clamp(84px, 8.5vw, 124px);
  }

  .home-v90 .journey-process-v28 .journey-section-head {
    margin-bottom: clamp(36px, 4vw, 58px);
  }

  .home-v90 .journey-process__layout {
    gap: clamp(38px, 5vw, 72px);
  }

  .home-v90 .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-v90 .journey-process__steps > .journey-text-link {
    margin-top: 22px;
    margin-bottom: 6px;
  }

  .home-v90 .journey-process__rail {
    bottom: 56px;
  }

  .home-v90 .journey-process__visual {
    top: calc(var(--header) + 20px) !important;
    height: min(60svh, 620px) !important;
    min-height: 420px !important;
  }
}

.home-v90 .journey-principles-v28__inner {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.home-v90 .journey-principles-v28__intro {
  margin-bottom: clamp(42px, 5vw, 68px);
}

.home-v90 .journey-principle-v28 {
  min-height: 220px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-v90 .journey-principle-v28 h3 {
  margin: clamp(38px, 4vw, 64px) 0 12px;
}

.home-v90 .journey-practice {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

.home-v90 .journey-practice__details > p { max-width: 56ch; }

.home-v90 .journey-testimonials {
  padding: clamp(54px, 6vw, 84px) 0;
}

.home-v90 .journey-testimonials__header {
  padding-bottom: clamp(20px, 3vw, 30px);
}

.home-v90 .journey-testimonials__header > div > p:last-child {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.home-v90 .testimonial-grid {
  gap: 14px;
}

.home-v90 .testimonial-card {
  min-height: 230px;
  padding: clamp(18px, 2vw, 26px);
}

.home-v90 .testimonial-card blockquote {
  margin: 24px 0;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.34;
}

.home-v90 .testimonial-card footer {
  padding-top: 14px;
}

.home-v90 .journey-contact__copy {
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

@media (max-width: 1000px) {
  .home-v90 .journey-intro {
    padding-top: 72px;
    padding-bottom: 78px;
    gap: 30px;
  }

  .home-v90 .journey-intro__images { min-height: 0; }
  .home-v90 .journey-services,
  .home-v90 .journey-process-v28,
  .home-v90 .journey-principles-v28__inner,
  .home-v90 .journey-practice,
  .home-v90 .journey-testimonials {
    padding-top: 64px;
    padding-bottom: 68px;
  }
}

@media (max-width: 760px) {
  .home-v90 .testimonial-card {
    min-height: 0;
  }

  .home-v90 .testimonial-card blockquote {
    font-size: 17px;
  }
}

/* ===== SOURCE: v92-projects-testimonials.css ===== */
/* V92 — editorial testimonials and two-project integration */
.home-v92 .editorial-testimonials{background:#080808;color:#f5f4ef;border-top:1px solid rgba(255,255,255,.12);padding-top:clamp(72px,8vw,122px)}
.home-v92 .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-v92 .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-v92 .editorial-testimonials__rule{display:block;width:38px;border-top:1px solid rgba(255,255,255,.72)}
.home-v92 .editorial-testimonials__intro{color:rgba(255,255,255,.62);font-size:13px;line-height:1.65}
.home-v92 .editorial-testimonials__intro p{margin:0 0 5px}
.home-v92 .editorial-testimonials__arrows{display:flex;gap:34px}
.home-v92 .editorial-testimonials__arrows button{border:0;background:transparent;color:#fff;font-size:26px;cursor:pointer;padding:8px;transition:opacity .2s ease}
.home-v92 .editorial-testimonials__arrows button:hover{opacity:.55}
.home-v92 .editorial-testimonials__stage{position:relative;display:grid;grid-template-columns:minmax(0,1fr) 90px;gap:0;padding-bottom:clamp(58px,7vw,96px)}
.home-v92 .editorial-testimonial{display:grid;grid-template-columns:minmax(360px,.92fr) minmax(390px,1.08fr);min-height:500px}
.home-v92 .editorial-testimonial[hidden]{display:none}
.home-v92 .editorial-testimonial figure{margin:0;min-height:500px;overflow:hidden;background:#111}
.home-v92 .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-v92 .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-v92 .editorial-testimonial__quote>span{font-size:56px;line-height:.5;color:rgba(255,255,255,.7)}
.home-v92 .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-v92 .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-v92 .editorial-testimonial footer span{color:rgba(255,255,255,.48)}
.home-v92 .editorial-testimonials__index{display:flex;flex-direction:column;justify-content:center;gap:24px;padding-left:32px}
.home-v92 .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-v92 .editorial-testimonials__index button.is-active{color:#fff}
.home-v92 .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-v92 .editorial-testimonials__clients{border-top:1px solid rgba(255,255,255,.12);padding:34px 0}
.home-v92 .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-v92 .editorial-testimonials__clients span,.home-v92 .editorial-testimonials__clients strong{font-size:10px;letter-spacing:.1em;text-transform:uppercase;font-weight:400}
.home-v92 .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-v92 .editorial-testimonials__top{grid-template-columns:1fr}.home-v92 .editorial-testimonials__arrows{justify-self:start}.home-v92 .editorial-testimonials__stage{grid-template-columns:1fr}.home-v92 .editorial-testimonial{grid-template-columns:1fr}.home-v92 .editorial-testimonial figure{min-height:52vw}.home-v92 .editorial-testimonial__quote{border-right:0}.home-v92 .editorial-testimonials__index{flex-direction:row;padding:24px 0 0;gap:26px}.home-v92 .editorial-testimonials__index button.is-active:after{display:none}.home-v92 .editorial-testimonials__clients .journey-shell{grid-template-columns:repeat(3,1fr)}.home-v92 .editorial-testimonials__clients span{grid-column:1/-1}.home-v92 .editorial-testimonials__clients strong{text-align:left}}
@media(max-width:600px){.home-v92 .editorial-testimonials{padding-top:58px}.home-v92 .editorial-testimonial figure{min-height:74vw}.home-v92 .editorial-testimonial__quote{padding:32px 0}.home-v92 .editorial-testimonial blockquote{font-size:22px}.home-v92 .editorial-testimonials__clients .journey-shell{grid-template-columns:repeat(2,1fr)}}

/* ===== SOURCE: v94-testimonial-image-proportion.css ===== */
/* V94 — normalize all testimonial images to one stable frame */
.home-v94 .editorial-testimonial {
  min-height: 0;
  align-items: center;
}

.home-v94 .editorial-testimonial figure {
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  align-self: center;
}

.home-v94 .editorial-testimonial figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-v94 .editorial-testimonial__quote {
  align-self: stretch;
}

@media (max-width: 900px) {
  .home-v94 .editorial-testimonial figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .home-v94 .editorial-testimonial figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* ===== SOURCE: v95-testimonial-text-frame.css ===== */
/* V95 — stable testimonial text geometry
   Image, quote, and attribution now occupy fixed regions so changing quote
   length does not resize or shift the overall testimonial composition. */

@media (min-width: 901px) {
  .home-v95 .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-v95 .editorial-testimonial figure {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
  }

  .home-v95 .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-v95 .editorial-testimonial__quote > span {
    align-self: start;
  }

  .home-v95 .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-v95 .editorial-testimonial footer {
    align-self: end;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .home-v95 .editorial-testimonial {
    min-height: 0;
    align-items: stretch;
  }

  .home-v95 .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-v95 .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-v95 .editorial-testimonial footer {
    align-self: end;
  }
}

@media (max-width: 600px) {
  .home-v95 .editorial-testimonial__quote {
    min-height: 300px;
  }

  .home-v95 .editorial-testimonial blockquote {
    font-size: 20px;
    line-height: 1.42;
  }
}

/* ===== SOURCE: v101-testimonial-autoplay.css ===== */
/* V101 — quieter testimonial navigation, reading-time autoplay and stable transitions */

.home-v101 .editorial-testimonials__top {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
}

.home-v101 .editorial-testimonials__arrows {
  display: none;
}

.home-v101 .editorial-testimonials__slides {
  display: grid;
  min-width: 0;
  isolation: isolate;
}

.home-v101 .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-v101 .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-v101 .editorial-testimonial.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-10px, 0, 0);
  transition-delay: 0s;
  z-index: 1;
}

.home-v101 .editorial-testimonial[hidden] {
  display: none;
}

.home-v101 .editorial-testimonials__index {
  align-items: center;
  gap: 12px;
  padding-left: 28px;
}

.home-v101 .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-v101 .editorial-testimonials__index button::before,
.home-v101 .editorial-testimonials__index button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform-origin: left center;
}

.home-v101 .editorial-testimonials__index button::before {
  background: rgba(255,255,255,.22);
  transition: background-color 240ms ease;
}

.home-v101 .editorial-testimonials__index button::after {
  background: rgba(255,255,255,.9);
  transform: scaleX(0);
}

.home-v101 .editorial-testimonials__index button:hover::before,
.home-v101 .editorial-testimonials__index button:focus-visible::before {
  background: rgba(255,255,255,.5);
}

.home-v101 .editorial-testimonials__index button:focus-visible {
  outline: 1px solid rgba(255,255,255,.72);
  outline-offset: 3px;
}

.home-v101 .editorial-testimonials__index button.is-active::after {
  animation: testimonialLineProgress var(--testimonial-duration) linear forwards;
}

.home-v101 .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-v101 .editorial-testimonials__top {
    grid-template-columns: 1fr;
  }

  .home-v101 .editorial-testimonials__index {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 24px 0 0;
  }

  .home-v101 .editorial-testimonials__index button {
    width: clamp(34px, 10vw, 52px);
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v101 .editorial-testimonial {
    transition: none;
    transform: none;
  }

  .home-v101 .editorial-testimonials__index button.is-active::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* ===== SOURCE: v102-testimonial-reliability.css ===== */
/* V102 — complete testimonial copy and reliable autoplay
   Keeps the stable V95 composition without truncating quote content. */

.home-v102 .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-v102 .editorial-testimonial__quote {
  overflow: hidden;
}

.home-v102 .editorial-testimonials__index button {
  --testimonial-duration: 9000ms;
}

@media (min-width: 901px) {
  .home-v102 .editorial-testimonial__quote {
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: clamp(28px, 3.6vw, 52px);
  }

  .home-v102 .editorial-testimonial blockquote {
    width: 100%;
    max-width: 760px;
    margin: 14px 0;
  }
}

@media (max-width: 900px) {
  .home-v102 .editorial-testimonial__quote {
    min-height: 340px;
  }

  .home-v102 .editorial-testimonial blockquote {
    margin: 18px 0;
    font-size: clamp(19px, 4.6vw, 25px);
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  .home-v102 .editorial-testimonial__quote {
    min-height: 320px;
  }

  .home-v102 .editorial-testimonial blockquote {
    font-size: clamp(18px, 5.2vw, 22px);
  }
}

/* ===== SOURCE: v103-final-visual-refinement.css ===== */
/* V103 — final visual-art-direction pass
   Loaded last, scoped through .visual-audit-v103 and intentionally limited to
   spacing, proportion, image framing, hierarchy and responsive polish. */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visual-audit-v103.home-v102 .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-v103.home-v102 .journey-services__visual,
.visual-audit-v103.home-v102 .journey-process__visual {
  height: min(57svh, 590px) !important;
  min-height: 400px !important;
}

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

.visual-audit-v103.home-v102 .journey-principles-v28__inner {
  padding-top: clamp(62px, 6.5vw, 92px);
  padding-bottom: clamp(62px, 6.5vw, 92px);
}

.visual-audit-v103.home-v102 .journey-principles-v28__intro {
  margin-bottom: clamp(34px, 4vw, 54px);
}

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

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

.visual-audit-v103.home-v102 .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-v103.home-v102 .journey-practice {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
}

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

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

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

.visual-audit-v103.home-v102 .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-v103 .projects-list-hero {
  padding-top: calc(var(--header) + 72px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visual-audit-v103.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-v103 .page-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 44px);
    padding-bottom: 42px;
    gap: 36px;
  }

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

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

  .visual-audit-v103.home-v102 .journey-intro,
  .visual-audit-v103.home-v102 .journey-services,
  .visual-audit-v103.home-v102 .journey-process-v28,
  .visual-audit-v103.home-v102 .journey-principles-v28__inner,
  .visual-audit-v103.home-v102 .journey-practice {
    padding-top: 62px;
    padding-bottom: 66px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .visual-audit-v103 .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-v103.home-v102 .journey-intro {
    grid-template-columns: 1fr !important;
  }

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

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

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

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

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

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

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

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

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

/* ===== SOURCE: v104-testimonial-timing.css ===== */
/* V104 — quiet testimonial indicators and shorter autoplay interval */

.visual-audit-v103.home-v104 .editorial-testimonials__index button::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.visual-audit-v103.home-v104 .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-v103.home-v104 .editorial-testimonials__index button.is-active::before {
  background: rgba(255,255,255,.92);
  transform: scaleX(1);
}

.visual-audit-v103.home-v104 .editorial-testimonials__index button:hover::before,
.visual-audit-v103.home-v104 .editorial-testimonials__index button:focus-visible::before {
  background: rgba(255,255,255,.62);
  transform: scaleX(.88);
}

.visual-audit-v103.home-v104 .editorial-testimonials__index button.is-active:hover::before,
.visual-audit-v103.home-v104 .editorial-testimonials__index button.is-active:focus-visible::before {
  background: #fff;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .visual-audit-v103.home-v104 .editorial-testimonials__index button::before {
    transition: none !important;
  }
}

/* ===== SOURCE: v105-testimonial-crossfade.css ===== */
/* V105 — slower editorial testimonial crossfade
   Reading time remains unchanged; only the transition becomes longer,
   softer and more layered. */

.visual-audit-v103.home-v105 .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-v103.home-v105 .editorial-testimonial.is-active {
  transform: translate3d(0, 0, 0);
  transition-delay: 140ms, 140ms, 0s;
}

.visual-audit-v103.home-v105 .editorial-testimonial.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-4px, 0, 0);
  transition-delay: 0s;
}

.visual-audit-v103.home-v105 .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-v103.home-v105 .editorial-testimonial:not(.is-active):not(.is-leaving) figure img {
  opacity: .88;
  transform: scale(1.008);
}

.visual-audit-v103.home-v105 .editorial-testimonial.is-active figure img {
  opacity: 1;
  transform: scale(1);
}

.visual-audit-v103.home-v105 .editorial-testimonial.is-leaving figure img {
  opacity: .74;
  transform: scale(.997);
}

@media (prefers-reduced-motion: reduce) {
  .visual-audit-v103.home-v105 .editorial-testimonial,
  .visual-audit-v103.home-v105 .editorial-testimonial figure img {
    transition: none !important;
    transform: none !important;
  }
}

/* ===== SOURCE: v107-matrix-links-image-diversity.css ===== */
/* V107 — broader matrix curation and explicit project navigation */
.home-v107 .project-matrix__cell { cursor: pointer; }
.home-v107 .project-matrix__cell:focus-visible {
  outline: 1px solid rgba(255,255,255,.9);
  outline-offset: -2px;
}
@media (hover:hover) {
  .home-v107 .project-matrix__cell:hover { cursor: pointer; }
}

/* ===== SOURCE: v108-cursor-and-font-readiness.css ===== */
/* V108 — quieter matrix cursor + webfont-ready stack */

.home-v108 .project-matrix__cell,
.home-v108 .project-matrix__cell:hover,
.home-v108 .project-matrix__cell:active,
.home-v108 .project-matrix__cell:focus-visible {
  cursor: default !important;
}

/* ===== SOURCE: v109-matrix-crosshair.css ===== */
/* V109 — match the homepage matrix cursor to the project-page reveal matrix */
.home-v109 .project-matrix__cell,
.home-v109 .project-matrix__cell:hover,
.home-v109 .project-matrix__cell:active,
.home-v109 .project-matrix__cell:focus-visible {
  cursor: crosshair !important;
}

/* ===== SOURCE: v111-testimonial-sequential-text-fade.css ===== */
/* V111 — sequential testimonial text fade
   The reading interval remains unchanged. Images may crossfade, but quotes
   never sit visibly on top of one another at competing opacity levels. */

.visual-audit-v103.home-v111 .editorial-testimonial {
  opacity: 1;
  visibility: hidden;
  transform: none;
  transition: visibility 0s linear 1480ms;
}

.visual-audit-v103.home-v111 .editorial-testimonial.is-active,
.visual-audit-v103.home-v111 .editorial-testimonial.is-leaving {
  visibility: visible;
  transform: none;
}

.visual-audit-v103.home-v111 .editorial-testimonial.is-active {
  z-index: 2;
  pointer-events: auto;
  transition-delay: 0s;
}

.visual-audit-v103.home-v111 .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-v103.home-v111 .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-v103.home-v111 .editorial-testimonial.is-active figure,
.visual-audit-v103.home-v111 .editorial-testimonial.is-leaving figure {
  opacity: 1;
}

.visual-audit-v103.home-v111 .editorial-testimonial.is-active figure {
  transform: scale(1);
}

.visual-audit-v103.home-v111 .editorial-testimonial.is-leaving figure {
  transform: scale(.998);
}

.visual-audit-v103.home-v111 .editorial-testimonial figure img,
.visual-audit-v103.home-v111 .editorial-testimonial.is-active figure img,
.visual-audit-v103.home-v111 .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-v103.home-v111 .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-v103.home-v111 .editorial-testimonial.is-active .editorial-testimonial__quote {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.visual-audit-v103.home-v111 .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-v103.home-v111 .editorial-testimonial,
  .visual-audit-v103.home-v111 .editorial-testimonial figure,
  .visual-audit-v103.home-v111 .editorial-testimonial figure img,
  .visual-audit-v103.home-v111 .editorial-testimonial__quote {
    transition: none !important;
    transform: none !important;
  }
}

/* ===== SOURCE: v117-scroll-parallax-identity.css ===== */
/* V117 — scroll-controlled identity assembly into the homepage matrix */

.home-v117 {
  --v117-intro-opacity: 1;
  --v117-intro-bg-opacity: 1;
  --v117-matrix-opacity: 0;
  --v117-preview-opacity: 0;
  --v117-header-opacity: 0;
}

/* The old intro locked the page while timers ran. V117 keeps native scrolling. */
.home-v117.intro-active,
.home-v117.identity-parallax-active {
  overflow-y: auto !important;
}

.home-v117 .project-matrix--hero {
  height: 190svh !important;
  min-height: 190svh !important;
}

.home-v117 .project-matrix--hero .project-matrix__shell {
  position: sticky !important;
  top: 0 !important;
  height: 100svh !important;
}

.home-v117 .matrix-hero__stage {
  transform: none !important;
}

/* One fixed identity layer, controlled entirely by scroll position. */
.home-v117 .intro {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 150 !important;
  overflow: hidden !important;
  opacity: var(--v117-intro-opacity) !important;
  visibility: visible !important;
  pointer-events: none !important;
  background: rgba(5, 5, 5, var(--v117-intro-bg-opacity)) !important;
  transition: none !important;
}

.home-v117.identity-complete .intro {
  visibility: hidden !important;
}

.home-v117 .intro.is-dormant {
  display: block !important;
}

.home-v117 .intro__stage {
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  transition: none !important;
}

.home-v117 .intro__composition {
  position: absolute !important;
  left: var(--v117-composition-left, var(--intro-origin-left)) !important;
  top: var(--v117-composition-top, var(--intro-origin-top)) !important;
  width: var(--v117-composition-size, var(--intro-logo-size)) !important;
  opacity: var(--v117-composition-opacity, 1) !important;
  transform: none !important;
  transition: none !important;
  will-change: left, top, width, opacity;
}

.home-v117 .intro__official-matrix,
.home-v117 .intro__official-matrix * {
  transition: none !important;
}

.home-v117 .intro__glyph {
  opacity: var(--v117-glyph-opacity, 0) !important;
  transform: translate(
    var(--v117-glyph-x, var(--entry-x, 0px)),
    var(--v117-glyph-y, var(--entry-y, 0px))
  ) !important;
  transform-box: view-box !important;
  transform-origin: center !important;
  transition: none !important;
  will-change: transform, opacity;
}

.home-v117 .intro__official-matrix .intro__matrix-bg {
  opacity: var(--v117-square-opacity, 0) !important;
  transform: scale(var(--v117-square-scale, .985)) !important;
  transform-box: fill-box !important;
  transform-origin: center !important;
  transition: none !important;
}

.home-v117 .intro__architects {
  opacity: var(--v117-architects-opacity, 0) !important;
  transform: translateY(var(--v117-architects-y, 6px)) !important;
  filter: blur(var(--v117-architects-blur, .7px)) !important;
  transition: none !important;
}


.home-v117 .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(--v117-scroll-cue-opacity, 1);
  pointer-events: none;
}

.home-v117 .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-v117 .matrix-hero__mark {
  opacity: var(--v117-matrix-opacity) !important;
  transition: none !important;
}

.home-v117 .matrix-hero__preview,
.home-v117 .matrix-hero__replay {
  opacity: var(--v117-preview-opacity) !important;
  transform: translateY(calc((1 - var(--v117-preview-opacity)) * 10px)) !important;
  transition: none !important;
}

.home-v117 .site-header {
  opacity: var(--v117-header-opacity) !important;
  pointer-events: none;
  transition: none !important;
}

.home-v117.identity-interface-ready .site-header {
  pointer-events: auto;
}

.home-v117 .project-matrix__hotspots,
.home-v117 .matrix-hero__replay,
.home-v117 .matrix-hero__preview a {
  pointer-events: none !important;
}

.home-v117.identity-complete .project-matrix__hotspots,
.home-v117.identity-complete .matrix-hero__replay,
.home-v117.identity-complete .matrix-hero__preview a {
  pointer-events: auto !important;
}

/* Keep final-stage content visually stable during the assembly. */
.home-v117 .matrix-hero__mark,
.home-v117 .matrix-hero__preview,
.home-v117 .site-header {
  will-change: opacity, transform;
}

@media (max-width: 980px) {
  .home-v117 .project-matrix--hero {
    height: 150svh !important;
    min-height: 150svh !important;
  }

  .home-v117 .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-v117 .matrix-hero__stage {
    align-self: center !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    height: auto;
  }

  .home-v117 .matrix-hero__mark {
    width: min(48vw, 250px) !important;
  }

  .home-v117 .matrix-hero__preview {
    width: min(100%, 620px) !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__media {
    aspect-ratio: 16 / 6.4 !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__copy {
    min-height: 0 !important;
    padding-top: 10px !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__copy > p:first-child {
    margin-bottom: 10px !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__copy h3 {
    font-size: clamp(25px, 5.4vw, 38px) !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__view {
    margin-top: 5px !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__meta {
    margin-top: 9px !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__link {
    margin-top: 10px !important;
  }
}

@media (max-width: 620px) {
  .home-v117 .project-matrix--hero {
    height: 142svh !important;
    min-height: 142svh !important;
  }

  .home-v117 .matrix-hero__mark {
    width: min(50vw, 210px) !important;
  }

  .home-v117 .matrix-hero__preview .project-matrix__media {
    aspect-ratio: 16 / 6 !important;
  }

  .home-v117 .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-v117 .matrix-hero__preview .project-matrix__link {
    justify-self: end !important;
    align-self: end !important;
    margin-top: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v117 .project-matrix--hero {
    height: auto !important;
    min-height: 100svh !important;
  }

  .home-v117 .intro {
    display: none !important;
  }

  .home-v117 .matrix-hero__mark,
  .home-v117 .matrix-hero__preview,
  .home-v117 .matrix-hero__replay,
  .home-v117 .site-header {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-v117 .project-matrix__hotspots,
  .home-v117 .matrix-hero__replay,
  .home-v117 .matrix-hero__preview a,
  .home-v117 .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-v117 .intro__stage,
.home-v117 .intro__matrix-shell {
  background: transparent !important;
}

.home-v117 .matrix-hero__replay {
  transform: none !important;
}

/* ===== SOURCE: v118-slower-reformation-parallax.css ===== */
/* V118 — slower staged formation and transparent final matrix */

.home-v118 .project-matrix--hero {
  height: 260svh !important;
  min-height: 260svh !important;
}

/* The central black identity reverses into a light/transparent matrix. */
.home-v118 .intro__official-matrix {
  filter: invert(var(--v118-invert, 0));
  will-change: filter;
}

/* The destination is the transparent tonal glyph grid, not another black square. */
.home-v118 .matrix-hero__mark {
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.home-v118 .matrix-hero__mark > img {
  inset: 10% !important;
  width: 80% !important;
  height: 80% !important;
  filter: invert(1);
  opacity: .96 !important;
}

.home-v118 .project-matrix__hotspots {
  inset: 10% !important;
}

/* A restrained white field appears only while the identity is becoming the matrix. */
.home-v118 .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(--v117-matrix-opacity);
  pointer-events: none;
}

@media (max-width: 980px) {
  .home-v118 .project-matrix--hero {
    height: 205svh !important;
    min-height: 205svh !important;
  }
}

@media (max-width: 620px) {
  .home-v118 .project-matrix--hero {
    height: 178svh !important;
    min-height: 178svh !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v118 .project-matrix--hero {
    height: auto !important;
    min-height: 100svh !important;
  }
}

/* ===== SOURCE: v119-seamless-transparent-matrix.css ===== */
/* V119 — invisible safety zone and restored dark matrix guides */

/* The protection area remains as layout space, not a visible square. */
.home-v119 .intro__official-matrix .intro__matrix-bg,
.home-v119 .intro__square {
  display: none !important;
  fill: transparent !important;
  opacity: 0 !important;
}

.home-v119 .matrix-hero__mark,
.home-v119 .project-matrix__mark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-v119 .matrix-hero__mark::before,
.home-v119 .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-v119 .matrix-hero__mark > img,
.home-v119 .project-matrix__hotspots {
  inset: 10% !important;
}

/* Restore the interaction geometry in dark tones on the light matrix. */
.home-v119 .project-matrix__hotspots::before {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(17,17,15,.25),
    transparent
  ) !important;
}

.home-v119 .project-matrix__hotspots::after {
  background: linear-gradient(
    to right,
    transparent,
    rgba(17,17,15,.25),
    transparent
  ) !important;
}

.home-v119 .project-matrix__cell::before {
  background: rgba(17,17,15,0) !important;
}

.home-v119 .project-matrix__cell:hover::before,
.home-v119 .project-matrix__cell:focus-visible::before,
.home-v119 .project-matrix__cell.is-active::before {
  border-color: rgba(17,17,15,.34) !important;
  background: rgba(17,17,15,.035) !important;
}

.home-v119 .project-matrix__cell:hover > span,
.home-v119 .project-matrix__cell:focus-visible > span,
.home-v119 .project-matrix__cell.is-active > span {
  color: rgba(17,17,15,.48) !important;
}

.home-v119 .project-matrix__cell:focus-visible {
  outline-color: rgba(17,17,15,.76) !important;
}

/* ===== SOURCE: v120-slower-second-formation.css ===== */
/* V120 — slower overall identity sequence, with substantially more scroll
   distance reserved for reversal and second formation. */

.home-v120 .project-matrix--hero {
  height: 330svh !important;
  min-height: 330svh !important;
}

@media (max-width: 980px) {
  .home-v120 .project-matrix--hero {
    height: 265svh !important;
    min-height: 265svh !important;
  }
}

@media (max-width: 620px) {
  .home-v120 .project-matrix--hero {
    height: 225svh !important;
    min-height: 225svh !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v120 .project-matrix--hero {
    height: auto !important;
    min-height: 100svh !important;
  }
}

/* ===== SOURCE: v121-once-per-entry-identity.css ===== */
/* V121 — identity plays once per fresh site entry, then locks. */

/* 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-v121 {
  --v117-intro-opacity: 0;
  --v117-intro-bg-opacity: 0;
  --v117-matrix-opacity: 1;
  --v117-preview-opacity: 1;
  --v117-header-opacity: 1;
}

html.identity-skip-load .home-v121 .intro {
  display: none !important;
  visibility: hidden !important;
}

html.identity-skip-load .home-v121 .site-header,
html.identity-skip-load .home-v121 .matrix-hero__mark,
html.identity-skip-load .home-v121 .matrix-hero__preview,
html.identity-skip-load .home-v121 .matrix-hero__replay {
  opacity: 1 !important;
  transform: none !important;
}

/* Once completed, the identity becomes a normal one-viewport homepage hero. */
.home-v121.identity-locked .project-matrix--hero,
html.identity-skip-load .home-v121 .project-matrix--hero {
  height: 100svh !important;
  min-height: 100svh !important;
}

.home-v121.identity-locked .intro {
  display: none !important;
  visibility: hidden !important;
}

.home-v121.identity-locked .site-header,
.home-v121.identity-locked .matrix-hero__mark,
.home-v121.identity-locked .matrix-hero__preview,
.home-v121.identity-locked .matrix-hero__replay {
  opacity: 1 !important;
  transform: none !important;
}

.home-v121.identity-locked .site-header,
.home-v121.identity-locked .project-matrix__hotspots,
.home-v121.identity-locked .matrix-hero__replay,
.home-v121.identity-locked .matrix-hero__preview a,
html.identity-skip-load .home-v121 .site-header,
html.identity-skip-load .home-v121 .project-matrix__hotspots,
html.identity-skip-load .home-v121 .matrix-hero__replay,
html.identity-skip-load .home-v121 .matrix-hero__preview a {
  pointer-events: auto !important;
}

/* Explicit replay removes identity-locked, restoring V120's long scroll sequence. */
@media (prefers-reduced-motion: reduce) {
  .home-v121 .project-matrix--hero {
    height: 100svh !important;
    min-height: 100svh !important;
  }
}

/* ===== SOURCE: v122-stable-hero-header.css ===== */
/* V122 — stable homepage header across the parallax identity.
   The header remains transparent while overlapping the pale matrix hero,
   then switches directly to its dark site state at the hero boundary. */

.home-v122 .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-v122 .site-header.is-over-hero {
  color: #11110f;
  background: transparent !important;
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-v122 .site-header.is-over-hero .digital-wordmark img {
  filter: invert(1);
}

.home-v122 .site-header.is-over-hero .site-nav > a:not(.nav-cta) {
  color: rgba(17,17,15,.68);
}

.home-v122 .site-header.is-over-hero .site-nav > a:not(.nav-cta):hover {
  color: #11110f;
}

.home-v122 .site-header.is-over-hero .nav-cta {
  color: #11110f;
  border-color: rgba(17,17,15,.34);
}

.home-v122 .site-header.is-over-hero .nav-cta:hover {
  color: #f4f4f0;
  background: #11110f;
}

.home-v122 .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-v122 .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-v122 .site-header:not(.is-over-hero) .digital-wordmark img {
  filter: none;
}

.home-v122 .site-header:not(.is-over-hero) .site-nav > a:not(.nav-cta) {
  color: rgba(255,255,255,.72);
}

.home-v122 .site-header:not(.is-over-hero) .site-nav > a:not(.nav-cta):hover {
  color: #fff;
}

.home-v122 .site-header:not(.is-over-hero) .nav-cta {
  color: #f3f3f0;
  border-color: rgba(255,255,255,.35);
}

.home-v122 .site-header:not(.is-over-hero) .nav-cta:hover {
  color: #080808;
  background: #fff;
}

.home-v122 .site-header:not(.is-over-hero) .menu-toggle span {
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .home-v122 .site-header {
    transition: none !important;
  }
}

/* ===== SOURCE: v123-first-paint-matrix-header.css ===== */
/* V123 — stable first paint and a solid header within the completed matrix. */

/* 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-v123 .intro__composition {
  opacity: 0 !important;
}

/* Header surfaces switch discretely. Opacity remains controlled by the identity. */
.home-v123 .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-v123 .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-v123 .site-header.is-matrix-scrolled .digital-wordmark img {
  filter: none !important;
}

.home-v123 .site-header.is-matrix-scrolled .site-nav > a:not(.nav-cta) {
  color: rgba(255,255,255,.72) !important;
}

.home-v123 .site-header.is-matrix-scrolled .site-nav > a:not(.nav-cta):hover {
  color: #fff !important;
}

.home-v123 .site-header.is-matrix-scrolled .nav-cta {
  color: #f3f3f0 !important;
  border-color: rgba(255,255,255,.35) !important;
}

.home-v123 .site-header.is-matrix-scrolled .nav-cta:hover {
  color: #080808 !important;
  background: #fff !important;
}

.home-v123 .site-header.is-matrix-scrolled .menu-toggle span {
  background: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  html.identity-booting .home-v123 .intro__composition {
    opacity: 1 !important;
  }
}

/* ===== SOURCE: v124-no-flash-first-frame.css ===== */
/* V124 — no blank first frame and no second-frame geometry jump. */

html.identity-booting .home-v124 .intro__composition {
  opacity: 1 !important;
}

.home-v124 .intro__composition,
.home-v124 .intro__glyph,
.home-v124 .intro__official-matrix,
.home-v124 .intro__official-matrix * {
  transition: none !important;
}

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

/* ===== SOURCE: v126-automatic-logo-then-parallax.css ===== */
/* V126 — automatic logo assembly, then scroll-controlled matrix formation. */

/* The first 56% of V120 was scroll-driven. It is now automatic, so only the
   original second-half physical scroll distance remains. */
.home-v126 .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-v126.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-v126.identity-auto-playing .intro.phase-entry .intro__glyph,
.home-v126.identity-auto-playing .intro.phase-settle .intro__glyph,
.home-v126.identity-auto-playing .intro.phase-architects .intro__glyph {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.home-v126.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-v126.identity-auto-playing .intro.phase-architects .intro__architects {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

.home-v126.identity-auto-playing .intro__scroll-cue {
  opacity: 0 !important;
}

/* Preserve the transparent safety zone throughout both chapters. */
.home-v126.identity-auto-playing .intro__official-matrix .intro__matrix-bg,
.home-v126.identity-auto-playing .intro__square {
  display: none !important;
  opacity: 0 !important;
  fill: transparent !important;
}

@media (max-width: 980px) {
  .home-v126 .project-matrix--hero {
    height: 173svh !important;
    min-height: 173svh !important;
  }
}

@media (max-width: 620px) {
  .home-v126 .project-matrix--hero {
    height: 155svh !important;
    min-height: 155svh !important;
  }

  .home-v126.identity-auto-playing .intro__glyph {
    transition-duration: 2.08s, .22s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v126 .project-matrix--hero {
    height: 100svh !important;
    min-height: 100svh !important;
  }
}
