/* ============ G Villa Hotel — SLH-pattern UI ============ */
:root {
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --ink: #2b2b26;
  --muted: #6f6a5e;
  --green: #064f2d;
  --green-deep: #03331f;
  --brass: #c9a25e;
  --brass-deep: #b08a45;
  --line: rgba(43, 43, 38, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Lora", Georgia, serif;
}

/* Language-specific font stacks: Vietnamese needs full diacritic coverage,
   Korean and Chinese need CJK faces (Cormorant/Lora are Latin-only). */
html[lang="vi"] { --sans: "Be Vietnam Pro", "Lora", Georgia, serif; }
html[lang="ko"] {
  --serif: "Noto Serif KR", "Cormorant Garamond", Georgia, serif;
  --sans: "Noto Sans KR", "Lora", Georgia, serif;
}
html[lang="zh"] {
  --serif: "Noto Serif SC", "Cormorant Garamond", Georgia, serif;
  --sans: "Noto Sans SC", "Lora", Georgia, serif;
}
html[lang="hi"] {
  --serif: "Noto Serif Devanagari", "Cormorant Garamond", Georgia, serif;
  --sans: "Noto Sans Devanagari", "Lora", Georgia, serif;
}
html[lang="ko"] .hero-tagline, html[lang="zh"] .hero-tagline, html[lang="hi"] .hero-tagline,
html[lang="ko"] .menu-primary a, html[lang="zh"] .menu-primary a, html[lang="hi"] .menu-primary a { font-weight: 500; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Utility bar ---------- */
.utility-bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  font-size: 0.78rem; letter-spacing: 0.04em; color: #fff;
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 2rem; gap: 1rem;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 1.6rem; }
/* nowrap: the bar is absolutely positioned over the header, so a wrapped
   link grows it downwards and covers the logo instead of overflowing. */
.utility-link { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.92; white-space: nowrap; }
.utility-link:hover { opacity: 1; }
.u-underline { text-decoration: underline; text-underline-offset: 3px; }
.utility-link .ico { font-size: 0.9rem; }
.currency select, .lang select {
  background: transparent; color: #fff; border: none;
  font: inherit; font-weight: 500; letter-spacing: 0.08em; cursor: pointer;
}
.currency select option, .lang select option { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: absolute; top: 2.2rem; left: 0; right: 0; z-index: 40;
  color: #fff; transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-stuck {
  position: fixed; top: 0;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1rem 2rem;
}
.header-left { display: flex; align-items: center; gap: 1.4rem; }
.menu-btn {
  background: none; border: none; color: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
}
.burger { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.burger i { display: block; height: 1.5px; background: currentColor; }
.menu-label {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
}
.search-btn { background: none; border: none; color: inherit; }
.search-btn svg { width: 22px; height: 22px; }

.logo { text-align: center; display: flex; flex-direction: column; align-items: center; }
.logo-img { height: 88px; width: auto; transition: height 0.3s ease; }
.logo .logo-dark { display: none; }
.site-header.is-stuck .logo-light { display: none; }
.site-header.is-stuck .logo-dark { display: block; }
.site-header.is-stuck .logo-img { height: 56px; }
.header-right { display: flex; justify-content: flex-end; align-items: center; gap: 1.6rem; }
.header-icon-link {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
}
.header-icon-link svg { width: 21px; height: 21px; }

/* ---------- Menu / search overlays ---------- */
.menu-overlay, .search-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: var(--green-deep); color: var(--cream);
  padding: 5rem 2rem 3rem;
  display: none; opacity: 0;
  overflow-y: auto;
}
.menu-overlay.open { display: block; }
.search-overlay.open { display: flex; }
.menu-overlay.open, .search-overlay.open { animation: overlayIn 0.35s ease forwards; }
@keyframes overlayIn { to { opacity: 1; } }
.menu-close {
  position: absolute; top: 1.4rem; right: 2rem;
  background: none; border: none; color: inherit; font-size: 2.4rem; line-height: 1;
}
.menu-columns {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
}
.menu-primary { list-style: none; }
.menu-primary a {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.35; display: inline-block; transition: color 0.2s;
}
.menu-primary a:hover { color: var(--brass); }
.has-sub { margin-bottom: 0.3rem; }
.menu-parent {
  background: none; border: none; color: inherit; text-align: left; padding: 0;
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.35; display: inline-flex; align-items: center; gap: 0.7rem;
}
.menu-caret {
  width: 0.55rem; height: 0.55rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform 0.25s ease; margin-top: -0.3rem;
}
.menu-parent[aria-expanded="true"] .menu-caret { transform: rotate(-135deg); margin-top: 0.2rem; }
.menu-sub {
  list-style: none; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.menu-sub.open { max-height: 220px; }
.menu-sub a {
  font-family: var(--sans); font-weight: 400; font-size: 1.05rem;
  display: inline-block; padding: 0.55rem 0 0.55rem 0.2rem; opacity: 0.82;
}
.menu-sub a:hover { opacity: 1; color: var(--brass); }
.menu-side-title {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1.2rem;
}
.menu-secondary { list-style: none; margin-bottom: 2.5rem; }
.menu-secondary a { display: inline-block; padding: 0.3rem 0; font-size: 1.05rem; }
.menu-secondary a:hover { color: var(--brass); }
.menu-contact { font-size: 0.92rem; opacity: 0.8; line-height: 2; }

.search-overlay { align-items: center; justify-content: center; }
.search-form { width: min(640px, 90%); }
.search-form label {
  display: block; font-family: var(--serif); font-size: 2rem; margin-bottom: 1.4rem; text-align: center;
}
.search-form input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(246, 241, 231, 0.5);
  color: var(--cream); font-size: 1.4rem; font-family: var(--serif);
  padding: 0.6rem 0.2rem; outline: none;
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-media, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 38%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10, 20, 15, 0.45) 0%, rgba(10, 20, 15, 0.1) 40%, rgba(10, 20, 15, 0.35) 100%);
}

/* Booking bar */
.booking-bar {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
  width: min(1180px, 92%);
  display: grid; grid-template-columns: 1fr 1fr 1.2fr 1fr auto;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(4px);
  z-index: 20;
}
.bb-field {
  padding: 0.9rem 1.4rem; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.bb-field label {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
}
.bb-field input, .bb-field select {
  border: none; background: transparent; outline: none;
  font-family: var(--sans); font-weight: 300; font-size: 1.02rem; color: var(--muted);
  padding: 0; width: 100%;
}
.bb-search {
  border: none; background: var(--brass); color: var(--green-deep);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0 2.6rem; margin: 0.55rem; min-height: 56px;
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s;
}
.bb-search:hover { background: var(--brass-deep); }
.bb-search svg { width: 18px; height: 18px; }

.hero-copy {
  position: absolute; left: 0; right: 0; top: 56%; z-index: 10;
  text-align: center; color: #fff; padding: 0 1rem;
}
.hero-tagline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15;
  transition: opacity 0.6s ease;
}
.hero-tagline.fade { opacity: 0; }
.hero-cta {
  display: inline-block; margin-top: 1.4rem;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7); padding-bottom: 0.35rem;
}
.hero-cta:hover { color: var(--brass); border-color: var(--brass); }
.arr { font-size: 1.05em; }

.hero-credit {
  /* right offset clears the fixed chat dock, which sits over this corner */
  position: absolute; right: 5.75rem; bottom: 5.5rem; z-index: 10;
  color: rgba(255, 255, 255, 0.85); font-size: 0.75rem; letter-spacing: 0.08em; font-style: italic;
  font-family: var(--serif); font-size: 0.95rem;
}
.scroll-down {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 2rem; z-index: 10;
  color: #fff; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-down .chev {
  width: 10px; height: 10px; border-right: 1px solid #fff; border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: rotate(45deg) translate(0, 0); } 50% { transform: rotate(45deg) translate(4px, 4px); } }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 2rem; }
.section-heading {
  font-size: 0.95rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 500;
  text-align: center; color: var(--ink); margin-bottom: 3.2rem;
}
.trio {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem;
  text-align: center;
}
.trio-item h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.9rem; margin-bottom: 1rem;
}
.trio-item p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.4rem; }
.text-link {
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  color: var(--green); border-bottom: 1px solid var(--brass); padding-bottom: 0.3rem;
}
.text-link:hover { color: var(--brass-deep); }

/* ---------- Venue picker ---------- */
.venues { background: var(--paper); }
.venues-sub {
  max-width: 640px; margin: -2rem auto 3rem; text-align: center;
  color: var(--muted); font-size: 1.02rem;
}
.venue-picker {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.venue-tile { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.venue-tile-media { position: absolute; inset: 0; }
.venue-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.venue-tile:hover .venue-tile-media img { transform: scale(1.05); }
.venue-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(3, 51, 31, 0.9) 0%, rgba(3, 51, 31, 0.25) 45%, rgba(3, 51, 31, 0) 70%);
}
.venue-tile-copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 2rem; color: var(--cream);
}
.venue-tile-copy h3 { font-family: var(--serif); font-weight: 500; font-size: 1.8rem; margin-bottom: 0.6rem; }
.venue-tile-copy p { font-size: 0.95rem; opacity: 0.92; margin-bottom: 1.1rem; max-width: 34ch; }
.text-link.light { color: var(--cream); border-bottom-color: var(--brass); }
.text-link.light:hover { color: var(--brass); }

/* ---------- Venue detail sections ---------- */
.venue-detail { background: var(--paper); }
.venue-detail.alt { background: var(--cream); }
.venue-detail-intro {
  max-width: 640px; margin: 0 auto 2.6rem; text-align: center;
  color: var(--muted); font-size: 1.02rem;
}
.venue-sub-heading {
  font-family: var(--serif); font-weight: 500; text-align: center;
  font-size: 1.35rem; margin-bottom: 2rem; color: var(--ink);
}

/* ---- Boutique Hotel: rooms pending note ---- */
.venue-note {
  max-width: 560px; margin: 0 auto 0.9rem; text-align: center;
  color: var(--muted); font-size: 1rem; line-height: 1.7;
}
.venue-note-cta { text-align: center; }

/* ---- Room cards (real rooms, expandable) ---- */
.room-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.room-card {
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
}
.room-card-media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
}
.room-card-body { padding: 1.5rem 1.6rem 1.7rem; }
.room-class {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.68rem; color: var(--brass-deep); margin-bottom: 0.45rem;
}
.room-name {
  font-family: var(--serif); font-weight: 500; font-size: 1.9rem;
  color: var(--green); line-height: 1.15; margin-bottom: 0.4rem;
}
.room-meta {
  font-family: var(--sans); font-size: 0.85rem; color: var(--muted);
  margin-bottom: 0.9rem;
}
.room-desc {
  font-family: var(--sans); font-size: 0.98rem; line-height: 1.7;
  color: var(--ink); margin-bottom: 1.1rem;
}
.room-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 0; padding: 0;
  font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.02em;
  color: var(--green); border-bottom: 1px solid var(--brass);
  padding-bottom: 2px; transition: color 0.2s;
}
.room-toggle:hover { color: var(--brass-deep); }
.room-caret {
  width: 8px; height: 8px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s ease;
}
.room-toggle[aria-expanded="true"] .room-caret { transform: rotate(-135deg) translate(-3px, -3px); }
.room-detail { padding-top: 1.3rem; }
.room-detail h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.1rem;
  color: var(--ink); margin-bottom: 0.7rem;
}
.room-amenities {
  list-style: none; margin: 0 0 1.2rem; padding: 0;
  columns: 2; column-gap: 1.2rem;
}
.room-amenities li {
  font-family: var(--sans); font-size: 0.86rem; line-height: 1.6;
  color: var(--muted); margin-bottom: 0.3rem; padding-left: 0.9rem;
  position: relative; break-inside: avoid;
}
.room-amenities li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 4px; height: 4px; background: var(--brass); border-radius: 50%;
}
.room-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.2rem;
}
.room-gallery img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  border: 1px solid var(--line);
}
.room-enquire {
  display: inline-block; font-family: var(--sans); font-size: 0.88rem;
  letter-spacing: 0.03em; text-decoration: none;
  border: 1px solid var(--green); color: var(--green);
  padding: 0.6rem 1.4rem; border-radius: 2px; transition: all 0.2s;
}
.room-enquire:hover { background: var(--green); color: var(--cream); }

@media (max-width: 640px) {
  .room-amenities { columns: 1; }
  .room-card-body { padding: 1.2rem 1.1rem 1.4rem; }
}
.room-duo {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.6rem;
  text-align: center;
}

/* ---------- Carousels ---------- */
.carousel-section { background: var(--paper); }
.carousel-section.offers { background: var(--cream); }
.carousel-wrap { position: relative; max-width: 1280px; margin: 0 auto; }
.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr);
  gap: 1.6rem; overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; padding-bottom: 0.5rem;
}
.carousel::-webkit-scrollbar { display: none; }
.card { scroll-snap-align: start; text-align: center; }
.card-media { overflow: hidden; aspect-ratio: 4 / 5; margin-bottom: 1.3rem; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.05); }

/* Crossfading image rotator (e.g. Private Dining offer) */
.card-media--rotate { position: relative; }
.card-media--rotate img {
  position: absolute; inset: 0; opacity: 0;
  animation: cardRotate 15s infinite;
}
.card-media--rotate img:nth-child(1) { animation-delay: 0s; }
.card-media--rotate img:nth-child(2) { animation-delay: 5s; }
.card-media--rotate img:nth-child(3) { animation-delay: 10s; }
@keyframes cardRotate {
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  30%   { opacity: 1; }
  36%   { opacity: 0; }
  100%  { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .card-media--rotate img { animation: none; opacity: 0; }
  .card-media--rotate img:nth-child(1) { opacity: 1; }
}
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; margin-bottom: 0.5rem; }
.card-link {
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  color: var(--green); border-bottom: 1px solid var(--brass); padding-bottom: 0.25rem;
}
.card:hover .card-link { color: var(--brass-deep); }
.card-credit { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; font-style: italic; font-family: var(--serif); font-size: 0.92rem; }
.car-arrow {
  position: absolute; top: 34%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.car-arrow:hover { background: var(--green); color: #fff; }
.car-arrow.prev { left: -23px; }
.car-arrow.next { right: -23px; }

/* ---------- Editorial / pioneers ---------- */
.editorial { background: var(--paper); }
.pioneers { background: var(--cream); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--green-deep); color: var(--cream); padding: 5rem 2rem; text-align: center; }
.newsletter h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.8rem; }
.newsletter p { opacity: 0.85; margin-bottom: 2rem; }
.newsletter-form { display: flex; justify-content: center; gap: 0; max-width: 520px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; background: transparent; border: 1px solid rgba(246, 241, 231, 0.4); border-right: none;
  color: var(--cream); padding: 0.9rem 1.2rem; font: inherit; outline: none;
}
.newsletter-form input::placeholder { color: rgba(246, 241, 231, 0.6); }
.newsletter-form button {
  border: none; background: var(--brass); color: var(--green-deep);
  padding: 0 2.2rem; font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
}
.newsletter-form button:hover { background: var(--brass-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green); color: var(--cream); }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 4.5rem 2rem 3rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { height: 118px; width: auto; margin: 0 0 0.9rem 0; }
.footer-brand address { font-style: normal; font-size: 0.9rem; opacity: 0.8; line-height: 1.9; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1.2rem; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col a { display: inline-block; padding: 0.28rem 0; font-size: 0.95rem; opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(246, 241, 231, 0.2);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto; padding: 1.4rem 2rem 2rem;
  font-size: 0.78rem; opacity: 0.75;
}
.footer-bottom a:hover { color: var(--brass); }

/* ---------- Live rates overlay ---------- */
.rates-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(3, 51, 31, 0.55);
  display: none; opacity: 0;
  align-items: center; justify-content: center;
  padding: 1.2rem;
}
.rates-overlay.open { display: flex; animation: overlayIn 0.35s ease forwards; }
.rates-card {
  position: relative;
  background: var(--cream); color: var(--green-deep);
  width: min(680px, 100%);
  max-height: min(84vh, 720px);
  display: flex; flex-direction: column;
  padding: 2.2rem 2.2rem 1.6rem;
}
.rates-close { color: var(--green-deep); }
.rates-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; }
.rates-dates { font-size: 0.85rem; opacity: 0.75; margin: 0.2rem 0 1.2rem; }
.rates-body { overflow-y: auto; border-top: 1px solid rgba(3, 51, 31, 0.15); }
.rates-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(3, 51, 31, 0.15);
}
.rates-row.sold { opacity: 0.55; }
.rates-room .rr-name { font-family: var(--serif); font-size: 1.2rem; }
.rates-room .rr-type { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; margin-top: 0.1rem; }
.rates-room .rr-price { font-size: 0.85rem; margin-top: 0.15rem; }
.rates-room .rr-total { font-size: 0.78rem; opacity: 0.7; margin-top: 0.1rem; }
.rates-status { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.rates-cta {
  flex: none; display: inline-block;
  background: var(--brass); color: var(--green-deep);
  font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.65rem 1rem; text-decoration: none; white-space: nowrap;
}
.rates-cta:hover { background: var(--brass-deep); }
.rates-note { font-size: 0.78rem; opacity: 0.8; margin-top: 1rem; }
.rates-note a { color: inherit; text-decoration: underline; }
.rates-error { padding: 1.2rem 0; font-size: 0.95rem; }
@media (max-width: 640px) {
  .rates-card { padding: 1.6rem 1.2rem 1.2rem; }
  .rates-row { flex-wrap: wrap; }
  .rates-cta { flex-basis: 100%; text-align: center; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .booking-bar { grid-template-columns: 1fr 1fr; top: auto; bottom: 4.5rem; transform: translateX(-50%); }
  .bb-search { grid-column: 1 / -1; margin: 0; }
  .hero-copy { top: 42%; }
  .hero-credit { display: none; }
  .scroll-down { display: none; }
  .trio { grid-template-columns: 1fr; gap: 2.6rem; }
  .venue-picker { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .room-duo { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .menu-columns { grid-template-columns: 1fr; gap: 2.5rem; }
  .car-arrow.prev { left: 4px; }
  .car-arrow.next { right: 4px; }
  /* The full six-item bar needs up to 882px (Spanish is the widest); below
     that the optional links are dropped rather than squeezed. Each one is
     still reachable from the burger menu and the footer. Scoped to the
     utility bar so the blog nav keeps its own 640px breakpoint. */
  .utility-bar .hide-mobile { display: none; }
}
@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .utility-inner { padding: 0.55rem 1rem; }
  .utility-left, .utility-right { gap: 0.9rem; }
  .header-inner { padding: 0.9rem 1rem; }
  .logo-img { height: 60px; }
  .site-header.is-stuck .logo-img { height: 46px; }
  .header-icon-link span { display: none; }
  .section { padding: 3.5rem 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============ Local Tips — blog ============ */
/* Simplified header used on blog pages (logo + minimal nav, no overlay) */
.blog-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.blog-header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.blog-header .logo-img { height: 48px; width: auto; display: block; }
.blog-nav { display: flex; align-items: center; gap: 1.6rem; }
.blog-nav a {
  font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none;
}
.blog-nav a:hover { color: var(--green); }
.blog-nav .btn-book {
  border: 1px solid var(--green); color: var(--green);
  padding: 0.45rem 1.1rem; border-radius: 2px; transition: all 0.2s;
}
.blog-nav .btn-book:hover { background: var(--green); color: var(--cream); }

/* Article hero */
.article-hero {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end;
  background: var(--green-deep) center/cover no-repeat;
  color: var(--cream);
}
.article-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,51,31,0.15) 0%, rgba(3,51,31,0.55) 60%, rgba(3,51,31,0.85) 100%);
}
.article-hero-inner {
  position: relative; z-index: 2; max-width: 900px;
  margin: 0 auto; width: 100%; padding: 3rem 2rem 3.4rem;
}
.article-kicker {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.72rem; color: var(--brass); margin-bottom: 1rem;
}
.article-title {
  font-family: var(--serif); font-weight: 500; line-height: 1.08;
  font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 1rem; max-width: 20ch;
}
.article-meta {
  font-family: var(--sans); font-size: 0.85rem; color: rgba(246,241,231,0.85);
  display: flex; gap: 1.2rem; flex-wrap: wrap;
}

/* Article body */
.article-body {
  max-width: 720px; margin: 0 auto; padding: 3.2rem 1.5rem 4rem;
}
.article-lead {
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.5;
  color: var(--green); margin-bottom: 2rem; font-style: italic;
}
.article-body p {
  font-family: var(--sans); font-size: 1.05rem; line-height: 1.85;
  color: var(--ink); margin-bottom: 1.3rem;
}
.article-body h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  color: var(--green); line-height: 1.2; margin: 2.8rem 0 1rem;
  padding-top: 0.4rem; scroll-margin-top: 90px;
}
.article-body h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.3rem;
  color: var(--ink); margin: 1.8rem 0 0.6rem;
}
.article-body ul { margin: 0 0 1.4rem 1.2rem; }
.article-body li {
  font-family: var(--sans); font-size: 1.02rem; line-height: 1.7;
  color: var(--ink); margin-bottom: 0.35rem; list-style: none; position: relative;
  padding-left: 1.1rem;
}
.article-body li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 6px; height: 6px; background: var(--brass); border-radius: 50%;
}
.best-for {
  font-family: var(--sans); font-size: 0.95rem; color: var(--muted);
  border-left: 3px solid var(--brass); padding: 0.4rem 0 0.4rem 1rem;
  margin: 0.4rem 0 1.5rem; font-style: italic;
}
.best-for strong { color: var(--green); font-style: normal; }
.article-divider { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* FAQ accordions */
.faq details {
  border-bottom: 1px solid var(--line); padding: 0.4rem 0;
}
.faq summary {
  font-family: var(--serif); font-size: 1.2rem; color: var(--green);
  cursor: pointer; list-style: none; padding: 0.9rem 0; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0.75rem;
  font-family: var(--sans); font-size: 1.4rem; color: var(--brass);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-bottom: 0.9rem; }

/* In-article CTA band */
.article-cta {
  background: var(--green); color: var(--cream);
  text-align: center; padding: 3rem 1.5rem; margin-top: 1rem;
}
.article-cta h2 {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.8rem;
}
.article-cta p {
  font-family: var(--sans); color: rgba(246,241,231,0.9);
  max-width: 44ch; margin: 0 auto 1.6rem;
}
.article-cta .btn-solid {
  display: inline-block; background: var(--brass); color: var(--green-deep);
  font-family: var(--sans); letter-spacing: 0.03em; text-decoration: none;
  padding: 0.85rem 2.2rem; border-radius: 2px; transition: background 0.2s;
}
.article-cta .btn-solid:hover { background: var(--cream); }

/* Blog index */
.blog-index-hero {
  background: var(--cream); text-align: center; padding: 4rem 1.5rem 2.5rem;
}
.blog-index-hero .article-kicker { color: var(--brass-deep); }
.blog-index-hero h1 {
  font-family: var(--serif); font-weight: 500; color: var(--green);
  font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.8rem;
}
.blog-index-hero p {
  font-family: var(--sans); color: var(--muted); max-width: 52ch; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.7;
}
.post-grid {
  max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem 4.5rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem;
}
.post-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(6,79,45,0.14); }
.post-card-img { aspect-ratio: 3/2; background: var(--green-deep) center/cover no-repeat; }
.post-card-body { padding: 1.4rem 1.5rem 1.7rem; }
.post-card .post-kicker {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.68rem; color: var(--brass-deep); margin-bottom: 0.6rem;
}
.post-card h2 {
  font-family: var(--serif); font-weight: 500; font-size: 1.5rem;
  color: var(--green); line-height: 1.25; margin-bottom: 0.6rem;
}
.post-card p {
  font-family: var(--sans); font-size: 0.95rem; line-height: 1.65; color: var(--muted);
}
.post-card .post-date { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

@media (max-width: 640px) {
  .blog-header-inner { padding: 0.8rem 1.1rem; }
  .blog-nav { gap: 1rem; }
  .blog-nav .hide-mobile { display: none; }
  .article-hero { min-height: 52vh; }
  .article-lead { font-size: 1.3rem; }
}

/* ============ Quick chat dock ============ */
/* Guests in Vietnam reach for Zalo or WhatsApp before the phone, so both stay
   within thumb reach on every page. Kept to the brands' own colours — these are
   recognised on sight, and a tasteful brass version of them would not be. */
.chat-dock {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 50;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.chat-btn {
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; text-decoration: none;
  box-shadow: 0 6px 18px rgba(3, 51, 31, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chat-btn:hover, .chat-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(3, 51, 31, 0.36);
}
.chat-btn:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.chat-btn svg { width: 1.6rem; height: 1.6rem; fill: currentColor; display: block; }
.chat-wa { background: #25d366; }
.chat-zalo { background: #0068ff; }
.chat-mark {
  font-family: "Lora", Georgia, serif;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.01em; line-height: 1;
}

@media (max-width: 640px) {
  .chat-dock { right: 1rem; bottom: 1rem; gap: 0.55rem; }
  .chat-btn { width: 2.75rem; height: 2.75rem; }
  .chat-btn svg { width: 1.45rem; height: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-btn { transition: none; }
  .chat-btn:hover, .chat-btn:focus-visible { transform: none; }
}

/* On phones the dock overlaps the booking bar's "Check Rates" button, which is
   the one thing on the hero that must stay tappable. Hold the dock back until
   the booking bar has scrolled away. .chat-clear is set in script.js. */
@media (max-width: 640px) {
  .chat-dock {
    opacity: 0; pointer-events: none; transform: translateY(0.5rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  body.chat-clear .chat-dock {
    opacity: 1; pointer-events: auto; transform: none;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .chat-dock { transition: none; }
}

/* ---- Children & extra beds: one set of terms for all four rooms ---- */
.room-policy {
  max-width: 1080px; margin: 2.5rem auto 0;
  background: var(--paper); border: 1px solid var(--line);
  padding: 1.6rem 1.8rem;
}
.room-policy h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem;
  color: var(--green); margin-bottom: 0.9rem;
}
.room-policy ul { list-style: none; display: grid; gap: 0.65rem; }
.room-policy li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.95rem; line-height: 1.65; color: var(--muted);
}
.room-policy li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--brass);
}

@media (max-width: 640px) {
  .room-policy { margin-top: 1.8rem; padding: 1.3rem 1.2rem; }
}

/* ---- Exact location map ---- */
.venue-map { max-width: 1080px; margin: 3.5rem auto 0; }
.venue-map .venue-sub-heading { margin-bottom: 0.6rem; }
.venue-map-address {
  text-align: center; color: var(--muted);
  font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.4rem;
}
.map-frame {
  position: relative; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); background: var(--paper);
  overflow: hidden;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-directions {
  display: block; width: fit-content; margin: 1.2rem auto 0;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green); border-bottom: 1px solid var(--brass);
  padding-bottom: 0.3rem; transition: color 0.2s ease;
}
.map-directions:hover { color: var(--brass-deep); }

@media (max-width: 640px) {
  .venue-map { margin-top: 2.5rem; }
  /* a 16:9 strip is too shallow to read a street on a phone */
  .map-frame { aspect-ratio: 4 / 3; }
}
