/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #F5F2EE;
    font-family: 'Inter', sans-serif;
    color: #111111;
    overflow-x: hidden;
}

/* ── LOGO ── */
.logo {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 100;
}

.logo img {
    height: 60px;
    width: auto;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

nav a {
    text-decoration: none;
    color: #111111;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.4;
}

/* ── DESKTOP DESK ── */
.desk {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.desk-image {
    position: absolute;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.desk-image:hover {
    transform: scale(1.02);
    z-index: 10;
}

.desk-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CAPTION ── */
.caption {
    display: none;
    position: fixed;
    bottom: 40px;
    left: 40px;
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: none;
    color: #807b7b;
    z-index: 200;
}

.caption.visible {
    display: block;
}

/* ── MOBILE GRID ── */
.mobile-grid {
    display: none;
    padding: 120px 20px 60px 20px;
    flex-direction: column;
    gap: 16px;
}

.mobile-grid .mobile-image {
    width: 100%;
    cursor: pointer;
}

.mobile-grid .mobile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-grid .mobile-caption {
    display: none;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-top: 8px;
    color: #111111;
}

.mobile-image.active .mobile-caption {
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .desk {
        display: none;
    }

    .mobile-grid {
        display: flex;
    }

    .logo {
        top: 24px;
        left: 20px;
    }

    .logo img {
        height: 36px;
    }

    nav {
        top: 24px;
        right: 20px;
        gap: 4px;
    }

    nav a {
        font-size: 11px;
    }
}