

 
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root{

    
    --body-large: max(20px, 1.72vw);
    --body-regular: max(16px, 1.058vw);
    --body-small: 14px;


    --grid-margin: 2.5rem;

}



.body_large{
    font-size: var(--body-large);
}

html.lenis-stopped{
    overflow: hidden;
}

body:not(.home) .preloader{
    display: none;
}

.preloader{
    pointer-events: none;
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preloader .column{
    background-color: #fff;
    height: 100%;
}

body{
    background-image: linear-gradient(90deg, transparent calc(100% - 1px), rgba(0,0,0,0.04) calc(100% - 1px));
    background-size: 25vw 100%;
    background-repeat: repeat-x;
}

button.pk-button,
.pk-button{
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    border: 1px solid currentColor;
    font-size: .875rem;
    line-height: 1.5;
    font-weight: 400;
    color: #0a0a0a;
    background-color: transparent;
    border-radius: 0;
}

button.pk-button:is(:hover, :active, :focus),
.pk-button:hover{
    color: #0a0a0a;
    background-color: transparent;
}

.pk-button .button-text{
    display: flex; align-items: center;
    gap: .75rem;
}

.pk-button .button-text::after{
    content: '';
    height: 1.25rem; aspect-ratio: 1;
    background-color: currentColor;
    mask: url(/wp-content/uploads/2025/06/arrow.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/06/arrow.svg) no-repeat center / contain;

    transition: transform 300ms ease-in-out;
}

.pk-button:hover .button-text::after{
    transform: translateX(.25rem);
}

.pk-button--simple{
    border: none;
    padding: 0;
    font-weight: 700;
}

.pk-button--external{
    border: none;
    padding: 0;
    font-weight: 700;
}

.pk-button--external .button-text::after{
    width: .75em; height: .75em;
    aspect-ratio: unset;
    mask: url(/wp-content/uploads/2025/06/menu_arrow.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/06/menu_arrow.svg) no-repeat center / contain;
}
.pk-button--external .button-text{
    gap: .5rem;
}
.pk-button--external:hover .button-text::after{
    transform: translate(.125rem, -.125rem);
}

body:not(.wp-admin) h1,
body:not(.wp-admin) .size-h1{
    
    font-size: max(42px, 4.23vw);
    line-height: 1.2;
    margin-bottom: 0;
}

body:not(.wp-admin) h2,
body:not(.wp-admin) .size-h2{
    
    font-size: max(30px, 2.38vw);
    line-height: 1.2;
    margin-bottom: 0;
}

body:not(.wp-admin) h4,
body:not(.wp-admin) .size-h4{
    
    font-size: max(30px, 2.12vw);
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
}


.rank-math-breadcrumb p > *:not(.last){
    opacity: .5;
}



.hotspot{
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    translate: -50% -50%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center; align-items: center;
    width: 2rem; height: 2rem;
}

.hotspot::before{
    content: '';
    width: 1rem;
    height: 1rem;
    background-color: currentColor;
    mask: url(/wp-content/uploads/2025/06/plus.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/06/plus.svg) no-repeat center / contain;

}

.hotspot::after{
    content: '';
    position: absolute;
    width: 120%; height: 120%;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid white;
    top: 50%; left: 50%;
    translate: -50% -50%;
    transform-origin: center;
    animation: aniPulse 2s ease-in-out infinite;
}

@keyframes aniPulse{
    0% {
        transform: scale(.96);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100%{
        transform: scale(1.2);
        opacity: 0;
    }

}






@media only screen and (max-width: 1100px){

    :root{
        --grid-margin: 1rem;
    }

}

#header_logo{
    mix-blend-mode: difference;
    position: fixed; z-index: 150;
    width: auto;
    height: 1.5rem; width: 5.5rem;
    top: 40px; left: 40px;
}

#header_logo svg{
    filter: invert(1);

}

.header_logo{
    z-index: 2;
    position: relative;
}
.header_logo svg{
    height: 1.5rem;
}
.menu_button {
    border-radius: 0;
    padding: 1rem 2rem 1rem 1.5rem;
    line-height: 1.7;
    background-color: rgba(255,255,255,0.7);
    border: none; color: #0a0a0a;
    margin-left: auto;
    display: flex; align-items: center; gap: 1rem;
    width: fit-content;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}
.menu_button:hover,
.menu_button:active,
.menu_button:focus{
    background-color: rgba(255,255,255,0.9);
    border: none; color: #0a0a0a;
}

.menu_button .hamburger span{
    height: 2px;
    width: 1rem;
    display: block;
    position: relative;
    background-color: currentColor;

    transition: background-color 300ms ease-in-out;
}

.menu_button .hamburger span::before,
.menu_button .hamburger span::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 0; left: 0;

    transition: transform 300ms ease-in-out;
}

.menu_button:has(+ .menu_container.open) .hamburger span{
    background-color: transparent;
}

.menu_button:has(+ .menu_container.open) .hamburger span::before{
    transform: rotate(45deg);
}
.menu_button:has(+ .menu_container.open) .hamburger span::after{
    transform: rotate(-45deg);
}

.menu_button .hamburger span::before {
    transform: translateY(-.35rem);
}
.menu_button .hamburger span::after{
    transform: translateY(.35rem);
}

.menu_button .text{
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    height: 1rem;
    overflow: hidden;
}
.menu_button .text span{
    line-height: 1;
    white-space: nowrap;
}

.menu_container.loading{
    opacity: 0;
}
.menu_container{
    position: fixed;
    inset: 0;
    display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
}
.menu_container > div{
    grid-column-end: span 6;
}
.menu_container .menu_column{
    display: flex;
    flex-direction: column;
}

.menu_container .menu_wrapper{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    background-color: #fff;
    flex-grow: 1;
}

.menu_container .menu{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-column: 2 / span 4;
    justify-content: center;
}

.menu_container .menu_column .contact{
    background-color: #F9F9F9;
    margin-top: auto;
    padding-block: 4rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.menu_container .menu_column .contact_wrapper{
    grid-column: 2 / span 4;
}

.menu_container .menu_column .contact_wrapper > a{
    display: block;
    font-weight: 700;
    font-size: clamp(18px, 1.59vw, 24px);
}

.menu_container .contact_wrapper .locations{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.35);
}

.menu_container .contact_wrapper .locations p{
    margin: 0;
}

.menu_container .menu_column .language_selector{
    margin-top: 1rem;
}
.menu_container .menu_column .language_selector a{
    color: #0a0a0a;
    opacity: .5;
}

.menu_container .image_column{
    background-color: rgba(0,0,0,0.1);
    position: relative;
    max-height: 100%;
}
.menu_container .image_column img{
    object-fit: cover;
    object-position: center;
    width: 100%; height: 100%;
    position: absolute;
}


.menu_item{
    font-size: clamp(20px, 1.59vw, 24px);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_item::after{
    content: '';
    width: 0.625rem; aspect-ratio: 1;
    background-color: currentColor;
    mask: url(/wp-content/uploads/2025/06/menu_arrow.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/06/menu_arrow.svg) no-repeat center / contain;
}

.menu_item.has_children::after{
    width: 1rem;
    mask: url(/wp-content/uploads/2025/06/plus.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/06/plus.svg) no-repeat center / contain;
}

.submenu_container{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease-in-out;
}

.menu_item.has_children.open + .submenu_container{
    grid-template-rows: 1fr;
}

.submenu_wrapper{
    overflow: hidden;
}

.submenu{
    padding-top: 1rem;
}

.menu_item.child{
    font-size: clamp(16px, 1.19vw, 18px);
    padding-block: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 0;
}

.menu_item.child:first-of-type{
    border-top: 1px solid rgba(0,0,0,0.04);
}


@media only screen and (max-width: 992px){
    .menu_container{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .menu_container > div{
        grid-column-end: span 4;
    }

    .menu_container .menu_column{
        overflow: scroll;
    }
    .menu_container .image_column{
        display: none;
    }

    .menu_container .contact,
    .menu_container .menu_wrapper{
        padding-block: unset !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .menu_container .contact_wrapper .locations{
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
        padding-block: 1.5rem;
    }

    .menu_container .contact > div,
    .menu_container .menu_wrapper > div{
        grid-column: 1 / span 4 !important;
        padding: var(--grid-margin);
    }

    .menu_container .menu_wrapper .menu{
        padding-top: 5rem;
        justify-content: start;
    }
}

.footer_menus{
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
.footer_menus::before,
.footer_menus::after{
    display: none !important;
}

.footer_menus .column{
    grid-column-end: span 3;
    padding: var(--grid-margin);
    display: flex;
    flex-direction: column;
}

.footer_menus .column h4{
    margin-bottom: 2rem;
}

.footer_menu{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    
}

.footer_menus .column > a.pk-button--external{
    margin-top: auto;
}

.footer_menus .column .socials{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.otgs-development-site-front-end{
    display: none !important;
}

.footer_tagline .fl-rich-text p{
    margin-bottom: 0 !important;
}

.footer_legal_menu{
    display: flex; flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 12px;

}

.footer_legal_menu a{
    opacity: .5;
}


@media only screen and (max-width: 992px){

    .footer_menus{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer_menus .column{
        grid-column-end: span 4;
    }

}

#pk_flex_content{
	--site-grid: 1305px;
}

#pk_flex_content .flex_content:nth-child(n + 2) .flex_layout{
	margin-block: 11rem;
}

#pk_flex_content .flex_layout_wrapper{
	display: grid;
	grid-auto-rows: max-content;
	grid-auto-flow: dense;
}

.mouse_follower.visible{
    opacity: 1;
}

.mouse_follower{
    position: fixed;
    top: 0; left: 0;
    z-index: 2;
    pointer-events: none !important;
    padding: 1rem;
    aspect-ratio: 1;
    width: fit-content; height: auto;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;

    transition: opacity 300ms ease-in-out;
}

.mouse_follower span{
    display: flex; align-items: center;
    
    gap: .25rem;
    font-size: 14px;
}
.mouse_follower span::before{
    transform: scaleX(-1);
}
.mouse_follower span::before,
.mouse_follower span::after{
    content: '';
    
    width: .7em; aspect-ratio: 1;
    background-color: currentColor;
    mask: url(/wp-content/uploads/2025/06/caret.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/06/caret.svg) no-repeat center / contain;
}

.image_popup {
    width: fit-content;
    height: 100%;
    overflow: hidden;
}



.image_popup .closebtn {
    background-color: #f9f9f9;
    position: absolute;
    top: 2rem; right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 50px;
    height: 50px;
}

.image_popup .swiper-navigation {
    background-color: #f9f9f9;
    position: absolute;
    z-index: 3;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: .75rem;
    font-size: 1rem;
}

.image_popup .swiper-navigation .swiperProgress{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}
.image_popup .swiper-navigation .swiperProgress::before{
    content: '';
    width: .25rem; height: .25rem;
    background-color: currentColor;
    order: 2;
}

.image_popup .swiper-navigation .total{
    order: 3;
    opacity: .35;
}

.image_popup .image-wrapper,
.image_popup .swiper_container{
    width: 100%; height: 100%;
}

.image_popup .swiper_container{
    display: flex;
}

.image_popup .swiper_container .swiper{
    margin-block: auto;
}

.image_popup .swiper-slide {
    
}

.image_popup .swiper-slide img{
    height: 100%;
    width: 100%;
    max-height: calc(100vh - 30px)
}

.image_popup img{
    object-fit: contain;
    width: 100%; height: 100%;
}

@media only screen and (min-width: 993px){

	#pk_flex_content .flex_layout_wrapper{
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

}

@media only screen and (max-width: 992px){

	#pk_flex_content .flex_layout_wrapper{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

    #pk_flex_content .flex_content:nth-child(n + 2) .flex_layout{
        margin-block: 5rem;
    }

}

.flex_layout.main_hero .flex_layout_wrapper{
    height: 100vh;
    place-content: end;
    background-color: #1c1c1c;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.flex_layout.main_hero .background{
    z-index: -1;
    position: absolute;
    inset: 0;
    isolation: isolate;
}

.flex_layout.main_hero .background::before{
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 85%, rgba(0,0,0,0.2) 100%);
}

.flex_layout.main_hero .background video{
    line-height: 0;
    object-fit: cover;
    width: 100%; height: 100%;
    position: absolute;
    pointer-events: none;

    transition: opacity 1s ease-in-out;
}



.flex_layout.main_hero .background video:not(.visible){
    opacity: 0;
}


.flex_layout.main_hero .heading_wrapper{
    
    padding: var(--grid-margin);
    color: inherit;
    position: absolute;
    bottom: 20%;
    width: 50%;
}

.flex_layout.main_hero .heading_wrapper h1{
    color: inherit;
}


.flex_layout.main_hero .cta{
    width: 100%;
    position: relative;
    display: grid;
    grid-column-end: span 3;
    grid-row: 2 / span 1;

    padding: var(--grid-margin);
    color: #fff;
    place-self: end;
}



.flex_layout.main_hero .cta::before{
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(transparent, rgba(10, 10, 10, 0.4));
    opacity: 0;
    width: 100%; height: 75vh;

    transition: opacity 300ms ease-in-out;
}

.flex_layout.main_hero .cta:not(:last-child)::after{
    content: '';
    position: absolute;
    pointer-events: none;
    bottom: 0; right: 0;
    z-index: -1;
    width: 1px; height: 75vh;
    opacity: .5;
    background-image: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.75));
}

.flex_layout.main_hero .cta > span{
    font-size: 1.75rem;
    font-weight: 800;
    color: inherit;
    display: flex;
    align-items: center;
    gap: .5em;
}

.flex_layout.main_hero .cta > span::after{
    content: '';
    width: 1em;
    height: auto;
    aspect-ratio: 2 / 1;
    background-color: currentColor;
    mask: url('/wp-content/uploads/2025/06/arrow.svg') no-repeat center / contain;
    -webkit-mask: url('/wp-content/uploads/2025/06/arrow.svg') no-repeat center / contain;

    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.flex_layout.main_hero .cta:hover > span::after{
    transition-delay: 200ms;
    transform: translateX(0);
    opacity: 1;
}

.flex_layout.main_hero .cta:hover::before{
    opacity: 1;
}

.flex_layout.main_hero .cta .subtitle{
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 300ms ease-in-out;
}
.flex_layout.main_hero .cta:hover .subtitle{
    grid-template-rows: 1fr;
}

.flex_layout.main_hero .cta .subtitle p{
    overflow: hidden;
    margin-bottom: 0;
}


@media only screen and (max-width: 992px){

    .flex_layout.main_hero .flex_layout_wrapper{
        height: 80vh;
    }

    .flex_layout.main_hero .heading_wrapper{
        width: 100%;
        position: static;
        grid-column: 1 / -1;
    }

    .flex_layout.main_hero .cta{
        display: none;
    }

}



    .flex_layout.text_large_image .content-wrapper{
        height: 100%;
        grid-column-end: span 4;
    }

    .flex_layout.text_large_image .content-wrapper.right{
        grid-column-start: 9;
    }

    .flex_layout.text_large_image .content{
        padding: var(--grid-margin);
        
        height: fit-content;
        position: sticky;
        top: 25vh;
    }

    .flex_layout.text_large_image .content .heading_wrapper{
        margin-bottom: 1.5rem;
    }

    .flex_layout.text_large_image .content p{
        margin-bottom: var(--grid-margin);
    }


    .flex_layout.text_large_image .image{

        grid-column-end: span 8;
        aspect-ratio: 2/3;
        position: relative;

    }

    .flex_layout.text_large_image .image img{
        object-fit: cover;
        object-position: center;
        width: 100%; height: 100%;
    }



@media only screen and (max-width: 992px){

    .flex_layout.text_large_image .image,
    .flex_layout.text_large_image .content-wrapper,
    .flex_layout.text_large_image .content-wrapper.right{
        
        grid-column: 1 / -1;
    }

    .flex_layout.text_large_image .image{
        order: 1;
    }

    .flex_layout.text_large_image .content-wrapper{
        order: 2;
    }

    .flex_layout.text_large_image .content{
        height: fit-content;
    }

}

.flex_layout.image_text_below .image_wrapper{
    margin-bottom: 4.5rem;
    position: relative;
    grid-column: 1 / -1;
    display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
    
    height: fit-content;
}
.flex_layout.image_text_below .image{
    grid-column-end: span 11;
    order: 2;
}

.flex_layout.image_text_below .image img{
    object-fit: cover;

    aspect-ratio: 0.935;

    width: 100%; height: 100%;
}

.flex_layout.image_text_below .caption span{
    display: block;
    width: 100%;
    transform: translateY(-100%) rotate(90deg);
    transform-origin: bottom left;
    white-space: nowrap;
}


.flex_layout.image_text_below .image--left .caption{
    order: 3;
}

.flex_layout.image_text_below .image--right .caption{
    order: 1;
}

.flex_layout.image_text_below .image--right .caption span{
    transform: translate(100%, 0%) rotate(90deg);
    transform-origin: top left;
    place-self: end;
}

.flex_layout.image_text_below .content-wrapper{
    
    
}

.flex_layout.image_text_below .content-wrapper.col3{
    grid-column: 3 / span 7;
}

.flex_layout.image_text_below .content-wrapper.col4{
    grid-column: 4 / span 7;
}

@media only screen and (max-width: 992px){

    .flex_layout.image_text_below .image{
        margin-bottom: 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .flex_layout.image_text_below .image img{
        grid-column: 1 / -1;
        order: 2;
    }

    .flex_layout.image_text_below .caption,
    .flex_layout.image_text_below .image--left .caption{
        grid-column: 1 / -1;
        order: 1;
    }

    .flex_layout.image_text_below .caption span,
    .flex_layout.image_text_below .image--right .caption span{
        display: block;
        transform: none;
        place-self: end;
        padding-inline: var(--grid-margin);
        padding-block: .5rem;
        white-space: wrap;
    }

    .flex_layout.image_text_below .content-wrapper{
        order: 3;
        grid-column: 1 / -1;
        padding: var(--grid-margin);
    }

    .flex_layout.image_text_below .content-wrapper.col3,
    .flex_layout.image_text_below .content-wrapper.col4{
        grid-column: 1 / -1;
    }
}







.flex_layout.project_carousel .heading_wrapper{

    grid-row: 1 / 2;

}

.flex_layout.project_carousel .indicator_container{
    grid-row: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.flex_layout.project_carousel .indicator{
    display: flex; flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .25rem;
}

.flex_layout.project_carousel .indicator .spacer{
    width: .25rem;
    aspect-ratio: 1;
    background-color: currentColor;
}

.flex_layout.project_carousel .indicator .total{
    opacity: .35;
}

.flex_layout.project_carousel .indicator_container,
.flex_layout.project_carousel .heading_wrapper{
    margin: var(--grid-margin);
    grid-column: 9 / span 4;
}

.flex_layout.project_carousel .pCarousel{
    grid-column: 1 / -1;
    grid-row: 1 / span 3;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    cursor: grab;
}

.flex_layout.project_carousel .pCarousel:active{
    cursor: grabbing;
}

.flex_layout.project_carousel .project_wrapper{
    grid-column: 1 / span 8;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.flex_layout.project_carousel .next_projects {
    grid-column: 9 / span 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    
    height: 70vh;
    overflow: hidden;
    align-self: center;
}

.flex_layout.project_carousel .next_projects > div{
    position: relative;
}
.flex_layout.project_carousel .next_projects > div:nth-child(1){
    grid-column-end: span 3;
}

.flex_layout.project_carousel .next_projects > div:nth-child(2){
    grid-column-end: span 1;
}

.flex_layout.project_carousel .project{
    position: absolute;
    inset: 0;
    isolation: isolate;
}

.flex_layout.project_carousel .project__outer{
    position: relative;
}
.flex_layout.project_carousel .project__outer,
.flex_layout.project_carousel .project__inner{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.flex_layout.project_carousel .project__inner img{
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: -2;
}

.flex_layout.project_carousel .project{
    color: #fff;
    user-select: none;
}

.flex_layout.project_carousel .project *{
    color: inherit;
}

.flex_layout.project_carousel .project__inner{
    display: flex;
}

.flex_layout.project_carousel .project .content_wrapper{
    position: relative;
    z-index: 1;
    padding: 8rem var(--grid-margin) var(--grid-margin) var(--grid-margin);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.flex_layout.project_carousel .project h2{
    line-height: 1.2;
}

.flex_layout.project_carousel .project .content_wrapper::before{
    content: '';
    inset: 0;
    position: absolute;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0));
    z-index: -1;
}

.flex_layout.project_carousel .project a{
    margin-top: auto;
}


@media only screen and (max-width: 992px){

    .flex_layout.project_carousel .heading_wrapper{
        grid-column: 1 / span 4;
        grid-row: 1 / span 1;
    }

    .flex_layout.project_carousel .pCarousel{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        height: 80vh;
        grid-row: unset;
    }
    .flex_layout.project_carousel .project_wrapper{
        height: 70vh;
        grid-column: 1 / span 4;
        grid-row: 2 / span 1;
    }

    .flex_layout.project_carousel .project .content_wrapper{
        padding-top: 2.5rem;
    }

    .flex_layout.project_carousel .project a{
        margin-left: auto;
    }

    .flex_layout.project_carousel .indicator_container{
        grid-column: 1 / span 4;
        grid-row: 3 / span 1;
    }

    .flex_layout.project_carousel .next_projects{
        display: none;
    }

}

.flex_layout.contact_text_large_image {

}

.flex_layout.contact_text_large_image .image{
    grid-column-end: span 8;
    aspect-ratio: 2 / 3;
}

.flex_layout.contact_text_large_image .image img{
    object-fit: cover;
    width: 100%; height: 100%;
}

.flex_layout.contact_text_large_image .content_wrapper{
    grid-column-end: span 4;
    padding: var(--grid-margin) var(--grid-margin) 0 var(--grid-margin);
    display: flex;
    flex-direction: column;
}

.flex_layout.contact_text_large_image .content_wrapper .sticky_wrapper{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: var(--grid-margin);
}

.flex_layout.contact_text_large_image .content_wrapper .content{
    position: sticky;
    top: 15vh;
}

.flex_layout.contact_text_large_image .content_wrapper .content p{
    margin-bottom: var(--grid-margin);
}

.flex_layout.contact_text_large_image .content .heading_wrapper{
    margin-bottom: 1.5rem;
}

.flex_layout.contact_text_large_image .content_wrapper .contact_options{
    font-size: clamp(24px, 2.12vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    margin-top: auto;
}

.flex_layout.contact_text_large_image .contact_options a{
    display: block;
}


:root {
  --shell-bg: #f9f9f5;
  --shell-ink: #0a0a0a;
  --shell-muted: rgba(10,10,10,.62);
  --shell-line: rgba(10,10,10,.14);
  --shell-green: #173d2b;
  --shell-leaf: #b8d66b;
  --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body { overflow-x: clip; }
body.shell-site {
  margin: 0;
  color: var(--shell-ink);
  background-color: var(--shell-bg);
  font-family: var(--font-body);
  line-height: 1.55;
}
body.shell-site h1,
body.shell-site h2,
body.shell-site h3,
body.shell-site .heading,
body.shell-site .heading_text,
body.shell-site .footer_tagline p {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}
body.shell-site h4,
body.shell-site h5,
body.shell-site h6,
body.shell-site .menu_item,
body.shell-site .pk-button,
body.shell-site .shell-phone {
  font-family: var(--font-body);
  letter-spacing: 0;
}
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 200; background: #fff; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
#header_logo.shell-wordmark {
  width: auto;
  height: auto;
  top: 2.5rem;
  left: 2.5rem;
  display: grid;
  line-height: .9;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  mix-blend-mode: difference;
}
#header_logo.shell-wordmark span { font-size: clamp(1.05rem, 2vw, 1.7rem); font-weight: 900; }
#header_logo.shell-wordmark small { font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.shell-header { position: fixed; top: 2rem; right: 2.5rem; z-index: 160; display: flex; align-items: center; gap: .75rem; }
.shell-phone {
  color: #0a0a0a;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(4px);
  padding: 1rem 1.25rem;
  font-weight: 800;
}
.shell-phone,
.menu_button { position: relative; z-index: 170; }
.menu_container { z-index: 150; opacity: 0; pointer-events: none; transform: translateY(-1rem); transition: opacity .3s ease, transform .3s ease; }
.menu_container.open { opacity: 1; pointer-events: auto; transform: none; }
.menu_container.loading { opacity: 0; }
.menu_container .image_column { overflow: hidden; background: #0a0a0a; }
.menu_container .image_column img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; object-position: center; transform: none; }
.menu_item { color: #0a0a0a; }
.shell-simple-hero .flex_layout_wrapper { min-height: 72vh; height: 72vh; }
.shell-main-hero .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.shell-main-hero .background::before {
  background-image: linear-gradient(45deg, rgba(0,0,0,.68), rgba(0,0,0,.2) 75%, rgba(0,0,0,.1));
}
.shell-eyebrow {
  margin: 0 0 .75rem;
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .02em;
  color: currentColor;
}
#pk_flex_content .flex_layout_wrapper { width: 100%; }
#pk_flex_content .flex_content:nth-child(n + 2) .flex_layout { margin-block: clamp(2.25rem, 3vw, 4rem); }
.flex_layout.text_large_image .image,
.flex_layout.contact_text_large_image .image { overflow: hidden; }
.flex_layout.text_large_image .image img,
.flex_layout.contact_text_large_image .image img { transition: transform .9s ease; }
.flex_layout.text_large_image .image:hover img,
.flex_layout.contact_text_large_image .image:hover img { transform: scale(1.035); }
.flex_layout.text_large_image .image,
.flex_layout.image_text_below .image,
.flex_layout.contact_text_large_image .image {
  aspect-ratio: 3 / 2 !important;
  height: auto !important;
  max-height: none !important;
  overflow: hidden;
}
.flex_layout.text_large_image .image img,
.flex_layout.image_text_below .image img,
.flex_layout.contact_text_large_image .image img,
.shell-gallery img,
.shell-blog-media img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 3 / 2 !important;
  object-fit: cover !important;
}
.flex_layout.text_large_image .content-wrapper,
.flex_layout.contact_text_large_image .content_wrapper {
  min-height: 0 !important;
  height: auto !important;
}
.flex_layout.contact_text_large_image .content_wrapper {
  padding-bottom: 0 !important;
}
.flex_layout.contact_text_large_image .content_wrapper .sticky_wrapper {
  position: sticky !important;
  top: clamp(6rem, 15vh, 10rem) !important;
  min-height: 0 !important;
  height: auto !important;
  justify-content: flex-start !important;
  gap: clamp(2.25rem, 6vh, 4.75rem) !important;
  padding-bottom: 0 !important;
}
.flex_layout.contact_text_large_image .content_wrapper .content {
  position: static !important;
  top: auto !important;
  z-index: auto;
}
.flex_layout.contact_text_large_image .content_wrapper .content p {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem) !important;
}
.flex_layout.contact_text_large_image .content_wrapper .contact_options {
  margin-top: 0 !important;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem) !important;
  line-height: 1.18 !important;
  display: grid !important;
  gap: .45rem !important;
  width: 100% !important;
}
.flex_layout.contact_text_large_image .contact_options a {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}
@media (min-width: 993px) {
  .flex_layout.text_large_image .flex_layout_wrapper,
  .flex_layout.contact_text_large_image .flex_layout_wrapper,
  .shell-contact-form-layout {
    align-items: start;
    overflow: visible;
  }

  .flex_layout.text_large_image .image,
  .flex_layout.contact_text_large_image .image,
  .shell-contact-form-media {
    position: sticky !important;
    top: clamp(7rem, 13vh, 10rem) !important;
    align-self: start;
  }

  .flex_layout.contact_text_large_image .content_wrapper {
    min-height: clamp(44rem, 86vh, 52rem) !important;
  }

  .shell-contact-form-layout {
    align-items: start;
  }

  .shell-contact-form-media {
    position: sticky !important;
    top: clamp(7rem, 13vh, 10rem) !important;
    display: block;
    align-self: start !important;
    min-height: 0;
    padding-top: 0;
  }

  .shell-contact-form-media img {
    height: auto !important;
    min-height: 0;
    object-fit: cover;
  }
}
.flex_layout.project_carousel .pCarousel {
  width: 100% !important;
  max-width: none !important;
  height: 100vh !important;
  aspect-ratio: auto !important;
  margin-inline: 0 !important;
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}
.flex_layout.project_carousel .heading_wrapper {
  position: relative !important;
  z-index: 6 !important;
  grid-column: 9 / span 4 !important;
  grid-row: 1 / 2 !important;
  align-self: start !important;
}
.flex_layout.project_carousel .indicator_container {
  position: relative !important;
  z-index: 6 !important;
  align-self: end !important;
  margin-top: 0 !important;
  margin-bottom: clamp(.75rem, 2vh, 1.5rem) !important;
}
.flex_layout.project_carousel .project_wrapper {
  grid-column: 1 / span 8 !important;
  height: 100vh !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
}
.flex_layout.project_carousel .project,
.flex_layout.project_carousel .project__outer,
.flex_layout.project_carousel .project__inner {
  height: 100% !important;
}
.flex_layout.project_carousel .project__inner img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}
.flex_layout.project_carousel .next_projects {
  display: grid !important;
  grid-column: 9 / span 4 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  height: 70vh !important;
  align-self: center !important;
  overflow: hidden !important;
  margin-top: clamp(4rem, 9vh, 6rem) !important;
}
.flex_layout.project_carousel .next_projects > div,
.flex_layout.project_carousel .next_projects img {
  aspect-ratio: auto !important;
  height: 100% !important;
}
.flex_layout.project_carousel .next_projects > div:first-child { grid-column-end: span 3 !important; }
.flex_layout.project_carousel .next_projects > div:last-child { grid-column-end: span 1 !important; }
.shell-large-text { font-size: var(--body-large); }
.shell-prose p { margin: 0 0 1.2rem; }
.shell-prose h2 { margin: 2rem 0 1rem; }
.shell-prose a, .internal-links a { font-weight: 800; text-decoration: underline; text-underline-offset: .18em; }
.shell-method-copy {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.shell-check-list {
  list-style: none;
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 0;
}
.shell-check-list li {
  position: relative;
  padding-left: 1.4rem;
}
.shell-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: .55rem;
  height: 1px;
  background: currentColor;
}
.shell-service-index .content_wrapper,
.shell-gallery-section .content_wrapper,
.shell-article .content_wrapper {
  grid-column: 2 / span 10;
  padding: var(--grid-margin);
}
.shell-service-index ul {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--shell-line);
}
.shell-service-index li {
  min-height: 220px;
  padding: 2rem;
  border-right: 1px solid var(--shell-line);
  border-bottom: 1px solid var(--shell-line);
}
.shell-service-index li a {
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  font-weight: 850;
  margin-bottom: 1rem;
}
.shell-service-index li p { color: var(--shell-muted); margin: 0; }
.shell-blog-index .content_wrapper {
  grid-column: 2 / span 10;
  padding: var(--grid-margin);
}
.shell-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 3vw, 3.1rem) clamp(1.4rem, 2vw, 2rem);
  margin-top: clamp(2.25rem, 5vw, 4.5rem);
  align-items: start;
}
.shell-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: visible;
}
.shell-blog-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.shell-blog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shell-blog-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: .72rem;
  padding-top: clamp(1rem, 1.5vw, 1.2rem);
}
.shell-blog-card__content > * {
  margin: 0;
}
.shell-blog-card .shell-eyebrow {
  color: var(--shell-ink);
  font-family: var(--font-body);
  font-size: .975rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
body.shell-site .shell-blog-card h2 {
  font-size: clamp(1.78rem, 1.7vw, 2.15rem);
  line-height: 1.05;
  font-weight: 700;
  text-wrap: balance;
}
body.shell-site .shell-blog-card h2 a { color: currentColor; }
.shell-blog-card p:not(.shell-eyebrow) {
  color: rgba(10,10,10,.7);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  max-width: 34ch;
}
.shell-project-carousel .project { opacity: 1; z-index: 0; pointer-events: none; }
.shell-project-carousel .project.active { z-index: 2; pointer-events: auto; }
.shell-project-carousel .project_wrapper { background: #0a0a0a; }
.shell-project-carousel .project .content_wrapper p { max-width: 560px; color: rgba(255,255,255,.82); }
.shell-project-carousel .project .content_wrapper p.rewritten-content { color: #ff4d5e; }
.shell-project-carousel .next_projects > div { position: relative; overflow: hidden; }
.shell-project-carousel .next_projects img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.shell-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.shell-gallery figure { margin: 0; }
.shell-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shell-gallery figcaption { font-size: .9rem; color: var(--shell-muted); padding-top: .5rem; }
.internal-links {
  margin-top: 3rem;
  border-top: 1px solid var(--shell-line);
  padding-top: 2rem;
}
.internal-links ul { list-style: none; padding: 0; display: grid; gap: .75rem; }
.shell-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.shell-contact-grid > div,
.faq-item {
  border: 1px solid var(--shell-line);
  padding: 1rem;
  background: rgba(255,255,255,.52);
}
.shell-contact-grid > div {
  min-width: 0;
}
.shell-contact-form-section .content_wrapper {
  grid-column: 1 / -1;
  padding: clamp(3rem, 5vw, 4.75rem) var(--grid-margin) clamp(3.5rem, 6vw, 5rem);
}
.shell-contact-form-layout {
  display: grid;
  grid-template-columns: minmax(22rem, .82fr) minmax(31rem, 1.18fr);
  gap: clamp(2rem, 3.6vw, 4.5rem);
  align-items: start;
  justify-items: stretch;
  width: 100%;
}
.shell-contact-form-copy {
  min-width: 0;
  width: 100%;
  max-width: 56rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-self: start;
  align-self: start;
}
.shell-contact-form-media {
  width: 100%;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  align-self: start;
  justify-self: end;
}
.shell-contact-form-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (min-width: 993px) {
  .shell-contact-form-layout {
    align-items: stretch;
  }

  .shell-contact-form-media {
    --contact-media-heading-offset: clamp(5rem, 8vw, 6.4rem);
    position: relative !important;
    top: auto !important;
    display: block;
    align-self: stretch !important;
    min-height: 0;
    padding-top: 0;
  }

  .shell-contact-form-media img {
    position: absolute;
    inset-inline: 0;
    top: var(--contact-media-heading-offset);
    bottom: 0;
    height: calc(100% - var(--contact-media-heading-offset)) !important;
    min-height: 0;
    object-fit: cover;
  }
}
.shell-contact-form-heading {
  max-width: min(30rem, 100%);
  margin-bottom: clamp(2rem, 3.25vw, 3rem);
}
.shell-contact-form-kicker {
  margin: 0 0 .8rem;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--shell-muted);
}
.shell-contact-form-heading .heading_wrapper {
  margin-bottom: 0;
}
.shell-contact-form-heading .heading {
  font-size: clamp(3.9rem, 7vw, 6rem);
  line-height: .88;
}
.shell-contact-form-heading p {
  max-width: 34rem;
  color: var(--shell-muted);
  margin: 0;
}
.shell-contact-form {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: min(44rem, 100%);
  border-top: 0;
  padding-top: 0;
}
.shell-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.9rem, 1.35vw, 1.1rem);
}
.shell-contact-form .shell-form-field {
  display: grid;
  gap: .7rem;
  min-width: 0;
}
.shell-form-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}
.shell-contact-form input:not([type="checkbox"]),
.shell-contact-form select,
.shell-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(10,10,10,.28);
  border-radius: 0;
  background: rgba(255,255,255,.88);
  color: var(--shell-ink);
  font: inherit;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.35;
  min-height: 3.85rem;
  padding: .92rem 1rem;
  transition: border-color .18s ease, background-color .18s ease;
}
.shell-contact-form input:not([type="checkbox"])::placeholder,
.shell-contact-form textarea::placeholder {
  color: rgba(10,10,10,.62);
}
.shell-contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1.35rem) calc(50% - 2px),
    calc(100% - 1.02rem) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  padding-right: 2.8rem;
}
.shell-contact-form select:required:invalid {
  color: rgba(10,10,10,.62);
}
.shell-contact-form select option {
  color: var(--shell-ink);
}
.shell-contact-form textarea {
  min-height: clamp(12rem, 24vw, 15rem);
  resize: vertical;
}
.shell-contact-form .shell-form-field:focus-within input:not([type="checkbox"]),
.shell-contact-form .shell-form-field:focus-within select,
.shell-contact-form .shell-form-field:focus-within textarea,
.shell-contact-form input:not([type="checkbox"]):focus,
.shell-contact-form select:focus,
.shell-contact-form textarea:focus {
  outline: 0;
  outline-offset: 0;
  border-color: #0a0a0a;
  box-shadow: none;
  background: #fff;
}
.shell-form-full { grid-column: 1 / -1; }
.shell-form-row { display: grid; gap: .65rem; }
.shell-form-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .9rem 1.5rem;
  align-items: center;
}
.shell-checkbox-captcha {
  display: inline-flex !important;
  align-items: flex-start;
  gap: .85rem !important;
  font-weight: 600 !important;
  color: var(--shell-muted);
  line-height: 1.5;
  margin: 0;
}
.shell-checkbox-captcha input[type="checkbox"] {
  width: 1.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  margin: 0;
  padding: 0;
  margin-top: .28rem;
  accent-color: #173d2b;
}
.shell-checkbox-captcha span {
  font-size: .96rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.shell-checkbox-captcha:focus-within {
  outline: 2px solid rgba(23,61,43,.25);
  outline-offset: 4px;
}
.shell-form-error {
  display: none;
  color: #8f1d1d;
  font-size: .92rem;
  font-weight: 600;
  grid-column: 1 / -1;
}
.shell-form-error.is-visible {
  display: block;
}
.shell-form-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .92rem;
  color: var(--shell-muted);
}
.shell-form-submit,
button.shell-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2rem;
  min-width: clamp(12rem, 18vw, 14rem);
  padding: 1rem 1.5rem;
  border: 1px solid #0a0a0a;
  background: #fff;
  color: #0a0a0a;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.shell-form-submit .button-text,
button.shell-form-submit .button-text {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.shell-form-submit .button-text::after,
button.shell-form-submit .button-text::after {
  content: "\2192";
  font-size: 1.05em;
}
.shell-form-submit:hover,
.shell-form-submit:focus-visible,
button.shell-form-submit:hover,
button.shell-form-submit:focus-visible {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.shell-form-submit:disabled,
button.shell-form-submit:disabled {
  cursor: wait;
  opacity: .72;
}
.shell-form-success {
  border: 1px solid rgba(23,61,43,.25);
  background: rgba(23,61,43,.08);
  color: #173d2b;
  margin: 0;
  padding: 1rem 1.25rem;
}
.shell-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.faq-list { display: grid; gap: .8rem; margin-top: 2rem; }
.faq-item summary { font-weight: 900; cursor: pointer; }
.rewritten-content { color: #b00020; }
.shell-main-hero .heading_wrapper p.rewritten-content { color: #b00020; }
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2147482000;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  pointer-events: none;
}
.preloader .column {
  background: var(--shell-bg);
  border-right: 1px solid var(--shell-line);
}
.preloader.is-hidden { display: none; }
.heading_text .word {
  display: inline-block;
  will-change: transform, opacity;
}
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
.preloader,
.preloader.open,
.preloader.is-hidden {
  display: none !important;
}
.shell-footer {
  margin-top: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--shell-line);
  background: #fff;
}
.footer_tagline {
  padding: clamp(2rem, 5vw, 4rem) var(--grid-margin);
  font-size: clamp(2rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 850;
}
.footer_tagline p { max-width: 1180px; margin: 0; }
.footer_menu a, .footer_menu span { color: rgba(10,10,10,.72); }
.footer_legal_menu { padding: var(--grid-margin); border-top: 1px solid var(--shell-line); }
@media (max-width: 992px) {
  .shell-contact-form-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .shell-contact-form-copy {
    max-width: none;
  }
  .shell-contact-form-media {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #header_logo.shell-wordmark { top: 1rem; left: 1rem; }
  .shell-header { top: 1rem; right: 1rem; }
  .shell-phone { display: none; }
  .menu_button { padding: .9rem; }
  .menu_button .text { display: none; }
  .shell-main-hero .heading_wrapper { bottom: 16%; }
  .shell-simple-hero .flex_layout_wrapper { min-height: 64vh; height: 64vh; }
  .shell-service-index .content_wrapper,
  .shell-gallery-section .content_wrapper,
  .shell-blog-index .content_wrapper,
  .shell-article .content_wrapper { grid-column: 1 / -1; }
  .shell-service-index ul,
  .shell-gallery,
  .shell-contact-grid { grid-template-columns: 1fr; }
  .shell-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shell-contact-form-section .content_wrapper { grid-column: 1 / -1; }
  .shell-contact-form-section .content_wrapper { padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 5vw, 1.25rem); }
  .shell-contact-form-copy { padding: 0; }
  .shell-form-grid { grid-template-columns: 1fr; }
  .shell-form-submit,
  button.shell-form-submit { width: 100%; justify-content: center; }
  .shell-form-foot { grid-template-columns: 1fr; }
  .shell-service-index li { min-height: 0; padding: 1.2rem 0; border-right: 0; }
  .flex_layout.text_large_image .content,
  .flex_layout.contact_text_large_image .content_wrapper .content {
    position: static !important;
    top: auto !important;
    transform: none !important;
  }
  .flex_layout.contact_text_large_image .content_wrapper .sticky_wrapper {
    position: static !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
  }
  .flex_layout.text_large_image .image,
  .flex_layout.contact_text_large_image .image,
  .shell-contact-form-media {
    position: relative !important;
    top: auto !important;
  }
  .flex_layout.text_large_image .image,
  .flex_layout.image_text_below .image,
  .flex_layout.contact_text_large_image .image,
  .flex_layout.project_carousel .pCarousel {
    width: 100% !important;
    max-width: 100% !important;
  }
  .flex_layout.project_carousel .pCarousel {
    height: 80vh !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .flex_layout.project_carousel .project_wrapper {
    grid-column: 1 / -1 !important;
    height: 70vh !important;
  }
  .flex_layout.project_carousel .next_projects {
    display: none !important;
  }
  .footer_tagline { font-size: clamp(2rem, 13vw, 4rem); }
}
@media (min-width: 993px) {
  .shell-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shell-blog-card__image {
    min-height: 25rem;
  }

  .shell-contact-form-heading .heading_wrapper + p {
    display: none;
  }
}
@media (max-width: 767px) {
  .shell-contact-form-heading .heading {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }
  .shell-contact-form input:not([type="checkbox"]),
  .shell-contact-form select,
  .shell-contact-form textarea {
    min-height: 4rem;
    padding: .9rem .95rem;
  }
  .shell-contact-form textarea {
    min-height: 11rem;
  }
  .shell-contact-form-media {
    width: 100%;
  }
}

/* Codex UI fixes */
#header_logo.shell-wordmark {
  mix-blend-mode: normal;
  z-index: 175;
  padding: .7rem .85rem .55rem;
  line-height: .98;
  row-gap: .08rem;
  background: rgba(10,10,10,.74);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.shell-header {
  top: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  gap: .85rem;
  align-items: stretch;
}

.shell-phone,
.menu_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  height: 3.5rem;
  padding-block: 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10,10,10,.12);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}

.shell-phone {
  padding-inline: 1.35rem;
  line-height: 1;
  white-space: nowrap;
}

.menu_button {
  gap: .8rem;
  padding-inline: 1.15rem 1.35rem;
}

body.shell-site .pk-button,
body.shell-site button.pk-button,
body.shell-site .shell-form-submit,
body.shell-site button.shell-form-submit {
  justify-content: center;
  min-height: 3.25rem;
  padding: .85rem 1.4rem;
  font-weight: 800;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

body.shell-site .pk-button .button-text,
body.shell-site button.pk-button .button-text,
body.shell-site .shell-form-submit .button-text,
body.shell-site button.shell-form-submit .button-text {
  width: 100%;
  justify-content: center;
}

body.shell-site .pk-button:hover,
body.shell-site .pk-button:focus,
body.shell-site .pk-button:active,
body.shell-site button.pk-button:hover,
body.shell-site button.pk-button:focus,
body.shell-site button.pk-button:active,
body.shell-site .shell-form-submit:hover,
body.shell-site .shell-form-submit:focus,
body.shell-site .shell-form-submit:active,
body.shell-site button.shell-form-submit:hover,
body.shell-site button.shell-form-submit:focus,
body.shell-site button.shell-form-submit:active {
  background: var(--shell-green);
  color: #fff;
  border-color: var(--shell-green);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(23,61,43,.18);
}

body.shell-site .shell-contact-form .shell-form-submit,
body.shell-site .shell-contact-form button.shell-form-submit {
  min-height: 4.2rem;
  padding: 1rem 1.5rem;
  background: #fff;
  color: #0a0a0a;
  border-color: #0a0a0a;
  transform: none;
  box-shadow: none;
}

body.shell-site .shell-contact-form .shell-form-submit .button-text,
body.shell-site .shell-contact-form button.shell-form-submit .button-text {
  width: auto;
  gap: .7rem;
}

body.shell-site .shell-contact-form .shell-form-submit:hover,
body.shell-site .shell-contact-form .shell-form-submit:focus,
body.shell-site .shell-contact-form .shell-form-submit:active,
body.shell-site .shell-contact-form button.shell-form-submit:hover,
body.shell-site .shell-contact-form button.shell-form-submit:focus,
body.shell-site .shell-contact-form button.shell-form-submit:active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  transform: none;
  box-shadow: none;
}

.menu_button .text {
  height: auto;
  overflow: visible;
}

.menu_button .text span {
  font-weight: 800;
}

.menu_container .menu_column {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu_container .menu_wrapper {
  padding-block: clamp(6rem, 8vh, 8rem) 3rem;
}

.menu_container .menu {
  justify-content: flex-start;
  align-content: start;
  gap: 1rem;
  overflow-y: auto;
  padding-right: .75rem;
}

.menu_container .menu_column .contact {
  padding-block: 2.25rem;
}

.submenu {
  max-height: min(36vh, 24rem);
  overflow: auto;
  padding-top: 1rem;
  padding-right: .35rem;
}

.menu_item {
  padding-block: .15rem;
}

.menu_item.child {
  padding-block: .85rem;
}

.flex_layout.main_hero.shell-main-hero .flex_layout_wrapper {
  min-height: 100svh;
  height: 100svh;
  overflow: clip;
}

.flex_layout.main_hero.shell-main-hero .heading_wrapper {
  display: grid;
  gap: 1rem;
  width: min(64rem, calc(100% - clamp(2rem, 5vw, 5rem)));
  max-width: 100%;
  bottom: clamp(15.5rem, 29vh, 20rem);
  z-index: 12;
  overflow: visible;
}

.flex_layout.main_hero.shell-main-hero .heading_wrapper .heading,
.flex_layout.main_hero.shell-main-hero .heading_wrapper h1 {
  font-size: clamp(3.2rem, 5vw, 6.15rem);
  line-height: .94;
  max-width: min(19ch, 100%);
  margin: 0;
  overflow: visible;
  text-wrap: balance;
}

body.shell-site .heading,
body.shell-site .heading_text,
body.shell-site h1,
body.shell-site h2,
body.shell-site h3 {
  overflow: visible;
}

body.shell-site .heading_text {
  display: block;
  overflow: visible;
  text-wrap: balance;
  padding-inline-end: .12em;
}

.flex_layout.main_hero.shell-main-hero .heading_wrapper p:not(.shell-eyebrow) {
  max-width: min(68ch, calc(100% - 2rem));
  margin-top: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 1.08vw, 1.22rem);
}

.shell-main-hero .heading_wrapper .shell-eyebrow {
  max-width: 36ch;
}

.shell-hero-actions {
  display: none;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}

.shell-hero-call {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}

.shell-main-hero .shell-hero-actions .pk-button {
  color: #fff;
  background: rgba(10,10,10,.36);
  border-color: rgba(255,255,255,.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shell-main-hero .shell-hero-actions .pk-button:hover,
.shell-main-hero .shell-hero-actions .pk-button:focus,
.shell-main-hero .shell-hero-actions .pk-button:active {
  background: #fff !important;
  color: #0a0a0a !important;
  border-color: #fff !important;
}

.shell-hero-call:hover,
.shell-hero-call:focus,
.shell-hero-call:active {
  background: #fff !important;
  color: #0a0a0a !important;
  border-color: #fff !important;
}

body.shell-site:not(.home) .flex_layout.text_large_image .content-wrapper {
  grid-column-end: span 5;
  align-self: start;
  height: auto !important;
}

body.shell-site:not(.home) .flex_layout.text_large_image .content-wrapper.right {
  grid-column-start: 8;
  margin-top: clamp(1.5rem, 2.4vw, 2.75rem);
}

body.shell-site:not(.home) .flex_layout.text_large_image .image {
  grid-column-end: span 7;
  align-self: start;
}

body.shell-site:not(.home) .flex_layout.text_large_image .content {
  max-width: 46rem;
  position: static !important;
  top: auto !important;
  transform: none !important;
  padding-top: 0;
}

body.shell-site.home .flex_layout.text_large_image .content-wrapper.right .content {
  padding-top: clamp(2rem, 5vh, 3.25rem);
}

@media (min-width: 993px) and (max-width: 1280px) {
  body.shell-site:not(.home) .flex_layout.text_large_image .content-wrapper.right {
    margin-top: clamp(4.5rem, 7vw, 5.5rem);
  }
}

.shell-prose,
.shell-contact-form-heading p,
.shell-service-index li p,
.shell-blog-card p:not(.shell-eyebrow),
.faq-item p,
.shell-gallery figcaption {
  text-wrap: pretty;
}

.shell-contact-grid p,
.shell-contact-grid a,
.shell-contact-form-heading p,
.flex_layout.contact_text_large_image .contact_options a {
  overflow-wrap: anywhere;
}

.shell-contact-grid a,
.flex_layout.contact_text_large_image .contact_options a {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.rewritten-content {
  color: currentColor;
}

.shell-main-hero .heading_wrapper p.rewritten-content {
  color: rgba(255,255,255,.88);
}

.flex_layout.main_hero.shell-main-hero .cta {
  z-index: 1;
  min-height: clamp(15rem, 23vh, 16rem);
  height: clamp(15rem, 23vh, 16rem);
  padding: clamp(1.35rem, 2vw, 2rem);
  align-content: end;
  overflow: hidden;
}

.flex_layout.main_hero.shell-main-hero .cta::before {
  inset: 0;
  height: auto;
}

.flex_layout.main_hero.shell-main-hero .cta:not(:last-child)::after {
  top: 0;
  bottom: 0;
  height: auto;
}

.flex_layout.main_hero.shell-main-hero .cta > span {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  font-size: clamp(1.45rem, 1.95vw, 2rem);
  line-height: 1.02;
}

.flex_layout.main_hero.shell-main-hero .cta .subtitle {
  position: relative;
  z-index: 2;
  margin-top: .9rem;
}

.flex_layout.main_hero.shell-main-hero .cta .subtitle p {
  color: rgba(255,255,255,.84);
  font-size: .97rem;
  line-height: 1.45;
}

.shell-project-carousel .project .content_wrapper p.rewritten-content {
  color: rgba(255,255,255,.82);
}

.shell-project-carousel .project h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  line-height: 1.02;
  margin: 0 0 .75rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.shell-carousel-controls,
.shell-carousel-nav {
  display: none !important;
}

.shell-project-carousel .pCarousel,
.shell-project-carousel .project_wrapper,
.shell-project-carousel .next_projects {
  touch-action: pan-y;
  user-select: none;
}

.shell-project-carousel {
  --shell-carousel-meta-gap: clamp(1rem, 1.8vw, 1.5rem);
}

.shell-project-carousel .carousel_meta_column {
  display: grid;
  gap: var(--shell-carousel-meta-gap);
  align-content: start;
  min-width: 0;
}

.shell-project-carousel .carousel_meta_column > * {
  min-width: 0;
}

.shell-project-carousel .carousel_meta_column .heading_wrapper,
.shell-project-carousel .carousel_meta_column .next_projects,
.shell-project-carousel .carousel_meta_column .indicator_container {
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0 !important;
}

.shell-project-carousel .carousel_meta_column .heading_wrapper {
  padding: 0 !important;
  width: 100%;
}

.shell-project-carousel .carousel_meta_column .heading,
.shell-project-carousel .carousel_meta_column .heading_text {
  margin: 0 !important;
  text-align: left !important;
}

.shell-project-carousel .pCarousel {
  cursor: grab;
}

.shell-project-carousel .project_wrapper,
.shell-project-carousel .project,
.shell-project-carousel .project__outer,
.shell-project-carousel .project__inner {
  cursor: inherit;
}

.shell-project-carousel .pCarousel.is-dragging,
.shell-project-carousel .pCarousel.is-dragging * {
  cursor: grabbing !important;
}

@media (min-width: 993px) {
  .flex_layout.project_carousel.shell-project-carousel .flex_layout_wrapper {
    align-items: start;
    grid-template-rows: auto;
  }

  .flex_layout.project_carousel.shell-project-carousel .pCarousel {
    grid-column: 1 / -1 !important;
    grid-row: 1 / 2 !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    height: auto !important;
    min-height: clamp(34rem, 78vh, 54rem) !important;
    overflow: visible !important;
    align-items: stretch !important;
    row-gap: 0 !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .carousel_meta_column {
    grid-column: 1 / span 4 !important;
    grid-row: 1 / 2 !important;
    display: grid !important;
    grid-template-rows: auto auto auto !important;
    align-content: start;
    align-self: start !important;
    gap: var(--shell-carousel-meta-gap) !important;
    padding: 20px !important;
    width: 100%;
    min-width: 0;
  }

  .flex_layout.project_carousel.shell-project-carousel .carousel_meta_column .heading_wrapper {
    align-self: start !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .project_wrapper {
    grid-column: 5 / span 8 !important;
    grid-row: 1 / 2 !important;
    height: 100% !important;
    min-height: clamp(34rem, 78vh, 54rem) !important;
    align-self: stretch !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .next_projects {
    display: block !important;
    width: 100% !important;
    height: clamp(18rem, 46vh, 32rem) !important;
    max-height: none !important;
    margin-top: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    align-self: start !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .next_projects > div {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .next_projects > div + div {
    display: none !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .indicator_container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: clamp(.75rem, 1.25vw, 1rem) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100%;
    align-self: start !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .indicator_container > .pk-button {
    order: 2;
    width: fit-content;
    max-width: 100%;
    margin: 0 !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .indicator {
    order: 1;
    justify-self: auto;
    align-self: flex-start;
    justify-content: flex-start;
    min-width: max-content;
  }
}

@media (min-width: 1600px) {
  .flex_layout.main_hero.shell-main-hero .heading_wrapper {
    width: min(70rem, calc(100% - 5rem));
  }

  .flex_layout.main_hero.shell-main-hero .heading_wrapper .heading,
  .flex_layout.main_hero.shell-main-hero .heading_wrapper h1 {
    font-size: clamp(3.9rem, 4.45vw, 6.55rem);
    max-width: min(20ch, 100%);
  }
}

@media (min-width: 993px) {
  body.shell-site:not(.home) .flex_layout.main_hero.shell-main-hero.shell-simple-hero .flex_layout_wrapper {
    min-height: max(40rem, 100svh);
    height: auto;
    padding-block: clamp(9.5rem, 16vh, 11.5rem) clamp(3rem, 7vh, 5rem);
    align-content: end;
  }

  body.shell-site:not(.home) .flex_layout.main_hero.shell-main-hero.shell-simple-hero .heading_wrapper {
    position: static;
    grid-column: 1 / -1;
    justify-self: stretch;
    align-self: end;
    width: 100%;
    max-width: none;
    padding: 0 var(--grid-margin);
    gap: clamp(.9rem, 1.8vh, 1.25rem);
    bottom: auto;
  }

  body.shell-site:not(.home) .flex_layout.main_hero.shell-main-hero.shell-simple-hero .heading_wrapper .heading,
  body.shell-site:not(.home) .flex_layout.main_hero.shell-main-hero.shell-simple-hero .heading_wrapper h1 {
    max-width: min(16ch, 68vw);
  }

  body.shell-site:not(.home) .flex_layout.main_hero.shell-main-hero.shell-simple-hero .heading_wrapper p:not(.shell-eyebrow) {
    max-width: min(60ch, 62vw);
  }

  body.shell-site:not(.home) .shell-main-hero.shell-simple-hero .heading_wrapper .shell-eyebrow {
    max-width: min(40ch, 62vw);
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  #header_logo.shell-wordmark {
    top: 1rem;
    left: 1rem;
    padding: .6rem .75rem .5rem;
  }

  .shell-header {
    top: 1rem;
    right: 1rem;
  }

  .shell-phone {
    display: none;
  }

  .menu_button {
    padding: .85rem 1rem;
  }

  .menu_container .menu_wrapper {
    padding-block: 5.5rem 2rem !important;
  }

  .menu_container .menu {
    padding-top: 0 !important;
  }

  .flex_layout.main_hero.shell-main-hero .flex_layout_wrapper {
    min-height: 100svh;
    height: auto;
    padding-bottom: 1rem;
  }

  .flex_layout.main_hero.shell-main-hero .heading_wrapper {
    position: static;
    width: 100%;
    padding: 1rem;
    align-self: end;
    gap: 1rem;
    bottom: auto;
  }

  .flex_layout.main_hero.shell-main-hero .heading_wrapper .heading,
  .flex_layout.main_hero.shell-main-hero .heading_wrapper h1 {
    font-size: clamp(2.85rem, 11vw, 4.35rem);
    line-height: .96;
    max-width: 11ch;
  }

  .flex_layout.main_hero.shell-main-hero .heading_wrapper p:not(.shell-eyebrow) {
    font-size: 1rem;
    max-width: 26ch;
  }

  .shell-hero-actions {
    display: flex;
    width: 100%;
  }

  .shell-hero-actions .pk-button {
    flex: 1 1 100%;
  }

  body.shell-site:not(.home) .flex_layout.text_large_image .content-wrapper,
  body.shell-site:not(.home) .flex_layout.text_large_image .content-wrapper.right,
  body.shell-site:not(.home) .flex_layout.text_large_image .image {
    grid-column: 1 / -1 !important;
  }

}

@media (min-width: 769px) and (max-width: 992px) {
  .shell-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shell-blog-card__image {
    min-height: 23rem;
  }

  .menu_button .text {
    display: flex;
  }

  .menu_button {
    padding-inline: 1rem 1.1rem;
    gap: .75rem;
  }
}

@media (max-width: 767px) {
  .shell-blog-grid {
    grid-template-columns: 1fr;
  }

  .shell-blog-card__image {
    min-height: clamp(18rem, 72vw, 25rem);
  }

  .flex_layout.project_carousel.shell-project-carousel .pCarousel {
    grid-column: 1 / -1 !important;
    grid-row: 1 / 2 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    gap: 1rem 0 !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .carousel_meta_column {
    grid-column: 1 / -1 !important;
    grid-row: 1 / 2 !important;
    display: grid !important;
    gap: 1rem !important;
    width: 100% !important;
    padding-inline: var(--grid-margin) !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .project_wrapper {
    grid-column: 1 / -1 !important;
    grid-row: 2 / 3 !important;
    width: 100% !important;
    height: clamp(24rem, 58vh, 34rem) !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .next_projects {
    display: none !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .indicator_container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .75rem !important;
    width: 100% !important;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .flex_layout.project_carousel.shell-project-carousel .indicator_container > .pk-button {
    order: 2;
    width: 100%;
  }

  .flex_layout.project_carousel.shell-project-carousel .indicator {
    order: 1;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  #header_logo.shell-wordmark {
    top: .85rem;
    left: .85rem;
    padding: .52rem .62rem .42rem;
    line-height: .98;
  }

  #header_logo.shell-wordmark span {
    font-size: .96rem;
  }

  #header_logo.shell-wordmark small {
    font-size: .56rem;
  }

  .shell-header {
    top: .85rem;
    right: .85rem;
    gap: .55rem;
  }

  .menu_button {
    min-height: 2.7rem;
    padding: .72rem .78rem;
  }

  .menu_button .text {
    display: none;
  }

  .flex_layout.main_hero.shell-main-hero .heading_wrapper p:not(.shell-eyebrow) {
    max-width: 100%;
  }
}

body.gallery-page .shell-gallery-page-intro .content_wrapper {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

body.gallery-page .shell-gallery-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, .8fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

body.gallery-page .shell-gallery-page-copy {
  max-width: 44rem;
}

body.gallery-page .shell-gallery-page-copy .shell-prose {
  color: var(--shell-muted);
}

body.gallery-page .shell-gallery-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}

body.gallery-page .shell-gallery-page-stats {
  display: grid;
  gap: .9rem;
}

body.gallery-page .shell-gallery-page-stat {
  display: grid;
  gap: .45rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(10, 10, 10, .08);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 20px 48px rgba(10, 24, 23, .08);
}

body.gallery-page .shell-gallery-page-stat strong {
  font-size: 1rem;
  letter-spacing: -.01em;
}

body.gallery-page .shell-gallery-page-stat span {
  color: var(--shell-muted);
  font-size: .96rem;
  line-height: 1.55;
}

body.gallery-page .shell-gallery-page-grid {
  display: block;
  column-count: 3;
  column-gap: clamp(1rem, 1.8vw, 1.4rem);
  margin-top: 0;
}

body.gallery-page .shell-gallery-page-grid figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(1rem, 1.8vw, 1.4rem);
  break-inside: avoid;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

body.gallery-page .shell-gallery-page-grid .shell-gallery-lightbox-trigger {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

body.gallery-page .shell-gallery-page-grid .shell-gallery-lightbox-trigger:focus-visible {
  outline: 2px solid rgba(10, 10, 10, .9);
  outline-offset: 4px;
}

body.gallery-page .shell-gallery-page-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(230, 234, 225, .48), rgba(245, 246, 243, .72));
  border-radius: 0;
  transition: transform .75s ease;
}

body.gallery-page .shell-gallery-page-grid figure:hover img,
body.gallery-page .shell-gallery-page-grid figure:focus-within img {
  transform: scale(1.02);
}

body.gallery-page .shell-gallery-page-grid figcaption {
  display: none;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.shell-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

body.gallery-page .shell-gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: clamp(.9rem, 2vw, 1.35rem);
  border: 0;
  background: rgba(8, 12, 11, .9);
  color: #fff;
  overflow: hidden;
}

body.gallery-page .shell-gallery-lightbox::backdrop {
  background: rgba(8, 12, 11, .9);
}

body.gallery-page .shell-gallery-lightbox[open] {
  display: grid;
  place-items: center;
}

body.gallery-page .shell-gallery-lightbox__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1380px);
  min-height: 100%;
  padding: clamp(4rem, 7vw, 5.5rem) clamp(4rem, 6vw, 5rem);
}

body.gallery-page .shell-gallery-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

body.gallery-page .shell-gallery-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, 100%);
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 26px 72px rgba(0, 0, 0, .34);
}

body.gallery-page .shell-gallery-lightbox__close,
body.gallery-page .shell-gallery-lightbox__nav {
  appearance: none;
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 3.5rem;
  min-height: 3.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
  backdrop-filter: blur(16px);
}

body.gallery-page .shell-gallery-lightbox__close:hover,
body.gallery-page .shell-gallery-lightbox__close:focus-visible,
body.gallery-page .shell-gallery-lightbox__nav:hover,
body.gallery-page .shell-gallery-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .4);
  outline: 0;
}

body.gallery-page .shell-gallery-lightbox__close {
  top: 0;
  right: 0;
  font-size: 1.85rem;
  line-height: 1;
}

body.gallery-page .shell-gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  line-height: 1;
}

body.gallery-page .shell-gallery-lightbox__nav--prev {
  left: 0;
}

body.gallery-page .shell-gallery-lightbox__nav--next {
  right: 0;
}

@media (max-width: 1100px) {
  body.gallery-page .shell-gallery-page-header {
    grid-template-columns: 1fr;
  }

  body.gallery-page .shell-gallery-page-grid {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  body.gallery-page .shell-gallery-page-intro .content_wrapper {
    padding-inline: .75rem;
  }

  body.gallery-page .shell-gallery-page-grid {
    column-count: 1;
  }

  body.gallery-page .shell-gallery-page-grid figure {
    border-radius: 0;
  }

  body.gallery-page .shell-gallery-page-actions .pk-button {
    width: 100%;
  }

  body.gallery-page .shell-gallery-lightbox {
    padding: .75rem;
  }

  body.gallery-page .shell-gallery-lightbox__frame {
    min-height: calc(100vh - 1.5rem);
    padding: 4.1rem .2rem 5rem;
  }

  body.gallery-page .shell-gallery-lightbox__image {
    max-height: calc(100vh - 8rem);
  }

  body.gallery-page .shell-gallery-lightbox__close,
  body.gallery-page .shell-gallery-lightbox__nav {
    min-width: 3.7rem;
    min-height: 3.7rem;
  }

  body.gallery-page .shell-gallery-lightbox__close {
    top: .15rem;
    right: .15rem;
  }

  body.gallery-page .shell-gallery-lightbox__nav {
    top: auto;
    bottom: .15rem;
    transform: none;
  }

  body.gallery-page .shell-gallery-lightbox__nav--prev {
    left: .15rem;
  }

  body.gallery-page .shell-gallery-lightbox__nav--next {
    right: .15rem;
  }
}
