/* Shared dark theme */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Bebas+Neue&display=swap');


*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    color: #c8c8c8;
    font-family: 'Bebas Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    cursor: crosshair;
}

a, button, [role="button"] {
    cursor: pointer;
}

a { color: inherit; }

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d0d0d;
}

.site-header .brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b0b0b0;
    text-decoration: none;
}

.site-header nav {
    display: flex;
    gap: 36px;
}

.site-header nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.site-header nav a:hover,
.site-header nav a.active {
    color: #b0b0b0;
}

/* ---- Page content wrapper ---- */
.page-content {
    padding-top: 0;
}

/* ---- Sections ---- */
.page-section {
    padding: 100px 48px;
    border-top: 1px solid #1e1e1e;
}

.page-section:first-of-type {
    border-top: none;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 56px;
}

.section-num {
    font-size: 13px;
    letter-spacing: 2px;
    color: #444;
    flex-shrink: 0;
}

.section-title {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
}

/* ---- Work grid (studio / client) ---- */
.work-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.work-list-item {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    background: #111;
}

.work-list-item img,
.work-list-item video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: transform 0.6s ease;
}

.work-list-item:hover img,
.work-list-item:hover video {
    transform: scale(1.02);
}

.work-list-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
}

.work-list-title {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}

.work-list-sub {
    display: none;
}

/* ---- Footer ---- */
.site-footer {
    padding: 40px 48px;
    border-top: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #333;
    margin: 0;
}

/* ---- Project pages ---- */
.project-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.project-hero img,
.project-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-body {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 80px;
    padding: 80px 48px 100px;
    border-top: 1px solid #1e1e1e;
    max-width: 1400px;
}

.project-back {
    margin-bottom: 40px;
}

.project-back a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.project-back a:hover { color: #fff; }

.project-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 400;
    color: #e8e8e8;
    margin: 0 0 36px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.project-description {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.85;
    color: #666;
    margin: 0;
    max-width: 640px;
    white-space: pre-wrap;
}

.project-description a {
    color: #888;
    text-underline-offset: 3px;
}

.project-description a:hover { color: #fff; }

.project-meta {
    padding-top: 80px;
    border-top: none;
}

.project-meta-item {
    padding: 20px 0;
    border-bottom: 1px solid #1e1e1e;
}

.project-meta-item:first-child {
    border-top: 1px solid #1e1e1e;
}

.project-meta-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
}

.project-meta-value {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #888;
    line-height: 1.6;
}

.project-meta-value a {
    color: #888;
    text-underline-offset: 3px;
}

.project-meta-value a:hover { color: #fff; }

@media (max-width: 768px) {
    .project-body {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px 80px;
    }
    .project-meta {
        padding-top: 0;
    }
}

/* ---- Project gallery ---- */
.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-gallery img,
.project-gallery video {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
    .site-header {
        padding: 20px 24px;
    }
    .site-header nav {
        gap: 20px;
    }
    .page-section {
        padding: 64px 24px;
    }
    .work-list-caption {
        padding: 20px 20px 16px;
    }
    .site-footer {
        padding: 32px 24px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
