:root {
    --paper: #f6f6f2;
    --paper-soft: #ecebe5;
    --concrete: #d8d7cf;
    --clay: #a95735;
    --moss: #30473b;
    --graphite: #151716;
    --ink: #242725;
    --muted: #6b7069;
    --mist: rgba(246, 246, 242, 0.78);
    --line: rgba(21, 23, 22, 0.14);
    --line-strong: rgba(21, 23, 22, 0.26);
    --shadow: 0 28px 90px rgba(15, 17, 16, 0.18);
    --font-sans: 'Sora', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --content-width: min(1180px, calc(100% - 2rem));
    --header-height: 78px;
    --hero-shift: 0px;
    --page-progress: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: var(--font-sans);
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 48%, var(--paper) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(21, 23, 22, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 23, 22, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 76%);
    opacity: 0.34;
}

img {
    display: block;
    max-width: 100%;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: var(--graphite);
    color: var(--paper);
}

.public-chrome {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    min-height: var(--header-height);
    padding: 0.95rem 0;
    color: var(--paper);
    transition: color 0.28s ease;
}

.public-chrome::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    backdrop-filter: blur(16px);
    background: rgba(246, 246, 242, 0.88);
    border-bottom: 1px solid rgba(21, 23, 22, 0.08);
    transition: opacity 0.28s ease;
}

.public-chrome::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--clay);
    transform: scaleX(var(--page-progress));
    transform-origin: left;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.public-chrome.is-scrolled,
.public-chrome:focus-within {
    color: var(--graphite);
}

.public-chrome.is-scrolled::before,
.public-chrome:focus-within::before {
    opacity: 1;
}

.public-chrome.is-scrolled::after {
    opacity: 1;
}

.public-chrome__inner {
    position: relative;
    width: var(--content-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.public-brandmark img {
    width: 122px;
    filter: brightness(0) invert(1);
    transition: filter 0.28s ease, opacity 0.28s ease;
}

.public-chrome.is-scrolled .public-brandmark img,
.public-chrome:focus-within .public-brandmark img {
    filter: none;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.public-nav a {
    opacity: 0.78;
    transition: opacity 0.22s ease, color 0.22s ease;
}

.public-nav a:hover,
.public-nav a:focus-visible {
    opacity: 1;
}

.public-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: clip;
    display: flex;
    align-items: end;
    padding: calc(var(--header-height) + 3.2rem) 0 4.2rem;
    isolation: isolate;
}

.hero-media,
.hero-scrim,
.hero-structure {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -3;
    background-size: cover;
    background-position: center;
    transform: translate3d(0, var(--hero-shift), 0) scale(1.06);
    transform-origin: center;
    filter: saturate(0.9) contrast(1.04);
}

.hero-structure {
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.62;
    mix-blend-mode: screen;
}

.hero-scrim {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 10, 9, 0.2) 0%, rgba(8, 10, 9, 0.34) 38%, rgba(8, 10, 9, 0.72) 100%),
        linear-gradient(90deg, rgba(8, 10, 9, 0.72) 0%, rgba(8, 10, 9, 0.24) 58%, rgba(8, 10, 9, 0.62) 100%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    width: var(--content-width);
    margin: 0 auto;
}

.hero-copy-block {
    max-width: 43rem;
    color: var(--paper);
}

.hero-brand {
    margin: 0;
    font-size: 8.2rem;
    line-height: 0.88;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-brand-suffix {
    margin: 0.35rem 0 1.45rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 0.82;
}

.hero-title {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-serif);
    font-size: 3.05rem;
    line-height: 0.98;
    font-weight: 600;
}

.hero-summary {
    margin: 1.2rem 0 0;
    max-width: 37ch;
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(246, 246, 242, 0.9);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.hero-actions {
    margin-top: 2rem;
}

.mobile-folio,
.mobile-section-ledger {
    display: none;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.92rem 1.3rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.cta:hover,
.cta:focus-visible {
    transform: translateY(-2px);
}

.cta-primary {
    background: var(--paper);
    color: var(--graphite);
}

.cta-secondary {
    border: 1px solid rgba(246, 246, 242, 0.62);
    color: var(--paper);
    background: rgba(246, 246, 242, 0.06);
}

.section {
    position: relative;
    padding: 7rem 0;
}

.section-inner {
    width: var(--content-width);
    margin: 0 auto;
}

.section-head {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2.4rem;
    margin-bottom: 3rem;
}

.section-kicker,
.project-meta,
.process-label,
.service-index {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-kicker {
    margin: 0;
    color: var(--muted);
}

.section-head h2,
.studio-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 3.25rem;
    line-height: 0.98;
    font-weight: 600;
}

.section-head p:last-child,
.studio-copy p:last-child,
.project-copy p:last-child,
.contact-copy p:last-child,
.service-item p:last-child,
.process-item p:last-child {
    margin-bottom: 0;
    color: rgba(36, 39, 37, 0.72);
    line-height: 1.78;
}

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

.service-item {
    min-height: 15rem;
    padding: 1.4rem 1.35rem 1.5rem 0;
    border-right: 1px solid var(--line);
    transition: background-color 0.28s ease, padding-left 0.28s ease;
}

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

.service-item:hover,
.service-item:focus-within {
    padding-left: 0.8rem;
    background: rgba(48, 71, 59, 0.05);
}

.service-index {
    margin: 0 0 1.1rem;
    color: var(--clay);
}

.service-item h3,
.process-item h3,
.project-copy h3 {
    margin: 0 0 0.9rem;
    line-height: 1.16;
}

.service-item h3,
.process-item h3 {
    font-size: 1.12rem;
}

.section-process {
    background: rgba(216, 215, 207, 0.28);
}

.process-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2.4rem;
    align-items: start;
}

.process-note {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    margin: 0;
    max-width: 18rem;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--moss);
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-strong);
}

.process-item {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1.5rem;
    padding: 1.45rem 0;
    border-bottom: 1px solid var(--line);
}

.process-label {
    margin: 0;
    color: var(--moss);
}

.section-local {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    background: var(--paper);
}

.local-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    gap: 3rem;
    align-items: start;
}

.local-copy h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 0.98;
    font-weight: 600;
}

.local-copy p:last-child {
    max-width: 48rem;
    color: rgba(36, 39, 37, 0.72);
    line-height: 1.78;
}

.local-panel {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line-strong);
}

.local-panel__label {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.local-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.local-areas span {
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    color: var(--moss);
    font-size: 0.8rem;
    font-weight: 700;
}

.local-address {
    margin: 1.35rem 0 0;
    color: rgba(36, 39, 37, 0.72);
    line-height: 1.7;
}

.section-work {
    background: var(--graphite);
    color: var(--paper);
}

.section-work .section-kicker,
.section-work .project-meta {
    color: rgba(246, 246, 242, 0.58);
}

.section-work .section-head p:last-child,
.section-work .project-copy p:last-child {
    color: rgba(246, 246, 242, 0.72);
}

.work-list {
    display: grid;
    gap: 5.5rem;
}

.project-row {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: 2.5rem;
    align-items: center;
}

.project-row.is-flipped {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.project-row.is-flipped .project-media {
    order: 2;
}

.project-row.is-flipped .project-copy {
    order: 1;
}

.project-media {
    position: relative;
    overflow: clip;
    background: #252927;
    box-shadow: var(--shadow);
}

.project-gallery {
    display: grid;
    aspect-ratio: 1.36 / 1;
}

.project-gallery--2,
.project-gallery--3 {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.72fr);
    grid-template-rows: 1fr 1fr;
    gap: 0.55rem;
    box-shadow: none;
    background: transparent;
}

.project-gallery__image {
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.project-gallery--2 .project-gallery__image--1,
.project-gallery--3 .project-gallery__image--1 {
    grid-row: 1 / 3;
}

.project-gallery--2 .project-gallery__image--2 {
    grid-row: 1 / 3;
}

.project-row:hover .project-gallery__image,
.project-row:focus-within .project-gallery__image,
.studio-visual:hover img {
    filter: saturate(1.02) contrast(1.03);
    transform: scale(1.035);
}

.project-copy {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(246, 246, 242, 0.26);
}

.project-meta {
    margin: 0 0 1rem;
}

.project-copy h3 {
    color: var(--paper);
    font-family: var(--font-serif);
    font-size: 2.15rem;
    font-weight: 600;
}

.section-studio {
    background: linear-gradient(180deg, rgba(48, 71, 59, 0.08), rgba(246, 246, 242, 0.2));
}

.studio-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 2.8rem;
    align-items: center;
}

.studio-copy p:last-child {
    max-width: 42ch;
}

.studio-visual {
    position: relative;
    margin: 0;
    aspect-ratio: 1.32 / 1;
    overflow: clip;
    background: var(--concrete);
    box-shadow: var(--shadow);
}

.studio-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.section-contact {
    padding-bottom: 5rem;
}

.contact-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #151716, #223028 74%, #2e3f35);
    border-left: 4px solid var(--clay);
    color: var(--paper);
    box-shadow: var(--shadow);
}

.contact-copy p:last-child,
.contact-detail {
    color: rgba(246, 246, 242, 0.78);
}

.contact-detail {
    width: 100%;
    margin: 0.2rem 0 0;
    line-height: 1.75;
}

.contact-detail a {
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.14s; }
.reveal.delay-3 { transition-delay: 0.22s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.4s; }

body.is-ready .reveal.is-visible,
body.is-ready .hero .reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .hero-brand {
        font-size: 6.4rem;
    }

    .hero-title,
    .section-head h2,
    .studio-copy h2,
    .contact-copy h2 {
        font-size: 2.55rem;
    }

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

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

    .section-head,
    .process-layout,
    .local-grid,
    .project-row,
    .project-row.is-flipped,
    .studio-grid,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .project-row.is-flipped .project-media,
    .project-row.is-flipped .project-copy {
        order: initial;
    }

    .process-note {
        position: static;
        max-width: 32rem;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 68px;
        --mobile-folio-shift: 0px;
    }

    .public-chrome {
        padding: 0.7rem 0;
    }

    .public-menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 32;
    }

    .public-nav {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: none;
        min-width: 0;
        padding: calc(var(--header-height) + 3.4rem) 1rem 2rem;
        gap: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        counter-reset: menu;
        color: var(--paper);
        background:
            linear-gradient(rgba(246, 246, 242, 0.055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(246, 246, 242, 0.055) 1px, transparent 1px),
            linear-gradient(150deg, rgba(21, 23, 22, 0.98), rgba(32, 44, 38, 0.98) 66%, rgba(21, 23, 22, 0.98));
        background-size: 54px 54px, 54px 54px, auto;
        border: 0;
        box-shadow: none;
    }

    .public-nav.is-open {
        display: flex;
    }

    .public-nav::before {
        content: "Novart Architects";
        margin-bottom: 1.5rem;
        color: rgba(246, 246, 242, 0.58);
        font-family: var(--font-serif);
        font-size: 2rem;
        line-height: 1;
    }

    .public-nav a {
        counter-increment: menu;
        display: grid;
        grid-template-columns: 2rem 1fr;
        gap: 0.9rem;
        padding: 1.1rem 0;
        border-top: 1px solid rgba(246, 246, 242, 0.16);
        color: var(--paper);
        font-size: 1.45rem;
        font-weight: 700;
        text-transform: none;
        opacity: 1;
    }

    .public-nav a::before {
        content: counter(menu, decimal-leading-zero);
        color: var(--clay);
        font-size: 0.76rem;
        line-height: 1.8rem;
    }

    .public-nav a:last-child {
        border-bottom: 1px solid rgba(246, 246, 242, 0.16);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .public-chrome,
    body.nav-open .public-chrome:focus-within {
        color: var(--paper);
    }

    body.nav-open .public-chrome::before {
        opacity: 0;
    }

    body.nav-open .public-brandmark img {
        filter: brightness(0) invert(1);
    }

    .hero {
        min-height: 100svh;
        padding: var(--header-height) 0 1rem;
        align-items: stretch;
    }

    .hero::after {
        content: "";
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 10.2rem;
        height: 1px;
        background: rgba(246, 246, 242, 0.42);
        transform: scaleX(0.58);
        transform-origin: left;
        z-index: 1;
    }

    .hero-media {
        background-position: 56% center;
        filter: saturate(0.78) contrast(1.08);
    }

    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(8, 10, 9, 0.2) 0%, rgba(8, 10, 9, 0.52) 47%, rgba(8, 10, 9, 0.86) 100%),
            linear-gradient(90deg, rgba(8, 10, 9, 0.8) 0%, rgba(8, 10, 9, 0.24) 62%, rgba(8, 10, 9, 0.76) 100%);
    }

    .hero-shell {
        min-height: calc(100svh - var(--header-height) - 1rem);
        display: flex;
        align-items: end;
    }

    .hero-structure {
        opacity: 0.42;
    }

    .mobile-folio {
        position: absolute;
        top: 1.2rem;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 0.66fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.42rem;
        width: min(64vw, 16rem);
        height: min(24svh, 12.5rem);
        transform: translate3d(0, var(--mobile-folio-shift), 0);
        z-index: 2;
        pointer-events: auto;
    }

    .mobile-folio::before {
        content: "";
        position: absolute;
        inset: -0.55rem;
        border: 1px solid rgba(246, 246, 242, 0.36);
        border-right-color: rgba(169, 87, 53, 0.72);
        pointer-events: none;
    }

    .mobile-folio__item {
        position: relative;
        min-width: 0;
        overflow: clip;
        background: rgba(246, 246, 242, 0.12);
        color: var(--paper);
    }

    .mobile-folio__item--1 {
        grid-row: 1 / 3;
    }

    .mobile-folio__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.86) contrast(1.08);
        transform: scale(1.04);
        transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
    }

    .mobile-folio__item:active img,
    .mobile-folio__item:focus-visible img {
        filter: saturate(1) contrast(1.04);
        transform: scale(1);
    }

    .mobile-folio__item span {
        position: absolute;
        left: 0.55rem;
        bottom: 0.5rem;
        font-size: 0.68rem;
        font-weight: 800;
        color: var(--paper);
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.58);
    }

    .hero-copy-block {
        max-width: 100%;
        padding-bottom: 0.2rem;
    }

    .hero-brand {
        font-size: 4.05rem;
        line-height: 0.84;
    }

    .hero-brand-suffix {
        margin: 0.28rem 0 0.8rem;
        font-size: 0.78rem;
    }

    .hero-title {
        max-width: 11.4ch;
        font-size: 2.18rem;
        line-height: 0.94;
    }

    .hero-summary {
        max-width: 28ch;
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
    }

    .cta {
        width: 100%;
    }

    .section-services {
        padding-top: 3.4rem;
    }

    .section {
        padding: 4.35rem 0;
    }

    .mobile-section-ledger {
        display: grid;
        grid-template-columns: auto 1fr 1fr 1fr;
        gap: 0.65rem;
        margin: 0 0 2.1rem;
        padding: 0.8rem 0;
        border-top: 1px solid var(--line-strong);
        border-bottom: 1px solid var(--line);
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .section-head {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .section-head h2,
    .local-copy h2,
    .studio-copy h2,
    .contact-copy h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        display: flex;
        gap: 0.8rem;
        overflow-x: auto;
        margin-right: -1rem;
        padding: 0.1rem 1rem 0.7rem 0;
        border: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-item {
        flex: 0 0 min(72vw, 18rem);
        min-height: 17rem;
        padding: 1.1rem;
        border: 1px solid var(--line);
        border-left: 3px solid var(--clay);
        scroll-snap-align: start;
        background: rgba(246, 246, 242, 0.56);
    }

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

    .service-index {
        margin-bottom: 4.1rem;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .project-gallery,
    .project-gallery--2,
    .project-gallery--3 {
        aspect-ratio: 4 / 5;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.45rem;
    }

    .project-gallery--2 .project-gallery__image--1,
    .project-gallery--3 .project-gallery__image--1,
    .project-gallery--2 .project-gallery__image--2 {
        grid-row: auto;
    }

    .project-gallery--2,
    .project-gallery--3 {
        aspect-ratio: auto;
    }

    .project-gallery--2 .project-gallery__image,
    .project-gallery--3 .project-gallery__image {
        aspect-ratio: 4 / 3;
    }

    .section-work {
        padding: 4.2rem 0 0;
    }

    .section-work .section-inner {
        width: 100%;
    }

    .section-work .section-head {
        width: var(--content-width);
        margin: 0 auto 2.5rem;
    }

    .work-list {
        gap: 0;
    }

    .project-row,
    .project-row.is-flipped {
        position: relative;
        min-height: 92svh;
        padding: 0 0 4.4rem;
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 0;
        border-top: 1px solid rgba(246, 246, 242, 0.14);
    }

    .project-media {
        width: 100%;
        min-height: 62svh;
        aspect-ratio: auto;
        box-shadow: none;
    }

    .project-gallery--2,
    .project-gallery--3 {
        display: grid;
        grid-template-columns: 1fr 0.78fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.28rem;
        min-height: 62svh;
        aspect-ratio: auto;
    }

    .project-gallery--2 .project-gallery__image--1,
    .project-gallery--3 .project-gallery__image--1 {
        grid-row: 1 / 3;
    }

    .project-gallery--2 .project-gallery__image--2 {
        grid-row: 1 / 3;
    }

    .project-gallery--2 .project-gallery__image,
    .project-gallery--3 .project-gallery__image {
        aspect-ratio: auto;
    }

    .project-copy {
        width: calc(100% - 2rem);
        margin: -4rem auto 0;
        padding: 1.25rem 0 0;
        background: linear-gradient(180deg, rgba(21, 23, 22, 0.86), rgba(21, 23, 22, 0));
        border-top-color: rgba(246, 246, 242, 0.42);
        z-index: 1;
    }

    .project-copy h3 {
        font-size: 2.4rem;
        line-height: 0.96;
    }

    .contact-band {
        padding: 2rem;
    }
}

@media (max-height: 620px) and (min-width: 761px) {
    .hero {
        padding-top: calc(var(--header-height) + 1.8rem);
        padding-bottom: 2.2rem;
    }

    .hero-brand {
        font-size: 5.6rem;
    }

    .hero-brand-suffix {
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-summary {
        margin-top: 0.85rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 1.15rem;
    }
}

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

    .hero-media,
    .project-gallery__image,
    .studio-visual img,
    .reveal,
    .cta,
    .service-item {
        transition: none;
        transform: none;
    }

    .hero-structure {
        display: none;
    }

    .reveal {
        opacity: 1;
    }
}
