.hero { position: relative; }

.hero__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 4px;
    height: 404px;
    padding-top: 4px;
}

.hero__gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--color-surface);
    cursor: pointer;
    text-decoration: none;
}

.hero__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.hero__gallery-item:hover img {
    transform: scale(1.03);
}

.hero__gallery-item:first-child {
    grid-row: 1 / 3;
}

.hero__gallery-item--more::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero__gallery-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1;
}

.hero__gallery-placeholder {
    background: linear-gradient(135deg, var(--color-surface), var(--color-border));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.hero__info {
    padding: 1.25rem 0 .5rem;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: .75rem;
}

.hero__stars { color: var(--color-star); font-size: 1rem; }

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    white-space: nowrap;
}

.badge--open  { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.badge--closed { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }
.badge--price { background: var(--color-surface); color: var(--color-text); }
.badge--cat   { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

@media (max-width: 768px) {
    .hero__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 100px 100px;
        height: auto;
    }
    .hero__gallery-item:first-child {
        grid-row: 1;
        grid-column: 1 / 3;
    }
}
