/* ZOEI SPA — pricelist styles
   Mobile-first long-form landing page reached from LINE.
   Warm paper, hand-drawn-feel ornaments, editorial restraint.
*/

/* fonts removed for standalone build — falls back to Noto Serif TC (loaded from Google Fonts) */

:root {
  --pure: #FEF4EF;
  --paper-deep: #F6E6DD;
  --paper-warm: #EFDFD3;
  --night: #0F0A0A;
  --ink-soft: #2A2020;
  --luxe: #BB654B;
  --luxe-deep: #9C5239;
  --sand: #DECFCF;
  --sand-light: #ECDED6;
  --bronze: #B07A56;
  --line-hair: rgba(15, 10, 10, 0.16);
  --line-soft: rgba(15, 10, 10, 0.08);
  --line-on-dark: rgba(254, 244, 239, 0.22);

  --serif: 'Cormorant Garamond', 'Palatino Linotype', 'GenSeki Gothic 2 TW', 'Noto Serif TC', Georgia, serif;
  --cjk: 'GenSeki Gothic 2 TW', 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  --ui: 'Manrope', 'GenSeki Gothic 2 TW', 'Noto Sans TC', sans-serif;

  --container: 640px;
  --container-wide: 880px;
  --gutter: clamp(20px, 5vw, 48px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--pure);
  color: var(--ink-soft);
  font-family: var(--cjk);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.app { position: relative; }

/* —————— layout —————— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 88px 0; }
@media (min-width: 720px) { section { padding: 120px 0; } }

/* —————— typography primitives —————— */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--luxe);
  display: inline-block;
}

.eyebrow-dot::before {
  content: '·';
  margin-right: 0.6em;
  color: var(--luxe);
  display: inline-block;
}

.section-title {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: clamp(26px, 5.6vw, 36px);
  line-height: 1.45;
  color: var(--night);
  letter-spacing: 0.08em;
  margin-top: 12px;
}

.section-title .en {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: var(--luxe);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  margin-bottom: 14px;
}

.section-lead {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(15, 10, 10, 0.62);
  letter-spacing: 0.05em;
}

/* —————— hairline ornaments —————— */
.hairline {
  height: 1px;
  background: var(--line-hair);
  width: 100%;
}
.dot-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 56px auto;
  width: min(100%, 360px);
  opacity: 0.7;
}
.dot-rule::before, .dot-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-hair);
}
.dot-rule .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--luxe);
}

/* leaf ornament: hand-drawn feel */
.leaf-ornament {
  display: flex;
  justify-content: center;
  margin: 56px auto;
  opacity: 0.55;
}
.leaf-ornament svg { width: 60px; height: auto; }

/* —————— sticky chapter pill nav —————— */
.chapter-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(254, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-hair);
  transform: translateY(-100%);
  transition: transform 360ms cubic-bezier(0.22,0.61,0.36,1);
}
.chapter-bar.visible { transform: translateY(0); }
.chapter-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px var(--gutter);
  max-width: var(--container-wide);
  margin: 0 auto;
}
.chapter-bar-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--night);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.chapter-bar-mark em { font-style: italic; }
.chapter-bar-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  scroll-behavior: smooth;
}
.chapter-bar-scroll::-webkit-scrollbar { display: none; }
.chapter-bar a {
  font-family: var(--cjk);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 240ms ease;
  border-bottom: none;
}
.chapter-bar a:hover {
  color: var(--luxe);
  border-color: var(--line-hair);
}

/* hamburger toggle — hidden on desktop, shown on mobile */
.chapter-bar-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.chapter-bar-toggle-icon {
  display: block;
  position: relative;
  width: 22px;
  height: 16px;
}
.chapter-bar-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink-soft);
  transition: transform 280ms cubic-bezier(0.22,0.61,0.36,1), opacity 200ms ease, top 280ms cubic-bezier(0.22,0.61,0.36,1);
}
.chapter-bar-toggle-icon span:nth-child(1) { top: 2px; }
.chapter-bar-toggle-icon span:nth-child(2) { top: 8px; }
.chapter-bar-toggle-icon span:nth-child(3) { top: 14px; }
.chapter-bar-toggle-icon.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.chapter-bar-toggle-icon.open span:nth-child(2) { opacity: 0; }
.chapter-bar-toggle-icon.open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* fullscreen menu overlay */
.chapter-bar-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 10, 10, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  animation: chapter-menu-fade 240ms ease;
}
@keyframes chapter-menu-fade { from { opacity: 0; } to { opacity: 1; } }
.chapter-bar-menu-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 88vw);
  height: 100%;
  background: var(--pure);
  padding: 28px var(--gutter) 40px;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(15,10,10,0.12);
  animation: chapter-menu-slide 320ms cubic-bezier(0.22,0.61,0.36,1);
}
.chapter-bar-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 32px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 300;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes chapter-menu-slide { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.chapter-bar-menu-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--luxe);
  margin-top: 36px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.chapter-bar-menu-title {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 22px;
  color: var(--night);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-hair);
}
.chapter-bar-menu-list { list-style: none; padding: 0; margin: 0; }
.chapter-bar-menu-list li { border-bottom: 1px solid var(--line-soft); }
.chapter-bar-menu-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: baseline;
  padding: 18px 4px;
  text-decoration: none;
  color: var(--ink-soft);
  border: none !important;
}
.chapter-bar-menu-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--luxe);
  letter-spacing: 0.16em;
  grid-row: 1 / span 2;
  align-self: center;
}
.chapter-bar-menu-zh {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 17px;
  color: var(--night);
  letter-spacing: 0.06em;
}
.chapter-bar-menu-en {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--luxe);
  letter-spacing: 0.18em;
  margin-top: 4px;
}

/* mobile: hide horizontal scroll-row nav, show hamburger */
@media (max-width: 720px) {
  .chapter-bar-scroll { display: none; }
  .chapter-bar-toggle { display: block; }
  .chapter-bar-mark { font-size: 17px; }
  .chapter-bar-inner { padding: 12px var(--gutter); gap: 12px; }
}

body[data-theme="dark"] .chapter-bar-toggle-icon span { background: rgba(254,244,239,0.85); }
body[data-theme="dark"] .chapter-bar-menu-inner { background: #1a1411; }
body[data-theme="dark"] .chapter-bar-menu-title { color: rgba(254,244,239,0.95); border-bottom-color: var(--line-on-dark); }
body[data-theme="dark"] .chapter-bar-menu-zh { color: rgba(254,244,239,0.92); }
body[data-theme="dark"] .chapter-bar-menu-list li { border-bottom-color: var(--line-on-dark); }

/* —————— hero —————— */
.hero {
  padding: 120px 0 72px;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--luxe);
  margin-bottom: 32px;
}
.hero-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 14vw, 88px);
  color: var(--night);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.hero-mark em {
  font-style: italic;
}
.hero-mark .dot {
  display: inline-block;
  margin: 0 0.18em;
  color: var(--luxe);
  vertical-align: 0.18em;
  font-style: normal;
}
.hero-title-en {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 4.5vw, 26px);
  color: var(--luxe);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
}

.hero-title-zh {
  font-family: var(--cjk);
  font-weight: 300;
  font-size: clamp(24px, 5.4vw, 32px);
  line-height: 1.55;
  color: var(--night);
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.hero-body {
  font-family: var(--cjk);
  font-weight: 300;
  font-size: 16px;
  line-height: 2.1;
  color: rgba(15, 10, 10, 0.78);
  letter-spacing: 0.06em;
  max-width: 32ch;
}
.hero-body p + p { margin-top: 18px; }

.hero-closing {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--luxe);
  margin-top: 48px;
  letter-spacing: 0.04em;
}

.hero-signature {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(15, 10, 10, 0.55);
  font-size: 14px;
  letter-spacing: 0.18em;
}

/* small leaf decoration in hero */
.hero-leaf {
  position: absolute;
  right: -20px;
  top: 80px;
  opacity: 0.18;
  pointer-events: none;
}
.hero-leaf svg { width: 200px; height: auto; }
@media (min-width: 720px) {
  .hero-leaf { right: 40px; top: 120px; }
  .hero-leaf svg { width: 280px; }
}

/* —————— pillars —————— */
.pillars {
  background: var(--paper-deep);
  padding: 80px 0;
}
.pillars-grid {
  display: grid;
  gap: 56px;
  margin-top: 48px;
}
@media (min-width: 720px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.pillar {
  position: relative;
  padding-top: 24px;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px;
  height: 1px;
  background: var(--luxe);
}
.pillar-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--luxe);
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
  color: var(--night);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pillar-body {
  font-size: 14.5px;
  line-height: 1.95;
  color: rgba(15, 10, 10, 0.7);
}

/* —————— chapter map —————— */
.map { padding: 80px 0; }
.map-list {
  margin-top: 40px;
  border-top: 1px solid var(--line-hair);
}
.map-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0 22px 4px;
  border-bottom: 1px solid var(--line-hair);
  text-decoration: none;
  color: inherit;
  transition: padding-left 280ms cubic-bezier(0.22,0.61,0.36,1);
  border-left: none;
  border-right: none;
}
.map-item:hover {
  padding-left: 16px;
}
.map-item-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--luxe);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  width: 38px;
}
.map-item-text {
  flex: 1;
}
.map-item-title {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--night);
}
.map-item-en {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(15, 10, 10, 0.5);
  letter-spacing: 0.18em;
  margin-top: 2px;
}
.map-item-arrow {
  color: var(--luxe);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  opacity: 0.4;
  transition: opacity 240ms, transform 240ms;
}
.map-item:hover .map-item-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* —————— treatment card —————— */
.treatment {
  padding: 60px 0;
  border-bottom: 1px solid var(--line-hair);
}
.treatment:last-child { border-bottom: none; }

.treatment-head { margin-bottom: 24px; }

.treatment-name {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  color: var(--night);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.treatment-duration {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--luxe);
  letter-spacing: 0.12em;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-family: var(--cjk);
  font-size: 13px;
  font-weight: 400;
  color: rgba(15, 10, 10, 0.62);
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.treatment-tags span:not(:last-child)::after {
  content: '·';
  margin-left: 12px;
  color: var(--luxe);
}

.treatment-suitable {
  margin: 28px 0 24px;
  padding: 16px 20px;
  background: rgba(187, 101, 75, 0.05);
  border-left: 2px solid var(--luxe);
  font-family: var(--cjk);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.treatment-suitable .label {
  font-family: var(--serif);
  font-style: italic;
  color: var(--luxe);
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.treatment-suitable .treatment-suitable-text {
  white-space: pre-line;
  display: block;
}
.indiba-intro {
  white-space: pre-line;
}

.treatment-list {
  list-style: none;
  margin: 28px 0;
}
.treatment-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(15, 10, 10, 0.78);
}
.treatment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--luxe);
}

/* —————— price block —————— */
.price {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-hair);
}
.price-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--luxe);
  padding-bottom: 8px;
}
.price-currency {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--luxe);
  letter-spacing: 0.05em;
  margin-right: -8px;
  align-self: center;
  padding-bottom: 6px;
}
.price-amount {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 8vw, 44px);
  color: var(--luxe);
  line-height: 1;
  letter-spacing: 0.01em;
}
.price-original {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(15, 10, 10, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(15, 10, 10, 0.4);
  padding-bottom: 10px;
  letter-spacing: 0.05em;
}

/* —————— gallery (Before/After) —————— */
.gallery {
  margin: 36px 0 24px;
}
.gallery-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.gallery-head .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--luxe);
}
.gallery-head .rule {
  flex: 1;
  height: 1px;
  background: var(--line-hair);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 540px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
.gallery-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 540px) {
  .gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* large stacked image gallery (real photos) */
.gallery-stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 calc(var(--gutter) * -1);
}
@media (min-width: 720px) {
  .gallery-stacked { margin: 0; gap: 32px; }
}

.gallery-image {
  position: relative;
  margin: 0;
}
.gallery-image img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper-deep);
}
.gallery-image-no {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(254, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--luxe);
}
.gallery-image figcaption {
  margin-top: 14px;
  padding: 0 var(--gutter);
  font-family: var(--cjk);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(15, 10, 10, 0.62);
}
@media (min-width: 720px) {
  .gallery-image figcaption { padding: 0; }
}

.gallery-frame {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--paper-deep) 60%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.gallery-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(15, 10, 10, 0.08);
}
.gallery-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(187, 101, 75, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(176, 122, 86, 0.06) 0%, transparent 50%);
}
.gallery-frame .caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--cjk);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  z-index: 2;
}
.gallery-frame .caption-en {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(15, 10, 10, 0.45);
  margin-bottom: 2px;
}

.gallery-note {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--luxe);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(15, 10, 10, 0.72);
  letter-spacing: 0.04em;
}
.gallery-note .by {
  display: block;
  margin-top: 10px;
  font-family: var(--cjk);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--luxe);
  text-transform: uppercase;
}

/* —————— hero portrait + zoey portrait (real photos) —————— */
.hero-portrait,
.zoey-portrait,
.sauna-photo {
  margin: 36px calc(var(--gutter) * -1) 28px;
  padding: 0;
}
.hero-portrait img,
.zoey-portrait img,
.sauna-photo img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper-deep);
}
.zoey-portrait img {
  filter: brightness(0.96);
}
@media (min-width: 720px) {
  .hero-portrait,
  .zoey-portrait,
  .sauna-photo {
    margin: 40px auto 32px;
    max-width: 560px;
  }
}

/* —————— face special (深層肌底更新) —————— */
.special {
  margin: 60px 0 0;
  padding: 56px 28px;
  background: var(--paper-deep);
  border-top: 1px solid var(--luxe);
  border-bottom: 1px solid var(--luxe);
  position: relative;
}

/* let the stacked image gallery break out of the special's inner padding
   so case photos read large and clear on phone */
.special .gallery-stacked {
  margin-left: -28px;
  margin-right: -28px;
}
.special .gallery-image figcaption {
  padding: 0 28px;
}
.special-mark {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--paper-deep);
  padding: 0 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--luxe);
}
.special-name {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--night);
  margin-bottom: 6px;
}
.special-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--luxe);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.special-callout {
  margin: 28px 0;
  padding: 22px;
  background: var(--pure);
}
.special-callout h4 {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--luxe);
  margin-bottom: 10px;
}
.special-callout p {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(15, 10, 10, 0.78);
}

.package {
  background: var(--night);
  color: var(--pure);
  padding: 36px 28px;
  margin: 28px 0 12px;
  text-align: center;
  position: relative;
}
.package::before, .package::after {
  content: '·';
  position: absolute;
  font-family: var(--serif);
  color: var(--luxe);
  font-size: 24px;
  line-height: 1;
}
.package::before { top: 8px; left: 50%; transform: translateX(-50%); }
.package::after  { bottom: 8px; left: 50%; transform: translateX(-50%); }

.package-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(254, 244, 239, 0.7);
  margin-bottom: 16px;
}
.package-amount {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  color: var(--pure);
}
.package-amount .currency {
  font-style: italic;
  font-size: 0.5em;
  margin-right: 6px;
  color: rgba(254, 244, 239, 0.8);
}
.package-detail {
  font-size: 13.5px;
  line-height: 2;
  color: rgba(254, 244, 239, 0.8);
  letter-spacing: 0.06em;
}
.package-detail li { list-style: none; }
.package-detail li::before {
  content: '·';
  margin-right: 0.5em;
  color: var(--luxe);
}

.special-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--luxe);
  text-decoration: none;
  border-bottom: 1px solid var(--luxe);
  padding-bottom: 2px;
  letter-spacing: 0.05em;
}

/* —————— INDIBA —————— */
.indiba {
  background: linear-gradient(180deg, var(--paper-deep) 0%, var(--sand-light) 100%);
}
.indiba-mark-en {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(54px, 13vw, 88px);
  color: var(--luxe);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 8px 0 4px;
}
.indiba-cert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 6px 14px;
  border: 1px solid var(--bronze);
}
.indiba-intro {
  font-family: var(--cjk);
  font-size: 15px;
  line-height: 2;
  color: rgba(15, 10, 10, 0.78);
  max-width: 36ch;
  letter-spacing: 0.06em;
}

.indiba-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 24px;
}
.indiba-part {
  padding: 10px 18px;
  background: var(--pure);
  border: 1px solid var(--line-hair);
  font-family: var(--cjk);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--night);
}

.indiba-applications {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line-hair);
}
@media (min-width: 540px) {
  .indiba-applications { grid-template-columns: repeat(2, 1fr); }
  .indiba-applications > div:nth-child(odd) { border-right: 1px solid var(--line-hair); }
}
.indiba-app {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-hair);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
@media (min-width: 540px) {
  .indiba-app { padding: 20px 18px; }
  .indiba-app:nth-child(odd) { padding-left: 0; }
  .indiba-app:nth-child(even) { padding-right: 0; }
}
.indiba-app-part {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 15px;
  color: var(--luxe);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 60px;
}
.indiba-app-detail {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(15, 10, 10, 0.7);
  letter-spacing: 0.06em;
}

.indiba-flex {
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--pure);
  border-left: 2px solid var(--luxe);
  font-family: var(--cjk);
  font-size: 14px;
  line-height: 1.95;
  color: rgba(15, 10, 10, 0.75);
  letter-spacing: 0.06em;
}

/* —————— light treatments (cards) —————— */
.light-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 720px) {
  .light-grid { grid-template-columns: repeat(3, 1fr); }
}
.light-card {
  padding: 32px 26px;
  background: var(--pure);
  border: 1px solid var(--line-hair);
  transition: border-color 280ms ease;
}
.light-card:hover { border-color: var(--luxe); }
.light-card-name {
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--night);
  margin-bottom: 4px;
}
.light-card-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--luxe);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.light-card-subtitle {
  font-size: 13.5px;
  color: rgba(15, 10, 10, 0.72);
  margin-bottom: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.light-card-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-hair);
  font-size: 13px;
  line-height: 1.85;
  color: rgba(15, 10, 10, 0.7);
}
.light-card-list li {
  padding-left: 14px;
  position: relative;
}
.light-card-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--luxe);
  top: -2px;
}
.light-card-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--luxe);
  letter-spacing: 0.02em;
}
.light-card-price .currency {
  font-style: italic;
  font-size: 0.5em;
  margin-right: 4px;
}

/* —————— sauna —————— */
.sauna-block {
  padding: 32px 0;
}
.sauna-bullets {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
@media (min-width: 540px) {
  .sauna-bullets { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.sauna-bullet {
  padding: 18px 20px;
  background: var(--paper-deep);
  border-left: 2px solid var(--luxe);
}
.sauna-bullet strong {
  display: block;
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 15px;
  color: var(--luxe);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.sauna-bullet span {
  font-size: 13.5px;
  color: rgba(15, 10, 10, 0.72);
  line-height: 1.75;
}

/* —————— addon table —————— */
.addon-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  border-top: 1px solid var(--line-hair);
}
.addon-table tr { border-bottom: 1px solid var(--line-hair); }
.addon-table td {
  padding: 22px 0;
  font-family: var(--cjk);
  font-size: 15px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.addon-table td:first-child {
  color: var(--night);
}
.addon-table td:last-child {
  text-align: right;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--luxe);
  font-size: 22px;
}
.addon-table td:last-child .currency {
  font-style: italic;
  font-size: 0.6em;
  margin-right: 4px;
}

/* —————— zoey dark section —————— */
.zoey-section {
  background: var(--night);
  color: var(--pure);
  padding: 100px 0;
  position: relative;
}
.zoey-section .eyebrow,
.zoey-section .section-title .en {
  color: #d49a82;
}
.zoey-section .section-title { color: var(--pure); }
.zoey-meta-line {
  font-family: var(--serif);
  font-style: italic;
  color: #d49a82;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 14px;
}
.zoey-intro {
  font-family: var(--cjk);
  font-weight: 300;
  font-size: 16px;
  line-height: 2.1;
  color: rgba(254, 244, 239, 0.85);
  margin: 48px 0 60px;
  max-width: 36ch;
  letter-spacing: 0.06em;
  white-space: pre-line;
}

.zoey-treatment {
  padding: 48px 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.zoey-treatment:last-child { border-bottom: none; }
.zoey-treatment .treatment-name { color: var(--pure); }
.zoey-treatment .treatment-duration { color: #d49a82; }
.zoey-treatment .treatment-tags { color: rgba(254, 244, 239, 0.62); }
.zoey-treatment .treatment-tags span:not(:last-child)::after { color: #d49a82; }
.zoey-treatment .treatment-suitable {
  background: rgba(212, 154, 130, 0.08);
  border-left-color: #d49a82;
  color: rgba(254, 244, 239, 0.88);
}
.zoey-treatment .treatment-suitable .label { color: #d49a82; }
.zoey-treatment .treatment-list li { color: rgba(254, 244, 239, 0.85); }
.zoey-treatment .treatment-list li.highlight {
  color: var(--pure);
  font-weight: 400;
}
.zoey-treatment .treatment-list li::before { background: #d49a82; }
.zoey-treatment .price { border-top-color: var(--line-on-dark); }
.zoey-treatment .price-label, .zoey-treatment .price-amount, .zoey-treatment .price-currency { color: #d49a82; }
.zoey-treatment .price-original { color: rgba(254, 244, 239, 0.4); text-decoration-color: rgba(254, 244, 239, 0.4); }

.zoey-quote {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 1px solid #d49a82;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(254, 244, 239, 0.78);
  letter-spacing: 0.04em;
}

/* —————— FAQ —————— */
.faq-section { padding: 80px 0; }
.faq {
  border-bottom: 1px solid var(--line-hair);
  padding: 0;
}
.faq:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--cjk);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: 0.08em;
  color: var(--night);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-trigger .plus {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--luxe);
  flex-shrink: 0;
  transition: transform 280ms ease;
}
.faq.open .faq-trigger .plus { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.22,0.61,0.36,1);
}
.faq.open .faq-body { max-height: 600px; }
.faq-body-inner {
  padding: 0 0 24px;
  font-size: 14.5px;
  line-height: 2;
  color: rgba(15, 10, 10, 0.78);
  letter-spacing: 0.05em;
}
.faq-body-inner ul {
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
.faq-body-inner li {
  padding-left: 16px;
  position: relative;
  margin: 4px 0;
}
.faq-body-inner li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--luxe);
}

/* —————— booking CTA —————— */
.booking {
  background: var(--paper-deep);
  padding: 100px 0 120px;
  text-align: center;
}
.booking-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--night);
  margin: 28px auto 40px;
  max-width: 30ch;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 56px;
  background: var(--night);
  color: var(--pure);
  text-decoration: none;
  font-family: var(--cjk);
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.32em;
  border: 1px solid var(--night);
  transition: all 280ms cubic-bezier(0.22,0.61,0.36,1);
}
.cta-button:hover {
  background: var(--pure);
  color: var(--night);
  letter-spacing: 0.42em;
}
.cta-button .arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
}
.booking-whisper {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(15, 10, 10, 0.55);
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* —————— footer —————— */
footer {
  padding: 48px 0 64px;
  text-align: center;
  border-top: 1px solid var(--line-hair);
}
footer .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--night);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
footer p {
  font-family: var(--cjk);
  font-size: 12px;
  color: rgba(15, 10, 10, 0.5);
  letter-spacing: 0.18em;
  line-height: 2;
}

/* —————— animations —————— */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 800ms cubic-bezier(0.22,0.61,0.36,1) both; }
.fade-in-2 { animation-delay: 160ms; }
.fade-in-3 { animation-delay: 320ms; }
.fade-in-4 { animation-delay: 480ms; }
.fade-in-5 { animation-delay: 640ms; }

/* dark mode tweak — applied on body[data-theme="dark"] */
body[data-theme="dark"] {
  background: #1A1411;
  color: rgba(254, 244, 239, 0.82);
}
body[data-theme="dark"] .pillars { background: #221813; }
body[data-theme="dark"] .booking { background: #221813; }
body[data-theme="dark"] .indiba { background: linear-gradient(180deg, #221813 0%, #1A1411 100%); }
body[data-theme="dark"] .section-title { color: var(--pure); }
body[data-theme="dark"] .pillar-title,
body[data-theme="dark"] .treatment-name,
body[data-theme="dark"] .map-item-title,
body[data-theme="dark"] .light-card-name,
body[data-theme="dark"] .indiba-part,
body[data-theme="dark"] .booking-tag,
body[data-theme="dark"] .faq-trigger { color: var(--pure); }
body[data-theme="dark"] .light-card,
body[data-theme="dark"] .indiba-part,
body[data-theme="dark"] .indiba-flex,
body[data-theme="dark"] .special-callout,
body[data-theme="dark"] .sauna-bullet { background: rgba(254, 244, 239, 0.04); }
body[data-theme="dark"] .chapter-bar { background: rgba(26, 20, 17, 0.92); border-bottom-color: var(--line-on-dark); }
body[data-theme="dark"] .chapter-bar-mark, body[data-theme="dark"] .chapter-bar a { color: rgba(254, 244, 239, 0.85); }
body[data-theme="dark"] .hairline,
body[data-theme="dark"] .map-list,
body[data-theme="dark"] .map-item,
body[data-theme="dark"] .price,
body[data-theme="dark"] .treatment,
body[data-theme="dark"] .indiba-applications,
body[data-theme="dark"] .indiba-app,
body[data-theme="dark"] .addon-table,
body[data-theme="dark"] .addon-table tr,
body[data-theme="dark"] .light-card-list,
body[data-theme="dark"] .faq { border-color: var(--line-on-dark); }

/* show 中文 wider treatment for hero / titles */
.cjk-spaced { letter-spacing: 0.18em; }
