:root {
  --ink: #17130f;
  --muted: #71685f;
  --paper: #fffaf4;
  --surface: #ffffff;
  --line: #e4dacd;
  --gold: #b88435;
  --gold-2: #dfbf79;
  --jade: #0f6b5b;
  --red: #8f2d25;
  --night: #182824;
  --shadow: 0 18px 50px rgba(52, 35, 18, .12);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Microsoft JhengHei", "Noto Sans TC", "PingFang TC", Arial, sans-serif; color: var(--ink); background: #fff; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--ink); color: white; padding: 10px 14px; z-index: 20; }
.skip-link:focus { left: 12px; }
.topbar { display: flex; justify-content: center; gap: 18px; align-items: center; min-height: 38px; background: var(--night); color: #fff6e8; font-size: 14px; }
.topbar a { color: var(--gold-2); font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-shell { max-width: 1180px; margin: 0 auto; min-height: 78px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--red), var(--gold)); color: white; font-weight: 900; }
.brand strong { display: block; font-size: 18px; }
.brand small { display: block; color: var(--muted); margin-top: 2px; }
.site-nav { display: flex; gap: 22px; align-items: center; font-size: 15px; color: #3f342b; }
.site-nav a:hover, .text-link:hover { color: var(--red); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: white; font-size: 20px; }
.hero { min-height: calc(100vh - 116px); max-width: 1180px; margin: 0 auto; padding: 64px 22px 54px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr); gap: 44px; align-items: center; }
.overline { margin: 0 0 14px; color: var(--jade); font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
h1, h2, h3 { margin: 0; line-height: 1.18; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 86px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: 20px; }
p { line-height: 1.78; }
.hero-lead { color: var(--muted); font-size: 19px; max-width: 690px; margin: 20px 0 0; }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 8px; background: var(--ink); color: white; font-weight: 800; border: 1px solid var(--ink); cursor: pointer; }
.button.ghost { background: white; color: var(--ink); border-color: var(--line); }
.button.small { min-height: 36px; padding: 0 12px; font-size: 14px; }
.trust-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 30px; max-width: 690px; }
.trust-strip span { border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: var(--paper); color: #4d4035; font-weight: 700; text-align: center; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.media-note { position: absolute; right: 18px; bottom: 18px; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; box-shadow: var(--shadow); }
.media-note strong { display: block; font-size: 30px; }
.media-note span { color: var(--muted); }
.section { max-width: 1180px; margin: 0 auto; padding: 76px 22px; }
.section-tint { max-width: none; background: #f7f1ea; padding-left: max(22px, calc((100vw - 1180px) / 2 + 22px)); padding-right: max(22px, calc((100vw - 1180px) / 2 + 22px)); }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 28px; }
.intro-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 34px; align-items: start; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.benefit-grid article, .article-card, .contact-card, .process-panel, .detail-aside, .guide-article { border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: var(--surface); box-shadow: 0 10px 30px rgba(52,35,18,.07); }
.benefit-grid strong { color: var(--gold); font-size: 13px; }
.venue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.venue-card { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(52,35,18,.08); display: flex; flex-direction: column; }
.venue-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .25s ease; }
.venue-card:hover img { transform: scale(1.035); }
.venue-content { padding: 18px; display: flex; flex: 1; flex-direction: column; }
.card-meta { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.card-meta strong { margin-left: auto; color: var(--jade); }
.venue-content p { color: var(--muted); margin: 10px 0 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tag-row span { padding: 5px 8px; border-radius: 999px; background: #eef6f3; color: var(--jade); font-size: 12px; font-weight: 700; }
.text-link { color: var(--jade); font-weight: 800; }
.split-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: start; }
.ranking-list { list-style: none; padding: 0; margin: 24px 0 0; border-top: 1px solid var(--line); }
.ranking-list li a { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ranking-list span { color: var(--gold); font-weight: 900; }
.ranking-list em { color: var(--muted); font-style: normal; font-size: 14px; }
.process-panel { background: var(--night); color: white; }
.process-panel h2 { color: white; }
.process-panel ol { padding: 0; margin: 24px 0 0; list-style: none; }
.process-panel li { display: grid; grid-template-columns: 118px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.18); }
.process-panel span { color: #d9d0c4; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-card p { color: var(--muted); }
.cta-band { margin: 18px auto 80px; max-width: 1180px; padding: 42px; border-radius: 8px; background: linear-gradient(135deg, var(--jade), var(--night)); color: white; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-band p { color: #e4eee9; max-width: 560px; }
.page-hero { max-width: 1180px; margin: 0 auto; padding: 72px 22px 36px; }
.page-hero.compact h1 { font-size: clamp(38px, 6vw, 64px); }
.page-hero.compact p:not(.overline) { max-width: 760px; color: var(--muted); font-size: 18px; }
.tools-bar { padding-top: 24px; padding-bottom: 24px; display: grid; grid-template-columns: minmax(260px, 1fr) auto 180px; gap: 16px; align-items: end; }
.search-box, .select-box, .contact-form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; min-height: 44px; padding: 10px 12px; font: inherit; background: white; color: var(--ink); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-buttons button { border: 1px solid var(--line); background: white; border-radius: 8px; min-height: 44px; padding: 0 13px; cursor: pointer; color: var(--ink); }
.filter-buttons button.active { background: var(--jade); border-color: var(--jade); color: white; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
.ranking-table { width: 100%; border-collapse: collapse; background: white; min-width: 760px; }
.ranking-table th, .ranking-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.ranking-table th { background: #f7f1ea; }
.ranking-table td span { display: block; color: var(--muted); margin-top: 6px; }
.guide-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.guide-toc { position: sticky; top: 120px; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.guide-toc h2 { font-size: 20px; margin-bottom: 12px; }
.guide-toc a { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); }
.guide-list { display: grid; gap: 18px; }
.guide-article h2 { font-size: 30px; }
.article-summary { color: var(--jade); font-weight: 700; }
.long-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.long-article-card { border: 1px solid var(--line); border-radius: 8px; background: white; overflow: hidden; box-shadow: 0 10px 30px rgba(52,35,18,.08); display: flex; flex-direction: column; }
.long-article-card > div { padding: 18px; display: grid; gap: 10px; }
.long-article-card p { color: var(--muted); margin: 0 0 8px; }
.long-article-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.topic-card { border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: 0 10px 30px rgba(52,35,18,.07); }
.topic-card a { display: grid; gap: 8px; height: 100%; padding: 20px; }
.topic-card span { color: var(--gold); font-size: 13px; font-weight: 900; }
.topic-card p { color: var(--muted); margin: 0; }
.hub-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; align-items: start; padding-top: 36px; }
.hub-intro-card, .hub-quick-links, .hub-copy section, .sitemap-group { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: white; box-shadow: 0 10px 30px rgba(52,35,18,.06); }
.hub-intro-card h2, .hub-copy h2, .sitemap-group h2 { font-size: clamp(24px, 3vw, 34px); }
.hub-quick-links { position: sticky; top: 120px; display: grid; gap: 12px; }
.hub-quick-links h2 { font-size: 22px; }
.hub-quick-links a { padding: 12px 0; border-top: 1px solid var(--line); color: var(--jade); font-weight: 800; }
.hub-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hub-link-card { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: white; display: grid; gap: 8px; min-height: 150px; box-shadow: 0 10px 30px rgba(52,35,18,.06); }
.hub-link-card strong { color: var(--jade); font-size: 18px; line-height: 1.3; }
.hub-link-card span { color: var(--muted); line-height: 1.65; }
.hub-copy { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.html-sitemap { max-width: 1180px; margin: 0 auto; padding: 36px 22px 80px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.sitemap-group div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; margin-top: 16px; }
.sitemap-group a { color: var(--jade); font-weight: 800; line-height: 1.45; border-top: 1px solid var(--line); padding-top: 10px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--jade); font-weight: 800; }
.seo-hero .hero-actions { margin-top: 22px; }
.topic-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; align-items: start; }
.topic-content { display: grid; gap: 18px; }
.topic-content section, .topic-aside, .trust-content section, .trust-note { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: white; box-shadow: 0 10px 30px rgba(52,35,18,.06); }
.topic-content h2, .trust-content h2 { font-size: clamp(24px, 3vw, 34px); }
.topic-checklist ul { margin: 12px 0 0; padding-left: 20px; line-height: 1.9; }
.question-cluster div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.question-cluster a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: #f7f1ea; color: var(--jade); font-weight: 800; }
.topic-faq details { border-top: 1px solid var(--line); padding: 14px 0; }
.topic-faq summary { cursor: pointer; color: var(--jade); font-weight: 900; }
.topic-aside { position: sticky; top: 120px; display: grid; gap: 12px; }
.topic-aside h2 { font-size: 22px; }
.topic-aside a { padding: 12px 0; border-top: 1px solid var(--line); color: var(--jade); font-weight: 800; }
.faq-hub { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.faq-list, .faq-hub-links { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: white; box-shadow: 0 10px 30px rgba(52,35,18,.06); }
.faq-list details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq-list summary { cursor: pointer; color: var(--jade); font-size: 18px; font-weight: 900; }
.faq-hub-links { position: sticky; top: 120px; display: grid; gap: 16px; }
.faq-hub-links div { display: grid; gap: 10px; }
.faq-hub-links div a { border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: #f7f1ea; }
.faq-hub-links strong, .faq-hub-links span { display: block; }
.faq-hub-links span { color: var(--muted); font-size: 13px; margin-top: 4px; }
.trust-content { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; padding: 76px 22px; }
.trust-note { background: #f7f1ea; }
.article-hero { max-width: 1180px; margin: 0 auto; padding: 56px 22px 34px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 500px); gap: 34px; align-items: center; }
.article-hero h1 { font-size: clamp(36px, 5vw, 66px); }
.article-hero p { color: var(--muted); font-size: 18px; }
.article-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.article-meta-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; color: var(--jade); font-weight: 800; }
.article-meta-line span, .article-meta-line time { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; background: var(--paper); }
.article-update { margin-top: 14px; color: var(--muted); font-size: 14px !important; }
.article-layout { display: grid; grid-template-columns: 280px 1fr; gap: 26px; align-items: start; }
.article-toc { position: sticky; top: 120px; border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: white; box-shadow: 0 10px 30px rgba(52,35,18,.06); }
.article-toc h2 { font-size: 20px; margin-bottom: 10px; }
.article-toc a { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); }
.long-article { display: grid; gap: 22px; font-size: 18px; }
.long-article section { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: white; box-shadow: 0 10px 30px rgba(52,35,18,.06); }
.long-article h2 { font-size: clamp(26px, 3vw, 36px); }
.long-article p { color: #3f342b; }
.pretrip-box { background: #f7f1ea !important; }
.article-faq details { border-top: 1px solid var(--line); padding: 14px 0; }
.article-faq summary { cursor: pointer; font-weight: 900; color: var(--jade); }
.article-keywords { margin-top: 4px; }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.article-topic-links { border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: #f7f1ea; }
.article-topic-links h2 { font-size: 24px; }
.article-topic-links div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.article-topic-links a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: white; color: var(--jade); font-weight: 800; }
.support-cluster div { display: grid; gap: 10px; margin-top: 14px; }
.support-cluster a { border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: #f7f1ea; display: grid; gap: 4px; }
.support-cluster strong { color: var(--jade); }
.support-cluster span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.related-articles { padding-top: 18px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.check-list { padding-left: 18px; line-height: 1.8; }
.contact-methods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.app-button { border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; background: var(--paper); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.app-button:hover { border-color: var(--gold); color: var(--red); }
.contact-icon { width: 24px; height: 24px; border-radius: 7px; display: inline-grid; place-items: center; flex: 0 0 24px; color: white; }
.contact-icon svg { width: 17px; height: 17px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon.telegram { background: #229ed9; }
.contact-icon.whatsapp { background: #25d366; }
.contact-icon.wechat { background: #07c160; }
.contact-form { border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: grid; gap: 16px; background: white; box-shadow: var(--shadow); }
.form-status { margin: 0; color: var(--jade); font-weight: 800; }
.detail-hero { max-width: 1180px; margin: 0 auto; padding: 56px 22px 34px; display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 34px; align-items: center; }
.detail-hero h1 { font-size: clamp(38px, 6vw, 72px); }
.detail-hero p { color: var(--muted); font-size: 18px; }
.detail-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.detail-content { font-size: 17px; }
.detail-content p { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.detail-aside { position: sticky; top: 120px; }
.detail-aside h2 { font-size: 24px; }
.detail-aside dl { display: grid; grid-template-columns: 80px 1fr; gap: 10px; }
.detail-aside dt { color: var(--muted); }
.footer { background: var(--night); color: white; padding: 46px max(22px, calc((100vw - 1180px) / 2 + 22px)); }
.footer p { color: #d9d0c4; max-width: 720px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; margin: 24px 0; color: var(--gold-2); }
.footer-link-groups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 24px 0; }
.footer-link-groups strong { display: block; margin-bottom: 10px; color: white; }
.footer-link-groups div div { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-link-groups a { color: var(--gold-2); font-size: 14px; }
.copyright { font-size: 13px; }
.float-contact-wrap { position: fixed; right: 18px; bottom: 18px; z-index: 8; display: grid; justify-items: end; gap: 10px; }
.float-contact { min-height: 44px; padding: 0 16px; border: 0; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; background: var(--red); color: white; font: inherit; font-weight: 900; box-shadow: var(--shadow); cursor: pointer; }
.float-contact:hover, .float-contact-wrap.open .float-contact { background: var(--night); }
.float-contact .contact-icon { background: rgba(255,255,255,.18); }
.float-contact-menu { width: min(284px, calc(100vw - 36px)); padding: 12px; display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: var(--shadow); }
.float-contact-menu[hidden] { display: none; }
.float-contact-menu strong { padding: 2px 4px 4px; color: var(--muted); font-size: 13px; }
.float-contact-menu .app-button { width: 100%; justify-content: flex-start; background: var(--surface); }
@media (max-width: 980px) {
  .hero, .intro-grid, .split-section, .contact-grid, .detail-hero, .detail-layout, .guide-layout, .article-hero, .article-layout, .topic-layout, .faq-hub, .hub-intro-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .venue-grid, .article-grid, .long-article-grid, .topic-grid, .hub-card-grid, .hub-copy { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tools-bar { grid-template-columns: 1fr; }
  .guide-toc, .detail-aside, .article-toc, .topic-aside, .faq-hub-links, .hub-quick-links { position: static; }
}
@media (max-width: 720px) {
  .topbar { flex-direction: column; gap: 2px; padding: 8px; }
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav { display: none; position: absolute; left: 16px; right: 16px; top: 116px; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; gap: 12px; }
  .hero, .section, .page-hero, .detail-hero, .article-hero { padding-left: 16px; padding-right: 16px; }
  .trust-strip, .benefit-grid, .venue-grid, .article-grid, .long-article-grid, .topic-grid, .hub-card-grid, .hub-copy, .html-sitemap, .sitemap-group div, .footer-link-groups { grid-template-columns: 1fr; }
  .section-head, .cta-band { display: block; }
  .ranking-list li a { grid-template-columns: 38px 1fr; }
  .ranking-list em { grid-column: 2; }
  .float-contact-wrap { left: 18px; right: 18px; justify-items: stretch; }
  .float-contact { justify-content: center; }
  .float-contact-menu { width: 100%; }
}