

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brand-green);
    border-bottom: 1px solid rgba(23, 61, 59, 0.18);
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.navbar__left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__logo img {
    height: 44px;
    width: auto;
}

.navbar__links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.navbar__links li { list-style: none; }
.navbar__links a {
    color: var(--brand-green-dark);
    font-size: var(--brand-font-md);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity var(--brand-transition);
}
.navbar__links a:hover { opacity: 0.7; }
.navbar__links a.is-active {
    color: var(--brand-white);
    font-weight: 700;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar__user-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-green-dark);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green-10);
    text-decoration: none;
    transition: transform var(--brand-transition);
}
.navbar__user-icon:hover { transform: scale(1.05); opacity: 1; }
.navbar__user-icon svg { width: 22px; height: 22px; fill: currentColor; }

.navbar__toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}
.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-green-dark);
    box-shadow: 0 -7px 0 var(--brand-green-dark), 0 7px 0 var(--brand-green-dark);
}

@media (max-width: 1024px) {
    .navbar__links { display: none; }
    .navbar__right .cta-booking,
    .navbar__user-icon { display: none; }
    .navbar__toggle { display: inline-flex; }
}
@media (max-width: 640px) {
    .navbar { padding: 10px 20px; min-height: 60px; }
    .navbar__logo img { height: 36px; }
}

.mobile-drawer {
    --accent-w: 64px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc(100vw - var(--accent-w));
    background: var(--brand-green);
    color: var(--brand-green-dark);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 20px 28px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--brand-green-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mobile-drawer__close i { font-size: 22px; line-height: 1; }

.mobile-drawer__logo {
    display: block;
    margin: 0 0 32px;
}
.mobile-drawer__logo img {
    height: 60px;
    width: auto;
    display: block;
}

.mobile-drawer__links {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-drawer__links a {
    display: block;
    padding: 6px 0;
    color: var(--brand-green-dark);
    font-size: 21px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    font-weight: 400;
}
.mobile-drawer__links a.is-active {
    color: var(--brand-white);
    font-weight: 700;
}

.mobile-drawer__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-drawer__user {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-green-dark);
    text-decoration: none;
    font-size: var(--brand-font-md);
    font-weight: 600;
}
.mobile-drawer__user i { font-size: 22px; line-height: 1; }

.mobile-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 64px;
    background: var(--brand-green-dark);
    z-index: 160;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.mobile-drawer__backdrop.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-drawer__blur {
    position: fixed;
    inset: 0;
    z-index: 140;
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.mobile-drawer__blur.is-open {
    opacity: 1;
    pointer-events: auto;
}

body.no-scroll {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

@media (min-width: 768px) {
    .mobile-drawer { padding: 32px 48px 48px; }
    .mobile-drawer__close { width: 48px; height: 48px; top: 24px; right: 32px; }
    .mobile-drawer__close i { font-size: 28px; }
    .mobile-drawer__logo img { height: 80px; }
    .mobile-drawer__logo { margin: 0 0 48px; }
    .mobile-drawer__links { gap: 18px; margin-bottom: 40px; }
    .mobile-drawer__links a { font-size: 28px; padding: 8px 0; }
    .mobile-drawer__user { font-size: 18px; gap: 14px; }
    .mobile-drawer__user i { font-size: 28px; }
    .mobile-drawer__actions { gap: 22px; }
}
