

img { max-width: 100%; display: block; }
.reveal {
    transform: translateY(28px);
    transition: transform 0.65s ease;
}
.reveal.visible { transform: translateY(0); }

.reveal-left {
    transform: translateX(-45px);
    transition: transform 0.65s ease;
}
.reveal-left.visible { transform: translateX(0); }

.reveal-right {
    transform: translateX(45px);
    transition: transform 0.65s ease;
}
.reveal-right.visible { transform: translateX(0); }

/* =============================================
   EYEBROW LABEL
   ============================================= */
.eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #e68c82;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* =============================================
   OUR STORY
   ============================================= */
.story-sec {
    padding: 90px 0 80px;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 22px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 420px;
    margin-bottom: 38px;
}

.accent {
    font-style: italic;
    color: #e68c82;
}

/* 4 icon row */
.story-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.story-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid #e68c82;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e68c82;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.story-icon-item:hover .icon-circle {
    background: #e68c82;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(229, 147, 138, 0.3);
}

.story-icon-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Story image */
.story-image img {
    border-radius: 18px;
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
    box-shadow: 0 16px 50px rgba(229, 147, 138, 0.18);
}

/* =============================================
   OUR PROMISE
   ============================================= */
.promise-sec {
    padding: 50px 0 50px;
    background: var(--white);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #fbeee9;
    border-radius: 10px;
    overflow: hidden;
}

.promise-image {
    position: relative;
    min-height: 520px;
}

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

.promise-text {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promise-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 22px;
    color: var(--text-dark);
}

.promise-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Founder signature */
.founder-sig {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sig-script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-dark);
    line-height: 1;
}

.sig-script i {
    color: #e68c82;
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 4px;
}

.sig-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-sec {
    padding: 50px 0 80px;
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 55px;
}

.why-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Diamond divider */
.divider-diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.diamond-line {
    display: block;
    width: 60px;
    height: 1px;
    background: #f5cfc9;
}

.diamond-icon {
    color: #e68c82;
    font-size: 0.5rem;
}

/* 4-column cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #fdf7f4;
    border-radius: 16px;
    padding: 38px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(229, 147, 138, 0.18);
}

.why-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1.5px solid #f5cfc9;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e68c82;
    font-size: 1.3rem;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: #e68c82;
    color: var(--white);
}

.why-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   STATS
   ============================================= */
.stats-sec {
    background: #fbeee9;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-floral {
    /* position: absolute; */
    /* left: 0; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* pointer-events: none; */
}

.floral-img {
    width: 180px;
    opacity: 0.85;
}

.stats-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 20px; */
    /* position: relative; */
    /* z-index: 1; */
    /* padding-left: 160px; */ /* offset for floral */
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    font-size: 1.5rem;
    color: #e68c82;
    margin-bottom: 6px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-sec {
    /*background-image: url('../images/bg-img.png');*/
    background: linear-gradient(rgb(252 224 224 / 30%), rgb(253 236 236 / 30%)), url(../images/bg-img.png) left center / contain no-repeat;
    padding: 55px 0;
    border-top: 1px solid #f3e6e1;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.newsletter-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.newsletter-form {
    /* display: flex; */
    /* gap: 0; */
    /* border: 1.5px solid #ddd; */
    /* border-radius: 4px; */
    /* overflow: hidden; */
    /* max-width: 480px; */
}
.newsletter-form a  {
    display: inline-block;
    padding: 14px 35px;
    background-color: #e68c82;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    border: 1px solid #e68c82;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-form a:hover {
    background-color: transparent;
    color: #e68c82;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .story-grid,
    .promise-grid,
    .newsletter-grid {
        grid-template-columns: 1fr;
    }

    .story-grid { gap: 40px; }

    .promise-image {
        min-height: 360px;
    }

    .promise-text {
        padding: 45px 35px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
    }

    .stats-floral { display: none; }

    .story-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero { height: 200px; }

    .story-sec,
    .promise-sec,
    .why-sec { padding: 60px 0; }

    .story-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .story-image img {
        /* height: 280px; */
    }

    .promise-image { min-height: 280px; }

    .promise-text {padding: 32px 24px;text-align: center;}

    .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

    .why-card { padding: 28px 16px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    .newsletter-grid {grid-template-columns: 1fr;gap: 24px;text-align: center;}

    .newsletter-form {
        flex-direction: column;
        border-radius: 8px;
        border: navajowhite;
    }

   
    .newsletter-form a {
        width: 100%;
        margin: 8px;
        border: navajowhite;
        border-radius: 0;
    }
    .efwef_tri {
  
    flex-direction: column;
}
}
