:root {
  --accent: #c94a16;
  --accent-active: #b84012;
  --accent-soft: #fbe9df;
  --ink: #222222;
  --body: #3f3f3f;
  --muted: #6a6a6a;
  --muted-soft: #929292;
  --hairline: #dddddd;
  --hairline-soft: #ebebeb;
  --border-strong: #c1c1c1;
  --canvas: #ffffff;
  --surface-soft: #f7f7f7;
  --surface-strong: #f2f2f2;
  --shadow: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px 0, rgba(0, 0, 0, 0.1) 0 4px 8px 0;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --font: "DM Sans", "Noto Sans TC", -apple-system, system-ui, "PingFang TC", "Microsoft JhengHei", sans-serif;
  --wrap: 1280px;
  --gutter: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.ic { display: inline-flex; width: 20px; height: 20px; flex: none; vertical-align: middle; }
.ic svg { width: 100%; height: 100%; }

.wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); }
.wm-mark { width: 32px; height: 32px; display: inline-flex; }
.wm-mark svg { width: 100%; height: 100%; }
.wm-text { font-weight: 700; font-size: 20px; letter-spacing: 0.12em; line-height: 1; }
.wm-text em { font-style: normal; font-weight: 500; margin-left: 0.35em; }
.wm-zh { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.1em; padding-left: 10px; border-left: 1px solid var(--hairline); line-height: 1.2; }
.wordmark.small .wm-text { font-size: 17px; }

.topnav { position: sticky; top: 0; z-index: 50; background: var(--canvas); border-bottom: 1px solid var(--hairline-soft); }
.nav-row { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ptabs { display: flex; gap: 8px; }
.ptab { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 14px 6px; font-size: 14px; font-weight: 600; color: var(--muted); position: relative; }
.ptab .ic { width: 26px; height: 26px; }
.ptab.active { color: var(--ink); }
.ptab.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: -2px; height: 2px; background: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-link { font-size: 14px; font-weight: 600; padding: 10px 12px; border-radius: 9999px; }
.nav-link:hover { background: var(--surface-soft); }
.nav-pill { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px 0 12px; border: 1px solid var(--hairline); border-radius: 9999px; font-weight: 600; font-size: 14px; box-shadow: none; }
.nav-pill:hover { box-shadow: var(--shadow); }
.nav-pill .ic { color: var(--accent); }
.nav-line { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 9999px; background: var(--surface-strong); }
.nav-burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--hairline); border-radius: 9999px; }
.nav-burger .ic { width: 22px; height: 22px; }

.sheet { position: fixed; inset: 0; background: var(--canvas); z-index: 60; overflow: auto; }
.sheet-head { height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid var(--hairline-soft); }
.sheet-head button { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9999px; background: var(--surface-strong); }
.sheet-body { padding: 16px 16px 40px; }
.sheet-title { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; margin: 20px 0 10px; }
.sheet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sheet-grid a { padding: 12px 14px; border: 1px solid var(--hairline); border-radius: var(--r-sm); font-weight: 500; }
.sheet-links { display: grid; gap: 2px; }
.sheet-links a { padding: 12px 4px; border-bottom: 1px solid var(--hairline-soft); font-weight: 500; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 24px; border-radius: var(--r-sm); font-weight: 500; font-size: 16px; white-space: nowrap; }
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:active { background: var(--accent-active); }
.btn.secondary { background: var(--canvas); color: var(--ink); border: 1px solid var(--ink); }
.btn.block { width: 100%; margin-top: 24px; }

.hero-wrap { padding-top: 24px; }
.hero { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--surface-strong); aspect-ratio: 1440 / 818; max-height: 600px; width: 100%; }
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.slide.current { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 9999px; background: rgba(255, 255, 255, 0.92); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.hero-btn .ic { width: 18px; height: 18px; }
.hero-btn.prev { left: 20px; }
.hero-btn.next { right: 20px; }
.dots { position: absolute; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 9999px; background: rgba(255, 255, 255, 0.55); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12); }
.dot.on { background: #fff; transform: scale(1.25); }
.hero-eyebrow { position: absolute; top: 20px; left: 24px; padding: 6px 12px; border-radius: 9999px; background: rgba(255, 255, 255, 0.94); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; box-shadow: var(--shadow); }

.searchbar { position: relative; z-index: 2; margin: -36px auto 0; width: min(100%, 980px); height: 72px; display: flex; align-items: stretch; background: var(--canvas); border: 1px solid var(--hairline); border-radius: 9999px; box-shadow: var(--shadow); padding: 6px 6px 6px 8px; }
.seg { flex: 1 1 0; display: flex; align-items: center; gap: 10px; padding: 0 20px; border-right: 1px solid var(--hairline); min-width: 0; border-radius: 9999px; }
.seg:last-of-type { border-right: 0; }
.seg:hover { background: var(--surface-soft); }
.seg-ic { color: var(--muted); }
.seg-label { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.2; }
.seg { cursor: text; }
.seg:focus-within { background: var(--surface-soft); }
.seg-body { min-width: 0; flex: 1; }
.seg-ctl { display: block; width: 100%; border: 0; background: transparent; padding: 0; margin: 0; font: inherit; font-size: 14px; line-height: 1.3; color: var(--ink); outline: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.seg-ctl::placeholder { color: var(--muted); }
.seg-ctl::-webkit-search-cancel-button { -webkit-appearance: none; }
select.seg-ctl { cursor: pointer; appearance: none; -webkit-appearance: none; padding-right: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center / 14px; }
select.seg-ctl.is-empty { color: var(--muted); }
.orb { flex: none; display: inline-flex; align-items: center; gap: 8px; height: 100%; padding: 0 22px 0 18px; border-radius: 9999px; background: var(--accent); color: #fff; font-weight: 600; font-size: 15px; }
.orb:active { background: var(--accent-active); }
.orb .ic { width: 20px; height: 20px; }

.cat-strip { display: flex; align-items: center; gap: 6px; margin-top: 28px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-lead { font-size: 13px; font-weight: 700; color: var(--muted); white-space: nowrap; margin-right: 6px; }
.cat { flex: none; padding: 8px 14px; border-radius: 9999px; border: 1px solid var(--hairline); font-size: 14px; font-weight: 500; white-space: nowrap; }
.cat:hover { border-color: var(--ink); }
.cat.accent { color: var(--accent); border-color: var(--accent-soft); background: var(--accent-soft); font-weight: 600; }

.band { padding: 64px 0 0; }
.band-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px 16px; flex-wrap: wrap; margin-bottom: 20px; }
.band-head h2 { white-space: nowrap; }
.band-head.sub { margin-top: 56px; }
.band-head h2 { font-size: 28px; font-weight: 700; line-height: 1.43; letter-spacing: 0.01em; }
.band-sub { font-size: 14px; color: var(--muted); }
.more { display: inline-flex; align-items: center; gap: 2px; font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.more .ic { width: 16px; height: 16px; }

.hrow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.hcard { display: block; min-width: 0; }
.hphoto, .tphoto { position: relative; display: block; border-radius: var(--r-md); overflow: hidden; background: var(--surface-strong); }
.hphoto { aspect-ratio: 1 / 1; }
.hphoto img, .tphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hcard:hover .hphoto img, .tcard:hover .tphoto img { transform: scale(1.03); }
.fbadge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 9999px; background: var(--canvas); color: var(--ink); font-size: 11px; font-weight: 600; line-height: 1.18; box-shadow: var(--shadow); }
.heart { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; display: inline-flex; }
.heart svg { width: 100%; height: 100%; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }
.hmeta { padding: 10px 2px 0; }
.hTitle { font-size: 15px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hdates, .tdates { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.6; }
.d { white-space: nowrap; }
.d + .d::before { content: "·"; margin: 0 4px; color: var(--muted-soft); }
.d.on { color: var(--ink); font-weight: 600; }
.d.on::after { content: "已成團"; margin-left: 3px; font-size: 11px; font-weight: 700; color: var(--accent); }
.d.more { color: var(--muted-soft); }
.price { display: inline-block; margin-top: 6px; font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.price .cur { font-size: 12px; font-weight: 500; color: var(--muted); margin-right: 1px; }
.price .from { font-size: 13px; font-weight: 400; color: var(--muted); }
.price.ask { color: var(--muted); font-weight: 500; }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--hairline); margin-bottom: 24px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 12px 14px; font-size: 15px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tab .cnt { font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 9999px; background: var(--surface-strong); color: var(--muted); }
.tab.on { color: var(--ink); border-bottom-color: var(--ink); }
.tab.on .cnt { background: var(--ink); color: #fff; }
.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 16px; }
.tcard.hide { display: none; }
[hidden] { display: none !important; }
#tours.results .tabs { display: none; }
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 12px 16px; flex-wrap: wrap; margin-bottom: 24px; padding: 14px 18px; border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--surface-soft); }
.results-copy { font-size: 15px; }
.results-copy strong { font-weight: 700; }
.results-crit { color: var(--muted); }
.results-clear { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 9999px; border: 1px solid var(--ink); background: var(--canvas); font-size: 14px; font-weight: 500; }
.results-clear .ic { width: 16px; height: 16px; }
.empty { text-align: center; padding: 56px 16px; color: var(--muted); font-size: 16px; }
.empty p { margin-bottom: 20px; }
.tcard { min-width: 0; display: flex; flex-direction: column; }
.tphoto { aspect-ratio: 4 / 3; }
.tmeta { padding: 12px 2px 0; display: flex; flex-direction: column; flex: 1; }
.ttitle { font-size: 16px; font-weight: 600; line-height: 1.4; }
.tsub { font-size: 12px; font-weight: 600; color: var(--accent); margin-top: 3px; line-height: 1.5; }
.tdesc { font-size: 13px; color: var(--body); line-height: 1.65; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tfoot { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; }
.tlink { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.tlink .ic { width: 14px; height: 14px; }

.about { padding-top: 80px; }
.about-head { max-width: 720px; }
.about-head h2 { font-size: 28px; font-weight: 700; line-height: 1.43; }
.about-head p { margin-top: 12px; color: var(--body); font-size: 16px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.pillar { border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 24px; }
.pillar-ic { width: 32px; height: 32px; color: var(--accent); margin-bottom: 14px; }
.pillar h3 { font-size: 18px; font-weight: 600; line-height: 1.3; }
.pillar p { font-size: 14px; color: var(--body); margin-top: 8px; line-height: 1.7; }

.tvhero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; padding: 8px 0 0; }
.tvphoto { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9; background: var(--surface-strong); }
.tvphoto img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); }
.tvcopy h2 { font-size: 28px; font-weight: 700; line-height: 1.43; margin-top: 6px; }
.tvcopy p { color: var(--body); margin-top: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 20px; }
.chip { padding: 5px 12px; border-radius: 9999px; background: var(--surface-strong); font-size: 13px; font-weight: 500; }
.vrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vcard { min-width: 0; }
.vthumb { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden; background: var(--surface-strong); }
.vthumb img { width: 100%; height: 100%; object-fit: cover; }
.vplay { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 9999px; background: rgba(255, 255, 255, 0.92); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.vplay svg { width: 22px; height: 22px; margin-left: 2px; }
.vtitle { font-size: 14px; font-weight: 600; line-height: 1.45; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vregion { font-size: 12px; color: var(--muted); margin-top: 2px; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 40px; border-radius: var(--r-lg); background: var(--surface-soft); }
.cta h2 { font-size: 22px; font-weight: 700; line-height: 1.4; }
.cta p { color: var(--body); margin-top: 8px; max-width: 620px; }
.cta-actions { display: flex; gap: 12px; flex: none; }

.footer { margin-top: 80px; border-top: 1px solid var(--hairline); padding: 48px 0 32px; }
.fcols { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 24px; }
.fcol h4 { font-size: 16px; font-weight: 500; margin-bottom: 14px; }
.fcol li { font-size: 14px; line-height: 2; }
.fcol ul.two { columns: 2; }
.fcol a:hover { text-decoration: underline; }
.office { font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.oname { font-weight: 600; }
.onote { color: var(--muted); }
.office .big { font-size: 22px; font-weight: 600; color: var(--accent); }
.legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--hairline-soft); font-size: 13px; color: var(--muted); }
.social { display: flex; gap: 16px; }
.social a { font-weight: 500; }

@media (max-width: 1180px) {
  :root { --gutter: 24px; }
  .hrow { grid-template-columns: repeat(3, 1fr); }
  .tgrid { grid-template-columns: repeat(3, 1fr); }
  .vrow { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .nav-link { display: none; }
}
@media (max-width: 900px) {
  .ptabs { display: none; }
  .nav-pill span:not(.ic) { display: none; }
  .nav-pill { width: 42px; padding: 0; justify-content: center; }
  .tvhero { grid-template-columns: 1fr; gap: 24px; }
  .cta { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-wrap: wrap; }
  .fcols { grid-template-columns: 1fr 1fr; }
  .fcol.wide { grid-column: 1 / -1; }
}
@media (max-width: 743px) {
  :root { --gutter: 16px; }
  .nav-row { height: 64px; }
  .nav-burger { display: inline-flex; }
  .nav-line { display: none; }
  .wm-zh { display: none; }
  .hero-wrap { padding-top: 12px; }
  .hero { border-radius: var(--r-lg); aspect-ratio: 16 / 10; max-height: none; }
  .hero-btn { display: none; }
  .hero-eyebrow { top: 12px; left: 12px; }
  .dots { left: auto; right: 12px; bottom: 10px; }
  .searchbar { margin: 16px 0 0; height: auto; flex-direction: column; border-radius: var(--r-lg); padding: 6px; gap: 0; width: 100%; }
  .seg { border-right: 0; border-bottom: 1px solid var(--hairline-soft); padding: 12px 14px; border-radius: 0; }
  .seg:last-of-type { border-bottom: 0; }
  .orb { height: 52px; justify-content: center; margin-top: 6px; border-radius: var(--r-md); }
  .cat-strip { margin-top: 20px; }
  .band { padding-top: 48px; }
  .band-head h2 { font-size: 24px; }
  .band-sub { width: 100%; }
  .hrow { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 6px; }
  .hrow::-webkit-scrollbar { display: none; }
  .hcard { flex: 0 0 62%; scroll-snap-align: start; }
  .tgrid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .ttitle { font-size: 15px; }
  .tdesc { display: none; }
  .tfoot { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pillars { grid-template-columns: 1fr; gap: 12px; }
  .about { padding-top: 56px; }
  .about-head h2, .tvcopy h2 { font-size: 24px; }
  .vrow { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vtitle { font-size: 13px; }
  .cta { padding: 24px; }
  .cta h2 { font-size: 20px; }
  .btn { width: 100%; }
  .footer { margin-top: 56px; }
  .fcols { grid-template-columns: 1fr; }
  .legal { flex-direction: column; }
}
