.bento { padding: 4rem 0 5rem; }
.bento .grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.5rem;
    min-height: 760px;
}
.tile.featured { grid-row: span 3; }

.tile {
    position: relative;
    background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
    border: 1px solid #1a1a1a;
    border-radius: 0.85rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}
.tile:hover {
    border-color: rgba(211, 47, 47, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(211, 47, 47, 0.25), 0 0 0 1px rgba(211, 47, 47, 0.08);
}

.tile .scene {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    overflow: hidden;
}
.tile .scene img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .8s ease, filter .5s ease;
    filter: saturate(1.05);
}
.tile:hover .scene img.bg { transform: scale(1.06); filter: saturate(1.15); }
.tile .scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 85%, rgba(0,0,0,0.97) 100%);
    z-index: 1;
    transition: opacity .4s ease;
}
.tile .scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(211, 47, 47, 0.18) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 2;
}
.tile:hover .scene::after { opacity: 1; }

.tile .num-badge { display: none; }

.tile .meta-pill {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #c9c9c9;
    font: 500 11px/1 'Inter', sans-serif;
    letter-spacing: 0.05em;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.tile .meta-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }

.tile .body {
    position: relative;
    z-index: 2;
    padding: 1.5rem 5rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.tile .body::before {
    content: '';
    position: absolute;
    inset: -2.5rem -1rem -1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.85) 100%);
    z-index: -1;
    pointer-events: none;
}
.tile .body .tag { font: 500 11px/1 'Inter', sans-serif; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7); }
.tile .body h2 { font: 700 1.3rem/1.25 'Montserrat', sans-serif; color: #fff; margin: 0; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.6); }
.tile .body p { color: #e8e8e8; font-size: 13.5px; margin: 0; line-height: 1.55; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.6); }

.tile .cta {
    position: absolute;
    bottom: 1.4rem;
    right: 1.4rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: color .25s ease;
}
.tile .cta .arrow {
    display: inline-flex;
    transition: transform .3s ease;
    font: 300 22px/1 'Inter', sans-serif;
}
.tile:hover .cta { color: var(--color-primary); }
.tile:hover .cta .arrow { transform: translateX(3px); }
.tile.featured .cta { bottom: 1.8rem; right: 1.8rem; }
.tile.featured .cta .arrow { font-size: 24px; }

.tile.featured .body { padding: 2rem 6rem 2.2rem 2.4rem; gap: 0.7rem; }
.tile.featured .body h2 { font-size: 2.1rem; line-height: 1.15; }
.tile.featured .body p { font-size: 15.5px; max-width: 520px; line-height: 1.6; }
.tile.featured .num-badge { width: 50px; height: 50px; font-size: 14px; top: 1.4rem; left: 1.4rem; }
.tile:not(.featured) .body p { display: none; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.tile { animation: fadeInUp .6s ease both; }
.tile:nth-child(1) { animation-delay: .05s; }
.tile:nth-child(2) { animation-delay: .12s; }
.tile:nth-child(3) { animation-delay: .19s; }
.tile:nth-child(4) { animation-delay: .26s; }

@media (max-width: 1200px) {
    .bento .grid { min-height: 680px; gap: 1.25rem; }
    .tile.featured .body { padding: 1.75rem 5rem 1.85rem 1.85rem; }
    .tile.featured .body h2 { font-size: 1.85rem; }
    .tile.featured .body p { font-size: 14.5px; }
}
@media (max-width: 1024px) {
    .bento .grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: 0;
        gap: 1.25rem;
    }
    .tile { aspect-ratio: 4 / 3; }
    .tile.featured { grid-row: auto; aspect-ratio: 4 / 3; }
    .tile.featured .body { padding: 1.5rem 5rem 1.6rem 1.6rem; }
    .tile.featured .body h2 { font-size: 1.5rem; }
    .tile.featured .body p { display: none; }
    .tile.featured .num-badge { width: 42px; height: 42px; top: 1.1rem; left: 1.1rem; font-size: 13px; }
}
@media (max-width: 900px) {
    .bento { padding: 4rem 0 4rem; }
    .bento .head-h1 { margin-bottom: 2rem !important; }
    .bento .grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .tile { aspect-ratio: auto; min-height: 240px; }
    .tile.featured { aspect-ratio: auto; min-height: 240px; }
    .tile.featured .body { padding: 1.25rem 4rem 1.35rem 1.35rem; }
    .tile.featured .body h2 { font-size: 1.15rem; }
    .tile .body { padding: 1.25rem 4rem 1.35rem 1.35rem; }
    .tile .body h2 { font-size: 1.15rem; }
    .tile .num-badge { width: 38px; height: 38px; top: 0.95rem; left: 0.95rem; font-size: 12px; }
    .tile.featured .num-badge { width: 42px; height: 42px; }
    .tile .cta, .tile.featured .cta { bottom: 1.15rem; right: 1.15rem; }
    .tile .cta .arrow { font-size: 19px; }
    .tile.featured .cta .arrow { font-size: 21px; }
}
@media (max-width: 560px) {
    .tile { min-height: 200px; }
    .tile.featured { min-height: 200px; }
    .tile .body, .tile.featured .body { padding: 1.1rem 3.5rem 1.2rem 1.15rem; }
    .tile.featured .body h2 { font-size: 1.15rem; }
}
