.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

.quote {
    font-style: italic;
    color: #8b5e34;
    font-size: 20px;
}

/* philosophy */

.philosophy {
    padding: 80px 20px;
    background: #fff;
}

.philosophy-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.philosophy-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.philosophy-header p {
    color: #666;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.philosophy-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    margin-bottom: 10px;
}

/* icon */

.icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border-radius: 50%;
}

/* sustainability */

.sustainability {
    padding: 80px 20px;
    text-align: center;
}

.sustainability h2 {
    font-size: 36px;
}

.sustain-text {
    max-width: 700px;
    margin: 20px auto 40px;
    color: #555;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: auto;
    gap: 30px;
}

.number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #5a3b1e;
}

.label {
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
}

/* responsive */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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