/* ============================================================
   Single Project — scoped to .single-project
   ============================================================ */

.single-project {
    min-width: 1440px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.single-project .pj-hero {
    position: relative;
    width: 1440px;
    height: 600px;
    overflow: hidden;
    margin-top: -100px;
}

.single-project .pj-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-project .pj-hero__img--empty {
    width: 100%;
    height: 100%;
    background: #E7E8E4;
}

.single-project .pj-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 56px 140px;
}

.single-project .pj-hero__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    max-width: 860px;
}

.single-project .pj-hero__subtitle {
    /* font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,.85);
    line-height: 24px;
    margin-top: 12px;
    max-width: 720px; */
    color: #575856;
    font-family: Jost;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 133.333% */
    text-transform: uppercase;
    margin-top: 50px;
}

/* ── Description ─────────────────────────────────────────── */
.single-project .pj-description {
    padding: 60px 140px 40px;
}

.single-project .pj-description__inner {
    max-width: 1060px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
}

.single-project .pj-description__inner p {
    margin: 0 0 16px;
}

.single-project .pj-description__inner p:last-child {
    margin-bottom: 0;
}

.single-project .pj-description__inner ul,
.single-project .pj-description__inner ol {
    margin: 0 0 16px 20px;
}

/* ── Gallery ─────────────────────────────────────────────── */
.single-project .pj-gallery {
    padding: 40px 140px 60px;
}

.single-project .pj-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.single-project .pj-gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #E7E8E4;
}

.single-project .pj-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s ease;
}

.single-project .pj-gallery__item:hover img {
    transform: scale(1.04);
}

/* ── Video ───────────────────────────────────────────────── */
.single-project .pj-video {
    padding: 0 140px 80px;
}

.single-project .pj-video__inner {
    position: relative;
    width: 1060px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.single-project .pj-video__inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
