/* Amor Spa – Sunam-inspired design system */
:root {
  --bg-cream: #fdf8f3;
  --bg-card: #f5ebe0;
  --bg-card-border: #e8ddd0;
  --brown-dark: #4a3b31;
  --brown-mid: #6b5344;
  --gold: #c9a227;
  --text: #3d3229;
  --text-muted: #6b5d52;
  --white: #ffffff;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(74, 59, 49, 0.08);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-cream);
}

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

a {
  color: var(--brown-dark);
  text-decoration: none;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brown-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 59, 49, 0.25);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Floating bar — bottom-left sticky contact */
.float-bar {
  position: fixed;
  left: calc(12px + env(safe-area-inset-left));
  bottom: calc(16px + env(safe-area-inset-bottom));
  top: auto;
  transform: none;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-bar__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(74, 59, 49, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-bar__btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 22px rgba(74, 59, 49, 0.3);
}

.float-bar__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.float-bar__btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 993px) {
  .section.booking {
    padding: 55px 0 55px;
  }

  .booking-grid {
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 1.75vw, 1.5rem);
    grid-template-columns: minmax(0, max-content) minmax(0, max-content);
  }

  /* Booking cột trái — căn giữa theo chiều cao form, sát form bên phải */
  .booking-info {
    max-width: 515px;
    width: 100%;
    justify-self: end;
    align-self: center;
    text-align: left;
  }

  .booking-info .section-title.section-title--left {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .booking-info .booking-trust-bar {
    justify-content: center;
    margin-inline: 0;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .booking-info .booking-trust-item {
    justify-content: center;
    gap: 0;
  }

  .booking-info .booking-trust-icon-wrap {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  .booking-info .booking-trust-icon {
    width: 30px;
    height: 30px;
  }

  .booking-info .contact-links {
    display: block;
    width: 100%;
  }

  .booking-info .contact-links__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(74, 59, 49, 0.12);
    border-radius: 18px;
    overflow: hidden;
  }

  .booking-info .contact-links__grid .contact-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.5rem;
    padding: 1rem 1.15rem;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--brown-dark);
    font-size: 0.95rem;
    font-weight: 600;
    border-right: 1px solid rgba(74, 59, 49, 0.12);
    border-bottom: 1px solid rgba(74, 59, 49, 0.12);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .booking-info .contact-links__grid .contact-chip:nth-child(2),
  .booking-info .contact-links__grid .contact-chip:nth-child(4) {
    border-right: none;
  }

  .booking-info .contact-links__grid .contact-chip:nth-child(3),
  .booking-info .contact-links__grid .contact-chip:nth-child(4) {
    border-bottom: none;
  }

  .booking-info .contact-links__grid .contact-chip:hover {
    background: #4a3b31;
    color: var(--white);
    border-color: rgba(74, 59, 49, 0.12);
  }

  .booking-info .contact-links__grid .contact-chip__icon {
    width: 30px;
    height: 30px;
  }

  .booking-form-panel {
    max-width: 420px;
    justify-self: start;
    align-self: center;
    width: 100%;
  }

  .booking-form .btn-block {
    width: 100%;
    padding: 22px;
  }

  /* Bảng giá — desktop: nhãn minutes */
  .menu-col-duration small,
  .menu-price-row--head .menu-col-duration small {
    font-size: 13px;
    font-weight: 400;
  }

  .menu-col-name strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .menu-col-price {
    font-size: 13px;
  }

  .menu-item-desc {
    font-size: 14px;
    margin: 0;
    padding-right: 0;
  }

  .menu-price-item .menu-col-name {
    padding-right: 0.35rem;
  }

  .menu-price-item .menu-price-row {
    align-items: start;
    row-gap: 8px;
  }

  .menu-cta-note {
    font-size: 22px;
  }

  .menu-card-title,
  .menu-price-row--head .menu-card-title {
    font-size: 20px;
    font-weight: 700;
  }

  .booking-trust-divider {
    width: 1px;
    height: 24px;
    background: var(--bg-card-border);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 221, 208, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 47px;
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-cta {
  white-space: nowrap;
  /* Không transition transform — tránh chặn keyframes pulse */
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  transform-origin: center center;
  animation: header-cta-pulse 2s ease-in-out infinite;
  will-change: transform;
}

@media (min-width: 993px) {
  .site-header .header-inner {
    transition: min-height 0.35s ease;
  }

  .site-header .logo-img {
    transition: height 0.35s ease;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 64px;
  }

  .site-header.is-scrolled .logo-img {
    height: 44px;
  }

  .site-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(74, 59, 49, 0.1);
  }
}

@keyframes header-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(74, 59, 49, 0.22);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(74, 59, 49, 0.38);
  }
}

.header-cta:hover {
  animation: none;
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 8px 22px rgba(74, 59, 49, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .header-cta {
    animation: none !important;
  }

  .site-header .header-inner,
  .site-header .logo-img {
    transition: none;
  }
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 59px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown-dark);
  margin: 0 0 1rem;
}

@media (max-width: 992px) {
  .hero-h1-br--line3 {
    display: none;
  }
}

.hero-lead {
  font-size: 20px;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.hero-perks-box {
  background: #f3ebe3;
  border: 1px solid #e5d9ce;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 480px;
  box-shadow: 0 2px 12px rgba(74, 59, 49, 0.04);
}

.hero-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.hero-perks li:last-child {
  margin-bottom: 0;
}

.perk-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  color: #4a3b31;
}

.perk-check {
  width: 18px;
  height: 18px;
  display: block;
}

/* Hero gallery — lưới 2×2, mỗi ô vuông 1:1 */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  justify-items: stretch;
}

.hero-img {
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 0;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  align-self: stretch;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img--top {
  grid-column: 1;
  grid-row: 1;
}

.hero-img--bottom {
  grid-column: 1;
  grid-row: 2;
}

.hero-img--feature {
  grid-column: 2;
}

.hero-img--feature-top {
  grid-row: 1;
}

.hero-img--feature-bottom {
  grid-row: 2;
}

/* Stats bar */
.stats-bar {
  background: #4f4539;
  color: var(--white);
  padding: 1.85rem 0;
}

.stats-slider-wrap {
  position: relative;
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.stats-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.5rem;
  background: linear-gradient(to right, transparent, #4f4539);
  pointer-events: none;
}

.stats-track {
  display: flex;
  /* Cách 2: gap 0 + --stat-item-space-after từng mục (xem .stat-item--* bên dưới) */
  --stats-track-gap: 0;
  gap: var(--stats-track-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.15rem;
}

.stats-track::-webkit-scrollbar {
  display: none;
}

.stat-item {
  flex: 0 0 var(--stat-item-basis, calc((100% - 1rem) / 2.15));
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: var(--stat-item-gap, 0.72rem);
  padding: var(--stat-item-padding, 0);
  margin-inline-end: var(--stat-item-space-after, 0);
  text-align: left;
  min-width: 0;
  box-sizing: border-box;
}

.stat-item:last-child {
  margin-inline-end: 0;
}

/*
 * Stats bar — chỉnh TỪNG MỤC (css/style.css)
 *
 * TRONG 1 mục (icon ↔ chữ):
 *   --stat-item-gap
 *   --stat-item-padding
 *
 * GIỮA các mục (4.9 ↔ 1,000+ ↔ 50% ↔ 3 min):
 *   Cách 1 — tất cả đều nhau: .stats-track { --stats-track-gap: 1rem; }
 *   Cách 2 — từng đoạn riêng: .stats-track { --stats-track-gap: 0; }
 *     rồi --stat-item-space-after trên từng .stat-item--* (khoảng trống bên phải ô đó)
 *
 * Độ rộng ô (mobile):
 *   --stat-item-basis
 */
.stat-item--rating {
  --stat-item-gap: 0.72rem;
  --stat-item-padding: 0;
  --stat-item-space-after: 1rem;
  --stat-item-basis: calc((100% - 1rem) / 2.15);
}

.stat-item--travelers {
  --stat-item-gap: 0.72rem;
  --stat-item-padding: 0;
  --stat-item-space-after: 0.75rem;
  --stat-item-basis: calc((100% - 0.75rem) / 2.15);
}

.stat-item--discount {
  --stat-item-gap: 0.72rem;
  --stat-item-padding: 0;
  --stat-item-space-after: 1.25rem;
  --stat-item-basis: calc((100% - 1.25rem) / 2.15);
}

.stat-item--pickup {
  --stat-item-gap: 0.72rem;
  --stat-item-padding: 0;
  --stat-item-space-after: 0;
  --stat-item-basis: calc((100% - 1rem) / 2.15);
}

.stat-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f7f3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
}

.stat-icon-svg {
  width: 34px;
  height: 34px;
  display: block;
}

.stat-text {
  min-width: 0;
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-top: 0.15rem;
}

@media (max-width: 1023px) {
  .stats-slider-wrap--marquee {
    overflow: hidden;
  }

  .stats-track--marquee {
    overflow: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    width: max-content;
    will-change: transform;
    cursor: grab;
    touch-action: none;
  }

  .stats-track--marquee.is-dragging,
  .stats-marquee.is-dragging .stats-track--marquee {
    cursor: grabbing;
    user-select: none;
  }
}

@media (min-width: 1024px) {
  .stats-slider-wrap::after {
    display: none;
  }

  .stats-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    --stats-track-gap: 0;
    gap: var(--stats-track-gap);
    overflow: visible;
    scroll-snap-type: none;
    max-width: min(1120px, 100%);
    margin-inline: auto;
  }

  .stat-item {
    flex: 1 1 0;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    /* gap/padding: dùng --stat-item-gap / --stat-item-padding trên từng .stat-item--* */
  }
}

/* Sections */
.section {
  padding: 35px 0 55px;
}

.section-bg-light {
  background: #fdf8f3;
}

.section-bg-dark {
  background: #f5ebe0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  color: var(--brown-dark);
  margin: 0 0 0.75rem;
}

.section-title--left {
  text-align: left;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* Privileges – boxed cards, 3 + 2 grid */
.privileges .section-title {
  margin-bottom: 0.65rem;
}

.section-divider {
  width: 52px;
  height: 2px;
  background: var(--brown-dark);
  margin: 0 auto 1.25rem;
}

.privileges .section-sub {
  margin-bottom: 2.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (min-width: 769px) {
  .privileges .section-sub {
    font-size: 20px;
    max-width: 800px;
  }
}

.privilege-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.35rem 1.5rem;
  max-width: 1080px;
  margin-inline: auto;
}

.privilege-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  background: #faf6f1;
  border: 1px solid rgba(232, 221, 208, 0.65);
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.6rem;
  box-shadow: 0 6px 28px rgba(74, 59, 49, 0.07);
}

.privilege-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.privilege-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.privilege-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.15rem;
  background: var(--bg-card-border);
}

.privilege-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.privilege-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  margin: 0 0 0.55rem;
  line-height: 1.35;
}

.privilege-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Journey – 4 steps with icons + dashed connector (reference layout) */
.journey-track {
  position: relative;
  margin-top: 2.5rem;
  padding: 0 0.5rem;
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 0;
  border-top: 2px dashed rgba(74, 59, 49, 0.35);
  z-index: 0;
}

.journey-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.journey-step {
  flex: 1;
  min-width: 0;
  max-width: 240px;
  text-align: center;
}

.journey-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(74, 59, 49, 0.08);
  color: #4a3b31;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) {
  .journey-step:hover .journey-icon-wrap,
  .journey-icon-wrap:hover {
    background: #4a3b31;
    color: #fff;
    box-shadow: 0 6px 22px rgba(74, 59, 49, 0.22);
    transform: translateY(-2px);
  }
}

.journey-icon-svg {
  width: 54px;
  height: 54px;
  display: block;
}

.journey-step h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.journey-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.55;
  max-width: 220px;
}

/* Menu */
.menu-note {
  margin-bottom: 2.75rem !important;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Desktop ≥993px: 2 cột trắng (trái: 1+4, phải: 2+3) — giữ layout cũ */
@media (min-width: 993px) {
  .menu-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
  }

  .menu-column .menu-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .menu-column .menu-card + .menu-card {
    margin-top: 1.75rem;
  }
}

/* Tablet/mobile ≤992px: 4 box riêng, Scrub (4) sau Body (2) & Hair (3) */
@media (max-width: 992px) {
  .menu-columns {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .menu-column--primary,
  .menu-column--secondary {
    display: contents;
  }

  .menu-card--massage {
    order: 1;
  }

  .menu-card--body {
    order: 2;
  }

  .menu-card--hair {
    order: 3;
  }

  .menu-card--scrub {
    order: 4;
  }
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.25;
  min-width: 0;
}

.menu-price-grid--spaced {
  margin-top: 1.75rem;
}

.menu-price-row--head-sub .menu-col-name--head-spacer {
  display: block;
  min-height: 0;
  padding: 0;
  margin: 0;
}

.menu-price-grid {
  --menu-cols: minmax(0, 1fr) 4.75rem 4.75rem 5.15rem;
}

.menu-price-row {
  display: grid;
  grid-template-columns: var(--menu-cols);
  column-gap: 0.5rem;
  align-items: baseline;
}

.menu-price-row--head {
  align-items: end;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bg-card-border);
}

.menu-price-row--head .menu-card-title {
  align-self: center;
}

.menu-col-duration {
  text-align: right;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
}

.menu-col-duration span {
  display: block;
  font-size: 0.95rem;
}

.menu-col-duration small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: lowercase;
}

.menu-col-duration--hidden {
  visibility: hidden;
}

.menu-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-price-item {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--bg-card-border);
}

.menu-price-item .menu-price-row {
  display: grid;
  grid-template-columns: var(--menu-cols);
  column-gap: 0.5rem;
  row-gap: 0.35rem;
  align-items: baseline;
}

.menu-price-item .menu-col-name {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.menu-price-item .menu-item-desc {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.menu-price-item .menu-price-row > .menu-col-price:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.menu-price-item .menu-price-row > .menu-col-price:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.menu-price-item .menu-price-row > .menu-col-price:nth-child(5) {
  grid-column: 4;
  grid-row: 1;
}

.menu-price-item:last-child {
  border-bottom: none;
}

.menu-col-name strong {
  font-size: 15px;
  color: var(--brown-dark);
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

.menu-col-price {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-mid);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.menu-col-price:not(.menu-col-price--empty)::after {
  content: "đ";
  font-weight: 700;
}

.menu-col-price--empty {
  min-height: 1em;
}

.menu-col-price--empty::after {
  content: none;
}

@media (min-width: 993px) {
  .menu-col-price--empty {
    color: var(--text-muted);
    font-weight: 600;
  }

  .menu-col-price--empty::after {
    content: "-";
    font-weight: 600;
  }

  .menu-price-row--head .menu-col-duration--hidden {
    visibility: visible;
  }

  .menu-price-row--head .menu-col-duration--hidden::after {
    content: "-";
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.2;
  }

  .menu-price-row--head-sub .menu-col-name--head-spacer::after {
    content: "-";
    display: block;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.2;
  }
}

.menu-item-desc {
  margin: 0.35rem 0 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.menu-cta {
  background: var(--white);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
}

.menu-cta-note {
  margin: 0 0 1.25rem;
  font-size: 18px;
  line-height: 1.55;
}

.reviews {
  overflow-x: clip;
}

@media (min-width: 993px) {
  .reviews {
    overflow-x: visible;
  }

  .reviews .container {
    overflow: visible;
  }

  .reviews-layout {
    overflow: visible;
  }
}

/* Reviews — desktop: maps trái (ảnh tĩnh), marquee phải; mobile: chồng dọc */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 47.5%) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.75vw, 2rem);
  align-items: center;
  margin-top: 0.35rem;
}

.reviews-map-wrap {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  line-height: 0;
  overflow: visible;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  filter: none;
  border-radius: 0;
}

.reviews-map-link {
  display: block;
  line-height: 0;
  border-radius: inherit;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews-map-link:hover {
  opacity: 0.92;
}

.reviews-map-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.reviews-map-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  filter: none;
  border-radius: 15px;
  vertical-align: top;
}

.reviews-marquee-shell {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 993px) {
  .reviews-marquee-shell {
    max-width: none;
  }
}

.reviews-marquee {
  overflow: hidden;
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0 1.25rem;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

@media (min-width: 993px) {
  /* Cột trái co theo ảnh Maps — tránh khoảng trắng giữa Maps và carousel */
  .reviews-layout {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  .reviews-map-wrap {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: 100%;
    max-width: 400px;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
  }

  .reviews-map-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
  }

  /* Fade chỉ trên vùng carousel (bên trái shell), không phủ ảnh Maps */
  .reviews-marquee-shell {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .reviews-marquee-shell::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: var(--reviews-fade-width, 48px);
    background: linear-gradient(
      to left,
      #f5ebe0 0%,
      rgba(245, 235, 224, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-excerpt {
    font-size: 14px;
  }
}

.reviews-marquee.is-dragging {
  cursor: grabbing;
}

.reviews-marquee.is-dragging .review-card {
  pointer-events: none;
}

.reviews-marquee .review-read-more {
  pointer-events: auto;
  cursor: pointer;
}

/* --- Spa photo strip (full-bleed marquee, sau Privileges) --- */
.photo-marquee-section {
  padding-block: 0;
  overflow: hidden;
}

.photo-marquee-shell {
  min-width: 0;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  box-sizing: border-box;
}

.photo-marquee {
  overflow: hidden;
  margin: 0;
  width: 100%;
  padding: 0;
  mask-image: none;
  -webkit-mask-image: none;
  cursor: grab;
  /* pan-y khiến mobile ưu tiên cuộn dọc → kéo ngang khó; none để JS nhận swipe ngang */
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.photo-marquee.is-dragging {
  cursor: grabbing;
}

.photo-marquee.is-dragging .photo-marquee-slide {
  pointer-events: none;
}

.photo-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.photo-marquee-slide {
  flex: 0 0 auto;
  height: clamp(200px, 28vw, 320px);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  display: block;
  line-height: 0;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.photo-marquee-slide--landscape {
  aspect-ratio: 3 / 2;
  width: auto;
}

.photo-marquee-slide--portrait {
  aspect-ratio: 2 / 3;
  width: auto;
}

.photo-marquee-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Gallery album lightbox */
.gallery-lightbox {
  border: none;
  padding: 0;
  max-width: min(960px, 96vw);
  width: 100%;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.gallery-lightbox::backdrop {
  background: rgba(45, 36, 30, 0.72);
}

.gallery-lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.gallery-lightbox__img {
  display: block;
  max-width: min(92vw, 900px);
  max-height: min(82vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.gallery-lightbox__caption {
  color: #fff;
  font-size: 0.88rem;
  text-align: center;
}

.gallery-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gallery-lightbox__nav--prev {
  left: 0.75rem;
}

.gallery-lightbox__nav--next {
  right: 0.75rem;
}

@media (min-width: 900px) {
  .gallery-lightbox__nav--prev {
    left: max(0.75rem, calc(50vw - 480px));
  }

  .gallery-lightbox__nav--next {
    right: max(0.75rem, calc(50vw - 480px));
  }
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__close:hover {
  background: #fff;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    /* Still one horizontal row — motion is slowed in JS, not replaced with a grid */
    flex-wrap: nowrap;
  }
}

.review-card {
  flex: 0 0 min(300px, min(92%, 340px));
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: none;
  border: 1px solid var(--bg-card-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-meta {
  min-width: 0;
}

.review-name {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
}

.review-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(var(--avatar-hue, 24) 55% 88%);
  color: hsl(var(--avatar-hue, 24) 35% 32%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.review-avatar--img {
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.review-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stars {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.stars.stars--outline {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #c9a227;
  line-height: 0;
}

.star-outline-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

.reviews .section-title {
  font-size: 34px;
}

.review-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.review-excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-mid);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-read-more:hover {
  color: var(--brown-dark);
}

.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-photo-btn {
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  box-shadow: none;
}

.review-photo-btn img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.review-photo-btn:hover img {
  transform: scale(1.04);
}

.review-dialog {
  border: none;
  padding: 0;
  max-width: min(560px, 92vw);
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(74, 59, 49, 0.22);
  overflow: visible;
}

.review-dialog::backdrop {
  background: rgba(45, 36, 30, 0.55);
}

.review-dialog__inner {
  padding: 1.5rem 1.6rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
}

.review-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--brown-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.review-dialog__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: #4a3b31;
  color: #fff;
  font-size: 1.593rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 3px 11px rgba(74, 59, 49, 0.18);
}

.review-dialog__nav--prev {
  left: 0.525rem;
}

.review-dialog__nav--next {
  right: 0.525rem;
}

@media (min-width: 640px) {
  .review-dialog__nav--prev {
    left: max(0.525rem, calc(50vw - 300px));
  }

  .review-dialog__nav--next {
    right: max(0.525rem, calc(50vw - 300px));
  }
}

.review-dialog__nav:hover {
  background: #5c4a3d;
  color: #fff;
}

.review-dialog__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

html.review-dialog-open,
html.review-dialog-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.review-dialog-open body {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.review-dialog__text-wrap {
  position: relative;
}

.review-dialog__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: min(50vh, 320px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.review-dialog__scroll-hint {
  display: none;
}

.review-dialog__scroll-hint-icon {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  animation: review-scroll-hint-bounce 1.4s ease-in-out infinite;
}

@keyframes review-scroll-hint-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@media (max-width: 992px) {
  .review-dialog__inner {
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 720px);
  }

  .review-dialog__text-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .review-dialog__text {
    flex: 1;
    min-height: 0;
    max-height: min(52vh, 380px);
  }

  .review-dialog__text-wrap.is-scrollable:not(.is-scrolled-bottom)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3.25rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 72%);
    pointer-events: none;
    z-index: 1;
  }

  .review-dialog__text-wrap.is-scrollable:not(.is-scrolled-bottom) .review-dialog__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.4rem;
    z-index: 2;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brown-mid);
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-dialog__scroll-hint-icon {
    animation: none;
  }
}

.review-dialog__text p {
  margin: 0 0 0.85rem;
}

.review-dialog__text p:last-child {
  margin-bottom: 0;
}

.review-dialog__actions {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bg-card-border);
}

.review-dialog__translate {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-mid);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-dialog__translate:hover {
  color: var(--brown-dark);
}

.review-dialog__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.review-dialog-photo {
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.review-dialog-photo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  pointer-events: none;
}

.review-lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

.review-dialog:has(.review-lightbox.is-open) .review-dialog__nav {
  opacity: 0;
  pointer-events: none;
}

.review-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(45, 36, 30, 0.72);
  cursor: pointer;
}

.review-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.review-lightbox__img {
  display: block;
  max-width: min(92vw, 900px);
  max-height: min(85vh, 720px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
}

.review-lightbox__caption {
  text-align: center;
  color: var(--white);
  font-size: 0.85rem;
  margin-top: 0.65rem;
}

.review-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.review-lightbox__close:hover {
  background: #fff;
}

/* Guarantee */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #faf6f1;
  border: 1px solid var(--bg-card-border);
  color: #4a3b31;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) {
  .feature-box:hover .feature-icon-wrap {
    background: #4a3b31;
    color: #fff;
    transform: translateY(-2px);
  }
}

.feature-icon-svg {
  width: 42px;
  height: 42px;
  display: block;
}

.feature-box h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.guarantee-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.booking-trust-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  margin: 0 0 1.5rem;
  padding: 1.05rem 1.35rem;
  min-height: 3.75rem;
  box-sizing: border-box;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(74, 59, 49, 0.12);
  border-radius: 18px;
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.85vw, 0.96rem);
  font-weight: 600;
  color: var(--brown-dark);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.booking-trust-bar::-webkit-scrollbar {
  display: none;
}

.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  min-width: 0;
}

.booking-trust-item--full {
  width: 100%;
  justify-content: center;
}

.booking-trust-item span:last-child {
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.booking-trust-icon-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  aspect-ratio: 1 / 1;
  color: var(--brown-dark);
  box-sizing: border-box;
}

.booking-trust-icon {
  display: block;
  width: 38px;
  height: 38px;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

.booking-trust-divider {
  flex-shrink: 0;
  width: 1px;
  height: 32px;
  align-self: center;
  background: var(--bg-card-border);
}

.booking-trust-divider--full {
  width: 100%;
  height: 1px;
}

@media (max-width: 480px) {
  .booking-trust-bar {
    gap: 0.5rem 0.65rem;
    padding: 0.85rem 1rem;
    min-height: 3.25rem;
    border-radius: 16px;
  }

  .booking-trust-icon-wrap {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  .booking-trust-icon {
    width: 30px;
    height: 30px;
  }

  .booking-trust-divider {
    height: 26px;
  }
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-links__grid {
  display: contents;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--bg-card-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-chip__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

.contact-chip:hover {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}

.contact-chip--phone {
  background: var(--white);
  color: var(--brown-dark);
  border: 1px solid var(--bg-card-border);
}

.contact-chip--phone .contact-chip__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}

.booking-form-panel {
  background: var(--white);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.booking-form-panel__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 0 0 1.25rem;
  text-align: center;
}

.contact-chip--phone:hover {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-form__status {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.booking-form__status.is-success {
  color: #c6a100;
  font-weight: 600;
}

.booking-form__status.is-error {
  color: #b42318;
}

.booking-form input,
.booking-form select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--bg-card-border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
}

.booking-services-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bg-card-border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  margin: 0;
}

.booking-services-list legend {
  padding: 0 0.35rem;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.booking-service-option {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  line-height: 1.4;
}

.booking-service-option span {
  display: block;
  font-size: 13px;
}

.booking-service-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.booking-form .is-invalid {
  border-color: #b42318 !important;
}

.booking-form input::placeholder {
  font-size: 13px;
  color: var(--text-muted);
}

.booking-form select {
  color: var(--text-muted);
}

.booking-form select option {
  color: var(--text);
}

.booking-datetime-field {
  position: relative;
  display: block;
  width: 100%;
}

/* Chỉ mobile/touch: iOS không hiện placeholder datetime-local */
.booking-datetime-field__hint {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-muted);
}

.booking-datetime-field.has-value .booking-datetime-field__hint {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .booking-datetime-field__hint {
    display: none;
  }
}

.booking-datetime-field.is-invalid input[type="datetime-local"] {
  border-color: #b42318 !important;
}

.booking-form input[type="datetime-local"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
  color: var(--text);
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
  min-height: 2.75rem;
}
.site-footer {
  position: relative;
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 2rem;
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0;
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.footer-brand .logo {
  display: inline-flex;
  justify-content: center;
}

.logo-img--footer {
  height: 48px;
  max-width: 200px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-brand a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  padding-top: 0.75rem;
}

.footer-design {
  text-align: center;
  margin: 0.5rem auto 0;
  padding-bottom: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-design a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-design a:hover {
  color: #ffe566;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 1.25rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 720px;
}

.footer-legal__link {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  text-align: center;
}

.footer-legal__link:hover {
  color: #ffe566;
}

.footer-legal__sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.legal-dialog {
  border: none;
  padding: 0;
  max-width: min(640px, calc(100vw - 2rem));
  width: 100%;
  border-radius: 16px;
  background: #f5ebe0;
  color: #4a3b31;
  box-shadow: 0 24px 64px rgba(44, 28, 20, 0.28);
}

.legal-dialog::backdrop {
  background: rgba(30, 18, 12, 0.55);
}

.legal-dialog__inner {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
}

.legal-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(74, 59, 49, 0.1);
  color: #4a3b31;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.legal-dialog__close:hover {
  background: rgba(74, 59, 49, 0.16);
}

.legal-dialog__title {
  margin: 0 2rem 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #4a3b31;
  line-height: 1.35;
}

.legal-dialog__body {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding-right: 0.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a3b31;
}

.legal-dialog__body h3 {
  margin: 1.1rem 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #4a3b31;
}

.legal-dialog__body h3:first-child {
  margin-top: 0;
}

.legal-dialog__body p {
  margin: 0 0 0.75rem;
}

.legal-dialog__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}

.legal-dialog__body li {
  margin-bottom: 0.35rem;
}

.legal-dialog__body a {
  color: #4a3b31;
  text-decoration: underline;
}

.legal-dialog__body strong {
  color: #4a3b31;
}

.booking-success-dialog {
  border: none;
  padding: 0;
  width: min(540px, calc(100vw - 2rem));
  border-radius: 14px;
  background: #f5ebe0;
  color: #4a3b31;
  box-shadow: 0 22px 56px rgba(44, 28, 20, 0.28);
}

.booking-success-dialog::backdrop {
  background: rgba(30, 18, 12, 0.55);
}

.booking-success-dialog__inner {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
}

.booking-success-dialog__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(74, 59, 49, 0.12);
  color: #4a3b31;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.booking-success-dialog__title {
  margin: 0 1.8rem 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brown-dark);
}

.booking-success-dialog__text {
  margin: 0 0 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.booking-success-dialog__btn {
  min-width: 180px;
}

/* Desktop — văn bản thường đồng nhất 15px (không gồm .menu-card-title nhóm giá / .menu-cta-note / .hero-lead) */
.hero-perks li,
.section-sub,
.privilege-card p,
.journey-step p,
.menu-note,
.stat-label,
.review-name,
.review-excerpt,
.review-dialog__text,
.review-lightbox__caption,
.feature-box p,
.booking-trust-bar,
.booking-trust-item span,
.contact-chip,
.footer-brand p,
.footer-brand a,
.footer-copy,
.footer-design,
.footer-design a,
.main-nav a {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 380px) {
  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-chip--phone {
    grid-column: auto;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 28px 0 42px;
  }

  .section.photo-marquee-section {
    padding: 0;
  }

  .hero {
    padding: 25px 0 4rem;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-grid,
  .menu-columns,
  .booking-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Booking — tránh min-content của form/select làm tràn ngang (<993px 1 cột) */
  .booking-info,
  .booking-form-panel {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .booking-form input,
  .booking-form select,
  .booking-form input[type="datetime-local"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .booking-form-panel {
    padding: 1.5rem clamp(1rem, 4vw, 1.65rem);
  }

  .booking-form-panel__title {
    font-size: 26px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form select option,
  .booking-form input::placeholder {
    font-size: 13px;
  }

  .booking-form .btn-primary {
    background: var(--brown-dark);
    color: var(--white);
    padding: 20px;
  }

  /* Trust bar — xếp dọc, text xuống dòng, bỏ scroll ngang */
  .booking-trust-bar {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    justify-content: flex-start;
  }

  .booking-trust-item {
    justify-content: center;
  }

  .booking-trust-item span:last-child {
    white-space: normal;
    text-wrap: balance;
  }

  .booking-trust-divider {
    width: 100%;
    height: 1px;
    background: var(--bg-card-border);
  }

  /* Nút liên hệ — lưới 2 cột pill trắng, số điện thoại full-width */
  .contact-links__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .contact-links .contact-chip {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 0.85rem;
    font-size: 0.875rem;
    text-align: center;
  }

  .contact-chip--phone {
    width: 100%;
  }

  .booking .section-title.section-title--left {
    text-align: center;
  }

  .booking-info {
    text-align: center;
  }

  .booking-info .booking-trust-bar {
    margin-inline: 0;
  }

  .hero-gallery {
    max-width: min(540px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  .reviews-marquee-shell {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  /* Maps mobile: max 360px, không khung / shadow thêm từ CSS */
  .reviews-map-wrap {
    width: min(360px, 100%);
    max-width: 360px;
  }

  .reviews-map-img {
    width: 100%;
  }

  .privilege-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }

  .privilege-card,
  .privilege-card:nth-child(4),
  .privilege-card:nth-child(5) {
    grid-column: auto;
  }

  .privilege-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }

  /* Bảng giá — mobile: căn giữa, thứ tự tên → lợi ích → giá */
  .menu-note {
    margin-bottom: 2rem !important;
  }

  .menu-columns {
    margin-bottom: 0;
  }

  .menu-section .section-title,
  .menu-section .section-sub,
  .menu-section .menu-note,
  .menu-section .menu-card,
  .menu-section .menu-price-grid,
  .menu-section .menu-price-list,
  .menu-section .menu-card-title,
  .menu-section .menu-col-duration,
  .menu-section .menu-col-duration span,
  .menu-section .menu-col-duration small,
  .menu-section .menu-col-name,
  .menu-section .menu-item-desc,
  .menu-section .menu-col-price {
    text-align: center;
  }

  .menu-card {
    padding: 1.2rem clamp(1rem, 4vw, 1.75rem);
    overflow-x: visible;
  }

  .menu-price-grid {
    min-width: 0;
  }

  .menu-price-row--head {
    align-items: end;
    margin-bottom: 0;
    padding-bottom: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.35rem;
  }

  .menu-price-row--head .menu-card-title {
    grid-column: 1 / -1;
    text-align: center;
    justify-self: center;
    margin-bottom: calc(0.75rem + 10px);
    font-size: 29px;
  }

  .menu-price-row--head .menu-col-duration {
    text-align: center;
    justify-self: center;
  }

  .menu-price-row--head .menu-col-duration span {
    font-size: 15px;
  }

  .menu-price-row--head .menu-col-duration small {
    font-size: 13px;
    font-weight: 400;
  }

  .menu-price-row--head-sub .menu-col-name--head-spacer {
    display: none;
  }

  .menu-price-item {
    padding: 16px 0;
    text-align: center;
  }

  .menu-price-item .menu-price-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "name name name"
      "desc desc desc"
      "p1 p2 p3";
    gap: 9px;
    column-gap: 10px;
    align-items: stretch;
    justify-items: center;
  }

  .menu-price-item .menu-col-name {
    grid-area: name;
    grid-column: 1 / -1;
    margin: 0;
    justify-self: center;
  }

  .menu-price-item .menu-col-name strong {
    display: block;
    font-size: 21px;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
  }

  .menu-price-item .menu-item-desc {
    grid-area: desc;
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    max-width: none;
  }

  .menu-price-item .menu-price-row > .menu-col-price:nth-child(3) {
    grid-area: p1;
  }

  .menu-price-item .menu-price-row > .menu-col-price:nth-child(4) {
    grid-area: p2;
  }

  .menu-price-item .menu-price-row > .menu-col-price:nth-child(5) {
    grid-area: p3;
  }

  .menu-price-item .menu-col-price {
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    text-align: center;
    padding: 12px 0.25rem;
    font-size: 14px;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(232, 221, 208, 0.85);
    border-radius: 10px;
  }

  .menu-price-item .menu-col-price--empty {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
  }

  .menu-price-item .menu-col-price--empty::after {
    content: "—";
    font-size: 0.85rem;
    font-weight: 600;
  }

  .menu-cta {
    margin-top: 1.25rem;
    padding: 1.35rem clamp(1rem, 4vw, 2rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Văn bản thường — đồng nhất 15px */
  html {
    font-size: 15px;
  }

  .btn,
  .btn.btn-lg,
  .btn.btn-block,
  .booking-form .btn-primary {
    padding: 15px 26px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-perks li,
  .section-sub,
  .privilege-card p,
  .journey-step p,
  .menu-note,
  .review-name,
  .review-excerpt,
  .review-dialog__text,
  .review-lightbox__caption,
  .feature-box p,
  .booking-trust-bar,
  .booking-trust-item span,
  .contact-chip,
  .footer-brand p,
  .footer-brand a,
  .footer-copy,
  .footer-design,
  .footer-design a,
  .main-nav a {
    font-size: 15px;
  }

  .menu-card-title {
    font-size: 29px;
  }

  .menu-cta-note {
    font-size: 17px;
  }

  .stats-bar .stat-label {
    font-size: 14px;
  }

  .privileges .section-sub {
    font-size: 19px;
  }

  /* Review popup — mũi tên prev/next nhỏ hơn 25% */
  .review-dialog__nav {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.195rem;
    box-shadow: 0 2px 8px rgba(74, 59, 49, 0.16);
  }

  .review-dialog__nav--prev {
    left: 0.4rem;
  }

  .review-dialog__nav--next {
    right: 0.4rem;
  }

  .review-dialog__scroll-hint-icon {
    font-size: 0.75rem;
  }

  .float-bar {
    left: calc(10px + env(safe-area-inset-left));
    bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .float-bar__btn {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid var(--bg-card-border);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-img {
    height: 44px;
    max-width: 38vw;
  }

  .header-cta {
    padding: 15px 26px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .privilege-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .privilege-card,
  .privilege-card:nth-child(4),
  .privilege-card:nth-child(5) {
    grid-column: auto;
  }

  .journey-track::before {
    display: none;
  }

  .journey-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
    align-items: start;
    justify-items: center;
  }

  .journey-step {
    max-width: none;
    width: 100%;
  }

  .journey-icon-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .journey-icon-svg {
    width: 58px;
    height: 58px;
  }

  .journey-step h3 {
    font-size: 17px;
  }

  .journey-step p {
    max-width: none;
    font-size: 15px;
  }

  .stat-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .stat-icon-svg {
    width: 30px;
    height: 30px;
  }

  .stat-item strong {
    font-size: 31px;
  }

  /* Mobile stats — full width + marquee tự động */
  .stats-bar {
    padding-block: 1.65rem;
  }

  .stats-bar .stats-slider-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .stats-bar .stats-slider-wrap::after {
    display: none;
  }

  .stats-bar .stats-slider-wrap--marquee {
    overflow: hidden;
  }

  .stats-bar .stats-track {
    --stats-track-gap: 25px;
    gap: 25px;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }

  .stats-bar .stat-item--rating,
  .stats-bar .stat-item--travelers,
  .stats-bar .stat-item--discount,
  .stats-bar .stat-item--pickup {
    --stat-item-gap: 0.5rem;
    --stat-item-space-after: 0;
    --stat-item-padding: 0;
    flex: 0 0 auto;
    width: max-content;
    max-width: none;
  }

  .section-title {
    font-size: 32px;
  }
}
