.team-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.team-hero__image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.team-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 74, 62, 0.85) 0%, rgba(45, 74, 62, 0.4) 100%);
}

.team-hero__content {
    position: relative;
    z-index: 1;
    padding: var(--space-12) 0;
    color: var(--color-text-light);
}

.team-hero__title {
    font-size: var(--text-4xl);
    color: var(--color-text-light);
    margin-bottom: var(--space-5);
}

.team-hero__subtitle {
    font-size: var(--text-xl);
    line-height: var(--line-height-relaxed);
    opacity: 0.95;
}

.team-members {
    padding: var(--space-12) 0;
    background-color: var(--color-background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: var(--space-6);
}

.team-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.team-card__image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-background-alt);
}

.team-card__image-wrapper--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image {
    transform: scale(1.05);
}

.team-card__initials {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-text-light);
    opacity: 0.9;
}

.team-card__content {
    padding: var(--space-6);
}

.team-card__name {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
    color: var(--color-primary);
}

.team-card__role {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.team-card__bio {
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.philosophy {
    padding: var(--space-12) 0;
    background-color: var(--color-background-alt);
}

.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.philosophy__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy__image {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy__title {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-5);
}

.philosophy__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.philosophy__text {
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
}

.methodology {
    padding: var(--space-12) 0;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-align: center;
}

.methodology__title {
    color: var(--color-text-light);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-5);
}

.methodology__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
    opacity: 0.95;
}

.culture {
    padding: var(--space-12) 0;
    background-color: var(--color-background);
}

.culture__card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.culture__title {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.culture__text {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.careers {
    padding: var(--space-12) 0;
    background-color: var(--color-background-alt);
    text-align: center;
}

.careers__title {
    color: var(--color-primary);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.careers__text {
    max-width: 700px;
    margin: 0 auto var(--space-6);
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
}

.careers__cta {
    margin-top: var(--space-2);
}

.cta-section {
    padding: var(--space-12) 0;
    background-color: var(--color-surface);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.cta-section__title {
    color: var(--color-primary);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.cta-section__text {
    max-width: 700px;
    margin: 0 auto var(--space-6);
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
}

@media (max-width: 968px) {
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .team-hero__title {
        font-size: var(--text-3xl);
    }
    
    .team-hero__subtitle {
        font-size: var(--text-lg);
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-hero {
        min-height: 50vh;
    }
    
    .team-hero__content {
        padding: var(--space-8) 0;
    }
}