@import url(./font.css);

:root {
    --body-color: #1d1d1b;
    --bg-color: #cdc6be;
    --hover-bg-color: #BEB5AB;
    --orange: #c03f13;
    --bg-position: 42% 37%;
    --border: 1px solid var(--body-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Caponee;
    color: var(--body-color);
    user-select: none;
    -webkit-user-drag: none;
}

html,
body {
    /* Avoid constraining the document height; let Lenis manage smooth scroll */
    min-height: 100%;
    width: 100%;
}
body { overflow-y: auto; }

main {
    background-color: var(--bg-color);
    overflow-x: hidden;
    /* Allow page to extend to footer sections on large screens */
    min-height: 100vh;
}

/* Generic page wrapper (used by work.html and about.html) */
.page {
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-bottom: 6vw;
}
.page .page-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2vw;
    padding: 2vw 2vw 3vw;
    border-bottom: var(--border);
}
.page .page-header h1 {
    font-size: 10vw;
    letter-spacing: -0.5vw;
    font-weight: 300;
    text-transform: uppercase;
}
.page .page-header p {
    font-family: Editorial;
    font-size: 1.5vw;
    max-width: 40ch;
}


/* ---Navigation Section--- */
nav { position: fixed; top: 0; left: 0; z-index: 9999; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; background-color: var(--bg-color); border-bottom: var(--border); }
nav h1 { width: 30%; white-space: nowrap; font-size: 12px; letter-spacing: .2px; font-weight: 300; cursor: default; font-family: Editorial; }
nav img { height: 20px; cursor: pointer; }
nav .toggler { width: 30%; }
nav .toggler .line-container { cursor: pointer; display: flex; flex-direction: column; align-items: end; justify-content: center; gap: 3px; width: fit-content; height: 2vw; margin-left: auto; }
nav .toggler .line-container .line { width: 32px; height: 2px; background-color: var(--body-color); }



/* ---Hamburger Menu--- */
.hamburger { position: fixed; background-color: var(--body-color); top: 0; left: 0; height: 0; width: 100%; z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.hamburger > div:first-child { padding: 25px 30px; width: 100%; position: absolute; top: 0; display: flex; justify-content: space-between; align-items: center; }
.hamburger > div:first-child #animated-line { height: 1px; width: 100%; background-color: var(--bg-color); position: absolute; top: 71px; left: -100%; }
.hamburger > div:first-child nav { position: absolute; z-index: inherit; background-color: var(--body-color); }
.hamburger > div:first-child nav h1 { color: var(--bg-color); }
.hamburger > div:first-child nav .toggler .line-container .line { background-color: var(--bg-color); }
.hamburger > div:nth-child(2) > div { position: relative; height: 11vw; width: 100vw; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.hamburger > div:nth-child(2) h1 { position: absolute; top: 100%; color: var(--bg-color); text-align: center; font-size: 14vw; letter-spacing: -.6vw; line-height: 11vw; font-weight: 300; width: fit-content; transition: letter-spacing .3s ease-in-out, color 50ms; }
.hamburger > div:nth-child(2) h1 span { color: inherit; }
.hamburger > div:nth-child(2) h1 a { color: inherit; text-decoration: none; }
.hamburger > div:nth-child(2) h1 > div { width: 0%; height: .7vw; position: absolute; left: 0; top: 50%; transform: translate(-0%, -50%); background-color: var(--orange); }
.hamburger > div:nth-child(2) h1:hover { letter-spacing: -.2vw; color: var(--hover-bg-color); }
.hamburger > div:last-child { display: flex; align-items: center; gap: .4vw; position: absolute; left: 50%; bottom: 0; opacity: 0; transform: translate(-50%, 0); }
.hamburger > div:last-child h6 { font-size: 1vw; letter-spacing: -.05vw; font-weight: 100; cursor: pointer; color: var(--bg-color); }
.hamburger > div:last-child h6 span { color: inherit; }
.hamburger > div:last-child > span { display: block; height: .2vw; width: .2vw; background-color: var(--bg-color); border-radius: 50%; }





/* ---First Page--- */
.main-content {
    position: relative;
    width: 100%;
    /* Ensure there is breathing room after last section (marquee) */
    padding-bottom: 4vh;

    .work-show {
    cursor: grab;
    display: flex;
    justify-content: space-between;
    /* tighter vertical padding on larger screens (reduced further) */
    padding: 1.6% 2.6%;
    padding-top: 1.1%;

        .work {
            width: 30%;

            &:hover .image img {
                transform: scale(1.1);
            }

            &:nth-child(2n + 1) { cursor: pointer; }

            .image {
                width: 100%;
                /* reduce image block height on desktop/tablet (smaller than before) */
                height: clamp(12vw, 16vw, 19vw);
                overflow: hidden;
                border: var(--border);

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
                }
            }

            h3 {
                text-transform: uppercase;
                letter-spacing: -.1vw;
                font-size: 1.6vw;
                font-weight: 300;
                margin: 2% 0;
                display: flex;
                align-items: center;
            }

            p {
                font-family: Editorial;
                font-size: 1.1vw;
                font-weight: 100;
                opacity: .9;

                span {
                    font-family: Caponee;
                    letter-spacing: -.2px;
                    font-weight: 600;
                }
            }

            &:nth-child(2) {
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                flex: 1;
                margin: 0 4%;
                padding: 0 5%;
                border-right: var(--border);
                border-left: var(--border);
            }

            h1 {
                position: relative;
                margin-top: 5%;
                font-size: 4.2vw;
                letter-spacing: -.25vw;
                font-weight: 100;
                cursor: pointer;

                svg {
                    position: absolute;
                    height: 75%;
                    width: 75%;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    pointer-events: none;
                    fill: none;
                    stroke: #96B59F;
                    stroke-miterlimit: 10;
                    stroke-dashoffset: 1100;
                    stroke-dasharray: 1100;
                    transition: stroke-dashoffset .6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                }
            
                &:hover svg {
                    stroke-dashoffset: 0;
                }
            }

            h2 {
                font-family: Editorial;
                font-weight: 1;
                letter-spacing: -.15vw;
                font-size: 2.5vw;
                line-height: 2.6vw;
                opacity: .9;
            }
        }
    }

    >h1 {
        font-size: 36vw;
        font-weight: 200;
        letter-spacing: -1vw;
        background-color: var(--body-color);
        color: var(--bg-color);
        text-align: center;
        width: 96%;
        line-height: .9;
        margin: 0 auto;
        cursor: default;
    }
    
    .artist {
        display: flex;
        width: 96%;
        margin: 0 auto;
        padding: 4vw 0;
        gap: var(--padding-artist);
        --padding-artist: 3vw;

        >div {

            &:first-child {
                width: 31%;

                h3 {
                    font-weight: 200;
                    font-size: 7.7vw;
                    letter-spacing: -.4vw;
                    line-height: 6.5vw;
                }

                h1 {
                    font-size: 13.5vw;
                    line-height: 11vw;
                    letter-spacing: -.6vw;
                    font-weight: 200;
                }

                img {
                    width: 100%;
                    height: 37vw;
                    border: var(--border);
                    object-fit: cover;
                    margin-top: 1.2vw;
                    margin-bottom: 2.3vw;
                    object-position: var(--bg-position);
                }

                p {
                    font-family: Editorial;
                    font-size: 2.25vw;
                    line-height: 2.7vw;
                    letter-spacing: -.1vw;
                }
            }

            &:last-child {
                padding-left: var(--padding-artist);
                border-left: var(--border);
                width: 69%;

                img {
                    width: 100%;
                    height: 40vw;
                    border: var(--border);
                    object-fit: cover;
                    margin-bottom: 2.5vw;
                    object-position: var(--bg-position);
                }

                h2 {
                    font-size: 8vw;
                    line-height: 7.8vw;
                    font-weight: 200;
                    white-space: nowrap;
                    letter-spacing: -.3vw;
                    width: 95%;

                    .underline { font-family: inherit; }
                }
            }
        }
    }

    .website {
        width: 96%;
        margin: 0 auto;

        .website-header {
            display: flex;
            gap: 2%;
            align-items: center;
            height: 26vw;
                
            h1 {
                font-size: 29vw;
                font-weight: 200;
                letter-spacing: -1vw;
                background-color: var(--body-color);
                color: var(--bg-color);
                width: fit-content;
                padding: 0 2vw 0 1vw;
                line-height: .9;
                height: fit-content;
            }

            img {
                flex: 1;
                height: 100%;
            }
        }

        .website-content {
            display: flex;
            padding: 4vw 0;
            gap: var(--padding-artist);
            --padding-artist: 3vw;

            >div:first-child {
                width: 65%;

                >div {
                    display: flex;
                    margin-bottom: 3vw;

                    >div:first-child {
                        width: 40%;

                        h4 {
                            font-size: 4vw;
                            white-space: nowrap;
                            letter-spacing: -.2vw;
                            font-weight: 200;
                            line-height: 1;
                        }

                        h5 {
                            font-size: 2.6vw;
                            line-height: 1.2;
                            letter-spacing: -.1vw;
                            font-family: Editorial;
                            font-weight: 200;
                            margin: 1.2vw 0;
                        }

                        p {
                            font-size: 1.2vw;
                            font-family: Editorial;

                            span {
                                font-family: Caponee;
                                font-size: 1.4vw;
                            }
                        }
                    }

                    >div:last-child {
                        width: 60%;
                        padding: 0 3vw;
                        border-left: var(--border);
                        cursor: pointer;

                        .image {
                            width: 100%;
                            height: 60%;
                            overflow: hidden;
                            border: var(--border);

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transition: transform 0.5s;
                            }
                        }

                        h6 {
                            font-size: 2vw;
                            font-weight: 200;
                            margin: .7vw 0;
                            letter-spacing: -.1vw;
                        }

                        p {
                            font-size: 1.2vw;
                            line-height: 1.2;
                            font-family: Editorial;
                        }

                        &:hover .image img { transform: scale(1.1); }
                    }
                }
                
                img {
                    width: 100%;
                    object-fit: cover;
                }
            }

            >div:last-child{
                padding-left: var(--padding-artist);
                border-left: var(--border);
                width: 35%;

                h2 {
                    font-size: 7vw;
                    line-height: 7vw;
                    font-weight: 200;
                    white-space: nowrap;
                    letter-spacing: -.3vw;
                }

                h1 {
                    font-size: 14vw;
                    line-height: 10vw;
                    letter-spacing: -.6vw;
                    font-weight: 200;
                    margin-bottom: 3vw;
                }

                p {
                    font-family: Editorial;
                    font-size: 2.25vw;
                    line-height: 2.7vw;
                    letter-spacing: -.1vw;
                
                    &.stylish-first-letter { margin-bottom: 3vw; }
                }

                >a.all-work-oval {
                    position: relative;
                    display: block;
                    height: 13vw;
                    width: 100%;
                    border-radius: 50%;
                    border: var(--border);
                    text-decoration: none;
                    overflow: hidden;
                    margin-top: 2vw;

                    &::before,
                    &::after {
                        position: absolute;
                        top: 50%;
                        transform: translate(-50%, -50%);
                        transition: left 1s cubic-bezier(0.85, 0, 0.15, 1);
                    }

                    &::before {
                        content: "All work";
                        font-size: 5.5vw;
                        letter-spacing: -.2vw;
                        left: 50%;
                        white-space: nowrap;
                    }

                    &::after {
                        content: "";
                        background-image: url('https://uploads-ssl.webflow.com/5f2429f172d117fcee10e819/61001a3509319b6ae39e156b_arrow-long.svg');
                        height: 100%;
                        width: 100%;
                        left: -50%;
                        background-position: center;
                        background-repeat: no-repeat;
                        transform: translate(-50%, -50%);
                    }

                    &:hover::before { left: 200%; }           
                    &:hover::after { left: 50%; }
                }
                /* ensure link inherits h1 color when nested */
                h1 a.all-work-link { color: inherit; text-decoration: none; }
            }
        }
    }

    .awwwards {
        width: 96%;
        margin: 0 auto;

        .mentions {
            display: flex;
            justify-content: space-between;
            border-top: var(--border);
            border-bottom: var(--border);
            padding: 1.5vw 0;
            cursor: pointer;

            >div {
                display: flex;
                align-items: center;
                text-align: center;
            }

            h3 {
                font-size: 1.7vw;
                font-family: Editorial;
                text-transform: uppercase;
                font-weight: 200;
                margin-top: 1vw;
            }

            h2 {
                font-size: 4.5vw;
                font-weight: 300;
            }

            h1 {
                font-size: 11vw;
                font-family: Editorail;
                font-weight: 200;
                line-height: 9vw;
            }
        }

        .pictures {
            margin-top: 5vw;

            h1 {
                font-size: 30vw;
                letter-spacing: -1.5vw;
                font-weight: 300;
                line-height: 22vw;
                margin-bottom: 10px;
                display: flex;
                gap: 1vw;

                img {                    
                    height: 21.5vw;
                    object-fit: cover;
                    border: var(--border);
                }
            }
            
            .the-pixel {
                display: flex;
                height: 50vw;

                >div {
                    width: 50%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    
                    h1 img {
                        width: 14vw;
                    }
                }

                >img {
                    height: 97%;
                    width: 50%;
                    object-fit: cover;
                    border: var(--border);
                }
            }

            .perfect-artisan {
                padding-top: 1.5vw;

                h1 img {
                    width: 27vw;
                }

                >div {
                    display: flex;
                    gap: 2vw;
                    
                    h2 {
                        font-size: 25vw;
                        width: fit-content;
                        padding: 0 2.5vw 0 1vw;
                        letter-spacing: -1.5vw;
                        font-weight: 300;
                        line-height: 22vw;
                        margin-bottom: 10px;
                        background-color: var(--body-color);
                        color: var(--bg-color);
                    }

                    >div {
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;

                        p {
                            font-family: Editorial;
                            font-size: 2.25vw;
                            line-height: 2.7vw;
                            letter-spacing: -.1vw;
    
                            span {
                                font-family: inherit;
                                cursor: pointer;
                            }
                        }
    
                        h3 {
                            font-size: 8vw;
                            line-height: 7.8vw;
                            font-weight: 200;
                            white-space: nowrap;
                            letter-spacing: -0.3vw;
                            width: 95%;
                        }
                    }
                }
            }
        }
    }

    footer {
        width: 96%;
        margin: 3vw auto 0;
        /* padding-bottom: 4vw; */

        .cards {
            height: 23vw;
            position: relative;
            margin-bottom: 6.5vw;
            z-index: 1; /* keep below subsequent footer sections */

            .card {
                width: 42%;
                height: 100%;
                border: .2vw solid var(--body-color);
                border-radius: .7vw;
                padding: 3vw;
                box-shadow: -.5vw .5vw 3vw -1.5vw var(--body-color);
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                cursor: pointer;
                transition: background-color .2s;
                background-color: var(--bg-color);
                position: absolute;
                top: 0;
                --left: 58%;

                &:nth-child(1) { left: 0; }
                &:nth-child(2) { left: calc(var(--left) / 3); }
                &:nth-child(3) { left: calc(2 * (var(--left) / 3)); }
                &:nth-child(4) { left: var(--left); }

                &:hover { background-color: var(--hover-bg-color); }
                &:hover .user img { scale: 1.01; }

                .about {

                    p {
                        width: fit-content;
                        font-family: Editorial;
                        font-weight: 300;
                        font-size: 2vw;
                    }
                }

                .user {
                    display: flex;
                    align-items: center;
                    gap: 1vw;

                    img {
                        height: 3.5vw;
                        width: 3.5vw;
                        object-fit: cover;
                        border: var(--border);
                        border-radius: 50%;
                        overflow: hidden;
                    }

                    h1 {
                        font-size: 2.5vw;
                        line-height: 2vw;
                        font-weight: 300;
                        letter-spacing: -.1vw;
                    }

                    p {
                        font-family: Editorial;
                        font-size: 1.5vw;
                        text-transform: capitalize;
                        font-weight: 100;

                        span {
                            text-transform: initial;
                            font-family: inherit;
                            text-decoration: underline;
                        }
                    }
                }
            }

        }

        .work-show {
            margin: 2.8% 1.7%;
            padding: 0;
            padding-top: 1.8%;
            border-top: var(--border);
            cursor: pointer;
            position: relative;
            z-index: 2;
        }

        .marquee {
            position: relative;
            display: flex;
            align-items: center;
            gap: 2vw;
            height: 12vw;
            border-top: var(--border);
            border-bottom: var(--border);
            overflow: hidden;
            z-index: 2;

            .marquee__inner {
                display: flex;
                gap: 2vw;
                
                .marquee__part {
                    flex-shrink: 0;
                    padding: 0 4px;
                    display: flex;
                    gap: 2vw;

                    h1 {
                        font-size: 6vw;
                        width: fit-content;
                        letter-spacing: -.3vw;
                        font-family: Editorial;
                        font-weight: 300;
                        white-space: nowrap;
                    }
        
                    h2 {
                        font-size: 6.5vw;
                        background-color: var(--body-color);
                        color: var(--bg-color);
                        padding: 0 1vw 0 0.7vw;
                        font-weight: 300;
                        letter-spacing: -.3vw;
                        height: fit-content;
                        line-height: 1;
                        white-space: nowrap;
                        /* Ensure the nested link is visible on dark background */
                        a { color: var(--bg-color); text-decoration: underline; text-underline-offset: .15em; cursor: pointer; }
                        a:visited { color: var(--bg-color); }
                        a:hover { text-decoration-thickness: .12em; }
                        a:focus-visible { outline: 2px dashed var(--bg-color); outline-offset: 4px; border-radius: 2px; }
                    }
                }

            }
        }

        .social {
            display: flex;
            justify-content: space-between;
            padding: 2.5vw 0;

            >div:first-child {
                display: flex;
                align-items: end;
                gap: 1vw;

                h1 {
                    font-size: 1.65vw;
                    letter-spacing: -.05vw;
                    font-weight: 300;
                }

                img {
                    height: 2.2vw;
                }

                h2 {
                    font-size: 1.35vw;
                    letter-spacing: -.1vw;
                    font-weight: 300;
                    font-family: Editorial;
                    text-transform: capitalize;
                    cursor: pointer;
                }
            }

            >div:last-child {
                display: flex;
                align-items: center;
                gap: .6vw;
                
                h6 {
                    font-size: 1.5vw;
                    letter-spacing: -.05vw;
                    font-weight: 100;     
                    cursor: pointer;             
                }
                >span {
                    display: block;
                    height: .3vw;
                    width: .3vw;
                    background-color: var(--body-color);
                    border-radius: 50%;
                }
            }
        }
    }
}





/* Work Page */
.page-work .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    padding: 3vw 2vw;
}
.work-card {
    position: relative;
    display: block;
    border: var(--border);
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-color);
}
.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    transition: transform 1.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.work-card:hover::before { transform: scale(1.08); }
.work-card__inner {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.2vw 1.2vw 1.6vw;
    background: linear-gradient(180deg, rgba(205,198,190,0) 0%, rgba(205,198,190,.75) 60%, var(--bg-color) 100%);
}
.work-card__inner h3 { font-size: 2vw; font-weight: 300; letter-spacing: -.1vw; }
.work-card__inner p { font-family: Editorial; font-size: 1.1vw; }

.page-work .lets-talk { padding: 3vw 2vw; border-top: var(--border); }
.page-work .lets-talk h2 { font-size: 6vw; letter-spacing: -.3vw; font-weight: 300; }
.page-work .lets-talk p { font-family: Editorial; font-size: 1.6vw; }

/* About Page */
.page.page-about { width: 100%; }
.page-about .about-intro { display: grid; grid-template-columns: 36% 1fr; gap: 3vw; padding: 3vw 2vw; }
.page-about .about-image img { width: 100%; border: var(--border); object-fit: cover; height: 32vw; }
.page-about .about-copy p { font-family: Editorial; font-size: 2.1vw; line-height: 2.6vw; letter-spacing: -.05vw; }
.page-about .awards { padding: 3vw 2vw; border-top: var(--border); }
.page-about .awards h2 { font-size: 7vw; letter-spacing: -.3vw; font-weight: 300; }
.page-about .awards-logos { display: flex; gap: 3vw; align-items: center; flex-wrap: wrap; }
.page-about .awards-logos img { height: 4vw; filter: grayscale(1); opacity: .8; }
.page-about .publications { padding: 3vw 2vw; border-top: var(--border); }
.page-about .publications h2 { font-size: 6vw; letter-spacing: -.3vw; font-weight: 300; }
.page-about .publications ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1vw; list-style: none; margin-top: 1vw; }
.page-about .publications a { font-family: Editorial; font-size: 1.4vw; text-decoration: underline; }
.page-about .clients { padding: 3vw 2vw; border-top: var(--border); }
.page-about .clients h2 { font-size: 6vw; letter-spacing: -.3vw; font-weight: 300; }
.page-about .client-list { display: flex; gap: 1vw; flex-wrap: wrap; }
.page-about .client-list span { border: var(--border); padding: .6vw 1vw; border-radius: 999px; font-size: 1.1vw; }
.page-about .cta { padding: 3vw 2vw; border-top: var(--border); display: flex; align-items: center; justify-content: space-between; }
.page-about .cta h2 { font-size: 5.5vw; letter-spacing: -.3vw; font-weight: 300; }

@media (max-width: 900px) {
    .page .page-header h1 { font-size: 14vw; }
    .page .page-header p { font-size: 3.2vw; }
    .page-work .work-grid { grid-template-columns: 1fr 1fr; }
    .work-card__inner h3 { font-size: 4.2vw; }
    .work-card__inner p { font-size: 2.8vw; }
    .page-about .about-intro { grid-template-columns: 1fr; }
    .page-about .about-image img { height: 60vw; }
    .page-about .about-copy p { font-size: 3.8vw; line-height: 4.6vw; }
    .page-about .awards-logos img { height: 7vw; }
    .page-about .publications ul { grid-template-columns: 1fr; }
    .page-about .publications a { font-size: 2.8vw; }
    .page-about .client-list span { font-size: 3.2vw; }
    .page-work .lets-talk p { font-size: 2.8vw; }

    /* Home: stack hero and works for small screens */
    .main-content .work-show { flex-direction: column; gap: 6vw; padding: 5vw 3.5vw; }
    .main-content .work-show .work { width: 100%; margin: 0; }
    .main-content .work-show .work .image { height: 56vw; }
    .main-content .work-show .work h3 { font-size: 6.2vw; }
    .main-content .work-show .work p { font-size: 4.2vw; }
    .main-content .work-show .work:nth-child(2) { border-left: none; border-right: none; padding: 0; }
    .main-content .work-show .work:nth-child(2) h1 { font-size: 12vw; }
    .main-content .work-show .work:nth-child(2) h2 { font-size: 7.2vw; line-height: 1.1; }

    .main-content > h1 { font-size: 30vw; }

    .main-content .artist { flex-direction: column; gap: 4vw; }
    .main-content .artist > div:first-child { width: 100%; }
    .main-content .artist > div:first-child h3 { font-size: 12vw; line-height: 10.2vw; }
    .main-content .artist > div:first-child h1 { font-size: 22vw; line-height: 18vw; }
    .main-content .artist > div:first-child img { height: 56vw; }
    .main-content .artist > div:first-child p { font-size: 4.4vw; line-height: 5.2vw; }

    .main-content .artist > div:last-child { width: 100%; border-left: none; padding-left: 0; }
    .main-content .artist > div:last-child img { height: 62vw; }
    .main-content .artist > div:last-child h2 { white-space: normal; font-size: 12vw; line-height: 11.2vw; width: 100%; }

    .main-content .website .website-header { height: 42vw; }
    .main-content .website .website-header h1 { font-size: 18vw; }
    .main-content .website .website-header img { height: 100%; }
    .main-content .website .website-content { flex-direction: column; }
    .main-content .website .website-content > div:first-child { width: 100%; }
    .main-content .website .website-content > div:first-child > div:last-child { padding: 0; border-left: none; }
    .main-content .website .website-content > div:first-child > div:last-child .image { height: 56vw; }
    .main-content .website .website-content > div:first-child > div:last-child h6 { font-size: 6vw; }
    .main-content .website .website-content > div:first-child > div:last-child p { font-size: 4.2vw; }
    .main-content .website .website-content > div:last-child { width: 100%; border-left: none; padding-left: 0; }
    .main-content .website .website-content > div:last-child h2 { font-size: 12vw; line-height: 12vw; }
    .main-content .website .website-content > div:last-child h1 { font-size: 24vw; line-height: 18vw; }
    .main-content .website .website-content > div:last-child p { font-size: 4.4vw; line-height: 5.2vw; }
    .main-content .website .website-content > div:last-child > a.all-work-oval { height: 20vw; }
    .main-content .website .website-content > div:last-child > a.all-work-oval::before { font-size: 8.5vw; }

    .main-content footer .marquee { height: 18vw; }
}

/* ---Responsive Styles --- */
@media (max-width: 800px) {

    .hamburger {

        > div:nth-child(2) >div {
            height: 17vw;
        
            h1 {
                font-size: 20vw;
                line-height: 17vw;
    
                >div { height: 1.5vw; }
            }
    
            #animated-line {
                height: 1px;
            }    
        }

        > div:last-child{
            gap: 0.5vw;
            
            h6 {
                font-size: 3.2vw;
            }

            >span {
                height: 0.5vw;
                width: 0.5vw;
            }
        }

    }


    .main-content {
    /* On small screens, skip the initial work carousel and start with the big title */
    > .work-show { display: none !important; }

    /* Add breathing room below the fixed nav when the work-show is hidden */
    > h1 { margin-top: 2vw; }

        footer .social {
            padding: 3vw 0;
    
            >div:first-child {
    
                h1 {
                    font-size: 2vw;
                }
    
                img {
                    height: 3vw;
                }
    
                h2 {
                    font-size: 1.8vw;
                }
            } 
    
            >div:last-child h6 {
                font-size: 3.2vw;
            }
    
        }
    }

}
@media (max-width: 700px) {

    .hamburger {

        > div:nth-child(2) >div {
            height: 20vw;
        
            h1 {
                font-size: 22vw;
                line-height: 20vw;
    
                >div { height: 3vw; }
            }
    
            #animated-line {
                height: 2px;
            }    
        }

        > div:last-child{
            gap: 0.7vw;
            
            h6 {
                font-size: 3.8vw;
            }

            >span {
                height: 0.7vw;
                width: 0.7vw;
            }
        }

    }


    .main-content {

        footer .social {
            padding: 5vw 0;
    
            >div:first-child {
    
                h1 {
                    font-size: 2.5vw;
                }
    
                img {
                    height: 3.5vw;
                }
    
                h2 {
                    font-size: 2.3vw;
                }
            } 
    
            >div:last-child h6 {
                font-size: 3.8vw;
            }
    
        }

        .website .website-content > div:last-child > span::after {
            transform: translate(-50%, -50%) scale(.8);
        }

    /* tighten headings a bit below 700px */
    .artist > div:last-child h2 { font-size: 10.5vw; line-height: 10.2vw; }
    .website .website-content > div:last-child h1 { font-size: 20vw; line-height: 16vw; }
    .website .website-content > div:last-child h2 { font-size: 10.5vw; }
    }

}
@media (max-width: 600px) {

    .hamburger {

        > div:nth-child(2) >div {
            height: 25vw;
        
            h1 {
                font-size: 30vw;
                line-height: 25vw;
    
                >div { height: 3vw; }
            }
    
            #animated-line {
                height: 2px;
            }    
        }

        > div:last-child{
            gap: 1vw;
            
            h6 {
                font-size: 5.2vw;
            }

            >span {
                height: 1vw;
                width: 1vw;
            }
        }

    }


    .main-content {

        footer .social {
            padding: 7vw 0;
    
            >div:first-child {
    
                h1 {
                    font-size: 4.2vw;
                }
    
                img {
                    height: 5.2vw;
                }
    
                h2 {
                    font-size: 3.8vw;
                }
            } 
    
            >div:last-child h6 {
                font-size: 4.2vw;
            }
    
        }

        .website .website-content > div:last-child > span::after {
            transform: translate(-50%, -50%) scale(.5);
        }

    /* smallest screens adjustments */
    > h1 { font-size: 26vw; }
    .artist > div:first-child h3 { font-size: 11vw; line-height: 9.6vw; }
    .artist > div:first-child h1 { font-size: 20vw; line-height: 16.5vw; }
    .artist > div:last-child h2 { font-size: 9.6vw; line-height: 9.6vw; }
    .work-show .work .image { height: 58vw; }
    footer .marquee { height: 22vw; }
    }

}

/* --Universal-- */
::-webkit-scrollbar { display: none; }
.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { position: fixed; left: 12px; top: 12px; width: auto; height: auto; padding: 8px 12px; background: var(--body-color); color: var(--bg-color); z-index: 100000; border: var(--border); }
.paper-background {
    z-index: 999;
    opacity: .3;
    background-image: url(https://uploads-ssl.webflow.com/5f2429f172d117fcee10e819/614f353f1e11a6a7afdd8b74_6059a3e2b9ae6d2bd508685c_pt-texture-2.jpg);
    background-position: 50%;
    background-size: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
    will-change: transform;

    .w-embed {

        &::before,
        &::after {
            content: " ";
            grid-area: 1 / 1 / 2 / 2;
            display: table;
        }

        &::after {
            clear: both;
        }
    }
}
.line-through-bottom {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        bottom: 23%;
        opacity: .3;
        left: 0;
        width: 100%;
        border-bottom: 2px solid var(--body-color);
    }
}
.line-through {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        opacity: .3;
        width: 100%;
        border-bottom: 2px solid var(--body-color);
    }
}
.underline {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 14%;
        opacity:.3;
        width: 100%;
        border-bottom: 2px solid var(--body-color);
    }
}
.stylish-first-letter::first-letter {
    font-family: Caponee;
    font-feature-settings: "ss03";
    float: left;
    font-size: 7vw;
    line-height: 5vw;
    margin: .7vw 1vw 1vw 0vw;
    padding: .75vw .4vw .5vw .5vw;
    background-color: var(--body-color);
    color: var(--bg-color);
}
h1,h2,h3,h4,h5,h6,h7 {
    span {
        font-family: Domain;
        text-transform: uppercase;
    }
}
.orange-highlight {
    background-color: var(--orange);
    color: var(--bg-color);
    font-size: 1.2vw;
    font-weight: 100;
    padding: .2vw .3vw;
    border-radius: 4px;
    margin: 0 .6vw;
    font-family: Caponee;
}
.dashed-border {
    position: relative;
    &::after {
        content: "";
        position: absolute;
        width: 96.5%;
        height: 93%;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23333' stroke-width='2.5' stroke-dasharray='11%2c11' stroke-dashoffset='30' stroke-linecap='square'/%3e%3c/svg%3e");
        pointer-events: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* --- Buttons --- */
.btn { display:inline-block; border: var(--border); padding: 10px 16px; background: var(--body-color); color: var(--bg-color); text-decoration:none; cursor:pointer; }
.btn:hover { background: #2a2a28; }
.btn-outline { background: transparent; color: inherit; }

/* --- CV sections --- */
.cv-section { padding: 2vw; border-top: var(--border); }
.cv-section h2 { font-size: 5.5vw; letter-spacing: -.25vw; font-weight: 300; margin-bottom: 1vw; }
.cv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2vw; }
.cv-entry { padding: 1.5vw 0; border-bottom: var(--border); }
.cv-entry:last-child { border-bottom: none; }
.cv-entry .cv-entry-head { display:flex; justify-content:space-between; align-items:flex-end; gap: 1vw; }
.cv-entry .title { font-size: 2.1vw; letter-spacing: -.05vw; font-weight: 300; }
.cv-entry .meta { font-family: Editorial; font-size: 1.2vw; opacity: .9; white-space: nowrap; }
.cv-entry ul { margin-top: .8vw; padding-left: 1.2em; font-family: Editorial; font-size: 1.2vw; }
.cv-entry ul li { margin: .35em 0; }
.tag { display:inline-block; padding: .15em .5em; border: var(--border); border-radius: 999px; font-size: .9em; margin-left: .5em; }

/* Floating Download CV button */
.cv-fab { position: fixed; right: 20px; bottom: 20px; z-index: 9000; }
.cv-fab .btn { border-width: 2px; }

/* --- Work Modal --- */
.modal { position: fixed; inset: 0; display: none; z-index: 100000; }
.modal[aria-hidden="false"] { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); backdrop-filter: saturate(90%) blur(6px); }
.modal__dialog { position: relative; z-index: 1; width: min(960px, 94vw); max-height: 90vh; margin: 6vh auto; background: var(--bg-color); color: var(--body-color); border: var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.25); display: grid; grid-template-columns: 1fr 1fr; }
.modal__media { position: relative; min-height: 280px; background: #000; }
.modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: 24px; }
.modal__close { position: absolute; top: 8px; right: 10px; border: var(--border); background: transparent; font-size: 22px; line-height: 1; padding: 4px 10px; cursor: pointer; }
.modal__actions { display: flex; gap: 12px; margin-top: 16px; }
.muted { opacity: .75; font-family: Editorial; }

/* --- Contact Drawer --- */
.drawer { position: fixed; inset: 0; z-index: 100000; pointer-events: none; }
.drawer[aria-hidden="false"] { pointer-events: auto; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.35); opacity: 0; transition: opacity .25s ease; z-index: 1; }
.drawer[aria-hidden="false"] .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 50%; left: 50%; height: auto; max-height: 90vh; overflow:auto; width: 100vw; max-width: 100vw; background: var(--bg-color); color: var(--body-color); border: var(--border); transform: translate(-50%, -40%) scale(.98); transition: transform .25s ease, opacity .25s ease; opacity: 0; z-index: 2; }
.drawer[aria-hidden="false"] .drawer__panel { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.drawer__close { position: absolute; top: 10px; right: 12px; border: var(--border); background: transparent; font-size: 22px; line-height: 1; padding: 4px 10px; cursor: pointer; }
#contact-drawer form { padding: 56px 24px 24px; }
.form-row { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row label { font-family: Editorial; font-size: 14px; margin-bottom: 6px; }
.form-row input, .form-row textarea { border: var(--border); padding: 10px 12px; background: transparent; color: inherit; }
.form-actions { margin-top: 8px; }

@media (max-width: 900px) {
    .modal__dialog { grid-template-columns: 1fr; }
    .cv-section h2 { font-size: 8vw; }
    .cv-grid-2 { grid-template-columns: 1fr; }
    .cv-entry .title { font-size: 5.2vw; }
    .cv-entry .meta { font-size: 4.2vw; }
    .cv-entry ul { font-size: 4vw; }
}

/* --- Contact form: simple clean styling --- */
#contact-drawer .drawer__panel{
    background: var(--bg-color);
    border: var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    -webkit-clip-path: none;
    clip-path: none;
    width: min(760px, 92vw);
    max-width: 92vw;
}
#contact-drawer .drawer__panel::before,
#contact-drawer .drawer__panel::after { content: none; }

#contact-drawer h2{
    text-align:center;
    font-family: Editorial, serif;
    font-style: normal;
    margin: 28px 18px 8px;
    letter-spacing: .01em;
}
#contact-drawer form{ padding: 16px 28px 28px; }
#contact-drawer .form-row label{ color: rgba(40,30,20,.85); font-weight: 400; font-size: 16px; }
#contact-drawer .form-row input,
#contact-drawer .form-row textarea{
    background: transparent;
    border: var(--border);
    border-radius: 6px;
    color: inherit;
    font-family: Editorial, serif;
    font-style: normal;
    font-size: 18px;
    outline: none;
    padding: 12px 14px;
}
#contact-drawer #message{ background-image: none; }
#contact-drawer .form-row textarea{ resize: vertical; min-height: 120px; line-height: 1.4; }
#contact-drawer .form-row input:focus,
#contact-drawer .form-row textarea:focus{ border-color: var(--orange); box-shadow: 0 0 0 2px rgba(192,63,19,.15); }
#contact-drawer .form-row input::placeholder,
#contact-drawer .form-row textarea::placeholder{ color: rgba(60,40,30,.55); font-style: normal; }
#contact-drawer .btn{ background: var(--body-color); }
#contact-drawer .btn:hover{ background: #2a2a28; }


/* Keep overrides flat (non-nested) so they apply reliably in plain CSS */

@media (max-width: 800px) {
    /* Home: skip initial horizontal work carousel; start with big title */
    .main-content > .work-show { display: none !important; }
    .main-content > h1 { margin-top: 18vw; }

    /* Footer social sizing tweaks */
    .main-content footer .social { padding: 3vw 0; }
    .main-content footer .social > div:first-child h1 { font-size: 3.2vw; }
    .main-content footer .social > div:first-child img { height: 4vw; }
    .main-content footer .social > div:first-child h2 { font-size: 2.8vw; }
    .main-content footer .social > div:last-child h6 { font-size: 3.2vw; }
}

@media (max-width: 700px) {
    /* Awwwards: wrap stats into 2 columns with clear separation */
    .main-content .awwwards .mentions { flex-wrap: wrap; row-gap: 2.5vw; }
    .main-content .awwwards .mentions > div { width: 50%; justify-content: center; padding: 2.5vw 0; border-bottom: var(--border); }
    .main-content .awwwards .mentions > div:nth-last-child(-n+2) { border-bottom: none; }
    .main-content .awwwards .mentions h3 { font-size: 4.2vw; margin-top: 0; }
    .main-content .awwwards .mentions h2 { font-size: 9.5vw; }
    .main-content .awwwards .mentions h1 { font-size: 20vw; line-height: .9; }

    /* Footer social */
    .main-content footer .social { padding: 5vw 0; }
    .main-content footer .social > div:first-child h1 { font-size: 3.8vw; }
    .main-content footer .social > div:first-child img { height: 4.5vw; }
    .main-content footer .social > div:first-child h2 { font-size: 3.2vw; }
    .main-content footer .social > div:last-child h6 { font-size: 3.8vw; }

    /* Tighten large headings */
    .main-content .artist > div:last-child h2 { font-size: 10.5vw; line-height: 10.2vw; }
    .main-content .website .website-content > div:last-child h1 { font-size: 20vw; line-height: 16vw; }
    .main-content .website .website-content > div:last-child h2 { font-size: 10.5vw; }
}

@media (max-width: 600px) {
    /* Work page grid: single column on small devices */
    .page-work .work-grid { grid-template-columns: 1fr; }

    /* Page header copy: slightly larger for readability */
    .page .page-header p { font-size: 4.2vw; }

    /* Hero and headings scale */
    .main-content > h1 { font-size: 39vw; margin-top: 14vw; line-height: 0.75; }

    /* Reorder Artist Section for Mobile to match reference */
    .main-content .artist {
        display: flex;
        flex-direction: column;
    }
    
    .main-content .artist > div {
        display: contents;
    }

    /* Image 2 (from 2nd div) - Order 1 */
    .main-content .artist > div:last-child img {
        order: 1;
        width: 100%;
        height: 60vw;
        margin-bottom: 4vw;
        display: block;
        object-position: top;
    }

    /* Roles (from 2nd div) - Order 2 */
    .main-content .artist > div:last-child h2 {
        order: 2;
        font-size: 11.5vw;
        line-height: 0.65;
        text-align: left;
        width: 100%;
        margin-bottom: 0;
        padding: 0.9vw 0;
        border-bottom: 1px solid rgba(29, 29, 27, 0.3);
    }

    .main-content .artist > div:last-child h2:first-of-type {
        border-top: 1px solid rgba(29, 29, 27, 0.3);
    }

    .main-content .artist > div:last-child h2::after,
    .main-content .artist > div:last-child h2 .underline::after {
        content: none;
    }

    /* Interactive Artist (from 1st div) - Order 3 */
    .main-content .artist > div:first-child h3,
    .main-content .artist > div:first-child h1 {
        order: 3;
        width: 100%;
        text-align: justify;
        margin: 0;
    }
    
    .main-content .artist > div:first-child h3 {
        font-size: 24vw;
        line-height: 0.8;
        padding: 0;
        position: relative;
    }
    
    .main-content .artist > div:first-child h1 {
        font-size: 40vw;
        line-height: 0.75;
        padding-bottom: 2vw;
        border-bottom: 1px solid var(--body-color);
        margin-bottom: 0;
        margin-top: -1vw;
    }

    /* Custom thick strike-through for INTERACTIVE on mobile */
    .main-content .artist > div:first-child h3::after {
        content: "";
        position: absolute;
        left: 0;
        height: 0.2vw;
        background-color: var(--body-color);
        top: 58%;
        transform: translateY(-50%);
        display: block;
    }

    /* Remove pseudo-element borders for these specific elements on mobile */
    .main-content .artist > div:first-child h1::after {
        content: none;
    }

    /* Image 1 (from 1st div) - Order 4 */
    .main-content .artist > div:first-child img {
        order: 4;
        display: block;
        width: 100%;
        height: 60vw;
        object-fit: cover;
        margin-top: 0;
        margin-bottom: 4vw;
    }

    /* Paragraph (from 1st div) - Order 5 */
    .main-content .artist > div:first-child p {
        order: 5;
        font-size: 6.5vw;
        line-height: 1.15;
        text-align: justify;
        margin: 0 0 4vw 0;
    }

    /* Adjust drop cap for larger mobile text */
    .main-content .artist > div:first-child p.stylish-first-letter::first-letter {
        font-size: 15vw;
        line-height: 11vw;
        margin: 1.5vw 2vw 0 0;
        padding: 1vw;
    }

    /* Card imagery heights */
    .main-content .work-show .work .image { height: 40vw; }
    .main-content footer .marquee { height: 22vw; }

    /* Work card captions - larger font on mobile */
    .main-content .website .website-content > div:first-child > div > div:last-child h6 { font-size: 10vw; }
    .main-content .website .website-content > div:first-child > div > div:last-child p { font-size: 5vw; }
    .main-content .website .website-content > div:first-child > div > div:last-child .image { height: 40vw; }

    /* Float action button can crowd UI on tiny screens – tuck it away */
    .cv-fab { display: none; }

    /* Website inner content stacking */
    .main-content .website .website-content > div:first-child > div { flex-direction: column; gap: 4vw; }
    .main-content .website .website-content > div:first-child > div > div:first-child { width: 100%; }
    .main-content .website .website-content > div:first-child > div > div:last-child { width: 100%; padding: 0; border-left: none; }
    .main-content .website .website-content > div:first-child > div > div:first-child h4 { font-size: 14vw; line-height: 1; }
    .main-content .website .website-content > div:first-child > div > div:first-child h5 { font-size: 5vw; }
    .main-content .website .website-content > div:first-child > div > div:first-child p { font-size: 3.5vw; }
    .main-content .website .website-content > div:first-child > div > div:first-child p span { font-size: 4vw; }

    /* Hide stamp image on mobile */
    .main-content .website .website-header img { display: none; }

    /* Website title fills across the screen */
    .main-content .website .website-header h1 {
        font-size: 32vw;
        text-align: center;
        width: 100%;
    }

    /* "Think, create, deliver" headings span full width */
    .main-content .website .website-content > div:last-child { width: 100%; }
    .main-content .website .website-content > div:last-child h2 { font-size: 14vw; line-height: 1; width: 100%; }
    .main-content .website .website-content > div:last-child h1 { font-size: 28vw; line-height: 1; width: 100%; }

    /* Hide the all-work-oval CTA on mobile */
    .main-content .website .website-content > div:last-child > a.all-work-oval { display: none; }

    /* Awwwards pictures section - hide small images and fit headings */
    .main-content .awwwards .pictures .the-pixel h1 img { display: none; }
    .main-content .awwwards .pictures .perfect-artisan h1 img { display: none; }
    .main-content .awwwards .pictures h1 { 
        font-size: 26vw; 
        line-height: 0.85; 
        letter-spacing: -1vw;
        width: 100%;
        margin-bottom: 0;
    }
    .main-content .awwwards .pictures .the-pixel { 
        flex-direction: column; 
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }
    .main-content .awwwards .pictures .the-pixel > div { 
        width: 100%;
        display: contents;
    }
    .main-content .awwwards .pictures .the-pixel > div h1:first-child {
        grid-column: 1;
        grid-row: 1;
    }
    .main-content .awwwards .pictures .the-pixel > img { 
        grid-column: 2;
        grid-row: 1 / 3;
        width: 100%; 
        height: 100%;
        object-fit: cover;
    }
    .main-content .awwwards .pictures .the-pixel > div h1:last-child {
        grid-column: 1;
        grid-row: 2;
    }
    .main-content .awwwards .pictures .perfect-artisan { 
        margin-top: 2vw;
    }
    /* Make PERFECT and DEV appear on same line with smaller font */
    .main-content .awwwards .pictures .perfect-artisan > h1 {
        margin-bottom: 0;
        font-size: 20vw;
        line-height: 1;
        display: inline;
    }
    .main-content .awwwards .pictures .perfect-artisan > div { 
        display: inline;
    }
    .main-content .awwwards .pictures .perfect-artisan > div h2 { 
        font-size: 16vw; 
        line-height: 1; 
        padding: 0;
        margin-bottom: 0;
        margin-left: 9vw;
        display: inline;
    }
    .main-content .awwwards .pictures .perfect-artisan > div > div { 
        display: block;
        width: 100%;
        padding-top: 2vw;
    }
    .main-content .awwwards .pictures .perfect-artisan > div > div h3 { 
        font-size: 10vw; 
        line-height: 1; 
    }
    .main-content .awwwards .pictures .perfect-artisan > div > div p { 
        font-size: 4.5vw; 
        line-height: 1.4; 
    }

    /* Global paragraph readability improvements for mobile */
    /* Index page paragraphs */
    .main-content .work-show .work p { font-size: 4.5vw; line-height: 1.4; }
    .main-content .website .website-content > div:last-child p { font-size: 4.8vw; line-height: 1.4; }
    .main-content .website .website-content > div:first-child > div > div:first-child p { font-size: 4vw; line-height: 1.4; }
    
    /* Work page paragraphs */
    .page-work .lets-talk p { font-size: 4.5vw; line-height: 1.4; }
    .work-card__inner p { font-size: 3.8vw; line-height: 1.3; }
    
    /* About page paragraphs */
    .page-about .about-copy p { font-size: 4.8vw; line-height: 1.5; }
    .page-about .publications a { font-size: 4vw; }
    .page-about .client-list span { font-size: 4vw; }

    /* Header adjustments for mobile */
    nav { padding: 4vw 3vw; }
    nav h1 { font-size: 3.5vw; width: 30%; }
    nav img { height: 7vw; }
    nav .toggler { width: 30%; }
    nav .toggler .line-container { height: 4vw; width: 6vw; }
    nav .toggler .line-container .line { width: 100%; }

    /* Adjust top margin for the main title to reduce space */
    .main-content > h1 { margin-top: 4vw; }
}