/* START Boutique Homestay — premium editorial theme
   Palette: cream + olive + warm gold
   Typography: Cormorant Garamond (serif headings) + Be Vietnam Pro (sans body)
*/

:root {
  --bg: #faf8f3;
  --bg-soft: #f4ede0;
  --bg-warm: #efe6d4;
  --ink: #2a2a2a;
  --ink-soft: #4a4540;
  --ink-mute: #80766a;
  --gold: #b8865d;
  --gold-deep: #8c6541;
  --olive: #5e7c4f;
  --olive-deep: #3d5232;
  --rose: #c08a7a;
  --line: rgba(120, 100, 80, 0.18);
  --line-strong: rgba(120, 100, 80, 0.36);
  --shadow-soft: 0 8px 32px rgba(60, 50, 40, 0.08);
  --shadow-card: 0 12px 40px rgba(60, 50, 40, 0.12);
  --shadow-elev: 0 20px 60px rgba(60, 50, 40, 0.18);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
}

* { 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(--sans);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--olive-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.hs-narrow {
  max-width: 760px;
  margin-inline: auto;
}

/* ──── Typography ──── */
.hs-h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--ink);
}
.hs-h2-light { color: var(--bg); }
.hs-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 16px;
}
.hs-eyebrow-light { color: var(--bg-warm); }

/* ──── Nav ──── */
.hs-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.hs-nav.scrolled {
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
}
.hs-nav-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hs-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hs-brand:hover { text-decoration: none; }
.hs-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--olive-deep));
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hs-brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
}
.hs-nav.scrolled .hs-brand-name { color: var(--ink); }

.hs-nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.hs-nav-links a {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.hs-nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.hs-nav-links a:hover { color: var(--olive-deep); }
.hs-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.hs-nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background .2s, transform .2s;
}
.hs-nav-cta:hover {
  background: var(--olive-deep);
  color: var(--bg);
  transform: translateY(-1px);
}

.hs-nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.hs-nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 880px) {
  .hs-nav-links, .hs-nav-cta { display: none; }
  .hs-nav-burger { display: flex; }
  .hs-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
  }
}

/* ──── Hero ──── */
.hs-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--bg);
}
.hs-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hs-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hs-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 40, 35, 0.32) 0%,
    rgba(45, 40, 35, 0.45) 40%,
    rgba(45, 40, 35, 0.6) 100%
  );
}
.hs-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 0 24px;
}
.hs-hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg-warm);
  margin: 0 0 24px;
  font-weight: 500;
}
.hs-hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 9vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--bg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.hs-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  color: var(--bg-warm);
  margin: 0 0 40px;
  max-width: 640px;
  margin-inline: auto;
}
.hs-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hs-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bg-warm);
  font-size: 28px;
  animation: hsBounce 2s infinite;
  font-family: var(--serif);
}
@keyframes hsBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ──── Buttons ──── */
.btn-primary, .btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--bg);
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg-warm);
}
.btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 14px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin: 8px 0;
}

/* Buttons on light bg */
section:not(.hs-hero):not(.hs-cta-band):not(.hs-rd-hero) .btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}
section:not(.hs-hero):not(.hs-cta-band):not(.hs-rd-hero) .btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ──── Section base ──── */
.hs-section {
  padding: 96px 0;
}
.hs-section-alt {
  background: var(--bg-soft);
}
.hs-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.hs-section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  line-height: 1.6;
}

/* ──── Intro ──── */
.hs-intro {
  padding: 96px 0;
}
.hs-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hs-intro-text p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.hs-intro-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--gold);
}
.hs-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hs-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 32px 20px;
  text-align: center;
}
.hs-stat .num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--olive-deep);
  margin-bottom: 8px;
}
.hs-stat .lbl {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ──── Room cards ──── */
.hs-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hs-room-card {
  background: var(--bg);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.hs-room-card:hover {
  transform: translateY(-6px);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.hs-room-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hs-room-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.hs-room-card:hover .hs-room-photo img {
  transform: scale(1.05);
}
.hs-room-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hs-room-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 500;
}
.hs-room-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.hs-room-short {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 20px;
  flex: 1;
}
.hs-room-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hs-room-meta span { white-space: nowrap; }
.hs-room-price {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.hs-price-night {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hs-price-hour {
  font-size: 13px;
  color: var(--ink-mute);
}
.hs-room-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-deep);
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .hs-room-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hs-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .hs-room-grid { grid-template-columns: 1fr; }
  .hs-intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ──── Experiences ──── */
.hs-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hs-exp {
  text-align: left;
}
.hs-exp-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
}
.hs-exp-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.hs-exp:hover .hs-exp-photo img { transform: scale(1.04); }
.hs-exp-duration {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 500;
}
.hs-exp h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.2;
}
.hs-exp p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 880px) { .hs-exp-grid { grid-template-columns: 1fr; } }

/* ──── Gallery masonry ──── */
.hs-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.hs-gallery-item {
  margin: 0;
  overflow: hidden;
}
.hs-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.hs-gallery-item:hover img { transform: scale(1.08); }
/* Variable sizing for visual interest */
.gi-0 { grid-row: span 2; }
.gi-3 { grid-column: span 2; }
.gi-5 { grid-row: span 2; }
.gi-8 { grid-column: span 2; grid-row: span 2; }

@media (max-width: 880px) {
  .hs-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gi-3, .gi-8 { grid-column: span 1; }
  .gi-8 { grid-row: span 2; }
}

/* ──── Quotes ──── */
.hs-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hs-quote {
  margin: 0;
  padding: 32px 28px;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  position: relative;
}
.hs-quote::before {
  content: "\201C";
  position: absolute;
  top: -16px; left: 20px;
  font-family: var(--serif);
  font-size: 100px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
}
.hs-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: var(--ink);
}
.hs-quote footer {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: normal;
  letter-spacing: 0.04em;
}
.hs-quote footer strong {
  color: var(--olive-deep);
  font-weight: 500;
}
@media (max-width: 880px) { .hs-quotes { grid-template-columns: 1fr; } }

/* ──── CTA Band ──── */
.hs-cta-band {
  background: linear-gradient(135deg, var(--olive-deep), var(--ink));
  color: var(--bg);
  padding: 96px 0;
}
.hs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hs-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ──── FAQ ──── */
.hs-faq {
  border-top: 1px solid var(--line);
}
.hs-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.hs-faq-item summary {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  color: var(--ink);
  transition: color .2s;
}
.hs-faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  margin-left: 24px;
  font-weight: 300;
}
.hs-faq-item[open] summary::after { content: "\2013"; }
.hs-faq-item[open] summary { color: var(--olive-deep); }
.hs-faq-item p {
  padding: 0 0 24px;
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ──── Contact ──── */
.hs-contact { padding: 96px 0; }
.hs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hs-contact-line {
  font-size: 17px;
  margin: 12px 0;
  color: var(--ink-soft);
}
.hs-contact-line a { color: var(--olive-deep); }
.hs-contact-line a:hover { color: var(--gold); }
.hs-map img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 880px) { .hs-contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ──── Footer ──── */
.hs-footer {
  background: var(--ink);
  color: var(--bg-warm);
  padding: 80px 0 32px;
}
.hs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.hs-footer-brand .hs-footer-mark {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bg);
  margin-bottom: 16px;
}
.hs-footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bg-warm);
  margin: 0 0 16px;
  max-width: 320px;
}
.hs-footer-addr {
  color: var(--ink-mute);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.hs-footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 500;
}
.hs-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hs-footer-col li { margin: 8px 0; }
.hs-footer-col a {
  color: var(--bg-warm);
  font-size: 14px;
  transition: color .2s;
}
.hs-footer-col a:hover { color: var(--gold); text-decoration: none; }
.hs-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-mute);
}
.hs-footer-decor {
  font-family: var(--serif);
  font-style: italic;
}
@media (max-width: 880px) {
  .hs-footer-grid { grid-template-columns: 1fr 1fr; }
  .hs-footer-bar { justify-content: center; text-align: center; }
}

/* ──── Floating Zalo FAB ──── */
.hs-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--shadow-elev);
  z-index: 50;
  transition: transform .2s, background .2s;
  text-decoration: none;
}
.hs-fab:hover {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--bg);
}

/* ──── Page Hero (subpage) ──── */
.hs-page-hero {
  padding: 160px 0 64px;
  background: var(--bg-soft);
  text-align: center;
}
.hs-page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}
.hs-breadcrumb {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hs-breadcrumb a { color: var(--ink-mute); }
.hs-breadcrumb a:hover { color: var(--gold); }

/* ──── Room Detail ──── */
.hs-rd {
  padding-top: 0;
}
.hs-rd-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  color: var(--bg);
}
.hs-rd-hero-img {
  position: absolute; inset: 0;
}
.hs-rd-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hs-rd-hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,40,35,0.7), rgba(45,40,35,0.2));
}
.hs-rd-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
}
.hs-rd-hero-inner .hs-breadcrumb,
.hs-rd-hero-inner .hs-breadcrumb a {
  color: rgba(250, 248, 243, 0.7);
}
.hs-rd-hero-inner h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 12px 0;
  color: var(--bg);
}
.hs-rd-short {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--bg-warm);
  margin: 0 0 24px;
  max-width: 720px;
}
.hs-rd-meta {
  display: flex;
  gap: 24px;
  color: var(--bg-warm);
  font-size: 14px;
  flex-wrap: wrap;
}

.hs-rd-body {
  padding: 80px 0;
}
.hs-rd-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .hs-rd-grid { grid-template-columns: 1fr; gap: 40px; }
  .hs-rd-side { order: -1; }
}

.hs-rd-prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.hs-rd-prose h2:first-child { margin-top: 0; }
.hs-rd-prose p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.hs-rd-amenities {
  margin-top: 56px;
}
.hs-rd-amenities ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.hs-rd-amenities li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
}
.hs-rd-amenities li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
  top: 2px;
}

.hs-rd-gallery-section { margin-top: 56px; }
.hs-rd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.hs-rd-gallery-item { margin: 0; overflow: hidden; }
.hs-rd-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.hs-rd-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Booking sidebar */
.hs-rd-side {
  position: sticky;
  top: 100px;
}
.hs-rd-book {
  background: var(--bg-soft);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.hs-rd-price-row {
  display: flex;
  gap: 24px;
  margin: 16px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hs-rd-price-night, .hs-rd-price-hour {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hs-rd-price-night span, .hs-rd-price-hour span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hs-rd-price-night strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}
.hs-rd-price-hour strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-soft);
}
.hs-rd-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.hs-rd-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hs-rd-form input,
.hs-rd-form select {
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
.hs-rd-form input:focus,
.hs-rd-form select:focus {
  border-color: var(--gold);
}
.hs-rd-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}
.hs-rd-note {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 16px 0 0;
  text-align: center;
}

/* ──── Booking Calendar Widget ──── */
.booking-widget {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 20px;
}
.booking-widget .bk-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.bk-legend {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.bk-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bk-legend-swatch {
  width: 12px; height: 12px;
  display: inline-block;
  border-radius: 2px;
}
.bk-legend-swatch.free { background: var(--bg-soft); border: 1px solid var(--line-strong); }
.bk-legend-swatch.booked { background: rgba(192, 138, 122, 0.25); border: 1px solid var(--rose); }
.bk-legend-swatch.selected { background: var(--olive-deep); }
.bk-calendar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 880px) {
  .bk-calendar { grid-template-columns: 1fr; gap: 16px; }
}
.bk-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bk-month-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.bk-nav {
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  display: grid;
  place-items: center;
  border-radius: 0;
  transition: background .15s, color .15s;
}
.bk-nav:hover { background: var(--ink); color: var(--bg); }
.bk-nav-spacer { width: 28px; }
.bk-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.bk-dow {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  padding: 6px 0;
  font-weight: 500;
}
.bk-cell {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 0;
  transition: background .15s, color .15s;
  font-weight: 500;
}
.bk-cell.bk-empty {
  background: transparent;
  cursor: default;
}
.bk-cell.bk-free:hover {
  background: var(--olive);
  color: var(--bg);
}
.bk-cell.bk-past {
  color: var(--ink-mute);
  background: transparent;
  cursor: not-allowed;
  opacity: 0.4;
}
.bk-cell.bk-booked {
  background: rgba(192, 138, 122, 0.22);
  color: var(--rose);
  text-decoration: line-through;
  cursor: not-allowed;
}
.bk-cell.bk-checkin,
.bk-cell.bk-checkout {
  background: var(--olive-deep);
  color: var(--bg);
}
.bk-cell.bk-inrange {
  background: rgba(94, 124, 79, 0.22);
  color: var(--olive-deep);
}
.bk-summary {
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin-top: 16px;
}
.bk-help {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  text-align: center;
}
.bk-dates {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.bk-dates > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bk-dates > div span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.bk-dates > div strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.bk-arrow {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.bk-calc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.bk-calc > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
}
.bk-calc > div span { font-size: 14px; }
.bk-calc > div strong { font-weight: 500; color: var(--ink); }
.bk-calc .bk-total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
}
.bk-calc .bk-total span {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bk-calc .bk-total strong {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--olive-deep);
}
.bk-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-reset {
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.bk-reset:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.bk-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.6;
}

/* ──── Booking widget — tabs + guest form + hourly ──── */
.bk-tabs-wrap { margin: 0 0 16px; }
.bk-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--bg-warm);
  padding: 4px;
  border: 1px solid var(--line);
}
.bk-tab {
  background: transparent;
  border: none;
  padding: 12px 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  cursor: pointer;
  border-radius: 0;
  transition: background .2s, color .2s;
}
.bk-tab:hover { color: var(--ink); }
.bk-tab.active {
  background: var(--ink);
  color: var(--bg);
}
.bk-hourly-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 16px;
}
.bk-hourly-controls label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-hourly-controls select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 11px 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  outline: none;
  border-radius: 0;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-mute) 50%),
                    linear-gradient(135deg, var(--ink-mute) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.bk-hourly-controls select:focus { border-color: var(--gold); }

.bk-guest {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.bk-guest label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-guest input,
.bk-guest textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 500;
  outline: none;
  border-radius: 0;
  resize: vertical;
}
.bk-guest input:focus,
.bk-guest textarea:focus { border-color: var(--gold); }

.bk-disclaimer {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}

/* Price emphasis — gold accent on big numbers */
.bk-calc .bk-total strong,
.hs-rd-price-night strong {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Smooth hover lift cards */
.hs-room-card { transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .35s; }

/* Parallax-ish hero image */
.hs-hero-bg img {
  transform: scale(1.08);
  transition: transform 8s ease-out;
  animation: hsHeroDrift 24s ease-in-out infinite alternate;
}
@keyframes hsHeroDrift {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

/* Cat-titlestack reveal */
.hs-hero-title, .hs-hero-sub, .hs-hero-eyebrow, .hs-hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: hsRevealUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hs-hero-eyebrow { animation-delay: 0.1s; }
.hs-hero-title   { animation-delay: 0.25s; }
.hs-hero-sub     { animation-delay: 0.45s; }
.hs-hero-cta     { animation-delay: 0.6s; }
@keyframes hsRevealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Card image zoom on parent hover (already partial — make smoother) */
.hs-room-photo img,
.hs-exp-photo img,
.hs-gallery-item img,
.hs-rd-gallery-item img {
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1), filter .4s;
}
.hs-room-card:hover .hs-room-photo img,
.hs-exp:hover .hs-exp-photo img,
.hs-gallery-item:hover img,
.hs-rd-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.04) saturate(1.08);
}

/* Button micro-interactions */
.btn-primary, .btn-ghost, .hs-nav-cta, .bk-tab, .bk-nav {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.16) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s ease;
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(100%); }

/* Calendar cells smoother */
.bk-cell {
  transition: background .2s, color .2s, transform .15s;
}
.bk-cell.bk-free:hover {
  transform: scale(1.08);
}

/* Stat counter pulse on view */
.hs-stat .num {
  display: inline-block;
}
@media (prefers-reduced-motion: no-preference) {
  .hs-stat {
    animation: hsStatPop 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}
@keyframes hsStatPop {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: none; }
}

/* FAQ open animation */
.hs-faq-item p {
  animation: hsFAQReveal .35s ease-out;
}
@keyframes hsFAQReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Booking summary slide-in */
.bk-summary {
  animation: hsFadeUp .35s ease-out;
}

/* Smooth Focus rings */
.bk-guest input:focus,
.bk-guest textarea:focus,
.bk-hourly-controls select:focus {
  box-shadow: 0 0 0 3px rgba(184, 134, 93, 0.18);
}

/* Smooth fade in for sections */
@media (prefers-reduced-motion: no-preference) {
  .hs-section, .hs-intro {
    animation: hsFadeUp 0.8s ease both;
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }
}
@keyframes hsFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

/* ===== Slot booking widget (localhome.vn pattern) ===== */

.bk-section-head {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
  font-weight: 600;
}

.bk-hint {
  text-align: center;
  padding: 32px 0;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
  font-size: 15px;
}

.bk-date-strip {
  margin-bottom: 20px;
}
.bk-dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(60px, 1fr));
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 4px 8px;
  scroll-behavior: smooth;
}
@media (max-width: 720px) {
  .bk-dates { grid-template-columns: repeat(5, minmax(50px, 1fr)); }
}
.bk-date {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 8px 4px 10px;
  cursor: pointer;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .15s;
  border-radius: 2px;
}
.bk-date:hover:not(:disabled) {
  border-color: var(--olive-deep);
  background: white;
}
.bk-date-dow {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 600;
}
.bk-date-day {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 2px;
}
.bk-date-month {
  font-size: 10px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.bk-date-today { box-shadow: 0 0 0 1.5px var(--gold) inset; }
.bk-date-today .bk-date-day { color: var(--gold); }
.bk-date-sel {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}
.bk-date-sel .bk-date-dow,
.bk-date-sel .bk-date-day,
.bk-date-sel .bk-date-month { color: white; }
.bk-date-full {
  cursor: not-allowed;
  opacity: 0.45;
  background: repeating-linear-gradient(45deg, var(--bg-soft) 0 4px, white 4px 8px);
}
.bk-date-tag {
  font-size: 9px;
  color: #c00;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 3px;
}

.bk-slot-pane {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.bk-slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bk-slot-grid > .bk-slot:nth-child(5) { grid-column: span 2; }

@media (max-width: 480px) {
  .bk-slot-grid { grid-template-columns: 1fr; }
  .bk-slot-grid > .bk-slot:nth-child(5) { grid-column: span 1; }
}
.bk-slot {
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  padding: 14px 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  transition: all .15s;
  border-radius: 3px;
}
.bk-slot:hover:not(:disabled) {
  border-color: var(--olive-deep);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(94, 124, 79, .12);
}
.bk-slot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.bk-slot-label {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--olive-deep);
}
.bk-slot-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 6px;
  background: #fef3c7;
  color: #92400e;
  border-radius: 2px;
}
.bk-slot-tag-sel {
  background: var(--olive-deep);
  color: white;
}
.bk-slot-time {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.bk-slot-price {
  font-size: 14px;
}
.bk-slot-price strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
}
.bk-slot-booked {
  cursor: not-allowed;
  opacity: 0.5;
  background: repeating-linear-gradient(45deg, var(--bg-soft) 0 4px, #f0eadf 4px 8px);
}
.bk-slot-booked .bk-slot-label { color: var(--ink-mute); }
.bk-slot-sel {
  background: linear-gradient(135deg, rgba(94, 124, 79, .15), rgba(184, 134, 93, .08));
  border-color: var(--olive-deep);
  box-shadow: 0 0 0 1.5px var(--olive-deep) inset;
}

.bk-multi-hint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  padding: 10px;
  background: var(--bg-soft);
  border-left: 2px solid var(--gold);
}
.bk-multi-hint strong { color: var(--olive-deep); }

.bk-summary-card {
  margin-top: 16px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.bk-summary-card .bk-line:not(.bk-line-total):not(.bk-line-deposit):not(.bk-line-discount) {
  font-size: 14px;
}
.bk-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.bk-line:last-of-type { border-bottom: 0; }
.bk-line span { color: var(--ink-mute); }
.bk-line strong { font-weight: 600; color: var(--ink); }
.bk-line-discount span,
.bk-line-discount strong { color: var(--gold); }
.bk-line-total {
  padding: 12px 0 6px;
  border-top: 1.5px solid var(--ink) !important;
  margin-top: 6px;
  font-size: 17px;
}
.bk-line-total span { color: var(--ink); font-weight: 600; }
.bk-line-total strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--olive-deep);
  background: linear-gradient(135deg, var(--olive-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bk-line-deposit span { color: var(--gold); font-weight: 600; }
.bk-line-deposit strong { color: var(--gold); font-family: var(--serif); font-size: 17px; }

.bk-summary-empty {
  margin-top: 16px;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
}

.bk-guest {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.bk-guest input,
.bk-guest select,
.bk-guest textarea {
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--serif);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  outline: none;
  transition: border-color .15s;
  border-radius: 2px;
}
.bk-guest input:focus,
.bk-guest select:focus,
.bk-guest textarea:focus {
  border-color: var(--olive-deep);
  background: white;
}
.bk-submit {
  margin-top: 6px;
  padding: 16px;
  font-size: 13px;
  letter-spacing: .16em;
  cursor: pointer;
}
.bk-submit:disabled { opacity: 0.6; cursor: wait; }

/* Navigation top extra (for ticket-booking + location links) */
.hs-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .04em;
}
.hs-nav-links a {
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .15s;
}
.hs-nav-links a:hover,
.hs-nav-links a.active {
  border-bottom-color: var(--gold);
}

/* ===== Location landing page (/rach-gia/) ===== */
.hs-location { padding-top: 0; }

.loc-property {
  margin-bottom: 56px;
}
.loc-property-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.loc-property-head .hs-eyebrow { margin: 0; }

.loc-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.loc-room-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--line);
  transition: all .2s;
  overflow: hidden;
  border-radius: 2px;
}
.loc-room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(94, 124, 79, .14);
  border-color: var(--olive-deep);
}
.loc-room-img {
  height: 200px;
  overflow: hidden;
}
.loc-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.loc-room-card:hover .loc-room-img img { transform: scale(1.04); }

.loc-room-body { padding: 18px 20px 22px; }
.loc-room-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}
.loc-room-meta {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 0 0 8px;
  letter-spacing: .03em;
}
.loc-room-amenities {
  font-size: 13px;
  font-style: italic;
  font-family: var(--serif);
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.5;
}
.loc-room-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 16px;
  margin: 0 0 6px;
}
.loc-room-prices small {
  font-size: 11px;
  color: var(--ink-mute);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.loc-room-prices strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--olive-deep);
}
.loc-divider { color: var(--line); font-weight: 300; }
.loc-room-slots {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .loc-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* =================================================================
   READABILITY PASS (overrides) — 2026-05-17
   Lý do: Cormorant Garamond italic + Vietnamese diacritics → khó đọc.
   Fix: functional UI text dùng Be Vietnam Pro sans, tăng size + contrast,
   giảm letter-spacing. Hero/headline GIỮ NGUYÊN serif decorative.
   ================================================================= */

:root {
  --ink-mute: #6e6358;        /* darken from #80766a for better contrast on cream */
  --ink-soft: #3d3a36;        /* darken from #4a4540 for body paragraphs */
}

body {
  font-size: 17px;
  line-height: 1.7;
}

/* -- Functional UI text: SANS, not italic -- */
.hs-eyebrow,
.bk-section-head,
.bk-hint,
.bk-disclaimer,
.bk-multi-hint,
.bk-summary-empty p,
.bk-line span,
.bk-line strong,
.hs-rd-meta,
.hs-rd-meta span,
.hs-room-meta,
.hs-room-meta span,
.hs-contact-line,
.hs-breadcrumb,
.hs-room-eyebrow,
.hs-room-short,
.loc-room-meta,
.loc-room-amenities,
.loc-room-prices,
.loc-room-prices small,
.loc-room-prices strong,
.loc-room-slots,
.hs-rd-amenities li,
.hs-faq-item summary,
.hs-faq-item p,
.bk-guest input,
.bk-guest select,
.bk-guest textarea,
.bk-slot-time,
.bk-slot-label,
.bk-slot-price,
.bk-date-dow,
.bk-date-month,
.bk-tabs,
.bk-tab,
.btn-primary,
.btn-ghost,
.hs-nav-cta {
  font-family: var(--sans) !important;
  font-style: normal !important;
}

/* Reduce excessive uppercase letter-spacing → still readable as label */
.hs-eyebrow,
.bk-section-head,
.hs-eyebrow-light {
  letter-spacing: 0.10em !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}
.hs-breadcrumb {
  letter-spacing: 0.04em !important;
  font-size: 13px !important;
}

/* Body paragraphs — readable size + line-height */
.hs-rd-prose p,
.hs-rd-short,
.bk-disclaimer,
.bk-multi-hint,
main p {
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Headlines KEEP serif but normalize italic for clarity */
.hs-rd-prose h2,
.hs-rd-amenities h2,
.hs-rd-gallery-section h2 {
  font-style: normal;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 32px 0 16px;
}

/* Room amenities — easy scan list */
.hs-rd-amenities ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px 24px;
  list-style: none;
  padding: 0;
}
.hs-rd-amenities li {
  font-size: 15px;
  line-height: 1.5;
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--ink-soft);
  font-weight: 500;
}
.hs-rd-amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive-deep);
  font-weight: 700;
}

/* Slot widget — bigger readable text */
.bk-section-head {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ink-soft) !important;
  margin-bottom: 14px !important;
}
.bk-slot-label {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}
.bk-slot-time {
  font-family: 'JetBrains Mono', 'Courier New', monospace !important;
  font-size: 12px !important;
  color: var(--ink-mute) !important;
  letter-spacing: 0 !important;
}
.bk-slot-price strong {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--olive-deep) !important;
}
.bk-multi-hint {
  font-size: 13px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
}

/* Summary lines — tabular reading */
.bk-summary-card {
  font-family: var(--sans);
}
.bk-line {
  font-size: 14px;
  padding: 8px 0;
  line-height: 1.5;
}
.bk-line-total {
  font-size: 16px !important;
}
.bk-line-total strong {
  font-size: 24px !important;
}

/* Form inputs — minimum size for mobile */
.bk-guest input,
.bk-guest select,
.bk-guest textarea {
  font-size: 16px !important;
  padding: 12px 14px !important;
  font-weight: 500;
}
.bk-guest input::placeholder,
.bk-guest textarea::placeholder {
  color: var(--ink-mute);
  opacity: 1;
}

/* CTA buttons — clear weight */
.btn-primary,
.btn-ghost {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}
.bk-submit {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

/* Room card pricing — clean number display */
.hs-room-price .hs-price-night {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0;
  font-weight: 500;
}
.hs-room-price .hs-price-hour {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--olive-deep);
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* Date strip — bigger day number */
.bk-date-day {
  font-size: 26px !important;
  font-weight: 700 !important;
}
.bk-date-dow {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

/* Location landing — readable property header */
.loc-property-head h2 {
  font-size: 28px !important;
  line-height: 1.2;
  font-style: normal;
}
.loc-room-body h3 {
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.3;
}
.loc-room-amenities {
  font-style: normal !important;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.loc-room-prices strong {
  font-size: 18px !important;
  font-weight: 700;
}
.loc-room-prices small {
  font-size: 11px !important;
}

/* Hero h1 — keep dramatic but normalize italic readability */
.hs-rd-hero h1,
.hs-hero h1 {
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hs-rd-hero .hs-rd-short,
.hs-hero p {
  font-style: normal !important;
  font-family: var(--sans) !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
}

/* About + policy + 404 long form — readable serif (Georgia fallback for VN) */
.hs-about-prose p,
.hs-policy-prose p,
main > section > div > div > p {
  font-size: 17px;
  line-height: 1.75;
}

/* Tables in confirmation page — readable */
main table {
  font-family: var(--sans) !important;
  font-size: 15px !important;
}
main table td {
  padding: 10px 4px !important;
}

/* Navigation — clear hover */
.hs-nav-links a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Mobile readability */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hs-rd-prose p, .hs-rd-short, main p { font-size: 15px; line-height: 1.7; }
  .bk-slot-label { font-size: 15px !important; }
  .bk-line-total strong { font-size: 20px !important; }
  .hs-eyebrow { font-size: 11px !important; }
}
