:root {
            --bg-main: #fff8e8;
            --bg-soft: #fff1ca;
            --bg-dark: #14110b;
            --text-main: #1d170d;
            --text-soft: #6f6148;
            --gold: #d99b22;
            --gold-light: #ffc857;
            --orange: #ef7d21;
            --brown: #4b2f16;
            --cream: #fff9ed;
            --line: rgba(75, 47, 22, .13);
            --shadow: 0 24px 80px rgba(77, 46, 9, .16);
            --shadow-soft: 0 14px 40px rgba(77, 46, 9, .12);
            --radius-xl: 30px;
            --radius-lg: 22px;
            --radius-md: 16px;
            --container: 1180px;
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-main);
            background:
                radial-gradient(circle at top left, rgba(255, 200, 87, .46), transparent 34%),
                radial-gradient(circle at 90% 16%, rgba(239, 125, 33, .22), transparent 28%),
                linear-gradient(180deg, #fff7e3 0%, #fffaf0 42%, #fff3d5 100%);
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: .28;
            background-image:
                linear-gradient(rgba(75, 47, 22, .05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(75, 47, 22, .05) 1px, transparent 1px);
            background-size: 38px 38px;
            mask-image: linear-gradient(to bottom, black, transparent 88%);
            z-index: -2;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        .container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 70;
            backdrop-filter: blur(18px);
            background: rgba(255, 248, 232, .82);
            border-bottom: 1px solid rgba(75, 47, 22, .08);
        }

        .nav {
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 220px;
        }

        .brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 18px;
            position: relative;
            display: grid;
            place-items: center;
            overflow: hidden;
            color: #fff;
            background:
                radial-gradient(circle at 30% 20%, #ffe6a3, transparent 32%),
                linear-gradient(135deg, #2a1a0d, #b56c16 58%, #f2b335);
            box-shadow: 0 13px 32px rgba(87, 46, 5, .22);
        }

        .brand-mark::before {
            content: '';
            width: 22px;
            height: 22px;
            border: 2px solid rgba(255, 255, 255, .9);
            transform: rotate(45deg);
            border-radius: 7px;
            position: absolute;
        }

        .brand-mark::after {
            content: 'CP';
            font-family: 'Cinzel', serif;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: .7px;
            z-index: 2;
        }

        .brand-text strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 18px;
            line-height: 1;
            letter-spacing: .7px;
        }

        .brand-text span {
            display: block;
            margin-top: 4px;
            font-size: 12px;
            color: var(--text-soft);
            font-weight: 700;
            letter-spacing: .3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .58);
            border: 1px solid rgba(75, 47, 22, .08);
        }

        .nav-links a {
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 13px;
            color: #4f3d23;
            font-weight: 800;
            transition: .2s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #20150c;
            color: #fff5df;
            transform: translateY(-1px);
        }

        .nav-action { display: flex; justify-content: flex-end; min-width: 220px; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            cursor: pointer;
            font-family: inherit;
            font-weight: 900;
            border-radius: 999px;
            padding: 13px 18px;
            line-height: 1;
            transition: .2s ease;
            white-space: nowrap;
        }

        .btn-primary {
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            box-shadow: 0 16px 34px rgba(198, 101, 13, .27);
        }

        .btn-primary:hover,
        .btn-dark:hover,
        .btn-ghost:hover {
            transform: translateY(-2px);
        }

        .btn-dark {
            color: #fff5df;
            background: linear-gradient(135deg, #20150c, #4b2f16);
            box-shadow: 0 16px 34px rgba(20, 17, 11, .25);
        }

        .btn-ghost {
            color: #2c1d0d;
            border: 1px solid rgba(75, 47, 22, .16);
            background: rgba(255, 255, 255, .58);
        }

        .mobile-menu-btn {
            display: none;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 16px;
            background: #20150c;
            color: #fff8e8;
            cursor: pointer;
            font-size: 22px;
            line-height: 1;
        }

        .mobile-panel { display: none; padding: 0 0 18px; }
        .mobile-panel.active { display: block; }
        .mobile-panel a {
            display: block;
            padding: 14px 16px;
            margin-top: 8px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .66);
            border: 1px solid rgba(75, 47, 22, .08);
            font-weight: 900;
            color: #3d2812;
        }

        .hero {
            position: relative;
            padding: 74px 0 56px;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.02fr .98fr;
            gap: 38px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 13px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .68);
            border: 1px solid rgba(75, 47, 22, .1);
            color: #5a3c17;
            font-size: 13px;
            font-weight: 900;
            box-shadow: 0 10px 30px rgba(77, 46, 9, .08);
        }

        .eyebrow i {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: var(--orange);
            box-shadow: 0 0 0 7px rgba(239, 125, 33, .13);
        }

        .hero-title {
            margin: 22px 0 18px;
            font-family: 'Cinzel', serif;
            font-size: clamp(40px, 6vw, 74px);
            line-height: .97;
            letter-spacing: -1.7px;
        }

        .hero-title span {
            display: inline-block;
            background: linear-gradient(135deg, #20150c, #95520e 50%, #ef8c26);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-desc {
            max-width: 650px;
            margin: 0 0 18px;
            color: var(--text-soft);
            font-size: 17px;
            line-height: 1.8;
            font-weight: 600;
        }

        .hero-note {
            margin-top: 18px;
            padding: 16px 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, .66);
            border: 1px solid rgba(75, 47, 22, .08);
            color: #6c5b40;
            line-height: 1.7;
            font-weight: 650;
        }

        .hero-visual {
            position: relative;
            min-height: 560px;
            display: grid;
            place-items: center;
        }

        .mandala {
            position: absolute;
            width: min(86vw, 540px);
            aspect-ratio: 1;
            border-radius: 50%;
            background:
                repeating-conic-gradient(from 0deg, rgba(75, 47, 22, .13) 0 8deg, transparent 8deg 16deg),
                radial-gradient(circle, rgba(255, 255, 255, .8) 0 23%, rgba(255, 200, 87, .33) 24% 38%, transparent 39%);
            opacity: .82;
            animation: slowSpin 36s linear infinite;
            filter: drop-shadow(0 30px 70px rgba(77, 46, 9, .12));
        }

        .mandala::before,
        .mandala::after {
            content: '';
            position: absolute;
            inset: 11%;
            border-radius: 50%;
            border: 1px solid rgba(75, 47, 22, .17);
        }

        .mandala::after {
            inset: 23%;
            border-style: dashed;
        }

        @keyframes slowSpin { to { transform: rotate(360deg); } }

        .hero-stage {
            position: relative;
            z-index: 2;
            width: min(100%, 560px);
            padding: 16px;
            border-radius: 40px;
            background:
                radial-gradient(circle at top left, rgba(255, 214, 107, .35), transparent 34%),
                rgba(255, 255, 255, .42);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: 0 34px 90px rgba(70, 39, 8, .16);
            backdrop-filter: blur(10px);
        }

        .hero-stage::before {
            content: '';
            position: absolute;
            inset: 14px;
            border-radius: 30px;
            border: 1px solid rgba(255, 214, 107, .28);
            pointer-events: none;
        }

        .hero-image-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            min-height: 520px;
            background:
                radial-gradient(circle at 50% 22%, rgba(255, 214, 107, .18), transparent 24%),
                radial-gradient(circle at 20% 80%, rgba(239, 125, 33, .16), transparent 22%),
                linear-gradient(135deg, rgba(32, 21, 12, .96), rgba(77, 47, 22, .86));
            display: grid;
            place-items: center;
            isolation: isolate;
        }

        .hero-image-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at center, rgba(255,255,255,.08), transparent 35%),
                repeating-linear-gradient(45deg, rgba(255,255,255,.028) 0 2px, transparent 2px 18px);
            pointer-events: none;
            z-index: 1;
        }

        .hero-image-wrap::after {
            content: '<?= e(c($contents, 'hero_badge_text', 'KOLEKSI PRIBADI')); ?>';
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 9px 13px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-size: 12px;
            font-weight: 950;
            z-index: 3;
        }

        .hero-image {
            position: relative;
            z-index: 2;
            width: min(92%, 410px);
            max-height: 480px;
            object-fit: contain;
            filter: drop-shadow(0 28px 40px rgba(0,0,0,.34));
        }

        .floating-chip {
            position: absolute;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .78);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(16px);
            font-weight: 900;
            color: #2d1d0c;
        }

        .floating-chip i {
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #20150c;
            color: #ffd66b;
            font-style: normal;
            font-size: 14px;
        }

        .chip-one { left: 1%; top: 14%; }
        .chip-two { right: 0; bottom: 14%; }

        .section { padding: 72px 0; }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 26px;
            margin-bottom: 28px;
        }

        .section-kicker {
            display: inline-flex;
            padding: 8px 13px;
            border-radius: 999px;
            color: #6f3b0c;
            background: rgba(255, 200, 87, .26);
            border: 1px solid rgba(239, 125, 33, .18);
            font-size: 13px;
            font-weight: 900;
        }

        .section-title {
            margin: 12px 0 0;
            font-family: 'Cinzel', serif;
            font-size: clamp(30px, 4vw, 50px);
            line-height: 1.05;
            letter-spacing: -.9px;
        }

        .section-desc {
            max-width: 530px;
            color: var(--text-soft);
            line-height: 1.76;
            font-weight: 650;
            margin: 0;
        }

        .edu-note {
            padding: 18px 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, .66);
            border: 1px solid rgba(75, 47, 22, .1);
            box-shadow: var(--shadow-soft);
            color: var(--text-soft);
            line-height: 1.75;
            font-weight: 620;
            margin-bottom: 26px;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .collection-card {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            background: rgba(255, 255, 255, .76);
            border: 1px solid rgba(75, 47, 22, .11);
            box-shadow: 0 18px 50px rgba(77, 46, 9, .1);
            transition: .24s ease;
        }

        .collection-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 70px rgba(77, 46, 9, .16);
        }

        .collection-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(255, 214, 107, .22), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, .12), transparent);
            pointer-events: none;
        }

        .collection-inner {
            position: relative;
            z-index: 1;
            padding: 18px;
            display: grid;
            grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
            gap: 18px;
            align-items: start;
        }

        .collection-figure {
            position: relative;
            min-height: 460px;
            aspect-ratio: 2 / 3;
            border-radius: 26px;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 18%, rgba(255, 214, 107, .22), transparent 24%),
                radial-gradient(circle at 18% 82%, rgba(239, 125, 33, .18), transparent 26%),
                linear-gradient(135deg, #1b1209 0%, #563214 58%, #7c4515 100%);
            border: 1px solid rgba(75, 47, 22, .08);
            display: grid;
            place-items: center;
            isolation: isolate;
        }

        .collection-figure::before {
            content: '';
            position: absolute;
            inset: 12px;
            border-radius: 20px;
            border: 1px solid rgba(255, 230, 166, .18);
            pointer-events: none;
            z-index: 2;
        }

        .collection-figure::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at center, rgba(255,255,255,.08), transparent 34%),
                repeating-conic-gradient(from 0deg, rgba(255,255,255,.022) 0 10deg, transparent 10deg 20deg);
            pointer-events: none;
            z-index: 1;
        }

        .collection-img-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 4;
            border: 0;
            border-radius: 999px;
            padding: 9px 12px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            box-shadow: 0 12px 26px rgba(0,0,0,.18);
            font-weight: 900;
            cursor: pointer;
            font-family: inherit;
            font-size: 12px;
        }

        .collection-img {
            position: relative;
            z-index: 3;
            width: 100%;
            height: 100%;
            padding: 26px 16px 22px;
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 26px 32px rgba(0,0,0,.34));
            transition: transform .25s ease;
            cursor: zoom-in;
        }

        .collection-card:hover .collection-img {
            transform: scale(1.03);
        }

        .collection-num {
            position: absolute;
            left: 12px;
            top: 12px;
            z-index: 4;
            width: 44px;
            height: 44px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            color: #20150c;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-weight: 950;
            box-shadow: 0 12px 26px rgba(0,0,0,.18);
        }

        .collection-body h3 {
            margin: 0 0 10px;
            font-size: 24px;
            line-height: 1.15;
            letter-spacing: -.4px;
        }

        .collection-ringkas {
            margin: 0 0 14px;
            color: #8f5513;
            line-height: 1.6;
            font-weight: 800;
        }

        .meta-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 14px;
        }

        .meta-item {
            padding: 12px;
            border-radius: 18px;
            background: rgba(255, 248, 232, .9);
            border: 1px solid rgba(75, 47, 22, .1);
        }

        .meta-item small {
            display: block;
            margin-bottom: 5px;
            color: #9c6b33;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .4px;
        }

        .meta-item strong {
            display: block;
            color: #29190b;
            font-size: 14px;
            line-height: 1.35;
        }

        .details-stack {
            display: grid;
            gap: 10px;
            margin-top: 14px;
        }

        .info-block {
            border-radius: 20px;
            background: rgba(255, 255, 255, .64);
            border: 1px solid rgba(75, 47, 22, .08);
            overflow: hidden;
        }

        .info-block summary {
            list-style: none;
            cursor: pointer;
            padding: 15px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            color: #2a1809;
            font-size: 14px;
            font-weight: 950;
            text-transform: uppercase;
            letter-spacing: .5px;
            user-select: none;
        }

        .info-block summary::-webkit-details-marker {
            display: none;
        }

        .info-block summary::after {
            content: '+';
            width: 30px;
            height: 30px;
            flex: 0 0 30px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            color: #20150c;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            box-shadow: 0 10px 24px rgba(198, 101, 13, .18);
            font-size: 18px;
            line-height: 1;
            transition: .2s ease;
        }

        .info-block[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        .info-block p {
            margin: 0;
            padding: 0 16px 16px;
            color: var(--text-soft);
            line-height: 1.72;
            font-size: 14px;
            font-weight: 620;
        }

        .detail-hint {
            margin: 12px 0 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 11px;
            border-radius: 999px;
            color: #70430d;
            background: rgba(255, 200, 87, .22);
            border: 1px solid rgba(239, 125, 33, .14);
            font-size: 12px;
            font-weight: 900;
        }

        .video-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 38px;
            padding: 34px;
            color: #fff5df;
            background:
                radial-gradient(circle at 12% 10%, rgba(255, 200, 87, .28), transparent 27%),
                radial-gradient(circle at 92% 24%, rgba(239, 125, 33, .24), transparent 25%),
                linear-gradient(135deg, #15100a 0%, #2b1b0d 44%, #5a3414 100%);
            box-shadow: var(--shadow);
        }

        .video-wrap::before {
            content: '';
            position: absolute;
            inset: 18px;
            border-radius: 28px;
            border: 1px solid rgba(255, 230, 166, .13);
            pointer-events: none;
        }

        .video-head {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 22px;
        }

        .video-head .section-kicker {
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
        }

        .video-head .section-title { color: #fff7e3; margin-top: 14px; }
        .video-head .section-desc { color: rgba(255,247,227,.72); }

        .video-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .video-card {
            overflow: hidden;
            border-radius: 26px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .13);
            box-shadow: 0 20px 54px rgba(0,0,0,.18);
        }

        .video-player {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            background: rgba(0,0,0,.26);
        }

        .video-player iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .video-body {
            padding: 18px;
        }

        .video-body h3 {
            margin: 0 0 8px;
            color: #fff7e3;
            font-size: 18px;
            line-height: 1.25;
        }

        .video-body p {
            margin: 0 0 14px;
            color: rgba(255,247,227,.72);
            line-height: 1.65;
            font-size: 14px;
        }

        .video-body a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ffd66b;
            font-weight: 900;
            font-size: 13px;
        }


        /* TikTok player: satu iframe aktif agar semua video bisa diputar bergantian tanpa keluar halaman */
        .video-stage {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(280px, 390px) 1fr;
            gap: 18px;
            align-items: stretch;
            margin-bottom: 18px;
        }

        .video-player-main {
            overflow: hidden;
            border-radius: 28px;
            background: rgba(0, 0, 0, .28);
            border: 1px solid rgba(255, 230, 166, .16);
            box-shadow: 0 20px 54px rgba(0,0,0,.22);
            aspect-ratio: 9 / 16;
            min-height: 520px;
        }

        .video-player-main iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .video-current {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 220px;
            padding: 24px;
            border-radius: 28px;
            background:
                radial-gradient(circle at top right, rgba(255, 214, 107, .18), transparent 38%),
                rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .13);
            box-shadow: 0 20px 54px rgba(0,0,0,.14);
        }

        .video-current span {
            display: inline-flex;
            width: fit-content;
            margin-bottom: 12px;
            padding: 8px 12px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-size: 12px;
            font-weight: 950;
        }

        .video-current strong {
            display: block;
            color: #fff7e3;
            font-family: 'Cinzel', serif;
            font-size: clamp(24px, 3vw, 38px);
            line-height: 1.05;
            margin-bottom: 12px;
        }

        .video-current p {
            margin: 0;
            color: rgba(255, 247, 227, .74);
            line-height: 1.75;
            font-weight: 650;
        }

        .video-select {
            width: 100%;
            min-height: 132px;
            border: 0;
            cursor: pointer;
            font-family: inherit;
            text-align: left;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 12px;
            align-items: center;
            padding: 16px;
            color: #fff7e3;
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .18), transparent 34%),
                rgba(255, 255, 255, .08);
            transition: .22s ease;
        }

        .video-card.active .video-select,
        .video-select:hover {
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .3), transparent 36%),
                rgba(255, 255, 255, .14);
        }

        .video-select-num,
        .video-select-play {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-weight: 950;
            box-shadow: 0 12px 28px rgba(0,0,0,.18);
        }

        .video-select-num {
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
        }

        .video-select-play {
            padding: 10px 13px;
            font-size: 12px;
            white-space: nowrap;
        }

        .video-select-copy strong {
            display: block;
            margin-bottom: 6px;
            color: #fff7e3;
            font-size: 17px;
            line-height: 1.25;
        }

        .video-select-copy small {
            display: block;
            color: rgba(255,247,227,.68);
            line-height: 1.5;
            font-weight: 650;
        }


        /* TikTok official embed: dipakai agar semua video bisa diputar langsung di halaman */
        .tiktok-embed-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .tiktok-embed-card {
            overflow: hidden;
            border-radius: 28px;
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .18), transparent 34%),
                rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .13);
            box-shadow: 0 20px 54px rgba(0,0,0,.18);
        }

        .tiktok-card-head {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px;
            align-items: center;
            padding: 16px 16px 12px;
            border-bottom: 1px solid rgba(255, 230, 166, .12);
        }

        .tiktok-card-head span {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-weight: 950;
            box-shadow: 0 12px 28px rgba(0,0,0,.18);
        }

        .tiktok-card-head strong {
            display: block;
            margin-bottom: 5px;
            color: #fff7e3;
            font-size: 17px;
            line-height: 1.25;
        }

        .tiktok-card-head small {
            display: block;
            color: rgba(255,247,227,.68);
            line-height: 1.45;
            font-weight: 650;
        }

        .tiktok-direct-embed {
            display: flex;
            justify-content: center;
            padding: 12px;
            min-height: 600px;
            background: rgba(0,0,0,.16);
        }

        .tiktok-direct-embed .tiktok-embed {
            margin: 0 !important;
            width: 100% !important;
            max-width: 360px !important;
            min-width: 280px !important;
        }

        @media (max-width: 1120px) {
            .tiktok-embed-grid {
                grid-template-columns: 1fr;
            }

            .tiktok-direct-embed {
                min-height: 560px;
            }
        }

        @media (max-width: 420px) {
            .tiktok-direct-embed {
                padding: 10px 6px;
                min-height: 540px;
            }

            .tiktok-direct-embed .tiktok-embed {
                min-width: 260px !important;
            }
        }

        .tips-box {
            margin-top: 20px;
            position: relative;
            z-index: 1;
            padding: 18px 20px;
            border-radius: 24px;
            color: rgba(255,247,227,.82);
            background: rgba(0, 0, 0, .18);
            border: 1px solid rgba(255, 230, 166, .12);
            line-height: 1.75;
            font-weight: 650;
        }

        .tips-box strong { color: #ffd66b; }

        .footer {
            padding: 34px 0;
            background: #14110b;
            color: rgba(255, 248, 232, .7);
        }

        .footer-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer strong {
            color: #fff8e8;
            font-family: 'Cinzel', serif;
            letter-spacing: .5px;
        }

        .footer small {
            display: block;
            margin-top: 6px;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-links a {
            padding: 10px 13px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            color: #fff1ca;
            font-weight: 800;
            font-size: 13px;
        }

        .wa-float {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 60;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(135deg, #128c7e, #25d366);
            box-shadow: 0 20px 48px rgba(18, 140, 126, .34);
            font-weight: 950;
        }

        .reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
        .reveal.show { opacity: 1; transform: translateY(0); }

        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 120;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 18px;
            background: rgba(12, 8, 4, .82);
            backdrop-filter: blur(10px);
        }

        .lightbox.active { display: flex; }

        .lightbox-dialog {
            position: relative;
            width: min(100%, 980px);
            max-height: calc(100vh - 36px);
            padding: 16px;
            border-radius: 30px;
            background:
                radial-gradient(circle at top left, rgba(255, 214, 107, .18), transparent 30%),
                rgba(28, 20, 11, .96);
            border: 1px solid rgba(255, 230, 166, .16);
            box-shadow: 0 30px 90px rgba(0,0,0,.32);
            overflow: auto;
        }

        .lightbox-close {
            position: sticky;
            top: 0;
            margin-left: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 0;
            cursor: pointer;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            color: #20150c;
            font-size: 26px;
            font-weight: 900;
            z-index: 3;
        }

        .lightbox-figure {
            margin: 4px 0 0;
            display: grid;
            gap: 14px;
            justify-items: center;
        }

        .lightbox-figure img {
            width: auto;
            max-width: 100%;
            max-height: 72vh;
            object-fit: contain;
            border-radius: 22px;
            background: linear-gradient(135deg, #24170b, #5a3414);
            box-shadow: 0 24px 50px rgba(0,0,0,.28);
        }

        .lightbox-caption {
            color: #fff7e3;
            text-align: center;
        }

        .lightbox-caption strong {
            display: block;
            font-size: 18px;
            margin-bottom: 6px;
        }

        .lightbox-caption span {
            display: block;
            color: rgba(255,247,227,.72);
            line-height: 1.65;
            font-size: 14px;
        }



        /* FIX KOLEKSI V2:
           - Desktop dibuat 4 kartu per baris agar galeri tidak memenuhi layar.
           - Isi kartu dibuat ringkas.
           - Detail panjang tetap hide/show.
           - Gambar aman di dalam frame dan zoom tetap menampilkan ukuran utuh. */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            align-items: start;
        }

        .collection-card {
            min-width: 0;
            height: auto;
            border-radius: 26px;
        }

        .collection-inner {
            display: flex;
            flex-direction: column;
            grid-template-columns: none;
            gap: 13px;
            min-width: 0;
            height: auto;
            padding: 14px;
        }

        .collection-figure {
            width: 100%;
            min-height: 0;
            height: auto;
            aspect-ratio: 3 / 4;
            max-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            border-radius: 22px;
        }

        .collection-img {
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            padding: 0;
            object-fit: contain;
            object-position: center;
        }

        .collection-img-btn {
            top: 10px;
            right: 10px;
            padding: 8px 10px;
            font-size: 11px;
        }

        .collection-num {
            left: 10px;
            top: 10px;
            width: 38px;
            height: 38px;
            border-radius: 14px;
            font-size: 13px;
        }

        .collection-body {
            width: 100%;
            min-width: 0;
        }

        .collection-body h3 {
            font-size: 18px;
            line-height: 1.15;
            margin-bottom: 8px;
        }

        .collection-ringkas {
            font-size: 13px;
            line-height: 1.55;
            margin-bottom: 12px;
        }

        .meta-grid {
            grid-template-columns: 1fr;
            gap: 8px;
            margin-bottom: 10px;
        }

        .meta-item {
            padding: 10px 11px;
            border-radius: 15px;
        }

        .meta-item small {
            font-size: 10px;
            margin-bottom: 3px;
        }

        .meta-item strong {
            font-size: 13px;
            line-height: 1.3;
        }

        .details-stack {
            gap: 8px;
            margin-top: 10px;
        }

        .detail-hint {
            width: 100%;
            justify-content: center;
            text-align: center;
            white-space: normal;
            font-size: 11px;
            line-height: 1.35;
            padding: 8px 10px;
        }

        .info-block {
            border-radius: 16px;
        }

        .info-block summary {
            min-height: 48px;
            padding: 12px 13px;
            font-size: 12px;
            line-height: 1.25;
            gap: 10px;
        }

        .info-block summary::after {
            width: 26px;
            height: 26px;
            flex-basis: 26px;
            font-size: 16px;
        }

        .info-block p {
            padding: 0 13px 13px;
            font-size: 13px;
            line-height: 1.65;
        }

        .lightbox-dialog {
            overflow: hidden;
        }

        .lightbox-figure img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 76vh;
            object-fit: contain;
        }

        @media (max-width: 1080px) {
            .nav-links, .nav-action { display: none; }
            .mobile-menu-btn { display: grid; place-items: center; }
            .hero-grid, .section-head, .video-head { grid-template-columns: 1fr; display: block; }
            .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .video-grid { grid-template-columns: 1fr; }
            .collection-inner { grid-template-columns: 1fr; }
            .hero-visual { min-height: 500px; margin-top: 22px; }
        }

        @media (max-width: 720px) {
            .collections-grid { grid-template-columns: 1fr; }
            .collection-inner { padding: 13px; }
            .collection-figure {
                aspect-ratio: 3 / 4;
                max-height: 520px;
                padding: 12px;
            }
            .collection-body h3 { font-size: 20px; }
            .collection-ringkas { font-size: 14px; }
            .meta-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .container { width: min(100% - 24px, var(--container)); }
            .nav { height: 68px; }
            .brand { min-width: 0; }
            .brand-mark { width: 44px; height: 44px; border-radius: 16px; }
            .brand-text strong { font-size: 15px; }
            .brand-text span { font-size: 11px; }
            .hero { padding-top: 46px; }
            .hero-title { letter-spacing: -1.1px; }
            .hero-visual { min-height: 360px; }
            .mandala { width: 410px; }
            .hero-stage { width: 100%; padding: 10px; border-radius: 28px; }
            .hero-image-wrap { min-height: 360px; border-radius: 22px; }
            .hero-image { max-height: 320px; }
            .floating-chip { font-size: 12px; padding: 10px 12px; }
            .chip-one { left: 0; top: 8%; }
            .chip-two { right: 0; bottom: 8%; }
            .section { padding: 54px 0; }
            .video-wrap { padding: 24px; border-radius: 28px; }
            .collection-figure { min-height: 420px; }
            .collection-img { padding: 24px 14px 20px; }
            .meta-grid { grid-template-columns: 1fr; }
            .wa-float {
                left: 12px;
                right: 12px;
                justify-content: center;
                bottom: 12px;
                border-radius: 18px;
            }
            .footer { padding-bottom: 82px; }
        }

        @media (max-width: 420px) {
            .hero-image-wrap { min-height: 320px; }
            .collection-body h3 { font-size: 21px; }
            .lightbox-dialog { padding: 12px; border-radius: 22px; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        /* Override paling akhir agar tampilan koleksi stabil di semua device */
        @media (min-width: 1180px) {
            .collections-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }

        @media (min-width: 821px) and (max-width: 1179px) {
            .collections-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .collection-figure { max-height: 340px; }
        }

        @media (min-width: 541px) and (max-width: 820px) {
            .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .collection-figure { max-height: 330px; }
            .meta-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 540px) {
            .collections-grid { grid-template-columns: 1fr; }
            .collection-figure { max-height: 520px; }
            .meta-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }

        @media (max-width: 420px) {
            .meta-grid { grid-template-columns: 1fr; }
        }


        @media (max-width: 900px) {
            .video-stage {
                grid-template-columns: 1fr;
            }

            .video-player-main {
                width: min(100%, 390px);
                min-height: auto;
                margin-inline: auto;
            }
        }

        @media (max-width: 540px) {
            .video-select {
                grid-template-columns: auto 1fr;
            }

            .video-select-play {
                grid-column: 1 / -1;
                width: 100%;
            }

            .video-current {
                padding: 18px;
            }
        }


        /* TikTok Player v1 resmi: iframe langsung per video */
        .tiktok-player-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            align-items: start;
        }

        .tiktok-player-card {
            overflow: hidden;
            border-radius: 28px;
            background:
                radial-gradient(circle at top, rgba(255, 214, 107, .18), transparent 34%),
                rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 230, 166, .13);
            box-shadow: 0 20px 54px rgba(0,0,0,.18);
        }

        .tiktok-iframe-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            min-height: 560px;
            background: rgba(0,0,0,.24);
        }

        .tiktok-iframe-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .tiktok-fallback {
            padding: 12px 14px 16px;
            text-align: center;
            border-top: 1px solid rgba(255, 230, 166, .12);
        }

        .tiktok-fallback a {
            display: inline-flex;
            justify-content: center;
            width: 100%;
            padding: 10px 12px;
            border-radius: 999px;
            color: #1b1005;
            background: linear-gradient(135deg, #ffd66b, #ef8c26);
            font-weight: 950;
            font-size: 12px;
        }

        @media (max-width: 1120px) {
            .tiktok-player-grid {
                grid-template-columns: 1fr;
            }

            .tiktok-player-card {
                width: min(100%, 420px);
                margin-inline: auto;
            }

            .tiktok-iframe-wrap {
                min-height: 620px;
            }
        }

        @media (max-width: 460px) {
            .tiktok-iframe-wrap {
                min-height: 560px;
            }
        }


        /* Tambahan final: grid 6 video TikTok lebih rapi */
        @media (min-width: 1180px) {
            .tiktok-player-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (min-width: 760px) and (max-width: 1179px) {
            .tiktok-player-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .tiktok-player-card {
                width: 100%;
            }
        }

        @media (max-width: 759px) {
            .tiktok-player-grid {
                grid-template-columns: 1fr;
            }
        }
