.yh-1bcfa482 {
    position: relative;
    width: 100%;
    font-family: inherit;
    background-color: #fdfcf8;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

.yh-1bcfa482.yh-sticky {
    position: sticky;
    top: 0;
}

.yh-utility-bar {
    text-align: center;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    background: rgba(0,0,0,0.03);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.yh-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.yh-logo img {
    max-height: 40px;
    width: auto;
}
.yh-logo span {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.yh-desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 2rem;
}

.yh-desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.yh-nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.yh-nav-link:hover, .yh-nav-link.yh-active {
    opacity: 1;
}

.yh-nav-link.yh-active {
    position: relative;
}
.yh-nav-link.yh-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

.yh-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.yh-cta-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #2c2c2c;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.yh-cta-btn:hover {
    background-color: #000;
}

.yh-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}
.yh-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #2c2c2c;
    margin: 5px 0;
    transition: 0.3s;
}

.yh-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fdfcf8;
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.yh-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.yh-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.yh-mobile-nav .yh-nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
}

/* Mobile State */
@media (max-width: 1024px) {
    .yh-desktop-nav {
        display: none;
    }
    .yh-hamburger {
        display: block;
    }
    .yh-container {
        padding: 1rem 1.25rem;
    }
}

/* Drawer Open State */
.yh-1bcfa482.drawer-open .yh-mobile-drawer {
    right: 0;
}
.yh-1bcfa482.drawer-open .yh-drawer-overlay {
    opacity: 1;
    visibility: visible;
}
.yh-1bcfa482.drawer-open .yh-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.yh-1bcfa482.drawer-open .yh-hamburger span:nth-child(2) {
    opacity: 0;
}
.yh-1bcfa482.drawer-open .yh-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}