/* ============================================ */
/* ABOUT SECTION - COMPACT LAYOUT              */
/* Optimized for 100% zoom viewport fit        */
/* ============================================ */

.about {
    padding: 50px 0; /* Reduced from typical 80-100px */
    background: white;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* ABOUT CONTENT LAYOUT                         */
/* ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reduced gap */
    align-items: start;
}

/* ============================================ */
/* TEXT CONTENT                                 */
/* ============================================ */

.about-text h2 {
    color: var(--brand-brown-dark);
    font-size: 2rem; /* Reduced from 2.5rem */
    margin-bottom: 20px; /* Reduced from 30px */
}

.about-text p {
    color: #555;
    line-height: 1.5; /* Tighter from 1.6-1.8 */
    margin-bottom: 15px; /* Reduced from 20px */
    font-size: 0.95rem; /* Slightly smaller */
}

.about-text p:last-of-type {
    margin-bottom: 25px; /* Reduced from 30px */
}

/* ============================================ */
/* AWARDS/COMMISSIONS SECTION                   */
/* ============================================ */

.awards {
    background: var(--bg-light-parchment);
    padding: 20px 25px; /* Reduced from 30px */
    border-radius: 10px;
    border-left: 4px solid var(--brand-brown-medium);
    margin-top: 15px; /* Reduced from 20px */
}

.awards h3 {
    color: var(--brand-brown-dark);
    font-size: 1.3rem; /* Reduced from 1.5rem */
    margin-bottom: 15px; /* Reduced from 20px */
}

.awards ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards ul li {
    padding: 6px 0; /* Reduced from 10px */
    color: #555;
    font-size: 0.9rem; /* Reduced from 1rem */
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.awards ul li::before {
    flex-shrink: 0;
    font-size: 1.1rem; /* Slightly smaller emoji */
}

/* ============================================ */
/* ABOUT IMAGE                                  */
/* ============================================ */

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 450px; /* Reduced from 500px+ */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
}

/* ============================================ */
/* RESPONSIVE DESIGN                            */
/* ============================================ */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1; /* Image first on mobile */
    }

    .about-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .awards {
        padding: 18px 20px;
        margin-top: 12px;
    }

    .awards h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .awards ul li {
        padding: 5px 0;
        font-size: 0.88rem;
    }

    .about-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 35px 0;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .awards {
        padding: 16px 18px;
    }

    .awards h3 {
        font-size: 1.1rem;
    }

    .awards ul li {
        font-size: 0.85rem;
    }
}