/* ================= ABOUT PAGE ================= */

.jk-about-page {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 12%, rgba(155, 18, 38, .45), transparent 34%),
        radial-gradient(circle at 10% 55%, rgba(202, 164, 95, .18), transparent 28%),
        linear-gradient(180deg, #070707 0%, #0b0b0b 45%, #050505 100%);
}

.jk-about-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
}

.jk-about-container {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

/* ================= COMMON ================= */

.jk-about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 14px;
    border: 1px solid rgba(202, 164, 95, .35);
    border-radius: 999px;
    background: rgba(202, 164, 95, .08);
    color: #d8b76f;
    font-size: 12px;
    font-weight: 700;
}

.jk-about-section-title {
    margin-top: 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -.8px;
}

.jk-about-section-title span {
    color: #d8b76f;
}

.jk-about-section-text {
    max-width: 720px;
    margin: 18px auto 0;
    color: #b8b8b8;
    font-size: 15px;
    line-height: 2.1;
}

/* ================= HERO ================= */

.jk-about-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 120px 0 90px;
}

.jk-about-hero__content {
    max-width: 660px;
    margin-inline-start: auto;
    text-align: right;
}

.jk-about-hero__title {
    margin-top: 16px;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -1.2px;
}

.jk-about-hero__title span {
    color: #d8b76f;
}

.jk-about-hero__text {
    margin-top: 22px;
    max-width: 620px;
    color: #c9c9c9;
    font-size: 16px;
    line-height: 2.15;
}

.jk-about-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.jk-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.jk-about-btn--gold {
    background: linear-gradient(135deg, #e0bd65, #b98b29);
    color: #111;
}

.jk-about-btn--dark {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.jk-about-btn:hover {
    transform: translateY(-2px);
}

/* ================= STORY ================= */

.jk-about-story {
    padding: 90px 0 70px;
    text-align: center;
}

.jk-about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
}

.jk-about-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
        rgba(18,18,18,.82);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
    text-align: right;
}

.jk-about-card::after {
    content: "";
    position: absolute;
    inset-inline-end: -80px;
    top: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(202, 164, 95, .16);
    filter: blur(8px);
}

.jk-about-card__num {
    display: inline-flex;
    margin-bottom: 22px;
    color: #d8b76f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.jk-about-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 900;
}

.jk-about-card p {
    position: relative;
    z-index: 2;
    color: #c7c7c7;
    font-size: 15px;
    line-height: 2;
}

.jk-about-card--gold {
    background:
        linear-gradient(135deg, rgba(224, 189, 101, .95), rgba(126, 83, 24, .95)),
        #caa45f;
    color: #111;
}

.jk-about-card--gold .jk-about-card__num,
.jk-about-card--gold p {
    color: rgba(0,0,0,.76);
}

/* ================= GALLERY ================= */

.jk-about-gallery {
    padding: 95px 0;
    text-align: center;
}

.jk-about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.jk-about-gallery-item {
    position: relative;
    overflow: hidden;
    height: 310px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    box-shadow: 0 28px 70px rgba(0,0,0,.26);
}

.jk-about-gallery-item:nth-child(2) {
    transform: translateY(34px);
}

.jk-about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s ease;
    filter: saturate(.9) contrast(1.05);
}

.jk-about-gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82));
}

.jk-about-gallery-item:hover img {
    transform: scale(1.08);
}

.jk-about-gallery-item figcaption {
    position: absolute;
    z-index: 2;
    inset-inline: 20px;
    bottom: 18px;
    text-align: right;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.jk-gallery-empty {
    margin-top: 48px;
    padding: 60px 24px;
    border: 1px dashed rgba(202, 164, 95, .35);
    border-radius: 26px;
    background: rgba(255,255,255,.04);
    color: #b9b9b9;
}

.jk-gallery-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
}

/* ================= STATS ================= */

.jk-about-stats {
    padding: 70px 0;
    border-block: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
}

.jk-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.jk-about-stat {
    padding: 28px 16px;
    border-radius: 22px;
    background: rgba(0,0,0,.22);
    text-align: center;
}

.jk-about-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #d8b76f;
    font-size: 40px;
    font-weight: 950;
}

.jk-about-stat span {
    color: #bdbdbd;
    font-size: 13px;
    font-weight: 700;
}

/* ================= ENDING ================= */

.jk-about-ending {
    padding: 100px 0 120px;
    text-align: center;
}

.jk-about-ending-box {
    max-width: 820px;
    margin: 0 auto;
    color: #d2d2d2;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    line-height: 2;
}

.jk-about-ending-line {
    width: 86px;
    height: 2px;
    margin: 34px auto 0;
    border-radius: 999px;
    background: #d8b76f;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .jk-about-hero {
        min-height: auto;
        padding: 105px 0 70px;
    }

    .jk-about-hero__content {
        margin: 0 auto;
        text-align: center;
    }

    .jk-about-actions {
        justify-content: center;
    }

    .jk-about-story-grid,
    .jk-about-gallery-grid,
    .jk-about-stats-grid {
        grid-template-columns: 1fr;
    }

    .jk-about-gallery-item:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 520px) {
    .jk-about-actions {
        flex-direction: column;
    }

    .jk-about-btn {
        width: 100%;
    }

    .jk-about-gallery-item {
        height: 240px;
    }
}
