.project-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: 700px;
}

/* ── Header ── */
.project-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 24px;
    border-bottom: 1px solid #333;
}

.project-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    gap: 24px;
}

.project-meta span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

/* ── Info row ── */
.project-info-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #222;
}

.project-info-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
}

.info-value {
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.5;
}

.info-value a {
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 1px;
}

.info-value a:hover {
    color: #999;
    opacity: 1;
}

.info-value-white {
    color: #fff;
    padding-bottom: 1px;
}

/* ── Statement ── */
.project-statement p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: #fff;
}

/* ── Video ── */
.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #111;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Images ── */
.project-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease;
}

.project-image img:hover {
    filter: grayscale(0%);
}

/* ── Project nav ── */
.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #222;
    margin-top: 8px;
}

.project-nav a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #999;
    text-transform: lowercase;
    transition: color 0.2s;
}

.project-nav a:hover {
    color: #fff;
    opacity: 1;
}

.project-nav-index {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase !important;
}


.about-photocredit {
    font-size: 11px;
    font-weight: 300;
    color: #555;
    text-align: right;
    letter-spacing: 0.04em;
    margin-top: 6px;
}

.about-photocredit:hover {
    opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .project-grid {
        gap: 32px;
        max-width: 100%;
    }

    .project-title {
        font-size: 18px;
    }

    .project-info-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .project-meta {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .project-info-row {
        grid-template-columns: 1fr;
    }
}