.about-wrapper{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.about-hero{
    text-align:center;
    margin-bottom:80px;
}

.about-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:3.5rem;
    color:#2D3135;
    margin-bottom:20px;
}

.about-hero p{
    font-size:1.2rem;
    max-width:700px;
    margin:0 auto;
    color:#555;
    line-height:1.8;
}

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

.about-text h2{
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
    font-size:2.2rem;
}

.about-text p{
    line-height:1.9;
    color:#555;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.values-section{
    text-align:center;
    margin-bottom:100px;
}

.values-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:2.5rem;
    margin-bottom:50px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.value-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    font-size:30px;
    color:#C7A97B;
    margin-bottom:20px;
}

.value-card h3{
    font-family:'Cormorant Garamond',serif;
    margin-bottom:15px;
}

.cta-section{
    text-align:center;
    padding:70px;
    background:#F8F6F2;
    border-radius:25px;
}

.cta-section h2{
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.btn-cta{
    background:linear-gradient(135deg,#C7A97B,#A88B60);
    padding:15px 30px;
    border-radius:12px;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-cta:hover{
    background:#2D3135;
    color:white;
}

@media(max-width:900px){

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

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

}
