/* ===========================================================
   Bintang Darmawan Villa — design tokens & components
   Three visual directions via [data-theme] on <html>:
     serene (default) · tropic · lux
   =========================================================== */

/* ---------- base tokens (shared) ---------- */
:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(20, 40, 50, .06), 0 2px 8px rgba(20, 40, 50, .05);
  --sh-2: 0 6px 16px rgba(20, 40, 50, .08), 0 2px 6px rgba(20, 40, 50, .05);
  --sh-3: 0 18px 50px rgba(20, 40, 50, .16), 0 6px 18px rgba(20, 40, 50, .08);
  --sh-pop: 0 24px 70px rgba(15, 35, 45, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* defaults overridden per theme */
  --bg: #f7f6f1;
  --surface: #ffffff;
  --surface-2: #f1efe8;
  --ink: #213a42;
  --ink-soft: #4d6068;
  --muted: #8a979b;
  --line: #e7e3da;
  --primary: #2f6d80;
  --primary-deep: #234e5c;
  --primary-ink: #ffffff;
  --primary-tint: #eaf2f3;
  --accent: #c9a45a;
  --accent-ink: #5d4716;
  --accent-tint: #f6efdd;
  --hero-ink: #ffffff;
  --price: #1d7a5e;
}

/* ---------- THEME: Serene (boutique airy, sea-blue) ---------- */
:root[data-theme="serene"] {
  --bg: #f6f6f2;
  --surface: #ffffff;
  --surface-2: #eef1f0;
  --ink: #1f3a43;
  --ink-soft: #4f6168;
  --muted: #8a979b;
  --line: #e6e6df;
  --primary: #2f6d80;
  --primary-deep: #214e5c;
  --primary-ink: #ffffff;
  --primary-tint: #e8f1f2;
  --accent: #c6a058;
  --accent-ink: #5b4514;
  --accent-tint: #f5eeda;
  --price: #1d7a5e;
}

/* ---------- THEME: Tropic (warm earthy green) ---------- */
:root[data-theme="tropic"] {
  --bg: #f3eee2;
  --surface: #fffdf7;
  --surface-2: #ece4d2;
  --ink: #233129;
  --ink-soft: #4d5a4e;
  --muted: #8b8a78;
  --line: #e3dac6;
  --primary: #3f6b4c;
  --primary-deep: #2c4d37;
  --primary-ink: #fbf7 ;
  --primary-ink: #f7f3e8;
  --primary-tint: #e6ede2;
  --accent: #c08a4a;
  --accent-ink: #5a3c16;
  --accent-tint: #f3e6d2;
  --price: #3f6b4c;
}

/* ---------- THEME: Lux (deep teal + warm gold, dramatic) ---------- */
:root[data-theme="lux"] {
  --bg: #f4f2ee;
  --surface: #ffffff;
  --surface-2: #ebe7e0;
  --ink: #19262b;
  --ink-soft: #46555a;
  --muted: #8a9296;
  --line: #e4ded3;
  --primary: #1f3d46;
  --primary-deep: #142b32;
  --primary-ink: #f4ecda;
  --primary-tint: #e7edec;
  --accent: #c79a4e;
  --accent-ink: #5a4112;
  --accent-tint: #f4ead1;
  --price: #1b7a5d;
}

/* ===========================================================
   reset / base
   =========================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }

.serif { font-family: var(--font-display); font-weight: 500; letter-spacing: 0; }
.mono { font-family: var(--font-mono); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary); display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; }
.eyebrow.center::after { content: ""; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 5vw, 50px); line-height: 1.05; letter-spacing: -0.015em;
  margin-top: 16px;
}
.section-sub { color: var(--ink-soft); margin-top: 14px; font-size: 17px; }

/* ===========================================================
   buttons
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn .ico, .btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: var(--primary-ink); box-shadow: var(--sh-2); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: var(--sh-3); transform: translateY(-1px); }
.btn-gold { background: var(--accent); color: var(--accent-ink); box-shadow: var(--sh-2); }
.btn-gold:hover { filter: brightness(1.04); transform: translateY(-1px); box-shadow: var(--sh-3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); }
.btn-wa { background: #1faa55; color: #fff; }
.btn-wa:hover { background: #1a934a; transform: translateY(-1px); box-shadow: var(--sh-3); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ===========================================================
   header / nav
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.solid { background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: blur(14px) saturate(1.4); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 26px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; flex: 0 0 auto;
  background: var(--primary); color: var(--primary-ink);
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
}
.brand-name { font-family: var(--font-display); font-size: 21px; font-weight: 600; line-height: 1; letter-spacing: 0; }
.brand-sub { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.site-header:not(.solid) .nav { color: var(--hero-ink); }
.site-header:not(.solid) .brand-sub { color: rgba(255,255,255,.7); }
.site-header:not(.solid) .nav-links a { color: rgba(255,255,255,.92); }
.site-header:not(.solid) .lang-toggle { border-color: rgba(255,255,255,.35); color: #fff; }
.site-header:not(.solid) .icon-btn { color: #fff; border-color: rgba(255,255,255,.3); }

.nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav-links a { position: relative; padding: 6px 0; opacity: .9; transition: opacity .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent); transition: width .25s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 3px; font-size: 12px; font-weight: 700; letter-spacing: .04em; overflow: hidden;
}
.lang-toggle button { background: transparent; border: none; color: inherit; padding: 5px 11px; border-radius: var(--r-pill); opacity: .65; }
.lang-toggle button.on { background: var(--accent); color: var(--accent-ink); opacity: 1; }
.icon-btn { display: none; }

.menu-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav { gap: 14px; }
  .menu-toggle {
    display: inline-grid; place-items: center; width: 42px; height: 42px;
    border-radius: var(--r-pill); border: 1px solid var(--line); background: transparent; color: inherit;
  }
  .site-header:not(.solid) .menu-toggle { border-color: rgba(255,255,255,.3); color: #fff; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.drawer.open { display: block; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(15,30,35,.5); backdrop-filter: blur(3px); }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: var(--surface); padding: 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--sh-pop);
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a { padding: 14px 8px; font-size: 18px; border-bottom: 1px solid var(--line); font-family: var(--font-display); }
.drawer-close { align-self: flex-end; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); display: grid; place-items: center; margin-bottom: 8px; }

/* ===========================================================
   hero
   =========================================================== */
.hero { position: relative; margin-top: -72px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media image-slot { width: 100%; height: 100%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,28,33,.55) 0%, rgba(12,28,33,.12) 26%, rgba(12,28,33,.25) 62%, rgba(12,28,33,.72) 100%);
}
.hero-inner {
  position: relative; z-index: 2; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 120px; padding-bottom: 40px; color: var(--hero-ink);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(8px);
  padding: 8px 15px; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--accent); }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 8.5vw, 104px); line-height: .98; letter-spacing: -0.02em;
  margin-top: 20px; max-width: 14ch; text-wrap: balance;
}
.hero-sub { font-size: clamp(16px, 2.2vw, 20px); max-width: 46ch; margin-top: 18px; color: rgba(255,255,255,.9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* availability checker */
.checker {
  position: relative; z-index: 3; margin-top: 30px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-3); padding: 14px;
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 10px; align-items: end;
}
.checker-field { display: flex; flex-direction: column; gap: 6px; padding: 6px 10px; border-radius: var(--r-md); position: relative; }
.checker-field + .checker-field::before { content: ""; position: absolute; left: -5px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.checker-field label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.checker-field label svg { width: 13px; height: 13px; color: var(--primary); }
.checker-field input, .checker-field select {
  border: none; background: transparent; font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink);
  padding: 2px 0; outline: none; width: 100%; appearance: none; cursor: pointer;
}
.checker-field input::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }
.checker-go { height: 100%; }
.checker-go .btn { height: 100%; padding-inline: 22px; }

@media (max-width: 760px) {
  .checker { grid-template-columns: 1fr 1fr; }
  .checker-field + .checker-field::before { display: none; }
  .checker-field { border: 1px solid var(--line); }
  .checker-go { grid-column: 1 / -1; }
  .checker-go .btn { width: 100%; padding-block: 15px; }
}

/* ===========================================================
   trust bar / best price
   =========================================================== */
.trustbar { background: var(--primary-deep); color: var(--primary-ink); }
.trustbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; padding-block: 16px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }
.trust-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); }
@media (max-width:680px){ .trust-sep{ display:none; } .trustbar .wrap{ gap:12px 24px; } }

/* ===========================================================
   why direct (features)
   =========================================================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 44px; }
.feature { background: var(--surface); padding: 30px 28px; transition: background .25s; }
.feature:hover { background: var(--primary-tint); }
.feature-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; }
.feature-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18px; font-weight: 600; margin-top: 18px; font-family: var(--font-sans); letter-spacing: -0.01em; }
.feature p { color: var(--ink-soft); font-size: 14.5px; margin: 8px 0 0; }
.feature.is-price .feature-ico { background: var(--accent-tint); color: var(--accent-ink); }
@media (max-width: 820px){ .features { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .features { grid-template-columns: 1fr; } }

/* ===========================================================
   rooms
   =========================================================== */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.room-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.room-media { position: relative; aspect-ratio: 4/3; }
.room-media image-slot { width: 100%; height: 100%; }
.room-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(6px);
  border-radius: var(--r-pill); padding: 6px 12px; font-size: 12px; font-weight: 700; letter-spacing: .03em;
  display: inline-flex; align-items: center; gap: 6px;
}
.room-tag svg { width: 13px; height: 13px; color: var(--primary); }
.room-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.room-name { font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.room-meta { display: flex; gap: 14px; color: var(--ink-soft); font-size: 13.5px; margin-top: 7px; }
.room-meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-meta svg { width: 15px; height: 15px; color: var(--muted); }
.room-amen { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.amen { font-size: 12px; color: var(--ink-soft); background: var(--surface-2); border-radius: var(--r-pill); padding: 5px 11px; }
.room-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.price-block { line-height: 1.1; }
.price-label { font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }
.price-amount { font-family: var(--font-display); font-size: 27px; font-weight: 600; color: var(--ink); }
.price-amount small { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--muted); }
.price-ota { font-size: 12px; color: var(--muted); text-decoration: line-through; }
@media (max-width: 900px){ .rooms-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .rooms-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   gallery
   =========================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; margin-top: 40px; }
.gallery-grid image-slot { width: 100%; height: 100%; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 760px){ .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; } .g-wide{ grid-column: span 2; } }

/* ===========================================================
   reviews
   =========================================================== */
.reviews-band { background: var(--surface); border-block: 1px solid var(--line); }
.reviews-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.rating-big { display: flex; align-items: center; gap: 16px; }
.rating-num { font-family: var(--font-display); font-size: 58px; font-weight: 600; line-height: 1; }
.rating-stars { display: flex; gap: 3px; color: var(--accent); }
.rating-stars svg { width: 18px; height: 18px; fill: currentColor; }
.rating-meta { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.review {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.review .qstars { display: flex; gap: 2px; color: var(--accent); }
.review .qstars svg { width: 15px; height: 15px; fill: currentColor; }
.review p { font-family: var(--font-display); font-size: 19px; line-height: 1.4; color: var(--ink); margin: 0; font-style: italic; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-av { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.review-name { font-weight: 600; font-size: 14.5px; }
.review-loc { font-size: 12.5px; color: var(--muted); }
@media (max-width: 880px){ .reviews-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   location
   =========================================================== */
.loc-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: stretch; margin-top: 40px; }
.loc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.loc-row { display: flex; gap: 14px; align-items: flex-start; }
.loc-row .lico { width: 40px; height: 40px; border-radius: 11px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.loc-row .lico svg { width: 19px; height: 19px; }
.loc-row h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.loc-row p { margin: 3px 0 0; font-size: 15.5px; font-weight: 500; }
.loc-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 340px; }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15); }
@media (max-width: 820px){ .loc-grid { grid-template-columns: 1fr; } .loc-map{ min-height: 280px; } }

/* ===========================================================
   footer
   =========================================================== */
.site-footer { background: var(--primary-deep); color: var(--primary-ink); padding-block: 64px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: var(--primary-ink); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.footer-col h5 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 48px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 13px; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   floating WhatsApp + back to book
   =========================================================== */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1faa55; color: #fff; border-radius: var(--r-pill);
  padding: 13px 18px 13px 15px; box-shadow: 0 10px 30px rgba(31,170,85,.4); font-weight: 600; font-size: 14.5px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.fab-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(31,170,85,.5); }
.fab-wa svg { width: 22px; height: 22px; }
.fab-wa .fab-label { white-space: nowrap; }
@media (max-width: 560px){ .fab-wa .fab-label { display: none; } .fab-wa { padding: 14px; } }

/* section utilities */
.section.tint { background: var(--surface); border-block: 1px solid var(--line); }
.split-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html{ scroll-behavior: auto; } }

/* ---- booking.css ---- */
/* ===========================================================
   Booking flow — slide-over panel, steps, summary, payment
   =========================================================== */
.booking-root { position: fixed; inset: 0; z-index: 150; display: none; }
.booking-root.open { display: block; }
.booking-scrim { position: absolute; inset: 0; background: rgba(12,26,31,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .35s var(--ease); }
.booking-root.open .booking-scrim { opacity: 1; }

.booking-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(560px, 100vw);
  background: var(--bg); box-shadow: var(--sh-pop);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .42s var(--ease);
}
.booking-root.open .booking-panel { transform: translateX(0); }

.booking-head {
  display: flex; align-items: center; gap: 14px; padding: 18px 24px;
  border-bottom: 1px solid var(--line); background: var(--surface); flex: 0 0 auto;
}
.booking-head .bh-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-right: auto; }
.booking-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); display: grid; place-items: center; }
.booking-close:hover { background: var(--surface-2); }
.booking-close svg { width: 18px; height: 18px; }

/* stepper */
.stepper { display: flex; align-items: center; gap: 8px; padding: 16px 24px; background: var(--surface); border-bottom: 1px solid var(--line); flex: 0 0 auto; }
.step-dot { display: flex; align-items: center; gap: 9px; opacity: .45; transition: opacity .3s; }
.step-dot .sd-num { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--ink-soft); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex: 0 0 auto; }
.step-dot .sd-label { font-size: 13px; font-weight: 600; }
.step-dot.active { opacity: 1; }
.step-dot.active .sd-num { background: var(--primary); border-color: var(--primary); color: var(--primary-ink); }
.step-dot.done { opacity: 1; }
.step-dot.done .sd-num { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.step-line { flex: 1; height: 1.5px; background: var(--line); }
@media (max-width: 480px){ .step-dot .sd-label { display: none; } }

.booking-body { flex: 1; overflow-y: auto; padding: 26px 24px 30px; }
.booking-foot { flex: 0 0 auto; padding: 16px 24px; border-top: 1px solid var(--line); background: var(--surface); display: flex; align-items: center; gap: 12px; }
.foot-total { margin-right: auto; line-height: 1.15; }
.foot-total .ft-label { font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }
.foot-total .ft-amount { font-family: var(--font-display); font-size: 24px; font-weight: 600; }

.step-pane { display: none; animation: fade .35s var(--ease); }
.step-pane.show { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.field-label { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; display: block; }
.field { margin-bottom: 18px; }
.input, .select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); font-family: inherit; font-size: 15.5px; color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.input:focus, .select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-tint); }
.input.err { border-color: #d4574e; box-shadow: 0 0 0 3px rgba(212,87,78,.12); }
.err-msg { color: #c5443b; font-size: 12.5px; margin-top: 6px; display: none; }
.input.err ~ .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* room radio selector */
.room-pick { display: flex; flex-direction: column; gap: 12px; }
.room-opt {
  display: flex; align-items: center; gap: 14px; padding: 12px; border: 1.5px solid var(--line);
  border-radius: var(--r-md); cursor: pointer; background: var(--surface); transition: border-color .2s, background .2s;
}
.room-opt:hover { border-color: var(--primary); }
.room-opt.sel { border-color: var(--primary); background: var(--primary-tint); }
.room-opt .ro-thumb { width: 64px; height: 56px; border-radius: 10px; flex: 0 0 auto; }
.room-opt .ro-thumb image-slot { width: 100%; height: 100%; }
.room-opt .ro-info { flex: 1; }
.room-opt .ro-name { font-weight: 600; font-size: 15.5px; }
.room-opt .ro-cap { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.room-opt .ro-price { text-align: right; font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.room-opt .ro-price small { display: block; font-family: var(--font-sans); font-size: 11px; color: var(--muted); font-weight: 500; }
.room-opt .ro-check { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: 0 0 auto; }
.room-opt.sel .ro-check { background: var(--primary); border-color: var(--primary); color: #fff; }
.room-opt .ro-check svg { width: 13px; height: 13px; opacity: 0; }
.room-opt.sel .ro-check svg { opacity: 1; }

.guest-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.guest-stepper button { width: 44px; height: 44px; border: none; background: var(--surface); color: var(--ink); font-size: 20px; display: grid; place-items: center; }
.guest-stepper button:hover { background: var(--surface-2); }
.guest-stepper .gs-val { min-width: 54px; text-align: center; font-weight: 700; font-size: 16px; }

/* summary */
.summary-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.summary-media { aspect-ratio: 16/8; }
.summary-media image-slot { width: 100%; height: 100%; }
.summary-inner { padding: 20px; }
.summary-room { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.summary-rows { margin-top: 16px; border-top: 1px dashed var(--line); padding-top: 16px; }
.sum-row { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 14.5px; }
.sum-row .sr-k { color: var(--ink-soft); }
.sum-row .sr-v { font-weight: 600; text-align: right; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 17px; }
.sum-row.total .sr-v { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.sum-row.save { color: var(--price); font-weight: 600; }

.savings-pill { display: inline-flex; align-items: center; gap: 8px; background: color-mix(in srgb, var(--price) 12%, transparent); color: var(--price); border-radius: var(--r-pill); padding: 9px 14px; font-size: 13px; font-weight: 600; margin-top: 16px; }
.savings-pill svg { width: 16px; height: 16px; }

/* payment */
.pay-label { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin: 24px 0 12px; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-opt { display: flex; align-items: center; gap: 11px; padding: 14px; border: 1.5px solid var(--line); border-radius: var(--r-md); cursor: pointer; background: var(--surface); transition: border-color .2s, background .2s; }
.pay-opt.sel { border-color: var(--primary); background: var(--primary-tint); }
.pay-opt .pi { width: 34px; height: 34px; border-radius: 8px; background: var(--surface-2); display: grid; place-items: center; color: var(--ink); flex: 0 0 auto; }
.pay-opt.sel .pi { background: var(--primary); color: #fff; }
.pay-opt .pi svg { width: 18px; height: 18px; }
.pay-opt .pn { font-weight: 600; font-size: 14px; }
.pay-opt .pd { font-size: 11.5px; color: var(--muted); }
.pay-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; gap: 7px; }
.pay-note svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* confirmation */
.confirm { text-align: center; padding: 18px 6px; }
.confirm-ico { width: 76px; height: 76px; border-radius: 50%; background: color-mix(in srgb, var(--price) 14%, transparent); color: var(--price); display: grid; place-items: center; margin: 0 auto 22px; animation: pop .5s var(--ease); }
.confirm-ico svg { width: 38px; height: 38px; }
@keyframes pop { 0%{ transform: scale(.6); opacity: 0; } 60%{ transform: scale(1.08); } 100%{ transform: scale(1); opacity: 1; } }
.confirm h3 { font-family: var(--font-display); font-size: 30px; font-weight: 600; }
.confirm p { color: var(--ink-soft); margin-top: 10px; max-width: 38ch; margin-inline: auto; }
.confirm-code { display: inline-block; font-family: var(--font-mono); font-size: 14px; letter-spacing: .08em; background: var(--surface); border: 1px dashed var(--line); border-radius: var(--r-pill); padding: 9px 18px; margin-top: 18px; }
.confirm-recap { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; margin-top: 24px; }
.wa-box { background: color-mix(in srgb, #1faa55 8%, transparent); border: 1px solid color-mix(in srgb, #1faa55 30%, transparent); border-radius: var(--r-lg); padding: 20px; margin-top: 20px; text-align: left; }
.wa-box h4 { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.wa-box h4 svg { width: 20px; height: 20px; color: #1faa55; }
.wa-box p { font-size: 13.5px; color: var(--ink-soft); margin: 8px 0 16px; }

/* ===========================================================
   about (Tentang Kami)
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.about-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4 / 3; background: var(--primary-tint); }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-copy .eyebrow { margin-bottom: 12px; }
.about-copy .section-title { margin: 0 0 14px; }
.about-copy .section-sub { margin: 0 0 24px; max-width: 52ch; }
@media (max-width: 820px){ .about-grid { grid-template-columns: 1fr; } .about-media { aspect-ratio: 16 / 10; } }

/* ===========================================================
   facilities (Fasilitas)
   =========================================================== */
.facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.fac-item { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 20px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.fac-item:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.fac-ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; }
.fac-ico svg { width: 22px; height: 22px; }
.fac-name { font-size: 15.5px; font-weight: 600; font-family: var(--font-sans); letter-spacing: -0.01em; }
@media (max-width: 820px){ .facilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .facilities-grid { grid-template-columns: 1fr; } }

