
@font-face {font-family: "B";src: url("../fonts/Gordita-Bold.woff2") format("woff2")}
@font-face {font-family: "M";src: url("../fonts/Gordita-Medium.woff2") format("woff2")}
@font-face {font-family: "R";src: url("../fonts/Gordita-Regular.woff2") format("woff2")}
@font-face {font-family: "BB";src: url("../fonts/Gordita-Black.woff2") format("woff2")}


html{ scroll-behavior: smooth; }
*{ box-sizing: border-box; }
:root{
    --text-main: #ffffff;
    --text-soft: #d1c6ef;
    --accent-1: #c86fff;
    --accent-2: #2ba7ff;
    --accent-3: #fe881b;
    --bg-dark: #000000;
}

body{
    padding:0px;
    margin:0px;
    font-family: "R" !important;
    color: #bdaee7;
    background: #120d1f;
    transition: background-color .45s ease, color .35s ease;
}
body.menu_open{ overflow: hidden; }
a, button, li, h1, h2, h3, p, img{
    transition: all .3s ease;
}

.site_header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1150;
    padding: 25px 0; 
}
.header_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site_logo img{
    width: 220px;
    height: auto;
    display: block;
}
.header_nav{
    display: flex;
    align-items: center;
    gap: 26px;
}
.header_nav a{
    text-decoration: none;
    color: #fff;
    font-family: "M";
    font-size: 14px;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.header_nav a:hover{
    color: var(--accent-1);
    text-shadow: 0 0 10px rgba(200,111,255,.45);
}

.menu_toggle{
    position: fixed;
    top: 18px;
    right: 26px;
    z-index: 1200;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.menu_toggle span{
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
}
.menu_toggle:hover{
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 0 1px rgba(200,111,255,.55), 0 10px 28px rgba(10,10,22,.6);
}
.menu_toggle:hover span{
    background: #e6d8ff;
}

.menu_overlay{
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: #000;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease;
}
.menu_overlay.is_open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu_close{
    position: absolute;
    top: 20px;
    right: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
}
.menu_nav{
    width: 100%;
    max-width: 600px;
    margin-left: 70px;
}
.menu_nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu_nav ul li{
    margin: 10px 0;
}
.menu_nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 58px;
    letter-spacing: 1px;
    line-height: 1.05;
    font-family: "M";
}
.menu_nav ul li a.active{
    color: #b68395;
}
.menu_nav ul li a:hover{
    color: #f5f0ff;
    text-shadow: 0 0 18px rgba(200,111,255,.5);
    transform: translateX(7px);
}
.menu_nav .has_dropdown{
    margin-bottom: 0;
}
.services_toggle{
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 58px;
    letter-spacing: 1px;
    line-height: 1.05;
    font-family: "M";
    padding: 0;
    cursor: pointer;
}
.services_arrow{
    font-size: 20px;
    vertical-align: middle;
    margin-left: 8px;
}
.services_dropdown{
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    margin: 6px 0 0 8px !important;
}
.services_dropdown.is_open{
    max-height: 320px;
}
.services_dropdown li{
    margin: 6px 0 !important;
}
.services_dropdown li a{
    font-size: 24px !important;
    font-family: "R";
    color: #d3d3d3;
}
.services_dropdown li a:hover{
    color: #fff;
    transform: translateX(6px);
    text-shadow: 0 0 10px rgba(43,167,255,.45);
}
.services_dropdown li a.is_current{
    color: #b68395 !important;
    font-family: "M";
}

.hero_section {
    background-color: gray;
    margin-bottom: 0px;
    padding: 0px;
    position: sticky;
    top: 0px;
    height: 100vh;
    display: flex;
  justify-content: center;
  align-items: center;
  position: revert; overflow: hidden;
  transition: filter .45s ease, transform .45s ease;
} 
.hero_section video{ position:absolute; z-index:-1; }
.hero_section h1{
    font-family: "B";
    color:#fff;
    letter-spacing: .2px;
}
.hero_section ul { padding:0px; margin:0px 0px 30px 0px; }
.hero_section ul li{
    font-family: "R";
    color:#fff;
    list-style: none;
    opacity: .95;
}
.hero_section a{ margin-top:30px; }
.hero_section a img{
    width:50px;
    border-radius:90px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.25), 0 10px 24px rgba(0,0,0,.4);
}
.hero_section a:hover img{
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 0 0 2px rgba(200,111,255,.75), 0 14px 34px rgba(12,12,32,.55);
}

.hero_section._1 { background: #000;
    position: sticky;
    top: 0px;
}
.hero_section._2 {background: #000;
    position: sticky;
    top: 0px;
}
.hero_section._3 {background: #000;
    position: sticky;
    top: 0px;
}
.hero_section._4 {background: #000;
    position: sticky;
    top: 0px;
}
.hero_section._5 {background: #000;
    position: sticky;
    top: 0px;
}
.hero_section._6 {background: #000;
    position: sticky;
    top: 0px;
}

.hero_section .video_overlay{ position:absolute;  width: 100%; height: 100%; background: rgba(0, 0, 0, 0.63); z-index: 1;}
.hero_section .container{ position:relative; z-index:111; }

.hero_section_main video{ z-index:11; }

.site_footer{
    background: #000;
    padding: 64px 0 18px;
    border-top: 0;position: relative;
    z-index: 1000;
}
.footer_top{
    display: grid;
    grid-template-columns: 1.35fr .95fr auto;
    gap: 24px;
    align-items: start;
}
.footer_brand img{
    width: 245px;
    margin-bottom: 120px;
}
.footer_address{
    margin: 0 !important;
    color: #fff !important;
    font-size: 15px;
    line-height: 25px; 
    max-width: 540px;
    letter-spacing: .2px;
}
.footer_menu{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}
.footer_menu a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: .7px;
    line-height: 1.1;
    font-family: "R";
}
.footer_menu a:hover{
    color: #d8d8d8;
}
.footer_arrow{
    font-size: 15px;
    position: relative;
    top: -1px;
}
.footer_social{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    padding-top: 8px;
}
.footer_social a{
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
}
.footer_social a:hover{
    transform: translateY(-1px);
    color: #dcdcdc;
}
.footer_bottom{
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1.35fr .95fr auto;
    align-items: center;
    gap: 24px;
}
.privacy_link{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.privacy_link:hover{
    color: #d8d8d8;
}
.footer_bottom p{
    margin: 0;
    color: #fff;
    font-size: 14px;
    text-align: right;
    white-space: nowrap;
}

/* Clients Page */
.clients_page{
    background: #fff;
    min-height: 70vh;
    padding-top: 118px; /* space for fixed header */
    padding-bottom: 60px;
}
.clients_section{
    padding: 30px 0 0;
}
.clients_intro{
    padding: 0 10px;
    margin-bottom: 34px;
}
.clients_kicker{
    display: inline-block;
    color: #000;
    font-size: 18px;
    letter-spacing: .4px;
    font-family: "M";
    margin-bottom: 10px;
}
.clients_title{
    margin: 0;
    color: #000;
    font-size: 36px;
    letter-spacing: .6px;
    font-family: "M";
}
.clients_logo_grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
    padding: 0 10px;
}
.client_logo_item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}
.client_logo_item img{
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    opacity: .95;
    transform: translateY(0);
}
.client_logo_item:hover img{
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 767px){
    .site_header{
        padding: 25px 0;
    }
    .site_logo img{
        width: 165px;
    }
    .header_nav{
        display: none;
    }
    .menu_toggle{
        top: 14px;
        right: 14px;
    }
    .menu_nav{
        margin-left: 28px;
        max-width: calc(100% - 56px);
    }
    .menu_nav ul li a{
        font-size: 40px;
    }
    .services_toggle{
        font-size: 40px;
    }
    .services_dropdown li a{
        font-size: 20px !important;
    }
    .site_footer{
        padding-top: 38px;
    }
    .footer_top{
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer_brand img{
        width: 180px;
        margin-bottom: 20px;
    }
    .footer_address{
        font-size: 15px;
        line-height: 1.6;
    }
    .footer_menu{
        gap: 12px;
    }
    .footer_menu a{
        font-size: 20px;
    }
    .footer_social{
        justify-content: flex-start;
        gap: 12px;
    }
    .footer_social a{
        font-size: 18px;
    }
    .footer_bottom{
        margin-top: 28px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .privacy_link{
        font-size: 16px;
    }
    .footer_bottom p{
        font-size: 14px;
        text-align: left;
        white-space: normal;
    }

    .clients_page{
        padding-top: 104px;
    }
    .clients_title{
        font-size: 22px;
    }
    .clients_kicker{
        font-size: 14px;
        margin-bottom: 6px;
    }
    .clients_logo_grid{
        gap: 16px;
    }
    .client_logo_item img{
        max-height: 55px;
        max-width: 170px;
    }
}

/* About Us Page */
.about_page{
    background: #fff;
    min-height: 70vh;
    padding-top: 118px; /* space for fixed header */
    padding-bottom: 60px;
}
.about_section{
    padding: 30px 0 0;
}
.about_heading{
    padding: 0 10px;
    margin-bottom: 22px;
}
.about_heading h1{
    margin: 0;
    color: #000;
    font-family: "M";
    letter-spacing: .6px;
    font-size: 38px;
}
.about_content{
    padding: 0 10px;
    max-width: 920px;
    margin: 0 auto;
}
.about_content p{
    color: #000;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 16px 0;
}
.about_content p:last-child{
    margin-bottom: 0;
}

@media (max-width: 767px){
    .about_page{
        padding-top: 104px;
    }
    .about_heading h1{
        font-size: 26px;
    }
    .about_content p{
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Premium hover + color states for card areas on other sections */
.where_we_fit_box ul li{
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 8px 24px rgba(9,8,18,.35);
}
.where_we_fit_box ul li:hover{
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(200,111,255,.45), 0 18px 38px rgba(15,14,34,.55);
    border-bottom-color: var(--accent-1);
}
.list_text a:hover{
    filter: brightness(1.08) saturate(1.08);
    transform: translateY(-2px);
}
.aboutus img{ width:100%; border-radius:30px; margin-bottom:50px; }

/* Service inner pages */
.service_hero{
    position: relative;
    height: 52vh;
    min-height: 300px;
    max-height: 620px;
    overflow: hidden;
    background: #000;
}
.service_hero .video_overlay{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}
.service_hero video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.service_page{
    background: #fff;
    padding-bottom: 60px;
}
.service_body{
    padding: 40px 10px 0;
    max-width: 920px;
    margin: 0 auto;
}
.service_body h1{
    margin: 0 0 18px;
    color: #000;
    font-family: "M";
    font-size: 38px;
    letter-spacing: .4px;
}
.service_lede{
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.service_lede li{
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 10px;
    padding-left: 22px;
    position: relative;
    opacity: .92;
}
.service_lede li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
}
.service_content p{
    color: #000;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 16px;
}
.service_content p:last-child{
    margin-bottom: 0;
}

/* 3D Walkthroughs — Wix portfolio template (scoped) */
body.page_portfolio_walkthroughs{
    background: #fff;
    color: #111;
}
body.page_portfolio_walkthroughs .site_header{
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17,17,17,.06);
}
body.page_portfolio_walkthroughs .menu_toggle{
    background: rgba(17,17,17,.06);
    box-shadow: 0 0 0 1px rgba(17,17,17,.08), 0 6px 20px rgba(0,0,0,.08);
}
body.page_portfolio_walkthroughs .menu_toggle span{
    background: #111;
}
.wix_portfolio_shell{
    background: #fff;
    padding: clamp(88px, 14vw, 120px) 0 clamp(48px, 8vw, 96px);
    min-height: 60vh;
}
.wix_portfolio_frame{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 48px);
}
.wix_portfolio_emptystate{
    box-sizing: border-box;
    border: 1.5px dashed rgba(17,17,17,.22);
    border-radius: 2px;
    padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 36px);
    margin-bottom: clamp(32px, 5vw, 56px);
    text-align: center;
    background: #fafafa;
}
.wix_portfolio_emptystate_heading{
    margin: 0 0 12px;
    font-family: "M";
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: .02em;
    color: #111;
}
.wix_portfolio_emptystate_copy{
    margin: 0 auto;
    max-width: 44em;
    font-family: "R";
    font-size: clamp(.9rem, 1.4vw, 1rem);
    line-height: 1.65;
    color: rgba(17,17,17,.68);
}
.wix_portfolio_title_block{
    margin-bottom: 6px;
}
.wix_portfolio_title{
    margin: 0;
    font-family: "M";
    font-size: clamp(2.25rem, 6.2vw, 3.75rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: #111;
}
.wix_portfolio_hash{
    color: rgba(17,17,17,.35);
    font-weight: 500;
    margin-right: .12em;
}
.wix_portfolio_project_now{
    margin: clamp(12px, 2vw, 20px) 0 clamp(18px, 3vw, 28px);
    font-family: "R";
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.45;
    color: rgba(17,17,17,.72);
    min-height: 1.45em;
}
.video_grid_intro{
    max-width: 40em;
}
.video_grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 28px);
    margin-bottom: clamp(8px, 2vw, 16px);
}
.video_grid_cell{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}
.video_grid_cell:focus-visible{
    outline: 2px solid #111;
    outline-offset: 4px;
}
.video_grid_thumb_wrap{
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a0a;
    border-radius: 2px;
}
.video_grid_preview{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.video_grid_cell:hover .video_grid_preview,
.video_grid_cell:focus-visible .video_grid_preview{
    transform: scale(1.03);
}
.video_grid_play_ico{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.28);
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 2rem);
    pointer-events: none;
    transition: background-color .25s ease;
}
.video_grid_cell:hover .video_grid_play_ico,
.video_grid_cell:focus-visible .video_grid_play_ico{
    background: rgba(0,0,0,.42);
}
.video_grid_play_ico i{
    width: clamp(48px, 10vw, 64px);
    height: clamp(48px, 10vw, 64px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    padding-left: 4px;
}
.video_grid_label{
    display: block;
    margin-top: 10px;
    font-family: "M";
    font-size: clamp(.9rem, 1.35vw, 1rem);
    line-height: 1.35;
    color: #111;
}

body.video_lightbox_open{
    overflow: hidden;
}
.video_lightbox{
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 4vw, 24px);
}
.video_lightbox[hidden]{
    display: none !important;
}
.video_lightbox_backdrop{
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0,0,0,.9);
    cursor: pointer;
}
.video_lightbox_dialog{
    position: relative;
    z-index: 1;
    width: min(1100px, 96vw);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.video_lightbox_inner{
    position: relative;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.video_lightbox_inner .video_lightbox_close{
    position: absolute;
    top: 12px;
    right: 12px;
}
.video_lightbox_video{
    display: block;
    width: 100%;
    max-height: min(78vh, 720px);
    background: #000;
}
.video_lightbox_title{
    margin: 0;
    padding: 14px 16px;
    font-family: "M";
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: #fff;
    background: #0a0a0a;
    line-height: 1.4;
}
.video_lightbox_close{
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
}
.video_lightbox_close:hover{
    background: rgba(255,255,255,.22);
}
.video_lightbox_arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, transform .2s ease;
}
.video_lightbox_arrow:hover{
    background: rgba(255,255,255,.26);
}
.video_lightbox_prev{
    left: clamp(-12px, -2vw, -56px);
}
.video_lightbox_next{
    right: clamp(-12px, -2vw, -56px);
}

@media (max-width: 900px){
    .video_lightbox_close{
        right: 16px;
        top: -52px;
    }
    .video_lightbox_arrow{
        top: auto;
        bottom: -58px;
        transform: none;
    }
    .video_lightbox_prev{
        left: calc(50% - 52px);
    }
    .video_lightbox_next{
        right: calc(50% - 52px);
        left: auto;
    }
    .video_lightbox_dialog{
        margin-bottom: 56px;
    }
}

@media (max-width: 767px){
    .wix_portfolio_shell{
        padding-top: 80px;
    }
    .video_grid{
        gap: 12px;
    }
    .service_hero{
        height: 38vh;
        min-height: 220px;
    }
    .service_body{
        padding-top: 28px;
    }
    .service_body h1{
        font-size: 26px;
    }
    .service_lede li,
    .service_content p{
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Contact page (Wix-style) */
body.page_contact{
    background: #fff;
    color: #111;
}
body.page_contact .site_header{
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17,17,17,.06);
}
body.page_contact .menu_toggle{
    background: rgba(17,17,17,.06);
    box-shadow: 0 0 0 1px rgba(17,17,17,.08), 0 6px 20px rgba(0,0,0,.08);
}
body.page_contact .menu_toggle span{
    background: #111;
}
.contact_page{
    padding: clamp(100px, 14vw, 120px) 0 clamp(48px, 8vw, 80px);
    min-height: 55vh;
    background: #fff;
}
.contact_inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
}
.contact_layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}
.contact_heading{
    margin: 0 0 clamp(20px, 3vw, 28px);
    font-family: "M";
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: .02em;
    color: #111;
}
.contact_form_note{
    margin: 0 0 16px;
    padding: 12px 14px;
    background: rgba(17,17,17,.04);
    border-radius: 6px;
    font-size: 15px;
    color: #111;
}
.contact_form{
    position: relative;
    max-width: 520px;
}
.contact_honeypot{
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    opacity: 0;
    pointer-events: none;
}
.contact_field{
    margin-bottom: clamp(18px, 3vw, 22px);
}
.contact_label{
    display: block;
    margin-bottom: 6px;
    font-family: "R";
    font-size: 15px;
    color: #111;
}
.contact_required{
    color: #c00;
    margin-left: 2px;
}
.contact_input{
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(17,17,17,.25);
    border-radius: 0;
    padding: 12px 0;
    font-family: "R";
    font-size: 16px;
    color: #111;
    background: transparent;
    transition: border-color .2s ease;
}
.contact_input:hover,
.contact_input:focus{
    outline: none;
    border-bottom-color: #111;
}
.contact_textarea{
    resize: vertical;
    min-height: 120px;
}
.contact_submit{
    margin-top: 8px;
    padding: 14px 36px;
    min-width: 140px;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-family: "M";
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease, opacity .2s ease;
}
.contact_submit:hover{
    background: #333;
}
.contact_map_heading{
    margin: 0 0 10px;
    font-family: "M";
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 500;
    color: #111;
}
.contact_map_address{
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(17,17,17,.75);
    max-width: 36em;
}
.contact_map_wrap{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 420px;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,.08);
}
.contact_map_iframe{
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px){
    .contact_layout{
        grid-template-columns: 1fr;
    }
    .contact_form{
        max-width: none;
    }
    .contact_map_wrap{
        max-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *, *::before, *::after{
        transition: none !important;
        animation: none !important;
    }
}

@media only screen and (min-width: 200px) and (max-width: 600px) {
    .hero_section { position: sticky; }
    .hero_section video { 
    width: auto;
    height: 100%;
}
}