:root {
    --morph-ink: #101010;
    --morph-black: #050505;
    --morph-paper: #ffffff;
    --morph-surface: #f5f5f2;
    --morph-white: #fafaf8;
    --morph-muted: #6f6f69;
    --morph-rule: rgba(16, 16, 16, 0.16);
    --morph-rule-light: rgba(250, 250, 248, 0.2);
    --morph-glass: rgba(250, 250, 248, 0.09);
    --morph-glass-dark: rgba(5, 5, 5, 0.68);
    --morph-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --morph-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --shell: calc(100% - 32px);
    --header-height: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--morph-paper);
    color: var(--morph-ink);
    font-family: var(--morph-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body[data-menu-open="true"] {
    overflow: hidden;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

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

button {
    border: 0;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
}

::selection {
    background: var(--morph-ink);
    color: var(--morph-paper);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
    z-index: 1000;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    white-space: normal;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    padding: 10px 12px;
    background: var(--morph-paper);
    color: var(--morph-ink);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 4px;
}

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

.micro-label,
.section-kicker,
.page-hero__breadcrumb,
.contact-hero__topline,
.empty-state > span,
.hero__eyebrow {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-link,
.arrow-link {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 10px;
    padding-block: 6px;
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: opacity 160ms var(--morph-ease), transform 160ms var(--morph-ease);
}

.text-link--light {
    color: var(--morph-white);
}

.text-link:active,
.arrow-link:active,
.button:active,
.header-contact:active,
.footer-contact__link:active,
.site-footer__top:active,
.contact-method:active,
.project-tile__link:active {
    transform: scale(0.96);
}

.glass-panel,
.glass-control {
    border: 1px solid rgba(250, 250, 248, 0.14);
    background: var(--morph-glass-dark);
    box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.1), 0 10px 30px rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    backdrop-filter: blur(24px) saturate(120%);
}

.button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color 160ms var(--morph-ease), color 160ms var(--morph-ease), transform 160ms var(--morph-ease);
}

.button--solid {
    background: var(--morph-ink);
    color: var(--morph-white);
}

.button--line {
    border: 1px solid currentColor;
    background: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .text-link:hover,
    .arrow-link:hover {
        opacity: 0.56;
    }

    .button--solid:hover {
        background: #30302d;
    }

    .button--line:hover {
        background: var(--morph-ink);
        color: var(--morph-paper);
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--header-height);
    padding-top: 12px;
    color: var(--morph-ink);
    pointer-events: none;
}

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.home .site-header:not([data-scrolled="true"]) {
    color: var(--morph-white);
}
body .site-header:not([data-scrolled="true"]) .site-header__inner {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

@media (min-width: 901px) {
    .home .site-header:not([data-scrolled="true"]) {
        mix-blend-mode: exclusion;
    }
}


.site-header__inner {
    position: relative;
    z-index: 100;
    display: grid;
    min-height: 40px;
    grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
    align-items: center;
    gap: 16px;
    padding-inline: 12px;
    border: 1px solid rgba(16, 16, 16, 0.1);
    background: rgba(255, 255, 255, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        inset 0 -1px 0 rgba(16, 16, 16, 0.035),
        0 10px 30px rgba(0, 0, 0, 0.075);
    pointer-events: auto;
    -webkit-backdrop-filter: blur(26px) saturate(150%);
    backdrop-filter: blur(26px) saturate(150%);
    transition: background-color 160ms var(--morph-ease), border-color 160ms var(--morph-ease), color 160ms var(--morph-ease), box-shadow 160ms var(--morph-ease);
}

.site-header[data-scrolled="true"] .site-header__inner {
    border-color: rgba(16, 16, 16, 0.12);
    background: rgba(255, 255, 255, 0.68);
    color: var(--morph-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(16, 16, 16, 0.045),
        0 12px 34px rgba(0, 0, 0, 0.09);
    -webkit-backdrop-filter: blur(28px) saturate(155%);
    backdrop-filter: blur(28px) saturate(155%);
}

.brand-mark {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.brand-mark > a,
.brand-mark .custom-logo-link {
    display: inline-flex;
}

.brand-mark .custom-logo,
.brand-mark__logo {
    width: auto;
    max-width: 82px;
    max-height: 22px;
    filter: grayscale(1);
}

.home .site-header:not([data-scrolled="true"]) .custom-logo,
.home .site-header:not([data-scrolled="true"]) .brand-mark__logo {
    filter: grayscale(1) invert(1);
}

.primary-navigation .menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.3vw, 38px);
    list-style: none;
}

.primary-navigation a,
.header-contact,
.site-header__location {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.primary-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
}

.primary-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms var(--morph-ease);
}

.primary-navigation .current-menu-item a::after,
.primary-navigation .current-menu-ancestor a::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.site-header__location {
    opacity: 0.55;
}

.header-contact {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 7px;
    transition: opacity 160ms var(--morph-ease), transform 160ms var(--morph-ease);
}

.menu-toggle {
    display: none;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.48);
    color: inherit;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(16, 16, 16, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    backdrop-filter: blur(20px) saturate(170%);
}


.menu-toggle__glyph {
    display: grid;
    width: 15px;
    gap: 4px;
}

.menu-toggle__glyph i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 160ms var(--morph-ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__glyph i:first-child {
    transform: translateY(2.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__glyph i:last-child {
    transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    overflow-y: auto;
    background: rgba(8, 8, 8, 0.72);
    color: var(--morph-white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    -webkit-backdrop-filter: blur(40px) saturate(135%);
    backdrop-filter: blur(40px) saturate(135%);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu__inner {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding-block: 84px 12px;
}

.mobile-menu nav {
    margin: clamp(42px, 8svh, 72px) 0 auto;
}

.mobile-menu .menu {
    display: grid;
    gap: 4px;
    list-style: none;
}

.mobile-menu .menu a {
    display: block;
    padding-block: 3px;
    font-size: clamp(24px, 8vw, 34px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 12px;
    font-size: 10px;
}

.mobile-menu__footer a {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: var(--morph-black);
    color: var(--morph-white);
}

body.admin-bar .hero {
    height: calc(100vh - 32px);
    height: calc(100svh - 32px);
}

@media (max-width: 782px) {
    body.admin-bar .hero {
        height: calc(100vh - 46px);
        height: calc(100svh - 46px);
    }
}

.hero__media,
.hero__media > picture,
.hero__fallback-art {
    position: absolute;
    inset: 0;
}

.hero__media {
    overflow: hidden;
    background: var(--morph-black);
}

.hero__video,
.hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
    transform-origin: 50% 48%;
    will-change: filter, transform;
    animation: morph-hero-media-in 1600ms var(--morph-ease) 120ms both;
}

.hero__fallback-art {
    overflow: hidden;
    background: #080808;
}

.hero__fallback-art::before,
.hero__fallback-art::after {
    position: absolute;
    content: "";
}

.hero__fallback-art::before {
    top: 12%;
    left: 54%;
    width: min(34vw, 520px);
    aspect-ratio: 1;
    border: 1px solid rgba(250, 250, 248, 0.22);
}

.hero__fallback-art::after {
    top: -18%;
    right: 14%;
    width: 1px;
    height: 145%;
    background: rgba(250, 250, 248, 0.22);
    transform: rotate(24deg);
}

.hero__fallback-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(250, 250, 248, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(250, 250, 248, 0.045) 1px, transparent 1px);
    background-size: 12.5vw 12.5vw;
}

.hero__fallback-word {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--morph-white);
    font-size: clamp(36px, 6vw, 84px);
    font-weight: 600;
    letter-spacing: -0.065em;
    transform: translate(-50%, -50%);
}

.hero__fallback-orbit {
    position: absolute;
    top: 32%;
    left: 24%;
    width: min(14vw, 190px);
    aspect-ratio: 1;
    border: 1px solid rgba(250, 250, 248, 0.38);
}

.hero__veil {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 42%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-curtain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}


.hero-curtain {
    z-index: 4;
}

.hero-curtain__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% + 1px);
    background: var(--morph-black);
    will-change: transform;
}

.hero-curtain__panel--left {
    left: 0;
    animation: morph-hero-curtain-left 1050ms var(--morph-ease) 120ms both;
}

.hero-curtain__panel--right {
    right: 0;
    animation: morph-hero-curtain-right 1050ms var(--morph-ease) 120ms both;
}


.hero__media[data-paused="true"] .hero__video,
.hero__media[data-paused="true"] .hero__poster {
    animation-play-state: paused;
}

.hero__inner {
    position: relative;
    display: grid;
    height: 100%;
    min-height: 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
    padding-block: 88px 18px;
}

.hero__caption {
    position: relative;
    z-index: 3;
    grid-column: 1 / span 6;
    mix-blend-mode: exclusion;
}

.hero__caption h1 {
    max-width: 24ch;
    margin-top: 10px;
    overflow: hidden;
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.03;
    text-wrap: balance;
}

.hero__caption h1 > span {
    display: block;
    animation: morph-hero-copy-in 820ms var(--morph-ease) 1040ms both;
}

.hero__eyebrow {
    display: block;
    animation: morph-hero-fade-up 700ms var(--morph-ease) 940ms both;
}

.hero__side {
    position: relative;
    z-index: 3;
    display: grid;
    grid-column: 9 / span 3;
    justify-items: start;
    gap: 16px;
    mix-blend-mode: exclusion;
    padding-bottom: 1px;
}

.hero__side p {
    max-width: 30ch;
    color: var(--morph-white);
    font-size: 11px;
    line-height: 1.45;
    text-wrap: pretty;
}

.hero__side p {
    animation: morph-hero-fade-up 720ms var(--morph-ease) 1180ms both;
}

.hero__side .text-link {
    animation: morph-hero-fade-up 720ms var(--morph-ease) 1300ms both;
}

.hero-media-toggle {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 18px;
    display: inline-flex;
    min-width: 70px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--morph-white);
    cursor: pointer;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: morph-hero-fade-up 620ms var(--morph-ease) 1420ms both;
}

.hero-media-toggle__icon {
    position: relative;
    width: 9px;
    height: 9px;
}

.hero-media-toggle__icon::before,
.hero-media-toggle__icon::after {
    position: absolute;
    top: 1px;
    width: 1px;
    height: 7px;
    background: currentColor;
    content: "";
}

.hero-media-toggle__icon::before {
    left: 2px;
}

.hero-media-toggle__icon::after {
    right: 2px;
}

.hero-media-toggle[data-paused="true"] .hero-media-toggle__icon::before {
    top: 0;
    left: 2px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid currentColor;
    background: transparent;
}

.hero-media-toggle[data-paused="true"] .hero-media-toggle__icon::after {
    display: none;
}

@keyframes morph-hero-curtain-left {
    0%,
    18% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-101%);
    }
}

@keyframes morph-hero-curtain-right {
    0%,
    18% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(101%);
    }
}


@keyframes morph-hero-media-in {
    0% {
        filter: saturate(0.6) contrast(1.14) brightness(0.42);
        transform: scale(1.11);
    }
    100% {
        filter: saturate(0.82) contrast(1.04) brightness(1);
        transform: scale(1);
    }
}



@keyframes morph-hero-copy-in {
    0% {
        opacity: 0;
        transform: translateY(110%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morph-hero-fade-up {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Homepage text reveal */
.home :where([data-home-reveal]) {
    position: relative;
}

.home :where([data-home-reveal].is-motion-ready) {
    opacity: 0;
    clip-path: inset(0 0 18% 0);
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 320ms var(--morph-ease) var(--home-reveal-delay, 0ms),
        clip-path 760ms var(--morph-ease) var(--home-reveal-delay, 0ms),
        transform 760ms var(--morph-ease) var(--home-reveal-delay, 0ms);
}

.home :where([data-home-reveal].is-motion-ready.is-scroll-visible) {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
}

.home [data-home-glitch] {
    position: relative;
    isolation: isolate;
}

.home [data-home-glitch]::before,
.home [data-home-glitch]::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    color: currentColor;
    content: attr(data-home-glitch);
    opacity: 0;
    pointer-events: none;
}

.home [data-home-glitch]::before {
    clip-path: inset(8% 0 56% 0);
}

.home [data-home-glitch]::after {
    clip-path: inset(58% 0 6% 0);
}

.home [data-home-reveal].is-scroll-visible [data-home-glitch]::before,
.home [data-home-reveal][data-home-glitch].is-scroll-visible::before,
.home .studio-note.is-scroll-visible [data-home-glitch]::before {
    animation: morph-project-active-upper 560ms steps(1, end) calc(var(--home-reveal-delay, 0ms) + 100ms) both;
}

.home [data-home-reveal].is-scroll-visible [data-home-glitch]::after,
.home [data-home-reveal][data-home-glitch].is-scroll-visible::after,
.home .studio-note.is-scroll-visible [data-home-glitch]::after {
    animation: morph-project-active-lower 560ms steps(1, end) calc(var(--home-reveal-delay, 0ms) + 100ms) both;
}

/* Shared compact headings */
.compact-heading {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(180px, 3fr);
    gap: 12px;
    align-items: end;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--morph-rule);
}

.compact-heading h2,
.client-strip__heading h2 {
    margin-top: 8px;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.compact-heading > p {
    max-width: 38ch;
    color: var(--morph-muted);
    font-size: 11px;
    line-height: 1.45;
}

/* Projects */
.work-index {
    padding-top: clamp(72px, 6vw, 104px);
    padding-bottom: clamp(80px, 9vw, 140px);
    background: var(--morph-paper);
    color: var(--morph-ink);
}

.site-header[data-surface="dark"] {
    color: var(--morph-white);
}

.site-header[data-surface="dark"] .site-header__inner {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 5, 0.5);
    color: var(--morph-white);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 12px 36px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(28px) saturate(145%);
    backdrop-filter: blur(28px) saturate(145%);
}

.site-header[data-surface="dark"] .custom-logo,
.site-header[data-surface="dark"] .brand-mark__logo {
    filter: grayscale(1) invert(1);
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
}

.project-showcase__aside {
    min-width: 0;
    grid-column: 1 / span 5;
}

.project-showcase__sticky {
    position: sticky;
    top: 0;
    display: flex;
    height: 100svh;
    flex-direction: column;
    padding: 30svh 24px clamp(160px, 26svh, 260px) 12px;
}

.project-showcase__sticky > .micro-label {
    color: var(--morph-muted);
}

.project-showcase__mobile-heading {
    display: none;
}

.project-showcase__active {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding-top: 10px;
}

.project-showcase__title-window {
    min-height: 38px;
    overflow: hidden;
}

.project-showcase__title-window h2 {
    position: relative;
    width: fit-content;
    color: var(--morph-ink);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.1;
    isolation: isolate;
}

.project-showcase__title-window h2::before,
.project-showcase__title-window h2::after {
    position: absolute;
    inset: 0;
    content: attr(data-active-project-title);
    opacity: 0;
    pointer-events: none;
}

.project-showcase__title-window h2::before {
    clip-path: inset(10% 0 58% 0);
}

.project-showcase__title-window h2::after {
    color: transparent;
    clip-path: inset(58% 0 8% 0);
    -webkit-text-stroke: 1px rgba(16, 16, 16, 0.72);
}

.project-showcase__copy {
    display: grid;
    max-width: 36ch;
    gap: 28px;
    margin-top: auto;
}

.project-showcase__copy > p {
    color: var(--morph-muted);
    font-size: 14px;
    line-height: 1.45;
}

.project-showcase__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.project-showcase__meta span:last-child {
    max-width: 24ch;
    text-align: right;
}

.project-showcase__active.is-switching .project-showcase__title-window h2 {
    animation:
        morph-project-active-title-in 280ms var(--morph-ease) both,
        morph-project-active-core 300ms steps(1, end) 80ms both;
}

.project-showcase__active.is-switching .project-showcase__title-window h2::before {
    animation: morph-project-active-upper 300ms steps(1, end) 80ms both;
}

.project-showcase__active.is-switching .project-showcase__title-window h2::after {
    animation: morph-project-active-lower 300ms steps(1, end) 80ms both;
}

.project-showcase__active.is-switching .project-showcase__copy {
    animation: morph-project-copy-in 167ms linear both;
}

.project-grid {
    display: grid;
    gap: 12px;
}

.project-grid--home {
    min-width: 0;
    grid-column: 6 / -1;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 24px;
    align-content: start;
}

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

.project-grid.is-motion-ready [data-project-motion-item] {
    --project-reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition:
        opacity 420ms var(--morph-ease) var(--project-reveal-delay),
        transform 680ms var(--morph-ease) var(--project-reveal-delay);
}

.project-grid--home.is-motion-ready [data-project-motion-item]:nth-child(even) {
    --project-reveal-delay: 80ms;
}


.project-grid.is-motion-ready [data-project-motion-item] .project-tile__visual {
    clip-path: inset(0 0 12% 0);
    transition: clip-path 680ms var(--morph-ease) var(--project-reveal-delay);
}

.project-grid.is-motion-ready [data-project-motion-item].is-scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.project-grid.is-motion-ready [data-project-motion-item].is-scroll-visible .project-tile__visual {
    clip-path: inset(0);
}

.project-grid--home .project-tile:nth-child(1),
.project-grid--home .project-tile:nth-child(5) {
    grid-column: 1 / span 7;
}

.project-grid--home .project-tile:nth-child(2),
.project-grid--home .project-tile:nth-child(6) {
    grid-column: 8 / span 4;
}

.project-grid--home .project-tile:nth-child(3) {
    grid-column: 1 / span 4;
}

.project-grid--home .project-tile:nth-child(4) {
    grid-column: 5 / span 7;
}

.project-tile__link {
    display: grid;
    gap: 8px;
    transition: opacity 167ms linear, transform 167ms var(--morph-ease);
}

.project-grid--home .project-tile__link {
    gap: 0;
}

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

.project-grid--home .project-tile:nth-child(1) .project-tile__visual,
.project-grid--home .project-tile:nth-child(4) .project-tile__visual,
.project-grid--home .project-tile:nth-child(5) .project-tile__visual {
    aspect-ratio: 16 / 9;
}

.project-grid--home .project-tile:nth-child(2) .project-tile__visual,
.project-grid--home .project-tile:nth-child(3) .project-tile__visual,
.project-grid--home .project-tile:nth-child(6) .project-tile__visual {
    aspect-ratio: 1;
}


.project-tile__visual > img,
.project-tile__visual > .project-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 1px solid rgba(0, 0, 0, 0.08);
    transition:
        filter 167ms linear,
        opacity 167ms linear,
        transform 220ms var(--morph-ease),
        translate 90ms linear,
        scale 220ms var(--morph-ease);
}

.project-grid--home .project-tile__visual > img,
.project-grid--home .project-tile__visual > .project-placeholder {
    height: calc(100% + 24px);
    margin-top: -12px;
    translate: 0 var(--project-media-shift, 0);
    scale: 1;
    will-change: filter, translate, scale;
}

.project-grid--home .project-tile__visual > img,
.project-grid--home .project-tile__visual > .project-placeholder {
    filter: saturate(0.76) brightness(0.68) contrast(1.03);
}


.project-grid--home .project-tile.is-active .project-tile__visual > img,
.project-grid--home .project-tile.is-active .project-tile__visual > .project-placeholder {
    filter: saturate(0.94) brightness(1) contrast(1.02);
    animation: morph-project-active-zoom 7200ms ease-in-out infinite alternate;
}

.project-placeholder--photo {
    display: block;
}

.project-tile__open {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(250, 250, 248, 0.18);
    background: rgba(5, 5, 5, 0.58);
    color: var(--morph-white);
    font-size: 11px;
    opacity: 0;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: opacity 167ms linear;
}

.project-tile__meta {
    display: flex;
    min-height: 44px;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0 9px;
    border-bottom: 1px solid var(--morph-rule);
}

.project-grid--home .project-tile__meta {
    border-color: var(--morph-rule);
}

.project-tile__meta h3 {
    position: relative;
    width: fit-content;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    isolation: isolate;
}

.project-tile__meta h3::before,
.project-tile__meta h3::after {
    position: absolute;
    inset: 0;
    content: attr(data-project-title);
    opacity: 0;
    pointer-events: none;
}

.project-tile__meta h3::before {
    clip-path: inset(8% 0 56% 0);
}

.project-tile__meta h3::after {
    color: transparent;
    clip-path: inset(58% 0 6% 0);
    -webkit-text-stroke: 1px rgba(16, 16, 16, 0.72);
}

.project-grid--home .project-tile.is-active .project-tile__meta h3 {
    animation: morph-project-card-core 300ms steps(1, end) both;
}

.project-grid--home .project-tile.is-active .project-tile__meta h3::before {
    animation: morph-project-card-upper 300ms steps(1, end) both;
}

.project-grid--home .project-tile.is-active .project-tile__meta h3::after {
    animation: morph-project-card-lower 300ms steps(1, end) both;
}

.project-tile__meta p,
.project-tile__details {
    margin-top: 3px;
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: uppercase;
}

.project-tile__details {
    max-width: 18ch;
    margin-top: 0;
    text-align: right;
}

.project-showcase__all {
    display: flex;
    min-height: 96px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border: 1px solid var(--morph-rule);
    background: var(--morph-surface);
    color: var(--morph-ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 180ms linear, color 180ms linear, transform 160ms var(--morph-ease);
}

.project-showcase__all > span:last-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(16, 16, 16, 0.24);
    transition: transform 180ms var(--morph-ease);
}

.project-showcase__all:focus-visible {
    outline: 1px solid var(--morph-ink);
    outline-offset: 4px;
}

.project-showcase__all:active {
    transform: scale(0.995);
}

@media (hover: hover) and (pointer: fine) {
    .project-tile__link:hover .project-tile__open {
        opacity: 1;
    }


    .project-showcase__all:hover {
        background: #e9e9e5;
    }

    .project-showcase__all:hover > span:last-child {
        transform: translate3d(3px, -3px, 0);
    }
}

.project-tile__link:focus-visible .project-tile__open {
    opacity: 1;
}


@keyframes morph-project-active-zoom {
    from {
        scale: 1;
    }
    to {
        scale: 1.025;
    }
}

@keyframes morph-project-page-intro {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morph-project-active-title-in {
    from {
        opacity: 0;
        transform: translateY(72%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morph-project-active-core {
    0%,
    38%,
    62%,
    100% {
        opacity: 1;
        text-shadow: none;
    }
    44% {
        opacity: 0.76;
        text-shadow: -4px 0 rgba(250, 250, 248, 0.5);
    }
    52% {
        opacity: 1;
        text-shadow: 4px 0 rgba(250, 250, 248, 0.32);
    }
}

@keyframes morph-project-active-upper {
    0%,
    38%,
    62%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
    44% {
        opacity: 0.84;
        transform: translateX(-7px);
    }
    52% {
        opacity: 0.56;
        transform: translateX(5px);
    }
}

@keyframes morph-project-active-lower {
    0%,
    38%,
    62%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
    44% {
        opacity: 0.74;
        transform: translateX(6px);
    }
    52% {
        opacity: 0.48;
        transform: translateX(-4px);
    }
}

@keyframes morph-project-copy-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morph-project-card-core {
    0%,
    42%,
    64%,
    100% {
        opacity: 1;
        text-shadow: none;
    }
    48% {
        opacity: 0.76;
        text-shadow: -3px 0 rgba(250, 250, 248, 0.5);
    }
    56% {
        opacity: 1;
        text-shadow: 3px 0 rgba(250, 250, 248, 0.32);
    }
}

@keyframes morph-project-card-upper {
    0%,
    42%,
    64%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
    48% {
        opacity: 0.82;
        transform: translateX(-5px);
    }
    56% {
        opacity: 0.52;
        transform: translateX(4px);
    }
}

@keyframes morph-project-card-lower {
    0%,
    42%,
    64%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
    48% {
        opacity: 0.72;
        transform: translateX(5px);
    }
    56% {
        opacity: 0.46;
        transform: translateX(-3px);
    }
}

.project-placeholder {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #d8d8d3;
    color: var(--morph-ink);
}

.project-placeholder::before,
.project-placeholder::after,
.project-placeholder__shape {
    position: absolute;
    content: "";
}

.project-placeholder__mark,
.project-placeholder__number {
    position: absolute;
    z-index: 2;
    font-weight: 600;
}

.project-placeholder__mark {
    top: 12px;
    left: 12px;
    font-size: 10px;
    letter-spacing: -0.05em;
}

.project-placeholder__number {
    right: 12px;
    bottom: 9px;
    font-size: 11px;
    letter-spacing: 0.03em;
}

.project-placeholder--blue::before {
    top: 15%;
    left: 25%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid var(--morph-ink);
}

.project-placeholder--blue::after {
    right: 16%;
    bottom: -30%;
    width: 24%;
    height: 150%;
    background: var(--morph-ink);
    transform: rotate(19deg);
}

.project-placeholder--coral {
    background: var(--morph-ink);
    color: var(--morph-white);
}

.project-placeholder--coral::before {
    top: 13%;
    right: 10%;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid rgba(250, 250, 248, 0.62);
}

.project-placeholder--coral::after {
    bottom: 0;
    left: 0;
    width: 35%;
    height: 100%;
    border-right: 1px solid rgba(250, 250, 248, 0.3);
}

.project-placeholder--violet {
    background: #b9b9b4;
}

.project-placeholder--violet::before {
    top: -24%;
    left: 28%;
    width: 52%;
    aspect-ratio: 1;
    border: 1px solid var(--morph-ink);
    transform: rotate(45deg);
}

.project-placeholder--violet::after {
    right: 15%;
    bottom: 18%;
    width: 18%;
    aspect-ratio: 1;
    background: var(--morph-paper);
}

.project-placeholder--lime {
    background: var(--morph-paper);
}

.project-placeholder--lime::before {
    top: 20%;
    left: 15%;
    width: 68%;
    height: 1px;
    background: var(--morph-ink);
    box-shadow: 0 64px 0 var(--morph-ink), 0 128px 0 var(--morph-ink);
}

.project-placeholder--lime::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--morph-ink);
}

.project-placeholder--sun {
    background: #c9c9c4;
}

.project-placeholder--sun::before {
    top: 12%;
    right: 10%;
    width: 58%;
    aspect-ratio: 1;
    background: var(--morph-ink);
}

.project-placeholder--sun::after {
    bottom: -20%;
    left: 10%;
    width: 45%;
    aspect-ratio: 1;
    border: 1px solid var(--morph-white);
}

.project-placeholder--ink {
    background: var(--morph-black);
    color: var(--morph-white);
}

.project-placeholder--ink::before {
    top: 20%;
    left: 15%;
    width: 70%;
    height: 60%;
    border: 1px solid rgba(250, 250, 248, 0.48);
}

.project-placeholder--ink::after {
    top: 0;
    left: 35%;
    width: 1px;
    height: 100%;
    background: rgba(250, 250, 248, 0.32);
    transform: rotate(22deg);
}

.section-tail {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-top: 18px;
    color: var(--morph-muted);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-tail .text-link {
    color: var(--morph-ink);
}

/* Client logo marquees */
.client-strip {
    position: relative;
    overflow: hidden;
    padding-block: clamp(72px, 6.5vw, 96px) clamp(40px, 3.5vw, 56px);
    border-top: 1px solid var(--morph-rule);
    border-bottom: 1px solid var(--morph-rule);
    background: var(--morph-surface);
    color: var(--morph-ink);
}

.client-strip__heading {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    padding-bottom: 32px;
}

.client-strip__heading > .micro-label {
    grid-column: 1 / span 5;
    padding-top: 4px;
    color: var(--morph-muted);
}

.client-strip__heading h2 {
    max-width: none;
    grid-column: 6 / span 6;
    margin-top: 0;
    color: var(--morph-ink);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.client-strip__description {
    max-width: 34ch;
    grid-column: 12 / -1;
    color: var(--morph-muted);
    font-size: 11px;
    line-height: 1.45;
}

.client-strip.is-motion-ready .client-marquee {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 420ms var(--morph-ease),
        transform 680ms var(--morph-ease);
}

.client-strip.is-motion-ready .client-marquee--forward {
    transition-delay: 100ms;
}

.client-strip.is-motion-ready .client-marquee--reverse {
    transition-delay: 180ms;
}

.client-strip.is-motion-ready.is-scroll-visible .client-marquee {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.client-marquee-stack {
    display: grid;
    border-top: 1px solid var(--morph-rule);
}

.client-marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--morph-rule);
}

.client-marquee__track {
    display: flex;
    width: max-content;
    animation: morph-client-marquee var(--client-marquee-duration, 42s) linear infinite;
    will-change: transform;
}

.client-marquee--forward {
    --client-marquee-duration: 40s;
}

.client-marquee--reverse {
    --client-marquee-duration: 46s;
}

.client-marquee--reverse .client-marquee__track {
    animation-direction: reverse;
}

.client-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    list-style: none;
}

.client-logo {
    position: relative;
    display: grid;
    width: clamp(220px, 18vw, 280px);
    height: 132px;
    flex: 0 0 auto;
    place-items: center;
    padding: 26px 32px 34px;
    border-right: 1px solid var(--morph-rule);
    background: rgba(16, 16, 16, 0.012);
    transition: background-color 167ms linear;
}

.client-logo img {
    width: 100%;
    max-width: 190px;
    max-height: 62px;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(1) brightness(0);
    transition: opacity 167ms linear, scale 220ms var(--morph-ease);
}

.client-logo__name {
    position: absolute;
    right: 12px;
    bottom: 10px;
    left: 12px;
    overflow: hidden;
    color: var(--morph-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.client-strip.is-motion-ready:not(.is-scroll-visible) .client-marquee__track {
    animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
    .client-logo:hover {
        background: rgba(16, 16, 16, 0.045);
    }

    .client-logo:hover img {
        opacity: 1;
        scale: 1.035;
    }
}

@keyframes morph-client-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Studio and stats */
.studio-note {
    padding-block: clamp(48px, 4vw, 64px) clamp(80px, 7vw, 112px);
    border-bottom: 1px solid var(--morph-rule);
    background: var(--morph-paper);
    color: var(--morph-ink);
}


.studio-note__topline {
    position: relative;
    padding-top: 12px;
}

.studio-note__topline::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--morph-rule);
    content: "";
    transform: scaleX(1);
    transform-origin: left;
}

.studio-note__content {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    margin-top: clamp(48px, 4.5vw, 64px);
}

.studio-note__content h2 {
    max-width: 30ch;
    grid-column: 1 / span 11;
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.05;
    text-wrap: balance;
}

.studio-note__content > div {
    display: grid;
    grid-column: 12 / -1;
    justify-items: start;
    gap: 22px;
}

.studio-note__content p {
    max-width: 38ch;
    color: var(--morph-muted);
    font-size: 12px;
    line-height: 1.45;
}
@media (min-width: 901px) {
    .studio-note--about .studio-note__content h2 {
        grid-column: 1 / span 8;
    }

    .studio-note--about .studio-note__content > div {
        grid-column: 10 / -1;
    }

    .studio-note--about .studio-note__content p {
        width: 100%;
        max-width: 400px;
        font-size: 14px;
        line-height: 1.5;
    }
}


.studio-note.is-motion-ready [data-studio-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 420ms var(--morph-ease),
        transform 680ms var(--morph-ease);
}

.studio-note.is-motion-ready .studio-note__content h2 {
    transition-delay: 80ms;
}

.studio-note.is-motion-ready .studio-note__content > div {
    transition-delay: 160ms;
}

.studio-note.is-motion-ready.is-scroll-visible [data-studio-reveal] {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.studio-note.is-motion-ready .studio-note__topline::before {
    transform: scaleX(0);
    transition: transform 760ms var(--morph-ease);
}

.studio-note.is-motion-ready.is-scroll-visible .studio-note__topline::before {
    transform: scaleX(1);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(56px, 7vw, 96px);
}

.proof-stats > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: end;
    padding-top: 10px;
    border-top: 1px solid var(--morph-rule);
}

.proof-stats dt {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.035em;
    line-height: 1;
}

.proof-stats dd {
    color: var(--morph-muted);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.studio-note .proof-stats {
    gap: 12px;
    margin-top: clamp(72px, 7vw, 96px);
}

.studio-note .proof-stats > div {
    position: relative;
    min-height: 168px;
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
    border-top: 0;
}

.studio-note .proof-stats > div::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--morph-rule);
    content: "";
    transform: scaleX(1);
    transform-origin: left;
}

.studio-note .proof-stats dt {
    align-self: flex-start;
    font-size: clamp(56px, 6vw, 88px);
    letter-spacing: -0.065em;
}

.studio-note .proof-stats dd {
    align-self: flex-start;
}

.studio-note.is-motion-ready .proof-stats > div::before {
    transform: scaleX(0);
    transition: transform 760ms var(--morph-ease);
}

.studio-note.is-motion-ready .proof-stats dt,
.studio-note.is-motion-ready .proof-stats dd {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 360ms linear,
        transform 620ms var(--morph-ease);
}

.studio-note.is-motion-ready .proof-stats > div:nth-child(1)::before,
.studio-note.is-motion-ready .proof-stats > div:nth-child(1) dt,
.studio-note.is-motion-ready .proof-stats > div:nth-child(1) dd {
    transition-delay: 220ms;
}

.studio-note.is-motion-ready .proof-stats > div:nth-child(2)::before,
.studio-note.is-motion-ready .proof-stats > div:nth-child(2) dt,
.studio-note.is-motion-ready .proof-stats > div:nth-child(2) dd {
    transition-delay: 320ms;
}

.studio-note.is-motion-ready .proof-stats > div:nth-child(3)::before,
.studio-note.is-motion-ready .proof-stats > div:nth-child(3) dt,
.studio-note.is-motion-ready .proof-stats > div:nth-child(3) dd {
    transition-delay: 420ms;
}

.studio-note.is-motion-ready.is-scroll-visible .proof-stats > div::before {
    transform: scaleX(1);
}

.studio-note.is-motion-ready.is-scroll-visible .proof-stats dt,
.studio-note.is-motion-ready.is-scroll-visible .proof-stats dd {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Capabilities */
.capabilities-showcase {
    padding-block: clamp(64px, 6vw, 88px) clamp(80px, 8vw, 120px);
}

.capabilities-showcase--page {
    padding-top: 0;
    padding-bottom: clamp(72px, 9vw, 132px);
}

.capabilities-showcase__header {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 10fr);
    gap: 12px;
    align-items: end;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--morph-rule);
}

.capabilities-showcase__header h2 {
    margin-top: 8px;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.capabilities-showcase__header .text-link {
    min-width: min(320px, 100%);
    justify-content: space-between;
    justify-self: end;
}

.capabilities-showcase__stage {
    display: grid;
    min-height: clamp(470px, 41vw, 590px);
    grid-template-columns: minmax(260px, 6fr) minmax(0, 10fr);
    gap: 12px;
    margin-top: 24px;
}

.capabilities-showcase--page .capabilities-showcase__stage {
    margin-top: 0;
}

.capabilities-showcase__list {
    display: flex;
    min-width: 0;
    flex-direction: column;
    list-style: none;
}

.capabilities-showcase__item {
    display: flex;
    min-height: 0;
    flex: 1;
    border-top: 1px solid var(--morph-rule);
}

.capabilities-showcase__item:last-child {
    border-bottom: 1px solid var(--morph-rule);
}

.capabilities-showcase__trigger {
    display: grid;
    width: 100%;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 12px;
    align-items: center;
    padding: 18px 12px 18px 0;
    background: transparent;
    color: var(--morph-ink);
    text-align: left;
    cursor: pointer;
    transition: background-color 220ms linear, color 220ms linear;
}

.capabilities-showcase__trigger:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: -4px;
}

.capabilities-showcase__number {
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.capabilities-showcase__name {
    max-width: 24ch;
    font-size: clamp(16px, 1.45vw, 21px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.05;
    text-wrap: balance;
}

.capabilities-showcase__marker {
    position: relative;
    width: 14px;
    height: 14px;
    justify-self: end;
}

.capabilities-showcase__marker::before,
.capabilities-showcase__marker::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 220ms var(--morph-ease);
}

.capabilities-showcase__marker::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.capabilities-showcase__item.is-active .capabilities-showcase__trigger {
    padding-left: 12px;
    background: #242422;
    color: var(--morph-white);
}

.capabilities-showcase__item.is-active .capabilities-showcase__number {
    color: rgba(250, 250, 248, 0.52);
}

.capabilities-showcase__item.is-active .capabilities-showcase__marker::after {
    transform: translate(-50%, -50%) rotate(0);
}

.capabilities-showcase__panels {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: var(--morph-black);
}

.capabilities-showcase__panel {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--morph-black);
    color: var(--morph-white);
}

.capabilities-showcase__panel[hidden] {
    display: none;
}

html:not(.has-js) .capabilities-showcase__stage {
    display: block;
    min-height: 0;
}

html:not(.has-js) .capabilities-showcase__list {
    display: none;
}

html:not(.has-js) .capabilities-showcase__panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    background: transparent;
}

html:not(.has-js) .capabilities-showcase__panel {
    position: relative;
    inset: auto;
    aspect-ratio: 8 / 5;
}

.capabilities-showcase__media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.capabilities-showcase__media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.02) 38%, rgba(5, 5, 5, 0.78) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.2), transparent 54%);
    content: "";
    pointer-events: none;
}

.capabilities-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
}

.capabilities-showcase__caption {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    gap: 12px;
    padding: 18px;
}

.capabilities-showcase__eyebrow,
.capabilities-showcase__count {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.capabilities-showcase__eyebrow {
    grid-column: 1 / span 5;
}

.capabilities-showcase__count {
    grid-column: 9 / -1;
    text-align: right;
}

.capabilities-showcase__copy {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.capabilities-showcase__copy h3 {
    max-width: 13ch;
    grid-column: 1 / span 6;
    font-size: clamp(30px, 3.4vw, 50px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.94;
    text-wrap: balance;
}

.capabilities-showcase__copy > div {
    max-width: 42ch;
    grid-column: 7 / -1;
    justify-self: end;
    font-size: 11px;
    line-height: 1.45;
}

.capabilities-showcase__copy > div p + p {
    margin-top: 0.8em;
}

.has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__stage {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 420ms var(--morph-ease), transform 680ms var(--morph-ease);
}

.has-js .capabilities-showcase.is-motion-ready.is-scroll-visible .capabilities-showcase__stage {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__image {
    animation: morph-capability-image-in 720ms var(--morph-ease) both;
}

.has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__eyebrow,
.has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__count,
.has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__copy {
    animation: morph-capability-copy-in 420ms var(--morph-ease) both;
}

.has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__copy {
    animation-delay: 70ms;
}

@keyframes morph-capability-image-in {
    from {
        opacity: 0.62;
        transform: scale(1.045);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes morph-capability-copy-in {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (hover: hover) and (pointer: fine) {
    .capabilities-showcase__item:not(.is-active) .capabilities-showcase__trigger:hover {
        background: rgba(16, 16, 16, 0.045);
    }
}

/* Light internal pages */
.site-page--services,
.site-page--about,
.site-page--contact {
    background: var(--morph-paper);
    color: var(--morph-ink);
}


.services-cta {
    padding-block: clamp(72px, 7vw, 104px);
}

.services-cta__topline {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 12px;
    border-block: 1px solid var(--morph-rule);
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-cta__body {
    display: grid;
    min-height: clamp(340px, 28vw, 440px);
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
    padding-top: clamp(52px, 5vw, 72px);
    border-bottom: 1px solid var(--morph-rule);
}

.services-cta__body h2 {
    max-width: none;
    grid-column: 1 / span 10;
    align-self: start;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-wrap: balance;
}

.services-cta__aside {
    display: flex;
    grid-column: 12 / -1;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
    padding-top: 8px;
}

.services-cta__copy {
    max-width: 36ch;
}

.services-cta__copy .micro-label {
    color: var(--morph-muted);
}

.services-cta__copy p {
    margin-top: 16px;
    color: var(--morph-muted);
    font-size: 14px;
    line-height: 1.5;
}

.services-cta__link {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--morph-rule);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 160ms var(--morph-ease), color 160ms var(--morph-ease), transform 160ms var(--morph-ease);
}

.services-cta__link-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid rgba(16, 16, 16, 0.28);
    transition: background-color 160ms var(--morph-ease), color 160ms var(--morph-ease);
}

.services-cta__link:focus-visible {
    outline: 1px solid var(--morph-ink);
    outline-offset: -4px;
}

.services-cta__link:active {
    transform: scale(0.995);
}

@media (hover: hover) and (pointer: fine) {
    .services-cta__link:hover {
        background: rgba(16, 16, 16, 0.045);
    }

    .services-cta__link:hover .services-cta__link-arrow {
        background: var(--morph-ink);
        color: var(--morph-white);
    }
}

/* Footer */
.site-footer {
    min-height: 100svh;
    background: var(--morph-black);
    color: var(--morph-white);
}

.site-footer__inner {
    display: grid;
    min-height: 100svh;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    padding-block: clamp(64px, 9svh, 96px) 14px;
}

.site-footer--compact,
.site-footer--compact .site-footer__inner {
    min-height: clamp(360px, 52svh, 560px);
}

.site-footer--compact .site-footer__inner {
    grid-template-rows: minmax(0, 1fr) auto;
    padding-top: clamp(56px, 8svh, 80px);
}

.site-footer--compact .site-footer__signature {
    grid-row: 1;
}

.site-footer--compact .site-footer__base {
    grid-row: 2;
}

.site-footer__topline {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--morph-rule-light);
    color: rgba(250, 250, 248, 0.56);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer__main {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
    align-self: auto;
    margin-top: clamp(72px, 12svh, 110px);
}

.site-footer__statement {
    grid-column: 1 / span 9;
}

.site-footer__statement h2 {
    max-width: 13ch;
    font-size: clamp(36px, 3.6vw, 56px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.site-footer__statement p {
    max-width: 38ch;
    margin-top: 22px;
    color: rgba(250, 250, 248, 0.58);
    font-size: 11px;
    line-height: 1.45;
}

.footer-contact {
    grid-column: 11 / -1;
    overflow: hidden;
    padding: 4px;
}

.footer-contact__topline {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    color: rgba(250, 250, 248, 0.5);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-contact__link {
    display: grid;
    min-height: 64px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 12px;
    border-top: 1px solid rgba(250, 250, 248, 0.14);
    background: rgba(250, 250, 248, 0.045);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.025em;
    transition: background-color 180ms linear, color 180ms linear, transform 160ms var(--morph-ease);
}


.footer-contact__link:focus-visible {
    outline: 1px solid var(--morph-white);
    outline-offset: -4px;
}

.footer-contact__number {
    color: rgba(250, 250, 248, 0.46);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-contact__link > span:last-child {
    transition: transform 180ms var(--morph-ease);
}

@media (hover: hover) and (pointer: fine) {
    .footer-contact__link:hover {
        background: var(--morph-white);
        color: var(--morph-black);
    }

    .footer-contact__link:hover .footer-contact__number {
        color: rgba(16, 16, 16, 0.5);
    }

    .footer-contact__link:hover > span:last-child {
        transform: translate3d(3px, -3px, 0);
    }
}
.site-footer__signature {
    align-self: end;
    padding-bottom: 24px;
}

.site-footer__signature img {
    display: block;
    width: min(100%, 1400px);
    height: auto;
    filter: invert(1);
}


.site-footer__base {
    display: grid;
    grid-row: 4;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 24px;
    align-items: end;
    padding-top: 12px;
    border-top: 1px solid var(--morph-rule-light);
    color: rgba(250, 250, 248, 0.54);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer__identity {
    display: block;
}


.site-footer__links {
    display: flex;
    gap: 18px;
}

.site-footer__links a,
.site-footer__top {
    transition: color 160ms linear, opacity 160ms linear;
}

.site-footer__top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--morph-white);
}

@media (hover: hover) and (pointer: fine) {
    .site-footer__links a:hover,
    .site-footer__top:hover {
        opacity: 0.56;
    }
}

.has-js .site-footer.is-motion-ready .site-footer__statement h2,
.has-js .site-footer.is-motion-ready .site-footer__statement p,
.has-js .site-footer.is-motion-ready .footer-contact {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 420ms var(--morph-ease), transform 680ms var(--morph-ease);
}

.has-js .site-footer.is-motion-ready .site-footer__statement p {
    transition-delay: 70ms;
}

.has-js .site-footer.is-motion-ready .footer-contact {
    transition-delay: 120ms;
}

.has-js .site-footer.is-motion-ready.is-scroll-visible .site-footer__statement h2,
.has-js .site-footer.is-motion-ready.is-scroll-visible .site-footer__statement p,
.has-js .site-footer.is-motion-ready.is-scroll-visible .footer-contact {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Internal page heroes */
.page-hero {
    padding-block: 132px 64px;
}

.page-hero__breadcrumb,
.contact-hero__topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--morph-rule);
    color: var(--morph-muted);
}


.page-hero__body,
.contact-hero__main {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(180px, 3fr);
    gap: 12px;
    align-items: end;
    margin-top: clamp(52px, 7vw, 92px);
}

.page-hero h1,
.contact-hero h1,
.not-found h1 {
    max-width: 36ch;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.03;
    text-wrap: balance;
}

.page-hero__body > p,
.page-hero__body > div,
.contact-hero__copy {
    max-width: 40ch;
    color: var(--morph-muted);
    font-size: 11px;
    line-height: 1.45;
}

.page-hero__body > div p + p,
.contact-hero__copy p + p {
    margin-top: 10px;
}
@media (min-width: 901px) {
    .page-hero--about .page-hero__body {
        grid-template-columns: repeat(16, minmax(0, 1fr));
        gap: 8px;
        align-items: start;
    }

    .page-hero--about h1 {
        grid-column: 1 / span 8;
    }

    .page-hero--about .page-hero__body > div {
        width: 100%;
        max-width: 400px;
        grid-column: 10 / -1;
        font-size: 14px;
        line-height: 1.5;
    }
}


.has-js .page-hero--projects [data-reveal].is-visible {
    animation: morph-project-page-intro 620ms var(--morph-ease) both;
}

.has-js .page-hero--projects h1[data-reveal].is-visible {
    animation-delay: 80ms;
}

.has-js .page-hero--projects p[data-reveal].is-visible {
    animation-delay: 140ms;
}

.projects-page {
    min-height: 100svh;
    background: var(--morph-paper);
    color: var(--morph-ink);
}

.projects-page__hero {
    padding-bottom: clamp(72px, 8vw, 112px);
}


.projects-page__index {
    padding-top: 0;
}

.project-showcase__pagination {
    grid-column: 1 / -1;
    padding-top: 24px;
}

.project-showcase__pagination .pagination {
    margin-top: 0;
}




.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 52px;
}

.pagination .page-numbers {
    display: grid;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    place-items: center;
    border: 1px solid var(--morph-rule);
    font-size: 9px;
}

.pagination .current {
    background: var(--morph-ink);
    color: var(--morph-white);
}

/* Project file */
.project-file {
    background: var(--morph-paper);
    color: var(--morph-ink);
    padding-bottom: clamp(64px, 7vw, 96px);
}

.project-file__opening {
    padding-block: clamp(112px, 9vw, 140px) clamp(80px, 7vw, 104px);
}

.project-file__topline,
.project-file__section-label {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--morph-rule);
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-file__composition {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
    margin-top: clamp(48px, 5vw, 72px);
}

.project-file__copy {
    grid-column: 1 / span 7;
}

.project-file__category {
    color: var(--morph-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-file__copy h1 {
    max-width: 12ch;
    margin-top: 20px;
    font-size: clamp(52px, 6vw, 86px);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.94;
    text-wrap: balance;
}

.project-file__introduction {
    max-width: 42ch;
    margin-top: 36px;
    color: var(--morph-muted);
    font-size: 13px;
    line-height: 1.55;
}

.project-file__details {
    display: grid;
    max-width: 560px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: clamp(44px, 5vw, 68px);
}

.project-file__details > div {
    min-height: 76px;
    padding-top: 10px;
    border-top: 1px solid var(--morph-rule);
}

.project-file__details dt {
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-file__details dd {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
}

.project-file__details ul {
    display: grid;
    gap: 2px;
    list-style: none;
}

.project-file__cover {
    grid-column: 10 / -1;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: #111;
}

.project-file__summary {
    padding-block: clamp(72px, 7vw, 104px) clamp(44px, 4vw, 64px);
}

.project-file__summary-grid {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    margin-top: clamp(36px, 4vw, 52px);
}

.project-file__summary h2 {
    grid-column: 2 / span 5;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.project-file__summary-copy {
    max-width: 52ch;
    grid-column: 8 / span 7;
    color: var(--morph-muted);
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.5;
}

.project-file__summary-copy p + p {
    margin-top: 1em;
}

.project-file__gallery {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: clamp(52px, 6vw, 88px);
    align-items: end;
    padding-bottom: clamp(40px, 4vw, 64px);
}

.project-file__media {
    min-width: 0;
    grid-column: 4 / span 10;
    overflow: hidden;
    aspect-ratio: 6 / 5;
    background: #111;
}

.project-file__media img,
.project-file__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-file__media--cover {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

.project-file__media--video {
    grid-column: 4 / span 10;
    aspect-ratio: 16 / 9 !important;
}

.project-file__gallery--single .project-file__media,
.project-file__gallery--pair .project-file__media:first-child {
    grid-column: 2 / span 11;
    aspect-ratio: 16 / 9;
}

.project-file__gallery--pair .project-file__media:last-child {
    grid-column: 8 / span 7;
    aspect-ratio: 4 / 3;
}

.project-file__gallery--long .project-file__media:nth-child(6n + 1) {
    grid-column: 2 / span 11;
    aspect-ratio: 16 / 9;
}

.project-file__gallery--long .project-file__media:nth-child(6n + 2) {
    grid-column: 3 / span 5;
    aspect-ratio: 4 / 5;
}

.project-file__gallery--long .project-file__media:nth-child(6n + 3) {
    grid-column: 8 / span 7;
    aspect-ratio: 4 / 3;
}

.project-file__gallery--long .project-file__media:nth-child(6n + 4) {
    grid-column: 4 / span 10;
}

.project-file__gallery--long .project-file__media:nth-child(6n + 5) {
    grid-column: 2 / span 7;
    aspect-ratio: 4 / 3;
}

.project-file__gallery--long .project-file__media:nth-child(6n + 6) {
    grid-column: 9 / span 5;
    aspect-ratio: 4 / 5;
}

.has-js .project-file.is-intro-visible .project-file__topline,
.has-js .project-file.is-intro-visible .project-file__category,
.has-js .project-file.is-intro-visible .project-file__copy h1,
.has-js .project-file.is-intro-visible .project-file__introduction,
.has-js .project-file.is-intro-visible .project-file__details {
    animation: morph-project-detail-intro 620ms var(--morph-ease) var(--project-intro-delay, 0ms) both;
}

.has-js .project-file .project-file__topline {
    --project-intro-delay: 40ms;
}

.has-js .project-file .project-file__category {
    --project-intro-delay: 90ms;
}

.has-js .project-file .project-file__copy h1 {
    --project-intro-delay: 130ms;
}

.has-js .project-file .project-file__introduction {
    --project-intro-delay: 190ms;
}

.has-js .project-file .project-file__details {
    --project-intro-delay: 250ms;
}

@keyframes morph-project-detail-intro {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.has-js .project-file.is-motion-ready [data-project-detail-reveal] {
    --project-detail-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 360ms linear var(--project-detail-delay),
        transform 620ms var(--morph-ease) var(--project-detail-delay);
}

.has-js .project-file.is-motion-ready .project-file__summary h2[data-project-detail-reveal] {
    --project-detail-delay: 60ms;
}

.has-js .project-file.is-motion-ready .project-file__summary-copy[data-project-detail-reveal] {
    --project-detail-delay: 120ms;
}

.has-js .project-file.is-motion-ready [data-project-detail-reveal].is-scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.has-js .project-file.is-motion-ready [data-project-detail-media] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 360ms linear, transform 620ms var(--morph-ease);
}

.has-js .project-file.is-motion-ready [data-project-detail-media].is-scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.project-file__pagination {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: clamp(64px, 7vw, 104px);
    margin-bottom: 0;
    padding: 4px;
    border: 1px solid var(--morph-rule);
    background: var(--morph-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.project-file__pagination a {
    display: grid;
    min-height: 132px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    gap: 20px;
    padding: 16px;
    background: var(--morph-paper);
    color: var(--morph-ink);
    transition: background-color 180ms linear, color 180ms linear, transform 160ms var(--morph-ease);
}

.project-file__pagination a:first-child {
    grid-template-columns: auto minmax(0, 1fr);
}

.project-file__pagination a:first-child > span:first-child,
.project-file__pagination a:first-child > strong {
    grid-column: 2;
}

.project-file__pagination a:nth-child(2) {
    text-align: right;
}

.project-file__pagination a > span:first-child {
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 180ms linear;
}

.project-file__pagination a > strong {
    align-self: end;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.project-file__pagination a > span:last-child {
    display: grid;
    width: 42px;
    height: 42px;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    place-items: center;
    border: 1px solid currentColor;
    font-size: 16px;
    opacity: 0.72;
}

.project-file__pagination a:first-child > span:last-child {
    grid-column: 1;
}

.project-file__pagination a:focus-visible {
    outline: 1px solid var(--morph-ink);
    outline-offset: 4px;
}

.project-file__pagination a:active {
    transform: scale(0.992);
}

@media (hover: hover) and (pointer: fine) {
    .project-file__pagination a:hover {
        background: var(--morph-ink);
        color: var(--morph-white);
    }

    .project-file__pagination a:hover > span:first-child {
        color: rgba(250, 250, 248, 0.62);
    }

    .project-file__pagination a:hover > span:last-child {
        opacity: 1;
    }
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Closing prompt */

.closing-prompt {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 8fr) minmax(0, 1fr);
    gap: 12px;
    padding-bottom: clamp(72px, 9vw, 132px);
}

.closing-prompt h2 {
    grid-column: 2;
    max-width: 50ch;
    margin: 0;
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.closing-prompt .contact-actions {
    grid-column: 2;
}


/* Contact */
.contact-hero {
    padding-block: 120px clamp(48px, 5vw, 72px);
}

.site-page--contact .contact-hero__topline {
    border-color: var(--morph-rule);
    color: var(--morph-muted);
}

.contact-hero__main {
    min-height: 0;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    margin-top: clamp(48px, 5vw, 72px);
}

.contact-hero h1 {
    max-width: none;
    grid-column: 1 / span 9;
    font-size: clamp(44px, 4.6vw, 72px);
    line-height: 0.96;
}

.site-page--contact .contact-hero__copy {
    max-width: 42ch;
    grid-column: 11 / -1;
    padding-bottom: 4px;
    color: var(--morph-muted);
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.5;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-block: 1px solid var(--morph-rule);
}

.contact-method {
    display: grid;
    min-height: clamp(168px, 15vw, 220px);
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 18px 24px 24px 0;
    color: var(--morph-ink);
    transition: background-color 180ms var(--morph-ease), transform 160ms var(--morph-ease);
}

.contact-method + .contact-method {
    border-left: 1px solid var(--morph-rule);
    padding-right: 0;
    padding-left: 24px;
}

.contact-method__type {
    grid-column: 1;
    grid-row: 1;
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-method__value {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    font-size: clamp(26px, 2.6vw, 42px);
    font-weight: 400;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
    transition: transform 220ms var(--morph-ease);
}

.contact-method__arrow {
    display: grid;
    width: 36px;
    height: 36px;
    grid-column: 2;
    grid-row: 1;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(16, 16, 16, 0.28);
    font-size: 12px;
    transition: background-color 180ms var(--morph-ease), color 180ms var(--morph-ease), transform 180ms var(--morph-ease);
}

.contact-method:focus-visible {
    outline: 1px solid var(--morph-ink);
    outline-offset: -4px;
}

.contact-method:active {
    transform: scale(0.995);
}

.contact-method--pending {
    color: var(--morph-muted);
}

@media (hover: hover) and (pointer: fine) {
    .contact-method:not(.contact-method--pending):hover {
        background: rgba(16, 16, 16, 0.045);
    }

    .contact-method:not(.contact-method--pending):hover .contact-method__value {
        transform: translate3d(4px, 0, 0);
    }

    .contact-method:not(.contact-method--pending):hover .contact-method__arrow {
        background: var(--morph-ink);
        color: var(--morph-white);
        transform: translate3d(2px, -2px, 0);
    }
}

.contact-note {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 16px clamp(52px, 5vw, 72px);
    color: var(--morph-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Generic content and states */
.prose {
    max-width: 68ch;
    padding-bottom: clamp(72px, 9vw, 132px);
    font-size: 12px;
    line-height: 1.55;
    text-wrap: pretty;
}

.prose > * + * {
    margin-top: 1em;
}

.prose h2,
.prose h3 {
    font-weight: 500;
    letter-spacing: -0.025em;
}

.prose h2 { font-size: 22px; }
.prose h3 { font-size: 16px; }

.empty-state {
    padding: 40px 0;
    color: var(--morph-muted);
    font-size: 11px;
}

.empty-state--large,
.not-found {
    min-height: 100svh;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 16px;
    padding-block: 84px;
}

.empty-state--large h1,
.empty-state--large h2 {
    max-width: 36ch;
    color: var(--morph-ink);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

.empty-state--large p,
.not-found p {
    max-width: 42ch;
    color: var(--morph-muted);
    font-size: 11px;
}

.fallback-index {
    min-height: 100svh;
}


@media (max-width: 900px) {
    :root {
        --shell: calc(100% - 24px);
    }

    .site-header__inner,
    .home .site-header:not([data-scrolled="true"]) .site-header__inner,
    .site-header[data-scrolled="true"] .site-header__inner,
    .site-header[data-surface="dark"] .site-header__inner {
        grid-template-columns: 1fr auto;
        padding-inline: 0;
        border-color: transparent;
        background: transparent;
        box-shadow: none;
        pointer-events: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }


    .primary-navigation,
    .header-contact,
    .site-header__location {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .home .site-header:not([data-scrolled="true"]) .menu-toggle,
    .site-header[data-surface="dark"] .menu-toggle,
    body[data-menu-open="true"] .site-header .menu-toggle {
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(8, 8, 8, 0.38);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.22),
            inset 0 -1px 0 rgba(255, 255, 255, 0.06),
            0 9px 26px rgba(0, 0, 0, 0.24);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        backdrop-filter: blur(24px) saturate(160%);
    }

    body[data-menu-open="true"] .site-header__inner {
        color: var(--morph-white);
    }

    body[data-menu-open="true"] .site-header .custom-logo,
    body[data-menu-open="true"] .site-header .brand-mark__logo {
        filter: grayscale(1) invert(1);
    }

    .brand-mark > a,
    .brand-mark .custom-logo-link,
    .menu-toggle {
        pointer-events: auto;
    }

    .project-showcase {
        display: block;
    }

    .project-showcase__aside {
        display: block;
    }

    .project-showcase__sticky {
        position: static;
        height: auto;
        padding: 56px 0 24px;
    }

    .project-showcase__mobile-heading {
        display: block;
        margin-top: 8px;
        color: var(--morph-ink);
        font-size: 20px;
        font-weight: 400;
        letter-spacing: -0.035em;
        line-height: 1.1;
    }

    .project-showcase__active {
        display: none;
    }

    .project-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 12px;
        row-gap: 24px;
    }

    .project-grid--home .project-tile:nth-child(n) {
        grid-column: auto;
    }

    .project-grid--home .project-tile:nth-child(n) .project-tile__visual {
        aspect-ratio: 4 / 3;
    }

    .project-showcase__all {
        grid-column: 1 / -1;
        min-height: 80px;
    }


    .capabilities-showcase__stage {
        grid-template-columns: minmax(220px, 1fr) minmax(0, 1fr);
    }

    .capabilities-showcase__copy {
        display: block;
    }

    .capabilities-showcase__copy h3 {
        max-width: 12ch;
        font-size: clamp(28px, 4.8vw, 40px);
    }

    .capabilities-showcase__copy > div {
        max-width: 34ch;
        margin-top: 16px;
    }

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

    .site-footer__statement {
        grid-column: 1;
    }

    .footer-contact {
        grid-column: 2;
    }

    .site-footer__statement h2 {
        font-size: clamp(40px, 6vw, 54px);
    }

    .site-footer__base {
        grid-template-columns: minmax(0, 1fr) auto auto;
    }

    .site-footer__copyright {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 640px) {
    :root {
        --shell: calc(100% - 20px);
        --header-height: 56px;
    }

    body {
        font-size: 12px;
    }

    .site-header {
        padding-top: 8px;
    }

    .site-header__inner {
        min-height: 40px;
    }

    .brand-mark {
        font-size: 13px;
    }

    .menu-toggle {
        width: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        align-content: end;
        padding-block: 76px 16px;
    }

    .hero__caption,
    .hero__side {
        grid-column: 1;
    }

    .hero__caption h1 {
        max-width: 22ch;
        font-size: 28px;
    }

    .hero__side {
        gap: 14px;
        padding-right: 72px;
    }

    .hero__side p {
        font-size: 10px;
    }

    .hero-media-toggle {
        bottom: 16px;
    }



    .hero__fallback-art::before {
        top: 24%;
        left: 46%;
        width: 60vw;
    }

    .hero__fallback-grid {
        background-size: 25vw 25vw;
    }

    .hero__fallback-word {
        font-size: 42px;
    }

    .compact-heading,
    .studio-note__content,
    .page-hero__body,
    .contact-hero__main,
    .client-strip__heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .compact-heading h2,
    .client-strip__heading h2 {
        font-size: 20px;
    }

    .client-strip {
        padding-block: 72px 40px;
    }

    .client-strip__heading {
        width: calc(100% - 48px);
        padding-bottom: 24px;
    }

    .client-strip__heading > .micro-label,
    .client-strip__heading h2,
    .client-strip__description {
        grid-column: 1;
    }

    .client-strip__heading h2 {
        font-size: 22px;
    }

    .client-marquee--forward {
        --client-marquee-duration: 32s;
    }

    .client-marquee--reverse {
        --client-marquee-duration: 38s;
    }


    .work-index {
        padding-block: 56px 72px;
    }

    .projects-page__index {
        padding-top: 0;
    }

    .project-showcase {
        width: calc(100% - 48px);
    }

    .page-hero--projects {
        width: calc(100% - 48px);
    }

    .project-showcase__sticky {
        padding: 0 0 24px;
    }

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

    .project-grid--home .project-tile:nth-child(n) {
        grid-column: 1;
    }

    .project-grid--home.is-motion-ready [data-project-motion-item]:nth-child(even) {
        --project-reveal-delay: 0ms;
    }

    .project-grid--home .project-tile:nth-child(n) .project-tile__visual {
        aspect-ratio: 4 / 3;
    }

    .project-showcase__all {
        grid-column: 1;
        min-height: 72px;
    }

    .project-tile__open {
        opacity: 1;
    }

    .project-tile__meta h3 {
        font-size: 12px;
    }

    .section-tail {
        align-items: flex-start;
        flex-direction: column;
    }

    .client-logo {
        width: 190px;
        height: 112px;
        padding: 22px 24px 30px;
    }

    .client-logo img {
        max-width: 145px;
        max-height: 48px;
    }

    .client-logo__name {
        right: 10px;
        bottom: 9px;
        left: 10px;
        font-size: 7px;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 52px;
    }

    .proof-stats dt {
        font-size: 22px;
    }

    .studio-note {
        padding-block: 48px 72px;
    }

    .studio-note__inner {
        width: calc(100% - 48px);
    }

    .studio-note__content {
        gap: 32px;
        margin-top: 40px;
    }

    .studio-note__content h2,
    .studio-note__content > div {
        grid-column: 1;
    }

    .studio-note__content h2 {
        max-width: none;
        font-size: 30px;
    }

    .studio-note .proof-stats {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 56px;
    }

    .studio-note .proof-stats > div {
        min-height: 124px;
        padding-top: 16px;
    }

    .studio-note .proof-stats dt {
        font-size: 48px;
    }

    .capabilities-showcase {
        width: calc(100% - 48px);
        padding-block: 64px 72px;
    }

    .capabilities-showcase--page {
        padding-top: 0;
    }

    .capabilities-showcase__header {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 20px;
    }

    .capabilities-showcase__header h2 {
        font-size: 24px;
    }

    .capabilities-showcase__header .text-link {
        min-width: 0;
        justify-self: start;
    }

    .capabilities-showcase__stage {
        display: block;
        min-height: 0;
        margin-top: 24px;
    }

    .capabilities-showcase--page .capabilities-showcase__stage {
        margin-top: 0;
    }

    .capabilities-showcase__item {
        display: block;
        min-height: 0;
    }

    .capabilities-showcase__trigger {
        min-height: 72px;
        grid-template-columns: 28px minmax(0, 1fr) 18px;
        gap: 8px;
        padding: 16px 0;
        align-items: start;
    }

    .capabilities-showcase__name {
        max-width: none;
        font-size: 16px;
        line-height: 1.12;
    }

    .capabilities-showcase__item.is-active .capabilities-showcase__trigger {
        padding-inline: 12px;
    }

    .capabilities-showcase__item > .capabilities-showcase__panel,
    .capabilities-showcase__panels .capabilities-showcase__panel {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 4 / 3;
        margin-bottom: 8px;
    }

    .has-js .capabilities-showcase__panels:empty {
        display: none;
    }

    html:not(.has-js) .capabilities-showcase__panels {
        grid-template-columns: 1fr;
    }

    .capabilities-showcase__caption {
        padding: 14px;
    }

    .capabilities-showcase__copy {
        display: block;
    }

    .capabilities-showcase__copy h3 {
        max-width: 13ch;
        font-size: clamp(24px, 8vw, 31px);
    }

    .capabilities-showcase__copy > div {
        max-width: 34ch;
        margin-top: 12px;
        font-size: 10px;
    }

    .site-page--services .page-hero,
    .site-page--about .page-hero,
    .services-cta {
        width: calc(100% - 48px);
    }

    .site-page--services .page-hero h1,
    .site-page--about .page-hero h1 {
        font-size: 40px;
    }

    .services-cta {
        padding-block: 72px 80px;
    }

    .services-cta__topline {
        gap: 16px;
    }

    .services-cta__body {
        display: block;
        min-height: 0;
        padding-top: 44px;
    }

    .services-cta__body h2 {
        max-width: none;
        font-size: clamp(28px, 10.5vw, 44px);
        overflow-wrap: anywhere;
    }

    .services-cta__aside {
        gap: 48px;
        margin-top: 64px;
        padding-top: 0;
    }

    .services-cta__copy p {
        font-size: 12px;
    }

    .services-cta__link {
        min-height: 76px;
        gap: 8px;
        font-size: 9px;
    }

    .services-cta__link > span:first-child {
        min-width: 0;
    }

    .services-cta__link-arrow {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .site-footer__inner {
        width: calc(100% - 48px);
        padding-top: 72px;
    }

    .site-footer__topline {
        gap: 16px;
    }

    .site-footer__main {
        display: block;
    }

    .site-footer__statement h2 {
        max-width: 13ch;
        font-size: 36px;
    }

    .site-footer__statement p {
        margin-top: 22px;
    }

    .footer-contact {
        margin-top: 48px;
    }

    .footer-contact__link {
        min-height: 64px;
    }

    .site-footer__base {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    .site-footer__identity {
        grid-column: 1 / -1;
    }

    .site-footer__links {
        grid-column: 1;
        justify-content: flex-start;
    }

    .site-footer__top {
        grid-column: 2;
    }

    .site-footer__copyright {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .page-hero,
    .contact-hero {
        padding-block: 108px 52px;
    }

    .page-hero h1,
    .contact-hero h1,
    .not-found h1 {
        font-size: 28px;
    }

    .page-hero__body,
    .contact-hero__main {
        margin-top: 48px;
    }


    .closing-prompt {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .closing-prompt h2,
    .closing-prompt .contact-actions {
        grid-column: 1;
    }


    .site-page--contact .contact-hero,
    .site-page--contact .contact-methods,
    .site-page--contact .contact-note {
        width: calc(100% - 48px);
    }

    .site-page--contact .contact-hero {
        min-height: 0;
        padding-block: 96px 40px;
    }

    .site-page--contact .contact-hero__main {
        min-height: 0;
        gap: 24px;
        margin-top: 40px;
    }

    .site-page--contact .contact-hero h1 {
        max-width: 12ch;
        grid-column: 1;
        font-size: 38px;
    }

    .site-page--contact .contact-hero__copy {
        grid-column: 1;
        padding-bottom: 0;
        font-size: 12px;
    }

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

    .contact-method {
        min-height: 132px;
        gap: 18px;
        padding: 18px 0 22px;
    }

    .contact-method + .contact-method {
        border-top: 1px solid var(--morph-rule);
        border-left: 0;
        padding-left: 0;
    }



    .contact-method__value {
        font-size: clamp(21px, 7vw, 27px);
        overflow-wrap: anywhere;
    }

    .project-file__opening,
    .project-file__summary,
    .project-file__gallery,
    .project-file__pagination {
        width: calc(100% - 48px);
    }

    .project-file__opening {
        padding-block: 108px 72px;
    }

    .project-file__composition {
        display: block;
        margin-top: 48px;
    }

    .project-file__copy h1 {
        max-width: none;
        margin-top: 18px;
        font-size: 50px;
    }

    .project-file__introduction {
        max-width: none;
        margin-top: 28px;
    }

    .project-file__details {
        margin-top: 40px;
    }

    .project-file__cover {
        margin-top: 48px;
        aspect-ratio: 4 / 3;
    }

    .project-file__summary {
        padding-block: 72px 48px;
    }

    .project-file__section-label > span:last-child {
        display: none;
    }

    .project-file__summary-grid {
        display: block;
        margin-top: 44px;
    }

    .project-file__summary h2 {
        font-size: 34px;
    }

    .project-file__summary-copy {
        max-width: none;
        margin-top: 24px;
    }

    .project-file__gallery {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 24px;
    }

    .project-file__gallery .project-file__media {
        grid-column: 1 !important;
        aspect-ratio: 6 / 5 !important;
    }

    .project-file__gallery .project-file__media--video {
        aspect-ratio: 16 / 9 !important;
    }

    .project-file {
        padding-bottom: 64px;
    }

    .project-file__pagination {
        grid-template-columns: 1fr;
        gap: 4px;
        margin-top: 64px;
        margin-bottom: 0;
        padding: 4px;
    }

    .project-file__pagination a {
        min-height: 112px;
    }
}

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

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

    .has-js .project-file.is-motion-ready [data-project-detail-media],
    .has-js .project-file.is-motion-ready [data-project-detail-reveal] {
        opacity: 1;
        transform: none;
    }

    .home [data-home-reveal].is-motion-ready {
        opacity: 1;
        clip-path: none;
        transform: none;
    }

    .client-marquee__track,
    .has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__image,
    .has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__eyebrow,
    .has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__count,
    .has-js .capabilities-showcase.is-motion-ready .capabilities-showcase__panel.is-active .capabilities-showcase__copy {
        animation: none !important;
    }

    .home [data-home-glitch]::before,
    .home [data-home-glitch]::after {
        display: none;
        animation: none !important;
    }
}
