@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#14382F;
    --green-dark:#0C2722;
    --gold:#C6A15B;
    --beige:#F6F1E8;
    --cream:#FFFDF8;
    --soft:#EFE4D3;
    --text:#1F2F2B;
    --muted:#74695C;
    --border:rgba(198,161,91,.25);
}

body{
    font-family:"Inter",sans-serif;
    background:var(--beige);
    color:var(--text);
}

.about-hero{
    padding:110px 20px 85px;
    text-align:center;
    background:
        radial-gradient(circle at 15% 25%,rgba(198,161,91,.15),transparent 28%),
        linear-gradient(135deg,var(--cream),var(--beige));
}

.section-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:800;
}

.about-hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(58px,7vw,105px);
    color:var(--green);
    margin:18px auto;
    max-width:980px;
    line-height:.95;
}

.about-hero p{
    max-width:820px;
    margin:auto;
    color:var(--muted);
    font-size:19px;
    line-height:1.8;
}

.about-section,
.founder-section,
.mission-section,
.values-section,
.approach-section{
    padding:90px 0;
}

.founder-section,
.values-section{
    background:#F1E7D7;
}

.about-card,
.mission-card,
.value-card{
    background:white;
    border:1px solid var(--border);
    border-radius:30px;
    padding:42px;
    box-shadow:0 18px 50px rgba(20,56,47,.08);
}

.about-card h2,
.mission-card h2,
.section-heading h2{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:clamp(44px,5vw,72px);
    margin:16px 0 22px;
}

.about-card h5{
    color:var(--gold);
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.about-card p,
.mission-card p,
.value-card p{
    color:var(--muted);
    line-height:1.9;
    font-size:17px;
}

.founder-grid{
    display:grid;
    grid-template-columns:38% 62%;
    gap:42px;
    align-items:center;
}

.founder-image{
    border-radius:230px 230px 32px 32px;
    padding:14px;
    border:1px solid var(--gold);
    background:white;
    box-shadow:0 20px 60px rgba(20,56,47,.08);
}

.founder-image img{
    width:100%;
    height:590px;
    object-fit:cover;
    border-radius:210px 210px 24px 24px;
}

.mission-card{
    max-width:980px;
    margin:auto;
}

.section-heading{
    max-width:850px;
    margin:0 auto 55px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.value-card{
    height:100%;
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    width:64px;
    height:64px;
    border-radius:50%;
    background:var(--green);
    color:white;
    display:grid;
    place-items:center;
    font-size:28px;
    margin-bottom:22px;
}

.value-card h3{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:34px;
    margin-bottom:14px;
}

.approach-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin:30px 0;
}

.approach-grid div{
    background:var(--beige);
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px 20px;
    color:var(--green);
    font-weight:700;
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.approach-grid i{
    color:var(--gold);
    font-size:20px;
}

.about-cta{
    margin:70px 6% 90px;
    padding:65px 40px;
    border-radius:34px;
    background:var(--green);
    color:white;
    text-align:center;
}

.about-cta h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(44px,5vw,72px);
    margin:16px 0;
}

.about-cta p{
    max-width:720px;
    margin:0 auto 34px;
    color:#E8DCC8;
    line-height:1.8;
}

.about-cta a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:white;
    color:var(--green);
    text-decoration:none;
    font-weight:800;
    padding:16px 34px;
    border-radius:50px;
    transition:.3s;
}

.about-cta a:hover{
    background:var(--gold);
    color:var(--green-dark);
}

@media(max-width:991px){
    .founder-grid,
    .values-grid,
    .approach-grid{
        grid-template-columns:1fr;
    }

    .founder-image img{
        height:520px;
    }

    .about-section,
    .founder-section,
    .mission-section,
    .values-section,
    .approach-section{
        padding:70px 20px;
    }
}

@media(max-width:576px){
    .about-hero{
        padding:80px 20px;
    }

    .about-card,
    .mission-card,
    .value-card{
        padding:30px 22px;
    }

    .founder-image img{
        height:420px;
    }

    .about-cta{
        margin:50px 20px;
        padding:45px 24px;
    }
}