/* Estilos específicos de la página de proyectos con tu diseño */
.project-detail-hero {
    max-width: 1280px;
    margin: auto;
    padding: 80px 28px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Columna de Vídeo */
.project-video-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--soft);
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 520px;
}

/* Columna de Información */
.project-info-container {
    display: flex;
    flex-direction: column;
}

.project-info-container h1 {
    font-size: clamp(38px, 4.5vw, 62px);
    letter-spacing: -.07em;
    line-height: .98;
    margin: 0;
    font-weight: 700;
}

.project-info-container h1 em {
    font-family: Newsreader, serif;
    font-weight: 400;
    letter-spacing: -.06em;
}

.project-lede {
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Detalles del cliente */
.project-meta-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 34px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.meta-item {
    font-size: 14px;
    color: var(--ink);
}

.meta-item strong {
    font-family: "DM Mono", monospace;
    font-size: 12px;
    color: var(--muted);
    margin-right: 12px;
    letter-spacing: .05em;
}

/* Galería inferior */
.project-gallery-section {
    max-width: 1280px;
    margin: 0 auto 100px;
    padding: 0 28px;
    border-top: 1px solid var(--line);
    padding-top: 80px;
}

.project-gallery-header {
    margin-bottom: 40px;
}

.project-gallery-header h2 {
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: -.07em;
    margin: 0;
    font-weight: 700;
}

.project-gallery-header h2 em {
    font-family: Newsreader, serif;
    font-weight: 400;
    letter-spacing: -.06em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--soft);
    border: 1px solid var(--line);
    height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Responsivo para móviles */
@media (max-width: 900px) {
    .project-detail-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }
    .project-gallery-section {
        padding: 50px 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}