/* =========================================
   Front Page – About Section
   ========================================= */

/* ── Section wrapper ───────────────────── */
.fp-about {
    background: #f0faf4; /* very light green tint */
    position: relative;
}

/* ═══════════════════════════════════════
   STATS BRIDGE
   Cards overlap upward into the hero by
   negative margin-top on the grid wrapper
   ═══════════════════════════════════════ */
.fp-about__stats-bridge {
    position: relative;
    z-index: 10;
    margin-top: -70px; /* pull up over the hero bottom edge */
}

.fp-about__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* ── Stat card base ────────────────────── */
.fp-about__stat {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* dark (charcoal) */
.fp-about__stat--dark {
    background: #1e1e1e;
}
/* green */
.fp-about__stat--green {
    background: #2ecc71;
}
/* light / frosted */
.fp-about__stat--light {
    background: rgba(210, 230, 215, 0.75);
    backdrop-filter: blur(6px);
}

.fp-about__stat-value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: var(--font-heading, 'Parkinsans', sans-serif);
}

.fp-about__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* light card — dark text */
.fp-about__stat--light .fp-about__stat-value,
.fp-about__stat--light .fp-about__stat-label {
    color: #1a1a1a;
}

/* ═══════════════════════════════════════
   WHO WE ARE BODY
   ═══════════════════════════════════════ */
.fp-about__body {
    padding: 5rem 0 6rem;
}

.fp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Eyebrow ───────────────────────────── */
.fp-about__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.fp-about__eyebrow-icon {
    color: #2ecc71;
    font-size: 1.1rem;
    /* spinning dotted ring effect */
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border: 2px dotted #2ecc71;
    border-radius: 50%;
    font-size: 0;
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

/* ── Headline ──────────────────────────── */
.fp-about__headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin-bottom: 1.4rem;
}

.fp-about__headline-accent {
    color: #2ecc71;
}

/* ── Description ───────────────────────── */
.fp-about__desc {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* ── CTA Button ────────────────────────── */
.fp-about__cta {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fp-about__cta:hover {
    background: #2ecc71;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.35);
}

/* ═══════════════════════════════════════
   IMAGE COLLAGE (right column)
   ═══════════════════════════════════════ */
.fp-about__images {
    position: relative;
    height: 440px;
}

/* Back image — top-right, larger */
.fp-about__img--back {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    border: 4px solid #2ecc71;
    z-index: 1;
}

/* Front image — bottom-left, overlaps back */
.fp-about__img--front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);

    z-index: 2;
}

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

/* ── Dot grid decoration ───────────────── */
.fp-about__dots-deco {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #2ecc71 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.55;
    z-index: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .fp-about__stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }
    .fp-about__stats-bridge {
        margin-top: -50px;
    }
    .fp-about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .fp-about__images {
        height: 380px;
        max-width: 560px;
        margin: 0 auto;
    }
    .fp-about__desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .fp-about__stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fp-about__stats-bridge {
        margin-top: -40px;
    }
    .fp-about__body {
        padding: 4rem 0 5rem;
    }
    .fp-about__images {
        height: 300px;
    }
}
