@font-face {
    font-family: 'The Blendinroom';
    src: url('../font/THE%20BLENDINROOM.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --nav-bg: #FED1C1;
    --maroon: #591829;
    --color-bg: #5F2029;
    --custom-yellow: #F9C89B;
    --custom-purple: #A46374;
    --custom-golden: #FED4BA;
    --custom-pink: #F6CDC5;
}

.top-left-branding {
    position: fixed;
    top: 18px;
    left: 28px;
    z-index: 1100
}

.top-left-branding img {
    width: 100px;
    height: auto
}

.floating-nav {
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 1100;
    color: var(--maroon)
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 12px 30px;
    border-radius: 999px;
    background: var(--nav-bg)
}

.nav-links,
.nav-icons {
    display: flex;
    align-items: center;
    list-style: none
}

.nav-links {
    gap: 30px;
    margin: 0;
    color: var(--maroon);
    padding: 0
}

.nav-links>li>a {
    font-size: 14px;
    white-space: nowrap
}

.nav-icons {
    gap: 18px
}

.has-dropdown,
.user-trigger {
    position: relative;
    cursor: pointer
}

.mega-menu {
    display: none;
    position: absolute;
    top: 55px;
    left: -395px;
    width: 1000px;
    padding: 35px;
    border-radius: 24px;
    background: var(--nav-bg);
    box-shadow: 0 18px 45px rgba(60, 20, 25, .18)
}

.mega-menu.active {
    display: block
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.mega-col h3 {
    margin-bottom: 12px;
    color: var(--maroon);
    font-size: 32px;
    font-weight: 400
}

.mega-col h3.mt-25 {
    margin-top: 24px
}

.mega-col a {
    display: block;
    margin-bottom: 8px;
    font-size: 16px
}

.user-dropdown {
    display: none;
    position: absolute;
    text-align: right;
    top: 55px;
    right: -30px;
    width: 270px;
    padding: 20px;
    border-radius: 20px;
    background: var(--nav-bg);
    box-shadow: 0 15px 35px rgba(60, 20, 25, .16)
}

.user-dropdown.active {
    display: block
}

.user-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(104, 0, 43, .12)
}

.user-item:last-child {
    border: 0
}

.user-item a {
    display: block;
    margin-bottom: 4px;
    font-size: 14px
}

.user-item span {
    font-size: 12px
}

body.services-menu-open,
body.user-menu-open {
    overflow: hidden
}

body.services-menu-open::before,
body.user-menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1050;
    background-color: rgba(0, 0, 0, .45)
}

.responsive-nav-toggle,
.mobile-nav {
    display: none
}

@media only screen and (max-width: 992px) {

    .top-left-branding,
    .nav-content {
        display: none
    }

    .floating-nav {
        top: 16px;
        right: auto;
        left: 50%;
        z-index: 1900;
        transform: translateX(-50%)
    }

    .responsive-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: min(200px, calc(100vw - 32px));
        height: 62px;
        padding: 6px 24px;
        border: 0;
        border-radius: 999px;
        color: var(--maroon);
        background: var(--nav-bg)
    }

    .responsive-nav-toggle[aria-expanded="true"] {
        visibility: hidden;
        pointer-events: none
    }

    .responsive-nav-brand,
    .responsive-nav-brand img {
        display: block
    }

    .responsive-nav-brand {
        cursor: pointer
    }

    .responsive-nav-brand img {
        width: 50px;
        height: auto
    }

    .responsive-nav-divider {
        width: 1px;
        height: 30px;
        background: rgba(95, 32, 41, .55)
    }

    .responsive-nav-icon {
        width: 32px;
        height: auto
    }

    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 2000;
        isolation: isolate;
        align-items: flex-end;
        flex-direction: column;
        padding: 24px clamp(18px, 5vw, 48px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease
    }

    .mobile-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(0, 0, 0, .38);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px)
    }

    .mobile-nav.is-open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

    .mobile-nav-toolbar,
    .mobile-nav-panel {
        position: relative;
        z-index: 1;
        width: min(100%, 390px);
        color: var(--maroon);
        background: var(--nav-bg)
    }

    .mobile-nav-toolbar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 19px;
        width: 160px;
        min-height: 52px;
        margin-bottom: 8px;
        padding: 5px 18px;
        border-radius: 999px
    }

    .mobile-nav-action img {
        display: block;
        width: 21px;
        height: 21px
    }

    .mobile-nav-close {
        position: relative;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        background: transparent
    }

    .mobile-nav-close::before,
    .mobile-nav-close::after {
        content: '';
        position: absolute;
        top: 11px;
        left: 1px;
        width: 22px;
        height: 1px;
        background: var(--maroon);
        transform: rotate(45deg)
    }

    .mobile-nav-close::after {
        transform: rotate(-45deg)
    }

    .mobile-nav-panel {
        max-height: calc(100dvh - 108px);
        overflow-y: auto;
        padding: 58px 32px 48px;
        border-radius: 28px
    }

    button.mobile-nav-action {
        padding: 0;
        border: 0;
        color: inherit;
        background: transparent
    }

    .mobile-profile-panel {
        display: none;
        text-align: left
    }

    .mobile-nav.profile-open .mobile-profile-panel {
        display: block
    }

    .mobile-nav.profile-open .mobile-services-toggle,
    .mobile-nav.profile-open .mobile-services-list,
    .mobile-nav.profile-open .mobile-primary-links {
        display: none
    }

    .mobile-profile-option {
        padding: 0 0 28px;
        border-bottom: 1px solid rgba(95, 32, 41, .55)
    }

    .mobile-profile-option+.mobile-profile-option {
        padding: 28px 0 0;
        border-bottom: 0
    }

    .mobile-profile-option a,
    .mobile-profile-option span {
        display: block;
        color: inherit
    }

    .mobile-profile-option a {
        margin-bottom: 14px;
        font-family: 'Lora', serif;
        font-size: 16px;
        letter-spacing: 1px;
        text-decoration: none
    }

    .mobile-profile-option span {
        font-family: 'Lora', serif;
        font-size: 16px;
        line-height: 1.4
    }

    .mobile-services-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 0 14px;
        border: 0;
        border-bottom: 1px solid rgba(95, 32, 41, .45);
        color: inherit;
        background: transparent;
        font-family: 'The Blendinroom', serif;
        font-size: 20px;
        text-align: left;
        letter-spacing: 1px;
    }

    .mobile-services-chevron {
        width: 9px;
        height: 9px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(45deg);
        transition: transform .2s ease
    }

    .mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
        transform: rotate(225deg)
    }

    .mobile-services-list {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden
    }

    .mobile-services-list.is-open {
        opacity: 1;
        visibility: visible
    }

    .mobile-services-inner {
        padding-top: 10px
    }

    .mobile-service-group+.mobile-service-group {
        margin-top: 34px
    }

    .mobile-service-group h3 {
        margin: 0 0 20px;
        font-family: 'Lora', serif;
        font-size: 16px;
        font-weight: 500
    }

    .mobile-service-group a {
        display: block;
        margin-bottom: 7px;
        font-size: 14px;
        line-height: 18px
    }

    .mobile-primary-links {
        padding-top: 18px
    }

    .mobile-primary-links a {
        display: block;
        margin-bottom: 22px;
        font-family: 'The Blendinroom', serif;
        font-size: 20px;
        letter-spacing: 1px;
    }

    .mobile-primary-links a:last-child {
        margin-bottom: 0
    }

    .mobile-services-list.is-open+.mobile-primary-links {
        display: none
    }

    body.mobile-nav-open {
        overflow: hidden
    }
}

@media only screen and (max-width: 500px) {
    .responsive-nav-toggle {
        width: min(150px, calc(100vw - 32px));
        height: 50px;
        padding: 6px 16px;
        border-radius: 999px;
        background: var(--nav-bg);
    }

    .responsive-nav-brand img {
        width: 40px;
    }

    .responsive-nav-icon {
        width: 26px;
    }
}