/*
============================================================
DAB SITE SHELL
Ochoa-inspired navy / copper direction
Header + menu + footer only
============================================================
*/


:root {
    --dab-navy: #07192B;
    --dab-navy-light: #0D2941;
    --dab-navy-dark: #04111F;

    --dab-copper: #C76432;
    --dab-copper-dark: #A94F25;

    --dab-cream: #F7F3EC;
    --dab-white: #FFFFFF;

    --dab-gray: #AAB8C4;
    --dab-shell: 1240px;
}


.dab-shell-container {
    width: min(
        var(--dab-shell),
        calc(100% - 52px)
    );

    margin-left: auto;
    margin-right: auto;
}


/*
============================================================
REMOVE OLD CREATIVO SHELL ELEMENTS WE NO LONGER WANT
============================================================
*/

/* Native page-title/search/breadcrumb strip */

#page-title,
.page-title,
.page_title,
.page-title-breadcrumb,
.page_title_breadcrumb,
.bellow_header,
.titlebar,
.title-bar,
.breadcrumb-wrapper,
.breadcrumbs-wrapper {
    display: none !important;
}


/* Native footer content */

.action_bar,
.footer_widget,
.footer-copyright,
.footer_copyright,
.instagram-footer,
.instagram_footer {
    display: none !important;
}


/* Creativo back-to-top */

#gotoTop {
    display: none !important;
}


/*
============================================================
HEADER
============================================================
*/

#dab-site-header {
    position: sticky;

    top: 0;

    z-index: 99999;

    width: 100%;

    background: var(--dab-navy);

    border-bottom:
        1px solid rgba(255,255,255,.09);

    box-shadow:
        0 5px 22px rgba(2,16,29,.14);
}


.admin-bar #dab-site-header {
    top: 32px;
}


.dab-main-header {
    background:
        linear-gradient(
            90deg,
            #061727 0%,
            #081D31 100%
        );
}


.dab-header-inner {
    min-height: 88px;

    display: flex;
    align-items: center;

    gap: 29px;
}


/*
============================================================
LOGO / BRAND
============================================================
*/

.dab-site-brand {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #fff !important;

    text-decoration: none !important;
}


.dab-brand-mark {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border:
        2px solid var(--dab-copper);

    border-radius: 50%;

    color: var(--dab-copper);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: -.02em;
}


.dab-brand-mark::before,
.dab-brand-mark::after {
    content: "";

    position: absolute;

    background: var(--dab-copper);

    opacity: .55;
}


.dab-brand-mark::before {
    width: 1px;
    height: 30px;

    left: 16px;
    top: 9px;
}


.dab-brand-mark::after {
    width: 1px;
    height: 30px;

    right: 16px;
    top: 9px;
}


.dab-brand-mark span {
    position: relative;

    z-index: 2;

    padding: 3px;

    background: var(--dab-navy);
}


.dab-brand-copy {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.dab-brand-copy strong {
    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: -.02em;

    white-space: nowrap;
}


.dab-brand-copy small {
    color: #9CAEBB;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;

    text-transform: uppercase;

    letter-spacing: .15em;
}


/*
============================================================
DESKTOP NAVIGATION
============================================================
*/

.dab-desktop-navigation {
    flex: 1 1 auto;

    min-width: 0;
}


.dab-primary-menu,
.dab-primary-menu ul {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


.dab-primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 20px;
}


.dab-primary-menu > li {
    position: relative;

    margin: 0 !important;
    padding: 0 !important;
}


.dab-primary-menu > li > a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 88px;

    padding: 0 !important;

    color: #ECF1F4 !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.15;

    text-transform: uppercase;

    letter-spacing: .035em;

    text-decoration: none !important;

    white-space: nowrap;
}


.dab-primary-menu
> li.menu-item-has-children
> a::after {

    content: "";

    width: 5px;
    height: 5px;

    margin-left: 7px;
    margin-top: -4px;

    border-right:
        1px solid #8FA3B4;

    border-bottom:
        1px solid #8FA3B4;

    transform: rotate(45deg);
}


.dab-primary-menu > li > a::before {

    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 22px;

    height: 2px;

    background: var(--dab-copper);

    transition:
        right .16s ease;
}


.dab-primary-menu > li:hover > a::before,
.dab-primary-menu > li:focus-within > a::before,
.dab-primary-menu > li.current-menu-item > a::before,
.dab-primary-menu > li.current-menu-ancestor > a::before {
    right: 0;
}


/*
============================================================
DROPDOWN MENUS
============================================================
*/

.dab-primary-menu .sub-menu {

    position: absolute;

    top: calc(100% - 12px);
    left: -18px;

    z-index: 999999;

    width: 290px;

    padding: 7px !important;

    visibility: hidden;
    opacity: 0;

    transform: translateY(7px);

    background: #FFFFFF;

    border:
        1px solid rgba(7,25,43,.12);

    box-shadow:
        0 16px 38px rgba(2,17,30,.22);

    transition:
        opacity .14s ease,
        visibility .14s ease,
        transform .14s ease;
}


.dab-primary-menu li:hover > .sub-menu,
.dab-primary-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);
}


.dab-primary-menu .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
}


.dab-primary-menu .sub-menu a {
    display: block;

    padding: 11px 13px !important;

    color: #173047 !important;

    border-left:
        2px solid transparent;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35;

    text-transform: none;

    text-decoration: none !important;
}


.dab-primary-menu .sub-menu a::after,
.dab-primary-menu .sub-menu a::before {
    display: none !important;
}


.dab-primary-menu .sub-menu a:hover,
.dab-primary-menu .sub-menu a:focus,
.dab-primary-menu
.sub-menu
.current-menu-item
> a {

    background: #F5F1EB;

    border-left-color:
        var(--dab-copper);

    color: var(--dab-navy) !important;
}


/*
============================================================
HEADER CONTACT / CTA
============================================================
*/

.dab-header-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 16px;
}


.dab-header-phone {
    display: flex;
    flex-direction: column;

    gap: 2px;

    color: #FFFFFF !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.05;

    text-decoration: none !important;

    white-space: nowrap;
}


.dab-header-phone span {
    color: #7F95A6;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .11em;
}


.dab-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 18px !important;

    background: var(--dab-copper);

    border:
        1px solid var(--dab-copper);

    color: #FFFFFF !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .045em;

    text-decoration: none !important;

    white-space: nowrap;
}


.dab-header-button:hover {
    background: var(--dab-copper-dark);

    border-color: var(--dab-copper-dark);

    color: #FFFFFF !important;
}


/*
============================================================
MOBILE NAVIGATION
============================================================
*/

.dab-mobile-navigation {
    display: none;

    margin-left: auto;
}


.dab-mobile-navigation > summary {

    width: 44px;
    height: 44px;

    padding: 10px;

    cursor: pointer;

    list-style: none;

    border:
        1px solid rgba(255,255,255,.28);
}


.dab-mobile-navigation > summary::-webkit-details-marker {
    display: none;
}


.dab-mobile-navigation > summary i {
    display: block;

    width: 21px;
    height: 2px;

    margin: 4px auto;

    background: #FFFFFF;
}


.dab-mobile-panel {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 999999;

    max-height:
        calc(100vh - 78px);

    overflow-y: auto;

    padding: 20px 25px 26px;

    background: #061727;

    border-top:
        1px solid rgba(255,255,255,.10);

    box-shadow:
        0 15px 30px rgba(0,0,0,.24);
}


.dab-mobile-menu-list,
.dab-mobile-menu-list ul {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


.dab-mobile-menu-list > li {
    border-bottom:
        1px solid rgba(255,255,255,.10);
}


.dab-mobile-menu-list a {
    display: block;

    padding: 13px 0 !important;

    color: #FFFFFF !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    text-decoration: none !important;
}


.dab-mobile-menu-list .sub-menu {
    padding:
        0 0 10px 15px !important;
}


.dab-mobile-menu-list .sub-menu a {
    padding: 8px 0 !important;

    color: #A8BAC7 !important;

    font-size: 12px !important;
    font-weight: 600 !important;
}


.dab-mobile-evaluation {
    display: block;

    margin-top: 20px;
    padding: 14px 16px !important;

    background: var(--dab-copper);

    color: #FFFFFF !important;

    font-size: 12px;
    font-weight: 800;

    text-align: center;
    text-transform: uppercase;

    letter-spacing: .045em;

    text-decoration: none !important;
}


.dab-mobile-phone {
    display: block;

    padding: 14px;

    color: #FFFFFF !important;

    font-size: 14px;
    font-weight: 700;

    text-align: center;

    text-decoration: none !important;
}


/*
============================================================
FOOTER
============================================================
*/

#dab-site-footer {
    width: 100%;

    position: relative;

    z-index: 2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


.dab-footer-accent {
    width: 100%;
    height: 5px;

    background: var(--dab-copper);
}


.dab-footer-main {
    padding: 58px 0 52px;

    background: var(--dab-navy);
}


.dab-footer-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        .72fr
        .82fr
        1.08fr;

    gap: 48px;
}


.dab-footer-brand-link {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #FFFFFF !important;

    text-decoration: none !important;
}


.dab-footer-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border:
        2px solid var(--dab-copper);

    border-radius: 50%;

    color: var(--dab-copper);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;
    font-weight: 700;
}


.dab-footer-brand-copy {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.dab-footer-brand-copy strong {
    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 600;
}


.dab-footer-brand-copy small {
    color: #8FA3B2;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .13em;
}


.dab-footer-brand p,
.dab-footer-contact p {
    margin: 0;

    color: #9DAFBC;

    font-size: 13px;
    line-height: 1.65;
}


.dab-footer-brand p {
    max-width: 340px;
}


.dab-footer-links h2 {
    margin: 2px 0 17px;

    color: #FFFFFF !important;

    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;

    text-transform: uppercase;

    letter-spacing: .075em;
}


.dab-footer-links a {
    display: block;

    margin-bottom: 10px;

    color: #AFBEC9 !important;

    font-size: 13px;
    line-height: 1.4;

    text-decoration: none !important;
}


.dab-footer-links a:hover {
    color: #FFFFFF !important;
}


.dab-footer-kicker {
    display: block;

    margin-bottom: 8px;

    color: var(--dab-copper);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.dab-footer-contact h2 {
    margin: 0 0 12px;

    color: #FFFFFF !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;

    letter-spacing: -.015em;
}


.dab-footer-button {
    display: inline-flex;

    margin-top: 19px;
    padding: 12px 16px !important;

    background: var(--dab-copper);

    color: #FFFFFF !important;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .04em;

    text-decoration: none !important;
}


.dab-footer-button:hover {
    background: var(--dab-copper-dark);

    color: #FFFFFF !important;
}


.dab-footer-phone {
    display: block;

    margin-top: 14px;

    color: #FFFFFF !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;
}


.dab-footer-bottom {
    padding: 18px 0;

    background: var(--dab-navy-dark);

    border-top:
        1px solid rgba(255,255,255,.07);
}


.dab-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


.dab-footer-bottom p {
    max-width: 790px;

    margin: 0;

    color: #788E9F;

    font-size: 10px;
    line-height: 1.55;
}


.dab-footer-bottom span {
    flex: 0 0 auto;

    color: #8195A5;

    font-size: 10px;

    white-space: nowrap;
}


/*
============================================================
RESPONSIVE
============================================================
*/

@media (max-width: 1200px) {

    .dab-primary-menu {
        gap: 14px;
    }

    .dab-primary-menu > li > a {
        font-size: 10px !important;
    }

    .dab-header-phone {
        display: none;
    }
}


@media (max-width: 1040px) {

    .dab-desktop-navigation,
    .dab-header-actions {
        display: none;
    }

    .dab-mobile-navigation {
        display: block;
    }

    .dab-header-inner {
        min-height: 75px;
    }

    .dab-footer-grid {
        grid-template-columns:
            1fr
            1fr;

        gap: 38px;
    }
}


@media (max-width: 782px) {

    .admin-bar #dab-site-header {
        top: 46px;
    }
}


@media (max-width: 680px) {

    .dab-shell-container {
        width: calc(100% - 34px);
    }

    .dab-brand-mark {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .dab-brand-copy strong {
        font-size: 19px;
    }

    .dab-brand-copy small {
        font-size: 8px;
    }

    .dab-footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .dab-footer-bottom-inner {
        display: block;
    }

    .dab-footer-bottom span {
        display: block;

        margin-top: 13px;

        white-space: normal;
    }
}


/*
============================================================
DAB HEADER REFINEMENT — 2026
Overrides only.
============================================================
*/


/*
------------------------------------------------------------
UTILITY BAR
------------------------------------------------------------
*/

#dab-site-header .dab-header-top {
    min-height: 29px;

    display: flex;
    align-items: center;

    background: #04111F;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}


#dab-site-header .dab-header-top-inner {
    min-height: 29px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


#dab-site-header .dab-header-top-label {
    color: #8499A9;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;

    letter-spacing: .08em;
}


#dab-site-header .dab-header-top-contact {
    display: flex;
    align-items: center;

    gap: 12px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


#dab-site-header .dab-header-top-contact span {
    color: #728899;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .06em;
}


#dab-site-header .dab-header-top-contact a {
    color: #FFFFFF !important;

    font-size: 11px;
    font-weight: 750;

    text-decoration: none !important;
}


/*
------------------------------------------------------------
MAIN HEADER
------------------------------------------------------------
*/

#dab-site-header .dab-main-header {
    background:
        linear-gradient(
            90deg,
            #07192B 0%,
            #0A2238 100%
        );
}


#dab-site-header .dab-header-inner {
    min-height: 78px;

    display: grid;

    grid-template-columns:
        235px
        minmax(0, 1fr)
        auto;

    align-items: center;

    column-gap: 24px;
}


/*
------------------------------------------------------------
BRAND
------------------------------------------------------------
*/

#dab-site-header .dab-site-brand {
    width: 235px;

    min-width: 235px;

    display: flex;
    align-items: center;

    gap: 10px;

    overflow: hidden;
}


#dab-site-header .dab-brand-mark {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-width: 2px;
}


#dab-site-header .dab-brand-mark::before,
#dab-site-header .dab-brand-mark::after {
    height: 26px;

    top: 8px;
}


#dab-site-header .dab-brand-mark::before {
    left: 14px;
}


#dab-site-header .dab-brand-mark::after {
    right: 14px;
}


#dab-site-header .dab-brand-mark span {
    font-size: 12px;
}


#dab-site-header .dab-brand-copy {
    min-width: 0;
}


#dab-site-header .dab-brand-copy strong {
    display: block;

    overflow: hidden;

    color: #FFFFFF;

    font-size: 19px;
    line-height: 1.05;

    text-overflow: ellipsis;

    white-space: nowrap;
}


#dab-site-header .dab-brand-copy small {
    display: block;

    margin-top: 3px;

    color: #96A9B7;

    font-size: 8px;

    letter-spacing: .13em;

    white-space: nowrap;
}


/*
------------------------------------------------------------
MENU
------------------------------------------------------------
*/

#dab-site-header .dab-desktop-navigation {
    width: 100%;

    min-width: 0;
}


#dab-site-header .dab-primary-menu {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: clamp(11px, 1.1vw, 18px);
}


#dab-site-header .dab-primary-menu > li {
    flex: 0 0 auto;
}


#dab-site-header .dab-primary-menu > li > a {
    min-height: 78px;

    font-size: 10.5px !important;

    letter-spacing: .028em;
}


#dab-site-header
.dab-primary-menu
> li
> a::before {
    bottom: 18px;
}


/*
Slightly tighter dropdown indicator
*/

#dab-site-header
.dab-primary-menu
> li.menu-item-has-children
> a::after {
    width: 4px;
    height: 4px;

    margin-left: 6px;
}


/*
------------------------------------------------------------
CASE EVALUATION CTA
------------------------------------------------------------
*/

#dab-site-header .dab-header-button {
    min-width: 137px;
    min-height: 44px;

    padding: 0 15px !important;

    background: #C76432;

    border-color: #C76432;

    font-size: 10.5px;
    font-weight: 800;

    letter-spacing: .035em;
}


#dab-site-header .dab-header-button:hover {
    background: #A94F25;

    border-color: #A94F25;
}


/*
------------------------------------------------------------
DROPDOWN
------------------------------------------------------------
*/

#dab-site-header .dab-primary-menu .sub-menu {
    top: calc(100% - 9px);

    width: 275px;

    border-top:
        3px solid #C76432;
}


#dab-site-header .dab-primary-menu .sub-menu a {
    padding: 11px 14px !important;

    font-size: 12.5px !important;
}


/*
------------------------------------------------------------
RESPONSIVE BREAKPOINTS
------------------------------------------------------------
*/

@media (max-width: 1210px) {

    #dab-site-header .dab-header-inner {
        grid-template-columns:
            210px
            minmax(0, 1fr)
            auto;

        column-gap: 17px;
    }

    #dab-site-header .dab-site-brand {
        width: 210px;
        min-width: 210px;
    }

    #dab-site-header .dab-brand-copy strong {
        font-size: 17px;
    }

    #dab-site-header .dab-primary-menu {
        gap: 9px;
    }

    #dab-site-header .dab-primary-menu > li > a {
        font-size: 9.5px !important;
    }

    #dab-site-header .dab-header-button {
        min-width: 125px;

        padding-left: 11px !important;
        padding-right: 11px !important;

        font-size: 9.5px;
    }

}


@media (max-width: 1080px) {

    #dab-site-header .dab-header-inner {
        display: flex;

        min-height: 72px;
    }

    #dab-site-header .dab-site-brand {
        width: auto;
        min-width: 0;
    }

    #dab-site-header .dab-desktop-navigation,
    #dab-site-header .dab-header-button {
        display: none !important;
    }

    #dab-site-header .dab-mobile-navigation {
        display: block !important;

        margin-left: auto;
    }

}


@media (max-width: 680px) {

    #dab-site-header .dab-header-top-label {
        display: none;
    }

    #dab-site-header .dab-header-top-inner {
        justify-content: flex-end;
    }

    #dab-site-header .dab-header-top-contact span {
        display: none;
    }

    #dab-site-header .dab-brand-copy strong {
        font-size: 18px;
    }

}


/*
============================================================
DAB HEADER BRAND WIDTH FIX
============================================================
*/

@media (min-width: 1081px) {

    #dab-site-header .dab-header-inner {
        grid-template-columns:
            280px
            minmax(0, 1fr)
            128px;

        column-gap: 18px;
    }


    #dab-site-header .dab-site-brand {
        width: 280px;
        min-width: 280px;

        overflow: visible;
    }


    #dab-site-header .dab-brand-copy {
        min-width: 215px;

        overflow: visible;
    }


    #dab-site-header .dab-brand-copy strong {
        overflow: visible;

        font-size: 19px;

        text-overflow: clip;

        white-space: nowrap;
    }


    #dab-site-header .dab-brand-copy small {
        overflow: visible;

        font-size: 7.5px;

        text-overflow: clip;

        white-space: nowrap;
    }


    #dab-site-header .dab-primary-menu {
        gap: 11px;
    }


    #dab-site-header .dab-primary-menu > li > a {
        font-size: 10px !important;

        letter-spacing: .02em;
    }


    #dab-site-header .dab-header-button {
        min-width: 128px;

        padding-left: 12px !important;
        padding-right: 12px !important;

        font-size: 9.75px;
    }

}


@media (min-width: 1081px) and (max-width: 1160px) {

    #dab-site-header .dab-header-inner {
        grid-template-columns:
            260px
            minmax(0, 1fr)
            120px;

        column-gap: 14px;
    }


    #dab-site-header .dab-site-brand {
        width: 260px;
        min-width: 260px;
    }


    #dab-site-header .dab-brand-copy strong {
        font-size: 17.5px;
    }


    #dab-site-header .dab-primary-menu {
        gap: 8px;
    }


    #dab-site-header .dab-primary-menu > li > a {
        font-size: 9px !important;
    }


    #dab-site-header .dab-header-button {
        min-width: 120px;

        font-size: 9px;
    }

}
