
        .cf-wrap {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .cf-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(24px);
            animation: cf-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .cf-kicker {
            font-size: 12px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
            display: block;
            margin-bottom: 14px;
        }

        .cf-head h2 {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
            font-size: clamp(34px, 5.2vw, 54px);
            line-height: 1;
            letter-spacing: -0.01em;
        }

        .cf-hint {
            font-size: 13px;
            color: var(--muted);
            padding-bottom: 6px;
            text-align: right;
        }

        @keyframes cf-fade-up {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cf-stage {
            position: relative;
            height: 480px;
            margin-top: 40px;
            perspective: 2000px;
            opacity: 0;
            transform: scale(0.96);
            animation: cf-stage-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.15s;
        }

        @keyframes cf-stage-in {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .cf-track {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }

        .cf-card {
            position: absolute;
            width: 320px;
            height: 440px;
            border-radius: 10px;
            background: #111;
            border: 1px solid var(--line);
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            display: block;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, border-color 0.4s ease, box-shadow 0.5s ease;
            box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
            will-change: transform;
        }

        .cf-card.is-active {
            border-color: var(--line-strong);
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.85);
        }

        .cf-visual {
            position: absolute;
            inset: 0;
        }

        .cf-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(75%) brightness(0.48) contrast(1.08);
            transition: filter 0.7s ease, transform 8s linear;
        }

        .cf-card.is-active .cf-visual img {
            filter: grayscale(0%) brightness(0.95) contrast(1.05);
        }

        .cf-card-fade {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 20%, rgba(10, 10, 10, 0.55) 65%, rgba(10, 10, 10, 0.95) 100%);
        }

        .cf-serial {
            position: absolute;
            top: 20px;
            left: 20px;
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 13px;
            color: rgba(242, 241, 237, 0.55);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .cf-card.is-active .cf-serial {
            opacity: 1;
        }

        .cf-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 26px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .cf-card.is-active .cf-caption {
            opacity: 1;
            transform: translateY(0);
        }

        .cf-label {
            font-size: 10.5px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(242, 241, 237, 0.6);
            display: block;
            margin-bottom: 8px;
        }

        .cf-name {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-size: 26px;
            line-height: 1.05;
            margin-bottom: 14px;
        }

        .cf-cta {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12.5px;
            color: var(--ink);
            font-weight: 500;
            position: relative;
        }

        .cf-cta .cf-cta-line {
            position: absolute;
            left: 0;
            bottom: -3px;
            height: 1px;
            width: 100%;
            background: var(--ink);
            transform: scaleX(0.3);
            transform-origin: left;
            transition: transform 0.4s ease;
            opacity: 0.5;
        }

        .cf-card.is-active:hover .cf-cta-line {
            transform: scaleX(1);
            opacity: 1;
        }

        .cf-cta svg {
            width: 11px;
            height: 11px;
            flex-shrink: 0;
        }

        .cf-veil {
            position: absolute;
            inset: 0;
            background: rgba(10, 10, 10, 0.35);
            opacity: 1;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .cf-card.is-active .cf-veil {
            opacity: 0;
        }

        .cf-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 26px;
            margin-top: 46px;
        }

        .cf-arrow {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid var(--line);
            background: transparent;
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
        }

        .cf-arrow:hover {
            border-color: var(--line-strong);
            background: rgba(242, 241, 237, 0.05);
        }

        .cf-arrow:active {
            transform: scale(0.92);
        }

        .cf-arrow svg {
            width: 16px;
            height: 16px;
        }

        .cf-dots {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cf-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(242, 241, 237, 0.25);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
        }

        .cf-dot.is-active {
            background: var(--ink);
            width: 20px;
            border-radius: 3px;
        }

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

/* Laptop */
@media (max-width:1200px){
    .cf-wrap{
        max-width:100%;
        padding:0 20px;
    }

    .cf-stage{
        height:450px;
    }

    .cf-card{
        width:290px;
        height:400px;
    }
}

/* Tablet */
@media (max-width:991px){

    .cf-wrap{
        padding:0 18px;
    }

    .cf-head{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .cf-hint{
        display:none;
    }

    .cf-stage{
        height:420px;
        margin-top:30px;
    }

    .cf-card{
        width:260px;
        height:360px;
    }

    .cf-caption{
        padding:20px;
    }

    .cf-controls{
        margin-top:30px;
    }
}

/* Mobile */
@media (max-width:767px){

    .cf-wrap{
        padding:0 15px;
    }

    .cf-head h2{
        font-size:34px;
    }

    .cf-kicker{
        font-size:11px;
        margin-bottom:8px;
    }

    .cf-stage{
        height:380px;
        perspective:1200px;
        margin-top:20px;
    }

    .cf-card{
        width:220px;
        height:320px;
        border-radius:8px;
    }

    .cf-caption{
        padding:16px;
    }

    .cf-cta{
        font-size:11px;
        gap:5px;
    }

    .cf-cta svg{
        width:10px;
        height:10px;
    }

    .cf-controls{
        gap:14px;
        margin-top:24px;
    }

    .cf-arrow{
        width:38px;
        height:38px;
    }

    .cf-arrow svg{
        width:14px;
        height:14px;
    }

    .cf-dot{
        width:5px;
        height:5px;
    }

    .cf-dot.is-active{
        width:16px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .cf-wrap{
        padding:0 12px;
    }

    .cf-head h2{
        font-size:30px;
    }

    .cf-stage{
        height:340px;
    }

    .cf-card{
        width:190px;
        height:280px;
    }

    .cf-caption{
        padding:14px;
    }

    .cf-cta{
        font-size:10px;
    }

    .cf-controls{
        margin-top:18px;
        gap:12px;
    }

    .cf-arrow{
        width:34px;
        height:34px;
    }

    .cf-arrow svg{
        width:13px;
        height:13px;
    }
}

/* Extra Small Devices */
@media (max-width:360px){

    .cf-stage{
        height:300px;
    }

    .cf-card{
        width:170px;
        height:250px;
    }

    .cf-caption{
        padding:12px;
    }

    .cf-cta{
        font-size:9px;
    }
}
        @media (max-width:768px){

    .cf-wrap{
        padding:0 12px;
        overflow:hidden;
    }

    .cf-stage{
        height:340px;
        margin-top:100px;
        overflow:hidden;
        perspective:900px;
    }

    .cf-track{
        width:100%;
        height:100%;
    }

    .cf-card{
        width:240px;
        height:330px;
        border-radius:8px;
    }

    .cf-caption{
        opacity:1 !important;
        transform:none !important;
        padding:12px;
    }

    .cf-cta{
        font-size:10px;
    }

    .cf-controls{
        margin-top:18px;
    }

    .cf-arrow{
        width:34px;
        height:34px;
    }
}