
/* ─── CONTENTS button ─────────────────────────────── */
.headerGrid__menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Desktop: show text, hide burger */
.menu-text   { display: inline; }
.menu-burger { display: none; }

/* Mobile: hide text, show burger */
@media (max-width: 955px) {
    .menu-text { display: none; }
    .menu-burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 24px;
    }
    .menu-burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: currentColor;
        transition: transform 0.3s, opacity 0.3s;
    }
}

/* ─── Desktop dropdown nav ────────────────────────── */
.navMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    color: #fff;
    min-width: 180px;
    padding: 12px 0;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.navMenu.is-open { display: block; }

.navMenu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}



.navMenu .menu li a:hover { opacity: 0.7; }

/* Hide desktop nav on mobile */
@media (max-width: 955px) {
    .navMenu { display: none !important; }
}

/* ─── Mobile fullscreen overlay ───────────────────── */
.mobileNav {
    position: fixed;
    inset: 0;
    background: #111;
    color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    visibility: hidden;
}

.mobileNav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobileNav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobileNav__title {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.mobileNav__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mobileNav .mobileMenu,
.mobileNav .mobileMenu--extra {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobileNav .mobileMenu li a,
.mobileNav .mobileMenu--extra li a {
    display: block;
    padding: 18px 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
    text-transform: uppercase;
}

.mobileNav .mobileMenu li a:hover,
.mobileNav .mobileMenu--extra li a:hover { opacity: 0.7; }

/* Show mobile nav only on mobile */
@media (min-width:956px) {
    .mobileNav { display: none !important; }
}