@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu-Regular.woff2') format('woff2'),
         url('../fonts/apercu.otf') format('opentype');
    font-weight: 400; font-display: swap;
}
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu-Medium.woff2') format('woff2'),
         url('../fonts/apercu-medium.otf') format('opentype');
    font-weight: 500; font-display: swap;
}
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu-Bold.woff2') format('woff2'),
         url('../fonts/apercu-bold.otf') format('opentype');
    font-weight: 700; font-display: swap;
}

:root {
    --cream: #f2efe6;
    --olive: #8a9070;
    --ink:   #141414;
    --muted: #888;
    --font:  'Apercu', -apple-system, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}
a { text-decoration:none; color:inherit }


/* ══════════════════════════════════════════
   SLIDER ROOT
══════════════════════════════════════════ */
.col-slider-root {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.col-slides-track {
    position: relative;
    width: 100%;
}

/* Setiap slide */
.col-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    /* height akan mengikuti konten saat visible */
}

/* Slide yang sedang aktif */
.col-slide--visible {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

/* Spacer agar root punya tinggi saat pertama render */
.col-slides-track::after {
    content: '';
    display: block;
    pointer-events: none;
}


/* ══════════════════════════════════════════
   NAV ARROWS
══════════════════════════════════════════ */
.col-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(242,239,230,.85);
    border: 1px solid rgba(0,0,0,.1);
    color: var(--ink);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, opacity .2s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.col-nav:hover { background: var(--cream); }
.col-nav-prev  { left: 18px; }
.col-nav-next  { right: 18px; }

/* ══════════════════════════════════════════
   DOT INDICATORS
══════════════════════════════════════════ */
.col-dots {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 8px;
    align-items: center;
}
.col-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(20,20,20,.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
}
.col-dot.active {
    background: var(--ink);
    transform: scale(1.3);
}


/* ══════════════════════════════════════════
   SECTION 1 — LOOKBOOK GRID
══════════════════════════════════════════ */
.lookbook-wrap {
    padding: 76px 60px 150px;
    margin-bottom: 125px;
}
.lookbook-title {
    font-size: 18px;
    color: #666557;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.lookbook-grid {
    display: grid;
    grid-template-columns: 2.1fr 1.15fr 1.75fr;
    grid-template-rows: 260px 260px;
    gap: 5px;
}

.lb {
    position: relative;
    overflow: hidden;
    background: #c5c0b5;
}
.lb img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.lb:hover img { transform: scale(1.04) }

.slot-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,#ccc8be,#b8b3a8);
    display: flex; align-items: center; justify-content: center;
}

.lb-1 { grid-column:1; grid-row:1/3 }
.lb-2 { grid-column:2; grid-row:1 }
.lb-3 { grid-column:3; grid-row:1/3 }

.lb-mid {
    grid-column:2; grid-row:2;
    display:grid; grid-template-columns:1fr 1fr; gap:5px;
}
.lb-4, .lb-5 {
    position:relative; overflow:hidden; background:#c5c0b5;
}
.lb-4 img, .lb-5 img {
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.lb-4:hover img, .lb-5:hover img { transform: scale(1.04) }


/* ══════════════════════════════════════════
   SECTION 2 — COLLECTION BANNER
══════════════════════════════════════════ */
.col-banner {
    background: var(--olive);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 74px 50px;
    margin-top: 55px;
}
.banner-tag {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    margin-bottom: 10px;
}
.banner-heading {
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}
.banner-body {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255,255,255,.8);
}
.banner-cta {
    display: inline-block;
    padding: 13px 44px;
    border: 1.5px solid rgba(255,255,255,.75);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
}
.banner-cta:hover {
    background: #fff;
    color: var(--olive);
    border-color: #fff;
}


/* ══════════════════════════════════════════
   SECTION 3 — FULL-WIDTH HERO
══════════════════════════════════════════ */
.col-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    background: #111;
}
.col-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .85;
}
.col-hero-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #2a2723, #111);
}
.col-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.52) 100%);
    z-index: 1;
    pointer-events: none;
}
.col-hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: row;         /* tetap sebaris */
    align-items: center;         /* vertical center */
    justify-content: center;     /* horizontal center */
    gap: 22px;
    pointer-events: none;
}
.hero-brand {
    font-size: clamp(60px, 9.5vw, 150px);
    font-weight: 400;
    color: rgba(255,255,255,.92);
    letter-spacing: 0.01em;
    line-height: 1;
}
.hero-sub {
    font-size: clamp(13px, 1.7vw, 22px);
    font-weight: 400;
    color: rgba(255,255,255,.6);
    letter-spacing: .3em;
    text-transform: uppercase;
}


/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
    .lookbook-wrap { padding: 28px 32px 80px }
    .col-banner    { padding: 48px 32px; gap: 40px }
    .col-hero-text { left: 32px; bottom: 36px }
    .col-nav-prev  { left: 10px }
    .col-nav-next  { right: 10px }
}

@media (max-width: 768px) {
    .lookbook-wrap {
        padding: 20px 16px 60px;
        margin-bottom: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }
    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        flex: 1;
        min-height: 0;
        height: calc(100vh - 140px);
    }
    .lb-1  { grid-column: 1/3; grid-row: 1 }
    .lb-2  { grid-column: 1;   grid-row: 2 }
    .lb-3  { grid-column: 2;   grid-row: 2/4 }
    .lb-mid{ grid-column: 1;   grid-row: 3 }

    .col-banner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 36px 20px;
        box-sizing: border-box;
        align-content: center;
        margin-top: 0;
    }
    .col-hero {
        height: 100vh;
        min-height: 100vh;
    }
    .col-hero-text { left: 20px; bottom: 24px }

    /* Hero text: paksa 1 baris, no wrap */
    .col-hero-text { flex-wrap: nowrap; white-space: nowrap; gap: 10px; }
    .hero-brand { font-size: clamp(28px, 8vw, 60px); }
    .hero-sub   { font-size: clamp(10px, 2.5vw, 16px); letter-spacing: .15em; }

    /* Arrows lebih kecil di mobile */
    .col-nav { width: 36px; height: 36px; }
    .col-nav-prev { left: 6px }
    .col-nav-next { right: 6px }
}

@media (max-width: 520px) {
    .lookbook-wrap {
        padding: 16px 12px 40px;
        min-height: 100vh;
    }
    .lookbook-grid {
        height: calc(100vh - 100px);
    }
    .col-banner {
        padding: 28px 16px;
    }
    .col-hero {
        height: 100vh;
        min-height: 100vh;
    }
    .banner-body { max-width: 100%; text-align: justify; }
    .hero-brand  { letter-spacing: .1em }
}