:root {
  --orange: #ec5328;
  --orange-deep: #c9431c;
  --black: #070707;
  --ink: #141414;
  --muted: #5a5a5a;
  --line: #e8e8e8;
  --paper: #f6f5f3;
  --white: #ffffff;
  --header: 78px;
  --page-pad: 20px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --max: 1180px;
  --font: "Poppins", "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img, video, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button, a, input, textarea, select { touch-action: manipulation; }
.container {
  width: min(var(--max), calc(100% - (2 * var(--page-pad))));
  margin: 0 auto;
}

.zh { display: unset; }
.en { display: none; }
html[lang="en"] .zh { display: none; }
html[lang="en"] .en { display: unset; }
p.zh, h1.zh, h2.zh, h3.zh, h4.zh, li.zh, div.zh, span.zh-block { display: block; }
p.en, h1.en, h2.en, h3.en, h4.en, li.en, div.en, span.en-block { display: none; }
html[lang="en"] p.zh, html[lang="en"] h1.zh, html[lang="en"] h2.zh,
html[lang="en"] h3.zh, html[lang="en"] h4.zh, html[lang="en"] li.zh,
html[lang="en"] div.zh, html[lang="en"] span.zh-block { display: none; }
html[lang="en"] p.en, html[lang="en"] h1.en, html[lang="en"] h2.en,
html[lang="en"] h3.en, html[lang="en"] h4.en, html[lang="en"] li.en,
html[lang="en"] div.en, html[lang="en"] span.en-block { display: block; }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; z-index: 80; background: #fff; padding: 8px 12px; }

.header {
  position: sticky; top: 0; z-index: 50;
  min-height: var(--header);
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  width: min(1280px, calc(100% - (2 * var(--page-pad))));
  min-height: var(--header);
  margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.logo { flex: 0 0 auto; display: flex; align-items: center; }
.logo img { height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  opacity: 0.88;
}
.nav a:hover, .nav a.active { opacity: 1; color: var(--orange); }
.nav .btn-book { display: none; }

.header-tools { display: flex; align-items: center; gap: 14px; }
.lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.lang button {
  background: none; border: 0; color: #bbb; cursor: pointer;
  min-width: 36px; min-height: 44px; padding: 8px 4px;
}
.lang button.is-on { color: #fff; }
.lang .dot { color: #555; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  border: 0; cursor: pointer; border-radius: 4px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: #f3f3f3; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-block { width: 100%; max-width: 360px; }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn-book { background: var(--orange); color: #fff; min-height: 40px; padding: 0 16px; font-size: 13px; }

.menu-toggle {
  display: none; width: 44px; height: 44px;
  background: none; border: 0; color: #fff; cursor: pointer;
  position: relative; z-index: 2;
}
.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
  display: block; width: 18px; height: 1.5px; background: #fff; position: relative;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.menu-toggle span:before, .menu-toggle span:after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle span:before { top: -6px; }
.menu-toggle span:after { top: 6px; }
.header.is-open .menu-toggle span { background: transparent; }
.header.is-open .menu-toggle span:before { transform: translateY(6px) rotate(45deg); }
.header.is-open .menu-toggle span:after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  min-height: calc(100svh - var(--header));
  min-height: calc(100dvh - var(--header));
  display: grid; place-items: end center;
  color: #fff; overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 20%, rgba(0,0,0,0.55) 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  text-align: center; padding: 0 var(--page-pad) 88px;
  max-width: 720px;
  width: 100%;
}
.kicker {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; color: var(--orange); margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.18; font-weight: 700; margin-bottom: 14px;
}
.hero p { font-size: 16px; opacity: 0.92; margin-bottom: 16px; }
.hero .kicker { margin-top: 4px; margin-bottom: 20px; opacity: 1; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-actions .btn { width: min(360px, 100%); }

.section { padding: 92px 0; }
.section-sm { padding: 72px 0; }
.center { text-align: center; }
.eyebrow {
  color: var(--orange); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px;
}
h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2; font-weight: 700; letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1, .page-hero h1, .prose h1 { text-wrap: balance; }
.lede {
  max-width: 720px; margin: 16px auto 0; color: var(--muted); font-size: 16px;
}
.about { background: var(--paper) url("images/hex-pattern.png") repeat; background-size: 48px; }
.about .lede { margin-bottom: 28px; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { min-height: 420px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px; background: #fff;
}
.split-copy h2 { margin: 8px 0 16px; }
.split-copy p { color: var(--muted); margin-bottom: 28px; max-width: 460px; }

.why { background: var(--black); color: #fff; }
.why .crumb, .why .lede { color: #bdbdbd; }
.why .crumb a:hover { color: var(--orange); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.why-card { padding: 8px 8px 0; }
.why-card img {
  width: 100%; height: 240px; object-fit: cover; border-radius: 8px; margin-bottom: 22px;
}
.why-card h3 { font-size: 22px; margin-bottom: 10px; }
.why-card p { color: #bdbdbd; font-size: 15px; }

.prices { background: #fff; }
.menu {
  max-width: 900px; margin: 48px auto 0;
}
.menu h3 {
  color: var(--orange); font-size: 22px; margin: 36px 0 16px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.menu-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center; gap: 12px 20px;
  padding: 16px 0; border-bottom: 1px solid #f0f0f0;
}
.menu-row strong { display: block; font-size: 16px; }
.menu-row .meta { color: var(--muted); font-size: 13.5px; font-style: italic; margin-top: 4px; }
.price { text-align: right; white-space: nowrap; }
.price b { display: block; font-size: 18px; }
.member { color: var(--orange); font-size: 13px; font-weight: 600; }
.menu-book {
  min-height: 38px; padding: 0 14px; font-size: 13px;
  white-space: nowrap; justify-self: end;
}
.addons {
  display: grid; grid-template-columns: 1fr;
}

.reviews { background: var(--paper); }
.review-score {
  display: flex; justify-content: center; align-items: baseline; gap: 10px;
  margin: 18px 0 36px; font-weight: 700;
}
.review-score .big { font-size: 42px; }
.stars { color: var(--orange); letter-spacing: 2px; }
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.review {
  background: #fff; padding: 24px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review p { color: #333; font-size: 14.5px; margin: 12px 0 0; }
.review .name { font-weight: 700; font-size: 14px; }
.google-link { display: inline-block; margin-top: 28px; color: var(--orange); font-weight: 600; }

.member-sec {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--orange); color: #fff;
}
.member-copy { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.member-copy h2 { margin: 8px 0 12px; }
.member-copy p { opacity: 0.95; margin-bottom: 12px; max-width: 460px; }
.member-copy .btn-white { margin-top: 18px; width: fit-content; }
.member-photo { min-height: 460px; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }

.journal { background: #fff; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.card {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 18px; line-height: 1.35; margin-bottom: 8px; }
.card-body span { color: var(--muted); font-size: 13px; }

.insta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 36px;
}
.insta-grid a { overflow: hidden; aspect-ratio: 1; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-grid a:hover img { transform: scale(1.05); }

.contact { background: var(--black); color: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; margin-top: 36px;
}
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card p, .contact-card a { color: #d0d0d0; }
.contact-card a:hover { color: var(--orange); }
.contact-meta { display: grid; gap: 22px; margin-bottom: 28px; }
form { display: grid; gap: 12px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea {
  width: 100%; background: #141414; color: #fff;
  border: 1px solid #2a2a2a; border-radius: 6px;
  padding: 13px 14px; font-size: 16px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus { outline: 1px solid var(--orange); border-color: var(--orange); }
.form-note { font-size: 13px; color: #9a9a9a; }
.form-ok { color: #8ee0a8; font-size: 14px; display: none !important; }
.form-ok.is-on { display: block !important; }

.map iframe { width: 100%; height: 280px; border: 0; filter: grayscale(0.3) contrast(1.05); border-radius: 8px; }

.footer {
  background: #050505; color: #9a9a9a; padding: 36px 0 28px;
  font-size: 13px;
}
.footer-inner {
  width: min(1280px, calc(100% - (2 * var(--page-pad)))); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a;
  display: grid; place-items: center;
}
.socials img { width: 16px; height: 16px; filter: invert(1); }
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; }

.faq { background: #fff; }
.faq-list { max-width: 760px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 18px 0; font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  min-height: 52px;
}
.faq-item button::after { content: "+"; color: var(--orange); font-weight: 500; flex: 0 0 auto; }
.faq-item.open button::after { content: "-"; }
.faq-item .answer { color: var(--muted); padding: 0 0 18px; }
.faq-item .answer.zh,
.faq-item .answer.en,
html[lang="en"] .faq-item .answer.en,
html[lang="en"] .faq-item .answer.zh { display: none; }
.faq-item.open .answer.zh { display: block; }
html[lang="en"] .faq-item.open .answer.en { display: block; }
html[lang="en"] .faq-item.open .answer.zh { display: none; }

body.nav-open { overflow: hidden; }
body.kb-open .mobile-cta { transform: translateY(110%); }

.mobile-cta {
  display: none;
}

.split-copy, .member-copy, .why-card, .review, .package, .card, .menu-row > * { min-width: 0; }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}
.page-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.62));
}
.prose h1 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.22; margin: 0 0 8px; }
.page-hero .copy {
  position: relative; z-index: 1;
  width: min(var(--max), calc(100% - (2 * var(--page-pad))));
  margin: 0 auto; padding: 90px 0 48px;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); margin: 8px 0 10px; }
.page-hero p { max-width: 640px; opacity: .92; }

.crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumb a:hover { color: var(--orange); }

.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.package {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: #fff;
  display: flex; flex-direction: column; gap: 10px;
}
.package.featured { border-color: var(--orange); box-shadow: var(--shadow); }
.package .tag { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.package h3 { font-size: 22px; }
.package .pkg-price { font-size: 28px; font-weight: 700; }
.package .pkg-price > span { font-size: 14px; color: var(--orange); font-weight: 600; display: block; }
.package ul { color: var(--muted); font-size: 14.5px; padding-left: 1.1em; display: grid; gap: 7px; margin: 8px 0 16px; }
.package .btn { margin-top: auto; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; margin-top: 28px; }
.check-grid li { color: var(--muted); margin: 0 0 8px 1.1em; }

.prose { max-width: 760px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 40px 0 12px; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p { color: #444; margin-bottom: 14px; }
.prose ul, .prose ol { color: #444; padding-left: 1.2em; margin: 0 0 16px; display: grid; gap: 6px; }
.prose .lead { font-size: 18px; color: var(--ink); }
.prose .meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.article-hero {
  width: 100%; height: min(420px, 52vw);
  object-fit: cover; border-radius: 8px; margin: 8px 0 28px;
}
.prose table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 18px 0 24px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--paper); }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }
.blog-grid .card img { height: 230px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line);
}
.more-grid .card img { height: 150px; }
.article-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.prose .lede { max-width: none; }

@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .header-inner { gap: 18px; }
}

@media (max-width: 980px) {
  :root { --header: 64px; }

  .nav, .header-tools .btn-book { display: none; }
  .header-tools { margin-left: auto; gap: 4px; }
  .menu-toggle { display: grid; place-items: center; }
  .logo img { height: 28px; }

  .header.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: calc(var(--header) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    background: #050505;
    padding: 8px max(var(--page-pad), env(safe-area-inset-right, 0px)) calc(28px + env(safe-area-inset-bottom, 0px)) max(var(--page-pad), env(safe-area-inset-left, 0px));
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header.is-open .nav a {
    font-size: 18px;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1;
  }
  .header.is-open .nav .btn-book {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
    min-height: 48px;
    border: 0;
    justify-content: center;
  }

  .split, .split.reverse, .member-sec, .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .split { min-height: 0; }
  .split-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-height: min(420px, 52vh);
  }
  .split-copy, .member-copy { padding: 36px var(--page-pad); }
  .split-copy .btn, .member-copy .btn-white { width: min(100%, 360px); }
  .member-photo { min-height: 0; max-height: 320px; aspect-ratio: 16 / 10; }
  .member-copy { padding: 40px var(--page-pad); }

  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .journal-grid { grid-template-columns: 1fr; }
  .packages, .check-grid, .more-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }

  .menu-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px 16px;
  }
  .menu-book {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    min-height: 44px;
  }

  .hero {
    min-height: calc(100svh - var(--header) - env(safe-area-inset-top, 0px));
    min-height: calc(100dvh - var(--header) - env(safe-area-inset-top, 0px));
  }
  .page-hero { min-height: 42svh; }
  .page-hero .copy { padding: 56px 0 36px; }

  .package .btn, .article-cta .btn, .cta-row .btn { width: 100%; }
  .article-cta, .cta-row { flex-direction: column; }

  .map iframe { height: 240px; }
}

@media (max-width: 720px) {
  :root { --page-pad: 16px; }

  .review-grid, .blog-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .section-sm { padding: 52px 0; }
  .hero-copy { padding-bottom: calc(24px + 72px + env(safe-area-inset-bottom, 0px)); }
  .hero h1 { font-size: clamp(26px, 8vw, 40px); }
  h2 { font-size: clamp(24px, 7vw, 36px); }
  .kicker { letter-spacing: 0.16em; }
  .why-card img { height: 200px; }
  .card img, .blog-grid .card img { height: 190px; }
  .more-grid .card img { height: 160px; }
  .footer {
    padding: 28px 0 20px;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }
  .footer nav, .socials { justify-content: center; }
  .prose table {
    width: max(100%, 620px);
    max-width: none;
    font-size: 12.5px;
  }
  .prose th, .prose td { padding: 8px 10px; }
  .socials a { width: 44px; height: 44px; }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px max(var(--page-pad), env(safe-area-inset-right, 0px)) calc(10px + env(safe-area-inset-bottom, 0px)) max(var(--page-pad), env(safe-area-inset-left, 0px));
    background: rgba(7, 7, 7, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
  }
  .mobile-cta .btn { width: 100%; min-height: 46px; font-size: 14px; }
  .mobile-cta .btn-ghost { background: transparent; }

  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  body.nav-open .mobile-cta { visibility: hidden; }
}

@media (max-width: 480px) {
  .hero-copy { padding-bottom: calc(20px + 72px + env(safe-area-inset-bottom, 0px)); }
  .split-media { max-height: 240px; }
  .member-photo { max-height: 240px; }
  .menu h3 { font-size: 18px; }
  .price b { font-size: 16px; }
  .package { padding: 22px 18px; }
  .menu-row { grid-template-columns: 1fr; }
  .price { text-align: left; }
}

@media (max-width: 980px) and (max-height: 500px) {
  .hero { min-height: 0; }
  .hero-copy { padding: 36px var(--page-pad) calc(24px + 72px + env(safe-area-inset-bottom, 0px)); }
  .split-media, .member-photo { max-height: 200px; }
}
