.page-label {
    width: 100%;
    display: block;

    text-align: left !important;

    padding-left: 20px;
    margin-bottom: 10px;

    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
}
@media (max-width: 768px) {
    .page-label {
        padding: 0 20px;
        font-size: 10px;
    }
}
/* HERO */
.hero-stylebook {
    background: #fff;
    padding: 10px 20px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
/* GARIS */
.hero-line {
    width: 100%;
    height: 2px;
    background: #cfcfcf;
    margin-bottom: 30px; /* EDIT */
}
/* CONTENT */
.hero-content {
    max-width: 800px;
    margin: 20px auto 0; /* INI KUNCI */
    text-align: center;
}
/* TITLE */
.hero-content h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    margin: 10px 0;
}

/* SUB TITLE */
.hero-content h1 span {
    font-style: italic;
    font-weight: 300;
}
/* IMAGE FULL */
.image-full {
    padding: 0 25px;
    margin: 40px 0;
}

.image-full img {
    width: 100%;
    height: 480px;     /* sedikit lebih elegan */
    object-fit: cover;
    display: block;
}

/* TEXT SECTION */
.section-text {
    padding: 60px 20px;
    text-align: center;
}

.text-inner {
    max-width: 700px;
    margin: 0 auto;
}

.text-inner p {
    font-size: 15px;
    color: #444;
}
/* SLIDER FULL */
.image-slider {
    margin: 60px 25px;
    overflow: hidden;
    position: relative; /* INI KUNCI */
}
.slider-wrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%; /* 1 gambar penuh */
}

.slide img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}
/* DOT */
.slider-dots {
    text-align: center;
    margin-top: 10px; /* jarak dari gambar */
}

.dot {
    height: 6px;
    width: 6px;
    margin: 0 5px;
    background: #bbb;
    display: inline-block;
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: #000;
}

@media (max-width: 768px) {

    .slide img {
        height: auto;   /* INI KUNCI!!! */
    }

}
/* TEXT RIGHT */
.section-text-right {
    padding: 25px 25px;
    display: flex;
    justify-content: flex-end;
}

.text-box {
    max-width: 500px;
    margin-right: 170px;
}
.text-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}
/* SECTION */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 60px 25px;

    align-items: start; /* 🔥 INI FIX */
}
/* LEFT */
.split-slider {
    position: relative;
    overflow: hidden;
}

.split-wrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.split-slide {
    min-width: 100%;
}

.split-slide img {
    width: 100%;
    height: 60vh; /* sama kayak slider atas */
    object-fit: cover;
}

/* RIGHT */
.split-right img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

/* DOT */
.split-dots {
    text-align: center;
    margin-top: 5px;
}
.split-text {
    padding: 20px 25px 80px;
    max-width: 600px;
    margin: 0 auto; /* CENTER DULU */
}
.split-text h2 {
    font-size: 24px;   /* dari 28 → 24 */
    margin-bottom: 12px;
}
.split-text p {
    font-size: 14px;   /* dari 15 → 14 */
    line-height: 1.7;
}
@media (max-width: 768px) {

    /* JADI 1 KOLOM */
    .split-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }

    /* GAMBAR FULL & NATURAL */
    .split-slide img,
    .split-right img {
        width: 100%;
        height: auto;        /* 🔥 INI KUNCI */
        object-fit: cover;
    }

    /* DOT RAPAT */
    .split-dots {
        margin-top: 5px;
    }

    /* TEXT */
    .split-text {
        margin: 0 auto;
        padding: 30px 20px;
        max-width: 100%;
        transform: none; /* reset kalau tadi pakai translate */
    }

    .split-text h2 {
        font-size: 22px;
    }

    .split-text p {
        font-size: 14px;
    }
}
/* FULL SLIDER */
.full-slider {
     margin: 40px 25px;
    overflow: hidden;
}

.full-wrapper {
    display: flex;
    transition: transform 0.7s ease;
}

.full-slide {
    min-width: 100%;
}

.full-slide img {
    width: 100%;
    height: 85vh; /* lebih tinggi dari sebelumnya */
    object-fit: cover;
}

/* DOT */
.full-dots {
    text-align: center;
    margin-top: 5px;
}

/* DOUBLE SLIDER */
.double-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 60px 25px;
}

/* ITEM */
.ds-slider {
    overflow: hidden;
    position: relative;
}

.ds-wrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.ds-slide {
    min-width: 100%;
}

.ds-slide img {
    width: 100%;
    height: 420px;   /* FIXED HEIGHT */
    object-fit: cover;
}

/* DOT */
.ds-dots {
    text-align: center;
    margin-top: 5px;
}
@media (max-width: 768px) {

    .double-slider {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }

    .ds-slide img {
        height: auto;
    }

}
.ds-track {
    overflow: hidden; 
}

.ds-slider:active {
    cursor: grabbing;
}
.ds-slider {
    cursor: pointer; /* bukan grab lagi */
}
/* =========================
   ARTIST SECTION CLEAN
========================= */

.artist-section {
    background: #b8a98d;
    padding: 120px 0;
}

.artist-content {
    max-width: 560px;
    margin: 0 auto 70px;
    text-align: center;
}

.artist-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 18px;
}

.artist-content p {
    font-size: 13px;
    line-height: 1.8;
}

/* SLIDER FIX */
.artist-slider {
    overflow-x: auto;   /* ✅ WAJIB */
    overflow-y: hidden;

    cursor: grab;

    scrollbar-width: none;
}

.artist-slider::-webkit-scrollbar {
    display: none;
}

.artist-track {
    display: flex;
    gap: 25px;
    padding: 0 40px;
}

.artist-slide {
    flex: 0 0 30%;
}

.artist-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* DOT */
.artist-dots {
    text-align: center;
    margin-top: 15px;
}

.artist-dots .dot {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
}

.artist-dots .dot.active {
    background: #000;
}

