.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .35) 0%,
            rgba(0, 0, 0, .15) 40%,
            rgba(0, 0, 0, .65) 100%);
}

.stage-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8%;
    text-align: center;
    padding: 0 6%;
    opacity: 0;
    will-change: opacity, transform;
}

.stage-caption h3 {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin: 0 0 .4rem;
}

.stage-caption p {
    color: rgba(255, 255, 255, .85);
    font-size: clamp(.8rem, 1.1vw, .95rem);
    line-height: 1.4;
    margin: 0;
}

.eyebrow {
    position: absolute;
    left: 6%;
    bottom: 10%;
    color: #fff;
}

/* ==========================================================
                    ABOUT SECTION
========================================================== */

.about-section {
    position: relative;
    padding: 140px 0;
    background: #EEF3EB;
    overflow: hidden;
}

/* subtle background decoration */

.about-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -120px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(81, 126, 29, .08),
            transparent 70%);

    pointer-events: none;
}

.about-section::after {

    content: "";

    position: absolute;

    bottom: -250px;

    left: -150px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(81, 126, 29, .05),
            transparent 70%);

    pointer-events: none;

}

.container {

    width: min(1400px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;
}

/* ==========================================================
                    HEADER
========================================================== */

.about-header {

    text-align: center;

    max-width: 860px;

    margin: auto auto 90px;
}

.about-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 24px;

    border-radius: 100px;

    background: var(--color-primary);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 24px;
}

.about-header h2 {

    font-size: clamp(32px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
}

.about-header h2 span {

    display: block;

    font-style: italic;
    font-size: 50px;
    font-family: Georgia, serif;

    font-weight: 400;
    color: var(--color-primary);
}

.about-header p {

    max-width: 700px;

    margin: 24px auto 0;

    color: #667085;

    font-size: 18px;

    line-height: 1.8;
}

/* ==========================================================
                    GRID
========================================================== */

.about-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 36px;

    align-items: stretch;
}

/* ==========================================================
                    CARD
========================================================== */

.about-card {

    display: flex;
    flex-direction: column;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid #E7ECE8;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

    transition: .4s;

    opacity: 1;

    transform: none;

}


.about-card:hover {

    transform: translateY(-12px);

    border-color: color-mix(in srgb, var(--color-primary) 45%, transparent);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, .12);
}

.about-card.featured:hover {

    transform: translateY(-28px);
}

/* ==========================================================
                    IMAGE
========================================================== */

.about-image {

    position: relative;

    height: 280px;

    overflow: hidden;
}

.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.about-card:hover img {

    transform: scale(1.08);
}

.about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .08),
            transparent 55%);
}

/* ==========================================================
                    CONTENT
========================================================== */

.about-content {

    padding: 34px;

    display: flex;

    flex-direction: column;

    flex: 1;
    background-color: #EEF3EB;
}

.about-content span {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--color-primary);

    color: #fff;

    font-weight: 700;

    margin-bottom: 22px;

    flex-shrink: 0;
}

.about-content h3 {

    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1.25;

    font-weight: 700;
    color: #111827;
}

.about-content p {

    color: #6B7280;

    line-height: 1.85;

    font-size: 15px;

    flex: 1;
}

/* ==========================================================
                    HOVER BORDER
========================================================== */

.about-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 28px;

    pointer-events: none;
}

/* ==========================================================
                    RESPONSIVE
   Single breakpoint drop straight to 1 column below 1024px —
   avoids the awkward "2 cards + 1 lonely orphan card" tablet
   layout, and gives mobile the most room to breathe.
========================================================== */

@media (max-width: 1023px) {

    .about-section {
        padding: 90px 0;
    }

    .about-section::before {
        width: 320px;
        height: 320px;
        top: -120px;
        right: -100px;
    }

    .about-section::after {
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -110px;
    }

    .about-header {
        margin-bottom: 52px;
    }

    .about-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        max-width: 520px;
        margin: 0 auto;
    }

    .about-card.featured {
        margin-top: 0;
    }

    .about-card:hover,
    .about-card.featured:hover {
        transform: translateY(-6px);
    }

    .about-image {
        height: 220px;
    }

    .about-content {
        padding: 26px;
    }

    .about-content span {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .about-content h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width:480px) {

    .about-section {
        padding: 64px 0;

    }

    /* Section side spacing */
    .container {
        width: 90%;
        padding: 0 18px;
        box-sizing: border-box;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-card {
        width: 100%;
    }

    .about-image {
        height: 190px;
    }

    .about-content {
        padding: 24px;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }
}