:root {
    --black: #000;
    --white: #fff;
    --red: #f00;
    --ink: #101010;
    --line: #292929;
    --muted: #ababab;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: var(--white);
    background: var(--black)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    line-height: 1.45
}

body.intro-open {
    overflow: hidden
}

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

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

.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 20;
    background: #fff;
    color: #000;
    padding: 10px
}

.skip-link:focus {
    top: 12px
}

.kicker,
.project-index {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700
}

.kicker {
    color: var(--red)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 3.2vw;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(14px)
}

.nav-brand {
    font-weight: 800;
    letter-spacing: .08em
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em
}

.nav nav a {
    white-space: nowrap
}

.nav-cta {
    border: 1px solid #fff;
    padding: 8px 10px
}

.nav-cta:hover,
.text-button:hover,
.form-submit:hover {
    background: #fff;
    color: #000
}

.intro {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #000;
    transition: opacity .7s ease, visibility .7s ease
}

.intro.is-dismissed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.intro-film {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    opacity: .42
}

.intro-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, .42) 45%, #000 100%)
}

.intro-copy {
    z-index: 1;
    text-align: center;
    padding: 24px
}

.intro-copy h1 {
    margin: 10px 0 0;
    font-size: clamp(54px, 13vw, 180px);
    line-height: .8;
    letter-spacing: -.09em
}

.intro-copy p:not(.kicker) {
    margin: 22px 0;
    font-size: 13px
}

.text-button {
    border: 0;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 9px 0;
    letter-spacing: .08em;
    font-size: 11px;
    cursor: pointer
}

.presence {
    min-height: 76vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8vh 3.2vw 7vh;
    background: linear-gradient(140deg, #000 55%, #170000)
}

.presence h1,
.section-head h2,
.about h2,
.contact h2 {
    font-size: clamp(48px, 9.2vw, 145px);
    line-height: .82;
    letter-spacing: -.075em;
    margin: 18px 0
}

.presence .name {
    font-weight: 700;
    margin: 0
}

.positioning {
    max-width: 510px;
    color: #d0d0d0;
    margin: 18px 0 0
}

.scroll-note {
    margin-top: 35px;
    color: var(--red);
    font-size: 24px
}

.work,
.archives,
.services,
.project-request {
    padding: 11vw 3.2vw;
    border-top: 1px solid var(--line)
}

.section-head {
    max-width: 1050px
}

.section-note {
    max-width: 570px;
    color: #aaa
}

.projects {
    margin-top: 60px
}

.project {
    display: grid;
    grid-template-columns: 60px 1fr;
    border-top: 1px solid var(--line);
    padding: 16px 0
}

.project-link {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) 1fr;
    gap: 4.5vw
}

.project-image {
    min-height: 290px;
    background: #111;
    overflow: hidden;
    display: grid;
    place-items: center;
    font-size: clamp(24px, 3vw, 48px);
    line-height: .85;
    font-weight: 800;
    padding: 24px
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease
}

.project-link:hover img {
    transform: scale(1.035)
}

.project-info {
    padding: 10px 0;
    align-self: end;
    max-width: 520px
}

.project-info h3,
.archive-item h3,
.service h3 {
    font-size: clamp(30px, 4vw, 58px);
    line-height: .9;
    letter-spacing: -.055em;
    margin: 9px 0
}

.project-meta,
.project-client {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em
}

.project-client {
    color: #bbb
}

.status {
    display: inline-block;
    border: 1px solid var(--red);
    color: var(--red);
    padding: 5px 7px;
    margin-top: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em
}

.archive-rail {
    display: flex;
    gap: 14px;
    overflow: auto;
    margin: 55px -3.2vw -12px;
    padding: 0 3.2vw 20px;
    scroll-snap-type: x mandatory
}

.archive-item {
    min-width: min(68vw, 560px);
    scroll-snap-align: start;
    position: relative;
    background: #111
}

.archive-item img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(1)
}

.archive-item div {
    padding: 14px
}

.archive-item h3 {
    font-size: 32px
}

.archive-item p:last-child {
    color: #aaa;
    font-size: 12px
}

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

.service {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: end
}

.service h3 {
    font-size: clamp(28px, 3.5vw, 47px)
}

.service p {
    margin-bottom: 3px;
    color: #aaa
}

.service-price {
    color: #fff !important;
    font-weight: 700
}

.service a {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    border-top: 1px solid var(--line)
}

.about-image {
    background: #111;
    overflow: hidden
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .86
}

.about-copy {
    padding: 10vw 7vw
}

.disciplines {
    margin-top: 32px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700
}

.project-request {
    background: #080808
}

.request-form {
    margin-top: 58px;
    max-width: 1100px
}

.request-form fieldset {
    border: 0;
    border-top: 1px solid var(--line);
    padding: 21px 0 34px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

.request-form legend {
    padding: 0 0 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .07em;
    text-transform: uppercase
}

.request-form label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em
}

.request-form label span {
    color: #999;
    font-weight: 400
}

.request-form input,
.request-form textarea,
.request-form select {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 0;
    border-bottom: 1px solid #555;
    background: transparent;
    color: #fff;
    padding: 10px 0;
    outline: 0
}

.request-form select option {
    background: #000
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
    border-color: #fff
}

.wide {
    grid-column: 1/-1
}

.service-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    grid-column: 1/-1
}

.service-choices label {
    border: 1px solid #555;
    padding: 9px 11px;
    cursor: pointer
}

.service-choices input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.service-choices input:checked+span {
    color: var(--red)
}

.form-submit {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 13px 17px;
    font-size: 11px;
    letter-spacing: .08em;
    font-weight: 700;
    cursor: pointer
}

.form-status {
    margin-top: 13px;
    color: #aaa
}

.contact {
    padding: 10vw 3.2vw 4vw;
    border-top: 1px solid var(--line);
    min-height: 80vh;
    position: relative
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0
}

.contact-links a,
.contact-links button {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 12px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em
}

.contact-links a:hover,
.contact-links button:hover {
    background: #f00;
    border-color: #f00
}

.outro-mark {
    width: min(320px, 65vw);
    filter: grayscale(1);
    opacity: .72;
    position: absolute;
    right: 3.2vw;
    bottom: 4vw
}

.cursor {
    display: none
}

@media(pointer:fine) {
    .cursor {
        display: block;
        position: fixed;
        z-index: 99;
        pointer-events: none;
        width: 24px;
        height: 24px;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference
    }

    .cursor img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .cursor-hidden {
        opacity: 0
    }

    body {
        cursor: none
    }

    a,
    button,
    input,
    textarea,
    select {
        cursor: none
    }
}

@media(max-width:760px) {
    .nav {
        align-items: flex-start;
        gap: 12px
    }

    .nav nav {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 8px
    }

    .nav nav a {
        font-size: 9px
    }

    .nav-cta {
        padding: 5px
    }

    .presence {
        min-height: 70vh
    }

    .work,
    .archives,
    .services,
    .project-request {
        padding: 20vw 5vw
    }

    .project {
        grid-template-columns: 32px 1fr
    }

    .project-link {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .project-image {
        min-height: 240px
    }

    .about {
        grid-template-columns: 1fr
    }

    .about-image {
        height: 500px
    }

    .about-copy {
        padding: 20vw 5vw
    }

    .request-form fieldset {
        grid-template-columns: 1fr
    }

    .wide {
        grid-column: auto
    }

    .archive-rail {
        margin-left: -5vw;
        margin-right: -5vw;
        padding-left: 5vw;
        padding-right: 5vw
    }

    .archive-item {
        min-width: 82vw
    }

    .archive-item img {
        height: 330px
    }

    .service {
        grid-template-columns: 32px 1fr
    }

    .service a {
        grid-column: 2
    }

    .outro-mark {
        position: static;
        margin-top: 20px
    }

    .intro-copy h1 {
        font-size: 20vw
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important
    }

    .intro-film {
        display: none
    }
}