/* ===========================
   Project View (Detail) Page
   =========================== */

.project-view {
    background: #000;
    color: #fff;
}

/* ── Hero ── */
.pv-hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 48.6%; /* 700/1440 */
    overflow: hidden;
}

.pv-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Content area ── */
.pv-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px var(--content-padding) 0;
}

/* ── Title ── */
.pv-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 120px;
}

/* ── Info Grid ── */
.pv-info {
    display: flex;
    gap: 120px;
    margin-bottom: 80px;
}

.pv-info__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pv-info__label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.pv-info__value {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
    color: #fff;
}

/* ── Gallery ── */
.pv-gallery {
    display: flex;
    flex-direction: column;
}

.pv-gallery__img {
    width: 100%;
    display: block;
}

/* ── Navigation (Prev / Next) ── */
.pv-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px var(--content-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pv-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pv-nav__link:hover {
    opacity: 0.6;
}

.pv-nav__text {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.pv-nav__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-nav__circle svg {
    display: block;
}

/* Override clients/footer on black bg page */
.project-view .clients {
    background: #000;
}

.project-view .clients__logo {
    filter: grayscale(100%) invert(1) brightness(1.2);
    opacity: 0.6;
}

.project-view .clients__logo:hover {
    filter: grayscale(0%) invert(1) brightness(1.2);
    opacity: 1;
}

/* ===========================
   Tablet (<=1024px)
   =========================== */
@media (max-width: 1024px) {
    .pv-title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .pv-info {
        gap: 80px;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .pv-nav__text {
        font-size: 32px;
    }
}

/* ===========================
   Mobile (<=768px)
   =========================== */
@media (max-width: 768px) {
    .pv-hero {
        padding-bottom: 87%; /* 350/402 */
    }

    .pv-content {
        padding-top: 40px;
    }

    .pv-title {
        font-size: 33px;
        margin-bottom: 100px;
    }

    .pv-info {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 50px;
    }

    .pv-info__label {
        font-size: 16px;
    }

    .pv-info__value {
        font-size: 16px;
    }

    .pv-nav {
        padding: 40px var(--content-padding);
        gap: 24px;
    }

    .pv-nav__text {
        font-size: 22px;
    }

    .pv-nav__circle {
        width: 22px;
        height: 22px;
    }

    .pv-nav__circle svg {
        width: 12px;
        height: 11px;
    }
}
