body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

header {
    background: none;
    padding: 0;
}

.header-banner {
    overflow: hidden;
}

.header-banner__image {
    width: 100%;
    height: auto;
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.menu-link {
    display: block;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.menu-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.menu-link__image {
    width: 100%;
    max-height: 160px;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.menu-link--closed {
    filter: grayscale(100%) brightness(0.85);
    pointer-events: none;
}

.menu-link--closed:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-link__status {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.03em;
    z-index: 1;
}

@media (max-width: 560px) {
    .menu-link {
        border-radius: 12px;
    }

    .menu-link__image {
        height: 160px;
    }
}
