/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #f3eee3;
    transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 4, 0.97);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(243, 238, 227, 0.6);
    transition: color 0.3s ease;
}
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #f3eee3;
}
.mobile-nav .mobile-cta {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: #966516;
    color: #050504;
    padding: 12px 28px;
    border-radius: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 639px) {
    .mobile-toggle {
        display: flex;
        z-index: 200;
        position: relative;
    }
    /* Hide desktop CTA on mobile */
    header .bg-\[\#966516\] {
        display: none !important;
    }
    /* Hide desktop nav on mobile */
    header nav {
        display: none !important;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 639px) {
    .wrap {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}
