/* ============================================
   CANVAS + MAIN STRUCTURE
   ============================================ */
.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background: #0a0a0a;
    pointer-events: none;
}

.ph-main {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   SPLIT SECTIONS — text + maquette side by side
   ============================================ */
.ph-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 6% 60px;
    pointer-events: auto;
    gap: 5%;
}

.ph-split {
    justify-content: space-between;
}

.ph-split--reverse {
    flex-direction: row-reverse;
}

/* ── Text side ── */
.ph-content {
    flex: 0 0 38%;
    max-width: 440px;
}

.ph-content.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.ph-content.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.ph-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: #ffffff;
    margin-bottom: 1.4rem;
    font-weight: normal;
    line-height: 1.08;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.ph-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
}

.ph-edition-tag {
    display: inline-block;
    font-family: var(--font-ui), sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #950808;
    border: 0.5px solid rgba(149, 8, 8, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 2px;
}

/* ── Maquette side ── */
.ph-maquette {
    flex: 0 0 35%;
    max-width: 400px;
    margin: 0 auto;
}

.ph-maquette.fade-in {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 1.4s ease-out 0.2s, transform 1.4s ease-out 0.2s;
}

.ph-maquette.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.maquette-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 0.5px rgba(255, 255, 255, 0.04);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.maquette-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 0 0.5px rgba(255, 255, 255, 0.08);
}

.maquette-frame img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0.92) contrast(1.04);
    transition: filter 0.5s ease;
}

.maquette-frame:hover img {
    filter: brightness(1) contrast(1.04);
}

.maquette-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.8rem 1.4rem;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.85) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.maq-title {
    font-family: var(--font-body), serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.maq-detail {
    font-family: var(--font-ui), sans-serif;
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.ph-cta-section {
    min-height: 80vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 6%;
    position: relative;
}

.ph-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 0.5px;
    background: linear-gradient(to right, transparent, rgba(149, 8, 8, 0.5), rgba(255, 255, 255, 0.1), transparent);
}

.ph-cta-inner {
    max-width: 860px;
    width: 100%;
}

.cta-eyebrow {
    display: block;
    font-family: var(--font-ui), sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #950808;
    margin-bottom: 1.5rem;
}

.ph-cta-title {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    color: #ffffff;
    font-weight: normal;
    line-height: 1.05;
    margin-bottom: 1.8rem;
}

.ph-cta-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.ph-cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #950808;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-ui), sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    border-radius: 2px;
    border: 0.5px solid #950808;
    transition: all 0.4s ease;
}

.btn-cta-primary:hover {
    background: transparent;
    box-shadow: 0 0 30px rgba(149, 8, 8, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-ui), sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    border-radius: 2px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.ph-cta-divider {
    height: 0.5px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin: 4.5rem 0;
}

.ph-cta-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.cta-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-detail-num {
    font-family: var(--font-body), serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

.cta-detail-label {
    font-family: var(--font-ui), sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.cta-detail-sep {
    width: 0.5px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .ph-section {
        flex-direction: column !important;
        padding: 100px 5% 60px;
        gap: 3rem;
        min-height: auto;
    }

    .ph-content,
    .ph-maquette {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ph-title {
        font-size: 2.6rem;
    }

    .ph-cta-title {
        font-size: 2.6rem;
    }

    .ph-cta-detail {
        gap: 1.5rem;
    }

    .cta-detail-num {
        font-size: 2.2rem;
    }

    .maquette-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}