.about-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background: #e8dfd2;
}

.about-hero-text,
.about-hero-image {
    flex: 1;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-hero p,
.about-section-text p,
.about-gallery p,
.about-cta p {
    line-height: 1.6;
}

.about-hero img,
.about-section img,
.about-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-section {
    display: flex;
    gap: 35px;
    padding: 50px 40px;
    align-items: center;
    background: white;
    border-bottom: 1px solid #ddd;
}

.about-section-image,
.about-section-text {
    flex: 1;
}

.about-section-text h2 {
    color: #6b4f2a;
    font-size: 2rem;
}

.about-gallery {
    padding: 50px 40px;
    background: #f8f6f2;
    text-align: center;
}

.about-gallery h2 {
    color: #6b4f2a;
    font-size: 2rem;
}

.about-gallery p {
    max-width: 760px;
    margin: 0 auto 30px auto;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1150px;
    margin: 0 auto;
}

.about-gallery-item {
    margin: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.about-gallery-item figcaption {
    padding: 14px;
    font-weight: bold;
}

.about-cta {
    text-align: center;
    padding: 55px 30px;
    background: #e8dfd2;
}

.about-cta h2 {
    font-size: 2rem;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .about-hero,
    .about-section {
        flex-direction: column;
        padding: 35px 20px;
    }

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

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

    .about-gallery {
        padding: 35px 20px;
    }
}