.team-hero {
    position: relative;
    min-height: 60vh;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("/img/team/team-banner.jpg")
        center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1950px;
    padding: 50px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.team-hero h1 {
    font-size: clamp(3rem,7vw,5rem);
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.team-intro h2 {
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.team-card {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: top;
}

.team-info {
    padding: 35px;
}

.team-info h3 {
    font-size: 2rem;
}

.team-info .title {
    color: #b99665;
    font-weight: 700;
    margin: 12px 0 20px;
}

.promise {
    background: #f7f7f7;
    text-align: center;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-top: 50px;
}

.contact-cta {
    text-align: center;
    padding: 100px 20px;
}

.contact-cta h2 {
    margin-bottom: 35px;
}

@media (max-width:900px) {
    .team-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .team-card img {
        height: 500px;
    }
}