@media (max-width: 800px) {


    h1 {
        font-size: 12vw;
    }

    h2 {
        font-size: 8vw;
    }

    h3 {
        font-size: 3rem;
    }

    p {
        font-size: 1.5em;
    }

    /* Nav */

    nav {
        bottom: 20px;
        top: auto;
        width: auto;
    }

    .subCta {
        width: 60px;
        font-size: 12px;
    }

    .subNav {
        display: none;
    }

    .mainCta {
        width: 72px;
        margin-left: 6px;
    }

    section {
        width: 100%;
    }

    /* Hero */
     .hero {
        scroll-margin-top: 0px;
        height: 80vh;
    }

    /* Work */
    .work {
        margin-bottom: 50%;
         scroll-margin-top: 0px;
    }

    .workgrid {
        grid-template-columns: 1fr; /* single column stack */
        grid-template-rows: auto;   /* rows adjust automatically */
        row-gap: 4em;              /* spacing between stacked items */
        column-gap: 0;              /* no column gap needed */
    }

    /* Reset grid areas so cards flow naturally */
    .cardOne, .cardTwo, .cardThree, .cardFour {
        grid-area: auto;
    }

    .workDisplay {
        filter: grayscale(0%);
    }

    /* Progress */

    .process {
        scroll-margin-top: 0px;
        margin-bottom: 50%;
    }

    .progressHeading {
        margin-bottom: 1em;
        margin-top: 1em;
    }

    .progressContaienr {
        grid-template-columns: 1fr; /* stack into single column */
        grid-template-rows: auto;    /* rows adjust automatically */
        row-gap: 10px;               /* optional spacing between rows */
    }

    .progressChildOne {
        border-right: 0;
    }

    .progressChildTwo {
        padding-top: 1rem;
        padding-bottom: 2em;
        padding-left: 0;
        border: none;
    }

     .progressChildThree {
        border-right: 0;
        border-top: 1px solid #424242;
    }

    .progressChildFour {
        padding-top: 1rem;
        padding-bottom: 2em;
        padding-left: 0;
        border: none;
    }

    .progressChildFive {
        border-right: 0;
        border-top: 1px solid #424242;
    }

     .progressChildSix {
        padding-top: 1rem;
        padding-bottom: 2em;
        padding-left: 0;
        border: none;
    }

    /* About */

     .about {
        scroll-margin-top: 0px;
        margin-bottom: 50%;
    }

    .aboutText{ 
        flex-direction: column;
        gap: 30px;
    }

    .aboutChild {
        width: 100%;
        font-size: 1.2em;
    }

    /* Contact */
    .contact {
        height: auto;
        margin-bottom: 200px;
    }

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

    form {
        width: 100%;
    }
}