/*=========================================
ABOUT SECTION — Home
Matches design: image left, content right
=========================================*/

.about-section{
    position:relative;
    padding:110px 0;
    background:#FDFCF8;
    overflow:hidden;
}

.about-row{
    row-gap:40px;
}

/* Left image */

.about-image{
    border-radius:0;
    overflow:hidden;
    height:100%;
    min-height:560px;
}

.about-image img{
    width:100%;
    height:100%;
    min-height:560px;
    object-fit:cover;
    display:block;
}

/* Right content */

.about-content{
    position:relative;
    padding-left:50px;
    max-width:640px;
}

/* Label: leaf + lines + ABOUT ME */

.about-label{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.about-label-icon{
    color:#C59D5F;
    font-size:18px;
    line-height:1;
}

.about-label-line{
    display:inline-block;
    width:42px;
    height:1px;
    background:#C59D5F;
    flex-shrink:0;
}

.about-label-text{
    font-family:'Manrope',sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#C59D5F;
    white-space:nowrap;
}

/* Title */

.about-title{
    margin:0 0 22px;
    color:#2D392B;
    line-height:1.05;
}

.about-title-meet{
    display:block;
    position:relative;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(36px, 4vw, 48px);
    font-weight:500;
    margin-bottom:4px;
    padding-bottom:14px;
    width:fit-content;
}

.about-title-meet::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:2px;
    background:#C59D5F;
}

.about-title-name{
    display:block;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(40px, 5vw, 56px);
    font-weight:600;
    color:#2D392B;
}

/* UK badge */

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:0 0 28px;
    padding:10px 18px;
    border-radius:50px;
    background:#ECECEC;
    color:#333;
    font-size:14px;
    font-weight:500;
}

.about-flag{
    width:22px;
    height:22px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    display:inline-flex;
    box-shadow:0 1px 3px rgba(0,0,0,.12);
}

.about-flag svg{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.35);
}

/* Credentials grid */

.about-credentials{
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:28px;
    row-gap:18px;
    margin-bottom:28px;
}

.credential-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.credential-icon{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    background:#3A3A3A;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

.credential-item span:last-child{
    font-family:'Manrope',sans-serif;
    font-size:14px;
    font-weight:500;
    color:#333;
    line-height:1.35;
}

.about-divider{
    width:100%;
    height:1px;
    background:rgba(0,0,0,.08);
    margin:0 0 28px;
}

/* Body text */

.about-text p{
    font-size:15.5px;
    line-height:1.9;
    color:#333;
    margin-bottom:16px;
    max-width:100%;
}

.about-text p:last-child{
    margin-bottom:0;
}

/* CTA */

.about-btn{
    margin-top:28px;
    gap:8px;
    background:#C59D5F;
    border-color:#C59D5F;
    padding:14px 32px;
}

.about-btn:hover{
    background:#a77d3d;
    border-color:#a77d3d;
    color:#fff;
}

.about-btn i{
    font-size:14px;
    transition:.3s;
}

.about-btn:hover i{
    transform:translateX(3px);
}

/* Flower decoration */

.about-flower{
    position:absolute;
    right:-10px;
    bottom:-40px;
    width:160px;
    opacity:.45;
    pointer-events:none;
    z-index:0;
}

.about-content > *:not(.about-flower){
    position:relative;
    z-index:1;
}

/* Responsive */

@media(max-width:1199px){

.about-content{
    padding-left:30px;
}

.about-image,
.about-image img{
    min-height:500px;
}

}

@media(max-width:991px){

.about-section{
    padding:80px 0;
}

.about-content{
    padding-left:0;
    max-width:100%;
}

.about-image,
.about-image img{
    min-height:420px;
    border-radius:4px;
}

.about-flower{
    width:120px;
    opacity:.35;
}

}

@media(max-width:767px){

.about-section{
    padding:60px 0;
}

.about-image,
.about-image img{
    min-height:340px;
}

.about-credentials{
    grid-template-columns:1fr;
    row-gap:16px;
}

.about-label-line{
    width:28px;
}

.about-title-name{
    font-size:36px;
}

.about-title-meet{
    font-size:32px;
}

.about-badge{
    width:100%;
    justify-content:flex-start;
}

.about-flower{
    display:none;
}

}
