.fk-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    padding: 7rem 7rem;
    background: var(--bg, #fff);
    font-family: 'Sora', system-ui, sans-serif;
    overflow: hidden;
}

/* ── LEFT ── */
.fk-about__left {
    display: flex;
    justify-content: center;
}

.fk-about__photo-wrap {
    position: relative;
    width: 380px;
    height: 460px;
    flex-shrink: 0;
}

/* Decorative blob */
.fk-about__blob {
    position: absolute;
    inset: -18px;
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite;
}

[data-theme="dark"] .fk-about__blob {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.18) 0%, rgba(6, 182, 212, 0.12) 100%);
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    }

    33% {
        border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
    }

    66% {
        border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%;
    }
}

.fk-about__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    border: 1px solid var(--border, #e8e5df);
    display: block;
}

.fk-about__photo-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px dashed var(--border, #e8e5df);
    background: var(--surface, #f7f6f3);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink3, #9a9a93);
    font-size: 13px;
}

/* Floating badges */
.fk-about__badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg, #fff);
    border: 1px solid var(--border, #e8e5df);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    animation: badgeFloat 5s ease-in-out infinite;
}

.fk-about__badge--exp {
    bottom: 30px;
    left: -40px;
    animation-delay: 0s;
}

.fk-about__badge--proj {
    top: 40px;
    right: -40px;
    animation-delay: 2.5s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.fk-about__badge-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1;
}

.fk-about__badge-txt {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink2, #4b4b46);
    line-height: 1.4;
}

/* ── RIGHT ── */
.fk-about__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1d4ed8;
    margin-bottom: 0.6rem;
}

.fk-about__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink, #111);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.fk-about__title span {
    color: #1d4ed8;
}

.fk-about__body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink2, #4b4b46);
    margin-bottom: 1rem;
    max-width: 500px;
}

.fk-about__body strong {
    color: var(--ink, #111);
    font-weight: 600;
}

/* Info grid */
.fk-about__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 1.75rem 0 2rem;
    border: 1px solid var(--border, #e8e5df);
    border-radius: 12px;
    overflow: hidden;
}

.fk-about__info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border, #e8e5df);
    border-right: 1px solid var(--border, #e8e5df);
    background: var(--surface, #f7f6f3);
    transition: background 0.2s;
}

.fk-about__info-item:nth-child(even) {
    border-right: none;
}

.fk-about__info-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.fk-about__info-item:hover {
    background: var(--bg, #fff);
}

.fk-about__info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ink3, #9a9a93);
}

.fk-about__info-value {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink, #111);
}

.fk-about__info-link {
    color: #1d4ed8;
    text-decoration: none;
    font-size: 12.5px;
}

.fk-about__info-link:hover {
    text-decoration: underline;
}

.fk-about__info-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16a34a !important;
    font-weight: 600 !important;
}

.fk-about__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* Actions */
.fk-about__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fk-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    transition: all 0.2s;
}

.fk-about__btn--primary {
    background: var(--ink, #111);
    color: #fff;
    border: 1px solid var(--ink, #111);
}

.fk-about__btn--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
}

.fk-about__btn--outline {
    background: transparent;
    color: var(--ink2, #4b4b46);
    border: 1px solid var(--border, #e8e5df);
}

.fk-about__btn--outline:hover {
    border-color: var(--ink, #111);
    color: var(--ink, #111);
}

/* Responsive */
@media (max-width: 900px) {
    .fk-about {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 3.5rem;
    }

    .fk-about__left {
        justify-content: center;
    }

    .fk-about__photo-wrap {
        width: 300px;
        height: 360px;
    }

    .fk-about__badge--exp {
        left: -10px;
    }

    .fk-about__badge--proj {
        right: -10px;
    }

    .fk-about__info {
        grid-template-columns: 1fr;
    }

    .fk-about__info-item {
        border-right: none;
    }

    .fk-about__info-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border, #e8e5df);
    }

    .fk-about__info-item:last-child {
        border-bottom: none;
    }
}