/* ==================================================================
   Just Inn Semarang — Landing Page
   1.  Token & reset            8.  Hero                 15. Testimoni
   2.  Tipografi & utilitas     9.  Search bar            16. Form reservasi
   3.  Keyframes               10.  Marquee              17. FAQ
   4.  Sistem reveal           11.  Tentang & statistik  18. Lokasi
   5.  Preloader               12.  Kamar                19. Footer & floating
   6.  Progress bar            13.  Fasilitas            20. Responsive
   7.  Header & navigasi       14.  Galeri               21. Reduced motion
   ================================================================== */

/* ---------- 1. Token & reset ------------------------------------ */
:root {
  --ink:        #12151B;
  --ink-2:      #1A1F29;
  --ink-3:      #262D3A;
  --paper:      #FCFAF7;
  --paper-2:    #F4EFE8;
  --paper-3:    #EBE4D9;
  --gold:       #B98C46;
  --gold-2:     #E3C285;
  --gold-3:     #F0DFBE;
  --gold-soft:  rgba(185, 140, 70, .10);
  --text:       #23282F;
  --muted:      #786F66;
  --line:       rgba(18, 21, 27, .09);
  --line-2:     rgba(18, 21, 27, .16);

  --radius:     24px;
  --radius-md:  18px;
  --radius-sm:  12px;
  --radius-pill: 100px;

  --shadow-xs:  0 1px 2px rgba(18, 21, 27, .05);
  --shadow-sm:  0 4px 16px rgba(18, 21, 27, .06);
  --shadow:     0 14px 40px rgba(18, 21, 27, .09);
  --shadow-lg:  0 30px 70px rgba(18, 21, 27, .14);
  --shadow-gold: 0 18px 40px rgba(185, 140, 70, .28);

  --ease:       cubic-bezier(.22, 1, .36, 1);
  --ease-back:  cubic-bezier(.34, 1.56, .64, 1);
  --container:  1180px;
  --header-h:   84px;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img, video { display: block; max-width: 100%; }
svg { max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--gold-2); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 2. Tipografi & utilitas ----------------------------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }
.section--flush-top { padding-top: 0; }
.section--dark { background: var(--ink); color: #E8E5E0; }
.section--paper { background: var(--paper-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: line-grow 1s var(--ease) both;
}

.section--dark .eyebrow { color: var(--gold-2); }

.h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

.section--dark .h1,
.section--dark .h2,
.section--dark .h3 { color: #FBF8F3; }

.h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.lead {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: var(--muted);
  max-width: 56ch;
}

.section--dark .lead { color: rgba(232, 229, 224, .72); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 640px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

.section-head--center .lead { margin-inline: auto; }
.section-head--split { max-width: none; }

@media (min-width: 900px) {
  .section-head--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }
  .section-head--split > * { max-width: 560px; }
}

/* Tumpukan vertikal dengan jarak seragam — dipakai agar tidak perlu
   mengatur margin satu per satu di dalam markup. */
.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.stack--sm { gap: 12px; }
.stack--lg { gap: 26px; }
.stack > * { margin: 0; }

.text-gold { color: var(--gold); }

.accent-word {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.accent-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: .28em;
  background: var(--gold-soft);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 1.1s .6s var(--ease) forwards;
  z-index: -1;
}

/* Tombol ------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #FCFAF7;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .35s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 100%);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}

.btn:hover { box-shadow: var(--shadow); }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn:active { transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(.97); }

.btn .ico { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

.btn--gold { --btn-bg: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 100%); --btn-fg: var(--ink); }
.btn--gold::before { background: var(--ink); }
.btn--gold:hover { color: var(--paper); box-shadow: var(--shadow-gold); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line-2);
}

.btn--ghost:hover { border-color: transparent; }

.hero .btn--ghost,
.section--dark .btn--ghost {
  --btn-fg: #FBF8F3;
  --btn-bg: rgba(252, 250, 247, .06);
  border-color: rgba(251, 248, 243, .45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  position: relative;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow .ico { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.link-arrow:hover .ico { transform: translateX(5px); }

/* Ikon & bintang ------------------------------------------------ */
.ico {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-block;
  vertical-align: -.22em;
}

.ico-sm { width: 16px; height: 16px; }
.ico-lg { width: 28px; height: 28px; }

.stars { display: inline-flex; gap: 2px; }
.star { color: var(--line-2); line-height: 0; }
.star.is-on { color: var(--gold); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---------- 3. Keyframes ---------------------------------------- */
@keyframes fade-up   { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes fade-in   { from { opacity: 0; } to { opacity: 1; } }
@keyframes line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes underline-in { to { transform: scaleX(1); } }
@keyframes float-y   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes float-y-sm { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(4%, -5%) scale(1.06); }
  66%  { transform: translate(-4%, 4%) scale(.96); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes ken-burns { from { transform: scale(1.06); } to { transform: scale(1.18); } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse-ring {
  0%   { transform: scale(.85); opacity: .7; }
  100% { transform: scale(1.75); opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes word-up { to { transform: translateY(0); opacity: 1; } }

/* ---------- 4. Sistem reveal ------------------------------------ */
/* Semua animasi masuk hanya aktif bila JavaScript hidup (kelas .js
   dipasang oleh skrip inline di <head>). Tanpa JS, konten tampil apa
   adanya sehingga halaman tidak pernah kosong. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .9s var(--ease) var(--reveal-delay, 0ms),
    transform .9s var(--ease) var(--reveal-delay, 0ms),
    filter .9s var(--ease) var(--reveal-delay, 0ms);
  filter: blur(6px);
  will-change: opacity, transform;
}

.js [data-reveal="left"]  { transform: translateX(-46px); }
.js [data-reveal="right"] { transform: translateX(46px); }
.js [data-reveal="zoom"]  { transform: scale(.92); }
.js [data-reveal="mask"]  { clip-path: inset(0 0 100% 0); transform: none; filter: none; }

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

/* Preloader hanya relevan bila JS bisa menutupnya. */
html:not(.js) .preloader { display: none; }

/* Judul dengan animasi per kata (dibuat oleh JS) */
.split-line { display: block; overflow: hidden; padding-bottom: .08em; }

.split-word {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  animation: word-up .95s var(--ease) forwards;
  animation-delay: var(--word-delay, 0ms);
}

/* ---------- 5. Preloader ---------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity .7s var(--ease), visibility .7s;
}

.preloader.is-done { opacity: 0; visibility: hidden; }

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: var(--gold-2);
}

.preloader__mark { width: 62px; height: 62px; animation: float-y-sm 2.4s ease-in-out infinite; }

.preloader__mark path,
.preloader__mark circle {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 1.6s var(--ease) forwards;
}

@keyframes draw { to { stroke-dashoffset: 0; } }

.preloader__bar {
  width: 150px;
  height: 2px;
  background: rgba(227, 194, 133, .2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-2);
  transition: width .3s linear;
}

.preloader__text {
  font-size: .7rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(227, 194, 133, .65);
}

/* ---------- 6. Progress bar ------------------------------------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 120;
}

/* ---------- 7. Header & navigasi -------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: height .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 250, 247, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.header.is-stuck { --header-h: 68px; box-shadow: var(--shadow-sm); }
.header.is-stuck::before { opacity: 1; }
.header.is-hidden { transform: translateY(-104%); }
.header { transition: transform .5s var(--ease), height .45s var(--ease); }

.header__inner {
  position: relative;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand__mark {
  width: 40px;
  height: 40px;
  color: var(--gold);
  transition: transform .6s var(--ease-back);
}

.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

.brand__sub {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: none; }

@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 4px; }
}

.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-pill);
  transition: color .35s var(--ease);
}

.nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gold-soft);
  transform: scale(.6);
  opacity: 0;
  transition: transform .45s var(--ease-back), opacity .35s var(--ease);
}

.nav__link:hover { color: var(--gold); }
.nav__link:hover::before { transform: scale(1); opacity: 1; }

.nav__link.is-active { color: var(--gold); font-weight: 600; }
.nav__link.is-active::before { transform: scale(1); opacity: 1; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__cta { display: none; }

@media (min-width: 768px) { .header__cta { display: inline-flex; } }

.header__phone {
  display: none;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 1200px) { .header__phone { display: inline-flex; } }

.header__phone .ico { width: 19px; height: 19px; color: var(--gold); }

.burger {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

@media (min-width: 1024px) { .burger { display: none; } }

.burger:hover { background: var(--gold-soft); border-color: transparent; }
.burger span {
  display: block;
  width: 19px;
  height: 1.7px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger.is-open span:nth-child(1) { transform: translateY(6.7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.7px) rotate(-45deg); }

/* Drawer mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  padding: calc(var(--header-h) + 30px) 0 40px;
  clip-path: circle(0% at calc(100% - 46px) 42px);
  transition: clip-path .75s var(--ease);
  overflow-y: auto;
}

.drawer.is-open { clip-path: circle(150% at calc(100% - 46px) 42px); }

.drawer__list { display: flex; flex-direction: column; }

.drawer__item {
  border-bottom: 1px solid rgba(252, 250, 247, .09);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: var(--i-delay, 0ms);
}

.drawer.is-open .drawer__item { opacity: 1; transform: none; }

.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  transition: color .35s var(--ease), padding-left .35s var(--ease);
}

.drawer__link:hover { color: var(--gold-2); padding-left: 14px; }
.drawer__link small { font-size: .7rem; letter-spacing: .2em; color: var(--gold); font-family: var(--font-body); }

.drawer__foot { margin-top: 36px; display: grid; gap: 16px; }
.drawer__foot .btn { width: 100%; }

.drawer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(252, 250, 247, .7);
  font-size: .92rem;
}

.drawer__contact .ico { color: var(--gold-2); }

/* ---------- 8. Hero --------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 190px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero__bg {
  position: absolute;
  inset: -6%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 22s ease-in-out infinite alternate;
  transform: translate3d(calc(var(--px, 0) * -14px), calc(var(--py, 0) * -14px), 0);
  transition: transform .9s cubic-bezier(.2, .8, .3, 1);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 14, 19, .78) 0%, rgba(12, 14, 19, .48) 42%, rgba(12, 14, 19, .92) 100%),
    radial-gradient(1100px 620px at 18% 30%, rgba(185, 140, 70, .3), transparent 68%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .34;
  z-index: 1;
  animation: drift 18s ease-in-out infinite;
}

.hero__blob--1 { width: 460px; height: 460px; top: -12%; right: -6%; background: var(--gold); }
.hero__blob--2 { width: 380px; height: 380px; bottom: 4%; left: -8%; background: #4E6472; animation-duration: 24s; animation-direction: reverse; }

.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }

/* Kartu harga menjadi kolom kedua yang sejajar, bukan elemen melayang
   dengan koordinat kira-kira. */
@media (min-width: 1100px) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 256px;
    align-items: center;
    gap: 56px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 12px;
  border-radius: var(--radius-pill);
  background: rgba(252, 250, 247, .1);
  border: 1px solid rgba(252, 250, 247, .16);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold-3);
  animation: fade-up .9s var(--ease) both;
}

.hero__eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Di layar sempit, badge cukup memuat satu keterangan agar tidak
   terpecah menjadi dua baris. */
@media (max-width: 479px) {
  .hero__eyebrow-live { display: none; }
  .hero__eyebrow { padding-inline: 16px; }
}

.hero__eyebrow .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FCF97;
  margin-left: 4px;
}

.hero__eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #6FCF97;
  animation: pulse-ring 1.9s ease-out infinite;
}

.hero__title {
  margin: 24px 0 22px;
  color: #FCFAF7;
  font-size: clamp(2.7rem, 6.6vw, 4.7rem);
}

.hero__title em { font-style: italic; color: var(--gold-2); }

.hero__text {
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  color: rgba(252, 250, 247, .76);
  max-width: 54ch;
  animation: fade-up 1s .9s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  animation: fade-up 1s 1.05s var(--ease) both;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(252, 250, 247, .14);
  animation: fade-up 1s 1.2s var(--ease) both;
}

.hero__meta-item { display: flex; align-items: center; gap: 11px; font-size: .9rem; color: rgba(252, 250, 247, .78); }
.hero__meta-item .ico { color: var(--gold-2); }
.hero__meta-item b { color: #FCFAF7; font-weight: 600; }

/* Kartu harga */
.hero__card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(252, 250, 247, .1);
  border: 1px solid rgba(252, 250, 247, .2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #FCFAF7;
  animation: fade-up 1s 1.35s var(--ease) both, float-y 6s 2.4s ease-in-out infinite;
  display: none;
}

@media (min-width: 1100px) { .hero__card { display: block; } }

.hero__card .label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero__card .price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 6px 0 2px;
}

.hero__card .note { font-size: .82rem; color: rgba(252, 250, 247, .66); }

.hero__card .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(252, 250, 247, .16);
  font-size: .82rem;
}

/* ---------- 9. Search bar (cek ketersediaan) -------------------- */
.searchbar {
  position: relative;
  z-index: 5;
  margin-top: -110px;
}

.searchbar__box {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.searchbar__box:hover { transform: translateY(-4px); }

@media (min-width: 900px) {
  .searchbar__box { grid-template-columns: repeat(4, 1fr) auto; align-items: stretch; }
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background .35s var(--ease);
}

.field:hover { background: var(--paper-2); }

.field + .field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line);
}

@media (max-width: 899px) { .field + .field::before { display: none; } }

.field__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field__label .ico { width: 15px; height: 15px; color: var(--gold); }

.field__control {
  border: 0;
  background: none;
  padding: 2px 0;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
  outline: none;
  appearance: none;
}

.field__control::-webkit-calendar-picker-indicator { opacity: .35; cursor: pointer; }

.searchbar__submit { padding: 0 8px; display: grid; align-items: center; }
.searchbar__submit .btn { height: 100%; min-height: 58px; }

/* ---------- 10. Marquee ----------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  background: var(--paper);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-inline: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  color: var(--ink);
  white-space: nowrap;
}

.marquee__item .ico { color: var(--gold); }
.marquee__item::after { content: "\2022"; margin-left: 26px; color: var(--gold); }

/* ---------- 11. Tentang & statistik ----------------------------- */
.about__grid {
  display: grid;
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

@media (min-width: 992px) { .about__grid { grid-template-columns: 1fr 1.05fr; } }

/* Semua elemen berlapis tetap berada di dalam kolomnya sendiri —
   tidak ada offset negatif yang membuat gambar keluar dari kontainer. */
.about__media {
  position: relative;
  padding-bottom: 72px;
}

.about__img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.about__img-main img,
.about__img-sub img { width: 100%; height: 100%; object-fit: cover; }

.about__img-main img { transition: transform 1.4s var(--ease); }
.about__media:hover .about__img-main img { transform: scale(1.06); }

.about__img-sub {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
  animation: float-y 7s ease-in-out infinite;
}

.about__badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 19px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: float-y 5.5s .6s ease-in-out infinite;
}

.about__badge .ico { color: var(--gold); }
.about__badge b { display: block; font-size: .95rem; color: var(--ink); }
.about__badge span { font-size: .76rem; color: var(--muted); }

.about__body { display: flex; flex-direction: column; gap: 26px; }

.about__points { display: grid; gap: 18px; margin-top: 4px; }

@media (min-width: 620px) { .about__points { grid-template-columns: 1fr 1fr; } }

.about__point {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--paper-2);
  border: 1px solid transparent;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}

.about__point:hover { transform: translateY(-5px); background: var(--paper); border-color: var(--line); box-shadow: var(--shadow-sm); }
.about__point--standalone { width: 100%; max-width: 440px; }
.about__point .ico { color: var(--gold); }
.about__point b { display: block; margin-bottom: 3px; color: var(--ink); }
.about__point p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* Statistik */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(252, 250, 247, .12);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.stat {
  background: var(--ink);
  padding: clamp(28px, 3.6vw, 44px) 24px;
  text-align: center;
  transition: background .5s var(--ease);
}

.stat:hover { background: var(--ink-2); }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1;
  background: linear-gradient(100deg, var(--gold-2), var(--gold-3) 45%, var(--gold-2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

.stat__label {
  margin-top: 12px;
  font-size: .84rem;
  color: rgba(232, 229, 224, .62);
  letter-spacing: .02em;
}

/* ---------- 12. Kamar ------------------------------------------- */
.rooms__grid {
  display: grid;
  gap: 26px;
}

@media (min-width: 700px)  { .rooms__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .rooms__grid { grid-template-columns: repeat(4, 1fr); } }

.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(var(--lift, 0));
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.room-card:hover { --lift: -8px; box-shadow: var(--shadow-lg); border-color: transparent; }

.room-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-3);
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.room-card:hover .room-card__media img { transform: scale(1.1); }

.room-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(12, 14, 19, .62) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.room-card:hover .room-card__media::after { opacity: 1; }

.room-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.room-card__quick {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(252, 250, 247, .92);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.room-card:hover .room-card__quick { opacity: 1; transform: none; }
.room-card__quick span { display: inline-flex; align-items: center; gap: 6px; }
.room-card__quick .ico { width: 15px; height: 15px; color: var(--gold); }

.room-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px 26px;
  flex: 1;
}

.room-card__name { font-family: var(--font-display); font-size: 1.32rem; color: var(--ink); }
.room-card__tagline { font-size: .86rem; color: var(--muted); line-height: 1.6; }

.room-card__amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }

.room-card__amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--paper-2);
  font-size: .74rem;
  color: var(--muted);
  transition: background .35s var(--ease), color .35s var(--ease);
}

.room-card__amenity:hover { background: var(--gold-soft); color: var(--gold); }
.room-card__amenity .ico { width: 14px; height: 14px; }

.room-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
}

.room-card__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1.1; }
.room-card__price small { display: block; font-family: var(--font-body); font-size: .74rem; color: var(--muted); font-weight: 500; }
.room-card__before { font-size: .82rem; color: var(--muted); text-decoration: line-through; }

.room-card__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: background .4s var(--ease), transform .4s var(--ease-back), color .4s var(--ease);
}

.room-card__book:hover { background: var(--gold); color: var(--ink); transform: rotate(-45deg) scale(1.1); }
.room-card__book .ico { width: 19px; height: 19px; }

/* ---------- 13. Fasilitas --------------------------------------- */
.amenities__grid { display: grid; gap: 18px; }

@media (min-width: 640px)  { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .amenities__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .amenities__grid { grid-template-columns: repeat(4, 1fr); } }

.amenity {
  position: relative;
  padding: 28px 24px 30px;
  border-radius: var(--radius-md);
  background: rgba(252, 250, 247, .04);
  border: 1px solid rgba(252, 250, 247, .1);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}

.amenity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 0%), rgba(185, 140, 70, .22), transparent 62%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.amenity:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 194, 133, .38);
  background: rgba(252, 250, 247, .07);
}

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

.amenity__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(227, 194, 133, .14);
  color: var(--gold-2);
  margin-bottom: 18px;
  transition: transform .55s var(--ease-back), background .45s var(--ease);
}

.amenity:hover .amenity__icon { transform: translateY(-4px) rotate(-6deg); background: rgba(227, 194, 133, .24); }

.amenity__name { position: relative; font-size: 1.02rem; font-weight: 600; color: #FBF8F3; margin-bottom: 7px; }
.amenity__desc { position: relative; font-size: .85rem; line-height: 1.6; color: rgba(232, 229, 224, .6); }

.amenity__index {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(252, 250, 247, .16);
}

/* ---------- 14. Galeri ------------------------------------------ */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  position: relative;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: color .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
  isolation: isolate;
  text-transform: capitalize;
}

.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}

.filter-btn:hover { color: var(--paper); border-color: transparent; }
.filter-btn:hover::before { transform: translateY(0); }
.filter-btn.is-active { color: var(--paper); border-color: transparent; }
.filter-btn.is-active::before { transform: translateY(0); background: linear-gradient(120deg, var(--gold), var(--gold-2)); }
.filter-btn.is-active { color: var(--ink); }

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

@media (min-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery__item:nth-child(4) { grid-column: span 2; }
  .gallery__item:nth-child(6) { grid-column: span 2; }
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--paper-3);
  transition: opacity .5s var(--ease), transform .5s var(--ease), filter .5s var(--ease);
}

@media (min-width: 900px) { .gallery__item { aspect-ratio: auto; } }

.gallery__item.is-hidden {
  opacity: 0;
  transform: scale(.86);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}

.gallery__item:hover img { transform: scale(1.09); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 14, 19, .82) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__title {
  color: #FCFAF7;
  font-weight: 600;
  font-size: .95rem;
  transform: translateY(12px);
  transition: transform .5s var(--ease);
}

.gallery__cat {
  color: var(--gold-2);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: transform .5s .05s var(--ease);
}

.gallery__item:hover .gallery__title,
.gallery__item:hover .gallery__cat { transform: none; }

.gallery__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(252, 250, 247, .92);
  color: var(--ink);
  transform: scale(0) rotate(-90deg);
  transition: transform .5s var(--ease-back);
}

.gallery__item:hover .gallery__zoom { transform: scale(1) rotate(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 14, 19, .93);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__figure {
  max-width: min(1000px, 92vw);
  transform: scale(.9);
  opacity: 0;
  transition: transform .55s var(--ease-back), opacity .45s var(--ease);
}

.lightbox.is-open .lightbox__figure { transform: none; opacity: 1; }

.lightbox__figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__caption {
  margin-top: 16px;
  text-align: center;
  color: rgba(252, 250, 247, .8);
  font-size: .92rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(252, 250, 247, .1);
  border: 1px solid rgba(252, 250, 247, .18);
  color: #FCFAF7;
  transition: background .35s var(--ease), transform .35s var(--ease-back);
}

.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); color: var(--ink); transform: scale(1.1); }

.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; margin-top: -26px; }
.lightbox__nav--next { right: 24px; top: 50%; margin-top: -26px; }

/* ---------- 15. Testimoni --------------------------------------- */
.testimonials { position: relative; overflow: hidden; }

.testimonials__viewport { overflow: hidden; }

.testimonials__track {
  display: flex;
  transition: transform .8s var(--ease);
}

.testimonial {
  flex: 0 0 100%;
  padding: 6px;
}

@media (min-width: 860px) { .testimonial { flex-basis: 50%; } }

.testimonial__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(28px, 3.4vw, 42px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.testimonial__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.testimonial__quote { width: 40px; height: 40px; color: var(--gold-3); }

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink);
}

.testimonial__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}

.testimonial__name { font-weight: 600; color: var(--ink); }
.testimonial__origin { font-size: .82rem; color: var(--muted); }
.testimonial__meta { margin-left: auto; text-align: right; }
.testimonial__date { display: block; font-size: .76rem; color: var(--muted); margin-top: 4px; }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.carousel__btn {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease-back), border-color .4s var(--ease);
}

.carousel__btn:hover { background: var(--ink); color: var(--paper); border-color: transparent; transform: scale(1.08); }
.carousel__btn:disabled { opacity: .35; pointer-events: none; }

.carousel__dots { display: flex; gap: 8px; }

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  transition: width .45s var(--ease), background .45s var(--ease);
}

.carousel__dot.is-active { width: 26px; border-radius: 5px; background: var(--gold); }

/* ---------- 16. Form reservasi ---------------------------------- */
.booking__grid { display: grid; gap: clamp(32px, 5vw, 60px); align-items: start; }

@media (min-width: 992px) { .booking__grid { grid-template-columns: .85fr 1.15fr; } }

.booking__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.booking__aside > * { max-width: 100%; }
.booking__perks,
.booking__contact-card { width: 100%; }

.booking__perks { display: grid; gap: 14px; }

.booking__perk {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: .92rem;
  color: var(--muted);
}

.booking__perk .ico { color: var(--gold); margin-top: 2px; }
.booking__perk b { color: var(--ink); display: block; font-weight: 600; }

.section--dark .booking__perk { color: rgba(232, 229, 224, .78); }
.section--dark .booking__perk .ico { color: var(--gold-2); }
.section--dark .booking__perk b { color: #FBF8F3; }

.booking__contact-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(252, 250, 247, .05);
  border: 1px solid rgba(252, 250, 247, .12);
}

.booking__contact-card p { font-size: .88rem; color: rgba(232, 229, 224, .66); margin-bottom: 14px; }

.form {
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.form__grid { display: grid; gap: 18px; }

@media (min-width: 620px) { .form__grid { grid-template-columns: 1fr 1fr; } }

.form__row--full { grid-column: 1 / -1; }

.input-group { position: relative; display: flex; flex-direction: column; gap: 7px; }

.input-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}

.input-group label .req { color: #C0563F; }

.input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.input::placeholder { color: #A8A099; }

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  background: var(--paper);
}

.input:user-invalid { border-color: #C0563F; }

textarea.input { min-height: 118px; resize: vertical; }
select.input { appearance: none; background-image: none; cursor: pointer; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.7px solid var(--muted);
  border-bottom: 1.7px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form__note { font-size: .8rem; color: var(--muted); }

.form__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  border: 1px dashed var(--line-2);
  font-size: .88rem;
}

.form__summary b { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }

.form__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn.is-loading { pointer-events: none; color: transparent; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(252, 250, 247, .3);
  border-top-color: #FCFAF7;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.btn--gold.is-loading::after { border-color: rgba(18, 21, 27, .25); border-top-color: var(--ink); }

.form__result {
  display: none;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  animation: fade-up .55s var(--ease) both;
}

.form__result.is-shown { display: flex; }
.form__result.is-ok { background: rgba(58, 138, 89, .1); color: #2C6B45; }
.form__result.is-error { background: rgba(192, 86, 63, .1); color: #9B4331; }
.form__result b { display: block; margin-bottom: 3px; }

/* ---------- 17. FAQ --------------------------------------------- */
.faq__grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }

@media (min-width: 992px) { .faq__grid { grid-template-columns: .8fr 1.2fr; } }

.faq__list { display: grid; gap: 12px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}

.faq-item.is-open { border-color: var(--gold-2); box-shadow: var(--shadow-sm); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .35s var(--ease);
}

.faq-item__q:hover { color: var(--gold); }

.faq-item__icon {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  transition: transform .5s var(--ease-back), background .4s var(--ease), color .4s var(--ease);
}

.faq-item.is-open .faq-item__icon { transform: rotate(135deg); background: var(--gold); color: var(--ink); }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}

.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }

.faq-item__a > div { overflow: hidden; }

.faq-item__a p {
  padding: 0 22px 22px;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
}

.faq__cta {
  align-self: stretch;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #E8E5E0;
  position: relative;
  overflow: hidden;
}

.faq__cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 140, 70, .5), transparent 70%);
  animation: drift 14s ease-in-out infinite;
}

.faq__cta h3 { position: relative; color: #FBF8F3; margin-bottom: 12px; }
.faq__cta p { position: relative; font-size: .92rem; color: rgba(232, 229, 224, .7); margin-bottom: 22px; }
.faq__cta .btn { position: relative; }

/* ---------- 18. Lokasi ------------------------------------------ */
.location__grid { display: grid; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

@media (min-width: 900px) { .location__grid { grid-template-columns: .9fr 1.1fr; } }

.location__info {
  background: var(--ink);
  color: #E8E5E0;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location__list { display: grid; gap: 22px; }

.location__row { display: flex; gap: 16px; }

.location__row .ico { color: var(--gold-2); margin-top: 3px; }
.location__row b { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 5px; }
.location__row p, .location__row a { font-size: .95rem; color: rgba(232, 229, 224, .82); line-height: 1.6; }
.location__row a { transition: color .3s var(--ease); }
.location__row a:hover { color: var(--gold-2); }

.location__map { position: relative; min-height: 340px; background: var(--paper-3); }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.24) contrast(1.04); }

.socials { display: flex; gap: 10px; }

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 247, .18);
  color: rgba(252, 250, 247, .8);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease-back), border-color .4s var(--ease);
}

.social-link:hover { background: var(--gold); color: var(--ink); border-color: transparent; transform: translateY(-4px); }

/* ---------- 19. Footer & floating ------------------------------- */
.footer { background: var(--ink); color: rgba(232, 229, 224, .68); padding-top: clamp(56px, 6vw, 84px); }

.footer__top {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(252, 250, 247, .1);
}

@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }

.footer .brand__name { color: #FBF8F3; }
.footer .brand__sub { color: rgba(232, 229, 224, .5); }
.footer__about { margin-top: 18px; font-size: .9rem; line-height: 1.7; max-width: 34ch; }

.footer__title {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.footer__links { display: grid; gap: 11px; }

.footer__links a {
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .35s var(--ease), transform .35s var(--ease);
}

.footer__links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold-2);
  transition: width .35s var(--ease);
}

.footer__links a:hover { color: #FBF8F3; }
.footer__links a:hover::before { width: 14px; }

.footer__note { font-size: .9rem; line-height: 1.7; }
.footer__socials { margin-top: 22px; }

.newsletter { display: flex; gap: 8px; margin-top: 16px; }

.newsletter input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(252, 250, 247, .18);
  background: rgba(252, 250, 247, .05);
  color: #FBF8F3;
  font-size: .9rem;
  outline: none;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.newsletter input::placeholder { color: rgba(232, 229, 224, .42); }
.newsletter input:focus { border-color: var(--gold-2); background: rgba(252, 250, 247, .08); }

.newsletter button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  transition: transform .4s var(--ease-back), background .35s var(--ease);
}

.newsletter button:hover { transform: scale(1.08) rotate(-8deg); background: var(--gold-2); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 30px;
  font-size: .84rem;
}

.footer__bottom a:hover { color: var(--gold-2); }

/* Floating actions */
.floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: transform .45s var(--ease-back), opacity .4s var(--ease), visibility .4s;
}

.float-btn:hover { transform: scale(1.1) translateY(-2px); }

.float-btn--wa { background: #25D366; color: #fff; }

.float-btn--wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse-ring 2.2s ease-out infinite;
}

.float-btn--top {
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: scale(.6);
}

.float-btn--top.is-shown { opacity: 1; visibility: visible; transform: none; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #FBF8F3;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 120%);
  transition: transform .55s var(--ease-back);
  max-width: calc(100% - 32px);
}

.toast.is-shown { transform: translate(-50%, 0); }
.toast .ico { color: var(--gold-2); }
.toast.is-error .ico { color: #E9856F; }

/* Halaman setup (bila DB belum siap) */
.setup {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--paper-2);
}

.setup__card {
  max-width: 680px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  animation: fade-up .7s var(--ease) both;
}

.setup__card h1 { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); margin-bottom: 12px; }
.setup__card p { color: var(--muted); margin-bottom: 18px; }
.setup__card ol { padding-left: 20px; list-style: decimal; display: grid; gap: 10px; color: var(--text); }
.setup__hint { margin-top: 22px; }

.setup__card code {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--paper-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .86rem;
}

.setup__error {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(192, 86, 63, .08);
  color: #9B4331;
  font-size: .85rem;
  word-break: break-word;
}

/* ---------- 20. Responsive -------------------------------------- */
@media (max-width: 1023px) {
  :root { --header-h: 74px; }
  .hero { padding-bottom: 170px; }
}

@media (max-width: 767px) {
  :root { --radius: 20px; }
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 48px) 150px; }
  .hero__meta { gap: 12px 22px; }
  .searchbar { margin-top: -96px; }
  .about__media { padding-bottom: 56px; }
  .about__img-sub { right: 12px; width: 46%; }
  .about__badge { left: 14px; top: 14px; padding: 11px 16px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .floating { right: 14px; bottom: 14px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__close { top: 14px; right: 14px; }
}

/* ---------- 21. Reduced motion ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .split-word { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
}

/* Floating WhatsApp Call Center Widget */
.wa-callcenter-floating {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

@media (max-width: 767px) {
  .wa-callcenter-floating {
    bottom: 15px !important;
    right: 15px !important;
  }
}

/* ==================================================================
   DEKORASI BATIK KAWUNG KEEMASAN SANGAT KAYA & DOMINAN (GOLDEN BATIK KAWUNG)
   ================================================================== */

/* 1. Motif Seamless Batik Kawung Emas Dominan pada Hero Banner */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='%23e3c285' stroke-width='1.5' stroke-opacity='0.38'%3E%3Ccircle cx='45' cy='45' r='27'/%3E%3Cellipse cx='45' cy='27' rx='11' ry='18' fill='%23b98c46' fill-opacity='0.16'/%3E%3Cellipse cx='45' cy='63' rx='11' ry='18' fill='%23b98c46' fill-opacity='0.16'/%3E%3Cellipse cx='27' cy='45' rx='18' ry='11' fill='%23b98c46' fill-opacity='0.16'/%3E%3Cellipse cx='63' cy='45' rx='18' ry='11' fill='%23b98c46' fill-opacity='0.16'/%3E%3Ccircle cx='45' cy='45' r='5' fill='%23f0dfbe' fill-opacity='0.7'/%3E%3Ccircle cx='0' cy='0' r='27'/%3E%3Ccircle cx='90' cy='0' r='27'/%3E%3Ccircle cx='0' cy='90' r='27'/%3E%3Ccircle cx='90' cy='90' r='27'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

/* 2. Motif Seamless Batik Kawung Emas Jelas pada Seluruh Seksi Halaman Utama */
.section,
.section--paper,
#properti,
#tentang,
#kamar,
#fasilitas,
#galeri,
#lokasi,
#ulasan,
#faq {
  position: relative;
}

.section::before,
.section--paper::before,
#properti::before,
#tentang::before,
#kamar::before,
#fasilitas::before,
#galeri::before,
#lokasi::before,
#ulasan::before,
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23b98c46' stroke-width='1.4' stroke-opacity='0.22'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Cellipse cx='50' cy='30' rx='12' ry='20' fill='%23e3c285' fill-opacity='0.09'/%3E%3Cellipse cx='50' cy='70' rx='12' ry='20' fill='%23e3c285' fill-opacity='0.09'/%3E%3Cellipse cx='30' cy='50' rx='20' ry='12' fill='%23e3c285' fill-opacity='0.09'/%3E%3Cellipse cx='70' cy='50' rx='20' ry='12' fill='%23e3c285' fill-opacity='0.09'/%3E%3Ccircle cx='50' cy='50' r='5' fill='%23b98c46' fill-opacity='0.4'/%3E%3Ccircle cx='0' cy='0' r='30'/%3E%3Ccircle cx='100' cy='0' r='30'/%3E%3Ccircle cx='0' cy='100' r='30'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.container {
  position: relative;
  z-index: 1;
}

/* 3. Garis Ornamen Pita Batik Kawung Emas Antar Seksi */
.section::after,
.section--paper::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='20' viewBox='0 0 50 20'%3E%3Cg fill='none' stroke='%23b98c46' stroke-width='1.4' stroke-opacity='0.65'%3E%3Ccircle cx='25' cy='10' r='8'/%3E%3Cellipse cx='25' cy='5' rx='3' ry='5' fill='%23e3c285' fill-opacity='0.45'/%3E%3Cellipse cx='25' cy='15' rx='3' ry='5' fill='%23e3c285' fill-opacity='0.45'/%3E%3Cellipse cx='20' cy='10' rx='5' ry='3' fill='%23e3c285' fill-opacity='0.45'/%3E%3Cellipse cx='30' cy='10' rx='5' ry='3' fill='%23e3c285' fill-opacity='0.45'/%3E%3Ccircle cx='25' cy='10' r='1.8' fill='%23b98c46'/%3E%3Ccircle cx='0' cy='10' r='8'/%3E%3Ccircle cx='50' cy='10' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.7;
}

/* 4. Ornamen Vektor Batik Kawung Emas pada Sub-judul Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23b98c46' stroke-width='1.6'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cellipse cx='12' cy='6.5' rx='3.5' ry='5.5' fill='%23e3c285' fill-opacity='0.7'/%3E%3Cellipse cx='12' cy='17.5' rx='3.5' ry='5.5' fill='%23e3c285' fill-opacity='0.7'/%3E%3Cellipse cx='6.5' cy='12' rx='5.5' ry='3.5' fill='%23e3c285' fill-opacity='0.7'/%3E%3Cellipse cx='17.5' cy='12' rx='5.5' ry='3.5' fill='%23e3c285' fill-opacity='0.7'/%3E%3Ccircle cx='12' cy='12' r='2.5' fill='%23b98c46'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 5. Motif Kawung Emas pada Kartu-Kartu (Room Cards, Hotel Cards, Searchbar) */
.room-card,
.searchbar,
.hotel-card,
.testimonial-card,
.summary-box {
  border: 1.5px solid var(--gold-soft) !important;
  box-shadow: 0 10px 30px rgba(185, 140, 70, 0.12) !important;
  position: relative;
}

.room-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='none' stroke='%23b98c46' stroke-width='1.5'%3E%3Ccircle cx='16' cy='16' r='12'/%3E%3Cellipse cx='16' cy='8' rx='4' ry='8' fill='%23e3c285' fill-opacity='0.6'/%3E%3Cellipse cx='16' cy='24' rx='4' ry='8' fill='%23e3c285' fill-opacity='0.6'/%3E%3Cellipse cx='8' cy='16' rx='8' ry='4' fill='%23e3c285' fill-opacity='0.6'/%3E%3Cellipse cx='24' cy='16' rx='8' ry='4' fill='%23e3c285' fill-opacity='0.6'/%3E%3Ccircle cx='16' cy='16' r='3' fill='%23b98c46'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 6. Garis Pembatas Gradasi Emas Motif Batik Kawung Header & Footer */
.header {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b98c46' stroke-width='1' stroke-opacity='0.08'%3E%3Ccircle cx='40' cy='40' r='24'/%3E%3C/g%3E%3C/svg%3E");
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, transparent, var(--gold, #b98c46), var(--gold-2, #e3c285), var(--gold, #b98c46), transparent) 1;
}

.footer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b98c46' stroke-width='1' stroke-opacity='0.08'%3E%3Ccircle cx='40' cy='40' r='24'/%3E%3C/g%3E%3C/svg%3E");
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, transparent, var(--gold, #b98c46), var(--gold-2, #e3c285), var(--gold, #b98c46), transparent) 1;
}
