*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.about-hero {
    margin-top: 150px;
    width: 100%;
    height: 92vh;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 1.4s var(--ease-premium, ease);
}

.about-hero:hover img {
    transform: scale(1.03);
}

.about-text {
    background: var(--color-surface-alt, #f5f5f5);
    padding: 150px 20px;          /* big vertical spacing */
    text-align: center;
}

.about-wrapper {
    max-width: 780px;             /* narrow reading width */
    margin: 0 auto;
}

/* Title */
.about-wrapper h1 {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

/* Subtitle */
.about-wrapper h3 {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-dark, #9c7433);
    margin-bottom: 60px;
}

.about-wrapper p {
    font-size: 18px;
    line-height: 1.95;
    color: var(--color-body, #333);
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {

    .about-hero {
        margin-top: 60px; 
        height: auto;
    }

    .about-hero img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .about-text {
        padding: 70px 25px;
    }

    .about-wrapper h1 {
        font-size: 30px;
    }

    .about-wrapper h3 {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .about-wrapper p {
        font-size: 15px;
        line-height: 1.8;
    }
}

.history-section {
    padding: 10px 60px;
    background: var(--color-surface-alt, #f5f5f5);
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

/* Images Row */
.history-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: -40px;
}

.history-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--ease-premium, ease);
}

.image-left,
.image-right {
    flex: 1;
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-md, 0);
    box-shadow: var(--shadow-md);
}

.image-left:hover img,
.image-right:hover img {
    transform: scale(1.04);
}

/* Text Section */
.history-text {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.history-wrapper {
    max-width: 850px;
    text-align: center;
    margin-bottom: 50px;
}

.history-wrapper h2 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 500;
}

.history-wrapper p {
    font-size: 17px;
    line-height: 1.95;
    color: var(--color-body, #444);
    margin-bottom: 45px;
}

.history-wrapper-2 {
    max-width: 850px;
    text-align: center;
    margin-bottom: 50px;
}

.history-wrapper-2 h2 {
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.history-wrapper-2 p {
    font-size: 17px;
    line-height: 1.95;
    color: var(--color-body, #444);
    margin-bottom: 5px;
}

@media (max-width: 768px) {

    .about-hero{
        margin-top: 0px;
    }

    .history-section {
        padding: 0px 20px;
    }

    .history-images {
        flex-direction: column;
        gap: 20px;
        margin-top: -40px;
    }

    .image-left,
    .image-right {
        max-height: 350px;
    }

    .history-wrapper{
        margin-top: -20px;
    }
    .history-wrapper h2 {
        font-size: 28px;
    }

    .history-wrapper p {
        font-size: 15px;
    }
}


.founder-section{
    margin-top: -100px;
    padding: 100px 20px;
    background: var(--color-surface-alt, #f8f8f8);
    text-align: center;
}

.founder-wrapper{
    max-width: 1100px;
    margin: auto;
}

.founder-wrapper h2{
    color: var(--color-heading-accent, #0a4049);
    margin-bottom: 55px;
    font-size: 30px;
    letter-spacing: 1px;
}

.founder-container{
    display: flex;
    justify-content: center;
    gap: 130px;
    flex-wrap: wrap;
}

.founder-card{
    text-align: center;
    max-width: 250px;
    transition: transform var(--dur-med, 0.5s) var(--ease-premium, ease);
}

.founder-card:hover{
    transform: translateY(-6px);
}

.founder-card img{
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 22px;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--dur-med, 0.5s) var(--ease-premium, ease);
}

.founder-card:hover img{
    box-shadow: var(--shadow-lg);
}

.founder-card h3{
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    color: var(--color-ink, #000);
}

.founder-card p{
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent-dark, #9c7433);
}

@media (max-width: 1024px){

    .founder-container{
        gap: 40px;
    }

    .founder-card img{
        width: 180px;
        height: 180px;
    }

}

@media (max-width: 767px){

    .founder-container{
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .founder-card img{
        width: 160px;
        height: 160px;
    }

    .founder-wrapper h2{
        font-size: 26px;
    }

}