/* =========================================================
   MANSINAM TOURISM — PREMIUM DESIGN SYSTEM
   Modern luxury travel / editorial magazine aesthetic
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
    /* Palette: sand, sea, forest */
    --sand-50:  #FBF8F3;
    --sand-100: #F5EFE6;
    --sand-200: #E9DECD;
    --sand-300: #D9C8AF;

    --ink-900: #10201F;
    --ink-800: #17302E;
    --ink-700: #2A403E;
    --ink-500: #5A6B69;
    --ink-400: #687876;
    --ink-300: #879795;

    --sea-900: #0B3A46;
    --sea-700: #0E5566;
    --sea-500: #12798F;
    --sea-300: #4FA9BC;
    --sea-100: #DDEEF2;

    --leaf-700: #1F5E4B;
    --leaf-500: #2E8B6B;
    --leaf-100: #E2F1EA;

    --gold-500: #C08A3E;
    --gold-100: #F6EBDA;

    --white: #FFFFFF;

    /* Semantic */
    --bg:            var(--white);
    --bg-soft:       var(--sand-50);
    --bg-contrast:   var(--ink-900);
    --text:          var(--ink-800);
    --text-muted:    var(--ink-500);
    --line:          rgba(16, 32, 31, .10);
    --line-soft:     rgba(16, 32, 31, .06);
    --brand:         var(--sea-700);
    --brand-strong:  var(--sea-900);
    --accent:        var(--leaf-500);

    /* Type */
    --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Space + shape */
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(16, 32, 31, .05);
    --shadow-sm: 0 2px 10px rgba(16, 32, 31, .06);
    --shadow-md: 0 12px 30px -12px rgba(16, 32, 31, .18);
    --shadow-lg: 0 30px 60px -24px rgba(16, 32, 31, .28);

    --nav-h: 84px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);

    --container: 1240px;
    --gutter: 24px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}
html { overflow-x: clip; }
body.is-locked { overflow: hidden; }

img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5 { margin: 0 0 .4em; font-weight: 600; line-height: 1.15; letter-spacing: -.02em; color: var(--ink-900); }

:focus-visible {
    outline: 3px solid var(--sea-300);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection { background: var(--sea-100); color: var(--sea-900); }

/* ---------- 3. TYPE SCALE ---------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -.025em; line-height: 1.04; }
.h-hero  { font-size: clamp(2.6rem, 6.4vw, 5.1rem); }
.h-1     { font-size: clamp(2rem, 3.8vw, 3.1rem); }
.h-2     { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.h-3     { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--brand);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55;
}
.eyebrow--center::after {
    content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55;
}
.eyebrow--light { color: rgba(255, 255, 255, .85); }

.lead { font-size: clamp(1rem, 1.25vw, 1.125rem); color: var(--text-muted); line-height: 1.75; }
.muted { color: var(--text-muted); }

/* ---------- 4. LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--wide { max-width: 1440px; }

.section { padding: clamp(52px, 6vw, 96px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(36px, 4vw, 60px); }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 3vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--row {
    max-width: none; display: flex; align-items: flex-end;
    justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.section-head p { margin-top: .6rem; }

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

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
    :root { --gutter: 20px; }
}

/* ---------- 5. BUTTONS ---------- */
.btn {
    --btn-bg: var(--brand);
    --btn-fg: #fff;
    --btn-bd: transparent;
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .95rem 1.7rem;
    background: var(--btn-bg); color: var(--btn-fg);
    border: 1px solid var(--btn-bd);
    border-radius: var(--radius-pill);
    font-size: .92rem; font-weight: 600; letter-spacing: .01em;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    box-shadow: var(--shadow-xs);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--sm { padding: .65rem 1.2rem; font-size: .84rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--dark  { --btn-bg: var(--ink-900); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink-900); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-900); --btn-bd: var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--ink-900); --btn-fg: #fff; --btn-bd: var(--ink-900); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.45); box-shadow: none; }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--ink-900); --btn-bd: #fff; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; font-size: .92rem; color: var(--brand);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow:hover { border-color: currentColor; gap: .8rem; }

/* ---------- 6. PILLS / BADGES / META ---------- */
.pill {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .85rem;
    border-radius: var(--radius-pill);
    background: var(--sand-100); color: var(--ink-700);
    font-size: .75rem; font-weight: 600; letter-spacing: .02em;
}
.pill--brand { background: var(--sea-100); color: var(--sea-900); }
.pill--leaf  { background: var(--leaf-100); color: var(--leaf-700); }
.pill--gold  { background: var(--gold-100); color: var(--gold-500); }
.pill--glass {
    /* dark scrim so the label stays readable over light or busy photos */
    background: rgba(9, 32, 38, .55); color: #fff;
    backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, .22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: .45rem 1rem;
    font-size: .82rem; color: var(--text-muted);
}
.meta-item { display: inline-flex; align-items: center; gap: .38rem; }
.meta-item svg { flex: none; opacity: .75; }

/* ---------- 7. PRELOADER ---------- */
html:not(.js) .preloader { display: none; }
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: grid; place-items: center;
    background: var(--sand-50);
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
    /* fail-safe: never trap the page behind the loader if JS is blocked */
    animation: preloader-failsafe 0s linear 3.5s forwards;
}
@keyframes preloader-failsafe { to { opacity: 0; visibility: hidden; } }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--sand-200);
    border-top-color: var(--brand);
    animation: spin .9s linear infinite;
}
.preloader__text {
    position: absolute; margin-top: 96px;
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-400);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 8. NAVBAR ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    height: var(--nav-h);
    display: flex; align-items: center;
    transition: background-color .45s var(--ease), box-shadow .45s var(--ease), height .45s var(--ease), border-color .45s var(--ease);
    /* solid by default (inner pages); the hero pages opt into .nav--transparent */
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    color: var(--ink-900);
    border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
    width: 100%; max-width: var(--container); margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex; align-items: center; gap: 20px;
}
.nav__logo { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.nav__logo img { height: 46px; width: auto; flex: none; }
@media (max-width: 480px) { .nav__logo img { height: 38px; } }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.01em; }
.nav__logo-sub { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
    position: relative; display: inline-flex; align-items: center; gap: .35rem;
    padding: .6rem .85rem; border-radius: var(--radius-pill);
    font-size: .9rem; font-weight: 500;
    transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav__link::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem;
    height: 1.5px; background: currentColor; border-radius: 2px;
    transform: scaleX(0); transform-origin: left; opacity: .8;
    transition: transform .35s var(--ease);
}
.nav__link:hover::after, .nav__item.is-active > .nav__link::after { transform: scaleX(1); }
.nav__link .caret { transition: transform .3s var(--ease); }
.nav__item { position: relative; }
.nav__item:hover .caret { transform: rotate(180deg); }

.nav__cta { margin-left: 12px; }

/* dropdown */
.nav__drop {
    position: absolute; top: calc(100% + 10px); left: 50%;
    min-width: 250px; padding: 10px;
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__item:hover .nav__drop, .nav__item:focus-within .nav__drop {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav__drop a {
    display: flex; align-items: center; gap: .7rem;
    padding: .6rem .8rem; border-radius: var(--radius-sm);
    font-size: .88rem; color: var(--ink-700);
    transition: background-color .25s var(--ease), color .25s var(--ease);
}
.nav__drop a:hover { background: var(--sand-50); color: var(--brand-strong); }
.nav__drop .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* transparent state over hero */
.nav--transparent {
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    color: #fff;
}
.nav--transparent .nav__link { color: rgba(255, 255, 255, .92); }
.nav--transparent .btn--nav { --btn-bg: rgba(255,255,255,.14); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); backdrop-filter: blur(10px); }
.nav--transparent .btn--nav:hover { --btn-bg: #fff; --btn-fg: var(--ink-900); }
.nav--transparent .nav__burger span { background: #fff; }

/* solid state on scroll */
.nav.is-stuck {
    height: 72px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom-color: var(--line-soft);
    box-shadow: 0 8px 30px -20px rgba(16, 32, 31, .5);
    color: var(--ink-900);
}
.nav.is-stuck .nav__link { color: var(--ink-700); }
.nav.is-stuck .nav__link:hover { color: var(--brand-strong); }
.nav.is-stuck .btn--nav { --btn-bg: var(--ink-900); --btn-fg: #fff; --btn-bd: var(--ink-900); backdrop-filter: none; }
.nav.is-stuck .nav__burger span { background: var(--ink-900); }

/* burger */
.nav__burger {
    display: none; width: 44px; height: 44px; border: 0; background: transparent;
    border-radius: 50%; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span {
    display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink-900);
    transition: transform .35s var(--ease), opacity .25s var(--ease), width .35s var(--ease);
}
.nav__burger span:nth-child(3) { width: 14px; }
.nav__burger:hover span:nth-child(3) { width: 22px; }

/* ---------- 9. MOBILE DRAWER ---------- */
.drawer {
    position: fixed; inset: 0; z-index: 950;
    visibility: hidden; pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
    position: absolute; inset: 0; background: rgba(11, 26, 25, .5);
    opacity: 0; transition: opacity .4s var(--ease);
    backdrop-filter: blur(2px);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(400px, 88vw);
    background: var(--sand-50);
    padding: 26px 26px calc(26px + env(safe-area-inset-bottom));
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__brand { display: flex; align-items: center; gap: .7rem; }
.drawer__brand img { height: 40px; width: auto; flex: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer__close {
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer;
    transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.drawer__close:hover { background: var(--ink-900); color: #fff; transform: rotate(90deg); }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav > li { border-bottom: 1px solid var(--line-soft); }
.drawer__nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem .2rem;
    font-family: var(--font-display); font-size: 1.35rem; color: var(--ink-900);
    transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.drawer__nav a:hover { padding-left: .6rem; color: var(--brand); }
.drawer__sub { padding: 0 0 .9rem .2rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.drawer__sub a { font-family: var(--font-body); font-size: .82rem; padding: .35rem .8rem; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-pill); }
.drawer__foot { margin-top: auto; padding-top: 26px; }
.drawer__social { display: flex; gap: 10px; margin-top: 18px; }

@media (max-width: 1080px) {
    .nav__menu, .nav__cta { display: none; }
    .nav__burger { display: flex; }
}

/* ---------- 10. HERO ---------- */
.hero {
    position: relative;
    min-height: clamp(460px, 84svh, 820px);
    display: block;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero__media {
    position: absolute; inset: 0; z-index: -2;
    background: linear-gradient(135deg, var(--sea-900) 0%, var(--sea-500) 55%, var(--leaf-700) 100%);
}
.hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
/* Slide video: biarkan gerak videonya sendiri, tanpa efek zoom */
.hero__slide--video { transform: none; transition: opacity 1.4s var(--ease); }
.hero__slide--video.is-active { transform: none; }
.hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.hero__media::after {
    /* Peredup tipis: cukup agar menu atas terbaca, foto tetap terlihat jelas */
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(8, 20, 24, .58) 0%, rgba(8, 20, 24, .12) 26%, rgba(8, 20, 24, .06) 62%, rgba(6, 16, 20, .42) 100%);
}
/* petunjuk untuk pengelola saat slide masih kosong */
.hero__hint {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    z-index: 3; display: inline-flex; align-items: center; gap: .55rem;
    padding: .7rem 1.2rem; border-radius: var(--radius-pill);
    background: rgba(9, 32, 38, .5); color: #fff; font-size: .86rem; font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .34);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: background-color .35s var(--ease), color .35s var(--ease);
}
.hero__hint:hover { background: #fff; color: var(--ink-900); }

/* tombol panah slideshow */
.hero__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3; width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 50%; cursor: pointer;
    color: #fff; background: rgba(9, 32, 38, .38);
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%);
    transition: background-color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.hero__nav:hover { background: #fff; color: var(--ink-900); border-color: #fff; }
.hero__nav--prev { left: clamp(12px, 3vw, 34px); }
.hero__nav--next { right: clamp(12px, 3vw, 34px); }
.hero__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero__nav--next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 640px) {
    .hero__nav { width: 42px; height: 42px; }
}

/* search bar */
.search {
    display: flex; align-items: center; gap: 6px;
    padding: 8px; margin-bottom: 1.6rem;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    max-width: 720px;
    box-shadow: var(--shadow-md);
    transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.search:focus-within { background: rgba(255, 255, 255, .96); border-color: #fff; }
.search__field { display: flex; align-items: center; gap: .6rem; flex: 1 1 auto; padding-left: 1rem; min-width: 0; }
.search__field svg { flex: none; opacity: .8; }
.search input {
    flex: 1; min-width: 0; padding: .8rem .2rem;
    background: transparent; border: 0; outline: none;
    color: #fff; font-size: .95rem;
}
.search input::placeholder { color: rgba(255, 255, 255, .78); }
.search:focus-within .search__field { color: var(--ink-700); }
.search:focus-within input { color: var(--ink-900); }
.search:focus-within input::placeholder { color: var(--ink-400); }
.search__divider { width: 1px; align-self: stretch; background: rgba(255, 255, 255, .25); margin-block: .4rem; }
.search:focus-within .search__divider { background: var(--line); }
.search select {
    appearance: none; -webkit-appearance: none;
    background: transparent; border: 0; outline: none; cursor: pointer;
    padding: .8rem 1.9rem .8rem 1rem; font-size: .9rem; color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .7rem center;
}
.search select option { color: var(--ink-900); }
.search:focus-within select {
    color: var(--ink-900);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310201F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.search__btn { flex: none; }
@media (max-width: 640px) {
    .search { flex-wrap: wrap; border-radius: var(--radius-lg); }
    .search__field { flex: 1 0 100%; }
    .search__divider { display: none; }
    .search select { flex: 1; }
}

/* baris pencarian + angka ringkas di bawah slideshow */
.herobar { display: grid; gap: 22px; }
.herobar__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.statbar {
    display: flex; gap: clamp(24px, 4vw, 54px); flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid var(--line);
}
.statbar__num { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--ink-900); line-height: 1; }
.statbar__label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-top: .5rem; }

/* varian pencarian untuk latar terang */
.search--light {
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.search--light .search__field { color: var(--ink-700); }
.search--light input, .search--light select { color: var(--ink-900); }
.search--light input::placeholder { color: var(--ink-400); }
.search--light .search__divider { background: var(--line); }
.search--light select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310201F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.hero__dots {
    position: absolute; left: 50%; bottom: clamp(58px, 7vw, 84px); transform: translateX(-50%);
    z-index: 3; display: flex; gap: 8px;
}
.hero__dot {
    width: 30px; height: 3px; border: 0; padding: 0; border-radius: 2px;
    background: rgba(255, 255, 255, .45); cursor: pointer;
    transition: background-color .35s var(--ease), width .35s var(--ease);
}
.hero__dot.is-active { background: #fff; width: 48px; }

.scroll-cue {
    position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
    z-index: 3; display: grid; place-items: center; gap: 6px;
    font-size: .64rem; letter-spacing: .24em; text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
}
.scroll-cue__line { width: 1px; height: 34px; background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 992px) { .scroll-cue { display: none; } }

/* ---------- 11. CARDS ---------- */
.card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand-100); }
.card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ease-out), filter .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 24, 28, .5), transparent 45%);
    opacity: 0; transition: opacity .5s var(--ease);
}
.card:hover .card__media::after { opacity: 1; }
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.card__fav {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    width: 36px; height: 36px; display: grid; place-items: center;
    background: rgba(255, 255, 255, .9); border-radius: 50%; color: var(--ink-700);
    opacity: 0; transform: translateY(-6px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s;
}
.card:hover .card__fav { opacity: 1; transform: translateY(0); }
.card__fav:hover { color: var(--sea-700); }

.card__body { padding: 22px; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__title {
    font-family: var(--font-display); font-size: 1.28rem; line-height: 1.25;
    margin: 0; transition: color .3s var(--ease);
}
.card:hover .card__title { color: var(--brand-strong); }
.card__text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.card__foot {
    margin-top: auto; padding-top: 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border-top: 1px solid var(--line-soft);
}
.card__link { position: absolute; inset: 0; z-index: 3; }
.card__link + * { position: relative; }

/* clamp helpers */
.clamp-2, .clamp-3 { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.clamp-2 { -webkit-line-clamp: 2; }
.clamp-3 { -webkit-line-clamp: 3; }

/* rating / review chip */
.rating { display: inline-flex; align-items: center; gap: .3rem; font-size: .84rem; font-weight: 600; color: var(--ink-800); }
.rating svg { color: var(--gold-500); }

/* ---------- 12. CAROUSEL ---------- */
.carousel { position: relative; }
.carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 33.333%);
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 6px 24px;
    margin: -6px -6px -6px;
    scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
@media (max-width: 992px) { .carousel__track { grid-auto-columns: minmax(280px, 60%); } }
@media (max-width: 640px)  { .carousel__track { grid-auto-columns: minmax(260px, 84%); } }

.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
    width: 48px; height: 48px; display: grid; place-items: center;
    border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer;
    color: var(--ink-800);
    transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease), opacity .3s;
}
.carousel__btn:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); transform: translateY(-2px); }
.carousel__btn[disabled] { opacity: .35; cursor: default; transform: none; background: #fff; color: var(--ink-800); border-color: var(--line); }

.carousel__progress { height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.carousel__bar { height: 100%; width: 20%; background: var(--brand); border-radius: 2px; transition: transform .2s linear, width .3s var(--ease); transform-origin: left; }

/* ---------- 13. EXPERIENCE TILES ---------- */
.exp {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 260px;
    background: var(--ink-800);
    color: #fff;
    isolation: isolate;
}
.exp img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    z-index: -2; transition: transform 1.2s var(--ease-out);
}
.exp::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(10, 24, 28, .28) 0%, rgba(10, 24, 28, .62) 55%, rgba(8, 20, 24, .9) 100%);
    transition: background .5s var(--ease);
}
.exp:hover img { transform: scale(1.08); }
.exp:hover::after { background: linear-gradient(180deg, rgba(14, 85, 102, .25) 0%, rgba(8, 32, 40, .85) 100%); }
.exp__body {
    position: relative; z-index: 1; height: 100%;
    padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; gap: .3rem;
    min-height: 260px;
}
.exp__icon {
    width: 46px; height: 46px; display: grid; place-items: center;
    border-radius: 14px; margin-bottom: auto;
    background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    transition: background-color .4s var(--ease), transform .4s var(--ease);
}
.exp:hover .exp__icon { background: #fff; color: var(--sea-900); transform: translateY(-4px); }
.exp__name { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin: 0; text-shadow: 0 1px 12px rgba(0, 0, 0, .5); }
.exp__count { font-size: .8rem; color: rgba(255, 255, 255, .9); text-shadow: 0 1px 10px rgba(0, 0, 0, .5); }

/* ---------- 14. FEATURED SPLIT ---------- */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 5vw, 70px); }
@media (max-width: 992px) { .feature { grid-template-columns: 1fr; } }
.feature__media { position: relative; }
.feature__img {
    border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4 / 4.6;
    box-shadow: var(--shadow-lg); background: var(--sand-100);
}
.feature__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 992px) { .feature__img { aspect-ratio: 4 / 3; } }
.feature__thumb {
    position: absolute; right: -18px; bottom: -22px;
    width: min(220px, 45%); aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg); overflow: hidden;
    border: 6px solid #fff; box-shadow: var(--shadow-md);
    background: var(--sand-100);
}
.feature__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .feature__thumb { display: none; } }
.feature__badge {
    position: absolute; left: -14px; top: 26px;
    background: #fff; border-radius: var(--radius); padding: 14px 18px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem;
}
.feature__list { display: grid; gap: 12px; margin: 1.6rem 0 2rem; }
.feature__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .94rem; color: var(--text-muted); }
.feature__list svg { flex: none; margin-top: .28rem; color: var(--accent); }

/* ---------- 15. PACKAGE / EVENT CARDS ---------- */
.pack { display: flex; flex-direction: column; }
.pack__media { aspect-ratio: 16 / 10; }
.pack__price { font-family: var(--font-display); font-size: 1.35rem; color: var(--brand-strong); }
.pack__price small { font-family: var(--font-body); font-size: .74rem; color: var(--text-muted); font-weight: 500; }
.pack__specs {
    display: flex; flex-wrap: wrap; gap: .4rem .9rem;
    padding: 12px 0; margin: 0;
    font-size: .82rem; color: var(--text-muted);
}
.date-chip {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: rgba(255, 255, 255, .95); border-radius: 14px;
    padding: 8px 12px; text-align: center; line-height: 1.1;
    box-shadow: var(--shadow-sm);
}
.date-chip strong { display: block; font-size: 1.15rem; font-family: var(--font-display); color: var(--ink-900); }
.date-chip span { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); }

/* ---------- 16. STORIES ---------- */
.story { display: grid; gap: 16px; }
.story__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 2; background: var(--sand-100); position: relative; }
.story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.story:hover .story__media img { transform: scale(1.06); }
.story__title { font-family: var(--font-display); font-size: 1.3rem; transition: color .3s var(--ease); }
.story:hover .story__title { color: var(--brand-strong); }
.story--lead .story__media { aspect-ratio: 16 / 11; }
.story--lead .story__title { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.story--row { grid-template-columns: 150px 1fr; align-items: center; }
.sidecard .story--row { grid-template-columns: 74px 1fr; gap: 14px; }
.sidecard .story--row .story__media { aspect-ratio: 1 / 1; border-radius: 12px; }
.story--row .story__media { aspect-ratio: 1 / 1; border-radius: var(--radius); }
@media (max-width: 480px) { .story--row { grid-template-columns: 110px 1fr; gap: 14px; } }

/* ---------- 17. TRAVEL GUIDE ---------- */
.guide {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
    padding: 26px;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .45s var(--ease);
}
.guide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide__icon {
    width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
    background: var(--sea-100); color: var(--sea-700); margin-bottom: 18px;
    transition: background-color .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.guide:hover .guide__icon { background: var(--sea-700); color: #fff; transform: rotate(-6deg); }
.guide > * { flex: none; }
.guide h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.guide p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.guide__meta { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .8rem; color: var(--brand); font-weight: 600; }

/* ---------- 18. CTA BAND ---------- */
.cta {
    position: relative; isolation: isolate; overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(48px, 8vw, 110px) clamp(24px, 5vw, 70px);
    color: #fff; text-align: center;
    background: var(--ink-900);
}
.cta__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(9, 26, 32, .55), rgba(9, 26, 32, .8)),
                radial-gradient(90% 70% at 50% 120%, rgba(192, 138, 62, .35), transparent 60%);
}
.cta h2 { color: #fff; max-width: 16ch; margin-inline: auto; }
.cta p { color: rgba(255, 255, 255, .8); max-width: 54ch; margin-inline: auto; margin-top: 1rem; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- 19. GALLERY MOSAIC ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mosaic__item {
    position: relative; overflow: hidden; border-radius: var(--radius);
    aspect-ratio: 1 / 1; background: var(--sand-100); cursor: zoom-in; display: block;
}
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.mosaic__item:hover img { transform: scale(1.08); }
.mosaic__item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 24, 28, .65), transparent 55%);
    opacity: 0; transition: opacity .4s var(--ease);
}
.mosaic__item:hover::after { opacity: 1; }
.mosaic__cap {
    position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
    color: #fff; font-size: .88rem; font-weight: 600;
    opacity: 0; transform: translateY(8px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mosaic__item:hover .mosaic__cap { opacity: 1; transform: translateY(0); }
.mosaic__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.mosaic__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
@media (max-width: 900px) {
    .mosaic { grid-template-columns: repeat(2, 1fr); }
    .mosaic__item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}
@media (max-width: 520px) {
    .mosaic { grid-template-columns: 1fr; }
    .mosaic__item--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    display: grid; place-items: center; padding: 24px;
    background: rgba(8, 18, 20, .92);
    opacity: 0; visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s;
    backdrop-filter: blur(6px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: min(1100px, 92vw); max-height: 82vh; width: auto;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    transform: scale(.96); transition: transform .4s var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__cap { color: rgba(255, 255, 255, .85); margin-top: 16px; font-size: .9rem; text-align: center; }
.lightbox__close {
    position: absolute; top: 20px; right: 20px;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer;
    display: grid; place-items: center;
    transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox__close:hover { background: #fff; color: var(--ink-900); transform: rotate(90deg); }
.lightbox__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .1);
    color: #fff; cursor: pointer; display: grid; place-items: center;
    transition: background-color .3s var(--ease);
}
.lightbox__arrow:hover { background: rgba(255, 255, 255, .28); }
.lightbox__arrow--prev { left: 20px; }
.lightbox__arrow--next { right: 20px; }
@media (max-width: 640px) { .lightbox__arrow { display: none; } }

/* ---------- 20. PAGE HEADER (inner pages) ---------- */
.pagehead {
    position: relative; isolation: isolate; overflow: hidden;
    padding: calc(var(--nav-h) + clamp(60px, 9vw, 120px)) 0 clamp(50px, 7vw, 96px);
    color: #fff;
    background: var(--sea-900);
}
.pagehead__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.pagehead::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(9, 26, 32, .78), rgba(9, 26, 32, .62)),
                radial-gradient(100% 80% at 0% 100%, rgba(14, 85, 102, .55), transparent 60%);
}
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead p { color: rgba(255, 255, 255, .82); max-width: 58ch; margin-top: .8rem; }
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: rgba(255, 255, 255, .7); margin-bottom: 1.4rem; }
.crumbs a { transition: color .3s var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }

/* ---------- 21. FILTER BAR ---------- */
.filterbar {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
    padding: 14px; background: #fff; border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    margin-bottom: 36px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem 1.05rem; border-radius: var(--radius-pill);
    border: 1px solid var(--line); background: #fff;
    font-size: .85rem; font-weight: 500; color: var(--ink-700); cursor: pointer;
    transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--ink-300); }
.chip.is-active { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.chip__count { font-size: .72rem; opacity: .6; }

.searchbox {
    display: flex; align-items: center; gap: .55rem;
    padding: .55rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-pill);
    min-width: 250px; flex: 1 1 250px; max-width: 340px;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.searchbox:focus-within { border-color: var(--sea-300); box-shadow: 0 0 0 4px var(--sea-100); }
.searchbox input { flex: 1; min-width: 0; border: 0; outline: none; background: transparent; font-size: .9rem; }
.searchbox svg { flex: none; color: var(--ink-400); }

/* ---------- 22. ARTICLE / DETAIL ---------- */
/* align-items: stretch (bawaan) supaya kolom <aside> setinggi barisnya —
   syarat agar .side-sticky bisa menempel sepanjang artikel. */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(30px, 4vw, 60px); }
.detail > aside { min-width: 0; }
@media (max-width: 992px) { .detail { grid-template-columns: 1fr; } }

.detail__hero {
    border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 30px;
    aspect-ratio: 16 / 9; background: var(--sand-100); box-shadow: var(--shadow-md);
}
.detail__hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.02rem; line-height: 1.85; color: var(--ink-700); }
.prose p { margin-bottom: 1.2em; }
.prose > p:first-of-type::first-letter {
    float: left; font-family: var(--font-display); font-size: 3.4rem; line-height: .84;
    padding: .1em .12em 0 0; color: var(--brand-strong);
}

.sidecard {
    background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.sidecard h3 { font-size: 1rem; letter-spacing: .01em; margin-bottom: 1rem; }
.sidecard--sticky { position: sticky; top: calc(var(--nav-h) + 16px); }

/* Seluruh kolom sidebar ikut menempel, bukan hanya kartu pertama.
   Bila isinya lebih tinggi dari layar, kolom ini bergulir sendiri
   supaya kartu paling bawah tetap terjangkau. */
.side-sticky {
    position: sticky; top: calc(var(--nav-h) + 16px);
}
.side-sticky > .sidecard:last-child { margin-bottom: 0; }

@media (max-width: 992px) {
    .side-sticky { position: static; }
}
.sidelist li + li { margin-top: 2px; }
.sidelist a {
    display: flex; align-items: center; justify-content: space-between; gap: .6rem;
    padding: .65rem .8rem; border-radius: var(--radius-sm);
    font-size: .9rem; color: var(--ink-700);
    transition: background-color .3s var(--ease), color .3s var(--ease), padding-left .3s var(--ease);
}
.sidelist a:hover { background: var(--sand-50); color: var(--brand-strong); padding-left: 1.05rem; }

.info-row { display: flex; gap: .8rem; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { flex: none; margin-top: .2rem; color: var(--brand); }
.info-row strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.info-row span { font-size: .92rem; color: var(--ink-800); }

/* comments */
.comment {
    display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft);
}
.comment:last-of-type { border-bottom: 0; }
.avatar {
    width: 46px; height: 46px; flex: none; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--sea-100); color: var(--sea-900);
    font-weight: 700; font-size: .95rem;
}
.comment__name { font-weight: 600; color: var(--ink-900); }
.comment__text { font-size: .94rem; color: var(--text-muted); margin: .25rem 0 0; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-700); margin-bottom: .4rem; }
.input, .textarea {
    width: 100%; padding: .85rem 1.05rem;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; font-family: inherit; font-size: .94rem; color: var(--ink-900);
    outline: none;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.textarea { border-radius: var(--radius); resize: vertical; min-height: 130px; }
.input:focus, .textarea:focus { border-color: var(--sea-300); box-shadow: 0 0 0 4px var(--sea-100); }
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }

.alert {
    display: flex; align-items: center; gap: .7rem;
    padding: .9rem 1.1rem; border-radius: var(--radius);
    background: var(--leaf-100); color: var(--leaf-700);
    font-size: .9rem; font-weight: 500; margin-bottom: 20px;
    border: 1px solid rgba(46, 139, 107, .2);
}

/* empty state */
.empty {
    text-align: center; padding: clamp(50px, 8vw, 90px) 24px;
    border: 1px dashed var(--line); border-radius: var(--radius-lg); background: var(--sand-50);
}
.empty__icon {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
    display: grid; place-items: center; background: #fff; color: var(--ink-300);
    box-shadow: var(--shadow-sm);
}

/* ---------- 23. FOOTER ---------- */
.footer { background: var(--ink-900); color: rgba(255, 255, 255, .72); padding-top: clamp(56px, 7vw, 92px); }
.footer h4 {
    color: #fff; font-family: var(--font-body); font-size: .78rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer__grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 54px;
}
@media (max-width: 992px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { display: flex; align-items: center; gap: .8rem; margin-bottom: 18px; }
.footer__logo img { height: 56px; width: auto; flex: none; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1.15; color: #fff; }
.footer__logo-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.01em; }
.footer__logo-sub { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.footer p { font-size: .92rem; line-height: 1.75; }
.footer__links li + li { margin-top: .6rem; }
.footer__links a {
    font-size: .92rem; position: relative;
    transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer__links a:hover { color: #fff; padding-left: .45rem; }
.footer__links a::before {
    content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px; background: var(--sea-300);
    transform: translateY(-50%); transition: width .3s var(--ease);
}
.footer__links a:hover::before { width: .3rem; }

.social { display: flex; gap: 10px; }
.social a {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    border: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .8);
    transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.social a:hover { background: #fff; color: var(--ink-900); border-color: #fff; transform: translateY(-3px); }
.drawer__social a { border-color: var(--line); color: var(--ink-700); background: #fff; }
.drawer__social a:hover { background: var(--ink-900); color: #fff; }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0 30px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: .84rem;
}
.footer__bottom a:hover { color: #fff; }

/* ---------- 24. FLOATING ACTIONS ---------- */
.fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 800;
    display: grid; gap: 10px;
}
.fab__btn {
    width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
    display: grid; place-items: center;
    background: #fff; color: var(--ink-900); box-shadow: var(--shadow-md);
    transition: transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease), opacity .35s var(--ease);
}
.fab__btn:hover { transform: translateY(-3px); }
.fab__btn--wa { background: #25D366; color: #fff; }
.fab__btn--top { opacity: 0; pointer-events: none; }
.fab__btn--top.is-visible { opacity: 1; pointer-events: auto; }
@media (max-width: 560px) { .fab { right: 16px; bottom: 16px; } }

/* ---------- 25. REVEAL ANIMATION ---------- */
/* Only hide when JS is available to reveal it again. */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="zoom"] { transform: scale(.96); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- 25b. FARE / TARIF PERAHU ---------- */
.fare {
    display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 28px; align-items: start;
}
.fare__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.fare__item {
    display: flex; flex-direction: column; gap: 14px;
    background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
    padding: 22px 22px 18px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.fare__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sea-100); }
.fare__item--hi { background: linear-gradient(160deg, var(--sea-900) 0%, var(--sea-700) 100%); border-color: transparent; color: #fff; }

.fare__head { display: flex; align-items: center; gap: .8rem; }
.fare__no {
    flex: none; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
    background: var(--sea-100); color: var(--sea-700);
    font-family: var(--font-display); font-size: .92rem; letter-spacing: .02em;
}
.fare__item--hi .fare__no { background: rgba(255, 255, 255, .16); color: #fff; }
.fare__name { font-size: 1.02rem; margin: 0; line-height: 1.25; }
.fare__type { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); }
.fare__item--hi .fare__type { color: rgba(255, 255, 255, .62); }

.fare__routes { display: grid; gap: .5rem; margin: 0; }
.fare__routes li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; color: var(--text-muted); }
.fare__routes svg { flex: none; margin-top: 2px; color: var(--sea-500); }
.fare__item--hi .fare__routes li { color: rgba(255, 255, 255, .84); }
.fare__item--hi .fare__routes svg { color: var(--sand-100); }

.fare__price {
    margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
    display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
}
.fare__price strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink-900); letter-spacing: -.01em; }
.fare__price span { font-size: .78rem; color: var(--ink-400); }
.fare__item--hi .fare__price { border-top-color: rgba(255, 255, 255, .22); }
.fare__item--hi .fare__price strong { color: #fff; }
.fare__item--hi .fare__price span { color: rgba(255, 255, 255, .66); }

.fare__side { display: grid; gap: 18px; }
.fare__note {
    background: var(--gold-100); border: 1px solid rgba(184, 138, 63, .24);
    border-radius: var(--radius-lg); padding: 18px 20px;
}
.fare__note-label {
    display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--gold-500); margin-bottom: .5rem;
}
.fare__note p { margin: 0; font-size: .88rem; color: var(--ink-700); line-height: 1.65; }

.fare__tips { display: grid; gap: .7rem; margin: 0; }
.fare__tips li { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; color: var(--text-muted); }
.fare__tips svg { flex: none; margin-top: 2px; color: var(--brand); }

@media (max-width: 1100px) {
    .fare { grid-template-columns: minmax(0, 1fr); }
    .fare__side { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
}
@media (max-width: 760px) {
    .fare__list { grid-template-columns: minmax(0, 1fr); }
    .fare__side { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 26. UTILITIES ---------- */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: -80px; left: 16px; z-index: 1100;
    background: var(--ink-900); color: #fff; padding: .8rem 1.2rem; border-radius: var(--radius-sm);
    transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.6rem; }
.divider { height: 1px; background: var(--line-soft); border: 0; margin: 2rem 0; }
.stack { display: grid; gap: 22px; }
.row-actions { display: flex; flex-wrap: wrap; gap: 12px; }
