/* ==========================================================================
   TEAM — CINEMATIC LEADERSHIP & COLLECTIVE
   ========================================================================== */

.team-hero {
    margin-top: 100px;
}

.team-showcase {
    padding: 0 0 var(--section-padding);
}

.team-showcase__frame {
    position: relative;
    overflow: hidden;
    min-height: clamp(320px, 50vw, 560px);
    background: var(--bg-tertiary);
}

.team-showcase__frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.team-showcase__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, var(--overlay-warm) 0%, transparent 45%);
    opacity: 0.6;
}

.team-leadership {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.team-leadership__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--grid-gap);
    align-items: center;
}

.team-leadership__portrait {
    min-height: clamp(420px, 52vw, 680px);
}

.team-leadership__portrait img {
    object-position: center 18%;
}

.team-leadership__role {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.team-leadership__title {
    margin-bottom: var(--space-md);
}

.team-leadership__copy p {
    margin-bottom: 1rem;
    max-width: 52ch;
}

.team-collective {
    padding: var(--section-padding) 0 var(--space-xxl);
}

.team-collective__intro {
    max-width: 640px;
    margin-bottom: var(--space-lg);
}

.team-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap-sm);
}

.team-pillar {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-color);
}

.team-pillar h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.team-pillar p {
    font-size: 0.92rem;
}

@media (max-width: 1023px) {
    .team-leadership__grid {
        grid-template-columns: 1fr;
    }

    .team-pillars {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

@media (max-width: 767px) {
    .team-leadership__portrait {
        min-height: clamp(360px, 70vw, 480px);
    }
}
