: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);
    }

    .header.header-solid {
      color: var(--ink);
      background: #fff;
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      box-shadow: var(--shadow-1);
    }

    .header.header-solid .brand-swap .white,
    .header.header-solid.scrolled .brand-swap .white {
      opacity: 0;
    }

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

    .header.header-solid .corp-logo.white {
      opacity: 0;
    }

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

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

    .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;
    }

    .menu>li>a.is-active,
    .menu>li>a[aria-current="page"],
    .mnav-list a.is-active,
    .mnav-list a[aria-current="page"] {
      background-size: 100% 1px;
      opacity: 1;
      text-decoration: none;
    }

    .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: 36px;
      padding: 0 10px;
      background: transparent;
      color: inherit;
      border: 1px solid currentColor;
      border-radius: 6px !important;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.25s ease;
    }

    .lang-btn:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }

    .header.scrolled .lang-btn:hover {
      background: #111;
      color: #fff;
    }

    .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: 140px;
      z-index: 10000;
      overflow: hidden;
      border-radius: 6px !important;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.25s ease;
    }

    .lang-wrap.open .lang-menu {
      display: flex;
      pointer-events: auto;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-menu a {
      padding: 8px 12px;
      color: var(--ink);
      display: block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.2s ease;
    }

    .lang-menu a:hover {
      background: #111;
      color: #fff;
    }

    /* === SWITCH-STYLE LANGUAGE TOGGLE === */
    .lang-switch {
      display: inline-block;
      position: relative;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
    }

    .lang-toggle {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
      pointer-events: none;
    }

    .toggle-slider {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      width: 78px;
      height: 34px;
      padding: 0 8px;
      background: transparent;
      color: inherit;
      border: 1px solid currentColor;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      position: relative;
      transition: background-color .3s cubic-bezier(.22, 1, .36, 1), border-color .3s cubic-bezier(.22, 1, .36, 1), color .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1);
    }

    .lang-switch:hover .toggle-slider {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    }

    .lang-toggle:focus-visible + .toggle-slider {
      outline: 2px solid currentColor;
      outline-offset: 2px;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
    }

    .lang-opt {
      position: relative;
      z-index: 1;
      line-height: 1;
      transition: color .3s cubic-bezier(.22, 1, .36, 1), opacity .3s cubic-bezier(.22, 1, .36, 1);
      opacity: .9;
    }

    .lang-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 28px;
      height: 26px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
      transition: transform .34s cubic-bezier(.22, 1, .36, 1), box-shadow .28s cubic-bezier(.22, 1, .36, 1);
      z-index: 0;
    }

    .lang-switch:active .lang-thumb {
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .lang-opt-en {
      color: #111;
    }

    .lang-opt-id {
      color: currentColor;
      opacity: .7;
    }

    .lang-toggle:checked + .toggle-slider .lang-thumb {
      transform: translateX(42px);
    }

    .lang-switch:active .lang-toggle:checked + .toggle-slider .lang-thumb {
      transform: translateX(41px);
    }

    .lang-switch:active .lang-toggle:not(:checked) + .toggle-slider .lang-thumb {
      transform: translateX(1px);
    }

    @media (max-width: 768px) {
      .toggle-slider {
        transition: background-color .34s cubic-bezier(.22, 1, .36, 1), border-color .34s cubic-bezier(.22, 1, .36, 1), color .34s cubic-bezier(.22, 1, .36, 1), box-shadow .34s cubic-bezier(.22, 1, .36, 1);
      }

      .lang-thumb {
        transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .32s cubic-bezier(.22, 1, .36, 1);
      }
    }

    .lang-toggle:checked + .toggle-slider .lang-opt-en {
      color: #111;
      opacity: 0.5;
    }

    .lang-toggle:checked + .toggle-slider .lang-opt-id {
      color: #fff;
      opacity: 1;
    }

    .lang-toggle:not(:checked) + .toggle-slider .lang-opt-en {
      color: #fff;
      opacity: 1;
    }

    .lang-toggle:not(:checked) + .toggle-slider .lang-opt-id {
      color: currentColor;
      opacity: 0.7;
    }

    .header:not(.scrolled) .toggle-slider {
      color: #fff;
    }

    .header:not(.scrolled) .lang-toggle:checked + .toggle-slider .lang-opt-en {
      color: #fff;
      opacity: 0.6;
    }

    .header:not(.scrolled) .lang-toggle:checked + .toggle-slider .lang-opt-id {
      color: #111;
      opacity: 1;
    }

    .header:not(.scrolled) .lang-toggle:not(:checked) + .toggle-slider .lang-opt-en {
      color: #111;
      opacity: 1;
    }

    .header.scrolled .toggle-slider {
      color: #111;
    }

    .header.scrolled .lang-toggle:checked + .toggle-slider .lang-opt-en {
      color: #111;
      opacity: 0.5;
    }


    .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);
    }

    @keyframes ctaShimmer {
      0% {
        background-position: -160% 0;
      }

      70%,
      100% {
        background-position: 280% 0;
      }
    }

    .nav-cta {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 26px;
      height: 42px;
      border-radius: 999px;
      background: #111;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.07);
      transition: box-shadow 0.38s ease, border-color 0.38s ease,
        opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
      min-width: 160px;
      margin: 0 0 0 16px;
      cursor: pointer;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-4px);
      text-decoration: none;
    }

    .nav-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg,
          transparent 32%,
          rgba(184, 164, 122, 0.28) 50%,
          transparent 68%);
      background-size: 260% 100%;
      animation: ctaShimmer 4.2s ease-in-out infinite;
      border-radius: inherit;
      pointer-events: none;
    }

    .nav-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #c9aa7c 0%, #8d6b3c 100%);
      border-radius: inherit;
      transform: translateY(106%);
      transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
      z-index: 0;
    }

    .nav-cta>* {
      position: relative;
      z-index: 1;
    }

    .header.scrolled .nav-cta {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      color: #fff;
      background: #111;
      border-color: rgba(255, 255, 255, 0.16);
    }

    .header.header-solid .nav-cta,
    .header.header-solid.scrolled .nav-cta {
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      transform: translateY(0);
      background: #111 !important;
      border-color: rgba(255, 255, 255, 0.16) !important;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    }

    .nav-cta:hover::after {
      transform: translateY(0);
    }

    .nav-cta:hover::before {
      animation: none;
      opacity: 0;
    }

    .nav-cta:hover {
      border-color: rgba(184, 164, 122, 0.48);
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    @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 {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    .hero .overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.42),
          rgba(0, 0, 0, 0.64));
    }

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

    .hero video.show {
      opacity: 1;
      z-index: 1;
    }

    .hero .poster {
      z-index: 0;
    }

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

    /* 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.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-style: italic;
      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 (desktop/default) ===== */
    .art-slider {
      position: relative;
    }

    /* konteks posisi */
    .art-viewport {
      position: relative;
      z-index: 1;
    }

    /* gambar di bawah tombol */

    .art-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.934);
      border: 1px solid rgba(214, 195, 138, .35);
      backdrop-filter: blur(6px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
      color: #d6c38a;
      cursor: pointer;
      transition: transform .25s, background .25s, opacity .25s;
      z-index: 9;
      opacity: .95;
    }

    .art-nav:hover {
      background: rgb(0, 0, 0);
      transform: translateY(-50%) scale(1.05);
    }

    .art-prev {
      left: 12px;
    }

    .art-next {
      right: 12px;
    }

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

    /* =========================================
   THE ART OF STAY — ARROWS (DROP-IN REPLACE)
   ========================================= */

    /* pastikan slider jadi konteks posisi utk tombol */
    .art-slider {
      position: relative;
    }

    /* viewport di bawah panah, jaga agar tidak menutupi */
    .art-viewport {
      position: relative;
      z-index: 1;
      cursor: default;
      touch-action: pan-y;
    }

    /* ===== Navigation (Desktop & Default) ===== */
    .art-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.934);
      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: 7;
      /* di atas gambar */
      opacity: 0.95;
    }

    .art-nav:hover {
      background: rgb(0, 0, 0);
      transform: translateY(-50%) scale(1.05);
    }

    .art-prev {
      left: 12px;
    }

    .art-next {
      right: 12px;
    }

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

    /* ===== MOBILE (≤768px): panah di pinggir gambar, posisi lebih atas ===== */
    @media (max-width: 768px) {
      .art-slider {
        position: relative !important;
        overflow: visible !important;
      }

      .art-nav {
        position: absolute !important;
        top: calc(35%) !important;
        /* sedikit lebih atas dari tengah */
        transform: translateY(-50%) !important;
        width: 52px !important;
        height: 52px !important;
        border-radius: 14px;
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(214, 195, 138, 0.45);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        opacity: 1;
        z-index: 9999 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto !important;
        transition: transform 0.25s ease, background 0.25s ease;
      }

      .art-nav svg {
        width: 26px;
        height: 26px;
        color: #d6c38a;
        pointer-events: none;
      }

      .art-prev {
        left: max(8px, env(safe-area-inset-left, 0px)) !important;
      }

      .art-next {
        right: max(8px, env(safe-area-inset-right, 0px)) !important;
      }

      .art-nav:active {
        transform: translateY(-50%) scale(0.94);
        background: rgba(18, 18, 18, 0.8);
      }

      .art-nav::after {
        content: "";
        position: absolute;
        inset: -10px;
      }
    }


    /* ===== 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;
    }

    #suiteDetails ul {
      padding-left: 15px;
    }


    .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;
      }
    }

    /* === Suite Gallery Progress Bar === */
    .suite-progress {
      position: relative;
      width: 100%;
      height: 4px;
      margin-top: 16px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 3px;
      overflow: hidden;
      backdrop-filter: blur(4px);
    }

    .suite-progress-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #d6c38a 0%, #f9f3c2 100%);
      border-radius: 3px;
      transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 0 0 8px rgba(214, 195, 138, 0.6);
    }

    /* Subtle animation when appearing */
    @keyframes progressReveal {
      from {
        opacity: 0;
        transform: scaleX(0.8);
      }

      to {
        opacity: 1;
        transform: scaleX(1);
      }
    }

    .suite-progress {
      animation: progressReveal 0.5s ease forwards;
    }

    /* Responsive — thinner bar on mobile */
    @media (max-width: 768px) {
      .suite-progress {
        height: 3px;
        margin-top: 12px;
      }
    }

    /* MEETINGS */
    #meetings {
      background: var(--ivory);
      text-align: center;
      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.25s 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.35s 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;
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .30);
      /* lapisan gelap tipis di atas foto */
    }

    /* 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: block;
      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;
    }

    /* shell untuk center panel dan memberi padding atas-bawah */
    .venue-modal .modal-shell {
      position: fixed;
      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;
    }

    .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;
    }

    /* 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;
      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 */
    .venue-image-wrap {
      position: relative;
      width: 100%;
      max-width: 560px;
      flex: 0 1 560px;
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }

    .venue-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      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 (match reference) ===== */
    #offers {
      background: #fff;
      padding: 80px clamp(16px, 5vw, 56px);
      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: var(--font-serif);
      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;
    }

    #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);
      }
    }

    #offers .offers-slider {
      position: relative;
      padding: 0 56px;
    }

    #offers .offers-viewport {
      overflow: hidden;
    }

    #offers .offers-track {
      --offers-gap: 20px;
      display: flex;
      gap: var(--offers-gap);
      transition: transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    #offers .offers-slider .offer {
      width: 100%;
      flex: 0 0 auto;
    }

    @media (min-width: 860px) {
      #offers .offers-slider .offer {
        width: calc((100% - (var(--offers-gap) * 2)) / 3);
      }
    }

    #offers .offers-prev,
    #offers .offers-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: #333;
      border: 0;
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      cursor: pointer;
      z-index: 3;
      padding: 0;
    }

    #offers .offers-prev {
      left: 0;
    }

    #offers .offers-next {
      right: 0;
    }

    @media (max-width: 859px) {
      #offers .offers-slider {
        padding: 0 44px;
      }
    }

    #offers .offer {
      position: relative;
      height: clamp(360px, 52vw, 520px);
      overflow: hidden;
      border: none;
      box-shadow: none;
      outline: 1px solid rgba(0, 0, 0, .08);
      background: #0f0f10;
      isolation: isolate;
      cursor: pointer;
    }

    #offers .offer .media {
      position: absolute;
      inset: 0;
      background-image: var(--img);
      background-size: cover;
      background-position: center top;
      transform: none;
      transition: filter .6s ease;
      will-change: 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: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      text-align: left;
      padding: clamp(16px, 2.4vw, 24px);
      color: #fff;
    }

    #offers .offer .label {
      position: absolute;
      top: clamp(16px, 2.4vw, 24px);
      left: clamp(16px, 2.4vw, 24px);
      margin: 0;
      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: flex-start;
      margin: 0;
      line-height: 1.08;
      text-align: left;
      text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
    }

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

    #offers .offer h3 .script {
      display: block;
      font-family: var(--font-serif);
      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: flex-start;
      max-width: 100%;
      width: 100%;
      text-align: left;
      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;
    }

    #offers .offer .cta {
      display: flex;
      gap: 10px;
      margin-top: 14px;
      width: 100%;
      flex-wrap: wrap;
    }

    #offers .offer .cta .btn {
      flex: 1 1 auto;
      min-height: 42px;
      padding: 10px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.85);
      background: transparent;
      color: #fff;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

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

    #offers .offer .cta .btn:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }

    #offers .offer .cta .btn.solid:hover {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    #offers .offer .offer-detail {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: none;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(16px, 2.4vw, 24px);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.88) 72%);
      color: #fff;
      overflow-y: auto;
    }

    #offers .offer.is-expanded {
      cursor: default;
    }

    #offers .offer.is-expanded .offer-detail {
      display: flex;
    }

    #offers .offer.is-expanded .copy {
      visibility: hidden;
      pointer-events: none;
    }

    #offers .offer .offer-detail-text {
      font-size: 13px;
      line-height: 1.7;
      color: #f2f2f2;
      margin-bottom: 12px;
    }

    #offers .offer .offer-detail-text p {
      margin: 0 0 10px;
    }

    #offers .offer .offer-detail-text ul {
      margin: 0;
      padding-left: 18px;
    }

    #offers .offer .offer-detail-link {
      align-self: flex-start;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: underline;
      cursor: pointer;
      padding: 0;
    }

    @media (max-width: 768px) {
      #offers .offer {
        height: clamp(300px, 84vw, 420px);
      }

      #offers .offers-head h2 {
        font-size: 34px !important;
        line-height: 1.12 !important;
      }

      #offers .offer h3 .up {
        font-size: 20px !important;
        line-height: 1.08 !important;
      }

      #offers .offer h3 .script {
        font-size: 28px !important;
        line-height: 1 !important;
        margin-top: 2px !important;
      }

      #offers .offer .desc {
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
      }

      #offers .offer .copy {
        padding: 14px !important;
      }
    }

    #offers .offer:hover .media {
      filter: saturate(1.08) contrast(1);
    }

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

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


    /* ===== GALLERY — Editorial Modern (no card, no radius) ===== */
    #gallery {
      background: #fff;
      color: #1f1f1f;
      text-align: center;
    }

    /* ===== HEADING ===== */
    #gallery h2 {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.06;
      margin: 22px auto 6px;
      position: relative;
      display: inline-block;
    }

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

    /* ===== FILTER BUTTONS ===== */
    #gallery .filters {
      --gap: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: var(--gap);
      justify-content: center;
      margin: 0 0 clamp(22px, 3.2vw, 34px);
    }

    /* ===== SUBMENU STYLES ===== */
    #gallery .sub-menu button.active {
      background: #111;
      color: #fff;
    }


    #gallery .filter-group {
      position: relative;
    }

    #gallery .filter-group .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      display: flex;
      flex-direction: column;
      min-width: 180px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: all 0.25s ease;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
      border-radius: 0;
      z-index: 10;
    }

    #gallery .filter-group:hover .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    #gallery .sub-menu button {
      background: none;
      border: none;
      text-align: left;
      padding: 10px 16px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #222;
      transition: background 0.2s ease, color 0.2s ease;
    }

    #gallery .sub-menu button:hover {
      background: #111;
      color: #fff;
    }

    /* Modern minimal look */
    #gallery .filter-group>button {
      position: relative;
    }

    /* Hanya untuk tombol kategori utama (All, Rooms, Dining, Leisure, Events) */
    #gallery .filter-group>button::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    #gallery .filter-group>button:hover::after,
    #gallery .filter-group>button.active::after {
      transform: scaleX(1);
    }

    /* Hapus garis dari submenu agar bersih */
    #gallery .sub-menu button::after {
      content: none !important;
    }

    /* ==== GALLERY TOGGLE BUTTON (GLOBAL) ==== */
    #galMore {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 24px auto 0;
      padding: 8px 10px;
      border: none;
      background: none;
      cursor: pointer;
      font-size: 28px;
      color: #333;
      transition: opacity 0.3s ease;
      z-index: 10;
      position: relative;
    }

    #galMore:hover {
      opacity: 0.7;
    }

    #galMore svg {
      width: 28px;
      height: 28px;
      transition: transform 0.35s cubic-bezier(.19, 1, .22, 1);
      display: block;
    }

    #galMore svg path {
      stroke: currentColor;
      stroke-width: 2;
    }

    #galMore.active svg,
    #galMore.rot svg {
      transform: rotate(180deg);
    }

    /* ==== DESKTOP COLLAPSED MODE (tampilkan 6 foto pertama) ==== */
    #galGrid.collapsed .gal:nth-of-type(n+7) {
      display: none !important;
    }

    /* ===== MOBILE GALLERY (≤720px, full-width stacked, no caption) ===== */
    @media (max-width: 720px) {
      #gallery {
        padding: 48px 0 60px;
      }

      /* Layout vertikal */
      #gallery .gal-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        /* jarak antar foto */
        position: relative;
      }

      #gallery .gal {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        overflow: hidden;
      }

      #gallery .gal img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      /* Hapus teks/caption sepenuhnya */
      #gallery .gal figcaption {
        display: none !important;
      }

      /* Fade bawah lembut */
      #gallery .fade-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 140px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
        pointer-events: none;
        z-index: 2;
      }

      /* Tombol panah minimalis */
      #gallery #galMore svg {
        width: 24px;
        height: 24px;
      }

      /* Hilangkan fade saat expanded */
      #gallery .gal-grid.expanded+.fade-bottom {
        display: none;
      }

      /* ===== IMAGE VIEWER (Lightbox) dengan animasi slide elegan ===== */
      .image-viewer {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(6px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        overflow: hidden;
      }

      .image-viewer.active {
        display: flex;
        animation: fadeIn 0.3s ease;
      }

      .image-viewer img {
        max-width: 92%;
        max-height: 88vh;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 1;
      }

      .image-viewer .viewer-stage {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: min(100%, 1240px);
        padding: 0 84px;
      }

      .image-viewer .viewer-meta {
        position: fixed;
        left: 24px;
        bottom: 24px;
        display: inline-flex;
        flex-direction: column;
        gap: 6px;
        max-width: min(70vw, 420px);
        padding: 14px 18px;
        background: rgba(0, 0, 0, 0.58);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 18px;
        color: #fff;
        backdrop-filter: blur(8px);
        z-index: 10000;
      }

      .image-viewer .viewer-kicker {
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
      }

      .image-viewer .viewer-title {
        font-family: "Spectral", serif;
        font-size: clamp(22px, 2.6vw, 30px);
        line-height: 1.08;
      }

      /* Tombol tutup */
      .viewer-close {
        position: fixed;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10000;
      }

      /* Tombol navigasi */
      .viewer-nav {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10000;
        transition: background 0.25s ease, transform 0.25s ease;
      }

      .viewer-nav:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .viewer-prev {
        left: 20px;
      }

      .viewer-next {
        right: 20px;
      }

      .viewer-nav svg {
        width: 24px;
        height: 24px;
        stroke: #d6c38a;
      }

      .venue-modal .modal-panel img,
      #leisure .leisure-slide a,
      #leisure .leisure-slide img {
        cursor: zoom-in;
      }

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

        to {
          opacity: 1;
        }
      }

      .slide-in-right {
        transform: translateX(40px);
        opacity: 0;
      }

      .slide-in-left {
        transform: translateX(-40px);
        opacity: 0;
      }

      .slide-reset {
        transform: translateX(0);
        opacity: 1;
      }

      /* --- FIX SVG OVERRIDE FROM ELEMENTOR / GLOBAL STYLES --- */
      #imageViewer svg {
        width: 28px !important;
        height: 28px !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
        flex: 0 0 auto;
        display: block;
        stroke: currentColor;
        fill: none;
        pointer-events: none;
      }

      /* memastikan tombolnya tetap di tengah */
      #imageViewer button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      /* versi mobile lebih kecil */
      @media (max-width: 768px) {
        #imageViewer svg {
          width: 24px !important;
          height: 24px !important;
        }

        .image-viewer {
          padding: 18px;
        }

        .image-viewer .viewer-stage {
          width: 100%;
          padding: 0 56px;
        }

        .image-viewer img {
          max-width: 100%;
          max-height: 76vh;
        }

        .image-viewer .viewer-meta {
          left: 16px;
          right: 16px;
          bottom: 16px;
          max-width: none;
          padding: 12px 14px;
          border-radius: 16px;
        }

        .viewer-close {
          top: 14px;
          right: 14px;
        }

        .viewer-nav {
          width: 44px;
          height: 44px;
        }

        .viewer-prev {
          left: 12px;
        }

        .viewer-next {
          right: 12px;
        }
      }



    }


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

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

    /* ===== GRID BASE — Desktop: 3 Columns ===== */
    #gallery .gal-grid {
      --gap: 16px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap);
      overflow: hidden;
      transition: max-height 0.55s cubic-bezier(.19, 1, .22, 1), opacity 0.35s ease;
    }

    /* ===== GALLERY ITEM ===== */
    #gallery .gal {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

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

    /* Hover effect */
    #gallery .gal:hover img {
      transform: scale(1.03);
      filter: contrast(1.05) saturate(1.05);
    }

    /* ===== CAPTION (Desktop hover only) ===== */
    #gallery .gal figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px 14px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
      color: #fff;
      font-size: 13px;
      letter-spacing: 0.04em;
      transform: translateY(8px);
      opacity: 0;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

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

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

    /* Item yang disembunyikan oleh limit JS (lebih stabil saat filter aktif) */
    #gallery .gal.is-hidden-by-limit {
      display: none !important;
    }

    /* ===== LOAD MORE (Collapsed default) ===== */
    #gallery .gal-grid.collapsed {
      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;
    }

    /* ===== LOAD MORE BUTTON ===== */
    #gallery #galMore {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 24px auto 0;
      padding: 8px 10px;
      border: none;
      background: none;
      cursor: pointer;
      font-size: 28px;
      color: #333;
      transition: opacity 0.3s ease;
    }

    #gallery #galMore:hover {
      opacity: 0.7;
    }

    #gallery #galMore svg {
      width: 28px;
      height: 28px;
      transition: transform 0.35s cubic-bezier(.19, 1, .22, 1);
      display: block;
    }

    #gallery #galMore svg path {
      stroke: currentColor;
      stroke-width: 2;
    }

    #gallery #galMore.active svg,
    #gallery #galMore.rot svg {
      transform: rotate(180deg);
    }

    /* ===== GALLERY FILTER SUBMENU FIX ===== */
    #gallery .filter-group {
      position: relative;
    }

    #gallery .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      display: none;
      flex-direction: column;
      background: #fff;
      border: 1px solid #ddd;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
      z-index: 999;
    }

    #gallery .filter-group.open>.sub-menu {
      display: flex;
    }

    #gallery .sub-menu button {
      display: block;
      padding: 8px 14px;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
    }


    /* ===== 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;
      position: relative;
      z-index: 1;
    }

    .promo-modal .img-wrap {
      width: 100%;
      max-width: min(92vw, 505px);
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      aspect-ratio: 1 / 1;
    }

    .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 .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;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: clamp(12px, 4vw, 24px);
      box-sizing: border-box;
    }

    /* 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 — Structured Template */
    .cookiebar {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 16px;
      z-index: 1800;
      pointer-events: auto;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 0 !important;
      box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
      padding: 14px 18px;
      display: none;
      gap: 16px;
      align-items: flex-start;
      justify-content: space-between;
      font-size: 12px;
      max-width: min(92vw, 720px);
      width: 100%;
    }

    .cookiebar .cookie-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .cookiebar .cookie-header {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-bottom: 2px;
    }

    .cookiebar .cookie-kicker {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #6f747b;
      font-weight: 600;
    }

    .cookiebar .cookie-title {
      font-size: 13px;
      font-weight: 700;
      margin: 0;
      color: #1b1d1f;
      letter-spacing: 0.02em;
    }

    .cookiebar .cookie-desc {
      font-size: 12px;
      line-height: 1.5;
      color: #3b3f45;
    }

    .cookiebar .fulltxt {
      display: block;
    }

    .cookiebar .shorttxt {
      display: none;
    }

    .cookiebar a {
      color: #111;
      text-decoration: underline;
      cursor: pointer;
    }

    .cookiebar a:hover {
      opacity: 0.7;
    }

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

    .cookiebar button {
      height: 36px;
      padding: 0 14px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 0 !important;
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .cookiebar button:hover {
      background: #f6f6f6;
    }

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

    .cookiebar .accept:hover {
      background: #000 !important;
    }

    .cookiebar .decline {
      color: #111;
    }

    @media (max-width: 760px) {
      .cookiebar {
        flex-direction: column;
        padding: 12px 14px;
        gap: 12px;
        align-items: stretch;
      }

      .cookiebar .cookie-wrap {
        order: 1;
      }

      .cookiebar .actions {
        order: 2;
        width: 100%;
      }

      .cookiebar .fulltxt {
        display: block;
      }

      .cookiebar .shorttxt {
        display: none;
      }

      .cookiebar .actions button {
        flex: 1;
        font-size: 10px;
      }
    }

    @media (max-width: 480px) {
      .cookiebar {
        padding: 10px 12px;
        gap: 10px;
      }

      .cookiebar .cookie-kicker {
        font-size: 9px;
      }

      .cookiebar .cookie-title {
        font-size: 12px;
      }

      .cookiebar .cookie-desc {
        font-size: 11px;
      }

      .cookiebar .actions button {
        height: 32px;
        padding: 0 10px;
        font-size: 10px;
      }
    }

    @media (min-width: 761px) {
      .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;
    }

    /* Pastikan overlay lain tidak memblokir klik */
    #progress {
      pointer-events: 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: #fff;
      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: var(--font-serif);
      font-style: italic;
      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;
    }

    /* 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: center;
      /* <— 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: none;
      background: transparent;
      color: var(--ink);
      font-family: var(--font-sans);
      font-style: italic;
      font-weight: 700;
      font-size: clamp(14px, 1.4vw, 16px);
      padding: 10px 4px;
      height: 44px;
      line-height: 1;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      transition: opacity .25s ease, color .25s ease;
    }

    #subscribe .sub-btn:hover {
      opacity: 0.72;
      background: transparent;
      color: var(--ink);
    }

    /* 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);
      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-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.video-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: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: none !important;
    }

    .field .ico img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
    }

    .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: 14px;
      font-weight: 600;
      border: none;
      background: none;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #111;
    }

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

    .counter button i {
      font-size: 10px;
      width: 10px;
      height: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

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

    .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: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 35px;
      min-width: 140px;
      height: 36px;
      margin: 0 0 0 12px;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      border: 1px solid #cccaca;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .book::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .book:hover {
      background: #000;
      color: #fff;
      border-color: #000;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .book:hover::before {
      opacity: 1;
    }

    .book:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    @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: 18px;
      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(18px, 20vw, 35px);
      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: 35px;
        max-width: 700px;
      }

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

      .headline {
        font-size: clamp(20px, 25vw,
            30px);
        line-height: 1.15;
      }
    }

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

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

      .headline {
        font-size: 20px;
        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;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    #dateRangeBtn .ico img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
    }

    #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 {
      background-color: #fff !important;
      text-align: center;
      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;
      object-fit: contain;
    }

    .integrated img.ico {
      width: 90px;
      height: 40px;
      margin-top: 4px;
      object-fit: contain;
    }

    .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;
      }

      .integrated img.ico {
        width: 40px;
        height: 45px;
        margin-top: 4px;
      }
    }

    /*=====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;
      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;
    }

    .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;
      }
    }

    /* === REQUEST FORM BUTTON (CTA) === */
    .modal-cta-wrap {
      margin-top: 28px;
      text-align: center;
    }

    .open-req {
      background: #111;
      color: #fff;
      border: 1px solid #111;
      padding: 12px 26px;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
      border-radius: 0;
    }

    .open-req:hover {
      background: transparent;
      color: #111;
    }


    /*=====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;
    }

    /* 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);
      max-height: none !important;
    }

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

    /* === FLOATING CLOSE BUTTON === */
    .venue-modal.open .close {
      position: fixed !important;
      top: 14px !important;
      right: 14px !important;
      z-index: 4 !important;
      line-height: 1;
      padding: 6px 10px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 999px;
      transition: background .2s, color .2s;
    }

    .venue-modal.open .close:hover {
      opacity: .8;
      background-color: #000;
      color: #fff;
    }


    /* 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;
      overflow-y: auto !important;
      /* biar bisa scroll konten modal */
      -webkit-overflow-scrolling: touch !important;
      /* biar lancar di iPhone/iPad */
      overscroll-behavior: contain;
      touch-action: pan-y;
    }

    .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;
    }

    /* ==========================================
   5★ HOTEL EVENT REQUEST FORM — LUXE MODERN UI
   ========================================== */

    .req-form {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 12000;
      background:
        radial-gradient(circle at top right, rgba(193, 164, 95, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(8, 8, 8, 0.9), rgba(20, 20, 20, 0.74));
      backdrop-filter: blur(10px) saturate(140%);
      -webkit-backdrop-filter: blur(10px) saturate(140%);
      padding: 24px;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0.36, 1);
    }

    .req-form.hidden {
      display: none !important;
    }

    /* === FORM CONTAINER === */
    .req-form-card {
      display: grid;
      grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
      gap: clamp(24px, 3vw, 42px);
      background: linear-gradient(180deg, #fff, #fbfaf7);
      width: 100%;
      max-width: min(1080px, 100%);
      min-height: min(86vh, 760px);
      border-radius: 28px;
      padding: clamp(32px, 4vw, 48px);
      font-family: var(--font-sans);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.22);
      margin: auto;
      box-sizing: border-box;
    }

    /* === DECORATIVE TOP BORDER === */
    .req-form-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, #c1a45f 0%, #000 100%);
    }

    .req-form-intro {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 22px;
      padding: clamp(24px, 3vw, 34px);
      border-radius: 22px;
      background:
        linear-gradient(160deg, rgba(17, 17, 17, 0.94), rgba(39, 31, 16, 0.92)),
        url('https://thetranshotelsurabaya.com/wp-content/uploads/2025/10/THE-TRANS-LUXURY-HOTEL-SURABAYA-Resize13_compressed_page-0028-scaled.jpg') center/cover;
      color: #fff;
      overflow: hidden;
    }

    .req-form-intro::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.22));
      pointer-events: none;
    }

    .req-form-intro>* {
      position: relative;
      z-index: 1;
    }

    .req-form-tag {
      display: inline-flex;
      width: fit-content;
      padding: 9px 14px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.78);
    }

    .req-form-intro h4 {
      margin: 0;
      font-family: "Spectral", serif;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 0.98;
      font-style: italic;
    }

    .req-form-intro p {
      margin: 0;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      font-size: 14px;
    }

    .req-form-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .req-form-meta div {
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .req-form-meta span {
      display: block;
      margin-bottom: 6px;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.66);
    }

    .req-form-meta strong {
      font-size: 14px;
      line-height: 1.4;
      color: #fff;
    }

    .req-form-main {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      padding-top: 8px;
    }

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

    /* === CLOSE BUTTON === */
    .req-form-card .close-popup {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(17, 17, 17, 0.1);
      background: rgba(17, 17, 17, 0.95);
      color: #fff;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0.9;
      transition: all 0.25s ease;
    }

    .req-form-card .close-popup:hover {
      opacity: 1;
      background: #fff;
      color: #111;
    }

    /* === HEADER === */
    .req-form-card h3 {
      font-family: "Spectral", serif;
      text-transform: uppercase;
      font-weight: 700;
      font-size: clamp(26px, 2.6vw, 34px);
      letter-spacing: 0.05em;
      color: #111;
      margin-bottom: 8px;
      margin-top: 0;
      max-width: 14ch;
    }

    .req-form-card p.sub {
      color: #666;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    /* === INPUTS === */
    .req-form-card input,
    .req-form-card select,
    .req-form-card textarea {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.15);
      background: rgba(255, 255, 255, 0.96);
      padding: 13px 15px;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 18px;
      border-radius: 14px;
      color: #111;
      transition: all 0.25s ease;
    }

    .req-form-card input::placeholder,
    .req-form-card textarea::placeholder {
      color: #999;
      font-family: var(--font-sans);
    }

    .req-form-card input:focus,
    .req-form-card select:focus,
    .req-form-card textarea:focus {
      border-color: #c1a45f;
      box-shadow: 0 0 0 3px rgba(193, 164, 95, 0.15);
      outline: none;
    }

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

    /* === CONSENT === */
    .req-form-card .consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #555;
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .req-form-card .consent input {
      accent-color: #111;
      width: 16px;
      height: 16px;
      margin-top: 3px;
    }

    /* === BUTTON === */
    .req-form-card .primary {
      display: block;
      width: 100%;
      background: linear-gradient(135deg, #111, #2f2413);
      color: #fff;
      border: 1px solid #111;
      padding: 15px 20px;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
      border-radius: 999px;
      transition: all 0.3s ease;
    }

    .req-form-card .primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 24px rgba(17, 17, 17, 0.18);
    }

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

      to {
        opacity: 1;
      }
    }

    /* === RESPONSIVE TWEAK === */
    @media (max-width: 480px) {
      .req-form-card {
        padding: 68px 18px 24px;
        border-radius: 20px;
        margin: 16px;
      }

      .req-form-card h3 {
        font-size: 20px;
      }
    }

    @media (max-width: 920px) {
      .req-form-card {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .req-form-intro {
        min-height: 240px;
      }
    }

    @media (max-width: 640px) {

      .field-grid,
      .req-form-meta {
        grid-template-columns: 1fr;
      }

      .req-form {
        align-items: flex-start;
        padding: 14px;
      }

      .req-form-card {
        width: 100%;
        margin: 0;
      }
    }

    /* Final hardening: request form must fully cover viewport and freeze underlying venue scroll */
    .req-form {
      position: fixed !important;
      inset: 0 !important;
      width: 100vw !important;
      min-height: 100dvh !important;
      overscroll-behavior: contain;
      touch-action: auto;
      box-sizing: border-box;
    }

    .req-form-card {
      max-width: min(1080px, 100%);
      width: min(1080px, 100%);
      max-height: min(92dvh, 960px);
      min-height: min(92dvh, 960px);
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 1100px) {
      .req-form {
        padding: 16px;
      }

      .req-form-card {
        grid-template-columns: 1fr;
        min-height: auto;
      }
    }

    .venue-modal.req-open,
    .venue-modal.req-open .modal-panel,
    html.req-lock,
    body.req-lock {
      overflow: hidden !important;
    }


    /*=====DESTINATION — Editorial Modern (no card, no radius)=====*/
    #nearby {
      background: #fff;
      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;
      inset: 0;
      display: none;
      z-index: 2600;
      pointer-events: none;
      padding: 0;
      margin: 0;
      border: 0;
      background: transparent;
    }

    #dateModal[hidden] {
      display: none !important;
    }

    #dateModal.open {
      display: block;
      pointer-events: none;
    }

    #dateModal .card {
      position: fixed;
      margin: 0;
      z-index: 1;
      pointer-events: auto;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
      width: min(520px, calc(100vw - 32px));
      max-height: calc(100vh - 32px);
      overflow: auto;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 16px;
    }

    #dateModal:not(.open) .card {
      visibility: hidden;
      pointer-events: none;
    }

    #dateModal .backdrop {
      display: none !important;
      pointer-events: 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;
    }

    /* 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;
    }

    /* Mobile polish (ukuran font & padding kalender sedikit lebih kecil) */
    @media (max-width: 1024px) {
      #dateModal.open .day {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.0rem;
        height: 1.0rem;
        border-radius: 8px;
        transition: background .15s ease, color .15s ease;
      }

      #dateModal .card {
        border-radius: 22px;
        width: min(100%, 390px);
        max-height: calc(100vh - 124px);
      }

      #dateModal .cal h4#monthLabel {
        font-size: 18px
      }

      #dateModal .day {
        width: 2rem;
        height: 2rem;
        border-radius: 6px
      }

      #dateModal .actions {
        padding: 10px 14px
      }

      #dateModal .cal header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        position: relative;
        padding: 10px 0 5px;
        border-bottom: 1px solid #eee;
      }

      #dateModal .grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
        padding: 10px 10px 5px;
      }

      #dateModal .actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 10px;
        border-top: 1px solid #eee;
      }

    }


    /* == Date modal selalu di atas popup, tapi tetap bisa di-klik */
    #fabPopup.active {
      z-index: 2500;
    }

    /* popup */
    #dateModal {
      z-index: 2600;
    }

    /* datepicker di atas popup */
    @media (min-width: 769px) {
      #dateModal .card {
        position: fixed !important;
      }
    }

    @media (max-width: 768px) {
      #dateModal .card {
        position: fixed !important;
        width: min(360px, calc(100vw - 32px)) !important;
      }
    }

    /* Desktop lebar mengikuti field */
    @media (min-width:1025px) {
      #dateModal.open .card {
        max-width: 520px;
        min-width: 320px;
      }
    }

    /* Mobile: versi kecil, muncul di atas booking popup */
    @media (max-width:1024px) {
      #fabPopup #dateModal {
        position: fixed;
        z-index: 2600;
      }

      #dateModal.open .card {
        max-width: 360px;
        min-width: 280px;
      }
    }

    /* Matikan animasi global modal yang bikin loncat */
    #dateModal.open {
      animation: none !important;
    }


    /* === 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: max(18px, env(safe-area-inset-bottom));
      left: 16px;
      min-width: 0;
      min-height: 0;
      padding: 12px 16px 12px 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: linear-gradient(135deg, #111, #8c6b32);
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
      cursor: pointer;
      z-index: 2601;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: #fff;
      overflow: hidden;
    }

    .fab-booking::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%);
      pointer-events: none;
    }

    .fab-booking__icon {
      position: relative;
      z-index: 1;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .fab-booking__copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.05;
      text-align: left;
    }

    .fab-booking__copy strong {
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .fab-booking__copy span {
      margin-top: 5px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.78);
    }

    .fab-booking img {
      width: 18px;
      height: 18px;
      filter: brightness(0) invert(1);
    }

    .fab-booking:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
    }

    /* Popup overlay */
    .fab-popup {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.68);
      z-index: 2600;
      justify-content: center;
      align-items: center;
      padding: 18px;
    }

    .fab-popup.active {
      display: flex;
    }

    /* ==== Booking Bar langsung tanpa card ==== */
    .popup-booking {
      position: relative;
      background: linear-gradient(180deg, #fff, #faf8f2);
      width: min(100%, 420px);
      border-radius: 28px;
      padding: 24px 18px 18px;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
      box-sizing: border-box;
      text-align: left;
      animation: popupFade 0.25s ease-out;
      border: 1px solid rgba(17, 17, 17, 0.06);
    }

    .popup-booking__head {
      padding: 4px 8px 18px;
    }

    .popup-booking__eyebrow {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(193, 164, 95, 0.14);
      color: #6a5324;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .popup-booking__head h3 {
      margin: 0 0 8px;
      font-family: "Spectral", serif;
      font-size: 28px;
      line-height: 1;
      font-style: italic;
      color: #111;
    }

    .popup-booking__head p {
      margin: 0;
      color: #69635a;
      line-height: 1.65;
      font-size: 13px;
    }

    /* Tombol close di kanan atas */
    .popup-booking>.close-popup {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(17, 17, 17, 0.06);
      border: 1px solid rgba(17, 17, 17, 0.08);
      font-size: 24px;
      color: #333;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* Tombol Book Now di popup mobile dibuat lebih aktif */
    .popup-booking .booking-bar .book,
    #mobileBookBtn {
      width: 100%;
      margin: 14px 0 2px;
      min-width: 0;
      height: 50px;
      border: 1px solid #b08a3c;
      border-radius: 999px;
      background: linear-gradient(135deg, #111 0%, #2a2a2a 38%, #c9a45c 100%);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      box-shadow: 0 12px 22px rgba(24, 24, 24, 0.25), 0 4px 10px rgba(201, 164, 92, 0.26);
      transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .popup-booking .booking-bar .book:hover,
    #mobileBookBtn:hover {
      transform: translateY(-1px);
      filter: brightness(1.06);
      box-shadow: 0 16px 28px rgba(24, 24, 24, 0.28), 0 6px 14px rgba(201, 164, 92, 0.3);
    }

    .popup-booking .booking-bar .book:active,
    #mobileBookBtn:active {
      transform: translateY(1px) scale(0.995);
      filter: brightness(0.96);
      box-shadow: 0 8px 14px rgba(24, 24, 24, 0.2);
    }

    .popup-booking .booking-bar .book:focus-visible,
    #mobileBookBtn:focus-visible {
      outline: 3px solid rgba(201, 164, 92, 0.45);
      outline-offset: 2px;
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .booking-wrap:not(.popup-booking) {
        display: none;
      }

      .fab-booking {
        display: flex;
        left: 16px;
        right: auto;
        bottom: max(16px, env(safe-area-inset-bottom));
      }

      .fab {
        position: fixed;
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        z-index: 2601;
      }

      .fab .btn {
        width: 44px;
        height: 44px;
      }

      .popup-booking {
        width: 100%;
        max-width: 100%;
      }
    }

    @media (min-width: 769px) {

      .fab-booking,
      .fab-popup {
        display: none !important;
      }
    }


    /* ==== HEADER (mobile) ==== */
    @media (max-width: 768px) {
    .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 (mobile — full-bleed cover for fast LCP) ==== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      min-height: 560px;
      overflow: hidden;
      background: #000;
    }

    .hero video,
    .hero .poster {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      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: 12%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: 90%;
      color: #fff;
      z-index: 2;
      padding: 0 16px;
    }

    .kicker {
      font-size: 18px;
      letter-spacing: 0.15em;
      margin-bottom: 6px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .headline {
      font-size: clamp(18px, 20vw, 35px);
      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: 27%;
        left: 50%;
      }

      .headline {
        font-size: 23px;
        max-width: 400px;
      }

      .kicker {
        font-size: 10px;
        gap: 5px;
      }
    }

    /* ===== NAV WRAPPER ===== */
    .nav-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 50vw;
      /* batasi agar masih ada ruang untuk logo & button kanan */
      margin: 0 auto;
      padding: 0;
      overflow: visible;
    }

    /* ===== NAV CENTER (scrollable area) ===== */
    .nav-center {
      display: flex;
      justify-content: center;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      scroll-behavior: smooth;
      scrollbar-width: none;
      flex: 1;
    }

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

    /* ===== MENU ITEMS ===== */
    .nav-center .menu {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      /* jarak antar item */
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .nav-center .menu li {
      display: inline-block;
    }

    .nav-center .menu a {
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      text-decoration: none;
      font-size: 13px;
      /* lebih kecil, rapi */
      letter-spacing: 0.05em;
      color: #1f1f1f;
      text-transform: uppercase;
      transition: color 0.25s ease;
      white-space: nowrap;
    }

    .nav-center .menu a:hover {
      color: #000;
      /* hover tetap hitam */
    }

    /* === WRAPPER LEVEL === */
    .nav-section {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* === NAV WRAPPER === */
    .nav-wrapper {
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      white-space: nowrap;
      flex: 1;
      text-align: center;
    }

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

    /* === NAV SECTION === */
    .nav-section {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* === AREA MENU === */
    .nav-wrapper {
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      white-space: nowrap;
      flex: 1;
      text-align: center;
    }

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

    /* === PANAH (KIRI / KANAN) === */
    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%) scale(0.9);
      background: none;
      border: none;
      width: 60px;
      height: 50px;
      color: rgba(0, 0, 0, 0.55);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.25s ease;
      z-index: 10;

      /* 🔒 Default hidden & non-clickable */
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    /* Posisi kiri-kanan */
    .nav-arrow.left {
      left: 25px;
      justify-content: flex-start;
    }

    .nav-arrow.right {
      right: 10px;
      justify-content: flex-end;
    }

    /* Bentuk chevron */
    .nav-arrow::before {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
    }

    .nav-arrow.left::before {
      transform: rotate(-135deg);
    }

    /* Hover style */
    .nav-arrow:hover {
      color: #000;
    }

    /* === TAMPIL SAAT HOVER DI NAV SECTION === */
    .nav-section:hover .nav-arrow {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(-50%) scale(1);
      pointer-events: auto !important;
    }

    /* Responsif */
    @media (max-width: 1024px) {
      .nav-arrow.left {
        left: -10px;
      }

      .nav-arrow.right {
        right: -10px;
      }
    }

    @media (max-width: 768px) {
      .nav-arrow {
        display: none !important;
      }
    }




    /* === 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);
      -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;
    }

    .nav-center::before,
    .nav-center::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 40px;
      pointer-events: none;
      background: linear-gradient(to right, rgba(0, 0, 0, .15), transparent);
      opacity: 0;
      transition: opacity .2s;
    }

    .nav-center::after {
      right: 0;
      transform: scaleX(-1);
    }

    .nav-center.has-left::before {
      opacity: .25;
    }

    .nav-center.has-right::after {
      opacity: .25;
    }



    /* === KANAN: CTA, BAHASA, LOGO GRUP === */
    .nav-right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 20px;
      white-space: nowrap;
    }

    /* === BOOK NOW BUTTON — match reference pill === */
    .nav-cta,
    .header .nav-right .book {
      position: relative;
      overflow: hidden;
      background: #111 !important;
      color: #fff !important;
      font-size: 11px !important;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      border-radius: 999px !important;
      min-width: 140px !important;
      height: 36px !important;
      padding: 0 22px !important;
      margin-left: 12px !important;
      border: 1px solid rgba(255, 255, 255, 0.16) !important;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.07);
      transition: box-shadow 0.38s ease, border-color 0.38s ease,
        opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    }

    .header:not(.scrolled) .nav-cta {
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
      transform: translateY(-4px);
    }

    .header.header-solid:not(.scrolled) .nav-cta,
    .header.header-solid .nav-cta {
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      transform: translateY(0);
    }

    .header.scrolled:not(.header-solid) .nav-cta,
    .header.scrolled .nav-cta {
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      transform: translateY(0);
      background: #111 !important;
    }

    .nav-cta:hover,
    .header .nav-right .book:hover {
      border-color: rgba(184, 164, 122, 0.48) !important;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
      transform: translateY(-1px);
      color: #fff !important;
    }

    #hero {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100vh;
    }

    #heroVideo {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      background-color: #000;
      /* fallback hitam bila video gagal load */
    }

    @media (max-width: 768px) {
      #heroVideo {
        object-fit: cover;
        height: 100vh;
      }
    }

    /* Pastikan menu mulai dari item 1 (The Hotel) & tidak terdorong */
    .header {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
    }


    /* Header solid saat scroll, tanpa efek gelap bocor ke section bawah */
    .header {
      background: rgba(255, 255, 255, var(--nav-alpha));
      backdrop-filter: blur(calc(var(--nav-alpha)*16px));
    }

    .header.scrolled {
      background: #fff;
      color: var(--ink);
      border-bottom: 1px solid var(--line);
    }

    .header.header-solid {
      background: #fff !important;
      color: var(--ink);
      border-bottom: 1px solid var(--line);
      --nav-alpha: 1;
    }

    /* === Fix anchor scroll offset for header === */
    #booking {
      scroll-margin-top: calc(var(--nav-h) + 20px);
      /* sedikit lebih besar dari tinggi header */
    }

    html {
      scroll-behavior: smooth;
    }


    /* Hilangkan area hitam bawah hero ketika CTA ditekan (overlay hero tidak memanjang) */
    .hero {
      background: #000;
      position: relative;
      overflow: hidden;
    }

    .hero .overlay {
      pointer-events: none;
      position: absolute;
      inset: 0;
    }

    /* default semua modal benar-benar tersembunyi */
    .suite-modal,
    .venue-modal,
    .promo-modal,
    .promo-modal[hidden] {
      display: none !important;
    }

    .suite-modal.open,
    .venue-modal.open,
    .promo-modal.open {
      display: flex !important;
    }

    /* backdrop modal terpisah dari layout page */
    .suite-modal .suite-overlay,
    .venue-modal .modal-bg,
    .promo-modal .backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 0;
    }

    #meetings {
      background: var(--ivory, #faf8f2);
      text-align: center;
      position: relative;
    }

    #meetings h2.section-title {
      font-family: "Spectral", serif;
      font-style: italic;
      font-weight: 700;
      font-size: clamp(32px, 5vw, 56px);
      margin-bottom: 8px;
    }

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

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

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

    .venue-image-wrap img {
      width: 100%;
      transition: transform 0.6s ease, filter 0.3s ease;
    }

    .venue-row:hover .venue-image-wrap img {
      transform: scale(1.03);
      filter: brightness(1.05);
    }

    .venue-text {
      width: 40%;
      text-align: left;
    }

    .venue-text h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .venue-text p {
      color: #555;
      font-size: 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;
      cursor: pointer;
      transition: color 0.3s ease;
    }

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

    /* === RESPONSIVE (Mobile Flat, No Card) === */
    @media (max-width: 600px) {
      #meetings {
        padding: 50px 16px;
      }

      .venue-row {
        flex-direction: column !important;
        gap: 24px;
        text-align: center !important;
        margin-bottom: 60px;
        border: none;
        box-shadow: none;
        background: transparent;
      }

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

      .venue-image-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.5 / 1;
        object-fit: cover;
        border: none;
        border-radius: 0;
      }

      .venue-text {
        width: 100%;
        padding: 0 12px;
        text-align: center !important;
      }

      .venue-text h3 {
        font-size: 18px;
        margin-top: 4px;
        text-transform: uppercase;
      }

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

      .learn-more {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.06em;
        border: none;
      }

      .vline {
        display: none !important;
      }
    }

    /* pastikan section lain tidak ikut filter gelap */
    #about,
    #meetings,
    #dining,
    #offers,
    #gallery,
    #location,
    #subscribe,
    .site-footer {
      filter: none !important;
      backdrop-filter: none !important;
    }

    .art-slider {
      overflow: visible;
    }

    /* jangan potong konten */
    .art-viewport {
      overflow: visible;
      padding: 0 24px;
    }

    /* ruang kiri/kanan */
    .art-track {
      padding-right: 24px;
    }

    /* ekstra ruang setelah item terakhir */

    @media (min-width:1024px) {

      .art-section::before,
      .art-section::after {
        width: 0;
        display: none;
      }

      /* matikan feather tepi */
    }

    /* NAV: ruang aman kiri/kanan + tidak ketutup overlay panah */
    .nav-center {

      box-sizing: border-box;

      /* geser isi menjauh dari overlay */
      padding-left: var(--left-guard);
      padding-right: var(--right-guard);

      /* agar scroll-into-view/keyboard menghormati guard */
      scroll-padding-left: var(--left-guard);
      scroll-padding-right: var(--right-guard);

      display: flex;
      justify-content: flex-start;
      align-items: center;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }

    .nav-center {
      --edge: 56px;
      /* lebar area blur dari tepi; coba 40–64 */
      --blur: 8px;
      /* kekuatan blur */
      position: relative;
      isolation: isolate;
      /* penting untuk backdrop-filter */
    }

    /* konten di bawah overlay (tetap bisa diklik) */
    .nav-center .menu {
      position: relative;
      z-index: 1;
      left: 50px;
    }

    /* SATU overlay di ATAS konten; tengah transparan */
    .nav-center::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      /* di atas teks */
      pointer-events: none;

      /* memicu kompositor, tetap 100% transparan */
      background: linear-gradient(transparent, transparent);

      backdrop-filter: blur(var(--blur)) saturate(120%);
      -webkit-backdrop-filter: blur(var(--blur)) saturate(120%);

      /* mask: hanya pinggir kiri/kanan yang terlihat, tengah bolong */
      -webkit-mask-image: linear-gradient(to right,
          black 0,
          black var(--edge),
          transparent var(--edge),
          transparent calc(100% - var(--edge)),
          black calc(100% - var(--edge)),
          black 100%);
      mask-image: linear-gradient(to right,
          black 0,
          black var(--edge),
          transparent var(--edge),
          transparent calc(100% - var(--edge)),
          black calc(100% - var(--edge)),
          black 100%);
    }

    /* ====== BEGIN DATEPICKER CSS ====== */
    #dateModal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 2600;
      pointer-events: none;
      padding: 0;
      margin: 0;
      border: 0;
      background: transparent;
    }

    #dateModal[hidden] {
      display: none !important;
    }

    #dateModal.open {
      display: block;
      pointer-events: none;
    }

    #dateModal .card {
      position: fixed !important;
      top: auto;
      left: auto;
      margin: 0;
      pointer-events: auto;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e8e8e8;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
      overflow: hidden;
      animation: dateSlideIn .22s ease both;
    }

    #dateModal:not(.open) .card {
      visibility: hidden;
      pointer-events: none;
    }

    #dateModal .backdrop {
      display: none !important;
      pointer-events: none !important;
    }

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

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

    #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 #monthLabel {
      margin: 6px 0 4px;
      font-family: "Spectral", serif;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: .04em;
      color: #111;
      text-transform: uppercase;
    }

    #dateModal .navbtn {
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: rgba(17, 17, 17, .06);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      transition: background .25s ease, transform .12s ease;
    }

    #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(.94)
    }

    #dateModal .grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
      padding: 16px 18px 10px;
    }

    #dateModal .grid strong {
      text-align: center;
      font-size: 12px;
      color: #888
    }

    #dateModal .grid .day {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 8px;
      cursor: pointer;
      transition: .15s;
    }

    #dateModal .grid .day.disabled {
      color: #c9c9c9;
      cursor: default
    }

    #dateModal .grid .day:hover:not(.disabled),
    #dateModal .grid .day.hovering {
      background: #111;
      color: #fff
    }

    #dateModal .grid .day.in-range:not(.checkin):not(.checkout) {
      background: #f3f3f3;
      color: inherit
    }

    #dateModal .grid .day.checkin,
    #dateModal .grid .day.checkout {
      background: #111 !important;
      color: #fff !important
    }

    #dateModal .actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      border-top: 1px solid #eee;
    }

    #dateModal .actions .ghost {
      background: transparent;
      color: #333;
      border: 1px solid #ddd;
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 600;
    }

    #dateModal .actions .ghost:hover {
      background: #f5f5f5
    }

    #dateModal .actions .done {
      background: #111;
      color: #fff;
      border: 1px solid #111;
      padding: 10px 18px;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* Tooltip “NIGHTS” */
    #hoverTip {
      position: fixed;
      z-index: 5000;
      display: none;
      pointer-events: none;
      background: #000;
      color: #fff;
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 4px;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    /* Mobile sizing */
    @media (max-width:768px) {
      #dateModal .card {
        border-radius: 14px
      }

      #dateModal .grid {
        gap: 6px;
        padding: 14px 14px 10px
      }

      #dateModal .grid .day {
        width: 2.1rem;
        height: 2.1rem;
        border-radius: 7px
      }

      #dateModal #monthLabel {
        font-size: 18px
      }
    }

    /* ==== Date Modal: ukuran & tipografi mobile ==== */
    #dateModal .card {
      box-sizing: border-box;
    }

    /* Mobile / tablet */
    @media (max-width: 1024px) {

      /* KUNCI lebar card di mobile */
      #dateModal .card {
        width: clamp(260px, 88vw, 360px) !important;
        /* <= ini bikin pas */
        border-radius: 14px;
      }

      #dateModal .cal header {
        padding: 10px 0 6px;
      }

      #dateModal #monthLabel {
        font-size: 18px;
      }

      #dateModal .navbtn {
        width: 32px;
        height: 32px;
      }

      #dateModal .grid {
        gap: 6px;
        padding: 12px 12px 8px;
      }

      #dateModal .grid .day {
        width: 2rem;
        height: 2rem;
        border-radius: 7px;
        font-size: 14px;
      }

      #dateModal .actions {
        padding: 10px 12px;
      }
    }

    /* Ensure the shell provides breathing room but keeps panel from overflowing viewport */
    .venue-modal .modal-shell {
      padding: 6vh 20px;
      /* consistent vertical gap */
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    /* Constrain panel height and enable internal scrolling */
    .venue-modal .modal-panel {
      max-height: calc(100vh - 96px) !important;
      /* leave space top/bottom for shell padding */
      overflow: auto !important;
      box-sizing: border-box;
    }

    /* Make sure close button is placed inside panel and stays visible */
    .venue-modal .close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 4;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 6px;
      padding: 6px 10px;
      line-height: 1;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* Mobile tweaks: tighter padding and slightly smaller close control */
    @media (max-width: 520px) {
      .venue-modal .modal-panel {
        max-height: calc(100vh - 64px) !important;
      }

      .venue-modal .close {
        top: 8px;
        right: 8px;
        padding: 5px 8px;
        font-size: 20px;
      }
    }

    /* Request form final override: avoid clipping and force reliable sizing */
    .venue-modal .req-form[hidden] {
      display: none !important;
    }

    .venue-modal .req-form:not([hidden]) {
      position: fixed !important;
      inset: 0 !important;
      z-index: 13000 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 16px !important;
      overflow: auto !important;
      overflow-x: hidden !important;
    }

    .venue-modal .req-form-card {
      width: min(1040px, calc(100vw - 32px)) !important;
      max-width: calc(100vw - 32px) !important;
      max-height: calc(100dvh - 32px) !important;
      min-height: auto !important;
      box-sizing: border-box !important;
      overflow: auto !important;
      overflow-x: hidden !important;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    @media (max-width: 1100px) {
      .venue-modal .req-form-card {
        grid-template-columns: minmax(0, 1fr) !important;
      }
    }

    /* base for animated items */
    .anim-item {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
      will-change: opacity, transform;
    }

    .anim-in {
      opacity: 1 !important;
      transform: none !important;
    }

    /* small stagger helper when needed */
    .anim-item.is-visible {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .anim-item {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
    }

    /* Leisure slider — modern young elegant, no border-radius */
    #leisure {
      padding: 80px clamp(16px, 5vw, 56px);
      background: linear-gradient(180deg, #fff, #fbfbfb);
    }

    #leisure .section-title {
      margin-bottom: 10px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    #leisure .section-subtitle {
      color: #666;
      margin-bottom: 100px;
    }

    .leisure-slider {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      padding: 0 56px;
    }

    .leisure-viewport {
      overflow: hidden;
      flex: 1;
    }

    .leisure-track {
      display: flex;
      gap: 18px;
      transition: transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .leisure-slide {
      width: calc((100% - 54px)/3);
      flex: 0 0 auto;
      background: #fff;
      color: #111;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
      position: relative;
      overflow: hidden;
    }

    .leisure-slide a {
      display: block;
      width: 100%;
    }

    .leisure-slide img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 0;
    }

    .leisure-slide--zoom-out img {
      object-fit: contain;
      object-position: center;
      background: #111;
    }

    .leisure-slide figcaption {
      padding: 12px 14px;
      color: #fff;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.66));
      width: 100%;
      font-weight: 600;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
    }

    .leisure-desc {
      padding: 6px 14px 16px 14px;
      color: #666;
      font-size: 0.95rem;
      line-height: 1.45;
      margin: 0;
      width: 100%;
      background: transparent;
      font-weight: 400;
    }

    .leisure-prev,
    .leisure-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: #333;
      border: 0;
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      font-size: 20px;
      cursor: pointer;
      z-index: 3;
    }

    .leisure-prev {
      left: 0;
    }

    .leisure-next {
      right: 0;
    }

    @media (max-width:900px) {
      .leisure-slide {
        width: calc((100% - 18px)/2);
      }

      .leisure-slide img {
        height: 200px
      }
    }

    @media (max-width:640px) {
      .leisure-slide {
        width: 100%;
      }

      .leisure-slider {
        gap: 8px
      }

      .leisure-slide img {
        height: 180px
      }
    }

    .leisure-slide {
      cursor: pointer;
    }

    .leisure-modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 6000;
    }

    .leisure-modal.active {
      display: block;
    }

    .leisure-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 20, 40, .75);
      backdrop-filter: blur(8px);
      opacity: 0;
      transition: opacity .4s ease;
    }

    .leisure-modal.active .leisure-overlay {
      opacity: 1;
    }

    .leisure-panel {
      position: relative;
      width: 90%;
      max-width: 1150px;
      max-height: 90vh;
      margin: 5vh auto;
      background: #fff;
      box-shadow: 0 40px 90px rgba(0, 0, 0, .25);
      transform: translateY(40px);
      opacity: 0;
      transition: all .45s cubic-bezier(.22, 1, .36, 1);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .leisure-modal.active .leisure-panel {
      transform: translateY(0);
      opacity: 1;
    }

    .leisure-inner {
      display: flex;
      flex-wrap: wrap;
    }

    .leisure-image-wrap {
      width: 50%;
      overflow: hidden;
    }

    .leisure-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .leisure-image-wrap.is-zoom-out {
      min-height: 320px;
      background: #111;
    }

    .leisure-image-wrap.is-zoom-out img {
      object-fit: contain;
      object-position: center;
    }

    .leisure-content {
      width: 50%;
      padding: 60px;
    }

    .leisure-content h3 {
      font-family: var(--font-serif);
      font-size: 34px;
      margin-bottom: 20px;
    }

    .leisure-content p {
      line-height: 1.8;
      color: #555;
      font-size: 15px;
    }

    .leisure-cta {
      margin-top: 30px;
    }

    .leisure-close {
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 32px;
      background: none;
      border: none;
      cursor: pointer;
      transition: transform .3s ease;
      z-index: 2;
    }

    .leisure-close:hover {
      transform: rotate(90deg);
    }

    @media (max-width: 992px) {
      .leisure-inner {
        flex-direction: column;
      }

      .leisure-image-wrap,
      .leisure-content {
        width: 100%;
      }

      .leisure-content {
        padding: 35px;
        overflow-y: auto;
        max-height: calc(90vh - 60px);
      }

      .leisure-panel {
        margin: 5vh auto;
        max-height: 90vh;
      }
    }

    @media (max-width: 600px) {
      .leisure-panel {
        width: 95%;
        margin: 3vh auto;
        max-height: 95vh;
      }

      .leisure-content {
        padding: 20px;
        max-height: calc(95vh - 60px);
      }

      .leisure-close {
        top: 15px;
        right: 15px;
        font-size: 26px;
      }

      .leisure-content h3 {
        font-size: 24px;
      }
    }

    /* === REQUEST FORM (Body Level - Fixed Overlay, Truly Centered) === */
    body>form.req-form {
      position: fixed !important;
      inset: 0 !important;
      display: none !important;
      z-index: 13000 !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      overscroll-behavior: contain;
      touch-action: pan-y;
      padding: 6vh 24px !important;
      background: rgba(0, 0, 0, 0.45) !important;
      backdrop-filter: blur(6px) !important;
      -webkit-backdrop-filter: blur(6px) !important;
      /* Centering: both flex and grid for maximum compatibility */
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    body>form.req-form:not([hidden]) {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    body>form.req-form .req-form-card {
      width: min(92vw, 860px) !important;
      background: rgba(255, 255, 255, 0.98) !important;
      padding: clamp(28px, 3.5vw, 60px) !important;
      position: relative !important;
      border-radius: 0 !important;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22) !important;
      max-height: 90vh !important;
      overflow-y: auto !important;
      margin: 0 auto !important;
      /* Ensure card doesn't exceed max-width */
      flex-shrink: 1;
    }

    body>form.req-form .close-popup {
      position: fixed !important;
      top: 14px !important;
      right: 14px !important;
      z-index: 13001 !important;
      background: rgba(255, 255, 255, 0.9) !important;
      border: 1px solid rgba(0, 0, 0, 0.12) !important;
      border-radius: 999px !important;
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      font-size: 20px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    body>form.req-form .close-popup:hover {
      background: #000 !important;
      color: #fff !important;
    }

    /* Footer hover: improve contrast and make it more refined */
    .f-list a:hover {
      color: #f1e5c8;
      text-decoration: underline;
      text-decoration-color: rgba(241, 229, 200, 0.75);
      text-underline-offset: 3px;
    }

    .f-stores .store:hover {
      color: #f3e9d2;
      opacity: 1;
      text-decoration-color: rgba(243, 233, 210, 0.72);
    }

    .f-social a:hover {
      background: linear-gradient(180deg, #20252b 0%, #13171b 100%);
      border-color: rgba(168, 146, 99, 0.72);
      color: #f7f2e6 !important;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
    }

    /* ===== Footer Premium Override ===== */
    .site-footer {
      position: relative;
      z-index: 2;
      isolation: isolate;
      display: block;
      left: auto !important;
      right: auto !important;
      width: 100% !important;
      padding: clamp(34px, 4.5vw, 56px) clamp(16px, 4vw, 52px) clamp(20px, 2.8vw, 30px);
      background: linear-gradient(135deg, #0f131a 0%, #10151b 50%, #0d1117 100%);
      color: #edf1f5;
      border-top: 2px solid rgba(184, 164, 122, 0.18);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(184, 164, 122, 0.1) 0%, rgba(184, 164, 122, 0.2) 50%, rgba(184, 164, 122, 0.1) 100%);
      pointer-events: none;
    }

    .site-footer .f-grid {
      display: grid;
      grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(150px, 1fr));
      gap: clamp(22px, 3vw, 40px);
      align-items: start;
      max-width: 1320px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

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

    .site-footer h4 {
      margin: 0 0 12px;
      font-family: var(--font-serif);
      font-weight: 700;
      font-size: clamp(16px, 1.4vw, 20px);
      color: #f3f6fa;
      letter-spacing: 0.02em;
      position: relative;
      padding-bottom: 8px;
    }

    .site-footer h4::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, rgba(184, 164, 122, 0.6) 0%, transparent 100%);
    }

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

    .f-app-logos {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 24px);
      flex-wrap: wrap;
    }

    .f-app-logos .f-app-logo,
    .f-app-logos .f-app-mockup {
      max-height: 50px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .f-app-promo-text {
      margin: 14px 0 18px;
      max-width: 48ch;
      color: rgba(233, 238, 244, 0.74);
      font-size: 14px;
      line-height: 1.65;
    }

    .f-app-stores {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 12px;
    }

    .f-app-stores .store {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(229, 234, 240, 0.78);
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color .22s ease;
    }

    .f-app-stores .store i {
      font-size: 20px;
      line-height: 1;
    }

    .f-app-stores .store:hover {
      color: #f3e9d2;
    }

    .f-list a i {
      width: 1.1em;
      text-align: center;
      flex-shrink: 0;
    }

    .f-app-promo-text {
      margin: 14px 0 18px;
      max-width: 48ch;
      color: rgba(233, 238, 244, 0.74);
      font-size: 14px;
      line-height: 1.65;
    }

    .f-app-stores {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 12px;
    }

    .f-app-stores .store {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(229, 234, 240, 0.78);
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color .22s ease;
    }

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

    .f-app-stores .store:hover {
      color: #f3e9d2;
    }

    .site-footer .f-bottom {
      position: relative;
      z-index: 1;
    }

    .site-footer a,
    .site-footer p,
    .site-footer li,
    .site-footer h4 {
      position: relative;
      z-index: 1;
    }

    .f-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: clamp(12px, 1.8vw, 22px);
    }

    .f-logo-link {
      position: relative;
      display: inline-grid;
      place-items: center;
      min-height: 90px;
      text-decoration: none;
      line-height: 0;
      opacity: 0.92;
      transition: opacity .2s ease;
    }

    .f-logo-link:hover {
      opacity: 1;
    }

    .f-logo-link img {
      max-height: 140px;
      width: auto;
      object-fit: contain;
      display: block;
      transition: filter 0.3s ease, transform 0.3s ease;
    }

    .f-logo-link:hover img {
      filter: brightness(1.1);
      transform: scale(1.03);
    }

    .f-app-link img {
      max-height: 120px;
    }

    .f-kicker {
      margin: 14px 0 18px;
      max-width: 48ch;
      color: rgba(233, 238, 244, 0.74);
      font-size: 14px;
      line-height: 1.65;
    }

    .f-kicker-logos {
      display: flex;
      align-items: center;
      gap: 24px;
      margin: 14px 0 18px;
      flex-wrap: wrap;
    }

    .logo-item {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 72px;
      cursor: pointer;
      transition: opacity .3s ease;
    }

    .logo-item img {
      max-height: 72px;
      max-width: 160px;
      width: auto;
      object-fit: contain;
    }

    .logo-item .logo-mono {
      opacity: 1;
      transition: opacity .3s ease;
    }

    .logo-item .logo-color {
      position: absolute;
      opacity: 0;
      transition: opacity .3s ease;
    }

    .logo-item:hover .logo-mono {
      opacity: 0;
    }

    .logo-item:hover .logo-color {
      opacity: 1;
    }

    .f-stores {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 12px;
    }

    .store-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(200px, 100%);
      min-height: 60px;
      aspect-ratio: 10 / 3;
      padding: 0;
      background: transparent;
      color: #edf2f7;
      text-decoration: none;
      border-radius: 10px;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      overflow: hidden;
      line-height: 1;
    }

    .store-link:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .store-link img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .store-link--google-play img {
      transform: scale(1.16);
      transform-origin: center;
    }

    .store-link--app-store img {
      transform-origin: center;
    }

    .store-link.store-text {
      min-height: 48px;
      padding: 0 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(184, 164, 122, 0.08);
    }

    .store-link.store-text:hover {
      background: rgba(184, 164, 122, 0.16);
      box-shadow: 0 6px 16px rgba(184, 164, 122, 0.12);
    }

    .f-small,
    .f-small a,
    .f-list a {
      color: rgba(229, 234, 240, 0.78);
    }

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

    .f-list li {
      margin: 8px 0;
      line-height: 1.55;
    }

    .f-list a {
      text-decoration: none;
      transition: color .22s ease, text-decoration-color .22s ease;
    }

    .f-list a:hover {
      color: #ffffff;
      text-decoration: underline;
      text-decoration-color: rgba(255, 255, 255, 0.48);
      text-underline-offset: 3px;
    }

    .f-social {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }

    .f-social a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: transparent;
      color: #eef2f6;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }

    .f-social a:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.28);
      color: #ffffff !important;
    }

    /* Social icons (logo-only) in Contact Us section */
    .f-social-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
      padding-top: 12px;
    }

    .f-social-icons .social-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      background: transparent;
      color: #b8a47a;
      font-size: 16px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      text-decoration: none;
    }

    .f-social-icons .social-icon:hover {
      background: rgba(184, 164, 122, 0.12);
      color: #d6c38a;
      transform: translateY(-2px);
    }

    .f-bottom {
      max-width: 1320px;
      margin: clamp(24px, 3vw, 34px) auto 0;
      padding-top: clamp(14px, 2vw, 18px);
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      text-align: center;
      color: rgba(224, 231, 238, 0.72);
      font-size: 12px;
      letter-spacing: 0.02em;
      text-transform: none;
    }

    @media (max-width: 1080px) {
      .site-footer .f-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .site-footer {
        padding: 34px 16px 20px;
      }

      .f-app-logos .f-app-logo,
      .f-app-logos .f-app-mockup {
        max-height: 44px;
      }

      .site-footer .f-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .f-bottom {
        font-size: 11px;
        letter-spacing: 0.03em;
      }
    }
/* ═══════════════════════════════════════════════════════════════════════
   COOKIE CONSENT GATE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Gate overlay ─────────────────────────────────────────────────── */
.cookie-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-gate.open {
  display: flex;
}

.cookie-gate.is-hidden {
  display: none;
}

.cookie-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

/* ── Panel ────────────────────────────────────────────────────────── */
.cookie-gate__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 44px);
  text-align: center;
  box-shadow: var(--shadow-2);
  animation: cookieGateFadeIn 0.4s ease both;
}

@keyframes cookieGateFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Logo ─────────────────────────────────────────────────────────── */
.cookie-gate__logo-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
}

.cookie-gate__logo {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

/* ── Title ────────────────────────────────────────────────────────── */
.cookie-gate__title {
  font-family: var(--font-serif, "Spectral", Georgia, serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 14px;
}

/* ── Description ──────────────────────────────────────────────────── */
.cookie-gate__desc {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
}

.cookie-gate__desc strong {
  color: var(--ink);
}

/* ── Privacy policy button ────────────────────────────────────────── */
.cookie-gate__privacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  opacity: 1;
  padding: 6px 0;
  margin-bottom: 24px;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
}

.cookie-gate__privacy-btn:hover,
.cookie-gate__privacy-btn:focus-visible {
  color: #000;
  outline: none;
}

.cookie-gate__privacy-btn:focus,
.cookie-gate__privacy-btn:active {
  opacity: 1;
  animation: none;
}

.cookie-gate__privacy-btn svg {
  flex-shrink: 0;
}

/* ── Action buttons ───────────────────────────────────────────────── */
.cookie-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-gate__btn {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 11px 24px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  min-width: 140px;
}

.cookie-gate__btn:active {
  transform: scale(0.97);
}

.cookie-gate__btn--accept {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cookie-gate__btn--accept:hover,
.cookie-gate__btn--accept:focus-visible {
  background: #000;
  outline: none;
}

.cookie-gate__btn--decline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.cookie-gate__btn--decline:hover,
.cookie-gate__btn--decline:focus-visible {
  color: #000;
  border-color: #cfcfcf;
  background: #fafafa;
  outline: none;
}

/* ── Body lock when gate is active ───────────────────────────────── */
body.cookie-gate-active {
  overflow: hidden;
}

/* Ensure overlay layers remain interactive while body is locked */
body.cookie-gate-active .cookie-gate,
body.cookie-gate-active #cookieGate,
body.cookie-gate-active #cookieDeclined,
body.cookie-gate-active .cookie-declined {
  pointer-events: auto;
}

/* ── Declined screen ──────────────────────────────────────────────── */
.cookie-declined {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.42);
}

.cookie-declined[hidden] {
  display: none !important;
}

.cookie-declined__inner {
  max-width: 420px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  animation: cookieGateFadeIn 0.35s ease both;
  box-shadow: var(--shadow-2);
}

.cookie-declined__icon {
  color: #b7bdc4;
  margin-bottom: 20px;
}

.cookie-declined__title {
  font-family: var(--font-serif, "Spectral", Georgia, serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.cookie-declined__desc {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 28px;
}

.cookie-declined__desc strong {
  color: var(--ink);
}

.cookie-declined__refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  cursor: pointer;
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cookie-declined__refresh:hover,
.cookie-declined__refresh:focus-visible {
  background: #000;
  outline: none;
}

.cookie-declined__refresh:active {
  transform: scale(0.97);
}

/* ═══════════════════════════════════════════════════════════════════════
   POPUP BANNER
   ═══════════════════════════════════════════════════════════════════════ */

.modal--popup-banner {
  position: fixed;
  inset: 0;
  display: none;
  width: auto;
  max-width: none;
  border: 0;
  padding: 16px;
  margin: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  z-index: 6000;
  align-items: center;
  justify-content: center;
}

.modal--popup-banner.open {
  display: flex;
}

.modal--popup-banner .modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
}

.modal--popup-banner .modal__dialog {
  position: relative;
  margin: 0;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  animation: fadeInUp 0.25s ease;
}

.modal--popup-banner .modal__dialog--promo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal--popup-banner .modal__media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal--popup-banner .modal__dialog--luxury {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.modal--popup-banner .modal__dialog--luxury.modal__dialog--two-col {
  grid-template-columns: minmax(0, 1fr);
}

.modal--popup-banner .modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: 0.2s;
}

.modal--popup-banner .modal__close:hover,
.modal--popup-banner .modal__close:focus-visible {
  background: #fff;
  color: #111;
  outline: none;
}

.modal--popup-banner .modal__col-left--media {
  min-height: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal--popup-banner .modal__hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 70vw;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 0;
}

.modal--popup-banner .modal__col-right--content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 14px 0 0;
  text-align: center;
}

.modal--popup-banner .modal__actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.modal--popup-banner .modal__col-right--full {
  max-width: min(92vw, 840px);
  margin: 0 auto;
}

.modal--popup-banner .modal__headline {
  margin: 0;
  font-family: var(--font-serif, "Spectral", Georgia, serif);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 30ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.modal--popup-banner .modal__headline,
.modal--popup-banner .modal__content-text {
  display: none;
}

.modal--popup-banner .modal__content-text {
  margin: 0;
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal--popup-banner .modal__cta {
  align-self: center;
  margin-top: 4px;
  min-width: 178px;
  justify-content: center;
  border-radius: 0;
  padding: 10px 32px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.modal--popup-banner .modal__cta:hover,
.modal--popup-banner .modal__cta:focus-visible {
  border: 2px solid #000;
  background: #000;
  color: #fff;
  outline: none;
}

@media (max-width: 820px) {
  .modal--popup-banner {
    padding: 12px;
  }

  .modal--popup-banner .modal__dialog--luxury.modal__dialog--two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal--popup-banner .modal__hero-image {
    max-width: 90vw;
    max-height: 55vh;
  }
}

@media (max-width: 640px) {
  .modal--popup-banner {
    padding: 8px;
  }

  .modal--popup-banner .modal__close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .modal--popup-banner .modal__col-right--content {
    gap: 8px;
    padding: 12px 8px 0;
  }

  .modal--popup-banner .modal__headline {
    max-width: 90vw;
    font-size: clamp(1rem, 5.2vw, 1.25rem);
  }

  .modal--popup-banner .modal__content-text {
    font-size: 0.84rem;
    max-width: 92vw;
  }

  .modal--popup-banner .modal__cta {
    min-width: 158px;
    padding: 9px 22px;
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRIVACY POLICY MODAL
   ═══════════════════════════════════════════════════════════════════════ */

/* Dialog positioning - centered on screen */
.modal--privacy {
  position: fixed;
  inset: 0;
  display: none;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  z-index: 100001;
  pointer-events: none;
}

.modal--privacy[hidden] {
  display: none;
}

/* Backdrop overlay inside dialog - blocked by default */
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 100000;
  cursor: pointer;
  pointer-events: none;
}

.modal--privacy {
  padding: 0;
}

/* Show modal when open class is applied */
.modal--privacy.open {
  display: block;
  pointer-events: auto;
  animation: none !important;
}

/* Enable backdrop clicks when modal is open */
.modal--privacy.open .modal__backdrop {
  pointer-events: auto;
}

/* Dialog content wrapper */
.modal__dialog--privacy {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  width: calc(100% - 32px);
  height: fit-content;
  max-height: 90vh;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-2);
  z-index: 100002;
  pointer-events: auto;
}

.modal__dialog--privacy {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

/* close button (top-right, inherits from popup modal) */
.modal--privacy .modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 6;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #222;
  font-size: 1.5rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.modal--privacy .modal__close:hover,
.modal--privacy .modal__close:focus-visible {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  outline: none;
}

/* ── Inner wrapper (scrolls) ────────────────────────────────────── */
.modal__privacy-inner {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  max-height: 90vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.25) transparent;
}

.modal__privacy-inner::-webkit-scrollbar { width: 5px; }
.modal__privacy-inner::-webkit-scrollbar-track { background: transparent; }
.modal__privacy-inner::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.25); border-radius: 99px; }

/* ── Header ─────────────────────────────────────────────────────── */
.modal__privacy-header {
  background: #faf8f5;
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 48px) clamp(20px, 3vw, 32px);
  text-align: center;
}

.modal__privacy-logo-wrap {
  margin-bottom: 18px;
}

.modal__privacy-logo {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.modal__privacy-title {
  font-family: var(--font-serif, "Spectral", Georgia, serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}

.modal__privacy-subtitle {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 8px;
}

.modal__privacy-date {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.72rem;
  color: #7a7a7a;
  margin: 0;
}

/* ── Body ───────────────────────────────────────────────────────── */
.modal__privacy-body {
  padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 48px);
}

.modal__privacy-body section {
  margin-bottom: 28px;
}

.modal__privacy-body section:last-child {
  margin-bottom: 0;
}

.modal__privacy-body h3 {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}

.modal__privacy-body p,
.modal__privacy-body address {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 10px;
  font-style: normal;
}

.modal__privacy-body ul {
  margin: 0 0 10px 0;
  padding-left: 1.4em;
}

.modal__privacy-body li {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 5px;
}

.modal__privacy-body strong {
  color: var(--ink);
  font-weight: 600;
}

.modal__privacy-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal__privacy-body a:hover {
  color: #000;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.modal__privacy-footer {
  padding: 16px clamp(20px, 5vw, 48px) 24px;
  border-top: 1px solid var(--line);
  background: #fff;
  text-align: right;
  flex-shrink: 0;
}

/* ── Mobile adjustments ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .cookie-gate__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-gate__btn {
    min-width: unset;
    width: 100%;
  }

  .modal--privacy {
    width: 100%;
    max-height: 95vh;
    border-radius: 4px 4px 0 0;
    margin: auto 0 0;
    align-self: flex-end;
  }

  .modal__privacy-inner {
    max-height: 95vh;
  }
}
    /* ===== Premium Venue Modal: Grand Ballroom + Boardroom ===== */
    .premium-venue-modal .modal-shell {
      width: min(1180px, 100%);
      padding: clamp(20px, 4vw, 48px);
    }

    .premium-venue-modal .premium-modal-panel {
      width: min(1120px, 100%);
      max-height: min(88vh, 920px) !important;
      overflow: auto !important;
      padding: clamp(28px, 3vw, 40px);
      border-radius: 22px !important;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 26px 72px rgba(15, 15, 15, 0.14);
      animation: none !important;
      transform: none !important;
    }

    .premium-venue-modal .premium-modal-panel.req-overlay-open {
      overflow: hidden !important;
    }

    .premium-venue-modal .close {
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(17, 17, 17, 0.08);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: #111;
      box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .premium-venue-modal .close:hover {
      background: #111;
      color: #fff;
      opacity: 1;
    }

    .premium-modal-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
      gap: clamp(22px, 3vw, 34px);
      align-items: start;
    }

    .premium-modal-content {
      min-width: 0;
    }

    .premium-modal-head {
      margin-bottom: 22px;
    }

    .premium-modal-head .venue-kicker,
    .premium-side-card .side-kicker,
    .request-form-modal .req-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #8a744f;
    }

    .premium-modal-head .venue-kicker::before,
    .premium-side-card .side-kicker::before,
    .request-form-modal .req-kicker::before {
      content: "";
      width: 26px;
      height: 1px;
      background: currentColor;
      opacity: 0.7;
    }

    .premium-modal-head h3 {
      margin: 0 0 14px;
      font-family: var(--font-serif);
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: #141414;
    }

    .premium-modal-head .sub {
      max-width: 60ch;
      margin: 0;
      font-size: 15px;
      line-height: 1.86;
      color: #5f5a53;
    }

    .premium-modal-head .divider {
      margin-top: 18px;
      background: linear-gradient(90deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.03));
      height: 1px;
    }

    .premium-venue-modal .venue-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 16px;
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
    }

    .premium-venue-modal .venue-facts li {
      display: grid;
      gap: 4px;
      padding: 0 0 14px;
      border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    }

    .premium-venue-modal .venue-facts strong {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8a8175;
    }

    .premium-venue-modal .venue-facts span {
      font-size: 15px;
      line-height: 1.5;
      color: #1d1d1d;
    }

    .premium-venue-modal .venue-visual {
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .premium-venue-modal .venue-visual img {
      width: 100%;
      border-radius: 18px !important;
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
    }

    .premium-venue-modal .venue-visual figcaption {
      font-size: 13px;
      line-height: 1.6;
      color: #777066;
    }

    .premium-venue-modal .dimension-trigger {
      position: relative;
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      text-align: left;
      cursor: zoom-in;
    }

    .premium-venue-modal .dimension-trigger img {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .premium-venue-modal .dimension-trigger:hover img {
      transform: scale(1.01);
      box-shadow: 0 22px 52px rgba(17, 17, 17, 0.12);
    }

    .premium-venue-modal .dimension-hint {
      position: absolute;
      right: 16px;
      bottom: 16px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(17, 17, 17, 0.08);
      color: #111;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
    }

    .premium-side-card {
      position: sticky;
      top: 0;
      display: grid;
      gap: 16px;
      padding: clamp(22px, 2.6vw, 28px);
      border-radius: 18px;
      background: #f8f6f2;
      color: #1b1b1b;
      border: 1px solid rgba(17, 17, 17, 0.07);
      box-shadow: none;
      overflow: hidden;
    }

    .premium-side-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(17, 17, 17, 0.03), transparent 38%);
      pointer-events: none;
    }

    .premium-side-card>* {
      position: relative;
      z-index: 1;
    }

    .premium-side-card h4 {
      margin: 0;
      font-family: var(--font-serif);
      font-size: clamp(24px, 2.3vw, 28px);
      line-height: 1.24;
      color: #171717;
    }

    .premium-side-card p,
    .premium-side-card .cta-note {
      margin: 0;
      font-size: 14px;
      line-height: 1.75;
      color: #5f5a53;
    }

    .premium-side-card .side-points {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .premium-side-card .side-points li {
      position: relative;
      padding-left: 18px;
      font-size: 14px;
      line-height: 1.6;
      color: #2b2b2b;
    }

    .premium-side-card .side-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.68em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #111;
    }

    .premium-side-card .premium-cta-wrap {
      display: grid;
      gap: 12px;
      margin-top: 4px;
      padding-top: 18px;
      border-top: 1px solid rgba(17, 17, 17, 0.08);
    }

    .premium-side-card .open-req {
      height: 52px;
      border: 1px solid #111;
      border-radius: 999px !important;
      background: #111;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      box-shadow: none;
    }

    .premium-side-card .open-req:hover {
      background: #fff;
      color: #111;
    }

    .request-form-modal {
      position: fixed;
      inset: 0;
      z-index: 4500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(16px, 4vw, 28px);
      background: rgba(10, 10, 12, 0.68);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      overscroll-behavior: contain;
      transition: opacity 0.32s ease, visibility 0.32s ease;
    }

    .request-form-modal[hidden] {
      display: none !important;
    }

    .request-form-modal.show {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .request-form-modal.closing {
      opacity: 0;
      visibility: visible;
      pointer-events: none;
    }

    .request-form-modal .req-card {
      position: relative;
      width: min(90vw, 1200px);
      max-height: min(92vh, 860px);
      margin-inline: auto;
      display: grid;
      grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
      transform: translateY(28px) scale(0.985);
      transition: transform 0.38s cubic-bezier(.22, 1, .36, 1), opacity 0.32s ease;
      opacity: 0;
    }

    .request-form-modal.show .req-card {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .request-form-modal.closing .req-card {
      transform: translateY(20px) scale(0.99);
      opacity: 0;
    }

    .request-form-modal .req-hero {
      padding: clamp(28px, 4vw, 38px);
      background: #f5f2ed;
      color: #111;
      display: grid;
      align-content: start;
      gap: 14px;
      border-right: 1px solid rgba(17, 17, 17, 0.07);
      overflow: auto;
      overscroll-behavior: contain;
    }

    .request-form-modal h3 {
      margin: 0;
      font-family: var(--font-serif);
      font-size: clamp(30px, 3.6vw, 40px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      text-transform: none;
      color: #151515;
    }

    .request-form-modal p.sub {
      margin: 0;
      font-size: 14px;
      line-height: 1.8;
      color: #625c54;
    }

    .request-form-modal .req-meta {
      display: grid;
      gap: 10px;
      margin-top: 8px;
    }

    .request-form-modal .req-meta div {
      display: grid;
      gap: 4px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(17, 17, 17, 0.06);
    }

    .request-form-modal .req-meta strong {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8a744f;
    }

    .request-form-modal .req-meta span {
      font-size: 14px;
      line-height: 1.55;
      color: #2b2b2b;
    }

    .request-form-modal .req-body {
      padding: clamp(28px, 4vw, 38px);
      display: grid;
      align-content: start;
      gap: 22px;
      background: #fff;
      overflow: auto;
      min-height: 0;
      overscroll-behavior: contain;
    }

    .request-form-modal .premium-field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .request-form-modal .field-group {
      display: grid;
      gap: 8px;
      min-width: 0;
    }

    .request-form-modal .field-group span {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #7c6850;
    }

    .request-form-modal .field-group.full {
      grid-column: 1 / -1;
    }

    .request-form-modal input,
    .request-form-modal select,
    .request-form-modal textarea {
      margin: 0;
      min-height: 54px;
      padding: 14px 16px;
      border-radius: 14px !important;
      border: 1px solid rgba(17, 17, 17, 0.1);
      background: #fff;
      color: #16120d;
      font-size: 15px;
      line-height: 1.5;
      box-shadow: none;
    }

    .request-form-modal select {
      padding-right: 44px;
    }

    .request-form-modal textarea {
      min-height: 136px;
    }

    .request-form-modal input::placeholder,
    .request-form-modal textarea::placeholder {
      color: #9b9388;
    }

    .request-form-modal input:focus,
    .request-form-modal select:focus,
    .request-form-modal textarea:focus {
      border-color: #111;
      box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
    }

    .request-form-modal .select-wrap::after {
      right: 16px;
      color: #555;
    }

    .request-form-modal .consent {
      margin: 0;
      padding: 16px 18px;
      border-radius: 14px;
      background: #f7f7f5;
      border: 1px solid rgba(17, 17, 17, 0.08);
      color: #544b3f;
      font-size: 13px;
      line-height: 1.65;
    }

    .request-form-modal .consent input {
      flex: 0 0 auto;
      margin-top: 2px;
      width: 18px;
      height: 18px;
      min-height: 18px;
      padding: 0;
      border-radius: 6px !important;
    }

    .request-form-modal .req-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .request-form-modal .assist-copy {
      margin: 0;
      max-width: 34ch;
      font-size: 13px;
      line-height: 1.7;
      color: #7a7369;
    }

    .request-form-modal .primary {
      width: auto;
      min-width: 220px;
      min-height: 54px;
      border: 1px solid #111;
      border-radius: 999px !important;
      background: #111;
      color: #fff;
      box-shadow: none;
    }

    .request-form-modal .primary:hover {
      background: #fff;
      color: #111;
    }

    .request-form-modal .close-popup {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(17, 17, 17, 0.08);
      color: #111;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      line-height: 1;
      font-size: 24px;
      cursor: pointer;
    }

    .request-form-modal .close-popup:hover {
      background: #111;
      color: #fff;
    }

    /* Prevent legacy .req-form grid rules from breaking the premium proposal modal */
    form.req-form.request-form-modal {
      display: flex !important;
      grid-template-columns: unset !important;
      gap: 0 !important;
      align-items: center !important;
      justify-content: center !important;
    }

    form.req-form.request-form-modal > input[type="hidden"] {
      display: none !important;
    }

    .venue-modal .req-form.request-form-modal input:not([type="hidden"]),
    .venue-modal .req-form.request-form-modal select,
    .venue-modal .req-form.request-form-modal textarea {
      width: auto;
      border-radius: 14px !important;
    }

    .dimension-viewer {
      position: fixed;
      inset: 0;
      z-index: 14000;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .dimension-viewer[hidden] {
      display: none !important;
    }

    .dimension-viewer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 12, 0.84);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .dimension-viewer-panel {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    }

    .dimension-viewer-panel img {
      display: block;
      width: 100%;
      max-height: calc(100vh - 100px);
      object-fit: contain;
      border-radius: 14px;
    }

    .dimension-viewer-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: #111;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .dimension-viewer-close:hover {
      background: #111;
      color: #fff;
    }

    @media (max-width: 980px) {

      .premium-modal-layout,
      .request-form-modal .req-card {
        grid-template-columns: 1fr;
      }

      .request-form-modal .req-card {
        grid-template-rows: auto minmax(0, 1fr);
      }

      .premium-side-card {
        position: static;
      }

      .request-form-modal .req-hero {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.07);
      }
    }

    @media (max-width: 760px) {
      .premium-venue-modal .premium-modal-panel {
        padding: 20px;
        border-radius: 18px !important;
      }

      .premium-venue-modal .venue-facts,
      .request-form-modal .premium-field-grid {
        grid-template-columns: 1fr;
      }

      .request-form-modal .req-body,
      .request-form-modal .req-hero {
        padding: 24px 20px;
      }

      .premium-venue-modal .dimension-hint {
        right: 12px;
        bottom: 12px;
        padding: 8px 10px;
        font-size: 10px;
      }

      .request-form-modal .req-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .request-form-modal .primary {
        width: 100%;
        min-width: 0;
      }
    }

    @media (max-width: 520px) {

      .premium-venue-modal .modal-shell,
      .request-form-modal {
        padding: 12px;
      }

      .premium-venue-modal .premium-modal-panel,
      .request-form-modal .req-card {
        border-radius: 16px !important;
      }

      .premium-modal-head h3,
      .request-form-modal h3 {
        font-size: 28px;
      }

      .request-form-modal input,
      .request-form-modal select,
      .request-form-modal textarea {
        min-height: 50px;
        border-radius: 12px !important;
      }

      .dimension-viewer {
        padding: 12px;
      }

      .dimension-viewer-panel {
        padding: 12px;
        border-radius: 16px;
      }

      .dimension-viewer-panel img {
        max-height: calc(100vh - 72px);
        border-radius: 10px;
      }
    }
