/* clip prevents horizontal spill without creating a sticky-breaking scroll container. */
html,body{overflow-x:clip}

.site-header{
    position:-webkit-sticky;
    position:sticky;
    top:0;
    z-index:100;
    isolation:isolate;
    box-shadow:0 3px 14px rgba(50,31,18,.08);
}

.nav-cta{
    background:#c45a0c;
    border-color:#c45a0c;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:background-color .2s ease,border-color .2s ease;
}
.nav-cta:hover{
    background:#a94708;
    border-color:#a94708;
    color:#fff;
}
