* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* Header Section */
.why-header {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.why-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
    text-align: center;
}

.title-small {
    font-size: 28px;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.6);
    letter-spacing: 0.5px;
}

.why-title .highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #132E55;
}

/* Single Column Layout */
.single-column {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.single-column p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 24px;
}

.single-column strong {
    font-weight: 700;
    color: #1a1a1a;
}

.final-text {
    font-weight: 600;
    color: rgba(26, 26, 26, 0.9) !important;
}

/* Bento Box Images */
.bento-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    min-height: 600px;
    margin: 48px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Ken Burns Animation */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-5%, -5%);
    }
}

.bento-item:nth-child(2) img {
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

.bento-item:nth-child(3) img {
    animation-delay: -10s;
}

.bento-item:nth-child(4) img {
    animation-delay: -15s;
    animation-direction: alternate-reverse;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-item:hover .image-overlay {
    opacity: 0;
}

.bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 46, 85, 0.6);
    box-shadow: 0 0 0 3px rgba(19, 46, 85, 0.4), 0 20px 40px rgba(19, 46, 85, 0.3);
}

/* Large Image */
.bento-item.large {
    grid-row: 1 / 3;
    grid-column: 1;
}

/* Medium Image */
.bento-item.medium {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Bottom Grid */
.bento-bottom-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 16px;
    min-height: 200px;
}

.bento-item.bottom-left {
    min-height: 200px;
}

.bento-item.bottom-right {
    min-height: 200px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.lightbox-close svg {
    color: #1a1a1a;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

/* Bento Card */
.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 197, 176, 0.4);
    box-shadow: 0 20px 60px rgba(212, 197, 176, 0.25);
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover .card-image img {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.title-light {
    font-weight: 300;
}

.title-bold {
    font-weight: 800;
}

.title-italic {
    font-weight: 300;
    font-style: italic;
}

.card-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.7);
}

/* Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .bento-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .why-container {
        padding: 60px 40px;
    }

    .why-header {
        margin-bottom: 60px;
    }

    .title-small {
        font-size: 20px;
    }

    .why-title .highlight {
        font-size: 48px;
    }

    .single-column {
        max-width: 100%;
        padding: 0 20px;
    }

    .bento-images {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 32px 0;
    }

    .bento-item.large {
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .bento-item.medium {
        grid-row: auto;
        grid-column: auto;
        aspect-ratio: 16/9;
    }

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

    .single-column p {
        font-size: 16px;
        line-height: 1.7;
    }

    .bento-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-top: 60px;
        padding: 0 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bento-grid::-webkit-scrollbar {
        display: none;
    }

    .bento-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        max-width: 400px;
    }

    .card-image {
        height: 220px;
    }

    .card-content {
        padding: 24px 20px;
    }

    .card-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 40px 20px;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .title-small {
        font-size: 18px;
    }

    .why-title .highlight {
        font-size: 36px;
    }

    .single-column {
        gap: 16px;
    }

    .single-column p {
        font-size: 15px;
        line-height: 1.6;
    }

    .bento-grid {
        gap: 16px;
        margin-top: 40px;
        padding: 0 10px 20px;
    }

    .bento-card {
        flex: 0 0 90%;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 20px 16px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
        line-height: 1.6;
    }
}
