/* ── BODY OVERRIDE ── */
.page-projet {
    height: auto;
    overflow: auto;
}

.page-projet main {
    overflow: visible;
}

/* ── INTRO ── */
.projet-intro {
    display: grid;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    gap: 0;
    padding: 120px 36px 80px;
}

/* ── LEFT ── */
.projet-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding-right: 60px;
    min-height: 70vh;
}

.projet-title {
    font-size: clamp(28px, calc((45vw - 96px) / 7.5), 90px);
    font-weight: 300;
    font-stretch: 125%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 0.95;
    word-break: keep-all;
    hyphens: none;
}

.projet-info {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    row-gap: 16px;
    align-items: baseline;
}

.projet-meta {
    display: contents;
}

.projet-meta dt {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    white-space: nowrap;
}

.projet-meta dd {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.projet-desc {
    grid-column: 2;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
    padding-top: 24px;
}

/* ── RIGHT ── */
.projet-right {
    height: 70vh;
    overflow: hidden;
    min-width: 0;
    align-self: start;
}

.projet-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── GALLERY ── */
.projet-gallery {
    background-color: #e8e8e8;
    padding: 80px 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projet-gallery img {
    width: 65%;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .header-secondary nav {
        gap: 20px;
    }

    .projet-intro {
        grid-template-columns: 1fr;
        padding: 60px 5% 60px;
    }

    .projet-left {
        padding-right: 0;
        gap: 40px;
    }

    .projet-title {
        font-size: 66px;
    }

    .projet-right {
        height: 50vw;
        margin-top: 40px;
    }

    .projet-gallery img {
        width: 90%;
    }

    .projet-desc {
        grid-column: 1 / -1;
        padding-top: 8px;
    }
}

@media (max-width: 480px) {
    .header-secondary nav {
        gap: 14px;
    }

    .projet-title {
        font-size: 38px;
    }
}
