/* Founder Section Styles */
:root {
    --bg-color: #f9f6f3;   
}
.founder-section {
    margin-top: 150px;
    position: relative;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .founder-section {
        margin-top: 0px;
    }
}

.founder-bg-sections {
    display: grid;
    grid-template-rows: 60vh 40vh;
    min-height: 100vh;
}

.founder-bg-top {
    background: linear-gradient(135deg, #d4c4b0 0%, #e8ddd0 100%);
    background-image: url('/assets/media/bg-top.webp'), linear-gradient(135deg, #d4c4b0 0%, #e8ddd0 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}

.founder-bg-bottom {
   background:radial-gradient(circle at top left, #ffffff, var(--bg-color));
}

.founder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.founder-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
}

.founder-badge {
    font-size: 11px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 300;
    text-transform: uppercase;
}

.founder-badge::before {
    content: '+';
    margin-right: 8px;
}

.founder-title {
    font-size: clamp(26px, 4.5vw, 46px);
    line-height: 1.25;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
}

.founder-image-wrapper {
    width: clamp(240px, 32vw, 335px);
    height: clamp(320px, 50vw, 433px);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    border-radius: 80px 80px 0 0;
    
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
    width: 100%;
    padding: 0 80px;
}

.founder-text-block {
    max-width: 420px;
}

.founder-text-block.left {
    justify-self: start;
}

.founder-text-block.right {
    justify-self: end;
}

.founder-section-num {
    font-size: 13px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.founder-section-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    line-height: 1.9;
    color: #2a2a2a;
    text-align: justify;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .founder-bg-sections {
        grid-template-rows: 55vh 45vh;
    }

    .founder-text-grid {
        gap: 60px;
        padding: 0 40px;
    }

    .founder-image-wrapper {
        margin-bottom: 50px;
    }

    .founder-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .founder-bg-sections {
        grid-template-rows: 50vh 50vh;
    }

    .founder-text-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .founder-text-block.left,
    .founder-text-block.right {
        justify-self: center;
        text-align: center;
        max-width: 100%;
    }

    .founder-section-text {
        text-align: center;
    }

    .founder-image-wrapper {
        width: clamp(220px, 60vw, 340px);
        height: clamp(280px, 75vw, 440px);
        
        border-radius: 60px 60px 0 0;
        margin-bottom: 40px;
    }

    .founder-header {
        margin-bottom: 35px;
    }

    .founder-title {
        font-size: clamp(17px, 23px, 36px);
    }

    .founder-badge {
        font-size: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .founder-content {
        padding: 30px 15px;
    }

    .founder-text-grid {
        gap: 35px;
        padding: 0  20px;
    }

    .founder-image-wrapper {
        width: 200px;
        height: 280px;
        
        border-radius: 50px 50px 0 0;
        margin-bottom: 30px;
    }

    .founder-section-text {
        font-size: 11px;
        line-height: 1.8;
    }

    .founder-section-num {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .founder-header {
        margin-bottom: 25px;
    }
}
