:root {
  --ink: #101512;
  --deep: #0b1713;
  --forest: #1b4d3b;
  --gold: #d7ae5c;
  --gold-light: #f0d99f;
  --paper: #ffffff;
  --mist: #f4f6f3;
  --line: #dfe4df;
  --muted: #67706a;
  --coral: #b85d48;
  --header-height: 76px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.content-width { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.section { padding: 110px 0; scroll-margin-top: var(--header-height); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 10px 16px; background: white; color: black; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.97); color: var(--ink); box-shadow: 0 8px 28px rgba(9,20,15,.08); border-color: transparent; }
.header-inner { width: min(calc(100% - 48px), 1360px); height: 100%; margin: auto; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.is-scrolled .brand-mark { color: var(--forest); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 18px; font-weight: 650; }
.brand-copy small { margin-top: 6px; font-size: 8px; color: var(--gold-light); }
.is-scrolled .brand-copy small { color: var(--muted); }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.main-nav a { position: relative; padding: 26px 0 24px; font-size: 14px; }
.main-nav a::after { content: ""; position: absolute; inset: auto 0 16px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: #dfa94d; }
.header-cta { border: 1px solid rgba(255,255,255,.6); background: transparent; color: inherit; height: 40px; padding: 0 20px; border-radius: 2px; }
.is-scrolled .header-cta { border-color: var(--forest); color: var(--forest); }
.header-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.header-phone { display: none; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; height: clamp(590px, calc(100svh - 100px), 740px); min-height: 590px; color: white; overflow: hidden; background: var(--deep); }
.hero-slides, .hero-slide, .hero-shade { position: absolute; inset: 0; }
.hero-slide { background-position: center 44%; background-size: cover; opacity: 0; transform: scale(1.03); transition: opacity .8s ease, transform 5s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { background: rgba(4,13,10,.44); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 50px; padding-bottom: 118px; }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.eyebrow.dark { color: var(--forest); }
.hero h1 { margin: 0; font-family: STSong, SimSun, serif; font-size: clamp(54px, 6vw, 92px); font-weight: 500; line-height: 1.08; letter-spacing: 0; }
.hero-lead { width: min(610px, 100%); margin: 22px 0 34px; font-size: 19px; line-height: 1.85; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 14px; }
.button { min-height: 48px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid transparent; border-radius: 2px; font-size: 14px; font-weight: 600; transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--deep); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.7); color: white; }
.button-ghost:hover { background: white; color: var(--deep); }
.button-dark { width: 100%; background: var(--deep); color: white; }
.button-light { background: white; color: var(--deep); }
.hero-pager { position: absolute; z-index: 3; right: max(24px, calc((100vw - var(--max-width)) / 2)); top: 48%; display: flex; flex-direction: column; gap: 12px; }
.hero-pager button { width: 22px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.5); transition: width .2s ease, background-color .2s ease; }
.hero-pager button.is-active { width: 42px; background: var(--gold-light); }
.hero-facts { position: absolute; z-index: 3; inset: auto 0 0; min-height: 92px; padding-inline: max(24px, calc((100vw - var(--max-width)) / 2)); background: rgba(6,18,13,.82); display: grid; grid-template-columns: repeat(4, 1fr); backdrop-filter: blur(6px); }
.hero-facts div { padding: 19px 30px; border-left: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; justify-content: center; }
.hero-facts div:last-child { border-right: 1px solid rgba(255,255,255,.16); }
.hero-facts strong { color: var(--gold-light); font-family: STSong, SimSun, serif; font-size: 21px; font-weight: 600; }
.hero-facts span { font-size: 12px; color: rgba(255,255,255,.72); }
.mobile-hero-content, .mobile-hero-detail, .mobile-custom-card, .mobile-route-heading, .news-heading { display: none; }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 46px; }
.section-heading h2, .customize h2, .about h2, .contact-band h2 { margin: 0; font-family: STSong, SimSun, serif; font-size: clamp(34px, 3.4vw, 50px); font-weight: 500; line-height: 1.32; }
.section-heading > p { margin: 0 0 4px; max-width: 480px; color: var(--muted); font-size: 15px; line-height: 1.9; }
.route-filters { display: flex; gap: 8px; margin-bottom: 26px; overflow-x: auto; scrollbar-width: none; }
.route-filters::-webkit-scrollbar { display: none; }
.route-filters button { flex: 0 0 auto; min-width: 72px; height: 38px; padding: 0 18px; border: 1px solid var(--line); border-radius: 2px; color: #4f5852; background: white; }
.route-filters button:hover, .route-filters button.is-active { border-color: var(--deep); background: var(--deep); color: white; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
.route-card { min-width: 0; border: 0; background: white; cursor: pointer; color: inherit; text-decoration: none; }
a.route-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.route-card.is-hidden { display: none; }
.route-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.route-price { color: #121821; font-size: 16px; font-weight: 700; }
.route-price.has-price { color: #ea580c; }
.route-price b { font-size: 20px; font-weight: 700; }
.route-price small { margin-left: 4px; color: #9a9da4; font-size: 12px; font-weight: 500; }
.route-signup { color: #9a9da4; font-size: 12px; }
.route-image { position: relative; aspect-ratio: 1.72 / 1; overflow: hidden; border-radius: 10px; background: #dfe5df; }
.route-image img { width: 100%; height: 100%; object-fit: cover; }
.route-image::after { content: ""; position: absolute; inset: auto 0 0; height: 72px; background: linear-gradient(180deg, rgba(2,11,28,0), rgba(2,11,28,.72)); }
.route-place,
.route-days { position: absolute; z-index: 1; bottom: 10px; padding: 4px 10px; border-radius: 20px; color: white; background: rgba(0,0,0,.42); font-size: 12px; line-height: 1.2; }
.route-place { left: 10px; padding-left: 24px; background-image: url('/static/local.svg'); background-repeat: no-repeat; background-size: 12px; background-position: 8px center; }
.route-days { right: 10px; }
.route-info { padding: 10px 0 0; }
.route-info h3 { display: flex; align-items: center; min-width: 0; min-height: 0; margin: 0; color: #1b2332; font-size: 16px; font-weight: 650; line-height: 1.4; }
.route-info h3 span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.route-level { flex: 0 0 auto; width: 52px; height: 20px; margin-right: 6px; background: no-repeat center / contain; }
.route-level.level-1 { background-image: url('/static/level_1.svg'); }
.route-level.level-2 { width: 63px; background-image: url('/static/level_2.svg'); }
.route-level.level-3 { background-image: url('/static/level_3.svg'); }
.route-level.level-4 { background-image: url('/static/level_4.svg'); }
.route-level.level-5 { background-image: url('/static/level_5.svg'); }
.route-info > p { margin: 6px 0 0; overflow: hidden; color: #676767; font-size: 13px; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.route-tags { display: flex; flex-wrap: nowrap; gap: 6px; margin-top: 8px; overflow: hidden; }
.route-tags span { flex: 0 0 auto; padding: 0 8px; border: 1px solid #047857; border-radius: 6px; color: #047857; background: #d1fae5; font-size: 11px; line-height: 22px; white-space: nowrap; }
.route-tags span:nth-child(even) { border-color: #ff9900; color: #ff9900; background: rgba(255,153,0,.05); }
.route-more-wrap { display: none; }
.route-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid #d8dce2;
  border-radius: 999px;
  background: #fff;
  color: #1b2332;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.route-more-btn:hover { border-color: #c5cad1; background: #f7f8fa; }
.route-more-btn:active { background: #eef0f3; }
.route-more-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.news { background: #fff; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-width: 0;
  padding: 12px 14px;
  background: #fff;
}
.news-item + .news-item { border-top: 1px solid #f0f0f0; }
.news-item[href] { cursor: pointer; }
.news-item[href]:focus-visible { position: relative; z-index: 1; outline: 2px solid var(--gold); outline-offset: -2px; }
.news-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  overflow: hidden;
  background: #e8ece8;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb.is-empty {
  background:
    linear-gradient(135deg, transparent 45%, rgba(255,255,255,.42) 45% 55%, transparent 55%),
    #e8ece8;
}
.news-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1px 0 2px;
}
.news-body h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-body time { color: #999; font-size: 12px; line-height: 1.2; }
.news-list.is-loading { opacity: .62; }
.news-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.news-status.is-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 22px 0 0;
  overflow: visible;
  clip: auto;
  color: #8b8f95;
  text-align: center;
  white-space: normal;
  font-size: 14px;
}
.news-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #9b9da1;
  background: #fff;
  font-size: 14px;
}
.news-pagination {
  margin-top: 38px;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  background: #f7f7f7;
  scrollbar-width: none;
}
.news-pagination[hidden] { display: none; }
.news-pagination::-webkit-scrollbar { display: none; }
.news-pagination button,
.news-page-ellipsis {
  flex: 0 0 auto;
  min-width: 44px;
  height: 44px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  color: #3d4147;
  background: #fff;
  font-size: 15px;
  line-height: 1;
}
.news-pagination button {
  padding: 0 12px;
  border: 1px solid #e1e3e6;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.news-pagination button:hover:not(:disabled):not(.is-active) { border-color: #aeb2b7; }
.news-pagination button:focus-visible { outline: 2px solid #d8aa42; outline-offset: 2px; }
.news-pagination button.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.news-pagination button:disabled { cursor: not-allowed; opacity: .4; }
.news-pagination .news-page-direction { min-width: 82px; }
.news-page-ellipsis {
  border: 1px solid #ddd;
  background: #fff;
}

.customize { padding: 0; display: grid; grid-template-columns: minmax(360px, .88fr) minmax(560px, 1.12fr); background: var(--deep); color: white; }
.customize-media { min-height: 760px; background-image: url('https://files.beihuantu.cn/1785399370425.jpg'); background-size: cover; background-position: center; }
.customize-content { width: min(100%, 760px); padding: 90px 7vw 86px; }
.customize-intro { margin: 20px 0 34px; color: rgba(255,255,255,.72); line-height: 1.9; }
.consult-form { display: flex; flex-direction: column; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consult-form label, .consult-dialog label { display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,.72); font-size: 12px; }
.consult-form input, .consult-form select, .consult-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.24); border-radius: 2px; outline: 0; background: rgba(255,255,255,.06); color: white; }
.consult-form input, .consult-form select { height: 48px; padding: 0 14px; }
.consult-form textarea { padding: 12px 14px; resize: vertical; }
.consult-form input::placeholder, .consult-form textarea::placeholder { color: rgba(255,255,255,.42); }
.consult-form select option { color: var(--ink); }
.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus { border-color: var(--gold); }
.form-submit-row { margin-top: 5px; display: flex; align-items: center; gap: 20px; }
.form-submit-row p { margin: 0; color: rgba(255,255,255,.54); font-size: 12px; }
.form-submit-row p.is-error { color: #ffb3a5; }
.form-submit-row p.is-success { color: #bce7cc; }

.service { background: var(--mist); }
.service-heading { margin-bottom: 62px; }
.service-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfd7d0; border-bottom: 1px solid #cfd7d0; }
.service-list article { min-height: 245px; padding: 34px 28px; border-right: 1px solid #cfd7d0; }
.service-list article:last-child { border-right: 0; }
.service-list span { color: var(--coral); font-family: Georgia, serif; font-size: 14px; }
.service-list h3 { margin: 44px 0 12px; font-family: STSong, SimSun, serif; font-size: 24px; font-weight: 500; }
.service-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }

.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 2; }
.about-signature { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 20px; }
.about-signature strong { font-family: STKaiti, KaiTi, serif; color: var(--forest); font-size: 23px; }
.about-signature span { color: var(--muted); font-size: 12px; }
.about-gallery { position: relative; height: 590px; }
.about-main { position: absolute; inset: 0 80px 46px 0; width: calc(100% - 80px); height: calc(100% - 46px); object-fit: cover; }
.about-small { position: absolute; right: 0; bottom: 0; width: 42%; height: 40%; object-fit: cover; border: 8px solid white; }
.about-note { position: absolute; left: -42px; bottom: 12px; width: 220px; padding: 18px; background: var(--forest); color: white; border-radius: 4px; }
.about-note strong, .about-note span { display: block; }
.about-note strong { font-family: STSong, SimSun, serif; font-size: 18px; }
.about-note span { margin-top: 5px; color: rgba(255,255,255,.7); font-size: 11px; }

.contact-band { padding: 68px 0; color: white; background: var(--forest); }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-band h2 { font-size: clamp(30px, 3vw, 44px); }
.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(32px, calc((100% - 1180px) / 2)) 28px;
  color: #999;
  background: #f2f2f2;
  text-align: left;
  font-size: 13px;
  line-height: 1.9;
}
.footer-copy { min-width: 0; }
.footer-copy p,
.footer-apps p { margin: 0; }
.footer-icp { margin-top: 6px; }
.footer-icp a:hover { color: #666; }
.footer-side {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-apps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  line-height: 1.55;
  white-space: nowrap;
}
.back-to-top {
  position: absolute;
  right: 48px;
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #555;
  color: #fff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: background-color .2s ease;
}
.back-to-top:hover { background: #3f3f3f; }
.back-to-top:focus-visible { outline: 2px solid #dfa94d; outline-offset: 3px; }
.back-to-top svg { width: 22px; height: 22px; }
.floating-consult { display: none; position: fixed; z-index: 50; right: 22px; bottom: 24px; width: 64px; height: 64px; padding: 8px; border: 0; border-radius: 50%; background: var(--gold); color: var(--deep); box-shadow: 0 10px 28px rgba(5,16,11,.24); flex-direction: column; align-items: center; justify-content: center; }
.floating-consult span { line-height: 1; font-size: 17px; }
.floating-consult b { font-size: 10px; }

.dialog-backdrop { position: fixed; z-index: 300; inset: 0; padding: 24px; background: rgba(2,8,5,.68); align-items: center; justify-content: center; }
.dialog-backdrop:not([hidden]) { display: flex; }
.consult-dialog { position: relative; width: min(100%, 510px); max-height: calc(100svh - 48px); overflow-y: auto; padding: 42px; border-radius: 6px; background: white; color: var(--ink); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.consult-dialog h2 { margin: 0 0 8px; font-family: STSong, SimSun, serif; font-size: 31px; font-weight: 500; }
.consult-dialog > p:not(.eyebrow) { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.dialog-close { position: absolute; right: 16px; top: 14px; width: 36px; height: 36px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 28px; line-height: 1; }
.consult-dialog form { display: flex; flex-direction: column; gap: 14px; }
.consult-dialog label { color: #59615c; }
.consult-dialog input, .consult-dialog select { height: 46px; padding: 0 12px; border: 1px solid var(--line); border-radius: 2px; outline: 0; color: var(--ink); background: white; }
.consult-dialog input:focus, .consult-dialog select:focus { border-color: var(--forest); }
.dialog-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dialog-message { min-height: 20px; margin: 0; text-align: center; color: var(--muted); font-size: 12px; }
.dialog-message.is-error { color: #a64132; }
.dialog-message.is-success { color: var(--forest); }

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .content-width, .header-inner { width: min(calc(100% - 36px), var(--max-width)); }
  .main-nav { gap: 20px; }
  .header-cta { display: none; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .customize { grid-template-columns: .7fr 1.3fr; }
  .customize-content { padding: 72px 5vw; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-list article:nth-child(2) { border-right: 0; }
  .service-list article:nth-child(-n+2) { border-bottom: 1px solid #cfd7d0; }
  .about-grid { gap: 46px; }
  .about-gallery { height: 500px; }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; }
  .content-width, .header-inner { width: min(calc(100% - 32px), var(--max-width)); }
  .section { padding: 72px 0; }
  .site-header { background: rgba(7,17,13,.35); }
  .site-header.is-menu-open { background: white; color: var(--ink); }
  .site-header.is-menu-open .brand-mark { color: var(--forest); }
  .site-header.is-menu-open .brand-copy small { color: var(--muted); }
  .brand-mark { width: 34px; height: 34px; font-size: 22px; }
  .brand-copy strong { font-size: 16px; }
  .menu-toggle { display: block; margin-left: auto; color: inherit; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; max-height: 0; overflow: hidden; background: white; color: var(--ink); display: flex; flex-direction: column; align-items: stretch; gap: 0; transition: max-height .3s ease; }
  .main-nav.is-open { max-height: 390px; border-top: 1px solid var(--line); box-shadow: 0 16px 28px rgba(8,20,14,.1); }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .hero { height: clamp(540px, calc(100svh - 70px), 680px); min-height: 540px; }
  .hero-slide { background-position: 52% center; }
  .hero-content { justify-content: flex-end; padding-top: 100px; padding-bottom: 132px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { margin: 16px 0 24px; font-size: 15px; line-height: 1.75; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; padding-inline: 10px; gap: 8px; font-size: 12px; white-space: nowrap; }
  .hero-pager { right: 16px; top: 38%; }
  .hero-facts { min-height: 102px; padding-inline: 0; grid-template-columns: repeat(4, 1fr); }
  .hero-facts div { padding: 14px 4px; text-align: center; align-items: center; border-left: 0; border-right: 1px solid rgba(255,255,255,.14); }
  .hero-facts strong { font-size: 15px; }
  .hero-facts span { margin-top: 4px; max-width: 74px; font-size: 9px; line-height: 1.45; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 16px; }
  .section-heading h2, .customize h2, .about h2 { font-size: 32px; }
  .route-grid { grid-template-columns: 1fr; gap: 18px; }
  .route-card { display: grid; grid-template-columns: 42% 58%; }
  .route-image { aspect-ratio: auto; min-height: 220px; }
  .route-info { min-width: 0; padding: 16px 14px 14px; }
  .route-kicker { margin-bottom: 7px; font-size: 8px; }
  .route-info h3 { min-height: 0; margin-bottom: 7px; font-size: 15px; }
  .route-info > p:not(.route-kicker) { min-height: 0; margin-bottom: 12px; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 11px; }
  .route-bottom { align-items: flex-end; }
  .route-bottom span { white-space: normal; line-height: 1.2; }
  .route-bottom b { display: block; font-size: 17px; }
  .route-link { font-size: 11px; }
  .customize { display: block; }
  .customize-media { min-height: 280px; background-position: center 45%; }
  .customize-content { width: 100%; padding: 58px 16px 64px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article, .service-list article:nth-child(2) { min-height: 0; padding: 26px 12px; border-right: 0; border-bottom: 1px solid #cfd7d0; }
  .service-list article:last-child { border-bottom: 0; }
  .service-list h3 { margin: 20px 0 8px; }
  .about-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-gallery { height: 430px; order: -1; }
  .about-main { inset: 0 40px 40px 0; width: calc(100% - 40px); height: calc(100% - 40px); }
  .about-small { width: 45%; height: 34%; border-width: 5px; }
  .about-note { left: -6px; bottom: 0; width: 190px; }
  .contact-band { padding: 54px 0; }
  .contact-inner { align-items: flex-start; flex-direction: column; }
  .contact-band h2 { font-size: 30px; }
  .site-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 6px 20px; text-align: left; font-size: 11px; line-height: 1.8; }
  .footer-icp { margin-top: 12px; }
  .footer-copy { flex: 1; }
  .footer-side { display: flex; max-width: 48%; }
  .footer-apps { margin-top: 0; text-align: right; white-space: normal; }
  .back-to-top { position: absolute; right: 6px; top: 50%; width: 34px; height: 34px; border-radius: 6px; transform: translateY(-50%); }
  .back-to-top svg { width: 18px; height: 18px; }
  .floating-consult { display: none; }
  .consult-dialog { padding: 36px 20px 24px; }
}

@media (max-width: 430px) {
  .route-card { grid-template-columns: 40% 60%; }
  .route-place { left: 8px; bottom: 8px; padding: 4px 6px; font-size: 9px; }
  .route-badge { left: 8px; top: 8px; }
  .dialog-form-row { grid-template-columns: 1fr; }
}

/* H5 homepage follows the supplied 337px artboard while scaling fluidly up to tablets. */
@media (max-width: 760px) {
  :root { --header-height: 46px; }
  body { background: #fff; }
  .content-width, .header-inner { width: 100%; }
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 46px;
    background: #fff;
    color: #080d14;
    border: 0;
    box-shadow: none;
  }
  .header-inner { padding: 0 13px; gap: 0; }
  .brand { gap: 9px; }
  .brand-mark { width: 25px; height: 25px; }
  .brand-copy { line-height: 1; }
  .brand-copy strong { font-size: 13px; font-weight: 700; }
  .brand-copy small { display: none; }
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    color: #080d14;
    font-size: 12px;
    line-height: 1;
  }
  .header-phone span { color: #d1aa2f; font-size: 14px; font-weight: 700; }
  .menu-toggle { width: 32px; height: 32px; margin: 0 0 0 7px; padding: 6px 4px; color: #080d14; }
  .menu-toggle span { width: 20px; height: 2px; margin: 4px 0; border-radius: 2px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { inset: 46px 0 auto; }
  .main-nav a { padding: 13px 18px; font-size: 13px; }

  .hero {
    height: 210px;
    min-height: 0;
    margin-top: 46px;
    color: #f1d27c;
    overflow: hidden;
  }
  .hero-slides { overflow: hidden; }
  .hero-slide { background-position: center 44%; transform: none; }
  .hero-slide::after { content: ""; position: absolute; inset: 0; background: rgba(2,9,13,.46); }
  .hero-shade { background: linear-gradient(90deg, rgba(3,9,12,.23), rgba(3,9,12,.05) 45%, rgba(3,9,12,.44)); }
  .hero-content,
  .hero-pager,
  .hero-facts { display: none; }
  .mobile-hero-content { position: absolute; z-index: 3; inset: 0; display: block; padding: 26px 20px 0; }
  .mobile-hero-brand { display: flex; align-items: center; justify-content: center; gap: 20px; }
  .mobile-hero-brand img { width: 76px; height: 54px; object-fit: contain; }
  .mobile-hero-brand p { margin: 0; display: flex; flex-direction: column; color: #e7c467; line-height: 1.35; }
  .mobile-hero-brand span { font-size: 13px; }
  .mobile-hero-brand strong { font-size: 17px; font-weight: 650; }
  .mobile-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 9px; text-align: center; color: white; }
  .mobile-hero-stats div { min-width: 0; display: flex; flex-direction: column; }
  .mobile-hero-stats strong { font-size: 18px; font-weight: 650; line-height: 1.2; white-space: nowrap; }
  .mobile-hero-stats strong small { font-size: 9px; font-weight: 500; }
  .mobile-hero-stats span { font-size: 11px; white-space: nowrap; }
  .mobile-hero-tags {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    padding-left: calc((25% - 44px) / 2);
    padding-right: calc((25% - 55px) / 2);
    overflow: visible;
    white-space: nowrap;
  }
  .mobile-hero-tags span { flex: 0 0 auto; padding: 2px 7px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; color: rgba(255,255,255,.55); font-size: 9px; line-height: 16px; }
  .mobile-hero-detail {
    position: absolute;
    z-index: 4;
    right: 21px;
    top: 29px;
    width: 29px;
    min-height: 84px;
    padding: 7px 5px 6px;
    border-radius: 6px;
    background: #ffdda0;
    color: #070b10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }
  .mobile-hero-detail b { width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; background: #020713; color: white; font-size: 10px; line-height: 1; }

  .mobile-custom-card {
    position: relative;
    z-index: 5;
    width: calc(100% - 20px);
    min-height: 255px;
    margin: -36px auto 0;
    padding: 19px 20px 0;
    border: 1px solid #d0d0d0;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 7px 18px rgba(0,0,0,.14);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    scroll-margin-top: 62px;
  }
  .mobile-card-sign { display: none; }
  .mobile-custom-card h2 { margin: 0; text-align: center; font-size: 24px; font-weight: 800; line-height: 1.25; }
  .mobile-custom-card > p { margin: 2px 0 0; text-align: center; color: #a37a17; font-size: 13px; font-weight: 600; line-height: 1.4; }
  .mobile-custom-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 16px; }
  .mobile-custom-benefits > div { min-width: 0; display: flex; flex-direction: column; align-items: center; }
  .benefit-icon { width: 46px; height: 46px; margin-bottom: 6px; border: 1px solid; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 22px; }
  .benefit-route { background-image: url('/static/schedule.svg'); }
  .benefit-group { background-image: url('/static/check.svg'); }
  .benefit-hotel { background-image: url('/static/hotel_level.svg'); }
  .benefit-car { background-image: url('/static/sc_icon_car.svg'); }
  .mobile-custom-benefits strong { max-width: 100%; color: #0c0c0d; font-size: 12px; line-height: 1.5; white-space: nowrap; }
  .mobile-custom-benefits span { color: #747474; font-size: 10px; line-height: 1.4; white-space: nowrap; }
  .mobile-custom-button { width: 100%; height: 58px; margin-top: 16px; border: 0; border-radius: 9px; background: #0c0c0c; color: #f0cf82; font-size: 17px; }
  .mobile-custom-card > small { min-height: 43px; margin: 14px -20px 0; border-top: 1px solid #f5e5c4; background: #fff6e6; color: #bc8137; display: grid; place-items: center; text-align: center; font-size: 12px; }

  .routes.section { padding: 29px 0 4px; }
  .routes .content-width { padding: 0 6px; }
  .mobile-route-heading { position: relative; height: 31px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
  .mobile-route-heading h2 { margin: 0; font-size: 14px; font-weight: 750; }
  .mobile-route-more { height: 27px; min-width: 54px; padding: 0 8px; display: inline-flex; align-items: center; justify-content: center; gap: 2px; border: 1px solid #d9dde2; border-radius: 14px; background: white; box-shadow: 0 1px 2px rgba(0,0,0,.08); color: #343b44; font-size: 12px; line-height: 1; white-space: nowrap; }
  .mobile-route-more span { font-size: 16px; line-height: 1; transform: translateY(-0.5px); }
  .routes .section-heading,
  .route-filters { display: none; }
  .route-grid { grid-template-columns: 1fr; gap: 18px; }
  .route-card,
  .route-card.route-featured { display: block; min-height: 0; border: 0; box-shadow: none; }
  .route-card:nth-child(n+4) { display: none; }
  .route-grid.is-expanded .route-card:nth-child(n+4) { display: block; }
  .route-card:hover { transform: none; box-shadow: none; }
  .route-top { margin-bottom: 6px; }
  .route-price { font-size: 15px; }
  .route-price b { font-size: 18px; }
  .route-signup { font-size: 11px; }
  .route-image { aspect-ratio: 1.72 / 1; min-height: 0; border-radius: 9px; }
  .route-place,
  .route-days { bottom: 8px; font-size: 11px; }
  .route-place { left: 8px; }
  .route-days { right: 8px; }
  .route-info { padding: 8px 0 0; }
  .route-info h3 { margin: 0; font-size: 15px; }
  .route-info > p { margin-top: 4px; margin-bottom: 0; font-size: 11px; white-space: nowrap; display: block; -webkit-line-clamp: unset; }
  .route-tags { margin-top: 7px; gap: 5px; }
  .route-tags span { font-size: 10px; line-height: 20px; }
  .route-more-wrap { display: flex; justify-content: center; padding: 18px 0 16px; }
  .route-more-btn { min-height: 34px; padding: 0 20px; font-size: 13px; }

  .news.section { padding: 6px 0 36px; background: #fff; }
  .news .content-width { padding: 0 6px; }
  .news-heading { height: 31px; margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
  .news-heading h2 { margin: 0; font-size: 14px; font-weight: 750; }
  .news-item { gap: 12px; padding: 12px; }
  .news-thumb { flex-basis: 88px; width: 88px; height: 88px; }
  .news-body h3 { font-size: 15px; font-weight: 500; }
  .news-body time { font-size: 12px; }

  .customize { display: none; }
}

@media (max-width: 360px) {
  .mobile-hero-content { padding-inline: 13px; }
  .mobile-hero-brand { gap: 13px; }
  .mobile-hero-brand img { width: 70px; }
  .mobile-hero-brand span { font-size: 12px; }
  .mobile-hero-brand strong { font-size: 16px; }
  .mobile-hero-stats strong { font-size: 17px; }
  .mobile-hero-stats span { font-size: 10px; }
  .mobile-custom-card { padding-inline: 27px; }
}

/* Desktop uses the same visual language and content hierarchy as the H5 artwork. */
@media (min-width: 761px) {
  :root { --header-height: 76px; }
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 76px;
    background: #fff;
    color: #080d14;
    border: 0;
    box-shadow: none;
  }
  .header-inner { width: min(calc(100% - 64px), 1360px); padding: 0; gap: 0; }
  .brand { gap: 14px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy strong { color: #080d14; font-size: 24px; font-weight: 750; }
  .brand-copy small { margin-top: 7px; color: #6d7370; font-size: 9px; }
  .main-nav {
    position: static;
    z-index: auto;
    inset: auto;
    max-height: none;
    margin: 0 34px 0 auto;
    overflow: visible;
    background: transparent;
    color: #4c5564;
    display: flex;
    align-items: stretch;
    grid-template-columns: none;
    gap: clamp(20px, 2.4vw, 42px);
  }
  .main-nav a {
    position: relative;
    min-width: max-content;
    padding: 26px 0 22px;
    border: 0;
    color: inherit;
    text-align: center;
    font-size: 17px;
    font-weight: 650;
    line-height: 28px;
  }
  .main-nav a::after {
    inset: auto 18% 10px;
    height: 3px;
    border-radius: 3px;
    background: #dfa94d;
  }
  .main-nav a:hover,
  .main-nav a.active { color: #dfa94d; }
  .main-nav a:hover::after,
  .main-nav a.active::after { transform: scaleX(1); }
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    color: #080d14;
    font-size: 20px;
    line-height: 1;
  }
  .header-phone span { color: #d1aa2f; font-size: 22px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; width: 46px; height: 46px; margin-left: 18px; padding: 9px; color: #080d14; }
  .menu-toggle span { width: 28px; height: 3px; margin: 5px 0; border-radius: 2px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .menu-toggle { display: none; }

  .hero {
    height: 440px;
    min-height: 0;
    margin-top: 76px;
    color: #f1d27c;
    overflow: hidden;
  }
  .hero-slide { background-position: center 44%; transform: none; }
  .hero-slide::after { content: ""; position: absolute; inset: 0; background: rgba(5,7,7,.62); }
  .hero-shade { background: linear-gradient(90deg, rgba(6,7,7,.42), rgba(6,7,7,.08) 48%, rgba(6,7,7,.48)); }
  .hero-content,
  .hero-pager,
  .hero-facts { display: none; }
  .mobile-hero-content {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 128px), 1120px);
    height: 100%;
    margin: 0 auto;
    padding: 54px 0 0;
    display: block;
  }
  .mobile-hero-brand { width: min(100%, 860px); margin: 0 auto; display: flex; align-items: center; justify-content: flex-start; gap: 50px; }
  .mobile-hero-brand img { width: 164px; height: 108px; object-fit: contain; }
  .mobile-hero-brand p { margin: 0; display: flex; flex-direction: column; color: #e7c467; line-height: 1.35; }
  .mobile-hero-brand span { font-size: 24px; }
  .mobile-hero-brand strong { font-size: 36px; font-weight: 650; }
  .mobile-hero-stats { width: min(100%, 860px); margin: 24px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); color: white; text-align: center; }
  .mobile-hero-stats div { display: flex; flex-direction: column; }
  .mobile-hero-stats strong { font-size: 34px; font-weight: 650; line-height: 1.2; }
  .mobile-hero-stats strong small { font-size: 16px; font-weight: 500; }
  .mobile-hero-stats span { margin-top: 2px; font-size: 17px; }
  .mobile-hero-tags { position: relative; left: auto; right: auto; bottom: auto; width: min(100%, 860px); margin: 30px auto 0; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-left: calc((25% - 68px) / 2); padding-right: calc((25% - 85px) / 2); overflow: hidden; white-space: nowrap; }
  .mobile-hero-tags span { flex: 0 0 auto; min-width: 0; padding: 5px 18px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; color: rgba(255,255,255,.55); text-align: center; font-size: 13px; }
  .mobile-hero-detail {
    position: absolute;
    z-index: 4;
    right: max(48px, calc((100vw - 1240px) / 2));
    top: 72px;
    width: 56px;
    min-height: 166px;
    padding: 14px 9px 11px;
    border-radius: 11px;
    background: #ffdda0;
    color: #070b10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;
  }
  .mobile-hero-detail b { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #020713; color: white; font-size: 17px; }

  .mobile-custom-card {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 96px), 1120px);
    min-height: 0;
    margin: -80px auto 0;
    padding: 34px 76px 0;
    border: 1px solid #d0d0d0;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(18,19,17,.15);
    display: flex;
    flex-direction: column;
    scroll-margin-top: 96px;
  }
  .mobile-card-sign { display: none; }
  .mobile-custom-card h2 { margin: 0; text-align: center; font-size: 40px; font-weight: 800; line-height: 1.2; }
  .mobile-custom-card > p { margin: 3px 0 0; text-align: center; color: #a37a17; font-size: 21px; font-weight: 600; }
  .mobile-custom-benefits { width: min(100%, 820px); margin: 20px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; }
  .mobile-custom-benefits > div { min-width: 0; display: flex; flex-direction: column; align-items: center; }
  .benefit-icon { width: 68px; height: 68px; margin-bottom: 8px; border: 1px solid; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 34px; }
  .benefit-route { background-image: url('/static/schedule.svg'); }
  .benefit-group { background-image: url('/static/check.svg'); }
  .benefit-hotel { background-image: url('/static/hotel_level.svg'); }
  .benefit-car { background-image: url('/static/sc_icon_car.svg'); }
  .mobile-custom-benefits strong { font-size: 18px; line-height: 1.5; }
  .mobile-custom-benefits span { color: #777; font-size: 14px; }
  .mobile-custom-button { width: min(100%, 860px); height: 64px; margin: 21px auto 0; border: 0; border-radius: 9px; background: #0c0c0c; color: #f0cf82; font-size: 23px; }
  .mobile-custom-card > small { min-height: 56px; margin: 20px -76px 0; border-top: 1px solid #f5e5c4; background: #fff6e6; color: #bc8137; display: grid; place-items: center; text-align: center; font-size: 16px; }

  .routes.section { padding: 68px 0 8px; }
  .routes .content-width { width: min(calc(100% - 64px), 1180px); }
  .mobile-route-heading { position: relative; height: 58px; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; }
  .mobile-route-heading h2 { margin: 0; font-size: 30px; font-weight: 750; }
  .mobile-route-more { min-width: 96px; height: 44px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: center; gap: 4px; border: 1px solid #d9dde2; border-radius: 22px; background: white; color: #343b44; font-size: 16px; line-height: 1; white-space: nowrap; box-shadow: 0 2px 5px rgba(0,0,0,.08); }
  .mobile-route-more span { font-size: 20px; line-height: 1; transform: translateY(-0.5px); }
  .routes .section-heading,
  .route-filters { display: none; }
  .route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .route-card { display: block; }
  .route-card:nth-child(n+4) { display: none; }
  .route-grid.is-expanded .route-card:nth-child(n+4) { display: block; }
  .route-more-wrap { display: flex; justify-content: center; padding: 28px 0 20px; }
  .route-more-btn { min-height: 44px; padding: 0 28px; font-size: 16px; }

  .news.section { padding: 8px 0 48px; background: #fff; }
  .site-footer { padding: 36px max(32px, calc((100% - 1180px) / 2)) 32px; font-size: 14px; }
  .footer-icp { margin-top: 8px; }
  .back-to-top { right: 48px; width: 44px; height: 44px; }
  .news .content-width { width: min(calc(100% - 64px), 1180px); }
  .news-heading { height: 58px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
  .news-heading h2 { margin: 0; font-size: 30px; font-weight: 750; }
  .news-item { gap: 18px; padding: 18px 20px; transition: box-shadow .2s ease; }
  .news-item:hover { box-shadow: 0 10px 24px rgba(12, 18, 28, .08); }
  .news-thumb { flex-basis: 132px; width: 132px; height: 132px; }
  .news-body { padding: 4px 0 6px; }
  .news-body h3 { font-size: 20px; line-height: 1.45; }
  .news-body time { font-size: 14px; }

  .customize { display: none; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .header-inner { width: calc(100% - 36px); }
  .brand { gap: 9px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { margin-top: 4px; font-size: 7px; }
  .main-nav { margin-right: 18px; gap: 12px; }
  .main-nav a { font-size: 13px; }
  .header-phone { gap: 5px; font-size: 14px; }
  .header-phone span { font-size: 17px; }
  .hero { height: 410px; }
  .mobile-hero-content { width: calc(100% - 96px); padding-top: 54px; }
  .mobile-hero-brand { width: min(100%, 650px); gap: 30px; }
  .mobile-hero-brand img { width: 122px; height: 86px; }
  .mobile-hero-brand span { font-size: 19px; }
  .mobile-hero-brand strong { font-size: 29px; }
  .mobile-hero-stats { width: min(100%, 660px); margin-top: 24px; }
  .mobile-hero-stats strong { font-size: 28px; }
  .mobile-hero-stats span { font-size: 14px; }
  .mobile-hero-detail { right: 22px; top: 72px; }
  .mobile-hero-tags { width: min(100%, 660px); gap: 8px; padding-left: calc((25% - 56px) / 2); padding-right: calc((25% - 70px) / 2); }
  .mobile-custom-card { width: calc(100% - 48px); margin-top: -74px; padding-inline: 44px; }
  .mobile-custom-card > small { margin-inline: -44px; }
  .mobile-custom-benefits { gap: 24px; }
}

.mobile-custom-card > p { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2vw, 24px); }
.mobile-custom-card > p::before,
.mobile-custom-card > p::after { content: ""; width: clamp(28px, 6vw, 84px); height: 1px; background: linear-gradient(90deg, transparent, #d2b24f); }
.mobile-custom-card > p::after { background: linear-gradient(90deg, #d2b24f, transparent); }
.benefit-icon { position: relative; display: grid; place-items: center; border-color: #71684f; background: #24221c; background-image: none !important; box-shadow: inset 0 0 0 2px rgba(255,255,255,.05); }
.benefit-icon::before { content: ""; width: 52%; height: 52%; background: #fff0c7; mask-position: center; mask-repeat: no-repeat; mask-size: contain; -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain; }
.benefit-route::before { mask-image: url('/static/local.svg'); -webkit-mask-image: url('/static/local.svg'); }
.benefit-group::before { mask-image: url('/static/cxr.svg'); -webkit-mask-image: url('/static/cxr.svg'); }
.benefit-hotel::before { mask-image: url('/static/hotel_level.svg'); -webkit-mask-image: url('/static/hotel_level.svg'); }
.benefit-car::before { mask-image: url('/static/sc_icon_car.svg'); -webkit-mask-image: url('/static/sc_icon_car.svg'); }

.mobile-custom-success[hidden] { display: none; }
.mobile-custom-card.is-submitted {
  min-height: 0;
  padding: clamp(20px, 3vw, 38px) clamp(18px, 6vw, 76px) clamp(28px, 4vw, 48px);
}
.mobile-custom-card.is-submitted > :not(.mobile-custom-success) { display: none; }
.mobile-custom-card.is-submitted .mobile-custom-success {
  display: flex;
  min-height: clamp(350px, 44vw, 510px);
  flex-direction: column;
  align-items: center;
  color: #a97b1e;
  text-align: center;
}
.mobile-success-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
}
.mobile-success-heading h2,
.mobile-custom-card .mobile-success-heading h2 {
  margin: 0;
  color: #151515;
  font-size: clamp(25px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}
.mobile-success-heading > span {
  padding: 5px 14px;
  border: 2px solid #c69b3c;
  border-radius: 999px;
  color: #9b721b;
  font-size: clamp(13px, 2vw, 23px);
  line-height: 1.3;
  white-space: nowrap;
}
.mobile-success-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 16px);
  margin-top: clamp(12px, 2vw, 20px);
}
.mobile-success-tags span {
  padding: 5px clamp(7px, 1.5vw, 17px);
  border-radius: 999px;
  background: #fff9e9;
  color: #8e681c;
  font-size: clamp(10px, 1.8vw, 20px);
  line-height: 1.4;
  white-space: nowrap;
}
.mobile-success-illustration {
  position: relative;
  width: min(62%, 520px);
  min-width: 250px;
  height: clamp(165px, 25vw, 280px);
  margin-top: clamp(42px, 8vw, 88px);
  border-radius: 50%;
  background: #fff5d8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: clamp(25px, 4vw, 48px);
}
.mobile-success-check {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(86px, 13vw, 150px);
  height: clamp(86px, 13vw, 150px);
  border-radius: 50%;
  background: #e8cb88;
  box-shadow: 0 18px 0 -10px #d5ad56;
  transform: translate(-50%, -35%);
}
.mobile-success-check::before,
.mobile-success-check::after {
  position: absolute;
  border-radius: 3px;
  background: #efd99f;
  content: "";
}
.mobile-success-check::before {
  left: -25px;
  top: 20px;
  width: 10px;
  height: 25px;
  transform: rotate(-45deg);
}
.mobile-success-check::after {
  right: -22px;
  top: 7px;
  width: 9px;
  height: 29px;
  transform: rotate(26deg);
}
.mobile-success-check i {
  position: absolute;
  left: 31%;
  top: 27%;
  width: 43%;
  height: 25%;
  border-left: clamp(7px, 1vw, 12px) solid #fff;
  border-bottom: clamp(7px, 1vw, 12px) solid #fff;
  filter: drop-shadow(0 5px 0 rgba(177, 133, 41, .25));
  transform: rotate(-45deg);
}
.mobile-success-illustration strong {
  color: #ddbd72;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.2;
}
.mobile-success-illustration > span {
  position: absolute;
  color: #dfbf73;
  line-height: 1;
}
.mobile-success-illustration .is-spark-one { left: 18%; bottom: 31%; font-size: 16px; }
.mobile-success-illustration .is-spark-two { right: 17%; bottom: 20%; font-size: 20px; }
.mobile-custom-success > p {
  margin: clamp(25px, 5vw, 52px) 0 0;
  color: #b38224;
  font-size: clamp(15px, 2.4vw, 28px);
  line-height: 1.5;
}

/* The consultation sheet intentionally keeps the H5 artboard proportions on desktop. */
.dialog-backdrop {
  padding: 18px 12px;
  background: rgba(3, 9, 17, .64);
  backdrop-filter: blur(2px);
}
.consult-dialog {
  width: min(100%, 430px);
  max-height: calc(100svh - 36px);
  padding: 28px 28px 24px;
  border-radius: 4px;
  overflow-x: hidden;
  box-shadow: 0 22px 68px rgba(0, 0, 0, .28);
}
.consult-dialog h2 {
  margin: 0 0 16px;
  color: #dfa94d;
  font-family: inherit;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}
.dialog-close {
  z-index: 2;
  right: 9px;
  top: 9px;
  width: 34px;
  height: 34px;
  color: #8e9298;
  font-size: 25px;
  transition: color .2s ease, transform .2s ease;
}
.dialog-close:hover { color: #07101f; transform: rotate(90deg); }
.consult-dialog #quickForm { display: flex; flex-direction: column; gap: 0; }
.consult-dialog #quickForm .dialog-fieldset + .dialog-fieldset { margin-top: 18px; }
.dialog-fieldset { position: relative; min-width: 0; margin: 0; padding: 0; border: 0; }
.dialog-fieldset legend {
  margin: 0 0 10px;
  padding: 0;
  color: #101114;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.dialog-fieldset legend span { margin-right: 2px; color: #f00; }
.dialog-options { display: grid; gap: 8px; }
.dialog-travelers { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dialog-days { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.dialog-options button {
  min-width: 0;
  height: 37px;
  padding: 0 4px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f7f7f7;
  color: #111216;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: border-color .16s ease, color .16s ease, background-color .16s ease;
}
.dialog-destinations {
  display: flex;
  flex-wrap: wrap;
}
.dialog-destinations button {
  flex: 0 1 calc(25% - 6px);
  min-width: max-content;
  max-width: 100%;
  overflow: visible;
  padding-inline: 8px;
}
.dialog-destinations button[data-value="其他"],
.dialog-destinations button[data-value="其它"] {
  flex: 0 0 calc(25% - 6px);
  min-width: 0;
  max-width: calc(25% - 6px);
}
.dialog-options button:hover { background: #f2f0eb; }
.dialog-options button.is-selected {
  border-color: #dfa94d;
  background: #fff;
  color: #dfa94d;
}
.consult-dialog .dialog-custom-dest {
  width: 100%;
  height: 42px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid #b9b9b9;
  border-radius: 13px;
  background: #fff;
  color: #111216;
  font-size: 15px;
}
.consult-dialog .dialog-custom-dest::placeholder { color: #c2c2c2; }
.consult-dialog .dialog-custom-dest:focus { border-color: #dfa94d; box-shadow: 0 0 0 2px rgba(223, 169, 77, .12); }
.dialog-wechat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: calc(100% - 8px);
  height: 50px;
  margin: 40px auto 0;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: #020c1c;
  color: #dfb54f;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  transition: background-color .2s ease, transform .2s ease;
}
.dialog-wechat-button span { margin: 0; line-height: 1; }
.dialog-wechat-button:hover { background: #0b1a31; transform: translateY(-1px); }
.dialog-wechat-button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.consult-dialog #quickForm .dialog-message {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 16px 0 0;
  line-height: 1.45;
}
.consult-dialog #quickForm .dialog-message:empty { display: none; }
.consult-dialog #quickForm .dialog-message:not(:empty) + .dialog-wechat-button {
  margin-top: 12px;
}

@media (max-width: 480px) {
  .dialog-backdrop { padding: 12px; align-items: center; }
  .consult-dialog { width: 100%; max-height: calc(100svh - 24px); padding: 26px 28px 22px; }
  .consult-dialog h2 { margin-bottom: 14px; padding-right: 18px; font-size: 17px; white-space: nowrap; }
  .dialog-fieldset legend { font-size: 17px; }
  .dialog-options { gap: 7px; }
  .dialog-options button { height: 35px; border-radius: 9px; font-size: 14px; }
  .dialog-days button { font-size: 13px; }
  .dialog-wechat-button { height: 48px; margin-top: 40px; font-size: 17px; }
}

@media (max-width: 350px) {
  .consult-dialog { padding-inline: 20px; }
  .dialog-options button { font-size: 12px; }
  .dialog-days button { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.page-hero {
  position: relative;
  height: 230px;
  margin-top: var(--header-height);
  overflow: hidden;
  color: #fff;
  background: #263f3e url('/static/contact-hero-wide.jpg') center top / cover no-repeat;
}
.page-hero-shade { position: absolute; inset: 0; background: rgba(7, 22, 24, .62); }
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1180px);
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero h1 { margin: 0 0 5px; font-size: 38px; font-weight: 700; line-height: 1.4; }
.page-breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.page-breadcrumb a { color: #dfa94d; }
.page-breadcrumb span { color: rgba(255,255,255,.82); font-size: 26px; line-height: 1; }
.page-breadcrumb strong { font-weight: 500; }

body.page-routes .routes.section { padding-top: 42px; padding-bottom: 72px; }
body.page-routes .mobile-route-heading,
body.page-routes .routes .section-heading,
body.page-routes .route-more-wrap { display: none; }
body.page-routes .route-filters { display: flex; }
body.page-routes .route-card:nth-child(n+4) { display: block; }
.route-filter-shell { min-width: 0; }
.route-filter-nav { display: none; }
.page-current-label { color: inherit; font-size: inherit; line-height: inherit; }
.route-query-status {
  display: none;
  margin: -14px 0 22px;
  color: #8a5b00;
  font-size: 13px;
}
.route-query-status.is-visible { display: block; }
.route-empty {
  grid-column: 1 / -1;
  min-height: 240px;
  border: 1px solid #ececec;
  background: #fafafa;
  color: #85898e;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
}

body.page-news { background: #f5f5f5; }
body.page-news .news.section {
  padding-top: 20px;
  padding-bottom: 56px;
  background: #f5f5f5;
}
body.page-news .news-heading { display: none; }
body.page-news .news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
body.page-news .news-item {
  gap: 14px;
  min-height: 112px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 18, 24, .04);
}
body.page-news .news-item + .news-item { border-top: 0; }
body.page-news .news-item[href]:hover { box-shadow: 0 8px 20px rgba(12, 18, 28, .08); }
body.page-news .news-thumb {
  flex: 0 0 108px;
  width: 108px;
  height: 108px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}
body.page-news .news-body { padding: 2px 0 4px; }
body.page-news .news-body h3 {
  color: #111;
  font-weight: 700;
}
body.page-news .news-body time { color: #999; }
body.page-news .news-empty {
  border-radius: 8px;
  background: #fff;
}
body.page-news .news-pagination {
  margin-top: 28px;
  padding: 0;
  background: transparent;
  gap: 8px;
}
body.page-news .news-pagination button,
body.page-news .news-page-ellipsis {
  min-width: 40px;
  height: 40px;
  border-radius: 6px;
  color: #333;
  background: #fff;
  font-size: 14px;
}
body.page-news .news-pagination button {
  border: 1px solid #ddd;
  box-shadow: none;
}
body.page-news .news-pagination button.is-active {
  border-color: #000;
  background: #000;
  color: #fff;
}
body.page-news .news-pagination button:disabled { opacity: .45; }
body.page-news .news-page-ellipsis { border: 1px solid #ddd; }

@media (max-width: 760px) {
  .page-hero { height: 154px; }
  .page-hero-inner { width: 100%; padding: 0 20px; }
  .page-hero h1 { margin-bottom: 2px; font-size: 25px; }
  .page-breadcrumb { gap: 7px; font-size: 12px; }
  .page-breadcrumb span { font-size: 20px; }
  body.page-routes .page-hero {
    height: 58px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    color: #5d5f62;
  }
  body.page-routes .page-hero-shade,
  body.page-routes .page-hero h1 { display: none; }
  body.page-routes .page-hero-inner { padding: 0 6px; justify-content: center; }
  body.page-routes .page-breadcrumb { gap: 6px; font-size: 14px; }
  body.page-routes .page-breadcrumb a { color: #dfa94d; font-weight: 500; }
  body.page-routes .page-breadcrumb strong { color: #5d5f62; font-weight: 500; }
  body.page-routes .page-breadcrumb span { color: #5d5f62; font-size: 14px; }
  body.page-routes .routes.section { padding: 18px 0 44px; }
  body.page-routes .routes .content-width { padding: 0 10px; }
  body.page-routes .site-footer { padding-left: 10px; padding-right: 10px; }
  body.page-routes .back-to-top { right: 10px; }
  body.page-routes .route-filter-shell { margin-bottom: 14px; }
  body.page-routes .route-filter-nav { display: none; }
  body.page-routes .route-filters {
    margin: 0;
    padding: 0 0 2px;
    gap: 8px;
    scroll-snap-type: x proximity;
  }
  body.page-routes .route-filters button {
    min-width: 66px;
    height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 6px;
    background: #f5f6f7;
    color: #575b60;
    scroll-snap-align: start;
    font-size: 14px;
  }
  body.page-routes .route-filters button.is-active {
    background: #08111f;
    color: #e1b74e;
  }
  body.page-routes .route-query-status { margin: 0 0 14px; }
  body.page-routes .route-grid { gap: 24px; }
  body.page-routes .route-card { display: block; }
  body.page-routes .route-image { aspect-ratio: 1.78 / 1; border-radius: 8px; }
  body.page-routes .route-info { padding: 8px 0 0; }
  body.page-routes .route-info h3 { font-size: 15px; line-height: 1.4; }
  body.page-routes .route-info > p { margin-top: 4px; color: #777; font-size: 12px; line-height: 1.55; }
  body.page-routes .route-tags { margin-top: 6px; }
  body.page-routes .route-tags span { border-radius: 4px; font-size: 10px; line-height: 20px; }
  body.page-routes .route-top { margin: 7px 0 0; }
  body.page-routes .route-price { color: #eb4f1e; font-size: 14px; }
  body.page-routes .route-price b { font-size: 20px; }
  body.page-routes .route-signup { font-size: 12px; }
  body.page-routes .route-empty { min-height: 220px; }
  body.page-news .news.section { padding: 12px 0 28px; background: #f5f5f5; }
  body.page-news .news .content-width {
    width: calc(100% - 24px);
    padding: 0;
  }
  body.page-news .site-footer { padding-left: 12px; padding-right: 12px; }
  body.page-news .back-to-top { right: 12px; }
  body.page-news .news-list { gap: 10px; }
  body.page-news .news-item {
    gap: 12px;
    min-height: 104px;
    padding: 12px;
    border-radius: 8px;
  }
  body.page-news .news-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    border-radius: 6px;
  }
  body.page-news .news-body h3 { font-size: 15px; font-weight: 700; line-height: 1.45; }
  body.page-news .news-body time { font-size: 12px; color: #999; }
  body.page-news .news-pagination {
    margin-top: 22px;
    padding: 4px 0 12px;
    justify-content: safe center;
    gap: 6px;
  }
  body.page-news .news-pagination button,
  body.page-news .news-page-ellipsis {
    min-width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 13px;
  }
  body.page-news .news-pagination button { padding-inline: 8px; }
  body.page-news .news-pagination .news-page-direction { min-width: 64px; }
}

@media (max-width: 360px) {
  body.page-news .news-pagination { gap: 4px; }
  body.page-news .news-pagination button,
  body.page-news .news-page-ellipsis { min-width: 34px; }
  body.page-news .news-pagination .news-page-direction { min-width: 56px; }
}

@media (min-width: 761px) {
  body.page-news .news.section { padding-top: 28px; padding-bottom: 64px; }
  body.page-news .news .content-width { width: min(calc(100% - 64px), 980px); }
  body.page-news .news-list { gap: 12px; }
  body.page-news .news-item { gap: 18px; padding: 16px; }
  body.page-news .news-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }
  body.page-news .news-body h3 { font-size: 18px; line-height: 1.45; }
  body.page-news .news-body time { font-size: 13px; }
  body.page-news .news-pagination { margin-top: 32px; gap: 8px; }
  body.page-news .news-pagination button,
  body.page-news .news-page-ellipsis {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
  body.page-news .news-pagination .news-page-direction { min-width: 82px; }
  body.page-routes .route-filter-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }
  body.page-routes .route-filter-shell.has-overflow { grid-template-columns: 42px minmax(0, 1fr) 42px; }
  body.page-routes .route-filter-shell.has-overflow .route-filter-nav {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #d9dedb;
    border-radius: 4px;
    background: #fff;
    color: #202a25;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(12, 24, 18, .07);
  }
  body.page-routes .route-filter-nav span { font-size: 28px; line-height: 1; transform: translateY(-1px); }
  body.page-routes .route-filter-nav:hover:not(:disabled) { border-color: var(--deep); background: var(--deep); color: #e7c263; }
  body.page-routes .route-filter-nav:disabled { cursor: default; opacity: .28; box-shadow: none; }
  body.page-routes .route-filters { min-width: 0; margin: 0; padding-bottom: 2px; }
}
