@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

.lsb-header1-wrapper {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(212,175,55,0.35);
    box-sizing: border-box;
    z-index: 999;
    position: relative;
    overflow: visible;
}

.lsb-header1-desktop-top {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 34px 18px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    box-sizing: border-box;
}

.lsb-header1-appointment {
    justify-self: start;
    text-decoration: none;
    color: #111111;
    border: 1px solid #111111;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all .28s ease;
    white-space: nowrap;
}

.lsb-header1-appointment:hover {
    background: #111111;
    color: #d4af37;
}

.lsb-header1-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    min-width: 0;
}

.lsb-header1-logo span {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 2px;
    white-space: nowrap;
}

.lsb-header1-logo strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 500;
    letter-spacing: 1px;
    color: #111111;
    white-space: nowrap;
}

.lsb-header1-calendar {
    justify-self: end;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212,175,55,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
    transition: all .28s ease;
    box-sizing: border-box;
}

.lsb-header1-calendar svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.lsb-header1-calendar:hover {
    background: #111111;
    color: #d4af37;
    border-color: #111111;
}

.lsb-header1-nav {
    width: 100%;
    border-top: 1px solid rgba(17,17,17,0.08);
    background: #ffffff;
    position: relative;
    z-index: 998;
}

.lsb-header1-nav > ul {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.lsb-header1-nav li {
    position: relative;
    list-style: none;
}

.lsb-header1-nav > ul > li > a {
    display: block;
    padding: 18px 16px;
    text-decoration: none;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .25s ease, background .25s ease;
    white-space: nowrap;
}

.lsb-header1-nav > ul > li > a:hover {
    color: #d4af37;
}

.lsb-header1-dropdown > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 245px;
    background: #ffffff;
    border: 1px solid rgba(212,175,55,0.45);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 9999;
}

.lsb-header1-dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lsb-header1-dropdown > ul a {
    display: block;
    padding: 13px 20px;
    color: #111111;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: all .25s ease;
    white-space: nowrap;
}

.lsb-header1-dropdown > ul a:hover {
    background: rgba(212,175,55,0.10);
    color: #111111;
}

.lsb-header1-mobile-top {
    display: none;
}

.lsb-header1-menu-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
    cursor: pointer;
    box-sizing: border-box;
}

.lsb-header1-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111111;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .lsb-header1-nav > ul > li > a {
        padding: 17px 11px;
        font-size: 12px;
        letter-spacing: .7px;
    }

    .lsb-header1-desktop-top {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 980px) {
    .lsb-header1-desktop-top {
        display: none;
    }

    .lsb-header1-mobile-top {
        display: grid;
        grid-template-columns: 48px 1fr 48px;
        align-items: center;
        width: 100%;
        padding: 16px 18px;
        box-sizing: border-box;
    }

    .lsb-header1-mobile-top .lsb-header1-logo {
        justify-self: center;
        text-align: center;
    }

    .lsb-header1-nav {
        display: none;
        border-top: 1px solid rgba(212,175,55,0.28);
    }

    .lsb-header1-open .lsb-header1-nav {
        display: block;
    }

    .lsb-header1-nav > ul {
        display: block;
        padding: 12px 18px 22px;
    }

    .lsb-header1-nav > ul > li > a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(17,17,17,0.10);
        font-size: 13px;
        white-space: normal;
    }

    .lsb-header1-dropdown > ul {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid rgba(17,17,17,0.10);
        padding: 0 0 10px 16px;
        min-width: 0;
    }

    .lsb-header1-dropdown:hover > ul {
        transform: none;
    }

    .lsb-header1-dropdown > ul a {
        padding: 10px 0;
        font-size: 13px;
        color: #333333;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .lsb-header1-mobile-top {
        padding: 14px 14px;
    }

    .lsb-header1-mobile-top .lsb-header1-logo span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .lsb-header1-mobile-top .lsb-header1-logo strong {
        font-size: 26px;
    }

    .lsb-header1-calendar,
    .lsb-header1-menu-btn {
        width: 42px;
        height: 42px;
    }
}
@media (min-width: 981px) {
    .lsb-header1-wrapper {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: visible;
    }

    .lsb-header1-desktop-top {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        max-width: 1280px;
        padding: 24px 34px 18px;
    }

    .lsb-header1-mobile-top {
        display: none !important;
    }

    .lsb-header1-logo {
        color: inherit !important;
        text-align: center;
    }

    .lsb-header1-logo span {
        display: block;
        font-family: "Cormorant Garamond", serif;
        font-size: 18px !important;
        letter-spacing: 4px;
        color: #d4af37 !important;
        text-transform: uppercase;
    }

    .lsb-header1-logo strong {
        display: block;
        font-family: "Cormorant Garamond", serif;
        font-size: 52px !important;
        font-weight: 500;
        letter-spacing: 1px;
        color: #111111 !important;
        line-height: .95;
    }

    .lsb-header1-nav > ul {
        flex-wrap: nowrap;
    }

    .lsb-header1-nav > ul > li > a {
        padding: 18px 20px;
        font-size: 13px;
        letter-spacing: 1.1px;
        white-space: nowrap;
    }
}
.lsb-header1-logo img {
    display: block;
    width: auto;
    height: 90px;
    max-width: 100%;
    object-fit: contain;
}

.lsb-header1-logo-desktop img {
    height: 180px;
}

@media (max-width: 991px) {
    .lsb-header1-logo img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .lsb-header1-logo img {
        height: 80px;
    }
}