:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6863;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --charcoal: #17201f;
  --charcoal-soft: #24302e;
  --wood: #b87b43;
  --wood-dark: #7a4c28;
  --jade: #08786b;
  --mint: #6bd7bd;
  --sage: #8d9560;
  --gold: #d6a64e;
  --line: rgba(23, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(20, 24, 22, 0.18);
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.78, 0.18, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Noto Serif TC", "Source Han Serif TC", "PingFang TC", "Microsoft JhengHei",
    Georgia, serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(8, 120, 107, 0.08), transparent 28%),
    linear-gradient(120deg, rgba(214, 166, 78, 0.08), transparent 46%);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 253, 248, 0.22) 46%, transparent 56%),
    radial-gradient(circle at 78% 12%, rgba(214, 166, 78, 0.1), transparent 22%);
  content: "";
  opacity: 0.44;
  pointer-events: none;
  animation: ambientLight 14s var(--ease) infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(247, 244, 238, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(18, 24, 22, 0.08);
  backdrop-filter: blur(16px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  gap: 10px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(17, 29, 27, 0.48);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 107, 0.1);
}

.brand-mark img {
  width: 36px;
  height: auto;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.brand-name {
  color: #fff;
  font-family: "Noto Serif TC", "Source Han Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.52rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-roman {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand,
.site-header.nav-active .brand {
  border-color: rgba(8, 120, 107, 0.18);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 34px rgba(18, 24, 22, 0.1);
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-active .brand-mark {
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .brand-name,
.site-header.nav-active .brand-name {
  color: var(--ink);
}

.site-header.is-scrolled .brand-roman,
.site-header.nav-active .brand-roman {
  color: var(--jade);
}

.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(107, 215, 189, 0.4);
}

.site-header.is-scrolled .brand:hover,
.site-header.nav-active .brand:hover {
  border-color: rgba(8, 120, 107, 0.3);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 28px);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social {
  display: none;
}

.social-link {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(17, 29, 27, 0.32);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link.facebook svg {
  fill: currentColor;
}

.social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover,
.social-link.facebook:focus-visible {
  background: #1877f2;
}

.social-link.instagram:hover,
.social-link.instagram:focus-visible {
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 18%, transparent 38%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.site-header.is-scrolled .social-link,
.site-header.nav-active .social-link {
  border-color: rgba(8, 120, 107, 0.18);
  background: rgba(255, 253, 248, 0.9);
  color: var(--jade);
  box-shadow: 0 10px 24px rgba(18, 24, 22, 0.08);
}

.site-header.is-scrolled .social-link.facebook:hover,
.site-header.nav-active .social-link.facebook:hover,
.site-header.is-scrolled .social-link.facebook:focus-visible,
.site-header.nav-active .social-link.facebook:focus-visible,
.site-header.is-scrolled .social-link.instagram:hover,
.site-header.nav-active .social-link.instagram:hover,
.site-header.is-scrolled .social-link.instagram:focus-visible,
.site-header.nav-active .social-link.instagram:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.hero picture,
.hero img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transform: translateY(calc(var(--hero-shift, 0px) * 0.18)) scale(1.04);
  transform-origin: center;
  animation: heroBreath 18s ease-in-out infinite alternate;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.88), rgba(13, 18, 16, 0.48) 44%, rgba(13, 18, 16, 0.1)),
    linear-gradient(180deg, rgba(13, 18, 16, 0.34), rgba(13, 18, 16, 0.12) 48%, rgba(13, 18, 16, 0.66));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 40px));
  min-height: 92vh;
  margin-left: clamp(20px, 8vw, 112px);
  padding: 120px 0 104px;
}

.motion-item,
[data-animate] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 760ms var(--ease),
    filter 760ms var(--ease),
    transform 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-animate].is-visible,
.motion-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero-content[data-animate] {
  transform: translateY(20px);
}

.hero-content[data-animate].is-visible {
  transform: translateY(0);
}

.hero-content.is-visible h1 span {
  animation: titleLift 820ms var(--ease) both;
}

.hero-content.is-visible h1 span:nth-child(2) {
  animation-delay: 110ms;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--jade);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button::after {
  position: absolute;
  inset: -120% auto -120% -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  transform: rotate(18deg) translateX(-120%);
  transition: transform 520ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: rotate(18deg) translateX(420%);
}

.button.primary {
  background: var(--jade);
  color: #fff;
  box-shadow: 0 16px 42px rgba(8, 120, 107, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button.primary.light {
  background: #fff;
  color: var(--jade);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin: 54px 0 0;
}

.hero-facts div {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-facts dt {
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
}

.hero-facts dd {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.hero-next {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 32px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.76rem;
  writing-mode: vertical-rl;
}

.hero-next::after {
  display: block;
  width: 1px;
  height: 54px;
  margin: 12px auto 0;
  background: currentColor;
  content: "";
}

.opening-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 116px) clamp(20px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(8, 120, 107, 0.08), transparent),
    var(--paper-strong);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 74px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.team-section {
  padding-top: clamp(72px, 9vw, 120px);
}

.team-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 28px 90px rgba(18, 24, 22, 0.18);
}

.team-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.team-copy h2 {
  max-width: 430px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.team-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.team-photo {
  min-height: 430px;
  margin: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 900ms ease;
}

.team-panel:hover .team-photo img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.team-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.team-stats div {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  padding: 22px 18px;
  background:
    linear-gradient(145deg, rgba(8, 120, 107, 0.94), rgba(141, 149, 96, 0.88)),
    var(--jade);
  transition:
    background 260ms ease,
    transform 260ms var(--ease);
}

.team-stats div:hover {
  background:
    linear-gradient(145deg, rgba(10, 139, 124, 0.96), rgba(166, 156, 91, 0.9)),
    var(--jade);
  transform: translateY(-2px);
}

.team-stats strong {
  color: #fff;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.85rem, 3.1vw, 3.1rem);
  font-weight: 850;
  line-height: 1;
}

.team-stats span {
  color: rgba(255, 255, 255, 0.8);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.heritage-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 86px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(72px, 9vw, 120px);
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(8, 120, 107, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 120, 107, 0.1), rgba(255, 253, 248, 0.8) 45%),
    rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.heritage-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214, 166, 78, 0.26);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.heritage-copy,
.heritage-timeline {
  position: relative;
  z-index: 1;
}

.heritage-copy p:not(.eyebrow) {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.heritage-timeline {
  display: grid;
  gap: 12px;
}

.heritage-timeline article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 33, 31, 0.12);
}

.heritage-timeline article:last-child {
  border-bottom: 0;
}

.heritage-timeline span {
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 900;
}

.heritage-timeline h3,
.heritage-timeline p {
  margin-bottom: 4px;
}

.heritage-timeline p {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.legacy-section {
  padding-top: 0;
}

.legacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.82fr);
  gap: 16px;
}

.legacy-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(8, 120, 107, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.07);
}

.legacy-card.large {
  grid-row: span 2;
}

.legacy-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.legacy-card.large img {
  aspect-ratio: 16 / 12;
}

.legacy-card div {
  padding: clamp(20px, 3vw, 30px);
}

.legacy-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legacy-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.hall-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hall-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 120, 107, 0.12);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 14px 36px rgba(23, 33, 31, 0.08);
}

.hall-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 320ms var(--ease);
}

.hall-gallery figure:hover img {
  transform: scale(1.045);
}

.hall-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(23, 33, 31, 0.72);
  color: #fff;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.intro-copy p:not(.eyebrow) {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.intro-points article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.06);
}

.intro-points b {
  display: block;
  margin-bottom: 36px;
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.86rem;
}

.intro-points p,
.treatment-grid p,
.news-card p {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.section-label {
  position: absolute;
  top: 22px;
  right: clamp(20px, 6vw, 70px);
  color: rgba(23, 33, 31, 0.08);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 13vw, 13rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.opening-layout,
.section,
.booking,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.opening-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.opening-copy p:not(.eyebrow),
.section-heading p,
.story-copy p,
.booking p {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.opening-card,
.service-card,
.location-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.07);
}

.opening-card {
  position: relative;
  padding: 30px;
  background: var(--charcoal);
  color: #fff;
}

.opening-card .status-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(107, 215, 189, 0.14);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.opening-card p {
  color: rgba(255, 255, 255, 0.76);
}

.opening-card a {
  display: inline-block;
  margin: 4px 0 18px;
  color: var(--mint);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.opening-card span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.7fr);
  gap: 32px;
  max-width: none;
  align-items: end;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.location-card {
  overflow: hidden;
}

.location-card img,
.location-photo-placeholder {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.location-card.featured img,
.hall-card img {
  aspect-ratio: 16 / 10;
}

.reservation-card {
  display: flex;
  grid-column: 1 / -1;
  min-height: 100%;
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(8, 120, 107, 0.1), rgba(214, 166, 78, 0.08)),
    rgba(255, 253, 248, 0.9);
}

.reservation-card .location-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(24px, 3.2vw, 38px);
}

.reservation-card .location-meta a:first-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--jade);
  color: #fff;
}

.location-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(23, 33, 31, 0.2), rgba(23, 33, 31, 0.2)),
    repeating-linear-gradient(90deg, #c89a67 0, #c89a67 8px, #f2d3ad 8px, #f2d3ad 18px);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
}

.location-body {
  padding: 26px;
}

.location-body span,
.service-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-body p {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 20px;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.location-meta a {
  color: var(--jade);
  font-weight: 800;
}

.service-section {
  border-top: 1px solid var(--line);
}

.price-section {
  border-top: 1px solid var(--line);
}

.price-guide {
  overflow: hidden;
  border: 1px solid rgba(8, 120, 107, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(240, 232, 215, 0.82)),
    var(--paper-strong);
  box-shadow: 0 24px 70px rgba(20, 24, 22, 0.1);
}

.price-guide-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid rgba(23, 33, 31, 0.1);
  background:
    linear-gradient(100deg, rgba(8, 120, 107, 0.13), transparent 62%),
    rgba(255, 255, 255, 0.52);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.price-guide-head span {
  color: var(--jade);
  font-size: clamp(1.28rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
}

.price-guide-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.price-groups {
  display: grid;
  gap: 1px;
  background: rgba(23, 33, 31, 0.08);
}

.price-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) 1fr;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.86)),
    var(--paper-strong);
}

.category-head {
  position: sticky;
  top: 96px;
  align-self: start;
}

.category-head span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid rgba(8, 120, 107, 0.22);
  border-radius: 50%;
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.category-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
}

.category-head p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.95rem;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card-grid.single {
  grid-template-columns: 1fr;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(8, 120, 107, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(31, 34, 29, 0.08);
  overflow: hidden;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.price-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.5) 48%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-55%);
  transition:
    opacity 220ms ease,
    transform 700ms var(--ease);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 120, 107, 0.28);
  box-shadow: 0 22px 54px rgba(31, 34, 29, 0.12);
}

.price-card:hover::before {
  opacity: 0.72;
  transform: translateX(65%);
}

.price-card.is-featured {
  background:
    linear-gradient(140deg, rgba(8, 120, 107, 0.95), rgba(32, 61, 57, 0.94)),
    var(--jade);
  color: #fff;
}

.price-card.wide {
  grid-column: 1 / -1;
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.price-card h4 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.service-language {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
}

.price-card.is-featured .service-language {
  color: rgba(255, 255, 255, 0.74);
}

.new-badge,
.duration-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.new-badge {
  margin-bottom: 8px;
  padding: 3px 10px;
  background: #c9342c;
  color: #fff;
}

.duration-chip {
  min-width: 68px;
  padding: 4px 12px;
  background: rgba(214, 166, 78, 0.15);
  color: var(--wood-dark);
}

.price-card.is-featured .duration-chip {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.price-options {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 33, 31, 0.1);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.price-card.is-featured .price-options {
  border-color: rgba(255, 255, 255, 0.16);
}

.list-price {
  color: var(--muted);
  font-size: 0.9rem;
}

.cash-price {
  color: var(--jade);
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  line-height: 1;
}

.price-card.is-featured .list-price {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.is-featured .cash-price {
  color: #fff;
}

.duration-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.duration-prices div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(8, 120, 107, 0.12);
  border-radius: 8px;
  background: rgba(8, 120, 107, 0.06);
}

.duration-prices span {
  color: var(--wood-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.duration-prices small {
  color: var(--muted);
  font-size: 0.82rem;
}

.duration-prices strong {
  color: var(--jade);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1;
}

.package-panel {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 120, 107, 0.08), transparent 42%),
    rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
}

.package-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.package-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.package-panel-head span {
  max-width: 380px;
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.94rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 330px;
  padding: 24px;
}

.service-card p {
  min-height: 78px;
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.95rem;
}

.service-card.accent {
  background: var(--charcoal-soft);
  color: #fff;
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.accent .price-row {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card.compact {
  min-height: 190px;
}

.service-card.compact p {
  min-height: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.price-row strong {
  color: var(--wood-dark);
}

.accent .price-row strong {
  color: var(--gold);
}

.package-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(8, 120, 107, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 34px rgba(20, 24, 22, 0.06);
}

.package-list article.package-best {
  border-color: rgba(214, 166, 78, 0.5);
  background:
    linear-gradient(135deg, rgba(214, 166, 78, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.76);
}

.package-list b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--jade);
  color: #fff;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.package-list h3,
.package-list h4 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.45;
}

.package-list article > span {
  grid-column: 2;
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.92rem;
}

.package-list p {
  grid-column: 2;
  display: flex;
  gap: 12px;
  margin: 0;
  align-items: center;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.package-list strong {
  color: var(--wood-dark);
  font-size: 1.2rem;
}

.menu-image {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.06);
}

.menu-image summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 800;
}

.menu-image img {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px 24px;
}

.space-section {
  border-top: 1px solid var(--line);
}

.space-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.space-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.space-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    filter 520ms ease,
    opacity 260ms ease,
    transform 760ms var(--ease);
}

.space-stage:hover > img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.04);
}

.space-stage.is-changing > img {
  opacity: 0.45;
  transform: scale(1.055);
}

.space-copy {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  left: clamp(16px, 3vw, 34px);
  max-width: 520px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(23, 33, 31, 0.72);
  color: #fff;
  backdrop-filter: blur(14px);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.space-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.space-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
}

.space-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.space-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.space-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  cursor: pointer;
  isolation: isolate;
}

.space-thumb::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 17, 15, 0.78), rgba(10, 17, 15, 0.18)),
    linear-gradient(180deg, transparent, rgba(10, 17, 15, 0.62));
  content: "";
}

.space-thumb::after {
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: 6px;
  content: "";
  transition: border-color 180ms ease;
}

.space-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 320ms var(--ease),
    filter 320ms ease;
}

.space-thumb span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.space-thumb:hover img,
.space-thumb.is-active img {
  transform: scale(1.05);
  filter: saturate(1.08) brightness(1.08);
}

.space-thumb.is-active::after,
.space-thumb:focus-visible::after {
  border-color: var(--gold);
}

.space-thumb:focus-visible {
  outline: 3px solid rgba(214, 166, 78, 0.45);
  outline-offset: 3px;
}

.experience-section {
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    linear-gradient(120deg, rgba(23, 32, 31, 0.96), rgba(8, 92, 83, 0.92)),
    var(--charcoal);
  color: #fff;
}

.experience-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.experience-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-section .eyebrow {
  color: var(--gold);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.journey-grid article {
  position: relative;
  min-height: 320px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.journey-grid article::after {
  position: absolute;
  top: -40%;
  left: -80%;
  width: 58%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  transform: rotate(16deg);
  transition: left 900ms var(--ease);
}

.journey-grid article:hover::after {
  left: 128%;
}

.journey-grid b {
  display: block;
  margin-bottom: 70px;
  color: var(--gold);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.9rem;
}

.journey-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 80px);
  align-items: center;
  padding-top: 0;
}

.treatment-section {
  border-top: 1px solid var(--line);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.treatment-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.06);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.treatment-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.treatment-grid img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.treatment-grid .treatment-feature {
  grid-column: span 2;
}

.treatment-grid .treatment-feature img {
  aspect-ratio: 16 / 9;
}

.treatment-grid div {
  padding: 24px;
}

.treatment-grid span,
.news-card time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--jade);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-band {
  padding: clamp(72px, 10vw, 124px) max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(23, 32, 31, 0.96), rgba(8, 92, 83, 0.93)),
    var(--charcoal);
  color: #fff;
}

.benefit-band .section-heading {
  width: min(var(--max), calc(100% - 40px));
}

.benefit-band .section-heading p {
  color: var(--gold);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.benefit-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.benefit-grid article,
.intro-points article,
.location-card,
.news-card,
.package-list article,
.opening-card {
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms var(--ease);
}

.benefit-grid article:hover,
.intro-points article:hover,
.location-card:hover,
.news-card:hover,
.package-list article:hover,
.opening-card:hover {
  border-color: rgba(8, 120, 107, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.news-section {
  border-top: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.06);
}

.news-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.opening-news img {
  aspect-ratio: 16 / 11;
}

.news-card div {
  padding: 24px;
}

.news-card.text-card {
  display: flex;
  align-items: end;
  min-height: 280px;
  background:
    linear-gradient(145deg, rgba(8, 120, 107, 0.08), transparent 42%),
    var(--paper-strong);
}

.visitor-section {
  border-top: 1px solid var(--line);
}

.visitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.visitor-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.06);
}

.visitor-grid p {
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.story-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 640px;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.promise-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--jade);
  background: rgba(255, 253, 248, 0.72);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(72px, 10vw, 120px);
  padding: clamp(34px, 6vw, 64px);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(8, 120, 107, 0.95), rgba(23, 32, 31, 0.98)),
    var(--jade);
  color: #fff;
  box-shadow: var(--shadow);
}

.booking h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.booking p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.booking-actions {
  justify-content: flex-end;
}

.booking-actions .social-link {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 90px);
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(23, 32, 31, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.floating-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 999px;
  color: #fff;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms var(--ease);
}

.floating-cta a:hover,
.floating-cta a:focus-visible {
  transform: translateY(-1px);
}

.floating-cta a:first-child {
  background: var(--jade);
}

.floating-cta a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

@keyframes ambientLight {
  from {
    opacity: 0.28;
    transform: translate3d(-1.5%, -1%, 0);
  }

  to {
    opacity: 0.58;
    transform: translate3d(1.5%, 1%, 0);
  }
}

@keyframes heroBreath {
  from {
    filter: saturate(0.92) contrast(1.04);
  }

  to {
    filter: saturate(1.05) contrast(1.08);
  }
}

@keyframes titleLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(107, 215, 189, 0.14);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 13px rgba(107, 215, 189, 0.04);
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-animate],
  .motion-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-main {
  max-width: 560px;
}

.footer-main > p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(8, 120, 107, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.footer-brand img {
  width: 42px;
}

.footer-brand span {
  display: grid;
  gap: 1px;
}

.footer-brand strong {
  color: var(--ink);
  font-family: "Noto Serif TC", "Source Han Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.footer-brand small {
  color: var(--jade);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-social {
  margin-top: 14px;
}

.footer-social .social-link {
  border-color: rgba(8, 120, 107, 0.16);
  background: rgba(255, 253, 248, 0.84);
  color: var(--jade);
  box-shadow: 0 10px 26px rgba(18, 24, 22, 0.08);
}

.footer-social .social-link:hover,
.footer-social .social-link:focus-visible {
  color: #fff;
}

.footer-info {
  display: grid;
  min-width: min(100%, 300px);
  align-content: start;
  gap: 8px;
  padding-top: 8px;
  text-align: right;
}

.footer-info p {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  color: var(--ink);
  font-weight: 800;
}

.footer-info span {
  color: var(--muted);
  font-weight: 500;
}

.footer-info a {
  color: var(--jade);
}

.footer-info small {
  margin-top: 8px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .header-social {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-of-type {
    border-bottom: 0;
  }

  .nav-social {
    display: flex;
    padding: 16px 8px 4px;
  }

  .nav-social .social-link {
    border-color: rgba(8, 120, 107, 0.16);
    background: rgba(8, 120, 107, 0.08);
    color: var(--jade);
    box-shadow: none;
  }

  .nav-social .social-link:hover,
  .nav-social .social-link:focus-visible {
    color: #fff;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    margin-left: 20px;
  }

  .opening-layout,
  .intro-strip,
  .team-panel,
  .heritage-panel,
  .section-heading.split,
  .location-grid,
  .story-section,
  .legacy-layout,
  .space-showcase,
  .price-guide-head,
  .price-category,
  .booking {
    grid-template-columns: 1fr;
  }

  .intro-points,
  .service-grid,
  .hall-gallery,
  .team-stats,
  .treatment-grid,
  .benefit-grid,
  .news-grid,
  .journey-grid,
  .visitor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .team-copy {
    min-height: auto;
  }

  .team-photo {
    min-height: 360px;
  }

  .category-head {
    position: static;
  }

  .category-head p {
    max-width: 680px;
  }

  .space-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .space-thumb {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    max-width: calc(100vw - 88px);
    gap: 8px;
    padding: 7px 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark img {
    width: 31px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-roman {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(13, 18, 16, 0.7), rgba(13, 18, 16, 0.52) 42%, rgba(13, 18, 16, 0.86)),
      linear-gradient(90deg, rgba(13, 18, 16, 0.74), rgba(13, 18, 16, 0.18));
  }

  .hero-content {
    min-height: 94vh;
    padding: 104px 0 92px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions .button,
  .booking-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-facts div {
    padding: 12px 0;
  }

  .hero-next {
    display: none;
  }

  .opening-layout,
  .intro-strip,
  .team-section,
  .heritage-panel,
  .section,
  .booking,
  .site-footer {
    width: min(var(--max), calc(100% - 32px));
  }

  .intro-points,
  .service-grid,
  .legacy-layout,
  .team-stats,
  .package-list,
  .price-card-grid,
  .promise-list,
  .treatment-grid,
  .benefit-grid,
  .news-grid,
  .journey-grid,
  .visitor-grid {
    grid-template-columns: 1fr;
  }

  .hall-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-panel {
    border-radius: 8px;
  }

  .team-copy {
    padding: 30px 24px;
  }

  .team-photo {
    min-height: 260px;
  }

  .team-stats div {
    min-height: 96px;
  }

  .intro-points article,
  .benefit-grid article,
  .journey-grid article,
  .visitor-grid article {
    min-height: auto;
  }

  .heritage-panel {
    padding: 32px 22px;
  }

  .heritage-panel::before {
    inset: 10px;
  }

  .heritage-timeline article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .experience-inner,
  .benefit-band .section-heading,
  .benefit-grid {
    width: min(var(--max), calc(100% - 32px));
  }

  .journey-grid b {
    margin-bottom: 30px;
  }

  .legacy-card.large,
  .treatment-grid .treatment-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .price-guide,
  .package-panel,
  .menu-image {
    margin-right: -8px;
    margin-left: -8px;
  }

  .price-guide-head,
  .price-category {
    padding: 22px 18px;
  }

  .price-card {
    min-height: auto;
    padding: 18px;
  }

  .price-card.wide {
    grid-column: auto;
  }

  .price-card-top,
  .price-options,
  .package-panel-head {
    align-items: flex-start;
  }

  .price-card-top,
  .price-options,
  .package-panel-head {
    flex-direction: column;
  }

  .duration-prices {
    grid-template-columns: 1fr;
  }

  .package-panel-head {
    display: block;
  }

  .service-card,
  .service-card.compact {
    min-height: auto;
  }

  .service-card p {
    min-height: 0;
  }

  .space-stage {
    aspect-ratio: 1 / 1;
  }

  .space-copy {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    border: 0;
    border-radius: 0;
    background: var(--charcoal-soft);
    backdrop-filter: none;
  }

  .space-thumbs {
    grid-template-columns: 1fr 1fr;
  }

  .space-thumb {
    aspect-ratio: 1 / 1;
  }

  .story-media {
    max-width: 420px;
  }

  .treatment-grid img,
  .treatment-grid .treatment-feature img,
  .news-card img,
  .opening-news img,
  .legacy-card img,
  .legacy-card.large img,
  .location-card img,
  .location-card.featured img,
  .location-photo-placeholder {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-info {
    min-width: 0;
    text-align: left;
  }

  .footer-info p {
    justify-content: flex-start;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .floating-cta a {
    flex: 1;
  }
}
