    :root {
      --ink: #1b1d1f;
      --paper: #fff;
      --muted: #6f747b;
      --line: #e8e8e8;
      --accent: #b8a47a;
      --btn: #111;
      --btn-ink: #fff;
      --nav-h: 76px;
      --nav-alpha: 0.18;
      --shadow-1: 0 10px 24px rgba(0, 0, 0, 0.08);
      --shadow-2: 0 26px 70px rgba(0, 0, 0, 0.16);
      --font-sans: "Montserrat", system-ui, sans-serif;
      --font-serif: "Spectral", serif;
      --ivory: #faf8f5;
      --dawn: #f4f6f8;
      --bottom-gutter: 96px;
      --nav-logo-h: calc(var(--nav-h) - 18px);
      --ink: #1b1d1f;
      --muted: #6f747b;
      --line: #e8e8e8;
      --accent: #b8a47a;
      --teaser: 7.5vw;
      /* lebar teaser kiri-kanan */
      --gutter: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      margin: 0 !important;
      padding: 0 !important;
      overflow-x: hidden !important;
      height: 100%;
    }

    body {
      font-family: var(--font-sans);
      color: var(--ink);
      background: #fff;
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: var(--font-sans);
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid #0003;
      outline-offset: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
    }

    /* Top progress */
    #progress {
      position: fixed;
      left: 0;
      top: 0;
      height: 3px;
      background: #111;
      width: 0;
      z-index: 300;
    }

    /* ===== NAVBAR ===== */
    .header {
      position: fixed;
      inset: 0 0 auto 0;
      height: var(--nav-h);
      padding: 0 clamp(16px, 4vw, 56px);
      color: #fff;
      transition: 0.25s;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      background: rgba(255, 255, 255, var(--nav-alpha));
      -webkit-backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
      backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
      z-index: 1200;
      border-bottom: 1px solid transparent;
    }

    .header a,
    .header .menu>li>a {
      color: inherit;
    }

    .header.scrolled {
      background: #fff;
      color: var(--ink);
      box-shadow: var(--shadow-1);
      border-color: var(--line);
    }

    .logo img {
      height: var(--nav-logo-h);
      object-fit: contain;
    }

    .nav-center {
      display: flex;
      justify-content: center;
      margin-left: 100px;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: clamp(8px, 1vw, 14px);
    }

    .menu>li>a {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      height: var(--nav-h);
      padding: 0 4px;
      opacity: 0.95;
      background-image: linear-gradient(currentColor, currentColor);
      background-size: 0% 1px;
      background-repeat: no-repeat;
      background-position: 0 100%;
      transition: background-size 0.26s ease, opacity 0.2s;
    }

    .menu>li>a:hover {
      background-size: 100% 1px;
      opacity: 1;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .corp-logo {
      height: var(--nav-logo-h);
      object-fit: contain;
    }

    .corp-logo-wrap {
      position: relative;
      display: inline-block;
      height: var(--nav-logo-h);
      width: 100px;
    }

    .corp-logo-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.35s ease;
    }

    .corp-logo.white {
      opacity: 1;
    }

    .corp-logo.color {
      opacity: 0;
    }

    .corp-logo-wrap.scrolled .white {
      opacity: 0;
    }

    .corp-logo-wrap.scrolled .color {
      opacity: 1;
    }

    /* --- CORPORATE (THG) --- */
    .corp-link {
      display: inline-block;
      height: var(--nav-logo-h);
    }

    /* scroll swap (diseragamkan ke state header.scrolled) */
    .header.scrolled .corp-logo.white {
      opacity: 0;
    }

    .header.scrolled .corp-logo.color {
      opacity: 1;
    }

    /* HOVER swap (baru) */
    .corp-link:hover .corp-logo.white {
      opacity: 0;
    }

    .corp-link:hover .corp-logo.color {
      opacity: 1;
    }

    /* === RESPONSIVE NAV LAYOUT (mobile & tablet) === */
    @media (max-width: 1024px) {

      .burger {
        order: 2;
      }

      /* --- Struktur grid --- */
      .header {
        padding: 0 16px;
        grid-template-columns: auto auto 1fr auto;
        /* tambah satu kolom untuk corp logo */
        align-items: center;
        column-gap: 8px;
        /* rapat tapi masih ada sedikit spasi */
      }

      /* --- Pindahkan posisi corp logo ke kanan logo utama --- */
      .corp-link {
        order: initial;
        /* abaikan urutan flex dari nav-right */
        grid-column: 2;
        /* letakkan di kolom kedua, setelah logo utama */
        justify-self: start;
      }

      /* --- Logo utama tetap di kolom pertama --- */
      .logo {
        grid-column: 1;
      }

      /* --- Nav center tetap di tengah, burger tetap kanan --- */
      .nav-center {
        grid-column: 3;
      }

      .nav-right {
        grid-column: 4;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      /* --- Sembunyikan CTA (Book Now) tapi biarkan burger tampil --- */
      .nav-cta {
        display: none !important;
      }

      /* --- Atur ukuran logo corp biar proporsional --- */
      .corp-logo-wrap {
        width: 70px;
      }
    }

    /* Tampilkan kembali language switcher di menu mobile */
    @media (max-width: 1024px) {
      .mnav-panel .lang-wrap {
        display: block !important;
      }

      /* Sembunyikan menu tengah (THE HOTEL dan lainnya) */
      .nav-center {
        display: none !important;
      }

      /* Pastikan wrapper tombol bahasa tetap relatif */
      .lang-wrap {
        position: relative;
      }

      /* Posisi dropdown persis di bawah tombol */
      .lang-menu {
        position: absolute;
        top: 100%;
        /* tepat di bawah lang-btn */
        left: 0;
        width: max-content;
        min-width: 100%;
        background: inherit;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.25s ease;
        z-index: 999;
      }

      /* Saat tombol aktif (lang-menu dibuka) */
      .lang-wrap.open .lang-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

    }


    .lang-wrap {
      position: relative;
    }

    .lang-btn {
      height: 40px;
      padding: 0 14px;
      background: transparent;
      color: inherit;
      border-radius: 0 !important;
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-1);
      display: none;
      flex-direction: column;
      min-width: 180px;
      z-index: 10000;
      overflow: hidden;
      border-radius: 0 !important;
    }

    .lang-wrap.open .lang-menu {
      display: flex;
    }

    .lang-menu a {
      padding: 10px 14px;
      color: var(--ink);
      display: block;
    }

    .lang-menu a:hover {
      background: #f6f6f6;
    }


    .burger {
      display: none;
      background: transparent;
      border: 1px solid #ffffff55;
      height: 40px;
      width: 40px;
      border-radius: 10px;
      color: inherit;
    }

    .header.scrolled .burger {
      border-color: var(--line);
      color: var(--ink);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      background: transparent;
      background: #cccaca;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 35px;
      min-width: 200px;
      height: 40px;
      margin: 0 0 0 20px;
      cursor: pointer;
      transition: all 0.25s ease;
      transition: 0.2s;
      visibility: hidden;
      opacity: 0;
    }

    .header.scrolled .nav-cta {
      visibility: visible;
      opacity: 1;
    }

    .nav-cta:hover {
      background: #111;
      color: #fff;
    }

    @media (max-width: 1024px) {
      .nav-center {
        display: none;
      }

      .burger {
        display: inline-grid;
        place-items: center;
      }
    }

    /* ===== Mobile Drawer ===== */
    .mnav {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 1500;
      transition: opacity 0.3s ease;
    }

    .mnav.open {
      display: block;
      opacity: 1;
    }

    .mnav-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .mnav-panel {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: min(88vw, 360px);
      background: #fff;
      box-shadow: -12px 0 40px rgba(0, 0, 0, 0.22);
      display: flex;
      flex-direction: column;
      padding: 16px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }

    .mnav-close {
      align-self: flex-end;
      background: none;
      border: 1px solid #eee;
      height: 36px;
      width: 36px;
    }

    .mnav ul {
      list-style: none;
      margin-top: 8px;
    }

    .mnav a {
      display: block;
      padding: 12px;
      color: #000;
      font-weight: 700;
    }

    .mnav a:hover {
      background: #f7f7f7;
    }

    /* === SMOOTH SIDEBAR ANIMATION === */

    .mnav.open .mnav-panel {
      transform: translateX(0);
    }


    /* ===== HERO ===== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 560px;
      overflow: hidden;
      background: #000;
    }

    .hero .poster,
    .hero video,
    .overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero .poster,
    .hero video,
    .overlay {
      pointer-events: none;
    }

    .hero video {
      opacity: 0;
      transition: opacity 0.6s;
    }

    .hero video.show {
      opacity: 1;
    }

    .overlay {
      z-index: 1;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.42),
          rgba(0, 0, 0, 0.64));
    }

    /* ===== NAVBAR FIX ===== */

    /* Kolom tengah boleh menyusut, tanpa margin tambahan */
    .nav-center {
      display: flex;
      justify-content: center;
      min-width: 0;
      /* penting: biar kolom tengah bisa shrink */
      overflow: hidden;
      /* cegah meluber aneh */
      margin-left: 0;
      /* hapus margin 100px yang bikin mepet */
    }

    /* Menu tetap 1 baris (nowrap) dan tidak memaksa wrapping */
    .menu {
      list-style: none;
      display: flex;
      align-items: center;
      gap: clamp(8px, 1vw, 14px);
      flex-wrap: nowrap;
      /* paksa satu baris */
      white-space: nowrap;
      /* teks menu satu line */
      min-width: 0;
      /* biar bisa shrink */
    }

    /* Setiap item tidak ikut melar */
    .menu>li {
      flex: 0 0 auto;
    }

    /* Link menu: selalu satu baris, padding hemat ruang */
    .menu>li>a {
      white-space: nowrap;
      /* ini memastikan nama menu tidak turun baris */
      letter-spacing: 0.12em;
      font-size: clamp(11px, 1.05vw, 12px);
      /* sedikit responsif biar muat */
      padding: 0 4px;
      height: var(--nav-h);
      display: inline-flex;
      align-items: center;
    }

    /* Logo & area kanan tidak mengganggu layout */
    .logo {
      min-width: 0;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    /* Kurangi jarak grid supaya ruang tengah lebih lega */
    .header {
      grid-template-columns: auto 1fr auto;
      gap: clamp(12px, 2vw, 28px);
    }

    /* Kalau masih terlalu panjang di layar sempit desktop,
   boleh aktifkan horizontal scroll halus di area menu (optional) */
    .nav-center {
      overflow: auto;
      scrollbar-width: none;
    }

    .nav-center::-webkit-scrollbar {
      display: none;
    }

    @media (max-width: 1280px) {
      .menu {
        gap: clamp(6px, 0.8vw, 10px);
      }

      .menu>li>a {
        letter-spacing: 0.1em;
      }
    }

    /* Di <=1024px, kamu sudah hide .nav-center & pakai drawer — tetap dipertahankan */


    /* Modal (Date dropdown) */
    .modal {
      position: absolute;
      display: none;
      z-index: 1600;
    }

    .modal.open {
      display: block;
      animation: slideDown 0.25s ease forwards;
    }

    .modal .card {
      position: absolute;
      background: #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--line);
      border-radius: 4px;
      margin: 0;
      overflow: hidden;
    }

    @keyframes slideOut {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal .backdrop {
      display: none;
    }

    .cal header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .cal h4 {
      font-size: 15px;
      font-weight: 600;
    }

    .navbtn {
      border: none;
      background: none;
      font-size: 18px;
      cursor: pointer;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      text-align: center;
      font-size: 14px;
    }

    .grid strong {
      font-size: 12px;
      color: #888;
    }

    .day {
      padding: 8px;
      cursor: pointer;
      border-radius: 50%;
      transition: 0.2s;
    }

    .day:hover {
      background: #f3f3f3;
    }

    .day.disabled {
      color: #ccc;
      cursor: default;
    }

    .day.checkin,
    .day.checkout {
      background: #111 !important;
      color: #fff !important;
      font-weight: 500;
      border-radius: 50%;
    }

    .day.in-range {
      background: #f3f3f3;
      border-radius: 0;
    }

    .actions {
      display: flex;
      justify-content: space-between;
      margin-top: 12px;
    }

    .actions button {
      border: none;
      background: none;
      font-size: 14px;
      cursor: pointer;
    }

    .hover-tip {
      position: fixed;
      /* semula absolute */
      background: #000;
      color: #fff;
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 4px;
      transform: translateX(-50%);
      display: none;
      pointer-events: none;
      z-index: 5000;
      /* > z-index #dateModal (2600) supaya di atas */
      white-space: nowrap;
    }

    /* Sections */
    .section {
      padding: 80px clamp(16px, 5vw, 56px);
    }

    .section h2 {
      font-style: italic;
    }

    .section+.section {
      margin-top: 6px;
    }

    .section.alt {
      background: var(--ivory);
    }

    .section.gray {
      background: var(--dawn);
    }

    .section p.lead {
      color: var(--muted);
      max-width: 780px;
      margin-top: 10px;
    }

    .sep {
      height: 1px;
      background: linear-gradient(90deg,
          transparent,
          var(--line),
          transparent);
      margin: 40px 0;
    }

    /* ===== ABOUT — Editorial Split ===== */
    .about-editorial {
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.02),
          rgba(0, 0, 0, 0)),
        var(--ivory);
      padding: clamp(56px, 7vw, 96px) 24px;
    }

    .about-editorial .about-wrap {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 0.9fr;
      /* image sedikit dominan */
      gap: clamp(24px, 4vw, 64px);
      align-items: start;
    }

    /* ---- Copy column ---- */
    #about .kicker {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
      opacity: 0.8;
    }

    #about .display {
      font-family: var(--font-serif);
      font-weight: 700;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
    }

    #about .divider {
      height: 1px;
      width: clamp(120px, 24vw, 240px);
      background: linear-gradient(90deg, currentColor, transparent 80%);
      opacity: 0.35;
      margin: 8px 0 22px;
    }

    #about .lead {
      font-size: clamp(15px, 1.8vw, 18px);
      line-height: 1.9;
      color: var(--muted);
      margin-bottom: 16px;
    }

    #about .about-copy p {
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1.9;
      color: var(--ink);
      margin: 0 0 8px;
    }

    /* ---- Media column ---- */
    #about .about-media {
      position: relative;
      margin: 0;
      /* NO border-radius */
    }

    #about .about-media img {
      display: block;
      width: 100%;
      height: min(72vh, 760px);
      object-fit: cover;
      border: none;
      border-radius: 0;
      /* bayangan sedikit dikurangi biar terasa “menempel” */
      box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
      transform: translateZ(0);
      will-change: transform, filter, opacity;
      transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
        filter 900ms ease, opacity 900ms ease, -webkit-mask-image 600ms ease,
        mask-image 600ms ease;

      /* Fade pinggir ke background (mask) */
      -webkit-mask-image: radial-gradient(120% 120% at 50% 50%,
          #000 62%,
          rgba(0, 0, 0, 0) 96%);
      mask-image: radial-gradient(120% 120% at 50% 50%,
          #000 62%,
          rgba(0, 0, 0, 0) 96%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }

    #about .about-media:hover img {
      transform: scale(1.022);
      filter: contrast(1.06) saturate(1.02);
      -webkit-mask-image: radial-gradient(120% 120% at 50% 50%,
          #000 72%,
          rgba(0, 0, 0, 0) 98%);
      mask-image: radial-gradient(120% 120% at 50% 50%,
          #000 72%,
          rgba(0, 0, 0, 0) 98%);
    }

    /* Efek saat user meninggalkan section */
    #about.section-leaving .about-media img {
      transform: scale(0.985) translateY(10px);
      filter: blur(4px) saturate(0.92) contrast(0.98);
      opacity: 0.9;
    }

    /* Fallback kalau mask tidak didukung */
    #about .about-media {
      --about-bg: var(--ivory);
    }

    #about .about-media::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(120% 120% at 50% 50%,
          transparent 62%,
          var(--about-bg) 96%);
    }

    /* Optional haluskan garis grid pada section saat aktif */
    .about-editorial::before {
      opacity: 0.28;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .reveal.in,
      .reveal.out,
      #about .about-media img {
        transition: none !important;
        transform: none !important;
        filter: none !important;
      }

      #about .about-media::after {
        background: none !important;
      }
    }

    /* caption minimalis */
    #about .about-media figcaption {
      position: absolute;
      left: 0;
      bottom: -28px;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0.7;
    }

    /* ---- Subtle grid lines on section (tanpa border) ---- */
    .about-editorial::before,
    .about-editorial::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .about-editorial {
      position: relative;
    }

    .about-editorial::before {
      background: repeating-linear-gradient(to right,
          rgba(0, 0, 0, 0.04),
          rgba(0, 0, 0, 0.04) 1px,
          transparent 1px,
          transparent 96px);
      mask-image: linear-gradient(180deg,
          transparent,
          black 20%,
          black 80%,
          transparent);
      opacity: 0.35;
    }

    /* STATE dasar */
    .reveal {
      opacity: 0;
      transform: translateY(26px) scale(0.985);
      filter: blur(6px);
      transition: opacity 700ms cubic-bezier(0.22, 0.9, 0.25, 1),
        transform 700ms cubic-bezier(0.22, 0.9, 0.25, 1), filter 700ms ease;
      will-change: opacity, transform, filter;
    }

    /* MASUK (enter) */
    .reveal.in {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    /* KELUAR (leave / out-of-view) */
    .reveal.out {
      opacity: 0;
      transform: translateY(22px) scale(0.985);
      filter: blur(6px);
    }

    /* Urutan: gambar dulu, lalu teks (enter) */
    .about-media.reveal.in {
      transition-delay: 0ms;
    }

    .about-copy.reveal.in {
      transition-delay: 160ms;
    }

    /* Saat keluar section: teks hilang dulu, gambar menyusul */
    .about-copy.reveal.out {
      transition-delay: 0ms;
    }

    .about-media.reveal.out {
      transition-delay: 120ms;
    }

    /* ---- Responsive ---- */
    @media (max-width: 1040px) {
      .about-editorial .about-wrap {
        grid-template-columns: 1fr;
        max-width: 860px;
      }

      #about .about-media img {
        height: min(52vh, 560px);
      }

      #about .about-media figcaption {
        position: static;
        margin-top: 10px;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .reveal.visible,
      #about .about-media img {
        transition: none !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
      }
    }

    /* ===== THE ART OF STAY — LOOK & LAYOUT ===== */
    .art-section {
      background: linear-gradient(180deg, #0e0e0e 0%, #1a1a1a 100%);
      color: #f0e6d2;
      text-align: center;
      padding: 90px 0;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .art-section.active {
      opacity: 1;
      transform: scale(1);
    }

    .art-header {
      margin-bottom: 60px;
    }

    .art-title {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    .art-title::after {
      content: "";
      display: block;
      height: 2px;
      width: 80px;
      background: #d6c38a;
      margin: 12px auto 0;
    }

    .art-subtitle {
      font-size: 16px;
      color: #ccc;
      font-weight: 300;
    }

    .art-slider {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }

    .art-viewport {
      overflow: hidden;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
      touch-action: pan-y;
      overscroll-behavior-x: contain;
    }

    .art-viewport.dragging {
      cursor: grabbing;
    }

    .art-track {
      display: flex;
      gap: 24px;
      will-change: transform;
      transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .art-item {
      flex: 0 0 calc(33.33% - 16px);
      cursor: pointer;
    }

    .art-media img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      filter: brightness(0.9);
      transition: filter 0.8s ease, transform 1s ease;
      pointer-events: none;
      -webkit-user-drag: none;
    }

    .art-item:hover .art-media img {
      filter: brightness(1.1);
      transform: scale(1.03);
    }

    .art-info {
      padding: 18px 10px;
    }

    .art-info h3 {
      font-size: 18px;
      font-family: var(--font-serif);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .art-info p {
      color: #bbb;
      font-size: 14px;
    }

    /* ===== Navigation (Modern Arrows — visible) ===== */
    .art-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(214, 195, 138, 0.35);
      backdrop-filter: blur(6px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
      color: #d6c38a;
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease,
        opacity 0.25s ease;
      z-index: 5;
      opacity: 0.95;
    }

    .art-nav:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-50%) scale(1.05);
    }

    .art-prev {
      left: 12px;
    }

    /* ⟵ pindah ke dalam slider */
    .art-next {
      right: 12px;
    }

    .art-nav svg {
      width: 26px;
      height: 26px;
      color: currentColor;
    }

    /* (opsional) karena sekarang arrow-only, matikan gaya drag */
    .art-viewport {
      cursor: default;
      touch-action: pan-y;
    }

    /* ===== Motion — Pelan & Berurutan ===== */
    .art-section .fx-up,
    .art-section .fx-left {
      opacity: 0;
      filter: blur(6px);
      transition: opacity 1000ms cubic-bezier(0.22, 0.9, 0.25, 1),
        transform 1000ms cubic-bezier(0.22, 0.9, 0.25, 1), filter 1000ms ease;
      transition-delay: var(--d, 0ms);
      will-change: opacity, transform, filter;
    }

    .art-section .fx-up {
      transform: translateY(22px) scale(0.985);
    }

    .art-section .fx-left {
      transform: translateX(-26px) scale(0.985);
    }

    .art-section .in {
      opacity: 1;
      transform: translate(0, 0) scale(1);
      filter: blur(0);
    }

    .art-section .out {
      opacity: 0;
      filter: blur(6px);
    }

    /* .art-section.section-leaving .art-media img {
        transform: scale(0.985) translateY(6px);
        filter: saturate(0.94) contrast(0.98) blur(2px);
        transition: transform 700ms ease, filter 700ms ease;
      } */

    /* Anti-shake saat dragging */
    .art-section.dragging .art-item:hover .art-media img {
      transform: none !important;
      filter: none !important;
    }

    .art-section.dragging .art-media img {
      transform: none !important;
    }

    /* ===== Modal ===== */
    .suite-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 3000;
    }

    .suite-modal.open {
      display: flex;
      animation: fadeIn 0.5s ease forwards;
    }

    .suite-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.3) blur(5px);
      z-index: 1;
    }

    .suite-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: rgba(0, 0, 0, 0.5);
      cursor: pointer;
    }

    .suite-panel {
      position: relative;
      z-index: 3;
      background: rgba(20, 20, 20, 0.8);
      backdrop-filter: blur(14px);
      color: #f0e6d2;
      padding: 60px;
      width: 90%;
      max-width: 1000px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .suite-close {
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 32px;
      color: #f0e6d2;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 5;
    }

    .suite-content h3 {
      font-family: "Spectral", serif;
      font-size: 28px;
      margin-bottom: 8px;
    }

    .suite-content p {
      font-size: 15px;
      color: #ddd;
      margin-bottom: 20px;
    }

    .suite-details {
      list-style: none;
      padding-left: 0;
      color: #bbb;
      font-size: 14px;
      line-height: 1.6;
    }

    .suite-gallery {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-top: 10px;
    }

    .suite-gallery img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .suite-gallery img.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Responsif sederhana */
    @media (max-width: 900px) {
      .art-item {
        flex: 0 0 calc(50% - 12px);
      }

      .art-prev {
        left: -50px;
      }

      .art-next {
        right: -50px;
      }
    }

    @media (max-width: 640px) {
      .art-item {
        flex: 0 0 100%;
      }

      .art-title {
        font-size: 32px;
      }

      .art-media img {
        height: 320px;
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {

      .art-section .fx-up,
      .art-section .fx-left {
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
      }
    }

    /* MEETINGS */
    #meetings {
      background: var(--ivory);
      text-align: center;
      padding: 100px clamp(16px, 6vw, 80px);
      position: relative;
    }

    #meetings h2 {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(28px, 3vw, 36px);
      margin-bottom: 8px;
    }

    #meetings .lead {
      color: #777;
      font-size: 15px;
      margin: 0 auto 80px;
      max-width: 720px;
      text-align: center;
      /* ⬅️ lead di tengah */
    }

    .venues-container {
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-title {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--muted);
      font-family: var(--font-sans);
      font-size: 15px;
      margin-bottom: 100px;
    }

    /* --- Venues Layout --- */
    .venue-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 80px;
      position: relative;
      margin-bottom: 120px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
    }

    .venue-row.reverse {
      flex-direction: row-reverse;
    }

    .venue-row.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .venue-row:nth-child(odd) {
      animation-delay: 0.2s;
    }

    .venue-row:nth-child(even) {
      animation-delay: 0.4s;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .venue-row.left .venue-image {
      order: 1;
    }

    .venue-row.left .venue-text {
      order: 2;
      text-align: left;
    }

    .venue-row.right .venue-image {
      order: 2;
    }

    .venue-row.right .venue-text {
      order: 1;
      text-align: right;
    }

    /* ===== DETAILS hover sync with Destination (M&E + Dining) ===== */

    /* 1) Gambar nge-zoom saat baris di-hover (termasuk ketika hover tombol DETAILS) */
    .venue-row .venue-image-wrap img {
      transition: transform 700ms cubic-bezier(.19, 1, .22, 1), filter .4s ease;
      will-change: transform, filter;
    }

    .venue-row:hover .venue-image-wrap img {
      transform: scale(1.03);
      filter: contrast(1.04) saturate(1.02);
    }

    /* 2) Underline DETAILS: default terlihat, hilang saat hover baris (sinkron dengan gambar) */
    .learn-more {
      position: relative;
      background: none;
      border: 0;
      text-decoration: none !important;
      /* override rule lama */
      padding-bottom: 2px;
      font-weight: 800;
      /* biar sama feel dgn Destination */
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .learn-more::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: currentColor;
      transform: scaleX(1);
      transform-origin: left;
      transition: transform .25s ease;
    }

    /* Hilangkan garis saat hover seluruh row atau tombolnya saja */
    .venue-row:hover .learn-more::after,
    .learn-more:hover::after {
      transform: scaleX(0);
    }

    /* (opsional) tone saat hover */
    .venue-row:hover .learn-more {
      color: var(--accent);
    }


    .carousel-container {
      width: 100vw;
      /* Gunakan seluruh lebar layar */
      margin: 0;
      padding: 0;
      overflow: hidden;
    }

    .carousel-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .carousel-item {
      flex: 0 0 auto;
      width: 33.33%;
      /* Tiga gambar terlihat bersamaan */
      text-align: center;
    }

    .carousel-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }

    .carousel-caption {
      text-align: center;
      margin-top: 20px;
    }

    #meetings {
      background: var(--ivory);
      text-align: center;
      padding: 100px clamp(16px, 6vw, 80px);
      position: relative;
    }

    #meetings h2 {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #meetings .lead {
      color: #777;
      font-size: 15px;
      margin: 0 auto 80px;
      max-width: 720px;
      text-align: center;
      /* ⬅️ lead di tengah */
    }

    .venue-row.left {
      flex-direction: row;
    }

    .venue-row.right {
      flex-direction: row-reverse;
    }

    /* Gambar & garis */
    .venue-image {
      position: relative;
      width: 50%;
      overflow: hidden;
    }

    .venue-image img {
      width: 100%;
      height: auto;
      display: block;
      transform: translateX(50px);
      opacity: 0;
      animation: slideInImage 0.7s ease forwards;
    }

    .venue-row.visible .venue-image img {
      opacity: 1;
      transform: translateY(0);
    }

    /* Saat elemen muncul di layar */
    .venue-row.visible .vline {
      transform: scaleY(1);
    }

    /* Teks */
    .venue-text {
      width: 40%;
      font-family: var(--font-sans);
    }

    .venue-text h3 {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.02em;
      margin-bottom: 10px;
    }

    .venue-text p {
      color: #555;
      font-size: 14px;
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .learn-more {
      border: none;
      background: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: underline;
      /* ⬅️ sekarang underline */
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .learn-more:hover {
      color: var(--accent);
    }

    /* Responsif */
    @media (max-width: 900px) {
      .venue-row {
        flex-direction: column;
        text-align: center;
      }

      .venue-image,
      .venue-text {
        width: 100%;
      }

      .vline {
        display: none;
      }

      .venue-text {
        text-align: center !important;
      }
    }

    /* Divider */
    .section-divider {
      height: 1px;
      background: rgba(0, 0, 0, 0.1);
      margin-top: 100px;
    }

    /* Line beside image */
    .with-line::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(0, 0, 0, 0.25);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.6s ease;
    }

    .left-line::before {
      left: -40px;
    }

    .right-line::before {
      right: -40px;
    }

    .venue-row.visible .with-line::before {
      transform: scaleY(1);
    }

    @keyframes slideInImage {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Text */
    .venue-content {
      flex: 1;
      font-family: "Montserrat", sans-serif;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .venue-row.visible .venue-content {
      opacity: 1;
      transform: translateY(0);
    }

    .venue-content h3 {
      font-family: "Spectral", serif;
      font-size: 22px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .venue-content p {
      color: #444;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .learn-btn {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: underline;
      background: none;
      color: #000;
      transition: color 0.3s ease;
    }

    .learn-btn:hover {
      color: #b8a47a;
    }

    /* ==== MODAL ==== */
    .venue-modal {
      position: fixed;
      inset: 0;
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 3000;
      overflow-y: auto;
    }

    .venue-modal.open {
      display: flex;
      animation: fadeIn 0.4s ease forwards;
    }

    .modal-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.55) blur(2.5px);
      /* ⬅️ blur lebih ringan & tanpa putih */
      transform: scale(1.02);
      transition: all 0.4s ease;
    }

    .modal-panel {
      position: relative;
      background: rgba(255, 255, 255, 0.92);
      /* semi transparan */
      padding: 60px;
      max-width: 800px;
      width: 90%;
      z-index: 2;
      text-align: left;
      animation: slideUp 0.6s ease forwards;
    }

    .modal-panel.closing {
      animation: slideOut 0.4s ease forwards;
    }

    .venue-modal.closing {
      animation: fadeOut 0.4s ease forwards;
    }

    /* text */
    .modal-panel h3 {
      font-family: "Spectral", serif;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .modal-panel p,
    .details li {
      font-family: "Montserrat", sans-serif;
      font-size: 14px;
      color: #333;
      line-height: 1.7;
    }

    .details {
      list-style: none;
      margin: 14px 0;
      padding: 0;
    }

    .modal-panel img {
      width: 100%;
      height: auto;
      margin-top: 20px;
    }

    /* close button */
    .modal-panel .close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: #222;
      transition: 0.3s;
    }

    .modal-panel .close:hover {
      opacity: 0.6;
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes fadeOut {
      to {
        opacity: 0;
        visibility: hidden;
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideDown {
      from {
        opacity: 1;
        transform: translateY(0);
      }

      to {
        opacity: 0;
        transform: translateY(60px);
      }
    }

    /* === Subtle Blur Background Effect === */
    .modal-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      background: rgba(255, 255, 255, 0.05);
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 22px;
      background: transparent;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .close-btn:hover {
      transform: scale(1.15);
    }

    /* --- Modal Animations --- */
    @keyframes modalFadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes modalSlideUp {
      from {
        transform: translateY(60px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes modalSlideDown {
      from {
        opacity: 1;
        transform: translateY(0);
      }

      to {
        opacity: 0;
        transform: translateY(60px);
      }
    }

    @keyframes modalFadeOut {
      to {
        opacity: 0;
        visibility: hidden;
      }
    }

    /* === Text Block === */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideUpModal {
      from {
        transform: translateY(40px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .details li {
      font-size: 14px;
      margin: 6px 0;
      color: #333;
      font-family: "Montserrat", sans-serif;
    }

    /* === Responsive === */
    @media (max-width: 900px) {
      .venue-row {
        flex-direction: column;
        text-align: center;
      }

      .venue-text,
      .venue-image {
        width: 100%;
      }

      .vline {
        display: none;
      }

      .venue-text {
        text-align: center !important;
      }
    }

    /* ==== Blur hanya ketika modal .open + html.vm-open ==== */

    /* Default: TIDAK ada blur sama sekali */
    .venue-modal {
      display: none !important;
    }

    .venue-modal .modal-bg {
      filter: none !important;
    }

    .venue-modal .modal-bg::after {
      background: transparent !important;
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
    }

    /* Aktifkan blur hanya saat modal benar-benar open DAN saklar html aktif */
    html.vm-open .venue-modal.open {
      display: flex !important;
    }

    html.vm-open .venue-modal.open .modal-bg {
      filter: brightness(.55) blur(2.5px) !important;
    }

    html.vm-open .venue-modal.open .modal-bg::after {
      background: rgba(255, 255, 255, .05) !important;
      -webkit-backdrop-filter: blur(6px) !important;
      backdrop-filter: blur(6px) !important;
    }

    /* Layering aman */
    .venue-modal .modal-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .venue-modal .modal-panel {
      position: relative;
      z-index: 2;
    }

    /* Pastikan konten & panel tidak ikut blur */
    #meetings,
    #meetings * {
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
      filter: none !important;
    }

    /* ===== Garis di samping gambar (tetap) ===== */
    .venue-image-wrap {
      position: relative;
    }

    .vline {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(0, 0, 0, .25);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .6s ease;
    }

    /* default di kanan */
    .venue-row .venue-image-wrap .vline {
      right: -25px;
    }

    /* bila row.right (gambar di kanan), garis pindah ke kiri */
    .venue-row.right .venue-image-wrap .vline {
      left: -25px;
      right: auto;
    }

    .venue-row.visible .vline {
      transform: scaleY(1);
    }

    /* ===== VENUE MODAL — Contact Inside (no radius) ===== */

    /* bar kecil: subscribe + tombol proposal */
    .venue-modal .modal-ctas {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: end;
      margin-top: 18px;
    }

    .venue-modal .mini-news {
      display: flex;
      gap: 10px;
      margin: 0;
      border-radius: 0 !important;
    }

    .venue-modal .mini-news input[type="email"] {
      flex: 1;
      height: 42px;
      border: 1px solid var(--line, rgba(0, 0, 0, .18));
      background: transparent;
      padding: 0 12px;
      border-radius: 0 !important;
    }

    .venue-modal .mini-news button {
      height: 42px;
      padding: 0 14px;
      border: 1px solid #111;
      background: #111;
      color: #fff;
    }

    /* tombol pembuka form */
    .venue-modal .open-req {
      border: 1px solid #111;
      background: transparent;
      color: #111;
      padding: 10px 16px;
      height: 42px;
      cursor: pointer;
      transition: background .2s, color .2s;
    }

    .venue-modal .open-req:hover {
      background: #111;
      color: #fff;
    }

    /* wrapper form proposal (tersembunyi dulu) */
    .venue-modal .req-wrap {
      margin-top: 18px;
      display: none;
      /* tampilkan via JS dengan .show */
    }

    .venue-modal .req-wrap.show {
      display: block;
      animation: fadeIn .35s ease both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* judul kecil + garis tipis penuh */
    .venue-modal .req-head {
      margin: 6px 0 6px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .venue-modal .req-hair {
      height: 1px;
      background: rgba(0, 0, 0, .18);
      width: 100%;
      margin: 6px 0 14px;
    }

    /* grid form (tanpa radius, rapi) */
    .venue-modal .req-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      border-radius: 0 !important;
    }

    .venue-modal .req-form input,
    .venue-modal .req-form select,
    .venue-modal .req-form textarea {
      width: 100%;
      border: 1px solid var(--line, rgba(0, 0, 0, .18));
      padding: 12px;
      font-size: 14px;
      background: #fff;
      border-radius: 0 !important;
    }

    .venue-modal .req-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .venue-modal .req-form .full {
      grid-column: 1 / -1;
    }

    .venue-modal .consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13px;
      color: #3b3f45;
    }

    .venue-modal .consent input {
      width: 18px;
      height: 18px;
      accent-color: #111;
      margin-top: 2px;
    }

    .venue-modal .row-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 6px;
    }

    .venue-modal .row-actions .left {
      color: #6f747b;
      font-size: 12px;
    }

    .venue-modal .row-actions .primary {
      height: 44px;
      padding: 0 16px;
      background: #111;
      color: #fff;
      border: 1px solid #111;
    }

    /* select arrow flat */
    .venue-modal .select-wrap {
      position: relative;
    }

    .venue-modal .select-wrap select {
      appearance: none;
      -webkit-appearance: none;
      padding-right: 40px;
      background: #fff;
    }

    .venue-modal .select-wrap::after {
      content: "\f107";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      pointer-events: none;
    }

    /* responsive */
    @media (max-width: 760px) {
      .venue-modal .modal-ctas {
        grid-template-columns: 1fr;
      }

      .venue-modal .req-form {
        grid-template-columns: 1fr;
      }

      .venue-modal .row-actions {
        flex-direction: column;
        align-items: stretch;
      }
    }

    /* jaga gaya: tanpa radius di area modal */
    .venue-modal * {
      border-radius: 0 !important;
    }

    /* ===== VENUE MODAL — clean, no radius, no card ===== */

    /* kontainer modal: bisa scroll, tidak memotong panel */
    .venue-modal {
      position: fixed;
      inset: 0;
      display: none;
      overflow-y: auto;
      z-index: 3000;
    }

    /* bg blur selalu isi viewport (ikuti scroll) */
    .venue-modal .modal-bg {
      position: fixed;
      /* was absolute */
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(.42) blur(3px);
      z-index: 0;
    }

    .venue-modal .modal-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .28);
      /* tambah kontras agar teks terbaca */
    }

    /* shell untuk center panel dan memberi padding atas-bawah */
    .venue-modal .modal-shell {
      position: relative;
      z-index: 2;
      min-height: 100%;
      display: flex;
      justify-content: center;
      padding: 7vh 24px;
      /* ruang atas-bawah */
    }

    /* panel konten: NO radius, NO card look */
    .venue-modal .modal-panel {
      width: min(96vw, 940px);
      background: rgba(255, 255, 255, .98);
      border-radius: 0 !important;
      border: none;
      box-shadow: none;
      /* no card */
      padding: clamp(28px, 3.2vw, 56px);
    }

    /* garis hairline atas/bawah panel biar crisp, bukan shadow */
    .venue-modal .modal-panel::before,
    .venue-modal .modal-panel::after {
      content: "";
      display: block;
      height: 1px;
      background: rgba(0, 0, 0, .16);
    }

    .venue-modal .modal-panel::before {
      margin-bottom: 18px;
    }

    .venue-modal .modal-panel::after {
      margin-top: 18px;
    }

    /* close */
    .venue-modal .close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: none;
      border: 0;
      font-size: 28px;
      color: #222;
      cursor: pointer;
    }

    /* heading + divider */
    .modal-head {
      margin-bottom: 14px;
    }

    .modal-head h3 {
      margin: 0 0 6px 0;
      font-size: clamp(20px, 2.2vw, 24px);
      letter-spacing: .02em;
      font-weight: 800;
    }

    .modal-head .sub {
      color: #555;
      margin: 0 0 12px 0;
      line-height: 1.7;
      font-size: 14px;
    }

    .modal-head .divider {
      height: 1px;
      width: 100%;
      /* sepanjang konten */
      background: rgba(0, 0, 0, .18);
      /* sama seperti line di destination */
    }

    /* toggle proposal */
    .proposal-toggle {
      width: 100%;
      background: #f6f6f6;
      border: 1px solid rgba(0, 0, 0, .22);
      color: #222;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-transform: none;
    }

    .proposal-toggle i {
      transition: transform .25s ease;
    }

    /* form grid */
    .req-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 16px;
    }

    .req-form .full {
      grid-column: 1 / -1;
    }

    .req-form input,
    .req-form select,
    .req-form textarea {
      width: 100%;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .18);
      border-radius: 0 !important;
      padding: 12px;
      font-size: 14px;
    }

    .req-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .select-wrap {
      position: relative;
    }

    .select-wrap select {
      appearance: none;
      -webkit-appearance: none;
      padding-right: 42px;
    }

    .select-wrap::after {
      content: "\f107";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      pointer-events: none;
    }

    /* consent + actions */
    .consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13px;
      color: #3b3f45;
    }

    .consent input {
      width: 18px;
      height: 18px;
      accent-color: #111;
      margin-top: 2px;
    }

    .row-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 8px;
    }

    .row-actions .left {
      color: #6f747b;
      font-size: 12px;
    }

    .row-actions .primary {
      height: 44px;
      padding: 0 16px;
      background: #111;
      color: #fff;
      border: 1px solid #111;
    }

    /* animasi buka/tutup */
    .venue-modal.open {
      display: block;
      animation: fadeIn .3s ease both;
    }

    .venue-modal.closing {
      animation: fadeOut .24s ease both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes fadeOut {
      to {
        opacity: 0;
        visibility: hidden
      }
    }

    @media (max-width: 760px) {
      .req-form {
        grid-template-columns: 1fr;
      }

      .row-actions {
        flex-direction: column;
        align-items: stretch;
      }
    }

    /* ===== VENUE MODAL — FINAL OVERRIDE (letakkan PALING AKHIR CSS) ===== */
    .venue-modal {
      position: fixed !important;
      inset: 0 !important;
      display: none !important;
      /* default: tertutup */
      z-index: 5000 !important;
      align-items: center !important;
      justify-content: center !important;
      overflow-y: auto !important;
    }

    .venue-modal.open {
      display: flex !important;
      /* SELALU flex untuk center */
    }

    /* Backdrop (blur hanya background modal, bukan konten halaman) */
    .venue-modal .modal-bg {
      position: fixed !important;
      inset: 0 !important;
      background-size: cover !important;
      background-position: center !important;
      filter: brightness(.42) blur(3px) !important;
      z-index: 0 !important;
    }

    /* Shell agar panel tidak terpotong saat konten panjang */
    .venue-modal .modal-shell {
      position: relative !important;
      z-index: 2 !important;
      min-height: 100%;
      width: 100%;
      display: flex !important;
      justify-content: center !important;
      padding: 7vh 24px !important;
    }

    /* Panel — no card, no radius */
    .venue-modal .modal-panel {
      width: min(96vw, 940px) !important;
      background: rgba(255, 255, 255, .98) !important;
      border: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding: clamp(28px, 3.2vw, 56px) !important;
      position: relative !important;
      z-index: 2 !important;
    }

    /* Pastikan konten section tidak ikut blur */
    #meetings,
    #meetings * {
      filter: none !important;
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
    }

    /* Close button posisi */
    .venue-modal .close {
      position: absolute !important;
      top: 18px;
      right: 22px;
      background: none;
      border: 0;
      font-size: 28px;
      cursor: pointer;
    }

    /* Toggle ikon rotasi */
    .proposal-toggle i {
      transition: transform .25s ease;
    }

    .proposal-toggle.is-open i {
      transform: rotate(180deg);
    }

    /* === Dining base (boleh gabung dengan CSS kamu) === */
    #dining {
      background: var(--ivory, #faf7ef);
      text-align: center;
      padding: 100px clamp(16px, 6vw, 80px);
      position: relative;
    }

    #dining .section-title {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #dining .section-subtitle {
      color: #777;
      font-size: 15px;
      margin: 0 auto 100px;
      max-width: 720px;
    }

    /* Layout sama seperti meetings */
    .venue-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 80px;
      margin-bottom: 120px;
      opacity: 0;
      transform: translateY(40px);
      transition: .8s ease-out
    }

    .venue-row.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .venue-row.left {
      flex-direction: row
    }

    .venue-row.right {
      flex-direction: row-reverse
    }

    /* Gambar + GARIS — FIX: overflow: visible supaya garis tidak kepotong */
    .venue-image-wrap {
      position: relative;
      width: 50%;
      overflow: visible
    }

    .venue-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transform: translateX(50px);
      opacity: 0;
      animation: slideInImage .7s ease forwards
    }

    @keyframes slideInImage {
      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    /* Garis tipis di sisi gambar */
    .vline {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(0, 0, 0, .25);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .6s ease;
    }

    /* default di kanan gambar */
    .venue-row .venue-image-wrap .vline {
      right: -25px
    }

    /* kalau row.right (gambar di kanan), pindah ke kiri */
    .venue-row.right .venue-image-wrap .vline {
      left: -25px;
      right: auto
    }

    /* tampil saat row jadi visible */
    .venue-row.visible .vline {
      transform: scaleY(1)
    }

    /* Teks */
    .venue-text {
      width: 40%;
      font-family: var(--font-sans, "Montserrat", sans-serif)
    }

    .venue-text h3 {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .02em;
      margin-bottom: 10px
    }

    .venue-text p {
      color: #555;
      font-size: 14px;
      margin-bottom: 14px;
      line-height: 1.6
    }

    .learn-more {
      border: none;
      background: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: underline;
      cursor: pointer;
      transition: color .3s
    }

    .learn-more:hover {
      color: var(--accent, #b8a47a)
    }

    /* Responsive */
    @media (max-width:900px) {
      .venue-row {
        flex-direction: column;
        gap: 24px;
        text-align: center
      }

      .venue-image-wrap,
      .venue-text {
        width: 100%
      }

      .vline {
        display: none
      }
    }

    /* Pastikan section tidak ikut blur */
    #dining,
    #dining * {
      filter: none !important;
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important
    }

    /* Hapus animasi, buat selalu terlihat */
    .vline {
      transform: scaleY(1)
    }

    /* ===== OFFERS — editorial modern (no card, no radius) ===== */
    #offers {
      background: #fff;
      padding: clamp(56px, 7vw, 96px) clamp(18px, 6vw, 72px);
      color: var(--ink, #1b1d1f);
    }

    #offers .offers-head {
      text-align: center;
      margin: 0 auto clamp(22px, 3vw, 36px);
      max-width: 960px;
    }

    #offers .offers-head h2 {
      font-family: "Spectral", serif;
      /* konsisten dengan parent */
      font-style: italic;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      margin: 0 0 8px;
    }

    #offers .offers-head h2 em {
      font-style: italic;
      color: var(--accent, #b8a47a);
    }

    #offers .offers-head .lead {
      color: var(--muted, #6f747b);
      font-size: 15px;
    }

    /* Grid */
    #offers .offers-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(16px, 2vw, 20px);
    }

    @media (min-width: 860px) {
      #offers .offers-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Tile — no card, no radius */
    #offers .offer {
      position: relative;
      height: clamp(360px, 52vw, 520px);
      overflow: hidden;
      /* no radius */
      border: none;
      box-shadow: none;
      outline: 1px solid rgba(0, 0, 0, .08);
      /* hairline, bukan border card */
      background: #0f0f10;
      isolation: isolate;
    }

    #offers .offer .media {
      position: absolute;
      inset: 0;
      background-image: var(--img);
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
      transition: transform 800ms cubic-bezier(.19, 1, .22, 1), filter .6s ease;
      will-change: transform, filter;
      filter: saturate(1.03) contrast(.96);
    }

    #offers .offer .veil {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .7) 100%);
      transition: background .3s ease;
    }

    #offers .offer .copy {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: grid;
      grid-template-rows: 1fr auto auto;
      padding: clamp(16px, 2.4vw, 24px);
      color: #fff;
    }

    #offers .offer .label {
      align-self: start;
      justify-self: start;
      padding: 8px 12px;
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: rgba(0, 0, 0, .35);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    #offers .offer h3 {
      align-self: end;
      margin: 0;
      text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
    }

    #offers .offer h3 .up {
      display: block;
      font-family: "Spectral", serif;
      font-weight: 700;
      letter-spacing: .02em;
      font-size: clamp(22px, 3vw, 32px);
    }

    #offers .offer h3 .script {
      display: inline-block;
      font-family: "Spectral", serif;
      /* tetap serif biar selaras (tanpa cursive asing) */
      font-style: italic;
      color: var(--accent, #b8a47a);
      font-size: clamp(32px, 4.5vw, 46px);
      line-height: .92;
      margin-top: -4px;
    }

    #offers .offer .desc {
      align-self: end;
      max-width: 90%;
      font-size: clamp(13px, 1.2vw, 14px);
      line-height: 1.7;
      color: #f2f2f2;
      opacity: .95;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
      margin-top: 6px;
    }

    /* CTA */
    #offers .cta {
      display: flex;
      gap: 12px;
      justify-content: center;
      padding-top: 12px;
    }

    #offers .btn {
      appearance: none;
      border: 1px solid rgba(255, 255, 255, .28);
      background: transparent;
      color: #fff;
      height: 40px;
      padding: 0 16px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: 12px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    #offers .btn:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, .5);
    }

    #offers .btn.solid {
      border-color: transparent;
      background: #111;
      color: #fff;
    }

    #offers .btn.solid:hover {
      background: #000;
    }

    #offers .offer:hover .media {
      transform: scale(1.07);
      filter: contrast(1.02) saturate(1.05);
    }

    #offers .offer:hover .veil {
      background: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, .82) 100%);
    }

    /* No radius enforcement */
    #offers,
    #offers * {
      border-radius: 0 !important;
    }


    /* ===== GALLERY — Editorial Modern (no card, no radius) ===== */
    #gallery {
      background: #fff;
      padding: clamp(56px, 7vw, 96px) clamp(18px, 6vw, 72px);
      color: #1f1f1f;
    }

    #gallery h2 {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #gallery .lead {
      text-align: center;
      color: #7a7a7a;
      font-size: 15px;
      max-width: 720px;
      margin: 0 auto clamp(26px, 3vw, 42px);
    }

    /* Filters: underline style (tanpa radius & tanpa boxy button) */
    #gallery .filters {
      --gap: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: var(--gap);
      justify-content: center;
      margin: 0 0 clamp(22px, 3.2vw, 34px);
    }

    #gallery .filters button {
      background: none;
      border: none;
      padding: 6px 2px;
      cursor: pointer;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: 12px;
      position: relative;
      color: #222;
    }

    #gallery .filters button::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }

    #gallery .filters button:hover::after,
    #gallery .filters button.active::after {
      transform: scaleX(1);
    }

    /* Grid editorial (dense), tanpa radius */
    #gallery .gal-grid {
      --gap: 14px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      display: grid;
      grid-auto-flow: dense;
      grid-template-columns: repeat(12, 1fr);
      gap: var(--gap);
    }

    /* Item dasar */
    #gallery .gal {
      position: relative;
      overflow: hidden;
      background: #eee;
      border: none;
      box-shadow: none;
      outline: 1px solid rgba(0, 0, 0, .08);
      /* hairline rapi, no radius */
    }

    #gallery .gal img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.005);
      transition: transform 700ms cubic-bezier(.19, 1, .22, 1), filter .4s ease, opacity .4s ease;
    }

    #gallery .gal::after {
      /* hairline bawah tegas */
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(0, 0, 0, .22);
      z-index: 2;
      pointer-events: none;
    }

    /* Variasi rasio/kolom (rapi tapi dinamis) */
    #gallery .gal {
      grid-column: span 4;
      aspect-ratio: 4 / 3;
    }

    /* default */
    #gallery .gal.wide {
      grid-column: span 6;
      aspect-ratio: 16 / 9;
    }

    #gallery .gal.tall {
      grid-column: span 3;
      aspect-ratio: 3 / 4;
    }

    /* Hover: zoom + caption muncul */
    #gallery .gal figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px 14px;
      background: linear-gradient(to top, rgba(0, 0, 0, .48), transparent 65%);
      color: #fff;
      font-size: 12px;
      letter-spacing: .04em;
      transform: translateY(8px);
      opacity: 0;
      transition: opacity .35s ease, transform .35s ease;
    }

    #gallery .gal:hover img {
      transform: scale(1.03);
      filter: contrast(1.04) saturate(1.02);
    }

    #gallery .gal:hover figcaption {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive grid */
    @media (max-width:1100px) {
      #gallery .gal-grid {
        grid-template-columns: repeat(8, 1fr);
      }

      #gallery .gal {
        grid-column: span 4;
      }

      #gallery .gal.wide {
        grid-column: span 8;
      }

      #gallery .gal.tall {
        grid-column: span 4;
      }
    }

    @media (max-width:720px) {
      #gallery .gal-grid {
        grid-template-columns: repeat(6, 1fr);
      }

      #gallery .gal,
      #gallery .gal.wide,
      #gallery .gal.tall {
        grid-column: span 6;
        aspect-ratio: 16/10;
      }
    }

    /* Load-more: collapse + fade */
    #gallery .gal-grid.collapsed {
      max-height: calc(2 * (min(26vw, 340px)) + 80px);
      /* kira-kira 2 baris + header */
      overflow: hidden;
    }

    #gallery .gal-grid.collapsed::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 90px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%);
      pointer-events: none;
    }

    /* More button (ikon chevron) */
    #gallery #galMore {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 18px auto 0;
      padding: 6px 10px;
      border: none;
      background: none;
      cursor: pointer;
      font-size: 28px;
    }

    #gallery #galMore i {
      transition: transform .3s ease;
    }

    #gallery #galMore.rot i {
      transform: rotate(180deg);
    }

    /* No border-radius anywhere in gallery */
    #gallery .gal,
    #gallery .gal *,
    #gallery img {
      border-radius: 0 !important;
    }

    /* ===== GALLERY: Divider lebih lebar & judul selalu center ===== */
    #gallery {
      text-align: center;
    }

    /* pastikan center */
    #gallery h2 {
      position: relative;
      display: inline-block;
      margin: 22px auto 6px;
      /* auto = center */
    }

    #gallery h2::before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -16px;
      width: clamp(220px, 28vw, 360px);
      /* ▶︎ lebih lebar */
      height: 2px;
      /* sedikit lebih tebal tapi tetap elegan */
      background: linear-gradient(90deg, currentColor, transparent 80%);
      opacity: .35;
      pointer-events: none;
    }

    /* ===== GALLERY: Grid seragam (semua foto sama) ===== */
    #gallery .gal-grid {
      --gap: 16px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: var(--gap);
    }

    /* Semua item sama: 4 kolom, rasio 4:3 */
    #gallery .gal,
    #gallery .gal.wide,
    #gallery .gal.tall {
      grid-column: span 4 !important;
      /* seragam 3 item/row desktop */
      aspect-ratio: 4 / 3 !important;
      /* tinggi seragam */
      position: relative;
      overflow: hidden;
      background: #eee;
      outline: 1px solid rgba(0, 0, 0, .08);
    }

    #gallery .gal img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.003);
      transition: transform 700ms cubic-bezier(.19, 1, .22, 1), filter .4s ease;
    }

    #gallery .gal:hover img {
      transform: scale(1.02);
      filter: contrast(1.04) saturate(1.02);
    }

    /* Hairline bawah foto tetap terlihat */
    #gallery .gal::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(0, 0, 0, .22);
      z-index: 2;
      pointer-events: none;
    }

    /* Responsif: 2 kolom lalu 1 kolom */
    @media (max-width: 1100px) {
      #gallery .gal-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
      }

      #gallery .gal {
        grid-column: span 4 !important;
      }
    }

    @media (max-width: 720px) {
      #gallery .gal-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      #gallery .gal {
        grid-column: span 6 !important;
        aspect-ratio: 16 / 10 !important;
      }
    }

    /* ===== Panah down: efek halus ===== */
    #gallery #galMore {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 18px auto 0;
      padding: 8px 10px;
      border: none;
      background: none;
      cursor: pointer;
    }

    #gallery #galMore i {
      transition: transform .4s cubic-bezier(.19, 1, .22, 1), opacity .3s ease;
    }

    #gallery #galMore:hover i {
      animation: bounceSoft 1.2s ease-in-out infinite;
    }

    #gallery #galMore.rot i {
      transform: rotate(180deg);
    }

    @keyframes bounceSoft {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(5px);
      }
    }

    /* Smooth collapse/expand (tanpa card & no radius) */
    #gallery .gal-grid {
      overflow: hidden;
      transition: max-height .55s cubic-bezier(.19, 1, .22, 1), opacity .35s ease;
    }

    #gallery .gal-grid.collapsed {
      opacity: .98;
    }

    /* Arrow auto-rotate when expanded */
    #gallery #galMore i {
      transition: transform .35s cubic-bezier(.19, 1, .22, 1);
    }

    #gallery #galMore[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    /* Arrow default & auto-rotate saat expanded */
    #gallery #galMore i {
      display: inline-block;
      transform: rotate(0deg);
      transition: transform .35s cubic-bezier(.19, 1, .22, 1);
    }

    /* tombol dalam state OPEN → ikon menghadap ke atas */
    #gallery #galMore.is-open i {
      transform: rotate(180deg) !important;
      /* pastikan menang atas rule lama */
    }

    /* bounce hanya saat CLOSED */
    @keyframes bounceSoft {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(5px);
      }
    }

    #gallery #galMore:hover:not(.is-open) i {
      animation: bounceSoft 1.2s ease-in-out infinite;
    }

    /* saat open, hentikan animasi supaya rotasi tidak “ditimpa” */
    #gallery #galMore.is-open i {
      animation: none !important;
    }

    /* === Gallery: divider solid, sepanjang konten (tanpa gradasi) === */
    #gallery .gal-head {
      max-width: 1200px;
      /* samakan dengan .gal-grid */
      margin: 0 auto clamp(22px, 3vw, 36px);
      text-align: center;
      color: var(--ink, #545454);
      position: relative;
    }

    /* garis di ATAS judul, full lebar konten */
    #gallery .gal-head::before {
      content: "";
      display: block;
      width: 100%;
      height: 0.5px;
      background: currentColor;
      /* solid, no gradient */
      opacity: 0.25;
      /* halus elegan */
      margin-bottom: 100px;
      /* jarak ke judul */
    }

    /* pastikan judul benar-benar center */
    #gallery .gal-head h2 {
      margin: 0 0 6px;
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
    }

    /* lead di bawah judul */
    #gallery .gal-head .lead {
      color: #7a7a7a;
      font-size: 15px;
      max-width: 720px;
      margin: 0 auto;
    }

    /* Hapus aturan divider lama berbasis h2::before (jika ada) */
    #gallery h2::before {
      content: none !important;
    }


    /* ===== LOCATION — Editorial Modern (no card, no radius) ===== */
    #location {
      --ink: var(--ink, #242424);
      --muted: var(--muted, #6b6b6b);
      --line: var(--line, rgba(0, 0, 0, .14));
      background: #fff;
      color: var(--ink);
      padding: clamp(56px, 7vw, 96px) clamp(18px, 6vw, 72px);
      position: relative;
    }

    #location::before {
      /* aksen grid halus agar tidak basic */
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(to right, rgba(0, 0, 0, .04), rgba(0, 0, 0, .04) 1px, transparent 1px, transparent 96px),
        linear-gradient(180deg, rgba(0, 0, 0, .02), transparent 40%, transparent 60%, rgba(0, 0, 0, .02));
      opacity: .35;
    }

    /* Head (divider solid sepanjang konten) */
    #location .loc-head {
      max-width: 1200px;
      margin: 0 auto clamp(24px, 3vw, 40px);
      text-align: center;
      position: relative;
      color: var(--ink);
    }

    #location .loc-head::before {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: currentColor;
      opacity: .35;
      margin-bottom: 100px;
    }

    #location .loc-head h2 {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #location .loc-head .lead {
      margin: 0 auto;
      max-width: 720px;
      color: var(--muted);
      font-size: 15px;
    }

    /* Layout */
    #location .loc-grid {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(24px, 4vw, 44px);
    }

    #location .loc-grid::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      background: var(--line);
      transform: translateX(-.5px);
      pointer-events: none;
    }

    @media (max-width: 980px) {
      #location .loc-grid {
        grid-template-columns: 1fr;
      }

      #location .loc-grid::before {
        display: none;
      }
    }

    /* Info column */
    #location .loc-info .kicker {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 12px;
      color: var(--muted);
      opacity: .85;
      margin-bottom: 10px;
    }

    #location .loc-info h3 {
      font-weight: 800;
      letter-spacing: .01em;
      margin: 0 0 10px;
      font-size: 18px;
    }

    #location .addr,
    #location .poi {
      margin: 12px 0 18px;
      line-height: 1.7;
      font-size: 14px;
      color: var(--ink);
    }

    #location .poi li {
      margin: 4px 0;
    }

    #location .hair {
      height: 1px;
      background: var(--line);
      margin: 18px 0;
    }

    /* Mode tabs (underline, no pill/no radius) */
    #location .modes {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin: 6px 0 12px;
    }

    #location .modes button {
      border: none;
      background: none;
      padding: 6px 2px;
      cursor: pointer;
      color: #111;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 800;
      font-size: 12px;
      position: relative;
    }

    #location .modes button::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }

    #location .modes button.active::after,
    #location .modes button:hover::after {
      transform: scaleX(1);
    }

    /* Estimasi waktu/akses */
    #location .times {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 14px;
      font-size: 13px;
      color: #444;
    }

    @media (max-width:600px) {
      #location .times {
        grid-template-columns: 1fr;
      }
    }

    #location .time-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--line);
      padding: 8px 0;
    }

    /* Map column — tanpa radius, hairline tepi */
    #location .mapwrap {
      position: relative;
      border: 1px solid var(--line);
      background: #f0f0f0;
      overflow: hidden;
    }

    #location .mapwrap iframe {
      display: block;
      width: 100%;
      height: min(64vh, 560px);
      border: 0;
      filter: saturate(1.02) contrast(1.02);
    }

    /* Overlay label (flat, bukan card) */
    #location .map-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      background: rgba(255, 255, 255, .86);
      color: #111;
      padding: 10px 12px;
      border: 1px solid var(--line);
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-weight: 800;
    }

    /* CTA link bar (flat) */
    #location .route-bar {
      display: flex;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    #location .route-bar a {
      color: #111;
      text-decoration: none;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 800;
      position: relative;
      padding-bottom: 2px;
    }

    #location .route-bar a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: currentColor;
      transition: transform .25s ease;
      transform-origin: left;
    }

    #location .route-bar a:hover::after {
      transform: scaleX(0);
    }

    /* Pastikan tidak ada radius */
    #location,
    #location * {
      border-radius: 0 !important;
    }

    /* ============ LOCATION: sinkron tinggi & rapi ============ */

    /* 1) grid stretch agar dua kolom sama tinggi */
    #location .loc-grid {
      align-items: stretch;
    }

    /* 2) definisikan tinggi panel konsisten utk teks & map */
    #location {
      --pane-h: clamp(420px, 64vh, 560px);
      /* satu sumber kebenaran */
    }

    /* 3) map: penuh tinggi pane */
    #location .mapwrap {
      height: var(--pane-h);
    }

    #location .mapwrap iframe {
      height: 100%;
    }

    /* 4) teks: bungkus isi ke .info-pane agar setinggi map & bisa scroll halus */
    #location .info-pane {
      height: var(--pane-h);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 14px;
      overflow: hidden;
      /* biar rapi */
    }

    #location .info-scroll {
      overflow: auto;
      /* scroll kalau konten lebih panjang */
      padding-right: 4px;
      /* ruang untuk scrollbar */
      scrollbar-width: thin;
    }

    #location .route-bar {
      margin-top: auto;
    }

    /* CTA selalu di bawah */

    /* spacing & kerapian tipografi kecil */
    #location .loc-info .kicker {
      margin-bottom: 8px;
    }

    #location .loc-info h3 {
      margin: 0 0 6px;
    }

    #location .hair {
      margin: 14px 0;
    }

    /* tombol mode: aktif, hover, fokus (aksesibel) */
    #location .modes button {
      outline: none;
    }

    #location .modes button:focus-visible {
      box-shadow: 0 0 0 1px currentColor inset;
      /* flat focus, tanpa radius */
    }

    #location .modes button[aria-pressed="true"] {
      color: #000;
    }

    #location .modes button[aria-pressed="true"]::after {
      transform: scaleX(1);
    }

    /* responsive: kalau stack, tinggi ikuti konten (tanpa paksa pane-h) */
    @media (max-width:980px) {

      #location .info-pane,
      #location .mapwrap {
        height: auto;
      }

      #location {
        --pane-h: auto;
      }
    }

    /* FAB */
    .fab {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 1100;
    }

    .fab .btn {
      position: relative;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #25d366;
      color: #fff;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
      font-size: 22px;
    }

    .fab .btn:hover {
      transform: translateY(-2px);
    }

    .fab .btn .tip {
      position: absolute;
      right: 64px;
      top: 50%;
      transform: translateY(-50%) translateX(6px);
      background: #111;
      color: #fff;
      padding: 6px 10px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: 0.2s;
      font-family: var(--font-sans);
      font-weight: 700;
      border-radius: 0 !important;
    }

    .fab .btn:hover .tip {
      opacity: 1;
      transform: translateY(-50%);
    }

    /* Promo Modal flat */
    .promo-modal .panel {
      max-width: 100vw !important;
      max-height: 100vh !important;
      width: auto !important;
      height: auto !important;
      background: transparent;
      border: none;
      box-shadow: none;
      border-radius: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 1;
    }

    .promo-modal .img-wrap {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .promo-modal .img-wrap img {
      width: 100% !important;
      height: auto !important;
      max-width: 70vw !important;
      max-height: 60vh !important;
      object-fit: contain !important;
      border-radius: 0 !important;
    }

    .promo-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }

    .promo-modal.open {
      display: flex;
    }

    .promo-modal .backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(4px);
    }

    .promo-modal img {
      display: block;
      width: auto;
      height: auto;
      max-width: 200vw;
      max-height: 190vh;
      object-fit: contain !important;
      border-radius: 0 !important;
    }

    .promo-modal .close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: transparent;
      border: none;
      height: 34px;
      width: 34px;
      border-radius: 0;
      display: grid;
      place-items: center;
      font-size: 16px;
      cursor: pointer;
      transition: 0.2s;
    }

    .promo-modal .close:hover {
      background: #fff;
    }

    .promo-actions {
      margin-top: 14px;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .promo-modal .panel,
    .promo-modal img {
      border-radius: 0 !important;
    }

    .promo-actions .book-now {
      padding: 10px 32px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 0 !important;
      cursor: pointer;
      transition: all 0.25s ease;
      border: 2px solid #fff !important;
    }

    /* pastikan defaultnya tersembunyi */
    .promo-modal {
      position: fixed !important;
      inset: 0;
      display: none !important;
    }

    /* kalau open -> jadi overlay */
    .promo-modal.open {
      display: flex !important;
    }

    /* (opsional) munculkan di atas elemen lain, tapi cookie bar tetap di atas footer */
    .promo-modal {
      z-index: 6000 !important;
    }

    /* turunkan sedikit cookie bar saat dev */
    .cookiebar {
      z-index: 5000 !important;
    }

    .promo-modal {
      z-index: 6000 !important;
    }



    .book-now {
      padding: 10px 28px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #fff;
      background: transparent;
      border: 1px solid #fff;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
      border-radius: 0 !important;
    }

    .book-now:hover {
      border: 2px solid #000 !important;
      background: #000 !important;
      color: #fff !important;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .img-wrap {
      position: relative;
      display: inline-block;
    }

    .img-wrap img {
      display: block;
      width: auto;
      height: auto;
      max-width: 200vw;
      max-height: 190vh;
      object-fit: contain !important;
      border-radius: 0 !important;
    }

    .img-wrap .close {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.457);
      border: none;
      height: 28px;
      width: 28px;
      font-size: 16px;
      display: grid;
      place-items: center;
      cursor: pointer;
      border-radius: 0;
      z-index: 2;
    }

    .img-wrap .close:hover {
      background: #fff;
    }

    /* Cookie bar */
    .cookiebar {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 16px;
      z-index: 1800;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 15px !important;
      box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
      padding: 10px 12px;
      display: none;
      gap: 10px;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }

    .cookiebar .actions {
      display: flex;
      gap: 8px;
      align-items: center;
      margin: 0;
    }

    .cookiebar button {
      height: 34px;
      padding: 0 12px;
      border: 1px solid var(--line);
      background: #fff;
    }

    .cookiebar .accept {
      background: #000 !important;
      color: #fff !important;
      border: 0.5px solid #000 !important;
    }

    .cookiebar a {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .cookiebar {
        padding: 6px 8px;
        font-size: 11px;
        white-space: nowrap;
      }

      .cookiebar .fulltxt {
        display: none;
      }

      .cookiebar .shorttxt {
        display: inline;
      }

      .cookiebar .actions button {
        height: 30px;
        padding: 0 10px;
      }
    }

    @media (min-width: 601px) {
      .cookiebar .shorttxt {
        display: none;
      }
    }

    /* Policy Modal */
    .priv-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1850;
    }

    .priv-modal.open {
      display: flex;
    }

    .priv-modal .backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .priv-modal .panel {
      position: relative;
      z-index: 1;
      width: min(820px, 94vw);
      max-height: 86vh;
      overflow: auto;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-2);
      padding: 20px;
      margin-top: 40px;
    }

    .priv-modal .panel h3 {
      font-family: var(--font-serif);
      margin-bottom: 10px;
    }

    /* Cookie bar */
    .cookiebar {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 16px;
      z-index: 5000;
      z-index: 2147483647;
      /* super tinggi */
      pointer-events: auto;
      /* pastikan di atas header */
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 15px !important;
      box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
      padding: 10px 12px;
      display: none;
      /* akan di-set flex via JS kalau belum consent */
      gap: 12px;
      align-items: center;
      justify-content: center;
      font-size: 12px;

      /* kunci satu baris */
      white-space: nowrap;
      display: flex;
      /* fallback kalau ingin selalu terlihat */
      flex-wrap: nowrap;
    }

    /* Pastikan overlay lain tidak memblokir klik */
    #progress {
      pointer-events: none;
    }

    .cookiebar .actions {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin: 0;
    }

    .cookiebar button {
      height: 34px;
      padding: 0 12px;
      border: 1px solid var(--line);
      background: #fff;
    }

    .cookiebar .accept {
      background: #000 !important;
      color: #fff !important;
      border: 0.5px solid #000 !important;
    }

    .cookiebar a {
      text-decoration: underline;
    }

    /* Mobile: tetap satu baris, tapi pakai teks pendek */
    @media (max-width: 600px) {
      .cookiebar {
        padding: 6px 8px;
        font-size: 11px;
      }

      .cookiebar .fulltxt {
        display: none;
      }

      .cookiebar .shorttxt {
        display: inline;
      }

      .cookiebar .actions button {
        height: 30px;
        padding: 0 10px;
      }
    }

    @media (min-width: 601px) {
      .cookiebar .shorttxt {
        display: none;
      }
    }

    /* Policy Modal (tidak berubah, hanya z-index lebih tinggi dari cookiebar) */
    .priv-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 6000;
    }

    .priv-modal.open {
      display: flex;
    }

    .priv-modal .backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .priv-modal .panel {
      position: relative;
      z-index: 1;
      width: min(820px, 94vw);
      max-height: 86vh;
      overflow: auto;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-2);
      padding: 20px;
      margin-top: 40px;
    }

    .priv-modal .panel h3 {
      font-family: var(--font-serif);
      margin-bottom: 10px;
    }

    .priv-modal .priv-close {
      position: absolute;
      top: 10px;
      right: 12px;
      width: 32px;
      height: 32px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 8px;
      font-size: 20px;
      line-height: 30px;
      cursor: pointer;
    }

    .priv-modal .panel:focus {
      outline: 2px solid #000;
      outline-offset: 4px;
    }



    /* ===== SUBSCRIBE — Editorial Modern (aligned row) ===== */
    #subscribe {
      --ink: var(--ink, #222);
      --muted: var(--muted, #6b6b6b);
      --line: var(--line, rgba(0, 0, 0, .22));
      --ivory: var(--ivory, #f7f4ee);

      background: var(--ivory);
      color: var(--ink);
      padding: clamp(56px, 7vw, 96px) clamp(18px, 6vw, 72px);
      position: relative;
    }

    #subscribe .sub-wrap {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    /* garis atas & bawah (lebih tegas, full width konten) */
    #subscribe .sub-wrap::before,
    #subscribe .sub-wrap::after {
      content: "";
      display: block;
      height: 1px;
      width: 100%;
      background: currentColor;
      /* solid, no gradient */
      opacity: .35;
      /* bisa naikkan ke .45 jika ingin lebih tebal */
    }

    #subscribe .sub-wrap::before {
      margin-bottom: clamp(28px, 3vw, 44px);
    }

    #subscribe .sub-wrap::after {
      margin-top: clamp(28px, 3vw, 44px);
    }

    /* headline besar */
    #subscribe .sub-head {
      margin-bottom: clamp(8px, 2vw, 14px);
    }

    #subscribe .display {
      font-family: "Spectral", serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(36px, 6vw, 72px);
      line-height: 1.08;
      margin: 0;
    }

    /* BAR sejajar: lead (kiri) — form (kanan) */
    #subscribe .sub-bar {
      display: grid;
      grid-template-columns: 1fr minmax(360px, 520px);
      gap: clamp(18px, 3vw, 36px);
      align-items: end;
      /* <— sejajarkan baseline bawah */
    }

    /* lead kiri */
    #subscribe .lead {
      color: var(--muted);
      font-size: 15px;
      margin:
        0;
      /* rapih ke baseline */
    }

    /* form kanan: underline input + tombol sejajar */
    #subscribe .sub-form {
      display:
        flex;
      align-items: flex-end;
      /* <— sejajar bawah */
      gap: clamp(12px, 2vw, 18px);
    }

    #subscribe .field {
      flex: 1;
      display: flex;
      align-items: flex-end;
      gap: 10px;
      border-bottom: 1px solid var(--line);
      /* garis input */
      padding-bottom: 10px;
    }

    #subscribe input[type="email"] {
      flex: 1;
      background: transparent;
      border: 0;
      outline: 0;
      height: 40px;
      font-size: clamp(16px, 1.6vw, 18px);
      color: var(--ink);
    }

    #subscribe input::placeholder {
      color:
        #8b8b8b;
    }

    /* tombol italic editorial */
    #subscribe .sub-btn {
      border: 1px solid var(--ink);
      background:
        transparent;
      color: var(--ink);
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 600;
      font-size:
        clamp(14px, 1.4vw, 16px);
      padding: 10px 20px;
      height: 44px;
      /* tingginya pas dengan input */
      line-height: 1;
      cursor:
        pointer;
      transition: background .25s ease, color .25s ease, opacity .25s ease;
    }

    #subscribe .sub-btn:hover {
      background: #111;
      color: #fff;
    }

    /* feedback kecil */
    #subscribe .msg {
      margin-top: 10px;
      font-size: 13px;
      color:
        var(--muted);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .25s ease, transform .25s ease;
    }

    #subscribe .msg.show {
      opacity: 1;
      transform: none;
    }

    /* responsive: bar jadi vertikal di mobile */
    @media (max-width: 780px) {
      #subscribe .sub-bar {
        grid-template-columns: 1fr;
        align-items: start;
      }

      #subscribe .sub-form {
        width: 100%;
      }
    }

    /* tanpa radius */
    #subscribe,
    #subscribe * {
      border-radius: 0 !important;
    }

    /* ===== Footer (THG style, dark, no radius) ===== */
    :root {
      /* fallback kalau variabel belum ada */
      --footer-bg: var(--ink, #0f162a);
      --footer-ink: var(--ivory, #f6f7f9);
      --footer-muted: rgba(255, 255, 255, .75);
      --footer-line: rgba(255, 255, 255, .10);
      --footer-accent: #e6d6a8;
    }

    .site-footer {
      display: grid;
      grid-template-columns: 2fr 1.1fr 1.1fr 1fr;
      gap: clamp(18px, 2.5vw, 32px);
      padding: clamp(36px, 5vw, 60px) clamp(16px, 5vw, 56px);
      background: var(--footer-bg);
      color: var(--footer-ink);
      border-top: 1px solid var(--footer-line);
      width: 100vw !important;
      /* full lebar layar */
      left: 50% !important;
      right: 50% !important;
      /* margin-left: -50vw !important;
      margin-right: -50vw !important; */
      box-sizing: border-box !important;
    }

    @media (max-width: 980px) {
      .site-footer {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .site-footer {
        grid-template-columns: 1fr;
      }
    }

    .site-footer h4 {
      font-family: var(--font-serif, "Spectral", serif);
      margin: 0 0 12px;
      color: var(--footer-ink);
      font-weight: 700;
      letter-spacing: .02em;
    }

    .f-col {
      min-width: 0;
    }

    .f-about {
      padding-right: clamp(0px, 2vw, 24px);
    }

    /* FOOTER LOGOS – fix: pakai grid biar width kepasang */
    .f-logos {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 24px);
    }

    .f-logos .logo-link,
    .f-logos .app-link {
      display: inline-block;
      line-height: 0;
      padding: 2px;
      border-radius: 6px;
    }

    /* Kontainer gambar: grid satu sel, dua img menumpuk */
    .f-logos .logo-swap,
    .f-logos .img-wrap {
      display: grid;
      align-items: center;
      justify-items: start;
      /* biar lebar ngikut natural */
    }

    /* Gambar mengikuti tinggi 50px; lebar natural */
    .f-logos .logo-swap img,
    .f-logos .img-wrap img {
      grid-area: 1 / 1;
      max-height: 50px;
      width: auto;
      object-fit: contain;
      transition: opacity .25s ease;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    /* state default & hover (swap mono <-> color) */
    .f-logos img.color {
      opacity: 0;
    }

    .f-logos img.mono {
      opacity: 1;
    }

    .f-logos .logo-link:hover img.color,
    .f-logos .logo-link:focus-visible img.color,
    .f-logos .app-link:hover img.color,
    .f-logos .app-link:focus-visible img.color {
      opacity: 1;
    }

    .f-logos .logo-link:hover img.mono,
    .f-logos .logo-link:focus-visible img.mono,
    .f-logos .app-link:hover img.mono,
    .f-logos .app-link:focus-visible img.mono {
      opacity: 0;
    }

    /* Ring fokus */
    .f-logos .logo-link:focus-visible,
    .f-logos .app-link:focus-visible {
      outline: 2px solid #0003;
      outline-offset: 2px;
    }

    .f-kicker {
      margin: 14px 0 18px;
      color: var(--footer-muted);
      line-height: 1.6;
      max-width: 44ch;
    }

    .f-stores {
      display: flex;
      gap: clamp(16px, 3vw, 36px);
      align-items: center;
    }

    .f-stores .store {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--footer-ink);
      text-decoration: none;
      opacity: .9;
    }

    .f-stores .store i {
      font-size: 22px;
    }

    .f-stores .store:hover {
      opacity: 1;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .f-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .f-list li {
      margin: 8px 0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .f-list a {
      color: var(--footer-muted);
      text-decoration: none;
    }

    .f-list a:hover {
      color: var(--footer-ink);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .f-small,
    .f-small a {
      color: var(--footer-muted);
    }

    .f-social {
      display: flex;
      gap: 12px;
      margin-top: 6px;
    }

    .f-social a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      background: transparent;
      border: 1px solid var(--footer-line);
      color: var(--footer-ink);
      transition: .2s;
    }

    .f-social a:hover {
      background: var(--footer-ink);
      color: var(--footer-bg);
    }

    /* Sembunyikan link/icon TripAdvisor di footer social */
    .f-social a[title*="tripadvisor" i] {
      display: none !important;
    }

    .f-bottom {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: clamp(16px, 3vw, 24px);
      padding-top: clamp(12px, 2vw, 18px);
      border-top: 1px solid var(--footer-line);
      color: var(--footer-muted);
      font-size: 13px;
    }

    /* Hapus radius global di komponen footer */
    .site-footer,
    .site-footer * {
      border-radius: 0 !important;
    }


    /* Responsive hero spacing tuning */
    @media (max-width: 760px) {
      .hero-inner {
        padding-bottom: 130px;
      }

      .field {
        border-right: none;
        border-bottom: 1px solid var(--line);
      }

      .field:last-of-type {
        border-bottom: none;
      }

      .book {
        min-height: 48px;
      }
    }

    /* Buttons font enforcement */
    button,
    .book,
    .apply,
    .cta {
      font-family:
        var(--font-sans) !important;
    }

    /* Fix nav layout overrides */
    .header {
      display: flex !important;
      align-items:
        center;
      justify-content: space-between;
      padding: 0 clamp(16px, 4vw, 56px);
      height: var(--nav-h);
    }

    .logo img,
    .corp-logo {
      height: var(--nav-logo-h) !important;
      object-fit: contain;
      display: block;
    }

    .nav-center {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .corp-logo {
      max-height: var(--nav-logo-h);
    }

    .header.scrolled {
      background: #fff;
      color:
        var(--ink);
      box-shadow: var(--shadow-1);
      border-color: var(--line);
    }

    .hero .poster {
      opacity: 1;
      transition:
        opacity 0.6s ease;
      will-change: opacity, transform;
    }

    .hero.ready .poster {
      opacity: 0;
    }

    /* Navbar fix (alpha) */
    .header {
      background: rgba(255, 255, 255, var(--nav-alpha));
      backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
      border-bottom: 1px solid rgba(232, 232, 232, var(--nav-alpha));
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .header.scrolled {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      color: #111;
    }

    /* Booking Bar */
    .booking-wrap {
      position: absolute;
      top: 120px;
      left: 50%;
      transform: translateX(-50%);
      display:
        flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      border: 1px solid #e8e8e8;
      box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08);
      max-width: 1080px;
      width: calc(100% - 80px);
      border-radius: 15px;
      padding: 8px 16px;
      z-index: 5;
    }

    .booking-bar {
      display: flex;
      flex: 1;
    }

    .field {
      display: flex;
      flex-direction: column;
      align-items:
        flex-start;
      gap: 4px;
      padding: 8px 12px;
      position: relative;
      border-right: none !important;
    }

    .field .top {
      display:
        flex;
      align-items: center;
      gap: 6px;
    }

    .field .ico {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none !important;
    }

    .field .nights,
    .field .label {
      font-size: 12px;
      text-transform:
        uppercase;
      letter-spacing: 0.08em;
      color: #8a8a8a;
      line-height: 1;
      margin-top: 3px;
    }

    .field .value,
    .field .counter {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .field .value,
    .field .counter output {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      line-height: 1;
    }

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

    .counter button {
      font-size: 20px;
      font-weight: 500;
      border: none;
      background:
        none;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .counter button:hover {
      background: rgba(142, 141, 141, 0.2);
      border-radius: 50%;
    }

    .counter button img {
      width:
        10px;
      height: 10px;
    }

    .counter output {
      min-width: 20px;
      text-align: center;
      font-weight: 700;
      font-size: 16px;
    }

    .field::after {
      content: "";
      position: absolute;
      top: 20%;
      bottom: 20%;
      right: 20%;
      width: 1px;
      background-image:
        repeating-linear-gradient(to bottom, #928e8e 0, #928e8e 6px, transparent 6px, transparent 12px);
    }

    .field:last-of-type::after {
      display: none;
    }

    .book {
      background: #cccaca;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 35px;
      min-width: 200px;
      height:
        40px;
      margin: 0 0 0 20px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .book:hover {
      background: #000;
      color:
        #fff;
    }

    @media (max-width: 991px) and (min-width: 768px) {
      .booking-wrap {
        position: absolute;
        top: auto;
        bottom:
          30px;
        transform: translateX(-50%);
        width: 92%;
        border-radius: 12px;
        flex-direction: column;
        padding: 14px;
      }

      .booking-bar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .book {
        width: 100%;
        margin:
          12px 0 0 0;
        border-radius: 8px;
        height: 44px;
      }
    }

    @media (max-width: 767px) {
      .booking-wrap {
        position: relative;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 12px auto 0;
        width: 94%;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        flex-direction: column;
        padding: 10px;
      }

      .booking-bar {
        flex-direction: column;
        width:
          100%;
      }

      .field {
        width: 100%;
        border-bottom: 1px solid #eaeaea;
      }

      .field:last-of-type {
        border-bottom: none;
      }

      .field::after {
        display: none;
      }

      .book {
        width: 100%;
        margin: 12px 0 0;
        border-radius: 6px;
        height: 48px;
      }
    }

    /* ==== BOOKING BAR: kembalikan kartu putihnya ==== */
    .booking-wrap {
      background: #fff !important;
      /* kartu tetap putih */
      border: 1px solid #e8e8e8 !important;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .08) !important;
    }

    /* ==== Hapus abu-abu di area klik (tanggal) saja ==== */
    .booking-bar .field,
    .booking-bar button.field {
      -webkit-appearance: none;
      appearance: none;
      background: transparent !important;
      /* hilangkan abu */
      border: 0 !important;
      box-shadow: none !important;
      padding: 8px 12px;
      /* jaga spacing */
      border-radius: 10px;
      /* biar hover/focus rapi */
    }

    /* Hover/focus yang halus & accessible */
    .booking-bar button.field:hover {
      background: rgba(0, 0, 0, .04);
    }

    .booking-bar button.field:focus-visible {
      outline: 2px solid #111;
      outline-offset: 2px;
    }

    /* Pastikan teks di dalam tetap tegas */
    .booking-bar .value,
    .booking-bar .nights,
    .booking-bar .label {
      color: #111 !important;
    }


    /*
    Hero text */
    .hero-inner {
      position: absolute;
      bottom: 90px;
      left: 750px;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
      max-width: 850px;
      width: 100%;
      padding: 0 16px;
    }

    .kicker {
      display: flex;
      justify-content:
        center;
      gap: 30px;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #fff;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
      opacity: 0.9;
      margin-bottom: 10px;
      margin-left: 30px;
    }

    .headline {
      color: #fff;
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: clamp(22px, 3.5vw, 42px);
      line-height: 1.2;
      font-style:
        italic;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
    }

    @media (max-width: 768px) {
      .hero-inner {
        bottom: 28px;
        max-width: 600px;
      }

      .kicker {
        font-size: 9px;
        letter-spacing: 0.15em;
      }

      .headline {
        font-size: clamp(18px, 4vw,
            28px);
        line-height: 1.15;
      }
    }

    @media (max-width: 480px) {
      .hero-inner {
        bottom: 22px;
        max-width: 90%;
      }

      .kicker {
        font-size: 8px;
        letter-spacing: 0.12em;
      }

      .headline {
        font-size: 18px;
        line-height: 1.2;
      }
    }

    #dateRangeBtn {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 8px 12px;
      flex: 2;
      min-width: 280px;
    }

    #dateRangeBtn .top {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
    }

    #dateRangeBtn .ico {
      width: 22px;
      height: 22px;
    }

    #dateRangeBtn .nights {
      font-size: 12px;
      text-transform:
        uppercase;
      letter-spacing: 0.08em;
      color: #8a8a8a;
    }

    #dateRangeBtn .value {
      font-size: 16px;
      font-weight: 700;
      color: #111;
    }

    .field[aria-label="Rooms"],
    .field[aria-label="Guests"] {
      flex: 1;
      min-width: 160px;
    }

    /* Swap logo
    putih/warna utk THJ (brand utama) */
    /* FIX: beri lebar ke container logo utama */
    .brand-swap {
      position: relative;
      display: inline-block;
      height: var(--nav-logo-h);
      width: clamp(120px, 12vw, 180px);
      /* bebas: bisa 140px juga */
    }

    /* Pastikan img mengisi container */
    .brand-swap .brand {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity .25s ease;
    }

    .brand-swap .white {
      opacity: 1;
    }

    .brand-swap .color {
      opacity: 0;
    }

    /* Saat header sudah
    scroll → pakai logo berwarna */
    .header.scrolled .brand-swap .white {
      opacity: 0;
    }

    .header.scrolled .brand-swap .color {
      opacity: 1;
    }

    /* HOVER swap (baru) */
    .logo:hover .brand-swap .white {
      opacity: 0;
    }

    .logo:hover .brand-swap .color {
      opacity: 1;
    }

    /* Signatures */
    #signatures {
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    #signatures h2 {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #signatures .lead {
      font-size: 15px;
      color: #666;
      margin:
        0 auto 40px;
      max-width: 640px;
      margin-bottom: 70px;
    }

    .sig-grid {
      display: flex;
      flex-direction: column;
      gap: 0.5px;
    }

    .sig-row-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid #dad9d9;
    }

    .sig-row-3 .sig:nth-child(1),
    .sig-row-3 .sig:nth-child(2) {
      border-right: 1px solid #dad9d9;
    }

    .sig-row-3 .sig:nth-child(3) {
      border-right: none;
    }

    .sig-row-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
      max-width: 66%;
      margin: 0 auto;
    }

    .sig-row-2 .sig:first-child {
      border-right: 1px solid #dad9d9;
    }

    .sig-row-2 .sig:last-child {
      border-right: none;
    }

    .sig {
      display: flex;
      gap: 16px;
      padding: 28px 32px;
      align-items:
        flex-start;
      text-align: left;
      border: none;
      border-radius: 0;
    }

    .sig img.ico {
      width: 44px;
      height: 44px;
      margin-top: 4px;
    }

    .sig h3 {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 16px;
      margin: 0 0 6px;
    }

    .sig p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.5;
    }

    @media (max-width: 768px) {

      .sig-row-3,
      .sig-row-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .sig {
        border-right: none !important;
        border-bottom: 1px solid #dad9d9;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .sig:last-child {
        border-bottom:
          none;
      }
    }

    /*=====SIGNATURES — Motion Pelan & Elegan (BARU)=====*/
    #signatures .sig,
    #signatures h2,
    #signatures .lead {
      opacity: 0;
      transform: translateY(22px) scale(0.985);
      filter: blur(6px);
      transition: opacity 1000ms cubic-bezier(0.22, 0.9, 0.25, 1), transform 1000ms cubic-bezier(0.22, 0.9, 0.25, 1), filter 1000ms ease;
      transition-delay: var(--delay, 0ms);
      will-change: opacity, transform, filter;
    }

    /* masuk viewport */
    #signatures .in {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    /* keluar viewport */
    #signatures .out {
      opacity: 0;
      transform: translateY(18px) scale(0.985);
      filter: blur(6px);
    }

    /* efek saat meninggalkan section */
    #signatures.section-leaving .sig img.ico {
      filter: grayscale(0.35) saturate(0.92) contrast(0.98);
      transform:
        translateY(6px) scale(0.98);
      transition: transform 700ms ease, filter 700ms ease;
      opacity: 0.95;
    }

    /* opsional:
    pelembut transisi saat aktif */
    #signatures.section-active .sig {
      transition-duration: 1100ms;
    }

    /* tetap tanpa
    radius */
    #signatures .sig,
    #signatures img.ico {
      border-radius: 0;
    }

    /* responsif: animasi tetap pelan */
    @media (max-width: 768px) {

      #signatures .sig,
      #signatures h2,
      #signatures .lead {
        transition-duration: 900ms;
      }
    }

    /*
    accessibility */
    @media (prefers-reduced-motion: reduce) {

      #signatures .sig,
      #signatures h2,
      #signatures .lead,
      #signatures.section-leaving .sig img.ico {
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
      }
    }

    /* Safety: kalau JS/IO gagal, jangan stuck transparan */
    .no-io .reveal,
    .no-io #signatures .sig,
    .no-io #signatures h2,
    .no-io #signatures .lead {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }

    /* Meetings Section */
    #meetings {
      background: var(--ivory);
      text-align:
        center;
      padding: 100px clamp(16px, 6vw, 80px);
      position: relative;
    }

    #meetings .section-title {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #meetings .section-subtitle {
      color:
        #777;
      font-size: 15px;
      font-family: var(--font-sans);
      margin-bottom: 100px;
    }

    /* Image wrapper */
    .venue-image-wrap {
      position: relative;
      width: 50%;
    }

    .venue-row.visible .venue-image-wrap img {
      opacity: 1;
      transform: translateX(0);
    }

    /* Animation delay & reveal */
    .reveal.visible .venue-image-wrap img {
      animation: fadeSlideFromLine 1s ease forwards;
    }

    @keyframes fadeSlideFromLine {
      from {
        opacity: 0;
        transform: translateX(40px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .venue-row {
        flex-direction: column;
        text-align: center;
      }

      .venue-image-wrap,
      .venue-text {
        width: 100%;
      }

      .vline {
        display: none;
      }
    }

    /*===Garis
    Vertikal Independen===*/
    .vline {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(0, 0, 0,
          0.25);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Ballroom (gambar kiri, garis kanan) */
    .venue-row.left .venue-image-wrap img {
      transform: translateX(-40px);
    }

    .venue-row.left .vline {
      right: -25px;
      left: auto;
    }

    /* Boardroom (gambar kanan, garis kiri) */
    .venue-row.right .venue-image-wrap img {
      transform: translateX(40px);
    }

    .venue-row.right .vline {
      left: -25px;
      right: auto;
    }

    /*===Gambar Keluar dari Garis===*/
    .venue-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0;
      transform: translateX(0);
      transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /*===TEKS MUNCUL TERAKHIR===*/
    .venue-text {
      width: 40%;
      font-family: var(--font-sans);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.7s ease-out;
    }

    .venue-row.visible .venue-text {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.55s;
      /*
    muncul setelah gambar */
    }

    /*===Heading & Body===*/
    .venue-text h3 {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.02em;
      margin-bottom: 10px;
    }

    .venue-text p {
      color: #555;
      font-size: 14px;
      margin-bottom: 14px;
      line-height: 1.6;
    }

    /*===Tombol===*/
    .learn-more {
      border: none;
      background: none;
      font-weight: 700;
      font-size:
        13px;
      text-transform: uppercase;
      text-decoration: underline;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .learn-more:hover {
      color: var(--accent);
    }

    /*===HAPUS GARIS PANJANG & GANTI GARIS PER GAMBAR===*/
    #meetings::before {
      display: none !important;
    }

    /* Kecilkan gambar agar garis kiri/kanan bisa sejajar di tengah */
    .venue-image-wrap {
      width: 42%;
      position: relative;
    }

    /* Buat garis di sisi gambar */
    .vline {
      position: absolute;
      top: 50%;
      height:
        100%;
      width: 1px;
      background: rgba(0, 0, 0, 0.25);
      transform: translateY(-50%) scaleY(0);
      transform-origin: center;
      transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Ballroom (garis kanan gambar kiri) */
    .venue-row.left .vline {
      right: -25px;
    }

    /* Boardroom (garis kiri gambar kanan) */
    .venue-row.right .vline {
      left:
        -25px;
    }

    /* Saat muncul di layar */
    .venue-row.visible .vline {
      transform: translateY(-50%) scaleY(1);
    }

    /*===MODAL
    BASE===*/
    .venue-modal {
      position: fixed;
      inset: 0;
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 4000;
      overflow-y: auto;
      backdrop-filter: blur(6px);
    }

    .venue-modal.open {
      display: flex;
      animation:
        modalFadeIn 0.45s ease forwards;
    }

    .venue-modal.closing {
      animation: modalFadeOut 0.4s ease forwards;
    }

    /*
    Background image */
    .modal-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.55);
      z-index: 0;
    }

    /*===GLASS PANEL===*/
    .modal-panel.glass {
      position: relative;
      max-width:
        760px;
      width: 90%;
      padding: 60px 50px;
      border-radius: 0;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter:
        blur(14px);
      box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
      color: #fff;
      z-index: 2;
      text-align: left;
      animation: slideUp 0.45s ease forwards;
    }

    .modal-panel.glass.closing {
      animation: slideDown 0.4s ease forwards;
    }

    /* Close button */
    .modal-panel .close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      font-size: 32px;
      color: #fff;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .modal-panel .close:hover {
      opacity: 0.6;
    }

    /* Text */
    .modal-panel h3 {
      font-family: "Spectral", serif;
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .modal-panel p {
      font-family: "Montserrat", sans-serif;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }

    .details {
      list-style: none;
      padding: 0;
      margin-bottom: 24px;
    }

    .modal-panel img {
      width: 100%;
      border-radius: 0;
      opacity: 0.9;
    }

    /*===ANIMATIONS===*/
    @keyframes modalFadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes modalFadeOut {
      to {
        opacity: 0;
        visibility: hidden;
      }
    }

    @keyframes slideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideDown {
      from {
        transform: translateY(0);
        opacity: 1;
      }

      to {
        transform: translateY(60px);
        opacity: 0;
      }
    }

    /*=====VENUE MODAL
    — Request Form only=====*/
    /* Container: biar bisa scroll tinggi, dan ada padding atas-bawah */
    .venue-modal {
      position: fixed;
      inset: 0;
      display: none;
      justify-content: center;
      align-items: flex-start;
      /* <— penting: panel
    start dari atas */
      padding: 6vh 24px;
      /* ruang napas di atas & bawah */
      z-index: 3000;
      overflow-y: auto;
    }

    /* Blur
    background harus selalu full viewport (ikut scroll) */
    .venue-modal .modal-bg {
      position: fixed;
      /* <— ganti
    absolute → fixed */
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.45) blur(3px);
      /* sedikit lebih gelap agar teks terbaca */
      transform: none;
      z-index: 0;
    }

    .venue-modal .modal-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .30);
      /* lapisan gelap tipis di atas foto */
    }

    /* Panel putih solid */
    .venue-modal .modal-panel {
      position: relative;
      z-index: 2;
      width: min(92vw, 860px);
      background: rgba(255, 255, 255, .98);
      /* lebih solid agar kontras */
      padding: clamp(28px, 3.5vw, 60px);
      text-align:
        left;
      border-radius: 0 !important;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
    }

    /* close */
    .venue-modal .close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: none;
      border: 0;
      font-size: 28px;
      cursor: pointer;
      color:
        #222;
    }

    /* Hairline pemisah */
    .req-hair {
      height: 1px;
      background: rgba(0, 0, 0, .18);
      width: 100%;
      margin: 10px 0 16px;
    }

    /* GRID form */
    .req-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .req-form input,
    .req-form select,
    .req-form textarea {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, .18);
      padding: 12px;
      font-size:
        14px;
      background: #fff;
      border-radius: 0 !important;
    }

    .req-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .req-form .full {
      grid-column: 1 / -1;
    }

    .select-wrap {
      position: relative;
    }

    .select-wrap select {
      appearance:
        none;
      -webkit-appearance: none;
      padding-right: 42px;
      background: #fff;
    }

    .select-wrap::after {
      content: "\f107";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      right: 12px;
      top: 50%;
      transform:
        translateY(-50%);
      color: #666;
      pointer-events: none;
    }

    .consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13px;
      color: #3b3f45;
    }

    .consent input {
      width: 18px;
      height: 18px;
      accent-color: #111;
      margin-top: 2px;
    }

    .row-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 8px;
    }

    .row-actions .left {
      color: #6f747b;
      font-size: 12px;
    }

    .row-actions .primary {
      height: 44px;
      padding: 0 16px;
      background: #111;
      color: #fff;
      border: 1px solid #111;
    }

    @media (max-width: 760px) {
      .req-form {
        grid-template-columns: 1fr;
      }

      .row-actions {
        flex-direction: column;
        align-items: stretch;
      }
    }

    /* animasi buka/tutup
    tetap */
    .venue-modal.open {
      display: flex;
      animation: fadeIn .35s ease both;
    }

    .venue-modal.closing {
      animation:
        fadeOut .25s ease both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes fadeOut {
      to {
        opacity: 0;
        visibility: hidden
      }
    }

    .proposal-toggle i {
      transition: transform .25s ease;
    }

    .proposal-toggle.is-open i {
      transform: rotate(180deg);
    }

    .venue-modal {
      position: fixed;
      inset: 0;
      display: none;
      place-items: center;
      z-index: 3000;
    }

    .venue-modal.open {
      display: grid;
    }

    .proposal-toggle i {
      transition: transform .25s ease;
    }

    .proposal-toggle.is-open i {
      transform: rotate(180deg);
    }

    .venue-modal [hidden] {
      display: none !important;
    }

    /*
    Hormati atribut hidden meski elemennya grid/flex */
    .venue-modal [hidden] {
      display: none !important;
    }

    /* Gaya
    tombol simpel, modern, tanpa radius */
    .open-req {
      height: 44px;
      padding: 0 16px;
      border: 1px solid #111;
      background: transparent;
      color: #111;
      letter-spacing: .02em;
      cursor: pointer;
      border-radius: 0 !important;
      transition: background .2s ease, color .2s ease;
    }

    .open-req:hover {
      background: #111;
      color: #fff;
    }

    /*=====DESTINATION — Editorial Modern (no card, no radius)=====*/
    #nearby {
      background: #fff;
      padding: clamp(56px,
          7vw, 96px) clamp(18px, 6vw, 72px);
      color: #1f1f1f;
    }

    /* Heading */
    #nearby h2 {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      text-align: center;
      margin: 0 0 6px;
    }

    #nearby .lead {
      text-align: center;
      color: #7a7a7a;
      font-size: 15px;
      max-width: 720px;
      margin: 0 auto clamp(36px, 4vw, 56px);
    }

    /* Grid 2 kolom + hairline tengah */
    #nearby .dest-grid {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap:
        clamp(24px, 3.5vw, 36px);
    }

    #nearby .dest-grid::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left:
        50%;
      width: 1px;
      background: rgba(0, 0, 0, .12);
      transform: translateX(-.5px);
      pointer-events: none;
    }

    @media (max-width:880px) {
      #nearby .dest-grid {
        grid-template-columns: 1fr;
      }

      #nearby .dest-grid::before {
        display: none;
      }
    }

    /*=====Item (bukan card)=====*/
    .dest-item {
      display: grid;
      grid-template-rows: auto auto;
      gap: 18px;
    }

    /* Media —
    seragam, tanpa radius, hairline bawah */
    .dest-item .media {
      position: relative;
      overflow: hidden;
      background: #eee;
      border: none;
      box-shadow: none;
      height: clamp(260px, 34vw, 420px);
      /* samakan tinggi antar gambar */
    }

    .dest-item .media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.005);
      transition: transform 700ms cubic-bezier(.19, 1, .22, 1), filter .4s ease;
    }

    .dest-item .media::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(0, 0,
          0, .22);
    }

    .dest-item:hover .media img {
      transform: scale(1.02);
      filter: contrast(1.04) saturate(1.02);
    }

    /* Copy */
    .dest-item .copy {
      text-align: center;
      padding: 0 6px;
    }

    .dest-item .copy h3 {
      font-weight: 800;
      letter-spacing:
        .01em;
      margin: 0 0 8px;
      font-size: clamp(18px, 1.8vw, 22px);
      color: #1f1f1f;
    }

    .dest-item .copy p {
      color: #5a5a5a;
      font-size: 14px;
      line-height: 1.7;
      max-width: 480px;
      margin: 0 auto 14px;
    }

    /* CTA underline ala Meetings */
    .dest-item .cta {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #1f1f1f;
      text-decoration: none;
      position: relative;
      padding-bottom: 2px;
    }

    .dest-item .cta::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: currentColor;
      transform: scaleX(1);
      transform-origin: left;
      transition: transform .25s ease;
    }

    .dest-item:hover .cta::after {
      transform: scaleX(0);
    }

    /* Reveal (selaras M&E) */
    #nearby .dest-item {
      opacity: 0;
      transform: translateY(22px) scale(.985);
      transition: opacity .6s cubic-bezier(.22, .9, .25, 1), transform .6s cubic-bezier(.22, .9, .25, 1);
      will-change: opacity, transform;
    }

    #nearby .dest-item.in {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /*
    Pastikan tidak ada radius di mana pun */
    #nearby .media,
    #nearby .media img {
      border-radius: 0 !important;
    }

    /*===DESTINATION: force hairline bawah foto terlihat di atas gambar===*/
    #nearby .dest-item .media {
      position:
        relative !important;
      overflow: hidden;
      /* backup terakhir */
      border-bottom: 1px solid rgba(0, 0, 0, .28) !important;
      box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .28) !important;
    }

    /* Lapisan utama: garis di ATAS gambar (paling tegas &
    anti tertutup) */
    #nearby .dest-item .media::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      /* tempel persis di bawah */
      height: 1px;
      background: rgba(0, 0, 0, .28);
      /* sedikit lebih tegas agar terlihat */
      z-index: 3;
      /* di atas img */
      pointer-events: none;
      transform: translateZ(0);
      /* cegah blur sub-pixel */
    }

    /*
    Pastikan IMG tak “nutup” garis */
    #nearby .dest-item .media img {
      position: absolute !important;
      inset: 0 !important;
      z-index: 1 !important;
      /* img di bawah hairline */
      display: block;
      object-fit: cover;
    }

    /*===DATE MODAL
    FIX (anchored popover)===*/
    #dateModal {
      position: fixed;
      /* jangan absolute supaya tidak “geser” saat scroll */
      inset: 0;
      display: none;
      z-index: 2600;
      /* di atas header & booking bar */
    }

    #dateModal.open {
      display: block;
    }

    #dateModal .card {
      position: fixed;
      /* anchored ke tombol (via JS) */
      margin: 0;
      z-index: 1;
      pointer-events: auto;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
      /* kartu bisa diklik */
    }

    #dateModal .backdrop {
      position: fixed;
      inset:
        0;
      background: transparent;
      pointer-events: none !important;
      display: none !important;
    }

    /* --- PATCH: taruh di
    paling akhir CSS --- */
    #dateModal.open {
      animation: none !important;
      /* matikan animasi .modal.open yang
    ke-override */
    }

    #dateModal.open .card {
      animation: dateSlideIn .25s ease both;
      /* animasi masuk yang aman */
    }

    @keyframes dateSlideIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /*===PATCH HOVER KALENDER (PAKAI .day)===*/
    #dateModal.open .day {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 8px;
      transition: background .15s ease, color .15s ease;
    }

    #dateModal.open .day:not(.disabled):hover {
      background: #111 !important;
      color: #fff !important;
      border-color: #111 !important;
    }

    /* biar elemen lain nggak nutup interaksi */
    #dateModal.open .card {
      pointer-events: auto;
    }

    #dateModal .backdrop {
      pointer-events: none !important;
    }

    /* opsional: bedakan jelas dengan
    rentang terpilih */
    #dateModal.open .day.in-range:not(.checkin):not(.checkout) {
      background: #f3f3f3 !important;
      color: inherit;
    }

    /* Hover pakai class (bukan :hover) */
    #dateModal.open .day.hovering {
      background: #111 !important;
      color: #fff !important;
      border-color: #111 !important;
      border-radius: 8px;
    }

    /* ==== Date Modal: bar aksi & tombol ==== */
    #dateModal .card {
      border-radius: 16px;
      /* biar menyatu rapi dengan bar aksi */
      overflow: hidden;
    }

    #dateModal .actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      border-top: 1px solid #e8e8e8;
    }

    /* Reset = gaya ghost */
    #dateModal .actions .ghost {
      background: transparent;
      color: #333;
      border: 1px solid #ddd;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 600;
      transition: background .2s ease, border-color .2s ease;
    }

    #dateModal .actions .ghost:hover {
      background: #f5f5f5;
      border-color: #d0d0d0;
    }

    /* Done = primary solid */
    #dateModal .actions .done {
      background: #111;
      color: #fff;
      border: 1px solid #111;
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: filter .2s ease, transform .06s ease;
    }

    #dateModal .actions .done:hover {
      filter: brightness(1.06);
    }

    #dateModal .actions .done:active {
      transform: translateY(1px);
    }

    /* ==== Calendar header spacing fix ==== */
    #dateModal .cal header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      position: relative;
      padding: 18px 0 10px;
      border-bottom: 1px solid #eee;
    }

    #dateModal .cal h4#monthLabel {
      margin-top: 6px;
      /* tambahan ruang ekstra */
      margin-bottom: 4px;
      font-family: "Spectral", serif;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.04em;
      color: #111;
      text-transform: uppercase;
      transition: opacity .25s ease;
    }

    /* Tombol kiri-kanan */
    #dateModal .navbtn {
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: rgba(17, 17, 17, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .25s ease, transform .15s ease;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    #dateModal #prev {
      left: 18px;
    }

    #dateModal #next {
      right: 18px;
    }

    #dateModal .navbtn::before {
      content: "";
      width: 10px;
      height: 10px;
      border-top: 2px solid #111;
      border-right: 2px solid #111;
      transform: rotate(225deg);
      display: block;
    }

    #dateModal #next::before {
      transform: rotate(45deg);
    }

    #dateModal .navbtn:hover {
      background: #111;
    }

    #dateModal .navbtn:hover::before {
      border-color: #fff;
    }

    #dateModal .navbtn:active {
      transform: translateY(-50%) scale(0.94);
    }

    #dateModal .cal #calendarGrid {
      transition: opacity .25s ease;
    }

    #dateModal .cal.switching #calendarGrid {
      opacity: 0;
    }

    /* === FINAL FIX: Book Now di NAVBAR === */
    .header .nav-right .book {
      background: #cccaca !important;
      /* sama seperti di booking bar */
      color: #fff !important;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 35px;
      min-width: 200px;
      height: 40px;
      margin-left: 20px;
      cursor: pointer;
      transition: all 0.25s ease;
      border: none !important;
    }

    /* Hover effect */
    .header .nav-right .book:hover {
      background: #000 !important;
      color: #fff !important;
    }

    /* Saat navbar scroll tetap sama */
    .header.scrolled .nav-right .book {
      background: #cccaca !important;
      color: #fff !important;
    }

    .header.scrolled .nav-right .book:hover {
      background: #000 !important;
      color: #fff !important;
    }

    /* Sembunyikan di desktop */
    .booking-mobile {
      display: none !important;
    }

    /* FAB Booking */
    .fab-booking {
      display: none;
      position: fixed;
      bottom: 18px;
      right: 85px;
      width: 54px;
      height: 54px;
      border: none;
      border-radius: 50%;
      background-color: #000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 1001;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
    }

    .fab-booking img {
      width: 18px;
      height: 18px;
    }

    .fab-booking:hover {
      transform: scale(1.05);
    }

    /* Popup overlay */
    .fab-popup {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .fab-popup.active {
      display: flex;
    }

    /* ==== Booking Bar langsung tanpa card ==== */
    .popup-booking {
      position: relative;
      background: #fff;
      width: 90%;
      max-width: 400px;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
      box-sizing: border-box;
      text-align: left;
      animation: popupFade 0.25s ease-out;
    }

    /* Tombol close di kanan atas */
    .close-popup {
      position: absolute;
      top: 10px;
      right: 12px;
      background: none;
      border: none;
      font-size: 28px;
      color: #333;
      cursor: pointer;
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .booking-wrap:not(.popup-booking) {
        display: none;
      }

      .fab-booking {
        display: flex;
      }
    }

    @media (min-width: 769px) {

      .fab-booking,
      .fab-popup {
        display: none !important;
      }
    }


    /* ==== HEADER ==== */
    .header {
      height: 64px;
      /* kurangi tinggi header */
      padding: 0 12px;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      background: rgba(255, 255, 255, var(--nav-alpha));
      -webkit-backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
      backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
    }

    /* Logo utama (Trans Hotel Jakarta) */
    .logo img {
      height: 30px;
      /* perkecil logo utama */
      object-fit: contain;
    }

    /* Logo corp (THG) */
    .corp-logo-wrap {
      width: 60px;
      height: 32px;
    }

    /* Spasi antar logo & hamburger */
    .nav-right {
      gap: 6px;
    }

    /* ==== HERO ==== */
    .hero {
      position: relative;
      width: 100%;
      height: auto;
      /* ikuti tinggi video */
      overflow: hidden;
      background: #000;
    }

    .hero video,
    .hero .poster {
      position: relative;
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      /* tidak zoom */
      object-position: center;
      background-color: #000;
    }

    .hero .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.1) 0%,
          rgba(0, 0, 0, 0.7) 90%);
      z-index: 1;
    }

    /* Headline dan teks hero */
    .hero-inner {
      position: absolute;
      bottom: 8%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: 90%;
      color: #fff;
      z-index: 2;
      padding: 0 16px;
    }

    .kicker {
      font-size: 10px;
      letter-spacing: 0.15em;
      margin-bottom: 6px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .headline {
      font-size: clamp(15px, 3vw, 25px);
      line-height: 1.25;
      font-style: italic;
      font-weight: 500;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
    }

    /* Hilangkan ruang hitam di bawah hero */
    body {
      background-color: #000;
    }

    .hero+section {
      margin-top: 0;
      padding-top: 0;
    }

    @media (max-width: 480px) {
      .header {
        height: 56px;
        /* lebih ramping di HP kecil */
      }

      .logo img {
        height: 32px;
      }

      .corp-logo-wrap {
        width: 60px;
        height: 32px;
      }

      .hero-inner {
        bottom: 6%;
      }

      .headline {
        font-size: 18px;
      }

      .kicker {
        font-size: 9px;
      }
    }

    /* ===== WRAPPER ===== */
    .nav-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 100vw;
      overflow: hidden;
      padding: 0;
    }

    /* ===== NAV CENTER ===== */
    .nav-center {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scrollbar-width: none;
      cursor: grab;

      /* batas lebar agar tetap di tengah layar */
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .nav-center::-webkit-scrollbar {
      display: none;
    }

    /* ===== MENU ===== */
    .menu {
      list-style: none;
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      white-space: nowrap;
      user-select: none;
      gap: clamp(12px, 1.2vw, 20px);
      margin: 0 auto;
      padding: 0;
      justify-content: center;
    }

    .menu>li {
      flex: 0 0 auto;
    }

    .menu>li>a {
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: clamp(11px, 1vw, 13px);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      height: var(--nav-h, 48px);
      padding: 0 6px;
      opacity: 0.95;
      transition: opacity 0.2s, background-size 0.26s ease;
      background-image: linear-gradient(currentColor, currentColor);
      background-size: 0% 1px;
      background-repeat: no-repeat;
      background-position: 0 100%;
    }

    .menu>li>a:hover {
      background-size: 100% 1px;
      opacity: 1;
    }

    /* ===== PANAH (KIRI / KANAN) ===== */
    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      padding: 0;
      width: 80px;
      /* lebih lebar untuk area klik */
      height: 60px;
      color: rgba(255, 255, 255, 0.9);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease, color 0.3s ease;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
    }

    .nav-wrapper:hover .nav-arrow {
      opacity: 1;
      visibility: visible;
    }

    .nav-arrow:hover {
      color: #fff;
    }

    /* Posisi panah di luar area menu tengah */
    .nav-arrow.left {
      left: 0;
      justify-content: flex-start;
      padding-left: 20px;
    }

    .nav-arrow.right {
      right: 0;
      justify-content: flex-end;
      padding-right: 20px;
    }

    /* Bentuk chevron */
    .nav-arrow::before {
      content: '';
      display: block;
      width: 14px;
      height: 14px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
    }

    .nav-arrow.left::before {
      transform: rotate(-135deg);
    }

    /* Efek fade di kiri/kanan */
    .nav-center::before,
    .nav-center::after {
      content: "";
      position: sticky;
      top: 0;
      width: 100px;
      height: 100%;
      pointer-events: none;
      z-index: 5;
    }

    .nav-center::before {
      left: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    }

    .nav-center::after {
      right: 0;
      background: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
    }

    /* Hilangkan panah di mobile */
    @media (max-width: 768px) {
      .nav-wrapper {
        display: none;
      }
    }

    /* === HEADER GRID FIX === */
    .header {
      display: grid !important;
      grid-template-columns: auto 1fr auto;
      /* kiri | tengah | kanan */
      align-items: center;
      justify-content: center;
      height: var(--nav-h);
      padding: 0 clamp(20px, 4vw, 56px);
      background: rgba(255, 255, 255, var(--nav-alpha));
      -webkit-backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
      backdrop-filter: blur(calc(var(--nav-alpha) * 16px));
      border-bottom: 1px solid rgba(232, 232, 232, var(--nav-alpha));
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
    }

    /* === KIRI: LOGO === */
    .logo {
      justify-self: start;
      display: flex;
      align-items: center;
    }

    /* === TENGAH: MENU NAV === */
    .nav-center {
      justify-self: center;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scrollbar-width: none;
      min-width: 0;
      width: 100%;
      max-width: 900px;
      white-space: nowrap;
    }

    .nav-center::-webkit-scrollbar {
      display: none;
    }

.nav-center {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.nav-center::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}


    /* === KANAN: CTA, BAHASA, LOGO GRUP === */
    .nav-right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    /* === MENU STYLE === */
    .menu {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      white-space: nowrap;
      gap: clamp(10px, 1.4vw, 20px);
      margin: 0 auto;
      padding: 0;
    }

    .menu>li>a {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: clamp(11px, 1vw, 13px);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      height: var(--nav-h);
      padding: 0 4px;
      opacity: 0.95;
      transition: opacity 0.2s, background-size 0.26s ease;
      background-image: linear-gradient(currentColor, currentColor);
      background-size: 0% 1px;
      background-repeat: no-repeat;
      background-position: 0 100%;
    }

    .menu>li>a:hover {
      background-size: 100% 1px;
      opacity: 1;
    }

    /* === BOOK NOW BUTTON FIX === */
    .nav-cta,
    .header .nav-right .book {
      background: #cccaca !important;
      color: #fff !important;
      font-size: 13px !important;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 25px;
      min-width: 120px !important;
      height: 34px !important;
      padding: 0 14px !important;
      margin-left: 12px !important;
      border: none !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .nav-cta:hover,
    .header .nav-right .book:hover {
      background: #000 !important;
      color: #fff !important;
    }
  