/* ============================================================
   CCT China Inbound — main stylesheet
   手写 CSS，无构建步骤、无外部依赖（不依赖 Google Fonts），
   直接上传即可使用，国内与海外访问都快。
   ============================================================ */

:root {
  /* 青花瓷色板：靛蓝为主，浅蓝为底，描金点缀，朱红仅作印章小心用 */
  --brand: #2C6E9B;
  --brand-dark: #1B4E72;
  --brand-deep: #133A57;
  --brand-soft: #EAF3FA;
  --brand-mist: #D7E8F4;
  --gold: #B98B3E;
  --gold-soft: #F3E7CF;
  --seal: #B4232A;          /* 印章红，仅用于点缀 */
  --ink: #14242F;
  --ink-2: #335060;
  --ink-solid: #335060;
  --muted: #64798C;
  --line: #D9E7F1;
  --line-soft: #EAF3F9;
  --bg: #FFFFFF;
  --bg-soft: #F4F9FD;
  --bg-mist: #EDF6FC;
  --bg-dark: #12354F;
  --bg-dark-2: #174863;
  --ok: #1F7A4D;
  --warn: #A9721B;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow: 0 8px 24px rgba(18, 53, 79, .08);
  --shadow-lg: 0 22px 55px rgba(18, 53, 79, .16);
  --maxw: 1220px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: Georgia, "Iowan Old Style", "Times New Roman", "Songti SC", serif;

  /* 中国风纹样（内联 SVG，不外链任何资源） */
  --cn-key: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%232C6E9B' stroke-width='1.1'%3E%3Cpath d='M0 14h44v28H16V22h18'/%3E%3Cpath d='M0 42h8M48 14h8M56 42h-8M8 0v6M8 50v6'/%3E%3C/g%3E%3C/svg%3E");
  --cn-cloud: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='34' viewBox='0 0 120 34'%3E%3Cg fill='none' stroke='%232C6E9B' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M2 26c6-9 14-9 19-3 3-8 12-9 17-3 5-5 14-4 16 3 6-3 12 1 12 6'%3E%3C/path%3E%3Cpath d='M54 18c5-8 13-8 18-2 4-7 12-7 16-1 6-4 13 0 14 6'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  --cn-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='26' viewBox='0 0 80 26'%3E%3Cg fill='none' stroke='%232C6E9B'%3E%3Cpath d='M0 15c8-8 12-8 20 0s12 8 20 0 12-8 20 0 12 8 20 0' stroke-width='1.4'/%3E%3Cpath d='M0 22c8-6 12-6 20 0s12 6 20 0 12-6 20 0 12 6 20 0' stroke-width='1' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
  --cn-wave-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='26' viewBox='0 0 80 26'%3E%3Cg fill='none' stroke='%23ffffff'%3E%3Cpath d='M0 15c8-8 12-8 20 0s12 8 20 0 12-8 20 0 12 8 20 0' stroke-width='1.4'/%3E%3Cpath d='M0 22c8-6 12-6 20 0s12 6 20 0 12-6 20 0 12 6 20 0' stroke-width='1' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
  --cn-key-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.1'%3E%3Cpath d='M0 14h44v28H16V22h18'/%3E%3Cpath d='M0 42h8M48 14h8M56 42h-8M8 0v6M8 50v6'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.22; margin: 0 0 .5em; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: 3.1rem; font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: 2.15rem; font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.18rem; }
h4 { font-size: 1rem; font-family: var(--font); text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; color: var(--muted); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 99; background: #fff; padding: 10px 16px; border-radius: 8px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font); font-size: .95rem; font-weight: 600; line-height: 1.2;
  cursor: pointer; transition: all .18s ease; text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-soft); }
.btn--outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn--whatsapp:hover { background: #1EBE5A; color: #fff; }
.btn--sm { padding: 8px 16px; font-size: .85rem; }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 6px 13px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .82rem; font-weight: 500; color: var(--ink-2); background: #fff;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip em { font-style: normal; color: var(--muted); font-size: .78em; }
.chip--light { background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.5); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips--center { justify-content: flex-start; margin-top: 18px; }

.badge { display: inline-flex; padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.badge:hover { color: #fff; background: rgba(255,255,255,.28); }
.badge--gold { background: var(--gold); border-color: var(--gold); color: #fff; }

.eyebrow { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }

/* -------------------------------------------------------------- topbar */
.topbar { background: var(--bg-dark); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar__item { opacity: .85; }
.topbar__links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__links a { color: rgba(255,255,255,.92); }
.topbar__links a:hover { color: #fff; text-decoration: underline; }

/* -------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); }
.brand__mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: var(--brand); color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: .02em; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__text strong { font-family: var(--font-display); font-size: 1.12rem; }
.brand__text small { font-size: .72rem; color: var(--muted); }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
/* 导航项 9 个（加 Services 之后）——用 nowrap + 略小字号保证一行放得下，
   否则每个英文词会在 li 内部折成两行。 */
.main-nav > ul > li > a { display: block; padding: 8px 10px; border-radius: 8px; font-size: .87rem; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.main-nav > ul > li > a:hover { background: var(--bg-soft); color: var(--brand); }
.main-nav > ul > li.is-active > a { color: var(--brand); font-weight: 700; }
.main-nav__quick { display: none; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 11px 10px; cursor: pointer; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--bg-dark); }
.hero__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; }
.hero__slide { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 7s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: linear-gradient(105deg, rgba(12,20,30,.9) 0%, rgba(12,20,30,.66) 45%, rgba(12,20,30,.25) 100%); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .85fr; gap: 46px; align-items: center; padding: 78px 22px; }
.hero__badge { display: inline-block; padding: 6px 15px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 20px; }
.hero__text { position: absolute; opacity: 0; pointer-events: none; transition: opacity .6s ease; }
.hero__text.is-active { position: relative; opacity: 1; pointer-events: auto; }
.hero__copy h1, .hero__copy h2 { color: #fff; max-width: 15ch; margin-bottom: 16px; text-shadow: 0 2px 26px rgba(0,0,0,.35); font-size: 3.1rem; font-size: clamp(2rem, 4.2vw, 3.1rem); }
.hero__copy p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 56ch; margin-bottom: 0; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero__dots { position: absolute; left: 22px; bottom: 30px; display: flex; gap: 8px; z-index: 3; }
.hero__dots button { width: 30px; height: 3px; border: 0; border-radius: 3px; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; }
.hero__dots button.is-active { background: #fff; }

.search-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.search-card__title { font-size: 1.06rem; font-family: var(--font); font-weight: 700; margin-bottom: 16px; }
.search-card__grid { display: grid; gap: 12px; margin-bottom: 16px; }

/* --------------------------------------------------------------- forms */
.field { display: block; }
/* 注意 :not(.field__split)：并排双输入框的容器也是 .field 的直接子 span，
   不排除掉的话会被这条 display:block 覆盖，两个框就变成上下堆叠。 */
.field > span:not(.field__split) { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field em { color: var(--brand); font-style: normal; }
.field input[type=text], .field input[type=email], .field input[type=search], .field input[type=number], .field input[type=tel], .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(180,35,42,.12); }
.field__split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-note { font-size: .8rem; color: var(--muted); margin: 12px 0 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.inquiry-form { display: block; }
.inquiry-form__title { font-size: 1.25rem; margin-bottom: 4px; }
.inquiry-form__sub { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }

.alert { margin: 18px 0 -6px; padding: 13px 18px; border-radius: var(--radius-sm); font-size: .92rem; border: 1px solid; }
.alert--success { background: #F1FAF5; border-color: #BFE5CE; color: #14603C; }
.alert--error { background: #FEF4F4; border-color: #F3CFCF; color: #9B2020; }

/* --------------------------------------------------------------- trust */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; padding: 24px 22px; }
.trust__item { text-align: center; padding: 6px 10px; border-right: 1px solid var(--line); }
.trust__item:last-child { border-right: 0; }
.trust__item strong { display: block; font-family: var(--font-display); font-size: 1.32rem; color: var(--brand); }
.trust__item span { display: block; font-size: .8rem; color: var(--muted); line-height: 1.45; margin-top: 2px; }

/* ------------------------------------------------------------- section */
.section { padding: 74px 0; }
.section--tight { padding: 46px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: rgba(255,255,255,.88); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--thanks { padding: 90px 0; }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head p { color: var(--muted); max-width: 62ch; margin: 6px 0 0; }
.section-head--light p { color: rgba(255,255,255,.75); }
.section-head h2 { margin-bottom: 0; }

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* ----------------------------------------------------------- tour card */
.tour-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tour-card__media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-soft); }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-card__media img { transform: scale(1.05); }
.tour-card__duration { position: absolute; left: 12px; bottom: 12px; padding: 5px 12px; border-radius: 999px; background: rgba(12,20,30,.78); color: #fff; font-size: .76rem; font-weight: 600; backdrop-filter: blur(4px); }
.tour-card__flag { position: absolute; right: 12px; top: 12px; padding: 5px 11px; border-radius: 999px; background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .03em; }
.tour-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tour-card__place { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; display: flex; justify-content: space-between; gap: 8px; }
.tour-card__type { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--muted); font-size: .78rem; text-align: right; }
.tour-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.tour-card__title a { color: var(--ink); }
.tour-card__title a:hover { color: var(--brand); }
.tour-card__summary { font-size: .9rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.tour-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.tour-card__price { display: inline-flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.tour-card__price small { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.tour-card__price strong { font-family: var(--font-display); font-size: 1.22rem; color: var(--ink); }

/* --------------------------------------------------------- style cards */
.style-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: all .18s ease; color: var(--ink); }
.style-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.style-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.style-card p { font-size: .87rem; color: var(--muted); margin-bottom: 12px; }
.style-card__count { font-size: .8rem; font-weight: 600; color: var(--brand); }

/* ------------------------------------------------------- destination */
.dest-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; color: #fff; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card__shade { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: linear-gradient(to top, rgba(10,17,26,.88) 0%, rgba(10,17,26,.28) 48%, rgba(10,17,26,.05) 100%); }
.dest-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; display: flex; flex-direction: column; gap: 3px; }
.dest-card__body strong { font-family: var(--font-display); font-size: 1.16rem; color: #fff; }
.dest-card__body small { font-size: .8rem; color: rgba(255,255,255,.85); line-height: 1.4; }
.dest-card__body em { font-style: normal; font-size: .76rem; color: var(--gold); font-weight: 600; margin-top: 4px; }

/* 目的地卡片：三列等高等宽，图片统一 16:10 裁切，排列整齐 */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.dest-block { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.dest-block:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.dest-block__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.dest-block__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dest-block:hover .dest-block__media img { transform: scale(1.045); }
.dest-block__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 22px 24px 24px; }
.dest-block__region { font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.dest-block__body h2 { font-size: 1.3rem; margin-bottom: 4px; }
.dest-block__body h2 a { color: var(--ink); }
.dest-block__tagline { font-weight: 600; color: var(--ink-2); font-size: .93rem; margin-bottom: 8px; }
.dest-block__body p { font-size: .89rem; color: var(--muted); }
.dest-block__foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 12px 0 14px; }
.dest-block__body .btn { margin-top: auto; align-self: flex-start; }

/* -------------------------------------------------------------- why us */
.why-grid { margin-bottom: 34px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); padding: 24px; }
.why-card__n { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.why-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.72); margin: 0; }
.why-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------- steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; padding: 0; counter-reset: s; }
.step { position: relative; padding-top: 22px; border-top: 2px solid var(--line); }
.step__n { position: absolute; top: -15px; left: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.step h3 { font-size: 1.02rem; margin: 12px 0 6px; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------- reviews */
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: .95rem; }
.review p { font-size: .92rem; color: var(--ink-2); flex: 1; }
.review footer { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.review footer strong { font-size: .93rem; }
.review footer span { font-size: .8rem; color: var(--muted); }
.review footer em { font-style: normal; font-size: .78rem; color: var(--brand); }

/* ---------------------------------------------------------- two column */
.two-col { display: grid; grid-template-columns: 1.55fr .85fr; gap: 48px; align-items: start; }
.two-col__main > .btn { margin-top: 8px; }
.article-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.article-row { display: flex; gap: 16px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); background: #fff; transition: all .16s ease; }
.article-row:hover { border-color: var(--brand); color: var(--ink); box-shadow: var(--shadow); }
.article-row img { width: 108px; height: 76px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.article-row span { display: flex; flex-direction: column; gap: 2px; }
.article-row small { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); font-weight: 700; }
.article-row strong { font-size: .98rem; }
.article-row em { font-style: normal; font-size: .84rem; color: var(--muted); }

.faq-mini { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.faq-mini h3 { font-size: 1.08rem; margin-bottom: 14px; }
.faq-mini__item { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq-mini__item:last-of-type { border-bottom: 0; }
.faq-mini__item summary { cursor: pointer; font-weight: 600; font-size: .92rem; list-style: none; position: relative; padding-right: 20px; }
.faq-mini__item summary::-webkit-details-marker { display: none; }
.faq-mini__item summary::after { content: '+'; position: absolute; right: 0; top: -2px; color: var(--brand); font-size: 1.15rem; }
.faq-mini__item[open] summary::after { content: '−'; }
.faq-mini__item p { font-size: .86rem; color: var(--muted); margin: 8px 0 0; }

/* ------------------------------------------------------------ cta band */
.cta-band { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 56px 0; }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.88); margin: 0; max-width: 58ch; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------- page hero */
.page-hero { padding: 56px 0 44px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero > .container > p { max-width: 74ch; color: var(--ink-2); font-size: 1.05rem; margin-bottom: 0; }
.page-hero--short { padding: 38px 0 32px; }
.page-hero--image, .page-hero--dark { background-size: cover; background-position: center; position: relative; border-bottom: 0; }
.page-hero--dark { background: var(--bg-dark); }
.page-hero--image::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: linear-gradient(105deg, rgba(12,20,30,.88), rgba(12,20,30,.55)); }
.page-hero--image > .container { position: relative; z-index: 2; }
.page-hero--image h1, .page-hero--image p, .page-hero--dark h1, .page-hero--dark p { color: #fff; }
.page-hero--image > .container > p, .page-hero--dark > .container > p { color: rgba(255,255,255,.88); }
.page-hero--article { padding-bottom: 52px; }
.page-hero--about { padding: 84px 0 72px; }
.page-hero__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }

.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.crumbs--light, .crumbs--light a, .crumbs--light span { color: rgba(255,255,255,.78); }
.crumbs--light a:hover { color: #fff; }

/* ------------------------------------------------------------- filters */
.tours-layout { display: grid; grid-template-columns: 268px 1fr; gap: 38px; align-items: start; }
.filters { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 92px; }
.filters__group { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.filters__group:last-of-type { border-bottom: 0; }
.filters__group h3 { font-family: var(--font); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.filters__group input[type=search] { width: 100%; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: .9rem; font-family: var(--font); }
.filters__list { display: flex; flex-direction: column; gap: 2px; max-height: 260px; overflow-y: auto; }
.radio { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border-radius: 7px; font-size: .88rem; cursor: pointer; }
.radio:hover { background: #fff; }
.radio input { accent-color: var(--brand); }
.radio span { display: flex; justify-content: space-between; width: 100%; gap: 8px; }
.radio em { font-style: normal; color: var(--muted); font-size: .8rem; }
.filters__reset { display: block; text-align: center; margin-top: 12px; font-size: .85rem; color: var(--muted); }

.tours-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tours-toolbar__count { margin: 0; font-size: .92rem; color: var(--muted); }
.tours-toolbar__count strong { color: var(--ink); }
.tours-toolbar__sort label { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); }
.tours-toolbar__sort select { padding: 8px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font); font-size: .88rem; background: #fff; }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; font-size: .88rem; color: var(--ink-2); background: #fff; }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination a.is-current { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 700; }

.empty-state { text-align: center; padding: 62px 26px; background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 18px; }

/* --------------------------------------------------------- tour detail */
.tour-hero { position: relative; padding: 78px 0 60px; background: var(--bg-dark); overflow: hidden; }
.tour-hero__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background-size: cover; background-position: center; }
.tour-hero__overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: linear-gradient(100deg, rgba(10,17,26,.92) 0%, rgba(10,17,26,.7) 55%, rgba(10,17,26,.4) 100%); }
.tour-hero__inner { position: relative; z-index: 2; }
.tour-hero h1 { color: #fff; max-width: 26ch; margin: 16px 0 14px; }
.tour-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.tour-hero__summary { color: rgba(255,255,255,.9); font-size: 1.06rem; max-width: 66ch; }
.tour-hero__meta { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; }
.tour-hero__meta li { display: flex; flex-direction: column; gap: 3px; }
.tour-hero__meta span { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.tour-hero__meta strong { color: #fff; font-size: .95rem; font-weight: 600; }

.tour-layout { display: grid; grid-template-columns: 1fr 340px; gap: 46px; align-items: start; }
.tour-main > * + * { margin-top: 26px; }
.tour-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }

.anchor-nav { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); position: sticky; top: 92px; z-index: 20; }
.anchor-nav a { font-size: .84rem; font-weight: 600; color: var(--ink-2); padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.anchor-nav a:hover { border-color: var(--brand); color: var(--brand); }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.panel h2 { font-size: 1.35rem; margin-bottom: 16px; }
.panel--note { background: var(--bg-mist); border-color: var(--brand-mist); }
.panel--form { background: var(--bg-soft); }

.prose { max-width: 76ch; }
.prose h2 { margin-top: 34px; }
.prose > h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); }
.prose a { text-decoration: underline; text-decoration-color: rgba(180,35,42,.35); }
.prose ul { padding-left: 1.2em; }
.prose strong { color: var(--ink); }

.tick-list, .cross-list { list-style: none; padding: 0; margin: 0; }
.tick-list li, .cross-list li { position: relative; padding-left: 30px; margin-bottom: 9px; font-size: .93rem; color: var(--ink-2); }
.tick-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 800; }
.cross-list li::before { content: '×'; position: absolute; left: 0; top: 1px; color: var(--muted); font-weight: 800; font-size: 1.05rem; }
.two-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.two-lists__title { font-family: var(--font); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.two-lists__title--yes { color: var(--ok); }
.two-lists__title--no { color: var(--muted); }

.itinerary { display: flex; flex-direction: column; gap: 10px; }
.itin-day { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.itin-day[open] { border-color: rgba(180,35,42,.35); box-shadow: var(--shadow); }
.itin-day summary { display: flex; align-items: baseline; gap: 14px; padding: 15px 18px; cursor: pointer; list-style: none; background: var(--bg-soft); }
.itin-day summary::-webkit-details-marker { display: none; }
.itin-day__num { font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--brand); flex-shrink: 0; min-width: 52px; }
.itin-day__title { font-family: var(--font-display); font-size: 1.03rem; font-weight: 600; }
.itin-day__body { padding: 16px 18px 18px; }
.itin-day__body p { font-size: .92rem; color: var(--ink-2); margin-bottom: 0; }
.itin-day__body p + p { margin-top: 10px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.gallery img { border-radius: var(--radius-sm); aspect-ratio: 3/2; object-fit: cover; cursor: zoom-in; }

.price-box { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.price-box__label { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; }
.price-box__price { font-family: var(--font-display); font-size: 2rem; color: var(--ink); margin-bottom: 6px; }
.price-box__price small { font-family: var(--font); font-size: .78rem; color: var(--muted); }
.price-box__note { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.price-box .btn + .btn { margin-top: 10px; }
.price-box__trust { font-size: .76rem; color: var(--muted); margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line-soft); }

.side-note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-note h3 { font-size: 1rem; margin-bottom: 10px; }
.side-note p { font-size: .88rem; color: var(--ink-2); margin-bottom: 10px; }
.side-note p:last-child { margin-bottom: 0; }
.side-note--cta { background: #fff; border-color: var(--brand-mist); }
.side-note--accent { background: var(--bg-mist); border-color: var(--brand-mist); }
.side-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.side-links a { font-size: .89rem; }
.side-steps { font-size: .88rem; color: var(--ink-2); padding-left: 1.1em; }
.side-steps li { margin-bottom: 8px; }

/* 其它目的地：横向胶囊带
   （原来放在右栏的长列表会把整行拉到 1000px 高，正文只有 260px，中间留一大片空白） */
.dest-more__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.dest-more__head h2 { margin: 4px 0 0; }
.dest-more__chips { gap: 9px; }
.dest-more .chip { background: #fff; }
.dest-more .chip:hover { background: var(--brand-soft); }
@media (max-width: 620px) {
  .dest-more__head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

.fact-list { margin: 0; font-size: .85rem; }
.fact-list dt { color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; margin-top: 12px; }
.fact-list dt:first-child { margin-top: 0; }
.fact-list dd { margin: 2px 0 0; color: var(--ink-2); word-break: break-word; }

.contact-list { list-style: none; padding: 0; margin: 0; font-size: .89rem; }
.contact-list li { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list span { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }

/* ---------------------------------------------------------------- faq */
.faq-layout { display: grid; grid-template-columns: 250px 1fr; gap: 46px; align-items: start; }
.faq-nav { position: sticky; top: 96px; }
.faq-nav h3 { font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.faq-nav ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 2px; }
.faq-nav a { display: flex; justify-content: space-between; padding: 8px 11px; border-radius: 8px; font-size: .89rem; color: var(--ink-2); }
.faq-nav a:hover { background: var(--bg-soft); color: var(--brand); }
.faq-nav em { font-style: normal; color: var(--muted); font-size: .82rem; }

.faq-group { margin-bottom: 38px; }
.faq-group h2 { font-size: 1.28rem; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; padding: 18px 34px 18px 0; font-weight: 600; font-size: 1.01rem; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 6px; top: 15px; color: var(--brand); font-size: 1.4rem; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item__body { padding: 0 34px 20px 0; }
.faq-item__body p { font-size: .93rem; color: var(--ink-2); }
.faq-list--two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

/* --------------------------------------------------------------- posts */
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.post__body { font-size: 1.03rem; }
.post__aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.post__meta { font-size: .84rem; color: rgba(255,255,255,.75); margin: 0; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .18s ease; }
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.post-card__media { display: block; aspect-ratio: 3/2; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px 22px 24px; }
.post-card__cat { font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.post-card h2, .post-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.post-card h2 a, .post-card h3 a { color: var(--ink); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--brand); }
.post-card p { font-size: .88rem; color: var(--muted); margin-bottom: 10px; }
.post-card__meta { font-size: .78rem; color: var(--muted); }

/* ------------------------------------------------------------- thanks */
.thanks { max-width: 660px; text-align: center; margin: 0 auto; }
.thanks__mark { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: #EDF7F1; color: var(--ok); font-size: 1.9rem; font-weight: 700; }
.thanks__mark--404 { background: var(--brand-soft); color: var(--brand); font-size: 1.2rem; font-family: var(--font); }
.thanks__ref { display: inline-block; padding: 8px 18px; background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 999px; font-size: .9rem; }
.thanks p { color: var(--ink-2); }
.thanks__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* --------------------------------------------------------- tailor/contact */
.tailor-layout, .contact-layout { display: grid; grid-template-columns: 1.4fr .85fr; gap: 46px; align-items: start; }
.tailor-side, .contact-side { display: flex; flex-direction: column; gap: 16px; }

/* ------------------------------------------------------------- footer */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: 62px 0 0; margin-top: 0; font-size: .89rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr; gap: 36px; padding-bottom: 44px; }
.footer__col h4 { color: rgba(255,255,255,.55); margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: rgba(255,255,255,.78); }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__col p { font-size: .85rem; line-height: 1.6; }
.brand--footer { margin-bottom: 16px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: rgba(255,255,255,.55); }
.footer__meta { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer__tagline { font-size: .82rem; color: var(--gold); letter-spacing: .01em; margin-bottom: 10px; }
/* 社交图标（页脚 / 联系页共用）。图标本身是内联 SVG，这里只管外圈圆钮。 */
.social-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.social-link { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line); color: var(--brand); background: #fff; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.social-link:hover { border-color: var(--brand); background: var(--brand); color: #fff; text-decoration: none; }
.social-icon { display: block; width: 19px; height: 19px; }
/* 深色底（页脚）里换成浅描边，不然圆钮会糊在深蓝上 */
.site-footer .social-link { background: transparent; border-color: rgba(255,255,255,.24); color: rgba(255,255,255,.86); }
.site-footer .social-link:hover { background: #fff; border-color: #fff; color: var(--bg-dark); }
.footer__contact li { font-size: .85rem; }
.footer__hours { color: rgba(255,255,255,.5); }
.footer__address { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 12px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; color: rgba(255,255,255,.48); }

/* ---------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: rgba(8,14,22,.94); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 30px; cursor: zoom-out;
}
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__cap {
  max-width: 860px; margin: 0; text-align: center;
  color: rgba(255,255,255,.82); font-size: .94rem; line-height: 1.6;
}
.lightbox__cap strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 5px; }

/* --------------------------------------------------------- responsive */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .hero__copy h1 { max-width: 22ch; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__item:nth-child(3) { border-right: 0; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 76px; right: 0; bottom: auto; left: 0; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 22px 26px;
    gap: 8px; box-shadow: var(--shadow-lg); display: none; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 13px 4px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .main-nav__cta { margin-top: 12px; }
  .main-nav__quick { display: block; padding-top: 14px; border-top: 1px solid var(--line); }
  .main-nav__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }

  .grid--3, .grid--2, .two-col, .tour-layout, .tours-layout, .faq-layout, .post-layout,
  .tailor-layout, .contact-layout, .legal-layout, .step, .steps, .two-lists, .faq-list--two { grid-template-columns: 1fr; }
  .steps { gap: 30px; }
  .filters, .tour-side, .faq-nav, .post__aside, .anchor-nav { position: static; }
  .section { padding: 52px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dest-block__media { min-height: 0; aspect-ratio: 16/10; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item { border-right: 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--4 { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero__inner { padding: 52px 22px; }
  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; }
  .panel { padding: 22px 18px; }
  .article-row img { width: 84px; height: 62px; }
  .dest-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   首屏快捷询盘表单（线路模块关闭时替代「搜索线路」卡片）
   ============================================================ */
.hero-inquiry__sub {
  font-size: .9rem; line-height: 1.6; color: var(--muted);
  margin: -6px 0 16px;
}
.hero-inquiry__grid { grid-template-columns: 1fr 1fr; }
.hero-inquiry__grid .field--search { grid-column: 1 / -1; }
.hero-inquiry__note {
  font-size: .77rem; line-height: 1.55; color: var(--muted);
  margin: 12px 0 0; text-align: center;
}

@media (max-width: 620px) {
  .hero-inquiry__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   目的地「游玩地点」卡片（名称 + 一句话介绍）
   ============================================================ */
.place-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  transition: .18s ease;
}
.place-card::before {
  content: ""; position: absolute; left: 22px; top: 0;
  width: 34px; height: 3px; background: var(--brand);
  border-radius: 0 0 3px 3px;
}
.place-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.place-card__n {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; color: var(--brand);
  margin-bottom: 9px;
}
.place-card h3 { font-size: 1.06rem; line-height: 1.35; margin: 0 0 8px; }
.place-card p { font-size: .92rem; line-height: 1.62; color: var(--ink-2); margin: 0; }

/* 小号灰色说明文字 */
.muted-note { font-size: .86rem; color: var(--muted); margin-top: 18px; }

/* ============================================================
   资质卡片（关于页 + 首页）
   HTML 设计版：清晰、可改字、后台「站点设置 → Credential card」维护
   ============================================================ */
.cred-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ------------------------------------------------ 卡头 */
.cred-card__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding: 20px 30px;
  background: linear-gradient(118deg, var(--bg-dark) 0%, var(--bg-dark-2) 62%, #24405A 100%);
  color: #fff;
}
.cred-card__brand { display: flex; align-items: center; gap: 14px; }
.cred-card__mark {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(140deg, var(--gold), #A87A2F);
  color: #fff; font-family: var(--font-display);
  font-size: .86rem; font-weight: 700; letter-spacing: .04em;
}
.cred-card__names strong { display: block; font-size: 1.06rem; font-family: var(--font-display); }
.cred-card__names small { display: block; font-size: .78rem; color: rgba(255,255,255,.62); margin-top: 2px; }
.cred-card__slogan {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.68); white-space: nowrap;
}

/* ------------------------------------------------ 主体 */
.cred-card__main { padding: 32px 30px 26px; }
.cred-card__headline {
  font-size: 1.78rem; font-size: clamp(1.32rem, 2.3vw, 1.78rem);
  line-height: 1.26; margin: 0 0 10px; max-width: 42ch;
}
.cred-card__subline {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.cred-card__body { color: var(--ink-2); font-size: .97rem; line-height: 1.7; max-width: 84ch; }
.cred-card__body p:last-child { margin-bottom: 0; }

/* ------------------------------------------------ 优势 */
.cred-card__badges {
  list-style: none; margin: 0; padding: 0 30px 30px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cred-card__badges li {
  padding: 20px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cred-card__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  margin-bottom: 13px;
}
.cred-card__icon svg { width: 21px; height: 21px; }
.cred-card__badges strong { display: block; font-size: .96rem; margin-bottom: 6px; font-family: var(--font-display); }
.cred-card__badges span { font-size: .86rem; line-height: 1.56; color: var(--muted); }

/* ------------------------------------------------ 数字条 */
.cred-card__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
}
.cred-card__stat { background: #fff; padding: 22px 26px; }
.cred-card__stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.62rem; line-height: 1.1; color: var(--brand);
}
.cred-card__stat span { display: block; font-size: .84rem; color: var(--muted); margin-top: 5px; }

/* ------------------------------------------------ 卡脚 */
.cred-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding: 15px 30px;
  background: var(--bg-dark); color: rgba(255,255,255,.72);
  font-size: .84rem;
}
.cred-card__scanlink {
  color: var(--gold); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; cursor: zoom-in;
}
.cred-card__scanlink:hover { color: #DDB268; }

/* ------------------------------------------------ 证件扫描件 */
.cred-scan {
  margin: 22px 0 0; padding: 12px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.cred-scan__link { position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.cred-scan__link img { display: block; width: 100%; height: auto; }
.cred-scan__zoom {
  position: absolute; right: 12px; bottom: 12px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(20, 33, 47, .8); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(5px); transition: .18s ease;
}
.cred-scan__link:hover .cred-scan__zoom,
.cred-scan__link:focus .cred-scan__zoom { opacity: 1; transform: none; }
.cred-scan__caption { padding: 16px 10px 5px; font-size: .92rem; line-height: 1.62; color: var(--ink-2); }
.cred-scan__caption p { margin: 0; }

/* 关于页「Licensed / Registered / Verifiable」三条 */
.credential__facts {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.credential__facts li {
  padding: 17px 19px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.credential__facts strong {
  display: block; margin-bottom: 5px;
  font-family: var(--font-display); font-size: 1rem; color: var(--brand);
}
.credential__facts span { font-size: .89rem; line-height: 1.58; color: var(--ink-2); }

/* 首页版本：居中、窄一点 */
.credential-band { background: var(--bg-soft); }
.credential-band .cred-card,
.credential-band .cred-scan { max-width: 1080px; margin-left: auto; margin-right: auto; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center > div { max-width: 74ch; }
.section-head--center p { margin-left: auto; margin-right: auto; }
.credential-band__actions {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-top: 28px;
}

@media (hover: none) {
  .cred-scan__zoom { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .cred-card__badges { grid-template-columns: repeat(2, 1fr); }
  .cred-card__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .credential__facts { grid-template-columns: 1fr; gap: 12px; }
  .cred-card__main { padding: 26px 22px 20px; }
  .cred-card__badges { padding: 0 22px 24px; }
  .cred-card__top, .cred-card__foot { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 620px) {
  .cred-card__badges { grid-template-columns: 1fr; }
  .cred-card__stat { padding: 18px 20px; }
  .cred-card__slogan { display: none; }
}

/* ============================================================
   团队 / 团建照片
   —— Our Team 页（顶部大图 + 九宫格）与「关于我们」页的缩影都走这里。
   —— 所有卡片等宽等高：图片统一 4:3 裁切，文字区固定两行，因此无论
      照片横竖、说明长短，每行卡片都对齐（这是「规律排版」的关键）。
   ============================================================ */

/* --------------------------------------------------- 顶部大图 */
.team-feature {
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.team-feature__link {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: zoom-in;
}
.team-feature__link img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.team-feature__zoom {
  position: absolute; right: 14px; bottom: 14px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(20, 33, 47, .8); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(5px);
  transition: .18s ease;
}
.team-feature__link:hover .team-feature__zoom,
.team-feature__link:focus .team-feature__zoom { opacity: 1; transform: none; }

.team-credit {
  margin: 0;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); white-space: nowrap;
}

/* ------------------------------------------------------- 照片墙 */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-grid--3 { grid-template-columns: repeat(3, 1fr); }

.team-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card[hidden] { display: none; }

.team-card__link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: zoom-in;
}
.team-card__link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover .team-card__link img { transform: scale(1.035); }

.team-card__zoom {
  position: absolute; right: 10px; bottom: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(20, 33, 47, .78); color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(4px);
  transition: .18s ease;
}
.team-card:hover .team-card__zoom,
.team-card__link:focus .team-card__zoom { opacity: 1; transform: none; }

.team-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.team-card__body h3 { font-size: 1.02rem; line-height: 1.35; margin: 0; }
.team-card__meta {
  margin: 0;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand);
}
.team-card__cap {
  margin: 0;
  font-size: .88rem; line-height: 1.58; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------- 分类筛选条 */
.team-filter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.team-filter .chip {
  font: inherit; font-size: .82rem;
  cursor: pointer; appearance: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.team-filter .chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.team-filter .chip.is-active em { color: rgba(255,255,255,.75); }

.team-empty { margin: 0; padding: 40px 0; text-align: center; color: var(--muted); }

@media (hover: none) {
  .team-feature__zoom, .team-card__zoom { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .team-grid, .team-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 620px) {
  .team-grid, .team-grid--3 { grid-template-columns: 1fr; }
  .team-card__cap { -webkit-line-clamp: 4; }
  .team-feature { padding: 8px; }
}

/* ============================================================
   资质 / 荣誉 / 奖牌 —— Credentials 独立一栏
   —— 页面由三段顺序排开：顶部大图、荣誉墙、奖牌画廊。三段都是标准
      .section（自带上下内边距），因此不会与别的区块叠在一起。
   —— 画廊卡片全部 4:5 等宽等高：图片区固定比例、文字区固定行数，
      所以一行里的卡片永远对齐，中英文长短都不会把版式撑歪。
   ============================================================ */

/* ------------------------------ 段落右上角的小标签（年份 · 颁发方） */
.cred-meta {
  margin: 0;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold);
  text-align: right;
}

/* ------------------------------------------ 顶部大图（全国可接待） */
.cred-feature {
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cred-feature__link {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: zoom-in;
}
.cred-feature__link img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.cred-feature__zoom {
  position: absolute; right: 14px; bottom: 14px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(20, 33, 47, .8); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(5px);
  transition: .18s ease;
}
.cred-feature__link:hover .cred-feature__zoom,
.cred-feature__link:focus .cred-feature__zoom { opacity: 1; transform: none; }
.cred-feature__foot {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  padding: 14px 6px 4px;
}
.cred-feature__foot strong { font-family: var(--font-display); font-size: 1.04rem; color: var(--ink); }
.cred-feature__cn {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; color: var(--gold);
}

/* ----------------------------------------- 四个数字（500+ / 24h …） */
.cred-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cred-facts li { background: #fff; padding: 20px 22px; }
.cred-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem; line-height: 1.1;
  color: var(--brand);
  margin-bottom: 4px;
}
.cred-facts span { display: block; font-size: .84rem; line-height: 1.5; color: var(--muted); }

/* ------------------------------------------------ 荣誉墙（宽幅图） */
.cred-honors {
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cred-honors__link {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: zoom-in;
}
.cred-honors__link img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.cred-honors__zoom {
  position: absolute; right: 14px; bottom: 14px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(20, 33, 47, .8); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(5px);
  transition: .18s ease;
}
.cred-honors__link:hover .cred-honors__zoom,
.cred-honors__link:focus .cred-honors__zoom { opacity: 1; transform: none; }

/* ------------------------------------------------ 奖牌画廊 */
.cred-filter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cred-filter .chip {
  font: inherit; font-size: .82rem;
  cursor: pointer; appearance: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.cred-filter .chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.cred-filter .chip.is-active em { color: rgba(255,255,255,.75); }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.cred-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cred-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cred-item[hidden] { display: none; }

.cred-item__link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: zoom-in;
}
.cred-item__link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cred-item:hover .cred-item__link img { transform: scale(1.03); }

.cred-item__zoom {
  position: absolute; right: 10px; bottom: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(20, 33, 47, .78); color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(4px);
  transition: .18s ease;
}
.cred-item:hover .cred-item__zoom,
.cred-item__link:focus .cred-item__zoom { opacity: 1; transform: none; }

.cred-item__body { padding: 15px 16px 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.cred-item__year {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
}
.cred-item__body h3 {
  font-size: .97rem; line-height: 1.34; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.cred-item__cn {
  margin: 0;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  color: var(--brand);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.cred-item__issuer {
  margin: 0;
  font-size: .74rem; letter-spacing: .02em; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cred-item__cap {
  margin: 6px 0 0;
  font-size: .84rem; line-height: 1.55; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* 画廊标题下的主体声明：把「签合同 / 开发票 / 承担行程的是哪家公司」写在奖项旁边 */
.cred-entity {
  margin: 10px 0 0; font-size: .84rem; line-height: 1.65; color: var(--muted); max-width: 64ch;
}
.cred-entity strong { color: var(--brand); font-weight: 700; }
.cred-entity span { margin-left: 6px; }

.cred-empty { margin: 0; padding: 40px 0; text-align: center; color: var(--muted); }

/* ------------------------------------------------ 许可证原件（可点开放大） */
/* 客户发来的翻拍件本身是"浅色卡纸 + 白底"，所以这里给它一个白框 + 细边，
   让它读起来像一份文件，而不是一张随手拍的照片。 */
.license-doc {
  margin: 30px 0 24px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.license-doc__link {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
}
.license-doc__link img { display: block; width: 100%; height: auto; }
.license-doc__zoom {
  position: absolute; right: 14px; bottom: 14px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(20, 33, 47, .8); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(5px);
  transition: .18s ease;
}
.license-doc__link:hover .license-doc__zoom,
.license-doc__link:focus .license-doc__zoom { opacity: 1; transform: none; }
.license-doc figcaption { margin-top: 12px; font-size: .85rem; line-height: 1.62; color: var(--muted); }
.license-doc figcaption strong { color: var(--ink-2); }

@media (hover: none) {
  .cred-feature__zoom, .cred-honors__zoom, .cred-item__zoom,
  .license-doc__zoom { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .cred-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .cred-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-meta { text-align: left; }
}

@media (max-width: 620px) {
  .cred-grid { grid-template-columns: 1fr; }
  .cred-facts { grid-template-columns: 1fr; }
  .cred-feature, .cred-honors { padding: 8px; }
  .cred-item__cap { -webkit-line-clamp: 5; }
}

/* ---- 导航多了一栏之后，中等屏幕上收紧一点间距，避免换行 ---- */
/* ---- 导航 9 项（加 Services 之后）：
   >1240px 放得下完整导航；901–1240px 直接切汉堡菜单，避免 9 项挤到 Plan My Trip 溢出。
   只切导航相关规则，不动 ≤900px 那一整套版式规则。 ---- */
@media (min-width: 901px) and (max-width: 1240px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 76px; right: 0; bottom: auto; left: 0; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 22px 26px;
    gap: 8px; box-shadow: var(--shadow-lg); display: none;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a {
    padding: 13px 4px; border-bottom: 1px solid var(--line-soft);
    border-radius: 0; font-size: .95rem;
  }
  .main-nav__cta { margin-top: 12px; }
  .main-nav__quick { display: block; padding-top: 14px; border-top: 1px solid var(--line); }
  .main-nav__label {
    font-size: .74rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--muted); margin-bottom: 10px;
  }
}

/* ================================================ 平台好评墙（/reviews） */
/* 卡片：中文截图（完整性凭证）+ 英文翻译摘要。
   截图一律 contain、不裁切——一个字都不能丢；横图上下留白由浅色底兜住。 */

.rev-filter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.rev-filter .chip {
  font: inherit; font-size: .82rem;
  cursor: pointer; appearance: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.rev-filter .chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.rev-filter .chip.is-active em { color: rgba(255,255,255,.75); }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.rev-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.rev-card[hidden] { display: none; }

.rev-card__shot {
  position: relative;
  display: block;
  /* 统一 4:5 画框：与站内其它卡片同规格，因此一行里的卡片永远等高对齐 */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;             /* 截图本身是白底，用同色兜住横图上下留白，不显脏 */
  border-bottom: 1px solid var(--line-soft);
  cursor: zoom-in;
}
.rev-card__shot img {
  width: 100%; height: 100%;
  object-fit: contain;          /* 完整显示，绝不裁掉评价文字 */
  object-position: center;      /* 竖图几乎填满；较宽的截图上下留白均分，视觉更平衡 */
  transition: transform .4s ease;
}
.rev-card:hover .rev-card__shot img { transform: scale(1.015); }

.rev-card__zoom {
  position: absolute; right: 10px; bottom: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(20, 33, 47, .78); color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  opacity: 0; transform: translateY(4px);
  transition: .18s ease;
}
.rev-card:hover .rev-card__zoom,
.rev-card__shot:focus .rev-card__zoom { opacity: 1; transform: none; }

.rev-card__body {
  padding: 15px 16px 18px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}

.rev-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.rev-badge {
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; white-space: nowrap;
}
.rev-badge--ctrip { background: #2577E3; }   /* 携程蓝 */
.rev-badge--fliggy { background: #FF6A00; }  /* 飞猪橙 */
.rev-badge--other { background: var(--ink-2); }

.rev-stars { display: inline-flex; align-items: center; gap: 1px; color: var(--gold); font-size: .84rem; letter-spacing: .02em; }
.rev-stars i { font-style: normal; }
.rev-stars em { font-style: normal; font-weight: 700; color: var(--ink); margin-left: 5px; font-size: .84rem; }

.rev-card__quote {
  margin: 0;
  font-size: .9rem; line-height: 1.6; color: var(--ink-2);
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.rev-card__quote::before { content: '\201C'; }
.rev-card__quote::after { content: '\201D'; }

.rev-card__meta {
  margin: auto 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 5px 12px;
  font-size: .75rem; color: var(--muted);
}
.rev-card__meta strong { color: var(--ink-2); font-weight: 600; }

.rev-card__foot {
  margin: 0; padding-top: 9px;
  border-top: 1px solid var(--line-soft);
  font-size: .74rem; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}

.rev-empty { margin: 0; padding: 40px 0; text-align: center; color: var(--muted); }

@media (hover: none) {
  .rev-card__zoom { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .rev-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .rev-card__quote { -webkit-line-clamp: 4; }
}

@media (max-width: 620px) {
  .rev-grid { grid-template-columns: 1fr; }
  .rev-card__quote { -webkit-line-clamp: 5; }
  .rev-card__shot { aspect-ratio: 3 / 4; }
}

/* ============================================================
   中国风元素 Chinese accents
   纹样：海水江崖水纹 / 如意云纹 / 回纹；点缀：描金细线与品牌方块
   全部用内联 SVG data-uri 与纯 CSS 实现，不加载任何外链资源。
   ============================================================ */

/* 1) 章节标题下的「如意云头」小划线 */
.section-head h2,
.section-head--center h2 { position: relative; padding-bottom: 18px; }
.section-head h2::after,
.section-head--center h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 96px; height: 16px; pointer-events: none;
  background: var(--cn-cloud) left center / 96px 27px no-repeat;
  opacity: .55;
}
.section-head--center h2::after { left: 50%; transform: translateX(-50%); }

/* 2) 首屏底部的海水江崖纹 */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42px; z-index: 2;
  background: var(--cn-wave-light) bottom center / 80px 26px repeat-x;
  opacity: .45; pointer-events: none;
}

/* 3) 页脚顶部的水纹 */
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 26px;
  background: var(--cn-wave-light) top center / 80px 26px repeat-x;
  opacity: .28; pointer-events: none;
}

/* 4) 浅蓝区块的回纹暗纹（压在内容之下，几乎只是手感） */
.section--soft { position: relative; }
.section--soft::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; pointer-events: none; z-index: 0;
  background: var(--cn-key) top left / 56px 56px repeat;
  opacity: .05;
}
.section--soft > .container { position: relative; z-index: 1; }

/* 5) 询询条（CTA）：回纹底 + 底部水纹 */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; pointer-events: none; z-index: 0;
  background: var(--cn-key-light) top left / 56px 56px repeat;
  opacity: .09;
}
.cta-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px; pointer-events: none;
  background: var(--cn-wave-light) bottom center / 80px 26px repeat-x;
  opacity: .3;
}
.cta-band__inner { position: relative; z-index: 1; }

/* 6) 深色区块上下描金细线 */
.section--dark,
.section--thanks { border-top: 1px solid rgba(201,162,90,.3); border-bottom: 1px solid rgba(201,162,90,.3); }

/* 7) 品牌方块描金内框 */
.brand__mark { box-shadow: inset 0 0 0 1px rgba(201,162,90,.55); }
.brand--footer .brand__mark { box-shadow: inset 0 0 0 1px rgba(201,162,90,.5); }

/* 8) 顶栏与页脚之间的中式收边 */
.topbar { border-bottom: 1px solid rgba(201,162,90,.22); }

/* 9) 卡片悬停转为青花描边 */
.dest-card,
.tour-card,
.rev-card { border-color: var(--line); }
.dest-card:hover,
.tour-card:hover,
.rev-card:hover { border-color: var(--brand-mist); }

/* 10) 移动端收紧标题装饰，避免挤压 */
@media (max-width: 620px) {
  .section-head h2,
  .section-head--center h2 { padding-bottom: 14px; }
  .section-head h2::after,
  .section-head--center h2::after { width: 72px; background-size: 72px 20px; height: 12px; }
}

/* 11) 页面头部（page-hero）的中式纹理 */
.page-hero--dark,
.page-hero--image { overflow: hidden; }

.page-hero--dark::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; z-index: 0; pointer-events: none;
  background: var(--cn-key-light) top left / 56px 56px repeat;
  opacity: .07;
}
.page-hero--dark > .container { position: relative; z-index: 2; }

.page-hero--dark::after,
.page-hero--image::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px; z-index: 1; pointer-events: none;
  background: var(--cn-wave-light) bottom center / 80px 26px repeat-x;
  opacity: .38;
}

.page-hero:not(.page-hero--dark):not(.page-hero--image) {
  position: relative; overflow: hidden;
}
.page-hero:not(.page-hero--dark):not(.page-hero--image)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 22px; pointer-events: none;
  background: var(--cn-wave) bottom center / 80px 26px repeat-x;
  opacity: .22;
}

/* 12) 首页数字条：换成描金收边 + 淡回纹 */
.trust {
  border-bottom: 1px solid rgba(201,162,90,.3);
  position: relative; overflow: hidden;
}
.trust::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; pointer-events: none; z-index: 0;
  background: var(--cn-key) top left / 56px 56px repeat;
  opacity: .05;
}
.trust__grid { position: relative; z-index: 1; }

/* ============================================================
   服务内容 /services
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid--single { grid-template-columns: minmax(0, 660px); }

.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 22px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover { border-color: var(--brand-mist); box-shadow: var(--shadow); transform: translateY(-2px); }

.svc-card__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.svc-card__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(201,162,90,.35);
}
.svc-icon { width: 24px; height: 24px; }
.svc-card__titles { min-width: 0; }
.svc-card__titles h3 { margin: 0 0 5px; font-size: 1.06rem; line-height: 1.3; }

.svc-card__badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--gold-soft); color: #7A5A1E;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

.svc-card__summary { margin: 0 0 14px; font-size: .93rem; color: var(--ink-2); }

.svc-card__best {
  margin: auto 0 0; padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: .8rem; color: var(--muted);
}
.svc-card__best span {
  display: inline-block; margin-right: 6px;
  font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
}

.tick-list--tight { margin: 0 0 14px; font-size: .88rem; }
.tick-list--tight li { margin-bottom: 6px; }

/* 纯玩承诺 */
.promise {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; gap: 22px;
  background: var(--bg-mist); border: 1px solid var(--brand-mist);
  border-radius: var(--radius-lg); padding: 28px 30px;
}
.promise::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; pointer-events: none; z-index: 0;
  background: var(--cn-key) top left / 56px 56px repeat;
  opacity: .05;
}
.promise__mark,
.promise__body { position: relative; z-index: 1; }
.promise__mark {
  flex: none; width: 58px; height: 58px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  box-shadow: inset 0 0 0 1px rgba(201,162,90,.5);
}
.promise__mark .svc-icon { width: 30px; height: 30px; }
.promise__body h2 { margin-bottom: 8px; }
.promise__body p { margin: 0 0 9px; color: var(--ink-2); }
.promise__note { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid,
  .svc-grid--single { grid-template-columns: 1fr; }
  .promise { flex-direction: column; gap: 16px; padding: 24px 22px; }
}

/* ==========================================================================
   随时可询盘（quick-cta）
   桌面：右下角浮动胶囊；手机（≤900px）：贴底通栏。
   什么时候出现由 main.js 决定（滚过首屏后加 .is-visible）。
   手机上访客翻到页面中段就找不到询盘入口，这是最贵的一类流失。
   ========================================================================== */
.quick-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;              /* 高于 sticky header(60)，低于灯箱(200) */
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.quick-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* 感谢页已经提交过了，别再劝人家填一遍 */
.page-thanks .quick-cta { display: none; }

.quick-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .93rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(18, 53, 79, .20);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.quick-cta__btn svg { width: 18px; height: 18px; flex: 0 0 18px; }
.quick-cta__btn--main { background: var(--brand); color: #fff; }
.quick-cta__btn--main:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18, 53, 79, .28);
}
.quick-cta__btn--wa { background: #fff; color: #14713D; border-color: var(--line); }
.quick-cta__btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18, 53, 79, .24);
}

@media (max-width: 900px) {
  .quick-cta {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 9px;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(18, 53, 79, .10);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
  }
  .quick-cta.is-visible { transform: none; }
  .quick-cta__btn {
    flex: 1 1 0;
    justify-content: center;
    padding: 14px 12px;
    border-radius: 11px;
    font-size: .95rem;
    box-shadow: none;
  }
  .quick-cta__btn--main:hover,
  .quick-cta__btn--wa:hover { transform: none; box-shadow: none; }
  /* 贴底通栏会压住页脚最后一行，等高地给 body 让出空间 */
  body { padding-bottom: 78px; }
}

/* 表单里的内联勾选框（例如「日期灵活」） */
.check-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  font-size: .86rem;
  color: var(--ink-2);
  cursor: pointer;
}
.check-inline input[type=checkbox] {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 0;
  padding: 0;
  accent-color: var(--brand);
  cursor: pointer;
}
.check-inline span { margin: 0; text-transform: none; letter-spacing: 0;
  font-size: .86rem; font-weight: 500; color: var(--ink-2); }

/* 并排的小输入框（成人 / 儿童）：窄屏里两个数字框并排，
   不各给一个小标题的话访客分不清哪个该填成人。 */
.field-labelled { display: block; }
.field .field-labelled > em {
  display: none;
  font-style: normal;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
  @media (max-width: 620px) {
    .field .field-labelled > em { display: block; }
  }
}

/* ==================================================================== 兼容兜底
   Compatibility fallbacks for older browser engines
   --------------------------------------------------------------------
   aspect-ratio 要 Chrome 88 / Safari 15 才认识。国内一批双核浏览器
   （360、QQ、UC 的旧内核）还不认它，后果是：卡片容器的高度塌成 0，
   整张卡片的内容直接看不见 —— 不是"样式差一点"，是"打不开内容"。
   下面用 @supports 兜一层：只有不认识 aspect-ratio 的浏览器才执行，
   现代浏览器（Chrome / Edge / Safari / Firefox 当前版本）完全不受影响。
   做法是它的老前辈：容器 height:0 + padding-bottom 撑出比例，
   图片绝对定位铺满（配合已补好的 top/right/bottom/left 四边定位）。
   -------------------------------------------------------------------- */
@supports not (aspect-ratio: 1 / 1) {
  .dest-card,
  .dest-block__media,
  .post-card__media,
  .tour-card__media,
  .team-card__link,
  .cred-item__link,
  .rev-card__shot {
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .dest-card { padding-bottom: 125%; }              /* 4 : 5   */
  .post-card__media,
  .tour-card__media { padding-bottom: 66.6667%; }   /* 3 : 2   */
  .dest-block__media { padding-bottom: 62.5%; }     /* 16 : 10 */
  .team-card__link { padding-bottom: 75%; }         /* 4 : 3   */
  .cred-item__link,
  .rev-card__shot { padding-bottom: 125%; }         /* 4 : 5   */

  .dest-card > img,
  .dest-block__media > img,
  .post-card__media > img,
  .tour-card__media > img,
  .team-card__link > img,
  .cred-item__link > img,
  .rev-card__shot > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* 好评截图是「凭证」，任何浏览器下都不裁切（区别于上面按 cover 裁切的卡片图） */
  .rev-card__shot > img { object-fit: contain; }
}

/* ------------------------------------------------- 法律条款页 /privacy /terms
   隐私政策与服务条款。正文较长，左栏读、右栏留给「怎么联系我们」，
   版式刻意跟着 .faq-layout 走，客户改内容不会影响排版。
   ---------------------------------------------------------------- */
.legal-layout { display: grid; grid-template-columns: 1fr 300px; gap: 46px; align-items: start; }
.legal-body .prose { max-width: 74ch; }
/* 条款正文里写「## 小标题」，mini_markdown 会渲染成 h3 —— 所以这里按 h3 做样式 */
.legal-body .prose h3 {
  font-family: var(--font-display); font-size: 1.1rem; margin: 32px 0 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line-soft);
}
.legal-body .prose h3:first-child { margin-top: 0; }
.legal-body .prose h4 { font-size: 1rem; margin-top: 24px; }
.legal-body .prose p, .legal-body .prose li { font-size: .93rem; line-height: 1.72; }
.legal-body .prose ul { margin: 10px 0 16px; }
.legal-updated {
  display: inline-block; margin-bottom: 26px; padding: 7px 14px;
  border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line);
  font-size: .82rem; color: var(--muted);
}
.legal-updated strong { color: var(--ink); }
.legal-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.legal-contact { list-style: none; padding: 0; margin: 10px 0 0; font-size: .88rem; }
.legal-contact li + li { margin-top: 4px; }

/* 表单里的「同意隐私政策」勾选 —— 比普通行内勾选更宽松，两行也能读 */
.check-inline--consent { align-items: flex-start; margin: 4px 0 0; }
.check-inline--consent input[type=checkbox] { margin-top: 2px; }
.check-inline--consent span { line-height: 1.55; }
.check-inline--consent a { color: var(--brand); text-decoration: underline; }
.hero-inquiry__consent { margin: 12px 0 0; }
.hero-inquiry__consent span { font-size: .82rem; }

/* 页脚底部的条款链接 */
.footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__legal a { color: rgba(255,255,255,.62); }
.footer__legal a:hover { color: #fff; }

@media (max-width: 1024px) {
  .legal-side { position: static; }
}
/* 注意：上面那条 .legal-layout 是「独立声明」，写在文件末尾 ——
   它会盖住前面媒体查询里的 grid-template-columns: 1fr（媒体查询不增加优先级）。
   所以窄屏的单列必须在这里显式再写一次，不能只靠前面那份选择器清单。 */
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
}

/* ------------------------------------------------- 线路详情页 /tour/{slug}
   2026-09-14 加厚：行程「展开全部」按钮、沿途目的地卡片、行程时间轴、
   「How we run this trip」四格、本线路客人反馈、侧栏「What happens next」。
   沿用 :root 色板；没有新图片、不引外部字体。
   ⚠️ 本段写在文件末尾 —— 窄屏规则必须在本段之后再写一次 @media 才生效。
   ---------------------------------------------------------------- */

/* 锚点跳转别被 sticky 的头栏 + 锚点导航盖住 */
.tour-main [id] { scroll-margin-top: 118px; }

/* 面板小标题与脚注 */
.panel__head { margin-bottom: 18px; }
.panel__head > h2 { margin-bottom: 0; }
.panel__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.panel__sub { margin: 6px 0 0; font-size: .86rem; color: var(--muted); }
.panel__note {
  margin: 22px 0 0; padding-top: 16px; border-top: 1px solid var(--line-soft);
  font-size: .84rem; line-height: 1.65; color: var(--muted);
}
.panel__note a { color: var(--brand); font-weight: 600; }

/* 行程：左侧时间轴 + 展开/收起指示 */
.itinerary--rail { gap: 9px; }
.itinerary--rail .itin-day { border-left: 3px solid var(--brand-mist); }
.itinerary--rail .itin-day[open] { border-left-color: var(--brand); }
.itin-day summary::after {
  content: '+'; margin-left: auto; padding-left: 12px;
  font-size: 1.2rem; line-height: 1; font-weight: 600; color: var(--muted);
}
.itin-day[open] summary::after { content: '–'; color: var(--brand); }

/* 沿途目的地卡片 */
.route-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.route-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
}
.route-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.route-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.route-card:hover .route-card__media img { transform: scale(1.04); }
.route-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.route-card__region {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 6px;
}
.route-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.route-card__body h3 a { color: var(--ink); }
.route-card__body h3 a:hover { color: var(--brand); }
.route-card__tagline { font-size: .87rem; color: var(--ink-2); margin-bottom: 12px; }
.route-card__meta {
  margin: auto 0 0; padding-top: 10px; border-top: 1px solid var(--line-soft);
  font-size: .78rem; color: var(--muted);
}

/* 「How we run this trip」四格（240px 是刻意的：桌面正好排成 2×2，手机自动单列） */
.assure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.assure__icon {
  display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 12px;
  border-radius: 12px; background: var(--bg-mist); color: var(--brand);
}
.assure__icon .svc-icon { width: 22px; height: 22px; }
.assure h3 { font-size: .98rem; margin-bottom: 6px; }
.assure p { font-size: .87rem; color: var(--ink-2); margin: 0; }
.assure p a { color: var(--brand); text-decoration: underline; }

/* 本线路客人反馈（卡片样式复用 .review） */
.review-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

/* 侧栏：What happens next */
.side-note .side-steps { margin: 0; }
.side-note .side-steps li:last-child { margin-bottom: 0; }
.side-note .muted.small { margin: 12px 0 0; }

/* ---- 窄屏（写在本段之后才压得住上面，理由见文件顶部说明） ---- */
@media (max-width: 900px) {
  .panel__head--row { align-items: flex-start; }
}
@media (max-width: 620px) {
  .route-grid { grid-template-columns: 1fr; }
  .route-card__media { aspect-ratio: 16 / 9; }
  .tour-main [id] { scroll-margin-top: 92px; }
}

/* ------------------------------------------------- 常见走法 / 站序
   2026-09-15 新增：「大家怎么玩中国」模块（app/route-patterns.php 的内容）
   + 线路详情页的站序号。文案在 PHP 里，这里只管排版。
   ⚠️ 本段写在文件末尾 —— 窄屏规则必须在本段最后再写一次 @media 才生效。
   ---------------------------------------------------------------- */

/* 站序号：线路详情页「Where you'll go」卡片左上角的 1/2/3 */
.route-card__step {
  position: absolute; z-index: 2; top: 10px; left: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(18,53,79,.88); color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: 0;
}

/* 站序条：1 北京 → 2 西安 → 3 上海 */
.route-path { margin: 0 0 18px; font-size: .93rem; font-weight: 600; color: var(--ink); line-height: 1.6; }
.route-path__arrow { color: var(--brand); font-weight: 700; padding: 0 2px; }
.route-path--list { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 20px; padding: 0; list-style: none; }
.route-path--list li { display: flex; align-items: center; gap: 10px; }
.route-path--list li:not(:last-child)::after { content: '\2192'; color: var(--brand); font-weight: 700; }
.route-path--list a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 16px 6px 6px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-soft); font-size: .89rem; font-weight: 600; color: var(--ink);
}
.route-path--list a:hover { border-color: var(--brand); color: var(--brand); }
.route-path__num {
  display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: .74rem; font-weight: 700;
}

/* 走法卡片 */
.route-patterns { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.route-pattern {
  display: flex; flex-direction: column;
  padding: 26px 28px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.route-pattern__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.route-pattern__name { margin: 0 0 4px; font-size: 1.08rem; font-weight: 700; color: var(--ink); }
.route-pattern__days {
  flex: none; padding: 4px 11px; border-radius: 999px;
  background: var(--bg-mist); color: var(--brand);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.route-pattern > p { font-size: .9rem; color: var(--ink-2); margin: 0; }
.route-pattern .route-path { margin: 12px 0 14px; font-size: .95rem; }
.route-pattern__sub {
  margin: 18px 0 10px; font-size: .76rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted);
}
.route-pattern .tick-list li { font-size: .87rem; margin-bottom: 8px; }
.route-pattern__suits {
  margin: auto 0 0; padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: .85rem; color: var(--ink-2);
}
.route-pattern__suits strong { color: var(--ink); }
.route-patterns__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }

/* 默认（在正文里）的走法卡片：不要边框、不要白底，跟着面板走 */
.route-pattern--inline { padding: 0; background: transparent; border: 0; }
.route-pattern--inline .route-path { margin: 10px 0 14px; }

/* -------------------------------------------------- 通用提示条
   /safety 页与走法模块共用。金色是刻意的：说明性文字，不是警告。 */
.callout {
  padding: 18px 20px; margin: 0;
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(185,139,62,.07);
  font-size: .86rem; line-height: 1.7; color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout a { color: var(--brand); font-weight: 600; }
.callout--brand { border-left-color: var(--brand); background: var(--bg-mist); }

/* -------------------------------------------------- /safety 安全保障页 */
.safety-band {
  padding: 34px 34px 30px;
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius); background: var(--bg-soft);
}
.safety-band__head { max-width: 720px; margin-bottom: 26px; }
.safety-band__head h2 { margin-bottom: 8px; }
.safety-band__head p { color: var(--ink-2); margin: 0; }
.safety-band__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.safety-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.safety-step { display: flex; gap: 16px; align-items: flex-start; }
.safety-step__n {
  flex: none; display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: .9rem;
}
.safety-step h3 { margin: 4px 0 6px; font-size: 1rem; }
.safety-step p { margin: 0; font-size: .89rem; color: var(--ink-2); }
.safety-step p + p { margin-top: 8px; }

@media (max-width: 900px) {
  .route-patterns { grid-template-columns: 1fr; }
  .route-pattern { padding: 22px 20px 20px; }
  .safety-band { padding: 26px 20px 24px; }
}
@media (max-width: 620px) {
  .route-path--list { display: grid; gap: 10px; }
  .route-path--list li { display: flex; }
  .route-path--list li:not(:last-child)::after { content: '\2193'; margin-left: auto; }
  .route-path--list a { flex: 1; }
}

/* 首页 / 目的地页：各地景点名（数量不等，避免千篇一律） */
.dest-card__places { display: block; margin-top: 5px; font-size: .78rem; color: rgba(255,255,255,.9); line-height: 1.45; }
.dest-block__places { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 2px; }
.place-chip { font-size: .76rem; line-height: 1; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-solid); }
.place-chip--more { color: var(--muted); border-style: dashed; }
@media (max-width: 620px) {
  .dest-card__places { font-size: .72rem; }
}

/* ============================ 关于页：集团企业史片 ============================
   封面 + 播放按钮是一个 <button>，视频要点了才由 main.js 插入。
   配色沿用青花瓷色板，不改主色、不动其它版式。 */
.film { margin: 0; }
.film__trigger {
  position: relative; display: block; width: 100%; padding: 0; border: 0; margin: 0;
  background: var(--brand-deep); border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; line-height: 0; box-shadow: 0 18px 40px rgba(19,58,87,.18);
  aspect-ratio: 16 / 9;
}
.film__poster { display: block; width: 100%; height: 100%; object-fit: cover; }
.film__shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(19,58,87,.10) 0%, rgba(19,58,87,.05) 45%, rgba(19,58,87,.55) 100%);
  transition: background .25s ease;
}
.film__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--brand); padding-left: 4px;
  box-shadow: 0 10px 30px rgba(19,58,87,.28); transition: transform .18s ease, background .18s ease;
}
.film__badge {
  position: absolute; left: 18px; bottom: 16px;
  display: inline-block; padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.94); color: var(--brand-deep);
  font-size: .79rem; font-weight: 600; letter-spacing: .01em; line-height: 1;
}
.film__trigger:hover .film__play,
.film__trigger:focus-visible .film__play { transform: translate(-50%,-50%) scale(1.06); }
.film__trigger:hover .film__shade { background: linear-gradient(180deg, rgba(19,58,87,.04) 0%, rgba(19,58,87,.02) 45%, rgba(19,58,87,.5) 100%); }
.film__trigger:focus-visible { outline: 3px solid var(--brand-mist); outline-offset: 3px; }
.film__note { margin: 12px 0 0; font-size: .82rem; color: var(--muted); }
.film video { display: block; width: 100%; border-radius: var(--radius-lg); background: #000; }

@media (max-width: 900px) {
  .film__play { width: 66px; height: 66px; }
  .film__badge { left: 12px; bottom: 12px; padding: 6px 11px; font-size: .74rem; }
}
@media (max-width: 620px) {
  .film__play { width: 56px; height: 56px; }
  .film__badge { font-size: .7rem; }
}
