.lh-header-wrapper-bd33523d {
    position: relative;
    z-index: 9999;
}

.lh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.4s ease, height 0.4s ease;
    display: flex;
    align-items: center;
}

.lh-header.is-scrolled {
    background: rgba(10, 10, 10, 0.95);
    height: 80px;
}

.lh-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lh-logo a {
    color: #fff;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    letter-spacing: 2px;
}

.lh-nav-desktop {
    display: flex;
    gap: 40px;
}

.lh-menu-item {
    color: #f5f5f5;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.lh-menu-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.lh-menu-item:hover::after {
    width: 100%;
}

.lh-hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.lh-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.lh-hamburger:hover span {
    background: #D4AF37;
}

.lh-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.lh-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.lh-offcanvas {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #0a0a0a;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 50px;
    box-sizing: border-box;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.lh-offcanvas.is-active {
    right: 0;
}

.lh-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.lh-close-btn:hover {
    transform: rotate(90deg);
    color: #D4AF37;
}

.lh-offcanvas-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lh-logo-offcanvas {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.lh-offcanvas-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.lh-offcanvas-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.lh-offcanvas-menu-item {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: 0.3s;
}

.lh-offcanvas-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.lh-offcanvas-contact a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.lh-btn-cta {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .lh-nav-desktop {
        display: none;
    }
    .lh-offcanvas {
        max-width: 100%;
        right: -100%;
    }
}
