body {
    background-color: #ccd5ae;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 24px;
}

h1 {
    color: #283618;
    font-size: 64px;
    font-family: "Work Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    margin-bottom: 10px;
    margin-top: 60px;
}

h1 a {
    color: inherit;
    text-decoration: none;
}

.roles {
    color: rgb(75, 61, 54);
    font-size: 32px;
    font-family: "Work Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    margin-top: 0;
    margin-bottom: 48px;
}

.roles a {
    color: rgb(75, 61, 54);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.roles a:hover {
    opacity: 0.5;
}

.roles a.active {
    font-weight: 500;
}

.roles .sep {
    opacity: 0.4;
    margin: 0 6px;
}

.bio {
    color: rgb(75, 61, 54);
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.art-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.art-column {
    padding: 0px;
    border-radius: 8px;
}

.art-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    opacity: 0.7;
}

.category-section {
    margin-bottom: 80px;
}

.section-heading {
    display: block;
    color: #283618;
    font-family: "Work Sans", sans-serif;
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(75, 61, 54, 0.3);
    transition: opacity 0.2s ease;
    margin-bottom: 16px;
}

p {
    color: #283618;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.social-links a {
    color: rgb(75, 61, 54);
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.5;
}

h2 {
    color: #283618;
    font-size: 40px;
    font-family: "Work Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    margin-top: 48px;
    margin-bottom: 24px;
}

h4 {
    color: #283618;
    font-size: 24px;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-top: 0;
    margin-bottom: 16px;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.film-entry {
    margin-bottom: 48px;
}

.video {
    width: 100%;
    max-width: 854px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 4px;
}

.read-link {
    display: inline-block;
    margin-top: 12px;
    color: rgb(75, 61, 54);
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 61, 54, 0.4);
    transition: opacity 0.2s ease;
}

.read-link:hover {
    opacity: 0.5;
}

.works-section {
    background-color: #e9edc9;
    padding: 24px 0 64px;
    margin-top: 48px;
}

footer {
    height: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    #site-header {
        padding-top: 64px;
    }

    h1 {
        font-size: 40px;
        margin-top: 0;
    }

    .roles {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .roles .sep {
        margin: 0 4px;
    }

    .roles a {
        white-space: nowrap;
    }

    .social-links {
        top: 16px;
        right: 16px;
        gap: 14px;
    }

    .social-links a {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    .art-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
