/* About / Company Profile Page */
.section-space {
    padding: 90px 0;
}

.about-profile-hero {
    position: relative;
    padding: 120px 0 95px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(31, 106, 58, 0.28) 0%, rgba(22, 82, 45, 0.42) 50%, rgba(22, 82, 45, 0.55) 100%),
        url('../images/homephotos/1.jpeg') center/cover no-repeat;
}

.about-profile-kicker {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-profile-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.about-profile-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.12rem;
    opacity: 0.95;
}

.about-profile-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-photo {
    border-radius: 18px;
    overflow: hidden;
    border-top: 4px solid #c9a227;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.11);
    min-height: 220px;
}

.about-photo-lg {
    grid-column: span 2;
    min-height: 320px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-profile-story .section-title,
.about-profile-vmc .section-title,
.about-profile-focus .section-title {
    color: #16522d;
}

.about-profile-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-profile-mini-stats div {
    border: 1px solid rgba(31, 106, 58, 0.18);
    border-top: 4px solid #c9a227;
    border-radius: 14px;
    padding: 0.8rem 0.75rem;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
}

.about-profile-mini-stats strong {
    display: block;
    font-size: 1.4rem;
    color: #1f6a3a;
    line-height: 1.1;
    font-weight: 800;
}

.about-profile-mini-stats span {
    display: block;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 600;
    margin-top: 0.2rem;
}

.vmc-card {
    background: #ffffff;
    border: 1px solid rgba(31, 106, 58, 0.13);
    border-top: 5px solid #c9a227;
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.07);
}

.vmc-card h3 {
    color: #16522d;
    font-weight: 800;
    font-size: 1.4rem;
}

.vmc-card p {
    margin: 0;
    line-height: 1.72;
}

.focus-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    border: 1px solid rgba(31, 106, 58, 0.12);
    border-top: 5px solid #c9a227;
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.07);
}

.focus-card h4 {
    color: #16522d;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.focus-card p {
    color: #5b6574;
    margin-bottom: 0;
    line-height: 1.7;
}

.about-profile-cta {
    background: linear-gradient(135deg, #1f6a3a, #16522d);
}

.about-profile-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 72px 0;
    }

    .about-profile-hero h1 {
        font-size: 2.45rem;
    }

    .about-profile-mini-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .about-profile-hero {
        padding: 92px 0 74px;
    }

    .about-profile-hero h1 {
        font-size: 2rem;
    }

    .about-profile-hero p {
        font-size: 1rem;
    }

    .about-profile-mini-stats {
        grid-template-columns: 1fr;
    }

    .about-photo {
        min-height: 190px;
    }

    .about-photo-lg {
        min-height: 250px;
    }
}
