/* ============================================================
   黔行记 · 样式
   夜空明月 + 喀斯特山峦 + 暖纸时间线
   ============================================================ */

:root {
  --night-0: #0a0f24;
  --night-1: #152246;
  --night-2: #23375f;
  --gold: #d4a95c;
  --gold-deep: #a8843c;
  --gold-light: #e8c37e;
  --paper: #faf7f1;
  --card: #ffffff;
  --ink: #2b2f36;
  --ink-soft: #5b6472;
  --ink-mute: #98a1ad;
  --line: #efe8da;
  --serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  --mtn: 24vh;
  --shadow-card: 0 12px 42px -18px rgba(96, 84, 56, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #fff; }

a { color: inherit; text-decoration: none; }

/* ---------- 顶部阅读进度条 ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  z-index: 100;
  transition: width 0.1s linear;
}

/* ---------- 首屏 ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f3ecd9;
  background: linear-gradient(180deg, var(--night-0) 0%, var(--night-1) 58%, var(--night-2) 100%);
  overflow: hidden;
}

.stars { position: absolute; inset: 0; pointer-events: none; }

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes twinkle {
  50% { opacity: 0.15; }
}

.moon {
  position: absolute;
  top: 13%;
  right: 15%;
  width: clamp(88px, 13vw, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fdf7e6 0%, #f2dfb8 55%, #e2c58c 100%);
  box-shadow:
    0 0 46px 16px rgba(242, 223, 184, 0.30),
    0 0 130px 56px rgba(242, 223, 184, 0.12);
  animation: moon-float 7s ease-in-out infinite alternate;
}

@keyframes moon-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px 10vh;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  color: var(--gold-light);
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero-title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 7.6vw, 76px);
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: #f8f0dd;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.38);
}

.hero-title-text { display: inline-block; }

/* 中秋印章 */
.seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 4.6vw, 44px);
  height: clamp(32px, 4.6vw, 44px);
  margin-left: 10px;
  vertical-align: top;
  transform: rotate(7deg) translateY(3px);
  border: 1.5px solid rgba(255, 236, 226, 0.55);
  border-radius: 7px;
  background: linear-gradient(150deg, #c34a38, #a93a2b);
  color: #fff4e8;
  font-size: clamp(11px, 1.7vw, 13.5px);
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 400;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 2.6vw, 19px);
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  color: #ccd6ec;
  margin-top: 18px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(232, 195, 126, 0.45);
  background: rgba(232, 195, 126, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f0e3c0;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.hero-chip b { color: var(--gold-light); font-weight: 600; }

.hero-dates {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.22em;
  padding-left: 0.22em;
  color: #93a4c6;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: calc(var(--mtn) + 10px);
  transform: translateX(-50%);
  color: rgba(240, 228, 198, 0.65);
  animation: cue-bob 2.2s ease-in-out infinite;
  z-index: 2;
}

@keyframes cue-bob {
  50% { transform: translateX(-50%) translateY(7px); }
}

.mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--mtn);
  pointer-events: none;
  z-index: 1;
}

.mountains svg { display: block; }

.m-far  { fill: #2c4370; opacity: 0.85; }
.m-mid  { fill: #1d2f55; }
.m-near { fill: #111d3d; }

/* ---------- 数据总览 ---------- */
.stats-wrap {
  background: var(--paper);
  padding: 0 20px 14px;
}

.stats {
  max-width: 880px;
  margin: -72px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card);
  border-radius: 20px;
  padding: 28px 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.stat { text-align: center; }

.stat + .stat { border-left: 1px solid var(--line); }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1.1;
}

.stat-num small {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 3px;
  letter-spacing: 0.1em;
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  color: var(--ink-mute);
}

/* ---------- 日期导航 ---------- */
.daynav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(122, 108, 78, 0.12);
}

.daynav {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  gap: 7px;
  padding: 10px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

/* 右侧渐隐，暗示可以横向滑动 */
.daynav-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34px;
  background: linear-gradient(90deg, rgba(250, 247, 241, 0), rgba(250, 247, 241, 0.95));
  pointer-events: none;
}

.daynav::-webkit-scrollbar { display: none; }

.daynav a {
  flex: none;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: rgba(122, 108, 78, 0.08);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.daynav a:hover { background: rgba(122, 108, 78, 0.16); }

.daynav a.active {
  background: var(--ink);
  color: #ecdfbd;
  box-shadow: 0 6px 16px -6px rgba(43, 47, 54, 0.55);
}

.daynav a.gz-link {
  background: transparent;
  border: 1px dashed rgba(168, 132, 60, 0.6);
  color: var(--gold-deep);
}

.daynav a.gz-link:hover { background: rgba(168, 132, 60, 0.1); }

/* ---------- 每日卡片 ---------- */
.timeline-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px 20px 10px;
}

.day {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 30px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 74px;
}

.today-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #c08a3e);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.22em;
  padding-left: calc(14px + 0.22em);
  box-shadow: 0 6px 16px rgba(192, 138, 62, 0.38);
  animation: badge-pulse 2.6s ease-in-out infinite;
}

@keyframes badge-pulse {
  50% { box-shadow: 0 6px 26px rgba(192, 138, 62, 0.62); }
}

.day-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 10px;
}

.day-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.84;
  color: rgba(203, 169, 96, 0.26);
  letter-spacing: -0.02em;
  flex: none;
  transform: translateY(5px);
}

.day-date {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-bottom: 5px;
}

.day-title {
  font-family: var(--serif);
  font-size: clamp(21px, 3.4vw, 25px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.day-city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

.day-city svg { color: var(--gold-deep); flex: none; }

.day-stay {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 20px;
  padding: 11px 15px;
  background: #faf6ec;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 13.5px;
  color: #7c6f57;
}

.day-stay svg { color: var(--gold-deep); flex: none; }

/* ---------- 时间线 ---------- */
.tl {
  list-style: none;
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 32px 56px 1fr;
  column-gap: 13px;
  padding: 11px 0;
}

/* 连接线：起于第一个圆点、止于最后一个圆点 */
.tl-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: #eee5cd;
}

.tl-item:first-child::before { top: 18px; }
.tl-item:last-child::before  { bottom: 18px; }

.tl-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tbg);
  color: var(--tc);
  border: 1.5px solid var(--tc);
  z-index: 1;
  margin-top: 2px;
}

.tl-time {
  padding-top: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.tl-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.tl-tag {
  display: inline-block;
  font-size: 11px;
  padding: 1.5px 9px;
  border-radius: 999px;
  background: var(--tbg);
  color: var(--tc);
  letter-spacing: 0.08em;
  transform: translateY(-1.5px);
}

.tl-desc {
  margin-top: 3px;
  font-size: 13.5px;
  color: #7d8494;
  line-height: 1.75;
}

/* ---------- 今日看点（可展开模块） ---------- */
.guide {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #eadfc6;
}

.guide-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 14px;
  border: 1px dashed rgba(168, 132, 60, 0.45);
  border-radius: 13px;
  background: #fbf7ee;
  color: var(--gold-deep);
  font-family: inherit;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.guide-toggle:hover {
  background: #f5edda;
  border-color: var(--gold-deep);
}

.guide-toggle svg { transition: transform 0.35s ease; flex: none; }

.guide-toggle.open svg { transform: rotate(180deg); }

.guide-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.guide-body.open { grid-template-rows: 1fr; }

.guide-inner { min-height: 0; overflow: hidden; }

.guide-item {
  margin-top: 10px;
  padding: 13px 16px;
  background: #faf6ec;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
}

.guide-item-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.guide-item p {
  font-size: 13.5px;
  color: #7d8494;
  line-height: 1.85;
}

/* ---------- 出行锦囊 ---------- */
.tips-section {
  padding: 26px 0 8px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 28px);
  text-align: center;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  color: var(--ink);
}

.section-sub {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  margin: 8px 0 28px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 14px;
}

.tip-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 16px;
  box-shadow: 0 8px 26px -16px rgba(96, 84, 56, 0.22);
}

.tip-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f0e0;
  color: var(--gold-deep);
  flex: none;
}

.tip-title { font-size: 15px; font-weight: 600; color: var(--ink); }

.tip-card ul { list-style: none; }

.tip-card li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  color: #7d8494;
  line-height: 1.8;
}

.tip-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- 页脚 ---------- */
.footer {
  text-align: center;
  padding: 52px 20px 64px;
}

.footer-line {
  width: 64px;
  height: 2px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-quote {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  color: #6d6046;
}

.footer-meta {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #a8a294;
}

/* ---------- 回到顶部 ---------- */
.backtop {
  position: fixed;
  right: 22px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: #ecdfbd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(30, 30, 40, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 60;
}

.backtop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.backtop:hover { transform: translateY(-3px); }

/* ============ 黔地风物介绍页 ============ */
.hero-sm {
  min-height: 54svh;
}

.hero-sm .hero-title { font-size: clamp(44px, 9vw, 76px); }

.hero-sm .moon { width: clamp(64px, 9vw, 100px); }

.gz-back {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(232, 195, 126, 0.4);
  background: rgba(10, 15, 36, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ecdfbd;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: background 0.25s ease;
}

.gz-back:hover { background: rgba(232, 195, 126, 0.16); }

.gz-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 20px 10px;
}

.gz-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 34px 0 16px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  background: #f4ecdb;
  color: var(--gold-deep);
}

.gz-group.now { background: #e9f4ee; color: #2f8f6f; }
.gz-group.next { background: #e9f1f9; color: #4d7fb3; }

.gz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
  gap: 14px;
}

.gz-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 16px;
  box-shadow: 0 8px 26px -16px rgba(96, 84, 56, 0.22);
}

.gz-card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.gz-card-title small {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.gz-card p {
  margin-top: 7px;
  font-size: 13.5px;
  color: #7d8494;
  line-height: 1.85;
}

.gz-quote {
  margin: 10px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: #faf6ec;
  border-radius: 0 14px 14px 0;
  font-size: 14px;
  color: #7c6f57;
  line-height: 1.9;
}

.gz-food-tag {
  display: inline-block;
  font-size: 11px;
  padding: 1.5px 9px;
  border-radius: 999px;
  background: #faefe4;
  color: #c97a45;
  letter-spacing: 0.08em;
  transform: translateY(-2px);
}

.footer-gz {
  margin-top: 26px;
}

.footer-gz a {
  color: var(--gold-deep);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  border-bottom: 1px dashed rgba(168, 132, 60, 0.5);
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.footer-gz a:hover { color: #8a6a2c; }

/* ---------- 滚动浮现 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- 移动端 ---------- */
@media (max-width: 640px) {
  :root { --mtn: 22vh; }

  .moon { top: 10%; right: 10%; }

  .hero-title {
    font-size: clamp(24px, 8.6vw, 38px);
    letter-spacing: 0.06em;
    padding-left: 0.06em;
  }

  .seal {
    width: 30px;
    height: 30px;
    margin-left: 8px;
    font-size: 10px;
  }

  .stats { margin-top: -56px; padding: 22px 8px; }

  .day { padding: 24px 16px; border-radius: 20px; }

  .day-head { gap: 13px; }

  .day-num { font-size: 46px; }

  .tl-item { grid-template-columns: 28px 48px 1fr; column-gap: 10px; }

  .tl-item::before { left: 13px; }
  .tl-item:first-child::before { top: 16px; }
  .tl-item:last-child::before { bottom: 16px; }

  .tl-dot { width: 28px; height: 28px; }

  .tl-dot svg { width: 12px; height: 12px; }

  .tl-title { font-size: 14.5px; }

  .today-badge { top: 16px; right: 14px; }

  .hero-inner { padding-bottom: 12vh; }
}

/* ---------- 打印 ---------- */
@media print {
  .hero, .daynav-wrap, .backtop, .progress, .scroll-cue { display: none !important; }

  body { background: #fff; }

  .stats { box-shadow: none; border: 1px solid #ddd; margin-top: 0; }

  .day { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }

  .reveal { opacity: 1; transform: none; }
}

/* ---------- 减少动态效果 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   地图（Leaflet + 高德瓦片）
   ============================================================ */

/* ---------- 总览区块 ---------- */
.route-overview {
  background: var(--paper);
  padding: 26px 20px 6px;
}

.ovr-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.ovr-wrap .section-title { margin-top: 4px; }

.map-card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.map-canvas { height: 300px; }

.ovr-canvas { height: 430px; }

.map-note {
  padding: 9px 16px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--line);
}

/* ---------- 每日地图（可展开） ---------- */
.daymap,
.notices {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #eadfc6;
}

/* ---------- 购票提示 ---------- */
.notice-list {
  list-style: none;
  padding: 4px 2px 0;
}

.notice-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  color: #6f7688;
  line-height: 1.9;
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.notice-list li:first-child {
  color: #a4612f;
  font-weight: 500;
}

.daymap .guide-toggle svg.map-ico { margin-right: -1px; }

.map-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.map-body.open { grid-template-rows: 1fr; }

.map-body .map-inner {
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
}

.map-body .map-canvas {
  height: 300px;
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.leaflet-container {
  font-family: var(--sans);
  background: #eef0ee;
}

/* ---------- 标记：数字圆点 ---------- */
.mk { background: transparent; border: none; }

.mk-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c08a3e);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--serif);
  border: 2px solid rgba(255, 250, 240, 0.9);
  box-shadow: 0 4px 12px rgba(140, 100, 40, 0.45);
}

/* 当日路线的途经点 */
.mk-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold-deep);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.mk-dot.start,
.mk-dot.end {
  background: linear-gradient(135deg, var(--gold), #c08a3e);
  border-color: rgba(255, 250, 240, 0.9);
  color: #fff;
  width: 24px;
  height: 24px;
  box-shadow: 0 4px 10px rgba(140, 100, 40, 0.4);
}

/* ---------- 箭头 ---------- */
.mk-arrow {
  color: #b98a3e;
  font-size: 14px;
  line-height: 18px;
  text-shadow: 0 0 3px #fff, 0 0 4px #fff, 0 0 5px #fff;
  pointer-events: none;
}

/* ---------- 地图标签 ---------- */
.leaflet-tooltip.mk-tip {
  background: rgba(43, 47, 54, 0.88);
  color: #ecdfbd;
  border: none;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.leaflet-tooltip.mk-tip::before { display: none; }

/* ---------- 移动端 ---------- */
@media (max-width: 640px) {
  .ovr-canvas { height: 330px; }

  .map-body .map-canvas { height: 260px; }
}

/* ---------- 打印 ---------- */
@media print {
  .route-overview, .daymap, .map-card { display: none !important; }
}
