.ph-b1acfba7-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
    background: transparent;
}
.ph-b1acfba7-wrapper.is-sticky {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.ph-b1acfba7-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Default fallback */
    transition: padding 0.4s ease, max-width 0.4s ease;
}
.ph-b1acfba7-logo {
    display: flex;
    align-items: center;
}
.ph-b1acfba7-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.ph-b1acfba7-logo img {
    transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    display: block;
}
.ph-b1acfba7-logo .logo-dark { display: none; }
.ph-b1acfba7-wrapper.is-sticky .logo-white { display: none; }
.ph-b1acfba7-wrapper.is-sticky .logo-dark { display: block; }

.ph-b1acfba7-hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-b1acfba7-offcanvas {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.ph-b1acfba7-offcanvas.is-open { right: 0; }

.ph-b1acfba7-nav-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.ph-b1acfba7-close {
    position: absolute;
    top: 30px; right: 40px;
    cursor: pointer;
    color: #ffffff;
    font-size: 24px;
    z-index: 1001;
}
.ph-b1acfba7-close svg {
    fill: #ffffff;
    width: 24px;
    height: 24px;
}

.ph-b1acfba7-nav { list-style: none; text-align: center; padding: 0; margin: 0; }
.ph-b1acfba7-nav li { margin: 20px 0; }
.ph-b1acfba7-nav a {
    color: #ffffff;
    font-size: 3rem;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}
.ph-b1acfba7-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}
.ph-b1acfba7-nav a:hover::after {
    width: 100%;
}
