/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 110;
}

.menu-toggle-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 300ms ease, opacity 300ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-actions {
    display: flex;
    gap: 18px;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
}

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 220ms ease, opacity 220ms ease;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--white);
}

.header-action:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.header-action img {
    height: 40px;
    width: auto;
    display: block;
}

.header-action-label {
    display: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.primary-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.primary-menu li {
    white-space: nowrap;
}

.primary-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(1.9rem, 3vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 900;
    line-height: 1;
}

.primary-menu li a:hover,
.primary-menu li a:focus {
    color: var(--text-semi-muted);
}

/* Contact & Hours Panels */
.footer-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 0 0;
}

.footer-contact-panel,
.footer-hours-panel {
    background: var(--bg-lighter);
    border-radius: 22px;
    padding: 28px 32px;
}

.footer-contact-panel address {
    margin: 0 0 24px 0;
    color: var(--white);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: left;
    font-style: normal;
}

.footer-contact-panel p,
.footer-hours-panel p {
    margin: 0 0 16px 0;
    color: var(--white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-contact-panel p {
    text-align: left;
}

.footer-contact-panel p:last-child {
    margin-bottom: 0;
}

.footer-contact-panel a {
    color: var(--white);
}

.footer-social-divider {
    width: 40px;
    height: 1px;
    background: var(--border-medium);
    margin: 20px 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 220ms ease;
}

.footer-social-link a:hover {
    opacity: 0.8;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.footer-hours-panel p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.footer-hours-panel p:last-child {
    margin-bottom: 0;
}

.footer-graphic {
    width: 100%;
    overflow: hidden;
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.footer-graphic img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-copy {
    padding: 20px 0 26px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 960px) {
    .footer-contact-box {
        grid-template-columns: 1fr;
    }
}

/* Mobile: Hamburger Menu */
@media (max-width: 840px) {
    .menu-toggle {
        display: flex;
        justify-self: center;
    }

    .header-actions {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 100;
        padding: 40px 20px;
    }

    .header-actions.menu-open {
        display: flex;
    }

    .header-action {
        flex-direction: column;
        gap: 6px;
    }

    .header-action img {
        height: 60px;
    }

    .header-action-label {
        display: none;
    }
}
