body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #111;
    background: #fff;
}

/* =========================
   MAIN LAYOUT
========================= */
.container {
    display: flex;
}

/* LEFT SIDEBAR */
.sidebar {
    width: 360px;
    height: 100vh;
    position: fixed;
    padding: 50px;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
}

.sidebar::-webkit-scrollbar {
    display: none;                /* Chrome/Safari */
}

.sidebar h1 {
    font-size: 52px;
    font-weight: 500;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* NAV */
.sidebar nav a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #111;
    font-size: 24px;
}

/* WORK LIST */
.work-list {
    margin-top: 50px;
}

.work {
    cursor: pointer;
    margin-bottom: 12px;
    font-size: 24px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    user-select: none;
}

.work-description {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.work:hover {
    opacity: 1;
}

.work.active {
    opacity: 1;
    text-decoration: underline;
}

.image-wrapper {
    max-width: 70%;
}

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

.image-wrapper.portrait {
    max-width: 40%;
}

.work-list a {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    color: #111;
    font-size: 24px;
    opacity: 0.6;
}

.work-list a:hover {
    opacity: 1;
}

/* =========================
   RIGHT CONTENT AREA
========================= */
.content {
    margin-left: 360px;
    padding: 60px;
    box-sizing: border-box;
    width: 100%;
}

.content img {
    max-width: 75%;
    height: auto;
    display: block;
}

/* =========================
   TYPOGRAPHY
========================= */
.content p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-size: 20px;
}

.content h1,
.content h2,
.content h3 {
    margin: 0 0 16px 0;
    font-weight: normal;
}

.content a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #111;
}

/* =========================
   GALLERY
========================= */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-item {
    text-decoration: none;
    color: #111;
}

.gallery-item img {
    max-width: 90%;
    height: auto;
}

.gallery-item.portrait img {
    max-width: 60%;
}

.caption {
    margin-top: 8px;
    font-size: 14px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .sidebar {
        padding: 24px 20px 16px;
    }

    .sidebar h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .sidebar nav {
        gap: 16px;
        margin-bottom: 12px;
    }

    .sidebar nav a {
        font-size: 15px;
    }
.work-list {
        gap: 6px 16px;
    }

    .work-list a {
        font-size: 15px;
    }

    .content {
        padding: 24px 20px;
    }

    .gallery {
        gap: 36px;
    }

    .gallery-item img,
    .gallery-item.portrait img {
        max-width: 100%;
    }

.content img {
        max-width: 100%;
    }
}
