:root {
  --paper: #faf6ef;
  --paper-deep: #f1e9dc;
  --ink: #1c2b3a;
  --ink-soft: #45586b;
  --vermilion: #c8501f;
  --vermilion-deep: #a83e12;
  --gold: #d9a441;
  --pine: #23554e;
  --line: #ddd2c0;
  --card: #fffdf9;
  --radius: 14px;
  --shadow: 0 10px 30px -18px rgba(28, 43, 58, .45);
  --serif: 'Georgia', 'Times New Roman', 'Songti TC', 'STSong', 'SimSun', serif;
  --sans: -apple-system, 'PingFang TC', 'PingFang SC', 'Microsoft JhengHei', 'Microsoft YaHei', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vermilion-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--vermilion); }

.wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: .5rem 1rem; z-index: 99;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */
.masthead {
  background: var(--ink);
  color: #f4ede1;
  border-bottom: 3px solid var(--gold);
}
.masthead-row {
  display: flex; align-items: center; gap: 1.1rem;
  padding: .65rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; margin-right: auto; }
.brand svg { width: 40px; height: 40px; }
.brand b { font-family: var(--serif); font-size: 1.28rem; letter-spacing: .04em; }
.brand small { display: block; font-size: .68rem; opacity: .75; letter-spacing: .12em; text-transform: uppercase; }

.site-nav { display: flex; gap: 1.15rem; align-items: center; }
.site-nav a { color: #f4ede1; text-decoration: none; font-size: .93rem; opacity: .9; }
.site-nav a:hover { opacity: 1; color: var(--gold); }

.cta-pill {
  background: var(--vermilion); color: #fff !important; opacity: 1 !important;
  padding: .5rem 1.05rem; border-radius: 999px; font-weight: 600;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.18);
  white-space: nowrap;
}
.cta-pill:hover { background: var(--vermilion-deep); }

.lang-switch { position: relative; }
.lang-switch > summary {
  list-style: none; cursor: pointer; font-size: .85rem;
  border: 1px solid rgba(244,237,225,.4); border-radius: 999px; padding: .32rem .8rem;
  display: flex; align-items: center; gap: .35rem;
}
.lang-switch > summary::-webkit-details-marker { display: none; }
.lang-switch[open] > summary { background: rgba(244,237,225,.12); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + .45rem); z-index: 60;
  background: var(--card); color: var(--ink); border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow); min-width: 10.5rem; padding: .35rem;
}
.lang-menu a {
  display: block; padding: .45rem .7rem; border-radius: 7px;
  text-decoration: none; color: var(--ink); font-size: .9rem;
}
.lang-menu a:hover { background: var(--paper-deep); }
.lang-menu a[aria-current="true"] { font-weight: 700; color: var(--vermilion-deep); }

.nav-toggle { display: none; }
.nav-burger { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #21374b 0%, var(--ink) 55%, #16222e 100%);
  color: #f6f0e4;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 14px;
  background: radial-gradient(circle at 8px -4px, transparent 9px, var(--paper) 10px);
  background-size: 24px 14px;
}
.hero-grid {
  display: grid; gap: 2.2rem; padding: 3.2rem 0 3.6rem;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(1.9rem, 4.2vw, 3.05rem);
  line-height: 1.18; margin: .4rem 0 1rem;
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.hero p.lead { font-size: 1.06rem; max-width: 34em; color: #dfd5c2; margin: 0 0 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn {
  display: inline-block; padding: .78rem 1.5rem; border-radius: 10px;
  font-weight: 700; text-decoration: none; font-size: 1rem; line-height: 1.2;
}
.btn-fire { background: var(--vermilion); color: #fff; box-shadow: 0 6px 18px -8px rgba(200,80,31,.8); }
.btn-fire:hover { background: var(--vermilion-deep); color: #fff; }
.btn-ghost { border: 1.5px solid rgba(246,240,228,.55); color: #f6f0e4; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #2c445c; color: #fff; }

/* home hero without the booking panel: single column, CTA-led */
.hero--wide { position: relative; }
.hero-solo {
  position: relative; z-index: 2;
  padding: 4.4rem 0 4.6rem;
  max-width: 46rem;
}
.hero-solo h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; margin: .5rem 0 1.1rem; }
.hero-solo .lead { font-size: clamp(1rem, 1.6vw, 1.16rem); color: #ded4c1; margin: 0 0 2rem; }
.btn-lg { padding: .95rem 2rem; font-size: 1.06rem; }

.proof-row {
  display: flex; flex-wrap: wrap; gap: 0; list-style: none;
  margin: 2.6rem 0 0; padding: 1.1rem 0 0;
  border-top: 1px solid rgba(246,240,228,.22);
}
.proof-row li {
  display: flex; flex-direction: column; gap: .1rem;
  padding-right: 2.1rem; margin-right: 2.1rem;
  border-right: 1px solid rgba(246,240,228,.18);
}
.proof-row li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.proof-row b { font-family: var(--serif); font-size: 1.32rem; color: var(--gold); line-height: 1.2; }
.proof-row span { font-size: .78rem; color: #cec3ad; letter-spacing: .04em; }

@media (max-width: 720px) {
  .hero-solo { padding: 3rem 0 3.4rem; }
  .proof-row { gap: .9rem 0; margin-top: 2rem; }
  .proof-row li { width: 50%; padding-right: 1rem; margin-right: 0; border-right: 0; }
  .btn-lg { padding: .85rem 1.5rem; font-size: 1rem; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
}

.hero-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.hero-chips li {
  font-size: .8rem; border: 1px solid rgba(246,240,228,.35);
  border-radius: 999px; padding: .22rem .75rem; color: #e8dfcd;
}

.book-panel {
  background: var(--card); color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem 1.2rem; position: relative;
}
.book-panel::before {
  content: ''; position: absolute; top: 0; left: 1.2rem; right: 1.2rem; height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 22px);
  border-radius: 0 0 4px 4px;
}
.book-panel h2, .book-panel .panel-title {
  font-family: var(--serif); font-size: 1.05rem; margin: .4rem 0 .7rem;
}
.gyg-slot span { font-size: .78rem; color: var(--ink-soft); }
.gyg-slot a { color: var(--ink-soft); }
.book-panel > .gyg-slot { max-height: 27rem; overflow-y: auto; overscroll-behavior: contain; }
.book-panel > .gyg-slot iframe { width: 100% !important; }

/* disclaimer chip */
.notabene { position: relative; display: inline-block; margin-top: 1.1rem; }
.notabene > button, .notabene > .nb-tag {
  font-size: .72rem; letter-spacing: .05em; cursor: help;
  color: #cabfa9; background: none; border: 1px dashed rgba(202,191,169,.6);
  border-radius: 999px; padding: .18rem .7rem; font-family: inherit;
}
.notabene .nb-pop {
  visibility: hidden; opacity: 0; transition: opacity .15s ease;
  position: absolute; bottom: calc(100% + .55rem); left: 0; z-index: 70;
  width: min(21rem, 78vw); background: #fffef9; color: var(--ink);
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 10px; padding: .7rem .85rem; font-size: .8rem; line-height: 1.5;
  box-shadow: var(--shadow);
}
.notabene:hover .nb-pop, .notabene:focus-within .nb-pop { visibility: visible; opacity: 1; }
.notabene--light > .nb-tag { color: var(--ink-soft); border-color: var(--line); }

/* ---------- sections ---------- */
.zone { padding: 3.4rem 0 1rem; }
.zone-head { max-width: 44em; margin-bottom: 1.8rem; }
.zone-head h2 {
  font-family: var(--serif); font-size: clamp(1.45rem, 3vw, 2.05rem);
  margin: 0 0 .45rem; line-height: 1.25;
}
.zone-head h2::after {
  content: ''; display: block; width: 64px; height: 3px; margin-top: .55rem;
  background: linear-gradient(90deg, var(--vermilion), var(--gold));
  border-radius: 2px;
}
.zone-head p { color: var(--ink-soft); margin: 0; }

/* widget band */
.widget-band { background: var(--paper-deep); border-block: 1px solid var(--line); padding: 2rem 0 2.4rem; margin-top: 2.5rem; }
.widget-band .band-note { font-size: .8rem; color: var(--ink-soft); margin: 0 0 1rem; }

/* country cards */
.country-flock { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: .9rem; }
.stamp {
  position: relative; display: flex; flex-direction: column; gap: .15rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: .95rem 1rem .85rem; text-decoration: none; color: var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
  background-image: radial-gradient(circle, var(--line) 1.1px, transparent 1.3px);
  background-size: 11px 11px; background-position: -3px -3px;
}
.stamp:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.stamp b { font-size: 1.02rem; }
.stamp i { font-style: normal; font-size: .78rem; color: var(--ink-soft); }
.stamp em { position: absolute; top: .6rem; right: .7rem; font-style: normal; font-size: .72rem; color: var(--vermilion-deep); font-weight: 700; }

/* attraction cards */
.guide-deck { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.15rem; }
.tix {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.tix:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--ink); }
.tix figure { margin: 0; aspect-ratio: 3 / 2; background: var(--paper-deep); overflow: hidden; }
.tix figure img { width: 100%; height: 100%; object-fit: cover; }
.tix-stub {
  margin: 0; aspect-ratio: 3 / 2; display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.09) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--pine), #17405c 65%, var(--ink));
  color: #f0e6d2;
}
.tix-stub span {
  font-family: var(--serif); font-size: 1.9rem; letter-spacing: .18em;
  border: 1px solid rgba(240,230,210,.4); border-radius: 50%;
  width: 3.4rem; height: 3.4rem; display: grid; place-items: center;
  text-indent: .18em;
}
.tix-body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.tix-body .whereat { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--pine); font-weight: 700; }
.tix-body h3 { margin: 0; font-size: 1.06rem; font-family: var(--serif); line-height: 1.35; }
.tix-body .go { margin-top: auto; padding-top: .5rem; font-size: .85rem; font-weight: 700; color: var(--vermilion-deep); }

/* ---------- article / guide pages ---------- */
.page-hero { background: linear-gradient(160deg, #21374b, var(--ink)); color: #f6f0e4; position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 14px;
  background: radial-gradient(circle at 8px -4px, transparent 9px, var(--paper) 10px);
  background-size: 24px 14px;
}
.page-hero .hero-grid { padding: 2.4rem 0 3rem; }
.page-hero > .wrap { position: relative; z-index: 2; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo picture, .hero-photo img { width: 100%; height: 100%; }
.hero-photo img { object-fit: cover; object-position: center 40%; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,32,44,.94) 0%, rgba(20,32,44,.86) 42%, rgba(20,32,44,.55) 100%);
}
@media (max-width: 900px) {
  .hero-photo::after { background: linear-gradient(180deg, rgba(20,32,44,.86) 0%, rgba(20,32,44,.93) 60%); }
}
.crumbs { font-size: .8rem; margin: 1.1rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; color: #b9ac93; }
.crumbs a { color: #d8ccb2; text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs li + li::before { content: '›'; margin-right: .35rem; }

.guide-cols { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 2.6rem; padding: 2.6rem 0 3rem; align-items: start; }
.guide-rail { position: sticky; top: 1.2rem; display: flex; flex-direction: column; gap: 1.2rem; }

article.guide { font-size: 1.02rem; }
article.guide h2 { font-family: var(--serif); font-size: 1.55rem; line-height: 1.3; margin: 2.2rem 0 .8rem; }
article.guide h2::after {
  content: ''; display: block; width: 52px; height: 3px; margin-top: .5rem;
  background: linear-gradient(90deg, var(--vermilion), var(--gold)); border-radius: 2px;
}
article.guide h3 { font-size: 1.12rem; margin: 1.5rem 0 .5rem; }
article.guide p { margin: 0 0 1rem; }
article.guide ul, article.guide ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
article.guide li { margin-bottom: .35rem; }
article.guide .lede { font-size: 1.12rem; color: var(--ink-soft); }

.fact-sheet { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: .95rem; background: var(--card); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.fact-sheet th, .fact-sheet td { text-align: left; padding: .6rem .85rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.fact-sheet tr:last-child th, .fact-sheet tr:last-child td { border-bottom: 0; }
.fact-sheet th { width: 34%; background: var(--paper-deep); font-weight: 600; }

.compare-scroll { overflow-x: auto; margin: 1.2rem 0 1.6rem; }
.compare { width: 100%; min-width: 560px; border-collapse: collapse; font-size: .92rem; background: var(--card); border: 1px solid var(--line); }
.compare th, .compare td { padding: .6rem .8rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare thead th { background: var(--ink); color: #f4ede1; font-weight: 600; }
.compare tbody tr:nth-child(even) { background: #f7f1e6; }

.tip-note {
  background: #fdf4e3; border: 1px solid #ecd9ad; border-left: 4px solid var(--gold);
  border-radius: 10px; padding: .85rem 1rem; margin: 1.2rem 0; font-size: .95rem;
}
.tip-note b:first-child { color: var(--vermilion-deep); }

.faq-list { margin: 1rem 0 0; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: .85rem 1.05rem; margin-bottom: .6rem;
}
.faq-list summary { cursor: pointer; font-weight: 700; font-size: .98rem; }
.faq-list summary::marker { color: var(--vermilion); }
.faq-list details p { margin: .6rem 0 0; font-size: .95rem; }

.rail-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.05rem 1.15rem; }
.rail-card h2 { font-family: var(--serif); font-size: 1.02rem; margin: 0 0 .6rem; }
.rail-card ul { list-style: none; margin: 0; padding: 0; }
.rail-card li { border-bottom: 1px dashed var(--line); }
.rail-card li:last-child { border-bottom: 0; }
.rail-card li a { display: block; padding: .5rem 0; text-decoration: none; color: var(--ink); font-size: .92rem; }
.rail-card li a:hover { color: var(--vermilion-deep); }
.rail-card li a small { display: block; color: var(--ink-soft); font-size: .76rem; }

.src-note { font-size: .8rem; color: var(--ink-soft); border-top: 1px dashed var(--line); margin-top: 2rem; padding-top: .8rem; }

.toc-card ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.toc-card li { counter-increment: toc; border-bottom: 1px dashed var(--line); }
.toc-card li:last-child { border-bottom: 0; }
.toc-card a { display: flex; gap: .55rem; padding: .45rem 0; text-decoration: none; color: var(--ink); font-size: .9rem; }
.toc-card a::before { content: counter(toc); color: var(--vermilion); font-weight: 700; min-width: 1.1rem; }
.toc-card a:hover { color: var(--vermilion-deep); }

.thumb-cta { display: none; }
@media (max-width: 720px) {
  .thumb-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: flex; gap: .6rem; align-items: center;
    padding: .55rem .9rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(252,249,243,.97); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px -14px rgba(28,43,58,.7);
  }
  .thumb-cta span { font-size: .82rem; color: var(--ink-soft); line-height: 1.3; flex: 1; }
  .thumb-cta a { flex: 0 0 auto; padding: .6rem 1.1rem; font-size: .92rem; }
  body { padding-bottom: 4.2rem; }
}

/* ---------- footer ---------- */
.site-end { background: var(--ink); color: #cdc2ac; margin-top: 3.5rem; font-size: .9rem; }
.end-grid { display: grid; grid-template-columns: 4fr 3fr 3fr 2fr; gap: 2rem; padding: 2.6rem 0 1.6rem; }
.end-grid h2 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 .8rem; }
.end-grid ul { list-style: none; margin: 0; padding: 0; }
.end-grid li { margin-bottom: .4rem; }
.end-grid a { color: #e6dcc6; text-decoration: none; }
.end-grid a:hover { color: var(--gold); }
.end-note { border-top: 1px solid rgba(230,220,198,.18); padding: 1.1rem 0 1.5rem; font-size: .78rem; line-height: 1.6; color: #a89c85; }
.end-note p { margin: 0 0 .5rem; }

/* ---------- trust pages ---------- */
.plain-sheet { max-width: 46em; padding: 2.8rem 0 2rem; }
.plain-sheet h1 { font-family: var(--serif); font-size: 2rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .guide-cols { grid-template-columns: 1fr; }
  .guide-rail { position: static; }
  .end-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-nav {
    display: none;
  }
  .nav-toggle:checked ~ .site-nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 80;
    background: var(--ink); padding: 1rem 1.25rem 1.3rem; gap: .9rem;
    border-bottom: 3px solid var(--gold);
  }
  .masthead-row { position: relative; flex-wrap: nowrap; gap: .6rem; }
  .brand small { display: none; }
  .brand b { font-size: 1.08rem; }
  .brand svg { width: 34px; height: 34px; }
  .cta-pill { padding: .42rem .85rem; font-size: .85rem; }
  .nav-burger {
    display: inline-flex; flex-direction: column; gap: 5px; cursor: pointer;
    padding: .45rem .2rem; order: 5;
  }
  .nav-burger span { width: 22px; height: 2px; background: #f4ede1; border-radius: 2px; }
  .hero-grid { padding: 2.3rem 0 3rem; }
  .zone { padding: 2.5rem 0 .6rem; }
  .end-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

.idx-grid { columns: 3 260px; column-gap: 2.2rem; }
.idx-block { break-inside: avoid; margin: 0 0 1.7rem; }
.idx-block h3 {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: var(--serif); font-size: 1.12rem; margin: 0 0 .5rem;
  padding-bottom: .35rem; border-bottom: 2px solid var(--gold);
}
.idx-block h3 a { text-decoration: none; color: var(--ink); }
.idx-block h3 a:hover { color: var(--vermilion-deep); }
.idx-block h3 em { font-style: normal; font-size: .78rem; color: var(--ink-soft); margin-left: auto; }
.idx-block ul { list-style: none; margin: 0; padding: 0; }
.idx-block li a {
  display: flex; align-items: baseline; gap: .5rem; justify-content: space-between;
  padding: .3rem 0; text-decoration: none; color: var(--ink); font-size: .93rem;
}
.idx-block li a small { color: var(--ink-soft); font-size: .76rem; white-space: nowrap; }
.idx-block li a:hover { color: var(--vermilion-deep); }
