/* Editorial typography imports */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

.nk-about-wrapper {
    background-color: #2F3642;
    padding: 100px 5% 120px 5%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.nk-about-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 8%;
    align-items: center;
}

/* Image on the right support */
.nk-about-container.nk-img-right {
    grid-template-columns: 58% 42%;
}
.nk-about-container.nk-img-right .nk-about-col-left {
    order: 2;
}
.nk-about-container.nk-img-right .nk-about-col-right {
    order: 1;
}

/* LEFT COLUMN - IMAGE & BADGE */
.nk-about-col-left {
    position: relative;
    width: 100%;
}

.nk-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* to allow badge overlap */
    width: 100%;
    transform-origin: center;
}

.nk-studio-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nk-img-wrapper:hover .nk-studio-img {
    transform: scale(1.02);
}

/* FLOATING ACCENT BADGE */
.nk-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #C7A05A;
    color: #1F2937;
    padding: 22px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: default;
}

.nk-badge:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.nk-badge-line-1 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nk-badge-line-2 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

/* RIGHT COLUMN - CONTENT */
.nk-about-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nk-about-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #B0B8C4;
    margin-bottom: 24px;
}

.nk-about-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: #C7A05A;
}

.nk-about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0 0 35px 0;
    letter-spacing: -0.5px;
}

.nk-gold-highlight {
    color: #C7A05A;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.nk-about-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.nk-about-text {
    font-size: 16px;
    line-height: 1.75;
    color: #E2E8F0;
    margin: 0;
    font-weight: 300;
}

/* VALUES GRID */
.nk-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.nk-value-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nk-value-card:hover {
    transform: translateY(-6px);
}

.nk-val-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.nk-val-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #B0B8C4;
    margin: 0;
    font-weight: 300;
}

/* SIGNATURE */
.nk-signature {
    font-size: 24px;
    color: #C7A05A;
    letter-spacing: 0.5px;
}

/* VIEWPORT ANIMATION CLASSES */
.nk-animate-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-property: opacity, transform;
}

.nk-animate-item.nk-anim-active {
    opacity: 1;
}

/* Fade Up */
.nk-animate-item[data-anim-type="fade-up"] {
    transform: translateY(30px);
}
.nk-animate-item[data-anim-type="fade-up"].nk-anim-active {
    transform: translateY(0);
}

/* Scale Up */
.nk-animate-item[data-anim-type="scale-up"] {
    transform: scale(0.96);
}
.nk-animate-item[data-anim-type="scale-up"].nk-anim-active {
    transform: scale(1);
}

/* Slide Up Accent Badge */
.nk-animate-item[data-anim-type="slide-up"] {
    transform: translateY(40px) scale(0.95);
}
.nk-animate-item[data-anim-type="slide-up"].nk-anim-active {
    transform: translateY(0) scale(1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .nk-about-container, .nk-about-container.nk-img-right {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .nk-about-container.nk-img-right .nk-about-col-left {
        order: unset;
    }
    .nk-about-container.nk-img-right .nk-about-col-right {
        order: unset;
    }
    .nk-img-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }
    .nk-badge {
        right: 0px;
    }
    .nk-about-heading {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .nk-about-wrapper {
        padding: 80px 20px;
    }
    .nk-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        align-self: flex-start;
        display: inline-flex;
    }
    .nk-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nk-about-heading {
        font-size: 32px;
    }
}
