/* ─── About Us Block ──────────────────────────────────────────────────────── */
.pp-about-us {
    padding: 70px 0 0;
    background-color: var(--bgcreame);
    background-image: var(--au-bg-desktop, none);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Dark overlay when bg image is set */
.pp-about-us.has-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
    pointer-events: none;
}

.pp-about-us.has-bg-image .container,
.pp-about-us.has-bg-image .pp-about-mission {
    position: relative;
    z-index: 1;
}

/* ─── Story Row ───────────────────────────────────────────────────────────── */
.pp-about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

/* ─── Section Label ───────────────────────────────────────────────────────── */
.pp-about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--global-font-family);
    font-size:16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 50px;
    position:relative;
}
.pp-about-label::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--orange);
    border-radius: 8px;
    position: absolute;
    bottom:-10px;
    left:0;
}
.pp-about-label__squiggle svg {
    display: block;
}

/* ─── Main Heading ────────────────────────────────────────────────────────── */
.pp-about-heading{margin: 0 0 25px;}
.pp-about-heading span{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--global-font-family);    
    text-transform: capitalize;
}


.pp-about-heading__line1 {
    color: var(--blue);
}

.pp-about-heading__line2 {
    color: var(--orange);
}

.pp-about-heading__line3 {
    color: #628936;
}

.pp-about-heart {
    display: none;
    align-items: center;
    opacity: 0.9;
}

/* ─── Body Copy ───────────────────────────────────────────────────────────── */
.pp-about-body {
    color: var(--black);
}

.pp-about-body p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.pp-about-body p:last-child {
    margin-bottom: 0;
}

/* ─── Side Image ──────────────────────────────────────────────────────────── */
.pp-about-story__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-about-image-wrap {
    position: relative;
    width: 100%;    
    background: #f5efe8;   
}

.pp-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

/* ─── Feature Cards ───────────────────────────────────────────────────────── */
.pp-about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.pp-about-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 30px 30px 5px;    
    border-radius: 10px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pp-about-card:not(:last-child){border-right: 1.5px solid #e8e0d5;padding-left:0px;}

/* .pp-about-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
} */

/* .pp-about-card__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f5efe8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
} */

.pp-about-card__icon img {
    width: 350px;
    height: auto;
    object-fit: contain;
    display: block;
}

.pp-about-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 10px;
    line-height: 1.35;
    font-family: var(--global-font-family);  
}

.pp-about-card__desc {
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
    font-family: var(--global-body-font-family);  
}

/* ─── Mission Strip ───────────────────────────────────────────────────────── */
.pp-about-mission {
    background: #f9f4ed;
    border-top: 1.5px solid #e8e0d5;
    padding: 36px 0;
}

.pp-about-mission__inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

.pp-about-mission__icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
}

.pp-about-mission__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-about-mission__divider {
    flex-shrink: 0;
    width: 2px;
    height: 56px;
    background: #d6cabb;
    border-radius: 2px;
}

.pp-about-mission__text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark, #1a1a1a);
    line-height: 1.6;
    margin: 0;
}

.pp-about-mission__tagline {
    flex-shrink: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange, #E8845C);
    text-align: right;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.pp-about-mission__tagline-heart {
    display: inline-flex;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pp-about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pp-about-story__right {
        order: -1;
    }
    .pp-about-image-wrap {
        max-width: 420px;
        margin: 0 auto;
    }
    .pp-about-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pp-about-us {
        padding: 50px 0 0;
    }
    .pp-about-mission__inner {
        flex-wrap: wrap;
        gap: 18px;
    }
    .pp-about-mission__divider {
        display: none;
    }
    .pp-about-mission__tagline {
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }
    .pp-about-image-wrap {
        border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    }
    .pp-about-heading {
        font-size: 1.8rem;
    }
    .pp-about-us {
        background-image: var(--au-bg-mobile, var(--au-bg-desktop, none));
    }
}
