/* 獨立 spa 頁面共用樣式 — 編輯式文章設計，無 CTA */
:root {
  --bg: #000;
  --card: #0a0f14;
  --border: rgba(0,210,235,.15);
  --border-strong: rgba(0,210,235,.3);
  --gold: #00D2EB;
  --gold-light: #4DE8FF;
  --text: #fff;
  --text-dim: #B0C4D8;
  --text-muted: #8A9BB0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "PingFang HK", "Microsoft JhengHei", "Noto Sans TC", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(0,210,235,.08), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(0,210,235,.05), transparent 40%),
    #000;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

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

/* ===== Top nav ===== */
.top-nav {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.top-nav a { color: var(--text-muted); }
.top-nav .brand { color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.top-nav .links { display: flex; gap: 14px; font-size: 12px; }

/* ===== Container ===== */
.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 22px 80px;
}

/* ===== Breadcrumb ===== */
.crumb {
  font-size: 12px; color: var(--text-muted); margin-bottom: 20px;
  letter-spacing: .5px;
}
.crumb a { color: var(--text-muted); }
.crumb span { opacity: .4; margin: 0 6px; }

/* ===== Hero ===== */
.hero-img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
@media (min-width: 720px) { .hero-img { height: 420px; } }

.title-en {
  font-family: var(--serif);
  font-size: 16px; color: var(--gold);
  letter-spacing: 3px; margin-bottom: 6px; text-transform: uppercase;
}
h1 {
  font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
  line-height: 1.3;
}
@media (min-width: 720px) { h1 { font-size: 34px; } }

.tagline {
  font-size: 14px; color: var(--gold-light);
  margin-bottom: 24px; letter-spacing: 1.2px;
}

/* ===== Meta bar ===== */
.meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.meta .item { font-size: 12px; }
.meta .k { color: var(--text-muted); margin-bottom: 3px; display: block; }
.meta .v { color: var(--text); font-weight: 500; }

/* ===== Sections ===== */
section { margin-bottom: 32px; }
h2 {
  font-size: 20px; color: var(--gold);
  margin-bottom: 14px; letter-spacing: 1px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
p {
  font-size: 14.5px; line-height: 1.95;
  color: var(--text-dim);
  margin-bottom: 14px;
}
p strong, p b { color: var(--text); font-weight: 600; }

ul { padding-left: 22px; margin-bottom: 14px; }
ul li {
  font-size: 14px; line-height: 1.9;
  color: var(--text-dim); margin-bottom: 6px;
}
ul li strong { color: var(--text); }

/* ===== Price table ===== */
.pricing {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.pricing .row:last-child { border-bottom: none; }
.pricing .row.group {
  background: rgba(0,210,235,.04);
  color: var(--gold-light); font-weight: 600;
  font-size: 12px; letter-spacing: 2px;
}
.pricing .row .name { color: var(--text-dim); }
.pricing .row .price { color: var(--gold); font-family: var(--serif); font-size: 15px; font-weight: 600; }
.price-note {
  font-size: 11px; color: var(--text-muted);
  margin-top: 10px; line-height: 1.7; text-align: center;
}

/* ===== Facility chips ===== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.chip {
  padding: 6px 12px;
  background: rgba(0,210,235,.08);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px; color: var(--gold-light);
}

/* ===== Other spa related links ===== */
.other {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.other-card {
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  transition: all .2s;
}
.other-card:hover {
  border-color: var(--border-strong);
  color: var(--gold);
}

/* ===== Footer ===== */
footer {
  margin-top: 50px; padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-muted);
  text-align: center; line-height: 1.9;
}
footer a { color: var(--text-muted); margin: 0 6px; }
footer a:hover { color: var(--gold); }

/* ===== Floating Contact Buttons ===== */
.contact-fab-group {
  position: fixed;
  right: 16px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.contact-fab-group.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  background: #0a0f14;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  padding: 0;
  text-decoration: none;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 22px; height: 22px; }
.fab.tg { background: #229ED9; }
.fab.wa { background: #25D366; }
.fab.wc { background: #07C160; }
.fab.line { background: #00B900; }
.fab.tg svg, .fab.wa svg, .fab.wc svg, .fab.line svg { fill: #fff; }

/* ===== QR Modal ===== */
.qr-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.qr-modal.show { display: flex; }
.qr-card {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 320px;
  width: 100%;
  text-align: center;
}
.qr-card h3 {
  font-size: 16px; color: var(--gold);
  margin-bottom: 6px;
  padding: 0; border: none;
}
.qr-card .qr-sub {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px;
}
.qr-box {
  width: 220px; height: 220px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px; color: #999;
  font-family: monospace;
}
.qr-img {
  width: 240px; height: 240px;
  display: block;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.qr-id {
  font-family: monospace;
  font-size: 14px; color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.qr-close {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
}
.qr-close:hover { color: var(--gold); border-color: var(--border-strong); }
