/* ==========================================
   SECTORS SECTION - ULTRA-LUXURY BENTO GRID
========================================== */

.sectors-bento-container {
    padding: 20px 8% 100px 8%;
    background-color: #F9F8F6;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Gold top and bottom lines on Sectors section header — matching Suits style */
.sectors-bento-container .elegant-section-header {
    border-top: 1px solid rgba(196, 163, 90, 0.35);
    border-bottom: 1px solid rgba(196, 163, 90, 0.35);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
}

.bento-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bento-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.bento-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bento-image-wrapper div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-luxury);
}

.bento-card:hover .bento-image-wrapper div {
    transform: scale(1.06);
}

/* Red-to-Gold Shimmer Line */
.bento-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transition: left 0.8s var(--ease-luxury);
    z-index: 2;
}

.bento-card:hover .bento-image-wrapper::after {
    left: 0;
}

.bento-content {
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
    background: #ffffff;
}

/* Card-Specific Heights */
.card-large-left .bento-image-wrapper {
    height: 420px;
}

.card-stack-right .bento-image-wrapper {
    height: 190px;
}

.card-bottom .bento-image-wrapper {
    height: 220px;
}

/* Grid Placement */
.card-large-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.card-stack-right {
    grid-column: 2 / 3;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C4A35A;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: var(--font-main);
    font-weight: 400;
}

.bento-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #C4A35A;
}

.bento-headline {
    font-family: var(--font-accent);
    font-style: italic;
    color: #7A1A1A;
    margin-bottom: 15px;
    line-height: 1.1;
}

.card-large-left .bento-headline {
    font-size: 42px;
}

.card-stack-right .bento-headline {
    font-size: 28px;
}

.card-bottom .bento-headline {
    font-size: 32px;
}

.bento-body {
    font-family: var(--font-main);
    font-weight: 300;
    color: #666666;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-bento-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto; /* Changed from 100% */
    align-self: flex-end; /* Push to right */
    margin-left: auto; /* Push to right */
    padding: 16px 35px;
    border: 1px solid #C4A35A;
    color: #C4A35A;
    border-radius: 4px;
    /* Subtle radius */
    font-family: var(--font-main);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s var(--ease-luxury);
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-bento-hero i {
    transition: transform 0.4s var(--ease-luxury);
}

.btn-bento-hero:hover {
    background: #591010;
    border-color: #591010;
    color: #ffffff;
}

.btn-bento-hero:hover i {
    transform: translateX(5px);
}

/* Red-to-Gold Gradient Sweep Across Card Bottom */
.bento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #7A1A1A, #C4A35A);
    transition: left 0.8s var(--ease-luxury);
    z-index: 5;
}

.bento-card:hover::after {
    left: 0;
}

.bento-watermark {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-family: var(--font-accent);
    font-size: 7rem;
    color: rgba(122, 26, 26, 0.04);
    line-height: 1;
    user-select: none;
    z-index: 1;
    pointer-events: none;
}

.card-large-left .bento-watermark {
    font-size: 10rem;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-large-left {
        grid-column: auto;
        grid-row: auto;
    }

    .card-stack-right {
        grid-column: auto;
    }

    .bento-row-bottom {
        grid-template-columns: 1fr;
    }

    /* Default heights for mobile */
    .bento-image-wrapper {
        height: 260px !important;
    }
    
    .sectors-luxury-header {
        padding: 40px 20px;
    }
    .sectors-luxury-header .heading {
        font-size: 55px;
    }
    .watermark-s {
        font-size: 15rem;
    }
}

@media (max-width: 768px) {
    .sectors-bento-container {
        padding: 40px 20px;
    }
    
    .sectors-luxury-header .heading {
        font-size: 40px;
    }
    
    .btn-bento-hero {
        width: 100%;
        align-self: center;
        margin-left: 0;
    }
}
