:root {
    --bg-color: #fdfdfd;
    --text-color: #111111;
    --muted-color: #888888;
}
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #eeeeee;
}
header h1 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}
header h1 a {
    color: inherit;
    text-decoration: none;
}
nav a {
    color: var(--muted-color);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
nav a:hover { color: var(--text-color); }
.container {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.page-heading {
    font-size: 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #111;
    padding-bottom: 0.5rem;
    margin: 0 0 0.75rem;
    font-weight: 500;
}
.page-intro {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin: 0 0 2.5rem;
    max-width: 42rem;
}
.back-links {
    margin-bottom: 2rem;
    font-size: 0.85rem;
}
.back-links a {
    color: var(--muted-color);
    text-decoration: none;
    margin-right: 1.5rem;
}
.back-links a:hover { color: var(--text-color); }
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: start;
}
.thumb-card {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: opacity 0.3s ease;
}
.thumb-card:hover { opacity: 0.85; }
.thumb-card img {
    width: 100%;
    height: auto;
    display: block;
    background: #f4f4f4;
}
.thumb-card span {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
}
.work-detail__image {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    background: #f4f4f4;
}
.work-detail__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.5rem;
}
.work-detail__meta {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin: 0;
    max-width: 40rem;
}
.work-detail__description {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin: 0.75rem 0 0;
    max-width: 40rem;
    line-height: 1.6;
}
.work-media-block {
    width: 100%;
    max-width: 960px;
}
.work-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
}
.work-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.work-media-block .work-detail__title {
    margin-top: 1.5rem;
}
.work-media-block .work-detail__meta {
    max-width: none;
}
