:root {
    --bg: #080808;
    --bg-soft: #101010;
    --surface: #141414;
    --line: rgba(255, 255, 255, .13);

    --text: #f5f5f2;
    --muted: #969696;

    --accent: #baff00;

    --container: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

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

button {
    font: inherit;
}

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


/* HEADER */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(8, 8, 8, .82);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    max-width: var(--container);
    height: 86px;
    margin: auto;

    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand__slash,
.brand__code {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;

    font-size: 13px;
    font-weight: 600;
}

.main-nav a {
    color: #bababa;
    transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.nav-contact {
    border: 1px solid var(--line);
    padding: 12px 18px;
}

.nav-contact:hover {
    border-color: var(--accent);
}

.menu-toggle {
    display: none;
}


/* COMMON */

.section {
    max-width: var(--container);
    margin: auto;

    padding:
        130px
        32px;

    border-bottom: 1px solid var(--line);
}

.section-number {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .13em;
    margin-bottom: 72px;
}

.kicker {
    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;

    padding-top: 86px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: auto;
    padding: 80px 32px 40px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 50px;

    color: #999;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: var(--accent);
    border-radius: 50%;

    box-shadow:
        0 0 18px var(--accent);
}

.hero h1 {
    margin: 0;

    max-width: 1200px;

    font-size:
        clamp(62px, 8.3vw, 142px);

    line-height: .83;
    letter-spacing: -.075em;

    font-weight: 800;
}

.hero h1 span {
    color: var(--accent);
}

.hero-bottom {
    margin-top: 72px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;
}

.hero-bottom p {
    max-width: 520px;

    margin: 0;

    color: #aaa;

    font-size: 20px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 32px;

    padding: 0 24px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;

    text-transform: uppercase;

    transition: .2s ease;
}

.button-primary {
    background: var(--accent);
    color: #080808;
}

.button-primary:hover {
    transform: translateY(-3px);
}

.button-ghost {
    border: 1px solid var(--line);
}

.button-ghost:hover {
    border-color: white;
}

.hero-meta {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: auto;

    padding: 20px 32px;

    display: flex;
    justify-content: space-between;

    color: #666;

    border-top: 1px solid var(--line);

    font-size: 10px;
    letter-spacing: .12em;
}


/* MANIFESTO */

.manifesto {
    display: grid;

    grid-template-columns:
        minmax(0, .75fr)
        minmax(0, 1.25fr);

    column-gap: 90px;
}

.manifesto .section-number {
    grid-column: 1 / -1;
}

.manifesto-content h2 {
    margin:
        20px
        0
        40px;

    font-size:
        clamp(64px, 7vw, 120px);

    line-height: .88;

    letter-spacing: -.065em;
}

.manifesto-content h2 span {
    color: var(--accent);
}

.manifesto-description {
    max-width: 580px;

    color: var(--muted);

    font-size: 21px;
    line-height: 1.5;
}

.service-lines {
    border-top: 1px solid var(--line);
}

.service-line {
    min-height: 88px;

    display: grid;
    grid-template-columns: 55px 1fr 25px;

    align-items: center;

    border-bottom: 1px solid var(--line);
}

.service-line span {
    color: #666;
    font-size: 11px;
}

.service-line strong {
    font-size: 19px;
}


/* FEATURED */

.featured-project__header {
    display: grid;
    grid-template-columns: 1.4fr .6fr;

    gap: 80px;
    align-items: end;
}

.project-label {
    display: block;

    margin-bottom: 22px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.featured-project h2 {
    margin: 0;

    font-size:
        clamp(65px, 8vw, 130px);

    line-height: .82;
    letter-spacing: -.07em;
}

.featured-project__header p {
    color: var(--muted);

    font-size: 19px;
    line-height: 1.6;
}

.featured-visual {
    margin-top: 80px;
}

.software-window {
    border: 1px solid var(--line);

    background:
        linear-gradient(
            145deg,
            #181818,
            #090909
        );

    box-shadow:
        0 60px 140px rgba(0,0,0,.55);
}

.software-window__top {
    height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 7px;

    border-bottom: 1px solid var(--line);
}

.software-window__top > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #414141;
}

.software-url {
    margin-left: 15px;

    color: #5f5f5f;

    font-family: monospace;
    font-size: 11px;
}

.software-placeholder {
    aspect-ratio: 16 / 8;

    padding: 7vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background-image:
        linear-gradient(
            rgba(186,255,0,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(186,255,0,.05) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.software-placeholder > span {
    color: var(--accent);

    font-size: 11px;
    letter-spacing: .14em;
}

.software-placeholder strong {
    margin-top: 25px;

    font-size:
        clamp(38px, 6vw, 90px);

    line-height: .9;
    letter-spacing: -.055em;
}

.software-placeholder small {
    margin-top: 40px;
    color: #555;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 38px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.project-meta-grid > div {
    min-height: 110px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    border-right: 1px solid var(--line);
}

.project-meta-grid > div:last-child {
    border-right: 0;
}

.project-meta-grid span {
    color: #666;
    font-size: 10px;
    text-transform: uppercase;
}

.project-meta-grid strong {
    font-size: 15px;
}

.text-link {
    margin-top: 40px;

    display: inline-flex;
    gap: 25px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--accent);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .06em;
}


/* BUILDING */

.building-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 70px;
}

.building-heading h2 {
    margin: 0;

    font-size:
        clamp(62px, 7vw, 115px);

    line-height: .87;
    letter-spacing: -.065em;
}

.building-heading h2 span {
    color: var(--accent);
}

.building-heading p {
    max-width: 350px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.5;
}

.building-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.building-card {
    padding: 22px;

    background: var(--bg-soft);

    border: 1px solid var(--line);

    transition: .25s ease;
}

.building-card:hover {
    transform: translateY(-6px);
    border-color: rgba(186,255,0,.5);
}

.building-card__top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 22px;

    color: #666;

    font-size: 10px;
}

.building-status {
    color: var(--accent);
}

.building-placeholder {
    aspect-ratio: 1.35;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    background: #0c0c0c;

    border: 1px solid var(--line);

    color: #272727;

    font-size: 70px;
    font-weight: 900;
}

.building-card h3 {
    margin: 0 0 15px;

    font-size: 24px;
    letter-spacing: -.035em;
}

.building-card p {
    min-height: 74px;

    color: var(--muted);

    line-height: 1.55;
}

.tags {
    margin-top: 28px;

    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tags span {
    padding: 7px 9px;

    border: 1px solid var(--line);

    color: #777;

    font-size: 9px;
    text-transform: uppercase;
}


/* CAPABILITIES */

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

.capabilities-list a {
    min-height: 130px;

    display: grid;
    grid-template-columns: 90px 1fr 40px;

    align-items: center;

    border-bottom: 1px solid var(--line);

    transition: .2s ease;
}

.capabilities-list a:hover {
    padding-left: 20px;
    color: var(--accent);
}

.capabilities-list span {
    color: #666;
    font-size: 11px;
}

.capabilities-list strong {
    font-size:
        clamp(30px, 4vw, 64px);

    letter-spacing: -.045em;
}

.capabilities-list em {
    font-size: 22px;
    font-style: normal;
}


/* BUSINESS DNA */

.business-dna__content {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
}

.business-dna .kicker {
    grid-column: 1 / -1;
}

.business-dna h2 {
    grid-column: 1 / -1;

    margin:
        25px
        0
        70px;

    max-width: 1100px;

    font-size:
        clamp(60px, 7vw, 120px);

    line-height: .86;
    letter-spacing: -.065em;
}

.business-dna h2 span {
    color: var(--accent);
}

.business-dna__text {
    grid-column: 2;

    max-width: 620px;
}

.business-dna__text p {
    margin:
        0
        0
        25px;

    color: #b0b0b0;

    font-size: 21px;
    line-height: 1.55;
}


/* MAIN CTA */

.main-cta {
    max-width: var(--container);
    margin: auto;

    padding: 130px 32px;
}

.main-cta > span {
    color: #666;

    font-size: 11px;
    letter-spacing: .12em;
}

.main-cta h2 {
    margin:
        70px
        0;

    font-size:
        clamp(68px, 10vw, 155px);

    line-height: .78;
    letter-spacing: -.075em;
}

.main-cta__bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;

    border-top: 1px solid var(--line);

    padding-top: 30px;
}

.main-cta__bottom strong {
    color: var(--accent);

    font-size:
        clamp(50px, 7vw, 100px);

    letter-spacing: -.06em;
}

.main-cta__bottom a {
    padding-bottom: 10px;

    border-bottom: 1px solid var(--accent);

    font-weight: 700;
}


/* FOOTER */

.site-footer {
    max-width: var(--container);
    margin: auto;

    padding: 0 32px 35px;
}

.site-footer__top {
    padding:
        80px
        0;

    display: flex;
    align-items: end;
    justify-content: space-between;

    border-top: 1px solid var(--line);
}

.footer-heading {
    display: flex;
    flex-direction: column;

    font-size: 25px;
}

.footer-heading strong {
    color: var(--accent);

    margin-top: 8px;

    font-size: 50px;
}

.footer-cta {
    display: flex;
    gap: 30px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--accent);
}

.site-footer__bottom {
    padding-top: 25px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    border-top: 1px solid var(--line);

    color: #666;

    font-size: 11px;
    line-height: 1.6;
}

.footer-location {
    text-align: center;
}

.footer-copy {
    text-align: right;
}


/* MOBILE */

@media (max-width: 900px) {

    .site-header__inner {
        height: 72px;
        padding: 0 20px;
    }

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

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 6px;

        padding: 0;

        border: 0;
        background: none;

        cursor: pointer;

        position: relative;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;

        width: 22px;
        height: 1px;

        background: #fff;

        transform-origin: center;

        transition:
            transform .25s ease,
            opacity .25s ease;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        padding: 30px 20px;

        flex-direction: column;
        align-items: stretch;

        background: #090909;

        border-bottom: 1px solid var(--line);

        z-index: 1001;
    }

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

    .main-nav a {
        width: 100%;
        padding: 14px 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .menu-toggle.is-open span:first-child {
        transform:
            translateY(3.5px)
            rotate(45deg);
    }

    .menu-toggle.is-open span:last-child {
        transform:
            translateY(-3.5px)
            rotate(-45deg);
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-inner {
        padding:
            70px
            20px
            50px;
    }

    .hero h1 {
        font-size: 15vw;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 55px;
    }

    .hero-bottom p {
        font-size: 17px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        padding: 18px 20px;
    }

    .section {
        padding:
            90px
            20px;
    }

    .section-number {
        margin-bottom: 45px;
    }

    .manifesto {
        display: block;
    }

    .service-lines {
        margin-top: 60px;
    }

    .featured-project__header {
        display: block;
    }

    .featured-project__header p {
        margin-top: 40px;
    }

    .software-placeholder {
        aspect-ratio: .95;
        padding: 35px;
    }

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

    .project-meta-grid > div:nth-child(2) {
        border-right: 0;
    }

    .project-meta-grid > div {
        border-bottom: 1px solid var(--line);
    }

    .building-heading {
        display: block;
    }

    .building-heading p {
        margin-top: 35px;
    }

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

    .capabilities-list a {
        grid-template-columns: 45px 1fr 25px;
        min-height: 95px;
    }

    .business-dna__content {
        display: block;
    }

    .business-dna__text {
        margin-top: 50px;
    }

    .main-cta {
        padding:
            90px
            20px;
    }

    .main-cta__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .site-footer {
        padding:
            0
            20px
            30px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;

        gap: 50px;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-location,
    .footer-copy {
        text-align: left;
    }

}
/* =========================================================
   CASE STUDY
========================================================= */

.case-hero {
    min-height: 100vh;
    padding-top: 86px;

    display: flex;
    align-items: stretch;

    border-bottom: 1px solid var(--line);

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(186,255,0,.07),
            transparent 28%
        );
}

.case-hero__inner {
    width: 100%;
    max-width: var(--container);

    margin: auto;
    padding: 75px 32px 45px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-back {
    margin-bottom: 60px;

    color: #727272;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.case-back a:hover {
    color: var(--accent);
}

.case-eyebrow {
    display: flex;
    gap: 30px;

    margin-bottom: 35px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.case-eyebrow span:last-child {
    color: #686868;
}

.case-hero h1 {
    max-width: 1250px;

    margin: 0;

    font-size:
        clamp(72px, 10vw, 165px);

    line-height: .77;
    letter-spacing: -.08em;

    overflow-wrap: anywhere;
}

.case-hero__bottom {
    margin-top: 80px;

    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 50px;
}

.case-hero__bottom p {
    max-width: 650px;

    margin: 0;

    color: #aaa;

    font-size: 21px;
    line-height: 1.55;
}

.case-scroll {
    color: #545454;

    font-size: 9px;
    letter-spacing: .14em;
}


/* META */

.case-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding-top: 0;
    padding-bottom: 0;
}

.case-meta > div {
    min-height: 145px;

    padding: 35px 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid var(--line);
}

.case-meta > div:first-child {
    border-left: 1px solid var(--line);
}

.case-meta span {
    color: #606060;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.case-meta strong {
    font-size: 17px;
}


/* VISUAL */

.case-browser {
    overflow: hidden;

    border: 1px solid var(--line);

    box-shadow:
        0 70px 160px rgba(0,0,0,.4);
}

.case-browser__bar {
    height: 54px;

    padding: 0 20px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid var(--line);

    background: #101010;
}

.case-browser__screen {
    min-height: 690px;

    padding: 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background-color: #090909;

    background-image:
        linear-gradient(
            rgba(186,255,0,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(186,255,0,.04) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.case-browser__screen > span {
    margin-bottom: 30px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.case-browser__screen strong {
    max-width: 1100px;

    font-size:
        clamp(60px, 8vw, 125px);

    line-height: .82;
    letter-spacing: -.07em;
}

.case-browser__screen small {
    margin-top: 55px;

    color: #4e4e4e;
}


/* STORY */

.case-story__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(320px, .7fr);

    gap: 100px;
}

.case-story h2 {
    max-width: 900px;

    margin: 0;

    font-size:
        clamp(50px, 6vw, 95px);

    line-height: .9;
    letter-spacing: -.06em;
}

.case-story p {
    margin: 0;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.65;
}


/* HIGHLIGHT */

.case-highlight {
    position: relative;

    max-width: var(--container);
    margin: auto;

    padding: 135px 32px;

    display: grid;
    grid-template-columns: .25fr 1.75fr;

    background: var(--accent);
    color: #070707;
}

.case-highlight__number {
    font-size: 11px;
    font-weight: 800;
}

.case-highlight__content {
    max-width: 1100px;
}

.case-highlight__content > span {
    display: block;

    margin-bottom: 30px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.case-highlight h2 {
    margin: 0;

    font-size:
        clamp(58px, 7vw, 115px);

    line-height: .86;
    letter-spacing: -.07em;
}

.case-highlight p {
    max-width: 660px;

    margin:
        55px
        0
        0;

    font-size: 20px;
    line-height: 1.6;
}


/* TECH */

.case-modules__heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 80px;
}

.case-modules__heading h2 {
    margin: 0;

    font-size:
        clamp(65px, 8vw, 125px);

    line-height: .82;
    letter-spacing: -.07em;
}

.case-modules__heading p {
    margin: 0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.6;
}

.case-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.case-tech-grid > div {
    min-height: 150px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.case-tech-grid span {
    color: #555;

    font-size: 9px;
}

.case-tech-grid strong {
    font-size: 21px;
    letter-spacing: -.025em;
}


/* RESULT */

.case-result__grid {
    display: grid;
    grid-template-columns: .25fr 1.75fr;

    gap: 30px;
}

.case-result__mark {
    color: var(--accent);

    font-size: 70px;
    line-height: 1;
}

.case-result h2 {
    max-width: 1050px;

    margin: 0;

    font-size:
        clamp(55px, 7vw, 110px);

    line-height: .87;
    letter-spacing: -.065em;
}

.case-result p {
    max-width: 670px;

    margin:
        55px
        0
        0;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.65;
}


/* NEXT */

.case-next {
    max-width: var(--container);
    margin: auto;

    padding: 140px 32px;

    border-bottom: 1px solid var(--line);
}

.case-next > span {
    color: #555;

    font-size: 10px;
    letter-spacing: .14em;
}

.case-next h2 {
    margin:
        65px
        0;

    font-size:
        clamp(65px, 9vw, 145px);

    line-height: .8;
    letter-spacing: -.075em;
}

.case-next h2 strong {
    color: var(--accent);
}

.case-next > a {
    display: inline-flex;

    gap: 35px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--accent);

    font-size: 15px;
    font-weight: 700;
}


/* 404 */

.project-not-found {
    min-height: 70vh;

    padding-top: 190px;
}

.project-not-found h1 {
    max-width: 1000px;

    font-size:
        clamp(60px, 9vw, 135px);

    line-height: .85;
    letter-spacing: -.07em;
}


/* MOBILE */

@media (max-width: 900px) {

    .case-hero {
        min-height: auto;
        padding-top: 72px;
    }

    .case-hero__inner {
        padding:
            55px
            20px
            45px;
    }

    .case-eyebrow {
        flex-direction: column;
        gap: 9px;
    }

    .case-hero h1 {
        font-size: 15vw;
    }

    .case-hero__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .case-hero__bottom p {
        font-size: 17px;
    }

    .case-meta {
        grid-template-columns: 1fr 1fr;
    }

    .case-meta > div {
        min-height: 120px;

        border-bottom: 1px solid var(--line);
    }

    .case-meta > div:nth-child(2) {
        border-right: 0;
    }

    .case-browser__screen {
        min-height: 480px;
        padding: 35px;
    }

    .case-browser__screen strong {
        font-size: 13vw;
    }

    .case-story__grid,
    .case-modules__heading,
    .case-result__grid {
        display: block;
    }

    .case-story__grid > div,
    .case-modules__heading p,
    .case-result__grid > div {
        margin-top: 50px;
    }

    .case-highlight {
        padding:
            90px
            20px;

        display: block;
    }

    .case-highlight__number {
        margin-bottom: 50px;
    }

    .case-highlight p {
        font-size: 17px;
    }

    .case-tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-result__mark {
        display: block;
        margin-bottom: 40px;
    }

    .case-next {
        padding:
            90px
            20px;
    }

}
/* =========================================================
   NOW BUILDING
========================================================= */

.building-page-hero {
    padding-top: 170px;
}

.building-page-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: end;
}

.building-page-hero h1 {
    margin: 25px 0 0;

    font-size:
        clamp(72px, 8.5vw, 140px);

    line-height: .8;
    letter-spacing: -.075em;
}

.building-page-hero h1 span {
    color: var(--accent);
}

.building-page-hero__text {
    max-width: 500px;
}

.building-page-hero__text p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.6;
}


/* STATUS */

.building-status-strip {
    max-width: var(--container);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.building-status-strip > div {
    min-height: 125px;

    padding: 26px 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid var(--line);
}

.building-status-strip span {
    color: #5f5f5f;

    font-size: 9px;
    letter-spacing: .12em;
}

.building-status-strip strong {
    font-size: 18px;
}


/* CURRENT PROJECTS */

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

.current-project {
    display: grid;

    grid-template-columns:
        65px
        minmax(300px, .7fr)
        minmax(0, 1.3fr);

    border-bottom: 1px solid var(--line);

    transition: .25s ease;
}

.current-project:hover {
    background: #0d0d0d;
}

.current-project__index {
    padding-top: 28px;

    color: #555;

    font-size: 10px;
}

.current-project__visual {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    overflow: hidden;

    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);

    background:
        linear-gradient(
            145deg,
            #141414,
            #090909
        );
}

.current-project__visual::before {
    content: '';

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(186,255,0,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(186,255,0,.035) 1px,
            transparent 1px
        );

    background-size: 38px 38px;
}

.current-project__status {
    position: absolute;

    z-index: 2;

    top: 25px;
    left: 25px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.current-project__visual strong {
    position: relative;
    z-index: 2;

    color: #272727;

    font-size:
        clamp(60px, 7vw, 115px);

    letter-spacing: -.07em;

    transition: .3s ease;
}

.current-project:hover
.current-project__visual strong {
    color: var(--accent);
}

.current-project__progress {
    position: relative;
    z-index: 2;

    margin-top: 15px;

    color: #565656;

    font-size: 9px;
    letter-spacing: .14em;

    text-transform: uppercase;
}

.current-project__content {
    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.current-project__label {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.current-project h2 {
    margin:
        22px
        0;

    font-size:
        clamp(36px, 4.2vw, 68px);

    line-height: .9;
    letter-spacing: -.055em;
}

.current-project p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.6;
}

.current-project__bottom {
    margin-top: 45px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;
}

.current-project__link {
    padding-bottom: 8px;

    display: flex;
    gap: 20px;

    border-bottom: 1px solid var(--accent);

    font-size: 12px;
    font-weight: 700;
}

.current-project__private {
    color: #4f4f4f;

    font-size: 9px;
    letter-spacing: .12em;
}


/* PRINCIPLE */

.building-principle__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, .8fr);

    gap: 100px;
}

.building-principle h2 {
    margin: 0;

    color: var(--accent);

    font-size:
        clamp(70px, 8vw, 130px);

    line-height: .8;
    letter-spacing: -.075em;
}

.building-principle strong {
    display: block;

    margin-bottom: 35px;

    font-size: 26px;
    line-height: 1.25;
}

.building-principle p {
    margin:
        0
        0
        25px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;
}


/* LIFECYCLE */

.building-archive__header {
    display: grid;
    grid-template-columns: 1.3fr .7fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 75px;
}

.building-archive__header h2 {
    margin: 0;

    font-size:
        clamp(62px, 7vw, 115px);

    line-height: .83;
    letter-spacing: -.07em;
}

.building-archive__header h2 span {
    color: var(--accent);
}

.building-archive__header p {
    max-width: 450px;

    margin: 0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.6;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.lifecycle-grid > div {
    min-height: 245px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.lifecycle-grid > div > span {
    color: #555;

    font-size: 9px;
}

.lifecycle-grid strong {
    margin-top: auto;

    font-size: 22px;
}

.lifecycle-grid p {
    margin:
        15px
        0
        0;

    color: #727272;

    font-size: 13px;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 900px) {

    .building-page-hero {
        padding-top: 125px;
    }

    .building-page-hero__grid {
        display: block;
    }

    .building-page-hero h1 {
        font-size: 15vw;
    }

    .building-page-hero__text {
        margin-top: 50px;
    }

    .building-status-strip {
        grid-template-columns: 1fr 1fr;
    }

    .building-status-strip > div {
        min-height: 105px;
    }

    .current-project {
        display: block;
    }

    .current-project__index {
        padding:
            20px
            0;
    }

    .current-project__visual {
        min-height: 340px;

        border:
            1px solid
            var(--line);
    }

    .current-project__content {
        padding:
            32px
            0
            55px;
    }

    .current-project__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .building-principle__grid,
    .building-archive__header {
        display: block;
    }

    .building-principle__grid > div,
    .building-archive__header p {
        margin-top: 50px;
    }

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

    .lifecycle-grid > div {
        min-height: 200px;
    }

}
/* =========================================================
   CAPABILITIES
========================================================= */

.cap-page-hero {
    padding-top: 170px;
}

.cap-page-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: end;
}

.cap-page-hero h1 {
    margin: 25px 0 0;

    font-size:
        clamp(70px, 8vw, 135px);

    line-height: .81;
    letter-spacing: -.075em;
}

.cap-page-hero h1 span {
    color: var(--accent);
}

.cap-page-hero__text {
    max-width: 500px;
}

.cap-page-hero__text p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.6;
}


/* CAPABILITY SECTIONS */

.capability-sections {
    max-width: var(--container);
    margin: auto;

    border-top: 1px solid var(--line);
}

.capability-section {
    display: grid;

    grid-template-columns:
        80px
        minmax(0, 1.1fr)
        minmax(340px, .9fr);

    gap: 50px;

    padding:
        100px
        32px;

    border-bottom: 1px solid var(--line);
}

.capability-section__number {
    padding-top: 10px;

    color: #555;

    font-size: 10px;
    letter-spacing: .13em;
}

.capability-section__subtitle {
    display: block;

    margin-bottom: 25px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;

    text-transform: uppercase;
}

.capability-section h2 {
    max-width: 800px;

    margin: 0;

    font-size:
        clamp(55px, 6vw, 95px);

    line-height: .86;
    letter-spacing: -.065em;
}

.capability-section__main p {
    max-width: 720px;

    margin:
        40px
        0
        0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;
}

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

.capability-section__items > div {
    min-height: 68px;

    display: grid;
    grid-template-columns: 45px 1fr;

    align-items: center;

    border-bottom: 1px solid var(--line);
}

.capability-section__items span {
    color: #555;

    font-size: 9px;
}

.capability-section__items strong {
    font-size: 15px;
    font-weight: 600;
}


/* TECH STACK */

.technology-stack__heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 80px;
}

.technology-stack__heading h2 {
    margin: 0;

    font-size:
        clamp(65px, 7vw, 120px);

    line-height: .82;
    letter-spacing: -.07em;
}

.technology-stack__heading h2 span {
    color: var(--accent);
}

.technology-stack__heading p {
    margin:
        0
        0
        25px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.stack-grid > div {
    min-height: 155px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition: .2s ease;
}

.stack-grid > div:hover {
    background: var(--accent);
    color: #080808;
}

.stack-grid span {
    color: #666;

    font-size: 9px;
    letter-spacing: .1em;
}

.stack-grid > div:hover span {
    color: rgba(0,0,0,.55);
}

.stack-grid strong {
    font-size: 22px;
    letter-spacing: -.03em;
}


/* APPROACH */

.engineering-approach__header {
    display: grid;
    grid-template-columns: 1.25fr .75fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 85px;
}

.engineering-approach__header h2 {
    margin: 0;

    font-size:
        clamp(70px, 8vw, 130px);

    line-height: .8;
    letter-spacing: -.075em;
}

.engineering-approach__header h2 span {
    color: var(--accent);
}

.engineering-approach__header p {
    max-width: 420px;

    margin: 0;

    color: var(--muted);

    font-size: 21px;
    line-height: 1.5;
}

.engineering-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.engineering-steps article {
    min-height: 330px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.engineering-steps article > span {
    color: #555;

    font-size: 9px;
}

.engineering-steps h3 {
    margin:
        auto
        0
        20px;

    font-size: 24px;
    line-height: 1.05;

    letter-spacing: -.035em;
}

.engineering-steps p {
    margin: 0;

    color: #777;

    font-size: 13px;
    line-height: 1.55;
}


/* FIT */

.not-everything__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 100px;
}

.not-everything h2 {
    margin:
        25px
        0
        0;

    font-size:
        clamp(65px, 7.5vw, 125px);

    line-height: .81;
    letter-spacing: -.075em;
}

.not-everything h2 span {
    color: var(--accent);
}

.not-everything__content > p {
    margin:
        0
        0
        30px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}

.fit-list {
    margin-top: 55px;

    border-top: 1px solid var(--line);
}

.fit-list > div {
    min-height: 72px;

    display: grid;
    grid-template-columns: 50px 1fr;

    align-items: center;

    border-bottom: 1px solid var(--line);
}

.fit-list span {
    color: var(--accent);

    font-size: 20px;
}

.fit-list strong {
    font-size: 15px;
}


/* MOBILE */

@media (max-width: 900px) {

    .cap-page-hero {
        padding-top: 125px;
    }

    .cap-page-hero__grid {
        display: block;
    }

    .cap-page-hero h1 {
        font-size: 14.5vw;
    }

    .cap-page-hero__text {
        margin-top: 50px;
    }

    .capability-section {
        display: block;

        padding:
            75px
            20px;
    }

    .capability-section__number {
        margin-bottom: 30px;
    }

    .capability-section__items {
        margin-top: 55px;
    }

    .technology-stack__heading,
    .engineering-approach__header,
    .not-everything__grid {
        display: block;
    }

    .technology-stack__heading > div,
    .engineering-approach__header p,
    .not-everything__content {
        margin-top: 50px;
    }

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

    .engineering-steps {
        grid-template-columns: 1fr;
    }

    .engineering-steps article {
        min-height: 240px;
    }

}
/* =========================================================
   ABOUT
========================================================= */

.about-hero {
    padding-top: 170px;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: end;
}

.about-hero h1 {
    margin: 25px 0 0;

    font-size:
        clamp(70px, 8vw, 135px);

    line-height: .81;
    letter-spacing: -.075em;
}

.about-hero h1 span {
    color: var(--accent);
}

.about-hero__text {
    max-width: 500px;
}

.about-hero__text p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}


/* STORY */

.about-story__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, .8fr);

    gap: 100px;
}

.about-story h2 {
    margin: 0;

    font-size:
        clamp(65px, 7.5vw, 125px);

    line-height: .81;
    letter-spacing: -.075em;
}

.about-story h2 span {
    color: var(--accent);
}

.about-story__content p {
    margin:
        0
        0
        28px;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.65;
}


/* STATEMENT */

.about-statement {
    max-width: var(--container);
    margin: auto;

    background: var(--accent);
    color: #080808;
}

.about-statement__inner {
    padding:
        120px
        70px;
}

.about-statement__inner > span {
    display: block;

    margin-bottom: 55px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.about-statement blockquote {
    max-width: 1200px;

    margin: 0;

    font-size:
        clamp(45px, 6vw, 95px);

    line-height: .92;
    letter-spacing: -.055em;

    font-weight: 800;
}


/* EVOLUTION */

.about-evolution__header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 80px;
}

.about-evolution__header h2 {
    margin: 0;

    font-size:
        clamp(65px, 7vw, 120px);

    line-height: .82;
    letter-spacing: -.07em;
}

.about-evolution__header h2 span {
    color: var(--accent);
}

.about-evolution__header p {
    margin: 0;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.evolution-grid article {
    min-height: 275px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.evolution-grid article > span {
    color: #555;

    font-size: 9px;
}

.evolution-grid strong {
    margin-top: auto;

    font-size: 23px;
    line-height: 1.05;
}

.evolution-grid p {
    margin:
        18px
        0
        0;

    color: #737373;

    font-size: 13px;
    line-height: 1.55;
}


/* DIFFERENCE */

.about-difference__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    gap: 100px;
}

.about-difference h2 {
    margin:
        25px
        0
        0;

    font-size:
        clamp(62px, 7vw, 115px);

    line-height: .82;
    letter-spacing: -.07em;
}

.about-difference h2 span {
    color: var(--accent);
}

.about-difference__content p {
    margin:
        0
        0
        28px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}


/* PRINCIPLES */

.about-principles__header {
    margin-bottom: 75px;
}

.about-principles h2 {
    margin: 0;

    font-size:
        clamp(65px, 7vw, 120px);

    line-height: .82;
    letter-spacing: -.07em;
}

.about-principles h2 span {
    color: var(--accent);
}

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

.principles-list > div {
    min-height: 125px;

    display: grid;

    grid-template-columns:
        70px
        minmax(280px, .8fr)
        minmax(300px, 1.2fr);

    gap: 35px;

    align-items: center;

    border-bottom: 1px solid var(--line);
}

.principles-list > div > span {
    color: #555;

    font-size: 10px;
}

.principles-list strong {
    font-size: 22px;
    line-height: 1.2;
}

.principles-list p {
    max-width: 650px;

    margin: 0;

    color: #777;

    font-size: 15px;
    line-height: 1.55;
}


/* MULTIPRINT */

.about-multiprint__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    gap: 100px;
}

.about-multiprint h2 {
    margin:
        25px
        0
        0;

    font-size:
        clamp(62px, 7vw, 115px);

    line-height: .82;
    letter-spacing: -.07em;
}

.about-multiprint h2 span {
    color: var(--accent);
}

.about-multiprint__content p {
    margin:
        0
        0
        28px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}


/* MOBILE */

@media (max-width: 900px) {

    .about-hero {
        padding-top: 125px;
    }

    .about-hero__grid,
    .about-story__grid,
    .about-evolution__header,
    .about-difference__grid,
    .about-multiprint__grid {
        display: block;
    }

    .about-hero h1 {
        font-size: 14.5vw;
    }

    .about-hero__text,
    .about-story__content,
    .about-evolution__header p,
    .about-difference__content,
    .about-multiprint__content {
        margin-top: 50px;
    }

    .about-statement__inner {
        padding:
            85px
            20px;
    }

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

    .evolution-grid article {
        min-height: 210px;
    }

    .principles-list > div {
        padding:
            30px
            0;

        grid-template-columns: 40px 1fr;
        gap: 20px;
    }

    .principles-list p {
        grid-column: 2;
    }

}
/* =========================================================
   CONTACT / PROJECT BRIEF
========================================================= */

.contact-hero {
    padding-top: 170px;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: end;
}

.contact-hero h1 {
    margin: 25px 0 0;

    font-size:
        clamp(72px, 8.5vw, 140px);

    line-height: .8;
    letter-spacing: -.075em;
}

.contact-hero h1 span {
    color: var(--accent);
}

.contact-hero__text {
    max-width: 500px;
}

.contact-hero__text strong {
    display: block;

    margin-bottom: 30px;

    color: var(--accent);

    font-size:
        clamp(38px, 4vw, 60px);

    letter-spacing: -.05em;
}

.contact-hero__text p {
    margin:
        0
        0
        22px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;
}


/* FORM */

.project-form {
    border-top: 1px solid var(--line);
}

.form-section {
    display: grid;

    grid-template-columns:
        80px
        minmax(0, 1fr);

    padding:
        90px
        0;

    border-bottom: 1px solid var(--line);
}

.form-section__number {
    padding-top: 7px;

    color: #555;

    font-size: 10px;
    letter-spacing: .12em;
}

.form-section__content {
    max-width: 1000px;
}

.form-label-top {
    display: block;

    margin-bottom: 22px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}

.form-section h2 {
    max-width: 850px;

    margin:
        0
        0
        55px;

    font-size:
        clamp(42px, 5vw, 78px);

    line-height: .9;
    letter-spacing: -.06em;
}

.form-intro {
    max-width: 650px;

    margin:
        -20px
        0
        45px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.6;
}


/* FIELDS */

.form-grid {
    display: grid;

    gap:
        35px
        25px;
}

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

.field label {
    display: flex;
    justify-content: space-between;

    margin-bottom: 12px;

    color: #8a8a8a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.field label span {
    color: #505050;

    font-weight: 500;
}

.field input,
.field textarea {
    width: 100%;

    padding:
        18px
        0;

    border: 0;
    border-bottom: 1px solid var(--line);

    border-radius: 0;

    outline: none;

    background: transparent;
    color: #fff;

    font: inherit;
    font-size: 18px;

    transition: .2s ease;
}

.field textarea {
    min-height: 220px;

    resize: vertical;

    line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #444;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
}

.form-helper {
    max-width: 700px;

    margin:
        25px
        0
        0;

    color: #606060;

    font-size: 13px;
    line-height: 1.6;
}


/* PROJECT OPTIONS */

.project-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.project-option {
    position: relative;

    min-height: 105px;

    cursor: pointer;
}

.project-option input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.project-option > span {
    width: 100%;
    height: 100%;

    padding: 22px;

    display: grid;
    grid-template-columns: 45px 1fr;

    align-items: center;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition: .18s ease;
}

.project-option small {
    color: #555;

    font-size: 9px;
}

.project-option strong {
    font-size: 17px;
}

.project-option:hover > span {
    background: #111;
}

.project-option input:checked + span {
    background: var(--accent);
    color: #080808;
}

.project-option input:checked + span small {
    color: rgba(0,0,0,.55);
}


/* RADIO OPTIONS */

.budget-options,
.timeline-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.timeline-options {
    grid-template-columns: repeat(4, 1fr);
}

.budget-options label,
.timeline-options label {
    position: relative;

    cursor: pointer;
}

.budget-options input,
.timeline-options input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.budget-options label > span,
.timeline-options label > span {
    min-height: 115px;

    padding: 22px;

    display: flex;
    align-items: flex-end;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    color: #aaa;

    font-size: 14px;
    line-height: 1.3;

    transition: .18s ease;
}

.budget-options label:hover > span,
.timeline-options label:hover > span {
    background: #111;
}

.budget-options input:checked + span,
.timeline-options input:checked + span {
    background: var(--accent);
    color: #080808;

    font-weight: 700;
}


/* SUBMIT */

.form-section--submit {
    padding-bottom: 20px;

    border-bottom: 0;
}

.project-submit {
    width: 100%;

    min-height: 130px;

    padding:
        25px
        35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    border: 0;

    background: var(--accent);
    color: #080808;

    transition: .22s ease;
}

.project-submit span {
    font-size:
        clamp(28px, 4vw, 55px);

    font-weight: 800;

    letter-spacing: -.05em;
}

.project-submit strong {
    font-size: 35px;

    transition: .2s ease;
}

.project-submit:hover strong {
    transform: translate(5px, -5px);
}


/* DIRECT CONTACT */

.direct-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.direct-contact h2 {
    margin:
        25px
        0
        0;

    font-size:
        clamp(60px, 7vw, 115px);

    line-height: .82;
    letter-spacing: -.07em;
}

.direct-contact h2 span {
    color: var(--accent);
}

.direct-contact__links {
    border-top: 1px solid var(--line);
}

.direct-contact__links > a,
.direct-contact__links > div {
    position: relative;

    min-height: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-bottom: 1px solid var(--line);
}

.direct-contact__links > a {
    padding-right: 50px;
}

.direct-contact__links span {
    margin-bottom: 12px;

    color: #555;

    font-size: 9px;

    letter-spacing: .12em;
}

.direct-contact__links strong {
    font-size:
        clamp(17px, 2vw, 25px);

    letter-spacing: -.025em;
}

.direct-contact__links em {
    position: absolute;

    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--accent);

    font-size: 20px;
    font-style: normal;
}

.direct-contact__links > a:hover strong {
    color: var(--accent);
}


/* FINAL */

.contact-final {
    max-width: var(--container);
    margin: auto;

    padding:
        140px
        32px;

    border-bottom: 1px solid var(--line);
}

.contact-final > span {
    color: #555;

    font-size: 10px;
    letter-spacing: .14em;
}

.contact-final h2 {
    margin:
        65px
        0
        0;

    font-size:
        clamp(75px, 11vw, 170px);

    line-height: .76;
    letter-spacing: -.08em;
}

.contact-final h2 strong {
    color: var(--accent);
}


/* MOBILE */

@media (max-width: 900px) {

    .contact-hero {
        padding-top: 125px;
    }

    .contact-hero__grid {
        display: block;
    }

    .contact-hero h1 {
        font-size: 14.5vw;
    }

    .contact-hero__text {
        margin-top: 50px;
    }

    .form-section {
        display: block;

        padding:
            70px
            0;
    }

    .form-section__number {
        margin-bottom: 30px;
    }

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

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

    .budget-options,
    .timeline-options {
        grid-template-columns: 1fr 1fr;
    }

    .project-submit {
        min-height: 105px;

        padding:
            22px
            20px;
    }

    .direct-contact__grid {
        display: block;
    }

    .direct-contact__links {
        margin-top: 55px;
    }

    .contact-final {
        padding:
            90px
            20px;
    }

}
/* DATABASE CURRENT WORK IMAGES */

.current-project__visual--image {
    padding: 0;
}

.current-project__visual--image::before {
    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.12),
            rgba(0,0,0,.02) 50%,
            rgba(0,0,0,.55)
        );
}

.current-project__visual--image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease,
        filter .45s ease;
}

.current-project:hover
.current-project__visual--image img {
    transform: scale(1.025);
}

.current-project__visual--image
.current-project__status,
.current-project__visual--image
.current-project__progress {
    z-index: 3;

    padding:
        6px
        8px;

    background: rgba(8,8,8,.76);

    backdrop-filter: blur(8px);
}

.public-empty-state {
    min-height: 420px;

    padding: 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--line);

    background: #0b0b0b;
}

.public-empty-state > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.public-empty-state h2 {
    margin:
        25px
        0;

    font-size:
        clamp(45px, 6vw, 85px);

    line-height: .88;
    letter-spacing: -.06em;
}

.public-empty-state p {
    max-width: 500px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 900px) {

    .public-empty-state {
        min-height: 330px;
        padding: 35px 25px;
    }

}
/* =========================================================
   HOME / DATABASE CURRENT WORK
========================================================= */

.building-card--image {
    display: block;
}

.building-card__image {
    position: relative;

    aspect-ratio: 1.35;

    margin-bottom: 30px;

    overflow: hidden;

    border: 1px solid var(--line);

    background: #0c0c0c;
}

.building-card__image::after {
    content: '';

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0,0,0,.58)
        );
}

.building-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.building-card:hover
.building-card__image img {
    transform: scale(1.035);
}

.building-card__image > span {
    position: absolute;

    z-index: 2;

    left: 18px;
    bottom: 16px;

    padding:
        6px
        8px;

    background: rgba(8,8,8,.8);

    color: var(--accent);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    backdrop-filter: blur(7px);
}

.building-card__link {
    margin-top: 28px;

    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--line);

    color: #777;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.building-card:hover
.building-card__link {
    color: var(--accent);
}

.home-building-empty {
    min-height: 300px;

    padding: 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--line);

    background: #0c0c0c;
}

.home-building-empty > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}

.home-building-empty strong {
    margin-top: 22px;

    font-size:
        clamp(30px, 4vw, 55px);

    letter-spacing: -.05em;
}

.home-building-empty p {
    max-width: 500px;

    margin:
        15px
        0
        0;

    color: var(--muted);

    line-height: 1.6;
}
/* =========================================================
   WORK / DATABASE IMAGES
========================================================= */

.project-browser__screen--image {
    position: relative;

    padding: 0;

    overflow: hidden;
}

.project-browser__screen--image > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.work-featured__card:hover
.project-browser__screen--image > img {
    transform: scale(1.025);
}

.project-browser__screen--image::after {
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.78),
            rgba(0,0,0,.08) 65%
        );

    pointer-events: none;
}

.project-browser__overlay {
    position: absolute;

    z-index: 3;

    left: 60px;
    right: 60px;
    bottom: 55px;
}

.project-browser__overlay
.project-browser__label {
    margin-bottom: 20px;
}

.project-browser__overlay strong {
    max-width: 1000px;

    display: block;

    color: white;

    text-shadow:
        0 4px 35px rgba(0,0,0,.55);
}


/* GRID COVER */

.project-card__visual--image {
    padding: 0;
}

.project-card__visual--image::before {
    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.12),
            rgba(0,0,0,.02) 50%,
            rgba(0,0,0,.65)
        );
}

.project-card__visual--image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.project-card:hover
.project-card__visual--image img {
    transform: scale(1.035);
}

.project-card__visual--image
.project-card__number {
    z-index: 4;

    padding:
        5px
        7px;

    color: white;

    background: rgba(0,0,0,.6);

    backdrop-filter: blur(5px);
}

.project-card__visual-overlay {
    position: absolute;

    z-index: 4;

    left: 22px;
    right: 22px;
    bottom: 20px;
}

.project-card__visual-overlay span {
    padding:
        6px
        8px;

    background: rgba(0,0,0,.72);

    color: var(--accent);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    backdrop-filter: blur(5px);
}


@media (max-width: 900px) {

    .project-browser__overlay {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

}
/* =========================================================
   CASE STUDY / DATABASE MEDIA
========================================================= */

.case-live-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--accent);

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}


/* COVER IMAGE */

.case-browser__screen--image {
    position: relative;

    padding: 0;

    overflow: hidden;
}

.case-browser__screen--image > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.case-browser:hover
.case-browser__screen--image > img {
    transform: scale(1.02);
}

.case-browser__screen--image::after {
    content: '';

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.82),
            rgba(0,0,0,.05) 65%
        );
}

.case-browser__image-overlay {
    position: absolute;

    z-index: 3;

    left: 60px;
    right: 60px;
    bottom: 55px;
}

.case-browser__image-overlay > span {
    display: block;

    margin-bottom: 22px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.case-browser__image-overlay strong {
    display: block;

    max-width: 1050px;

    color: #fff;

    font-size:
        clamp(50px, 7vw, 110px);

    line-height: .83;
    letter-spacing: -.07em;

    text-shadow:
        0 5px 35px rgba(0,0,0,.6);
}


/* GALLERY */

.case-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.case-gallery figure {
    margin: 0;

    overflow: hidden;

    border: 1px solid var(--line);

    background: #0b0b0b;
}

.case-gallery figure:first-child:nth-last-child(odd) {
    grid-column: 1 / -1;
}

.case-gallery img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}

.case-gallery figure:first-child:nth-last-child(odd) img {
    aspect-ratio: 16 / 8;
}

.case-gallery figcaption {
    padding: 15px 18px;

    border-top: 1px solid var(--line);

    color: #696969;

    font-size: 10px;
    line-height: 1.5;
}


/* LIVE PROJECT */

.case-project-link > a {
    min-height: 150px;

    padding:
        25px
        0;

    display: grid;

    grid-template-columns:
        180px
        1fr
        40px;

    align-items: center;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition: .2s ease;
}

.case-project-link > a > span {
    color: #5e5e5e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.case-project-link > a > strong {
    font-size:
        clamp(25px, 4vw, 52px);

    line-height: 1;

    letter-spacing: -.05em;
}

.case-project-link > a > em {
    color: var(--accent);

    font-size: 26px;
    font-style: normal;

    text-align: right;

    transition: transform .2s ease;
}

.case-project-link > a:hover {
    color: var(--accent);
}

.case-project-link > a:hover em {
    transform:
        translate(
            4px,
            -4px
        );
}


/* 404 */

.project-not-found__text {
    max-width: 550px;

    margin:
        35px
        0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.6;
}


@media (max-width: 900px) {

    .case-browser__image-overlay {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .case-gallery__grid {
        grid-template-columns: 1fr;
    }

    .case-gallery figure:first-child:nth-last-child(odd) {
        grid-column: auto;
    }

    .case-gallery figure:first-child:nth-last-child(odd) img,
    .case-gallery img {
        aspect-ratio: 4 / 3;
    }

    .case-project-link > a {
        grid-template-columns:
            1fr
            30px;

        gap: 15px;
    }

    .case-project-link > a > span {
        grid-column: 1 / -1;
    }

}
/* =========================================================
   CONTACT / FUNCTIONAL FORM
========================================================= */

.contact-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    left: -10000px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* ERRORS */

.contact-form-errors {
    margin-bottom: 45px;

    padding: 30px;

    border:
        1px solid
        rgba(255,85,85,.3);

    background:
        rgba(255,85,85,.035);
}

.contact-form-errors > span {
    display: block;

    margin-bottom: 12px;

    color: #ff6565;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .14em;
}

.contact-form-errors > strong {
    display: block;

    font-size: 21px;
}

.contact-form-errors ul {
    margin:
        20px
        0
        0;

    padding-left: 20px;

    color: #999;

    font-size: 13px;
    line-height: 1.8;
}


/* SUCCESS */

.contact-success {
    min-height: 600px;

    padding:
        70px
        0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-success__label {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .15em;
}

.contact-success h2 {
    margin:
        25px
        0
        35px;

    font-size:
        clamp(
            65px,
            10vw,
            145px
        );

    line-height: .78;

    letter-spacing: -.075em;
}

.contact-success h2 strong {
    color: var(--accent);
}

.contact-success > p {
    max-width: 600px;

    margin: 0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;
}

.contact-success__actions {
    margin-top: 45px;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


@media (max-width: 700px) {

    .contact-success {
        min-height: 480px;

        padding:
            45px
            0;
    }

}

/* ==========================================================
   WORK / PROJECTS — COMPACT LAYOUT FIX
   ========================================================== */

.work-hero,
.work-featured,
.projects-list,
.work-philosophy {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(24px, 4vw, 64px);
    padding-right: clamp(24px, 4vw, 64px);
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.work-hero {
    padding-top: 90px;
    padding-bottom: 70px;
}

.work-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
}

.work-hero h1 {
    margin: 0;
    max-width: 900px;

    font-size: clamp(54px, 6.2vw, 104px);
    line-height: .88;
    letter-spacing: -.065em;
}

.work-hero__text {
    max-width: 500px;
}

.work-hero__text p {
    margin: 0 0 18px;

    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.6;
}


/* ----------------------------------------------------------
   FEATURED
   ---------------------------------------------------------- */

.work-featured {
    padding-top: 40px;
    padding-bottom: 90px;
}

.work-featured__card {
    display: block;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.work-featured__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 50px;
    align-items: end;

    margin-bottom: 32px;
}

.work-featured__top h2 {
    margin: 12px 0 0;

    font-size: clamp(42px, 5vw, 76px);
    line-height: .92;
    letter-spacing: -.055em;
}

.work-featured__description {
    max-width: 430px;
}

.work-featured__description p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.6;
}


/* browser screenshot */

.project-browser {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.project-browser__screen {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 8.5;
}

.project-browser__screen--image {
    position: relative;
    overflow: hidden;
}

.project-browser__screen--image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;
}


/* featured meta */

.work-project-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    max-width: 1180px;
    margin: 0 auto;
}

.work-project-meta > div {
    min-width: 0;
    padding: 20px 18px;
}

.work-project-meta span {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
    letter-spacing: .12em;
}

.work-project-meta strong {
    display: block;

    font-size: 14px;
    line-height: 1.4;

    overflow-wrap: anywhere;
}


/* ----------------------------------------------------------
   PROJECT GRID
   ---------------------------------------------------------- */

.projects-list {
    padding-top: 80px;
    padding-bottom: 100px;
}

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

    max-width: 1180px;
    margin: 0 auto;
}

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

.project-card__visual {
    min-height: 0 !important;
    height: auto !important;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.project-card__visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;
}

.project-card__visual > strong {
    font-size: clamp(54px, 6vw, 90px);
}

.project-card__content {
    padding: 24px 2px 10px;
}

.project-card__content h3 {
    margin: 12px 0 12px;

    font-size: clamp(27px, 2.4vw, 38px);
    line-height: 1;
    letter-spacing: -.04em;
}

.project-card__content p {
    max-width: 580px;
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.65;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tags span {
    font-size: 10px;
}


/* ----------------------------------------------------------
   PHILOSOPHY
   ---------------------------------------------------------- */

.work-philosophy {
    padding-top: 90px;
    padding-bottom: 100px;
}

.work-philosophy__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 80px;

    max-width: 1180px;
    margin: 0 auto;
}

.work-philosophy h2 {
    margin: 0;

    font-size: clamp(46px, 5vw, 76px);
    line-height: .92;
    letter-spacing: -.055em;
}

.work-philosophy__grid p {
    max-width: 520px;

    font-size: 16px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   CTA
   ---------------------------------------------------------- */

.main-cta {
    min-height: auto !important;

    padding-top: 100px;
    padding-bottom: 100px;
}

.main-cta h2 {
    font-size: clamp(60px, 7vw, 110px) !important;
    line-height: .85;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1000px) {

    .work-hero__grid,
    .work-featured__top,
    .work-philosophy__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .work-hero__text,
    .work-featured__description {
        max-width: 650px;
    }

    .projects-grid {
        gap: 22px;
    }

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


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 700px) {

    .work-hero,
    .work-featured,
    .projects-list,
    .work-philosophy {
        padding-left: 18px;
        padding-right: 18px;
    }

    .work-hero {
        padding-top: 58px;
        padding-bottom: 52px;
    }

    .work-hero h1 {
        font-size: clamp(46px, 15vw, 68px);
    }

    .work-featured {
        padding-top: 25px;
        padding-bottom: 60px;
    }

    .work-featured__top h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

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

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

    .projects-list {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .project-card__visual {
        aspect-ratio: 16 / 10;
    }

    .project-card__content h3 {
        font-size: 29px;
    }

    .work-philosophy {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .main-cta {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .main-cta h2 {
        font-size: clamp(52px, 16vw, 76px) !important;
    }
}
/* ==========================================================
   GLOBAL COMPACT / READABLE OVERRIDE
   ========================================================== */

:root {
    --container: 1320px;
}


/* ----------------------------------------------------------
   GLOBAL SPACING
   ---------------------------------------------------------- */

.section {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}

.section-number {
    margin-bottom: 38px !important;
}

.main-cta {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}


/* ----------------------------------------------------------
   GLOBAL TYPOGRAPHY
   ---------------------------------------------------------- */

.hero h1,
.manifesto-content h2,
.featured-project h2,
.building-heading h2,
.business-dna h2,
.case-hero h1,
.case-highlight h2,
.case-modules__heading h2,
.case-result h2,
.case-next h2,
.building-page-hero h1,
.cap-page-hero h1,
.technology-stack__heading h2,
.engineering-approach__header h2,
.not-everything h2,
.work-hero h1,
.main-cta h2 {
    font-size: clamp(46px, 5.8vw, 92px) !important;
    line-height: .92 !important;
    letter-spacing: -.055em !important;
}


/* ----------------------------------------------------------
   WORK HERO
   ---------------------------------------------------------- */

.work-hero {
    padding-top: 125px !important;
    padding-bottom: 65px !important;
}

.work-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 60px;
    align-items: start;
}

.work-hero h1 {
    max-width: 760px;
}

.work-hero__text {
    max-width: 540px;
    padding-top: 10px;
}

.work-hero__text p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #a5a5a5;
}


/* ----------------------------------------------------------
   FEATURED PROJECT
   ---------------------------------------------------------- */

.work-featured {
    padding-top: 55px !important;
    padding-bottom: 75px !important;
}

.work-featured__card {
    max-width: 1080px !important;
}

.work-featured__top {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
    margin-bottom: 28px;
}

.work-featured__top h2 {
    font-size: clamp(38px, 4vw, 64px) !important;
    line-height: .95 !important;
}

.work-featured__description {
    padding: 18px 20px;
    border-left: 2px solid var(--accent);
    background: rgba(255,255,255,.025);
}

.work-featured__description p {
    margin: 0;
    color: #b7b7b7;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.project-arrow {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
}


/* ----------------------------------------------------------
   FEATURED IMAGE — FIT / CONTAIN
   ---------------------------------------------------------- */

.project-browser {
    max-width: 1080px !important;
}

.project-browser__screen {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    background: #0b0b0b;
}

.project-browser__screen--image > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center center !important;

    background: #0b0b0b;
}

.project-browser__overlay {
    left: 30px !important;
    right: 30px !important;
    bottom: 26px !important;
}

.project-browser__overlay strong {
    font-size: 28px !important;
    line-height: 1.05 !important;
}


/* ----------------------------------------------------------
   FEATURED META
   ---------------------------------------------------------- */

.work-project-meta {
    max-width: 1080px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.work-project-meta > div {
    padding: 17px 16px !important;
    min-height: 84px !important;
}

.work-project-meta span {
    color: #666;
    font-size: 9px !important;
}

.work-project-meta strong {
    margin-top: 5px;
    font-size: 13px !important;
    line-height: 1.45 !important;
}


/* ----------------------------------------------------------
   PROJECTS GRID
   ---------------------------------------------------------- */

.projects-list {
    padding-top: 70px !important;
    padding-bottom: 80px !important;
}

.projects-grid {
    max-width: 1080px !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 40px 26px !important;
}


/* ----------------------------------------------------------
   PROJECT CARD
   ---------------------------------------------------------- */

.project-card {
    display: block;
    height: auto !important;
    min-width: 0;

    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.project-card__visual {
    position: relative !important;

    width: 100%;
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;

    overflow: hidden;

    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,.08);
}

.project-card__visual--image {
    position: relative !important;
}


/* FIT TO — nema cropovanja */

.project-card__visual--image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center center !important;

    background: #0b0b0b;
}


/* fallback */

.project-card__visual > strong {
    font-size: 56px !important;
}


/* ----------------------------------------------------------
   PROJECT CARD CONTENT
   ---------------------------------------------------------- */

.project-card__content {
    padding: 20px 2px 4px !important;
}

.project-card__header {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.project-card__header span:first-child {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-card__content h3 {
    margin: 16px 0 12px !important;

    font-size: 28px !important;
    line-height: 1.05 !important;
    letter-spacing: -.035em !important;
}


/* OPIS — istaknutiji */

.project-card__content p {
    margin: 0 0 18px !important;

    padding: 14px 16px;

    background: rgba(255,255,255,.025);
    border-left: 2px solid rgba(186,255,0,.45);

    color: #b2b2b2;

    font-size: 14px !important;
    line-height: 1.65 !important;
}


/* TAGOVI */

.tags {
    margin-top: 14px !important;
    gap: 6px !important;
}

.tags span {
    padding: 6px 8px !important;

    color: #818181 !important;

    font-size: 8px !important;

    background: #0d0d0d;
}


/* ----------------------------------------------------------
   WORK PHILOSOPHY
   ---------------------------------------------------------- */

.work-philosophy {
    padding-top: 70px !important;
    padding-bottom: 75px !important;
}

.work-philosophy__grid {
    max-width: 1080px !important;

    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.work-philosophy h2 {
    font-size: clamp(40px, 4.5vw, 68px) !important;
}

.work-philosophy strong {
    font-size: 20px;
}

.work-philosophy p {
    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* ----------------------------------------------------------
   OTHER DATABASE / CASE STUDY IMAGES
   FIT TO — NEMA CROP
   ---------------------------------------------------------- */

.current-project__visual--image img,
.building-card__image img,
.case-browser__screen--image > img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #0b0b0b;
}


/* case study slike manje */

.case-browser__screen {
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
}

.current-project__visual {
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
}


/* ----------------------------------------------------------
   GENERAL TEXT READABILITY
   ---------------------------------------------------------- */

.case-story p,
.case-highlight p,
.case-result p,
.capability-section__main p,
.building-principle p,
.not-everything__content > p,
.business-dna__text p {
    font-size: 16px !important;
    line-height: 1.7 !important;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1000px) {

    .work-featured__top,
    .work-hero__grid,
    .work-philosophy__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-featured__description {
        max-width: 650px;
    }

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

}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 700px) {

    .section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .work-hero {
        padding-top: 105px !important;
        padding-bottom: 50px !important;
    }

    .work-hero h1 {
        font-size: 48px !important;
    }

    .work-featured__top h2 {
        font-size: 38px !important;
    }

    .project-browser__screen {
        aspect-ratio: 4 / 3 !important;
    }

    .project-browser__overlay strong {
        font-size: 22px !important;
    }

    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 44px !important;
    }

    .project-card__content h3 {
        font-size: 26px !important;
    }

    .project-card__content p {
        font-size: 14px !important;
    }

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

}
/* ==========================================================
   WORK — FEATURED 2 COLUMN
   ========================================================== */

.work-featured {
    padding-top: 55px !important;
    padding-bottom: 75px !important;
}

.work-featured .project-index {
    max-width: 1180px;
    margin: 0 auto 28px;
}


/* GRID */

.work-featured-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px;
}


/* CARD */

.work-featured-card {
    display: block;
    min-width: 0;

    color: inherit;
    text-decoration: none;

    border-top: 1px solid rgba(255,255,255,.13);

    padding-top: 12px;
}


/* VISUAL */

.work-featured-card__visual {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,.07);
}


.work-featured-card__visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #0b0b0b;

    transition: transform .4s ease;
}


.work-featured-card:hover
.work-featured-card__visual img {
    transform: scale(1.015);
}


/* VISUAL TOP */

.work-featured-card__visual-top {
    position: absolute;

    top: 14px;
    left: 14px;
    right: 14px;

    z-index: 3;

    display: flex;
    justify-content: space-between;
    align-items: center;

    pointer-events: none;
}


.work-featured-card__visual-top > span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    background: #080808;

    color: var(--accent);

    font-size: 17px;
}


/* FALLBACK */

.work-featured-card__placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 70px;
    font-weight: 900;
    letter-spacing: -.06em;

    color: #222;
}


/* CONTENT */

.work-featured-card__content {
    padding: 20px 2px 5px;
}


.work-featured-card__eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.work-featured-card__content h2 {
    margin: 0;

    max-width: 90%;

    font-size: clamp(30px, 3vw, 46px) !important;
    line-height: .96 !important;

    letter-spacing: -.045em;
}


.work-featured-card__content p {
    margin: 17px 0 19px;

    max-width: 560px;

    color: #aaa;

    font-size: 14px !important;
    line-height: 1.65 !important;
}


/* META */

.work-featured-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255,255,255,.08);
}


.work-featured-card__meta > div {
    padding: 13px 12px 10px 0;
}


.work-featured-card__meta > div + div {
    padding-left: 15px;

    border-left: 1px solid rgba(255,255,255,.08);
}


.work-featured-card__meta span {
    display: block;

    margin-bottom: 5px;

    color: #555;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.work-featured-card__meta strong {
    display: block;

    color: #bbb;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;
}


/* TABLET */

@media (max-width: 850px) {

    .work-featured-grid {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .work-featured-card__visual {
        aspect-ratio: 4 / 3;
    }

    .work-featured-card__content h2 {
        font-size: 34px !important;
    }

}
/* ==========================================================
   HOME — COMPACT 3-SCROLL LAYOUT
   ========================================================== */

.home-compact .section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.home-hero {
    min-height: auto !important;
    padding-top: 130px !important;
    padding-bottom: 56px !important;
}

.home-hero .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 70px;
    align-items: end;
}

.home-hero h1 {
    margin: 28px 0 0 !important;
    max-width: 920px;
    font-size: clamp(54px, 6.4vw, 96px) !important;
    line-height: .9 !important;
    letter-spacing: -.055em !important;
}

.home-hero__side {
    padding-bottom: 8px;
}

.home-hero__side p {
    max-width: 470px;
    margin: 0 0 24px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.65;
}

.home-services {
    margin-top: 48px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-services span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.09);
    color: #8d8d8d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-section-head {
    max-width: 1180px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.home-section-head .section-number {
    margin: 0 !important;
}

.home-systems__grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 26px;
}

.home-featured-card,
.home-building-panel {
    border: 1px solid rgba(255,255,255,.08);
    background: #0b0b0b;
}

.home-featured-card {
    display: block;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.home-featured-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
}

.home-featured-card__top > span:last-child {
    color: var(--accent);
    font-size: 20px;
}

.home-featured-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr);
    gap: 34px;
    align-items: end;
}

.home-card-kicker {
    display: block;
    color: var(--accent);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-featured-card h2,
.home-building-panel h2,
.home-dna h2,
.home-contact-card h2 {
    margin: 10px 0 0;
    letter-spacing: -.045em;
}

.home-featured-card h2 {
    font-size: clamp(34px, 3.4vw, 52px) !important;
    line-height: .95 !important;
}

.home-featured-card__content p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.65;
}

.home-featured-meta {
    margin-top: 28px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-featured-meta > div {
    min-width: 0;
    padding-right: 14px;
}

.home-featured-meta span {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.home-featured-meta strong {
    display: block;
    color: #bbb;
    font-size: 11px;
    line-height: 1.4;
}

.home-building-panel {
    padding: 24px;
}

.home-building-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 27px;
}

.home-building-panel__head h2 {
    font-size: 34px !important;
    line-height: .95 !important;
}

.home-building-panel__head > a {
    color: #777;
    font-size: 11px;
    text-decoration: none;
}

.home-building-list {
    border-top: 1px solid rgba(255,255,255,.09);
}

.home-building-row {
    min-height: 72px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto 18px;
    gap: 12px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.home-building-row__number {
    color: #555;
    font-size: 9px;
}

.home-building-row__main {
    min-width: 0;
}

.home-building-row__main strong,
.home-building-row__main span {
    display: block;
}

.home-building-row__main strong {
    color: #eee;
    font-size: 14px;
}

.home-building-row__main span {
    margin-top: 3px;
    color: #666;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-building-row small {
    color: #777;
    font-size: 9px;
}

.home-building-row em {
    color: var(--accent);
    font-style: normal;
}

.home-cap-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.09);
    border-left: 1px solid rgba(255,255,255,.09);
}

.home-cap-grid a {
    min-height: 92px;
    padding: 18px;
    border-right: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);
    display: grid;
    grid-template-columns: 26px 1fr 18px;
    gap: 10px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.home-cap-grid a span {
    color: #555;
    font-size: 9px;
}

.home-cap-grid a strong {
    font-size: 15px;
}

.home-cap-grid a em {
    color: var(--accent);
    font-style: normal;
}

.home-final__bottom {
    max-width: 1180px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 26px;
}

.home-dna,
.home-contact-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.08);
    background: #0b0b0b;
}

.home-dna h2 {
    max-width: 700px;
    font-size: clamp(32px, 3.4vw, 52px) !important;
    line-height: .98 !important;
}

.home-dna h2 span {
    color: var(--accent);
}

.home-dna p {
    max-width: 650px;
    margin: 18px 0 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.65;
}

.home-contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-contact-card > span {
    color: #555;
    font-size: 9px;
    letter-spacing: .1em;
}

.home-contact-card h2 {
    margin: 34px 0 18px;
    font-size: clamp(30px, 3vw, 46px) !important;
    line-height: .96 !important;
}

.home-contact-card > strong {
    color: var(--accent);
    font-size: 22px;
}

.home-contact-card > a {
    margin-top: 28px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex;
    justify-content: space-between;
    color: #eee;
    text-decoration: none;
    font-size: 12px;
}

@media (max-width: 960px) {
    .home-hero__grid,
    .home-systems__grid,
    .home-final__bottom {
        grid-template-columns: 1fr;
    }

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

    .home-featured-card__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-compact .section {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }

    .home-hero {
        padding-top: 105px !important;
        padding-bottom: 42px !important;
    }

    .home-hero h1 {
        font-size: 48px !important;
    }

    .home-services {
        margin-top: 34px;
    }

    .home-cap-grid {
        grid-template-columns: 1fr;
    }

    .home-featured-meta {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .home-building-row {
        grid-template-columns: 26px minmax(0, 1fr) 18px;
    }

    .home-building-row small {
        display: none;
    }
}