/* About / The Firm Section */
.about-section {
    padding: 80px 0;
}

.about-container {
    max-width: var(--container-max, 1140px);
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Overline */
.about-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   PHILOSOPHY — Full-width dark band
   ======================================== */

.about-philosophy {
    background-color: var(--primary);
    padding: 80px 0;
    margin-bottom: 80px;
}

.about-philosophy-inner {
    max-width: var(--container-max, 1140px);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid var(--accent);
}

.about-philosophy-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-philosophy-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px;
}

.about-philosophy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 15px;
}

.about-philosophy-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   VALUES — three columns
   ======================================== */

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-value-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.about-value-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.about-value-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   OFFICE GALLERY
   ======================================== */

.about-gallery {
    margin-top: 0;
}

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

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .gallery-grid img:hover {
        opacity: 0.9;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-philosophy-inner {
        gap: 40px;
    }

    .about-values {
        gap: 30px;
    }

    .gallery-grid img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 30px;
    }

    .about-philosophy {
        padding: 50px 0;
        margin-bottom: 50px;
    }

    .about-philosophy-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-philosophy-text h2 {
        font-size: 26px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
        margin-bottom: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }
}
