﻿.about-hero {
    min-height: 70vh;
    position: relative;
    background: var(--clay-dark);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clay-dark) 0%, #2d4a63 40%, #1e3347 100%);
    opacity: 0.97;
}

.about-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.03) 79px, rgba(255,255,255,0.03) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.03) 79px, rgba(255,255,255,0.03) 80px);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

    .about-hero-content .section-tag {
        color: rgba(255,255,255,0.4);
    }

        .about-hero-content .section-tag::before {
            background: rgba(255,255,255,0.4);
        }

.about-hero h2 {
    color: var(--white);
    font-size: clamp(3rem, 5vw, 5rem);
}

    .about-hero h2 em {
        color: rgba(255,255,255,0.4);
    }

.about-hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 560px;
    margin-top: 1.5rem;
}

.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--light);
    min-height: 600px;
}

.about-body-left {
    padding: 6rem 4rem;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .about-body-left p {
        font-size: 1rem;
        line-height: 1.85;
        color: var(--mid);
        margin-bottom: 1.5rem;
    }

        .about-body-left p strong {
            color: var(--black);
            font-weight: 500;
        }

.about-body-right {
    background: var(--black);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-body-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    opacity: 0.9;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--light);
    margin-top: 1px;
}

.value-card {
    background: var(--bg);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    border-top: 3px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

    .value-card:hover {
        background: var(--sage-light);
        border-top-color: var(--sage);
    }

.value-icon {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.value-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--mid);
}

.about-team {
    padding: 8rem 4rem;
    background: var(--sage-light);
}

.about-team-intro {
    max-width: 560px;
    margin-bottom: 4rem;
}

    .about-team-intro p {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--mid);
        margin-top: 1rem;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--light);
}

.team-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #d8d8d8 0%, #b8b8b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 4rem;
    color: #aaa;
}

.team-info {
    padding: 1.5rem 0 0;
}

.team-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
}

.team-role {
    font-size: 0.75rem;
    color: var(--mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}
