body.project-detail-body {
    margin: 0;
    background: #f7f4ee;
    color: #171717;
    font-family: 'Montserrat', sans-serif;
}

.project-nav {
    display: grid;
    position: relative;
    z-index: 5;
    align-items: center;
    grid-template-columns: 1fr minmax(240px, 430px) 1fr;
    gap: 24px;
    padding: 17px 5vw;
    border-bottom: 1px solid #e8e1d6;
    background: #fcfbf8;
}

.project-nav img {
    display: block;
    width: 100%;
    height: 68px;
    object-fit: contain;
}

.project-nav-links {
    display: flex;
    gap: 27px;
    font-size: 8px;
    letter-spacing: .18em;
}

.project-nav-links:last-child {
    justify-content: flex-end;
}

.project-nav a {
    color: #111;
    text-decoration: none;
}

.project-hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #111;
}

.project-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.03);
}

.project-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68));
    content: '';
}

.project-hero-copy {
    position: absolute;
    z-index: 1;
    right: 7vw;
    bottom: 7vh;
    left: 7vw;
    color: #fff;
}

.project-hero-copy p {
    margin: 0 0 14px;
    color: #e0c18b;
    font-size: 9px;
    letter-spacing: .22em;
}

.project-hero-copy h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(50px, 6.5vw, 92px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: .02em;
}

.project-story {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 11vw;
    max-width: 1250px;
    margin: 0 auto;
    padding: 90px 30px 84px;
}

.project-story-kicker {
    margin: 0 0 18px;
    color: #9c7b48;
    font-size: 9px;
    letter-spacing: .2em;
}

.project-story h2 {
    max-width: 700px;
    margin: 0 0 27px;
    color: #171717;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.32;
}

.project-story-copy {
    max-width: 760px;
    color: #5d5a55;
    font-size: 14px;
    line-height: 1.9;
}

.project-facts {
    margin: 0;
    padding: 0;
    border-top: 1px solid #c9c5bd;
}

.project-facts div {
    padding: 19px 0;
    border-bottom: 1px solid #c9c5bd;
}

.project-facts dt {
    margin-bottom: 6px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
}

.project-facts dd {
    margin: 0;
    color: #5d5a55;
    font-size: 12px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 18px 18px;
}

.project-gallery figure {
    height: 630px;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.project-gallery figure:first-child:nth-last-child(3) {
    grid-column: 1 / 3;
    height: 750px;
}

.project-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.76) contrast(1.025);
}

.project-next {
    padding: 90px 25px;
    background: #111;
    color: #fff;
    text-align: center;
}

.project-next p {
    margin: 0 0 14px;
    color: #c1a16c;
    font-size: 9px;
    letter-spacing: .2em;
}

.project-next a {
    color: #fff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: .025em;
    text-decoration: none;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 5vw;
    background: #080808;
    color: #888;
    font-size: 9px;
    letter-spacing: .1em;
}

.project-footer a {
    color: #ddd;
    text-decoration: none;
}

.project-footer-social {
    white-space: nowrap;
}

.project-footer-social a:hover,
.project-footer-social a:focus {
    color: #c5a46d;
}

.floating-enquiry {
    position: fixed;
    z-index: 20;
    right: 22px;
    bottom: 22px;
    padding: 13px 18px;
    border: 1px solid #c2a16c;
    border-radius: 999px;
    background: #111;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    color: #fff !important;
    font-size: 9px;
    letter-spacing: .12em;
    text-decoration: none !important;
}

@media (max-width: 760px) {
    .project-nav {
        display: block;
        padding: 10px 18px 14px;
        text-align: center;
    }

    .project-nav img {
        height: 56px;
    }

    .project-nav-links:first-child {
        display: none;
    }

    .project-nav-links:last-child {
        justify-content: center;
        margin-top: 8px;
    }

    .project-hero {
        min-height: 68vh;
    }

    .project-hero-copy {
        right: 24px;
        bottom: 45px;
        left: 24px;
    }

    .project-story {
        display: block;
        padding: 60px 24px;
    }

    .project-facts {
        margin-top: 45px;
    }

    .project-gallery {
        display: block;
        padding: 0 7px 7px;
    }

    .project-gallery figure,
    .project-gallery figure:first-child:nth-last-child(3) {
        height: 62vh;
        margin-bottom: 7px;
    }

    .project-footer {
        display: block;
        line-height: 2;
        text-align: center;
    }

    .floating-enquiry {
        right: 14px;
        bottom: 14px;
    }
}
