/* About hero */
.about-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: var(--color-dark);
    color: var(--color-white);
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.about-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero .section__title { color: var(--color-white); max-width: 600px; }
.about-hero__text {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

/* Mission/Vision */
.mv-section { padding: 5rem 0; }
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.mv-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
}
.mv-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 1rem;
    color: var(--color-black);
}
.mv-card::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.mv-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* Company photos gallery */
.gallery-section {
    padding: 5rem 0;
    background: var(--color-dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* Team section */
.team-section { padding: 5rem 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.team-card {
    text-align: center;
}
.team-card__photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}
.team-card:hover .team-card__photo { filter: grayscale(0); }
.team-card__name {
    font-family: var(--font-semibold);
    font-size: 16px;
    color: var(--color-black);
}
.team-card__role {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray-400);
    margin-top: 0.25rem;
}

/* CTA section */
.about-cta {
    background: var(--color-primary);
    padding: 4rem 0;
    text-align: center;
}
.about-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--color-black);
    margin-bottom: 1.5rem;
}
.about-cta__actions {
    display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
    .mv-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .about-hero { padding: 5rem 0 3rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .about-cta__actions { flex-direction: column; align-items: center; }
    .about-cta__actions .btn { width: 80%; }
}
