/* Mobile navigation menu — shared by every page that uses the ALPINTOPO nav.
   Hidden on desktop, where the links sit in the bar itself. */
.nav-menu { position: relative; flex-shrink: 0; display: none; }

.nav-menu-toggle {
    list-style: none;
    cursor: pointer;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5c4228;
}

.nav-menu-toggle::-webkit-details-marker { display: none; }
.nav-menu-toggle::marker { content: ''; }
.nav-menu-toggle:hover { background: rgba(120, 70, 8, 0.08); }

.nav-menu-bars { display: flex; flex-direction: column; gap: 4px; width: 18px; }

.nav-menu-bars span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-menu[open] .nav-menu-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu[open] .nav-menu-bars span:nth-child(2) { opacity: 0; }
.nav-menu[open] .nav-menu-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-menu-panel {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    min-width: 15rem;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(120, 70, 8, 0.14);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(26, 18, 8, 0.18);
    z-index: 300;
}

.nav-menu-item {
    display: block;
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #5c4228;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-menu-item:hover { background: #fef3e0; color: #e8900a; }
.nav-menu-item.is-current { color: #e8900a; }
.nav-menu-item--accent { color: #e8900a; }

.nav-menu-item--cta {
    margin-top: 0.25rem;
    background: #e8900a;
    color: #ffffff;
    text-align: center;
}

.nav-menu-item--cta:hover { background: #f5b042; color: #ffffff; }

@media (max-width: 768px) {
    .nav-menu { display: inline-flex; }
}
