/* ============================================================
   HANOI HEALING SPA — MAY
   Nail · Lash · Brow Lounge & Healing Spa
   Design system: white-beige + warm gold
   ============================================================ */

:root {
  /* ---- Palette (trắng be + gold) ---- */
  --bg: #FAF7F2;
  /* warm ivory */
  --bg-alt: #F2EBE0;
  /* soft beige   */
  --bg-deep: #EDE3D5;
  /* deeper beige */
  --surface: #FFFFFF;
  --ink: #2B2622;
  /* warm near-black */
  --ink-soft: #6E645A;
  --ink-mute: #9A9088;
  --gold: #B08D57;
  --gold-dark: #937243;
  --gold-soft: #D8C3A0;
  --line: #E7DCCB;
  --line-soft: #F0E8DC;
  --dark: #2B2622;

  /* ---- Type ---- */
  --serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --sans: "Be Vietnam Pro", "Noto Sans SC", system-ui, -apple-system, sans-serif;

  /* ---- Rhythm ---- */
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(74, 58, 40, .06);
  --shadow: 0 12px 40px rgba(74, 58, 40, .10);
  --shadow-lg: 0 24px 70px rgba(74, 58, 40, .16);
  --maxw: 1200px;
  --header-h: 76px;
}

/* ---- CJK / Hangul / Kana fine-tuning ---- */
html[lang="zh"] {
  --serif: "Noto Serif SC", "Cormorant Garamond", serif;
}

html[lang="ko"] {
  --serif: "Noto Serif KR", "Nanum Myeongjo", "Apple SD Gothic Neo", "Malgun Gothic", serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

html[lang="ja"] {
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] h4,
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4 {
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: .2px;
}

html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3,
html[lang="zh"] h4 {
  font-weight: 700;
}

html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] h4 {
  font-weight: 700;
}

html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4 {
  font-weight: 700;
}

.container-x {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Reveal-on-scroll off-state hidden only when JS present */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ELING / SECTION HELPERS
   ============================================================ */
.section {
  padding: 92px 0;
}

.section-sm {
  padding: 60px 0;
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-deep {
  background: var(--bg-deep);
}

.bg-dark {
  background: var(--dark);
  color: #F3ECE1;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 620px;
}

.text-center {
  text-align: center;
}

.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.divider-leaf {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 8px 0 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-may {
  --btn-bg: var(--gold);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .96rem;
  padding: 14px 25px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .3px;
  box-shadow: 0 8px 22px rgba(176, 141, 87, .28);
}

.btn-may:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(147, 114, 67, .34);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-soft);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, .96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: .5px;
}

.brand-mark span {
  color: var(--gold);
}

.brand-sub {
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.brand-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .93rem;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: 999px;
  position: relative;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-dark);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* nav dropdown */
.nav-drop {
  position: relative;
}

.nav-drop>a .fa-chevron-down {
  font-size: .58rem;
  margin-left: 5px;
  color: var(--ink-mute);
  transition: transform .2s;
}

.nav-drop:hover>a .fa-chevron-down {
  transform: rotate(180deg);
}

.drop-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%) translateY(-6px);
  min-width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all .22s;
  z-index: 30;
  list-style: none;
  margin: 0;
}

.nav-drop:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: .92rem;
  color: var(--ink);
}

.drop-menu a:hover {
  background: var(--bg-alt);
  color: var(--gold-dark);
}

.drop-menu a .di {
  width: 26px;
  color: var(--gold);
  font-size: .95rem;
  text-align: center;
}

.drop-menu a.active::after {
  display: none;
}

@media (max-width: 992px) {
  .nav-drop>a {
    font-weight: 600 !important;
  }

  .drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 12px;
    padding: 4px 6px;
    min-width: 0;
    margin: 0 0 12px;
    background: var(--bg-alt);
  }

  .nav-drop>a .fa-chevron-down {
    display: none;
  }

  .drop-menu a {
    padding: 11px 10px;
    font-size: .95rem;
    color: var(--ink-soft);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
  }

  .drop-menu li:last-child a {
    border-bottom: none;
  }

  .drop-menu a.active {
    color: var(--gold-dark);
    font-weight: 600;
  }

  .drop-menu a .di {
    width: 24px;
  }
}

/* language switcher */
.lang-switch {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .84rem;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
}

.lang-btn:hover {
  border-color: var(--gold-soft);
}

.lang-btn .fa-chevron-down {
  font-size: .62rem;
  color: var(--ink-mute);
}

.flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
  flex-shrink: 0;
  line-height: 0;
}

.flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 168px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 20;
}

.lang-switch.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.lang-menu button:hover {
  background: var(--bg-alt);
}

.lang-menu button.active {
  color: var(--gold-dark);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
}

/* mobile nav */
@media (max-width: 1200px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--bg);
    padding: 10px 20px calc(28px + env(safe-area-inset-bottom, 0px));
    gap: 0;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1), visibility .4s;
  }

  .site-header.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
  }

  /* staggered item reveal */
  .site-header.nav-open .nav-menu>li {
    animation: navItemIn .5s both cubic-bezier(.22, 1, .36, 1);
  }

  .site-header.nav-open .nav-menu>li:nth-child(1) {
    animation-delay: .05s;
  }

  .site-header.nav-open .nav-menu>li:nth-child(2) {
    animation-delay: .10s;
  }

  .site-header.nav-open .nav-menu>li:nth-child(3) {
    animation-delay: .15s;
  }

  .site-header.nav-open .nav-menu>li:nth-child(4) {
    animation-delay: .20s;
  }

  .site-header.nav-open .nav-menu>li:nth-child(5) {
    animation-delay: .25s;
  }

  .site-header.nav-open .nav-menu>li:nth-child(6) {
    animation-delay: .30s;
  }

  .site-header.nav-open .nav-menu>li:nth-child(7) {
    animation-delay: .35s;
  }

  .nav-menu>li {
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-menu>li:last-child {
    border-bottom: none;
  }

  .nav-menu>li>a {
    display: flex;
    align-items: center;
    padding: 14px 4px;
    font-size: 1.04rem;
    font-weight: 500;
    border-radius: 0;
    border-bottom: none;
  }

  .nav-menu>li>a.active {
    color: var(--gold-dark);
  }

  .nav-menu a.active::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  /* Book Now inside the mobile menu */
  .nav-mobile-book {
    border-bottom: none !important;
    margin-top: 16px;
  }

  .nav-menu>li.nav-mobile-book>a {
    justify-content: center;
    padding: 15px;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(176, 141, 87, .28);
  }

  .nav-menu>li.nav-mobile-book>a.active {
    color: #fff;
  }
}

.nav-mobile-book {
  display: none;
}

@media (max-width: 992px) {
  .nav-mobile-book {
    display: block;
  }
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu {
    transition: opacity .2s ease, visibility .2s !important;
  }

  .site-header.nav-open .nav-menu>li {
    animation: none !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(43, 38, 34, .72) 0%, rgba(43, 38, 34, .42) 46%, rgba(43, 38, 34, .12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  max-width: 640px;
  color: #fff;
  padding: 60px 0;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  background: var(--gold-soft);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}

.hero h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

.hero-lead {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-meta .m {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .92);
  font-size: .92rem;
}

.hero-meta .fa-solid,
.hero-meta .fa-brands,
.hero-meta .fa-regular {
  color: var(--gold-soft);
  font-size: 1.15rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--dark);
  color: #EBE1D2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0;
  text-align: center;
}

.trust-grid .t-num {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--gold-soft);
  line-height: 1;
}

.trust-grid .t-lab {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b7ac9c;
  margin-top: 8px;
}

@media (max-width: 992px) {
  .trust-grid .t-num {
    font-size: 1.5rem;
  }

  .trust-grid .t-lab {
    font-size: .6rem;
    letter-spacing: .08em;
  }
}

@media (max-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.svc-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc-card:hover .svc-media img {
  transform: scale(1.06);
}

.svc-price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, .94);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 6px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.svc-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-body h3 {
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.svc-body p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0 0 18px;
  flex: 1;
}

.svc-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-link .fa-arrow-right-long {
  transition: transform .25s;
}

.svc-card:hover .svc-link .fa-arrow-right-long {
  transform: translateX(5px);
}

/* feature list (icon rows) */
.feature-row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.feature-ico {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 1.3rem;
}

.feature-row h4 {
  font-size: 1.2rem;
  margin: 4px 0 6px;
}

.feature-row p {
  color: var(--ink-soft);
  font-size: .93rem;
  margin: 0;
}

/* ============================================================
   PRICE MENU (tables / lists)
   ============================================================ */
.price-block {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.price-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--bg-alt), transparent);
}

.price-head .p-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.price-head h3 {
  font-size: 1.55rem;
  margin: 0;
}

.price-head .p-note {
  font-size: .82rem;
  color: var(--ink-mute);
}

.price-list {
  padding: 10px 28px 22px;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item .pi-name {
  font-weight: 600;
  color: var(--ink);
}

.price-item .pi-name small {
  display: block;
  font-weight: 400;
  font-size: .82rem;
  color: var(--ink-mute);
  margin-top: 2px;
}

.price-item .pi-dots {
  flex: 1;
  border-bottom: 1px dotted var(--gold-soft);
  transform: translateY(-4px);
  min-width: 20px;
}

.price-item .pi-price {
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-item .pi-price small {
  font-weight: 500;
  color: var(--ink-mute);
  font-size: .78rem;
}

/* column variant: name on top, durations below */
.price-item.col {
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
}

.price-item.col .pi-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-item.col .pi-top .pi-name {
  flex: 1;
}

/* two-column price grid on wide screens */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

@media (max-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* equal-height variant (e.g. spa packages) */
.price-grid.eq {
  align-items: stretch;
}

.price-grid.eq .price-block {
  display: flex;
  flex-direction: column;
}

.price-grid.eq .price-block .price-list {
  flex: 1;
}

/* ============================================================
   MENU SPLIT — two priced categories, each with its own photo block
   DOM order is media→card, media→card so it reads correctly and so the
   stacked layout keeps every photo block directly above its own card.
   On desktop the photos are placed into row 1 and the cards into row 2,
   which lines the two card headings up on the same baseline.
   ============================================================ */
.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 26px;
}

.menu-split .ms-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: start;
}

.menu-split .ms-media .gal-item {
  aspect-ratio: 4/3;
}

/* match .price-grid.eq so the two cards stay equal height */
.menu-split .price-block {
  display: flex;
  flex-direction: column;
}

.menu-split .price-block .price-list {
  flex: 1;
}

/* wide: photos into row 1, cards into row 2 (declared in the base rules so there is
   no width where neither this nor the stacked query applies) */
.menu-split>:nth-child(1) {
  grid-area: 1 / 1;
}

.menu-split>:nth-child(2) {
  grid-area: 2 / 1;
}

.menu-split>:nth-child(3) {
  grid-area: 1 / 2;
}

.menu-split>:nth-child(4) {
  grid-area: 2 / 2;
}

/* stacked: hand back to auto-placement — DOM order already pairs each photo
   block with its own card */
@media (max-width: 860px) {
  .menu-split {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .menu-split>:nth-child(1),
  .menu-split>:nth-child(2),
  .menu-split>:nth-child(3),
  .menu-split>:nth-child(4) {
    grid-area: auto;
  }

  /* breathing room between the two categories */
  .menu-split>:nth-child(3) {
    margin-top: 26px;
  }
}

/* balanced 2×2 facial grid + refined cards */
.facial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 640px) {
  .facial-grid {
    grid-template-columns: 1fr;
  }
}

.facial-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.facial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.facial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}

.facial-card:hover::before {
  transform: scaleX(1);
}

.facial-card .fc-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--bg-alt);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  transition: background .3s, color .3s;
}

.facial-card:hover .fc-ico {
  background: var(--gold);
  color: #fff;
}

.facial-card .fc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.facial-card .fc-head h4 {
  font-size: 1.32rem;
  margin: 0;
  line-height: 1.2;
}

.facial-card .fc-dur {
  flex-shrink: 0;
  background: var(--bg-alt);
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}

.facial-card .fc-dur i {
  color: var(--gold);
}

.facial-card .fc-desc {
  color: var(--ink-soft);
  font-size: .93rem;
  margin: 0 0 18px;
  flex: 1;
}

.facial-card .fc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-top: 15px;
}

.facial-card .fc-price {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.facial-card .fc-book {
  font-size: .84rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.facial-card .fc-book i {
  transition: transform .25s;
}

.facial-card:hover .fc-book i {
  transform: translateX(4px);
}

/* section intro helper */
.sec-head {
  max-width: 640px;
  margin: 0 auto 48px;
}

/* lash spec card grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.spec-card .sc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.spec-card h4 {
  font-size: 1.15rem;
  margin: 0;
}

.spec-card .sc-price {
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}

.spec-card .sc-meta {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

.spec-card .sc-meta b {
  color: var(--ink);
  font-weight: 600;
}

/* pricelist image strip (rendered PDF pages) */
.plist-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.plist-strip .gal-item {
  aspect-ratio: 3/4.24;
}

/* duration chips (for services with multiple durations) */
.dur-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.dur-chip {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.dur-chip b {
  color: var(--gold-dark);
}

/* ============================================================
   ACCORDION (steps / combos)
   ============================================================ */
.acc-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.acc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.acc-head .a-idx {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.acc-head h4 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.acc-head .a-price {
  font-weight: 700;
  color: var(--gold-dark);
}

.acc-head .fa-chevron-down {
  color: var(--ink-mute);
  transition: transform .3s;
}

.acc-item.open .acc-head .fa-chevron-down {
  transform: rotate(180deg);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.acc-item.open .acc-panel {
  max-height: 720px;
}

.acc-inner {
  padding: 4px 22px 22px 22px;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: .94rem;
  border-top: 1px solid var(--line-soft);
}

.step-list li:first-child {
  border-top: none;
}

.step-list li .s-n {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--gold-dark);
  font-size: .74rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ============================================================
   SPLIT / ABOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.split-media .badge-float {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-float .bf-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.badge-float b {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
}

.badge-float span {
  font-size: .8rem;
  color: var(--ink-soft);
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: var(--ink-soft);
}

.check-list li .fa-solid {
  color: var(--gold);
  margin-top: 5px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--bg-alt);
}

.gal-item.tall {
  aspect-ratio: 1 / 1.4;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(43, 38, 34, .32);
  opacity: 0;
  transition: opacity .3s;
  font-size: 1.4rem;
}

.gal-item:hover::after {
  opacity: 1;
}

/* filter chips */
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 34px;
}

.gal-filters button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}

.gal-filters button:hover {
  border-color: var(--gold-soft);
}

.gal-filters button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 25, 20, .92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.lightbox .lb-close {
  position: absolute;
  top: 22px;
  right: 26px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s;
}

.lightbox .lb-nav:hover {
  background: rgba(255, 255, 255, .28);
}

.lightbox .lb-prev {
  left: 20px;
}

.lightbox .lb-next {
  right: 20px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
/* ---- 3-up swipeable slider (native scroll-snap + arrow buttons) ---- */
.rev-slider {
  position: relative;
}

.rev-track {
  --per: 3;
  --gap: 24px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  /* vertical room so the card shadow isn't clipped by the scroll box;
     no horizontal padding — it would offset the snap-start position */
  padding: 4px 0 12px;
  margin: -4px 0 -12px;
}

.rev-track::-webkit-scrollbar {
  display: none;
}

.rev-track>.review-card {
  scroll-snap-align: start;
}

.rev-track:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.rev-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.rev-count {
  font-size: .84rem;
  color: var(--ink-mute);
  margin-right: 6px;
  font-variant-numeric: tabular-nums;
}

.rev-count b {
  color: var(--ink);
  font-weight: 600;
}

.rev-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .95rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .25s, border-color .25s, color .25s, transform .25s, opacity .25s;
}

.rev-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.rev-btn:disabled {
  opacity: .35;
  cursor: default;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .rev-track {
    scroll-behavior: auto;
  }
}

.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

.review-card .stars {
  color: #E7B24A;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--ink);
  font-size: 1.02rem;
  font-style: italic;
  margin: 0 0 20px;
}

.review-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--serif);
}

.review-card .who b {
  display: block;
  color: var(--ink);
}

.review-card .who span {
  font-size: .82rem;
  color: var(--ink-mute);
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 66px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.page-hero .ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .38;
}

.page-hero .ph-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 38, 34, .5), rgba(43, 38, 34, .82));
  z-index: 1;
}

.page-hero .container-x {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  margin: 0 0 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, .85);
  max-width: 620px;
  margin: 0;
}

.breadcrumb-x {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 18px;
}

.breadcrumb-x a {
  color: var(--gold-soft);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.cta-banner .cb-bg {
  position: absolute;
  inset: 0;
  opacity: .28;
}

.cta-banner .cb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 38, 34, .72), rgba(43, 38, 34, .88));
}

.cta-banner .container-x {
  position: relative;
  z-index: 2;
  padding: 84px 20px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .86);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1.06rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #241F1B;
  color: #C9BEAF;
  padding: 70px 0 0;
}

/* brand row above the column grid */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-top .footer-brand p {
  max-width: 520px;
  margin: 14px 0 0;
}

.footer-top .footer-social {
  margin-top: 6px;
}

/* desktop: 4 equal columns on one line.
   minmax(0,…) instead of a bare 1fr so a long word (the Instagram handle)
   can't widen its own column and break the equal split. */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
  align-items: start;
}

/* tablet: 2 columns → 2 rows */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 32px;
  }
}

/* mobile: 1 column → 4 rows */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
}

.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-brand .brand-mark {
  color: #fff;
  font-size: 2rem;
}

.footer-brand .brand-mark span {
  color: var(--gold-soft);
}

.footer-brand p {
  font-size: .92rem;
  margin: 16px 0 20px;
  color: #A99E8F;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: #C9BEAF;
  font-size: .93rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

/* the guest-conveniences items are plain labels, not links — don't fake affordance */
.footer-links a:not([href]),
.footer-links a:not([href]):hover {
  color: #C9BEAF;
  cursor: default;
  padding-left: 0;
}

/* the UA default ul padding was indenting this whole column and eating 40px of it */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .92rem;
  color: #C9BEAF;
}

/* long values must not push the equal-width column wider */
.footer-contact li>span,
.footer-contact li>a {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* the social handle is one unbreakable word — one line, ellipsis if the column is tight */
.footer-contact .fc-handle {
  overflow-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-contact .fa-solid,
.footer-contact .fa-brands {
  color: var(--gold-soft);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #E4D9C8;
  font-size: 1.05rem;
  transition: all .25s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 54px;
  padding: 22px 0;
  text-align: center;
  font-size: .84rem;
  color: #8C8272;
}

.footer-bottom a {
  color: #A99E8F;
}

/* ============================================================
   FLOATING CONTACT BUTTONS
   ============================================================ */
.float-contacts {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  position: relative;
  transition: transform .2s;
}

.float-btn:hover {
  transform: scale(1.08);
  color: #fff;
}

.float-btn.call {
  background: #16A34A;
  --pulse-color: 22, 163, 74;
  animation: pulse-ring 0.9s infinite;
}

.float-btn.zalo {
  background: #0068FF;
  --pulse-color: 0, 104, 255;
  animation: pulse-ring 0.9s infinite;
}

.float-btn.whatsapp {
  background: #25D366;
  --pulse-color: 37, 211, 102;
  animation: pulse-ring 0.9s infinite;
}

.float-btn.tiktok {
  background: #111;
  --pulse-color: 17, 17, 17;
  animation: pulse-ring 0.9s infinite;
}

.float-btn.map {
  background: #EA4335;
  --pulse-color: 234, 67, 53;
  animation: pulse-ring 0.9s infinite;
}

.float-btn.instagram {
    background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  --pulse-color: 234, 67, 53;
  animation: pulse-ring 0.9s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--pulse-color), .5);
    transform: rotate(0)
  }

  70% {
    box-shadow: 0 0 0 14px rgba(var(--pulse-color), 0);
    transform: rotate(45deg)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0);
    transform: rotate(0)
  }
}

.float-btn img {
  width: 30px;
  height: 30px;
}

/* back to top (left side to avoid the taller float stack) */
.back-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 899;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--gold);
}

/* ============================================================
   MISC / UTIL
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 800px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  text-align: center;
}

.info-card .ic-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.info-card h4 {
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.info-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: .95rem;
}

.info-card a {
  font-weight: 600;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.rich-text h2 {
  font-size: 1.7rem;
  margin: 34px 0 14px;
}

.rich-text h3 {
  font-size: 1.3rem;
  margin: 26px 0 10px;
}

.rich-text p,
.rich-text li {
  color: var(--ink-soft);
}

.rich-text ul {
  padding-left: 20px;
}

.rich-text li {
  margin-bottom: 8px;
}

/* toast */
.toast-note {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: .92rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 4000;
}

.toast-note.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

/* form */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s;
}

/* "phone or email is enough" note under the contact fields */
.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -6px 0 16px;
  font-size: .81rem;
  line-height: 1.5;
  color: var(--ink-mute);
}

.form-hint i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 25, 20, .62);
  backdrop-filter: blur(3px);
  z-index: 3500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 470px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: 34px 30px 30px;
  animation: modalIn .28s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-card .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink-mute);
  cursor: pointer;
}

.modal-card .modal-close:hover {
  color: var(--ink);
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-head .mh-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.modal-card h3 {
  font-size: 1.6rem;
  margin: 0;
}

.modal-card .modal-sub {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 4px 0 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 460px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.modal-alt {
  text-align: center;
  color: var(--ink-mute);
  font-size: .84rem;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.modal-alt a {
  font-weight: 600;
}

.modal-success {
  text-align: center;
  padding: 14px 0 6px;
}

.modal-success .ms-ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #e7f6ec;
  color: #16A34A;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  margin: 0 auto 16px;
}

.modal-success h3 {
  color: #166534;
}

/* ============================================================
   MOBILE OPTIMISATIONS
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 58px 0;
  }

  .section-sm {
    padding: 44px 0;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-meta {
    gap: 14px 22px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .split {
    gap: 32px;
  }

  .price-head {
    padding: 18px 20px;
    gap: 12px;
  }

  .price-head h3 {
    font-size: 1.3rem;
  }

  .price-list {
    padding: 8px 20px 18px;
  }

  .cta-banner .container-x {
    padding: 60px 20px;
  }

  .page-hero {
    padding: calc(var(--header-h) + 40px) 0 44px;
  }

  .modal-card {
    padding: 28px 22px 24px;
  }

  .float-contacts {
    right: 12px;
    bottom: 14px;
    gap: 20px;
    max-width: 48px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .float-btn img {
    width: 26px;
    height: 26px;
  }

  .back-top {
    right: 12px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .btn-may {
    padding: 12px 24px;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: .98rem;
  }

  .hero-actions .btn-lg,
  .cta-actions .btn-lg {
    padding: 13px 22px;
  }
}

/* small phones — tighten the header */
@media (max-width: 600px) {
  :root {
    --header-h: 64px;
  }

  .brand-sub {
    display: none;
  }

  /* hide tagline on mobile */
  .brand-mark {
    font-size: 1.6rem;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-book {
    padding: 9px 16px;
    font-size: .86rem;
  }

  .lang-btn {
    padding: 6px 9px;
  }

  .nav-toggle {
    font-size: 1.3rem;
    padding: 4px;
  }

  .section-title {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn-may {
    width: 100%;
  }

  .cta-actions .btn-may {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 10px;
    padding: 26px 0;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .nav-book {
    display: none;
  }

  /* free up space; booking still in menu + floats */
}

/* ============================================================
   HERO — SPLIT LAYOUT (content + quick booking)
   ============================================================ */
.hero-inner.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 54px;
  align-items: center;
  padding: 74px 20px;
}

.hero-split .hero-content {
  max-width: 620px;
  padding: 0;
}

@media (max-width: 1040px) {
  .hero-inner.hero-split {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 20px;
  }

  .hero-split .hero-content {
    max-width: 720px;
  }

  .hero {
    min-height: 0;
  }
}

/* quick booking card */
.hero-book {
  background: rgba(255, 255, 255, .0);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 22px;
  color: var(--ink);
}

.hero-book .hb-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-book .hb-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.hero-book h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}

.hero-book .hb-sub {
  font-size: .88rem;
  color: var(--ink-mute);
  margin: 6px 0 18px;
}

.hero-book .form-field {
  margin-bottom: 12px;
}

.hero-book .form-field label {
  font-size: .8rem;
  margin-bottom: 5px;
  color: #fff;
}

.hero-book .form-field input,
.hero-book .form-field select {
  padding: 11px 14px;
  border-radius: 10px;
}

.hero-book .btn-may {
  margin-top: 4px;
}

.hero-book .hb-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--bg-alt);
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-book .hb-note i {
  color: var(--gold-dark);
  margin-top: 4px;
}

.hero-book .hb-alt {
  text-align: center;
  font-size: .82rem;
  color: var(--ink-mute);
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
}

.hero-book .hb-alt a {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 560px) {
  .hero-book {
    padding: 22px 18px 18px;
  }

  .hero-book h3 {
    font-size: 1.32rem;
  }
}

/* ============================================================
   OFFERS — GOLDEN HOUR
   ============================================================ */
.offers {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #FFFDF9 0%, #FCF4E7 46%, #F5E7CF 100%);
}

/* soft warm glow, top-right */
.offers::before {
  content: "";
  position: absolute;
  top: -26%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 195, 160, .45), transparent 70%);
  pointer-events: none;
}

/* light lift, bottom-left */
.offers::after {
  content: "";
  position: absolute;
  bottom: -32%;
  left: -12%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .8), transparent 70%);
  pointer-events: none;
}

.offers .container-x {
  position: relative;
  z-index: 2;
}

.offer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: 58px;
  align-items: center;
  margin-bottom: 54px;
}

@media (max-width: 980px) {
  .offer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.offer-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.offer-clock {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: 0 8px 24px rgba(176, 141, 87, .14);
  flex-shrink: 0;
}

.offer-clock>i {
  font-size: 1.5rem;
  color: var(--gold);
}

.offer-clock .oc-lab {
  display: block;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.offer-clock .oc-h {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gold-dark);
  /* Cormorant defaults to old-style figures — force lining digits for the clock */
  font-variant-numeric: lining-nums tabular-nums;
}

/* ---- image collage ---- */
.offer-media {
  position: relative;
  padding: 14px 0 52px 48px;
}

.offer-media .om-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-media .om-main img {
  width: 100%;
  aspect-ratio: 4 / 3.05;
  object-fit: cover;
}

.offer-media .om-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 49%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.offer-media .om-sub img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.offer-media .om-badge {
  position: absolute;
  top: 0;
  right: 4px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(142deg, #C0955A 0%, #85632F 100%);
  color: #fff;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 4px solid #fff;
  box-shadow: 0 14px 34px rgba(107, 80, 42, .42);
  text-align: center;
}

.offer-media .om-badge b {
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums;
}

.offer-media .om-badge b small {
  font-size: 1rem;
}

.offer-media .om-badge span {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .92;
  margin-top: 3px;
}

@media (max-width: 560px) {
  .offer-media {
    padding: 12px 0 42px 32px;
  }

  .offer-media .om-badge {
    width: 86px;
    height: 86px;
  }

  .offer-media .om-badge b {
    font-size: 1.6rem;
  }
}

/* ---- discount tiers (promo cards) ---- */
.offer-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .offer-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .offer-tiers {
    grid-template-columns: 1fr;
  }
}

.offer-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.offer-tier:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}

.ot-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.offer-tier:hover .ot-media img {
  transform: scale(1.07);
}

.ot-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 38, 34, .04) 34%, rgba(43, 38, 34, .72));
}

.offer-tier .ot-pct {
  position: absolute;
  left: 16px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
  font-variant-numeric: lining-nums;
}

.offer-tier .ot-pct small {
  font-size: 1.15rem;
  margin-left: 1px;
}

.offer-tier .ot-off {
  position: absolute;
  right: 16px;
  bottom: 17px;
  z-index: 2;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

.ot-body {
  padding: 18px 20px 22px;
}

.offer-tier h4 {
  font-size: 1.22rem;
  margin: 0 0 6px;
  /* titles contain group sizes — old-style Cormorant digits read as subscripts */
  font-variant-numeric: lining-nums;
}

.offer-tier p {
  color: var(--ink-soft);
  font-size: .88rem;
  margin: 0;
}

.offer-tier.hot {
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(176, 141, 87, .26);
}

.offer-tier .ot-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--gold);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(43, 38, 34, .3);
}

.offer-note {
  max-width: 680px;
  margin: 34px auto 0;
  text-align: center;
  font-size: .84rem;
  color: var(--ink-mute);
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 880px) {
  .amen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .amen-grid {
    grid-template-columns: 1fr;
  }
}

.amen-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.amen-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}

.amen-card .am-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-alt);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background .3s, color .3s;
}

.amen-card:hover .am-ico {
  background: var(--gold);
  color: #fff;
}

.amen-card h4 {
  font-size: 1.18rem;
  margin: 2px 0 6px;
}

.amen-card p {
  color: var(--ink-soft);
  font-size: .9rem;
  margin: 0;
}

/* ============================================================
   REVIEWS — multilingual wall
   ============================================================ */
@media (max-width: 1040px) {
  .rev-track {
    --per: 2;
  }
}

@media (max-width: 680px) {
  .rev-track {
    --per: 1;
    --gap: 16px;
  }

  .rev-nav {
    justify-content: center;
    margin-top: 20px;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 26px;
}

.review-card p {
  flex: 1;
}

.review-card .rv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card .rv-top .stars {
  margin-bottom: 0;
}

.rv-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: var(--bg-alt);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.rv-lang i {
  color: var(--gold);
  font-size: .7rem;
}

/* synthesized italics look wrong for CJK — keep those quotes upright */
.review-card[lang="zh"] p,
.review-card[lang="ko"] p,
.review-card[lang="ja"] p {
  font-style: normal;
}

/* ============================================================
   FOOTER — guest conveniences + hours
   ============================================================ */
.footer-contact .fa-regular {
  color: var(--gold-soft);
  margin-top: 4px;
}

.footer-contact li b {
  color: #E4D9C8;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* helper visibility while i18n loads */
[data-i18n]:empty::before {
  content: "\00a0";
}