/* ============================================================
   配色 —— 想換整站顏色，改這一段就好
   ============================================================ */
:root {
  /* 配色取自 logo：純灰階，主色 #606060。
     整站不用任何彩色，顏色全部交給照片和 LINE 綠色按鈕。 */
  --sand-50:  #F2F2F1;
  --sand-100: #E8E8E7;
  --sand-200: #DADAD8;
  --sand-300: #C2C2BF;

  /* 主色：深灰（按鈕、重點） */
  --clay:      #4A4A4A;
  --clay-dark: #2E2E2E;
  --clay-tint: #E2E2E1;

  /* logo 灰 */
  --olive:      #606060;
  --olive-dark: #444444;
  --ochre:      #A8A8A5;   /* 深色區塊上的淺灰重點 */

  /* 文字 */
  --ink:   #222222;
  --ink-2: #545454;
  --ink-3: #8A8A87;

  /* 深色區塊 */
  --earth-900: #1E1E1E;
  --earth-800: #2B2B2B;

  --line:      rgba(34, 34, 34, 0.12);
  --line-soft: rgba(34, 34, 34, 0.06);

  --ok:    #4E6A52;
  --ok-bg: #E7EDE8;
  --full:    #6E6E6E;
  --full-bg: #E4E4E3;

  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(43,37,32,.05), 0 2px 8px rgba(43,37,32,.04);
  --shadow-md: 0 4px 20px rgba(43,37,32,.09);
  --shadow-lg: 0 12px 40px rgba(43,37,32,.14);

  --max: 1120px;
}

/* 系列卡的色調 */
.a-ocean { --accent: #4E6367; }
.a-snow  { --accent: #6B7378; }
.a-deep  { --accent: #3F4A50; }
.a-earth { --accent: #6E655C; }
.a-night { --accent: #454550; }
.a-leaf  { --accent: #5C6359; }

/* ============================================================ */

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; background: var(--sand-50); }

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--sand-50);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--clay-tint); color: var(--clay-dark); }

.latin { font-family: Montserrat, "Noto Sans TC", sans-serif; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── 區塊標題 ────────────────────────────────────── */
.eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--line); }

h2.section-title {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 900; line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.section-lead { color: var(--ink-2); font-size: 1.03rem; max-width: 48em; }

section { padding: 84px 0; }

/* ── 按鈕 ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 800; font-size: .93rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--clay-dark); box-shadow: var(--shadow-lg); }
.btn-ghost { border: 1.5px solid var(--sand-300); color: var(--ink); background: rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn-line { background: #06C755; color: #fff; box-shadow: var(--shadow-md); }
.btn-line:hover { background: #05b34c; box-shadow: var(--shadow-lg); }
.btn-on-dark { border: 1.5px solid rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.10); backdrop-filter: blur(6px); }
.btn-on-dark:hover { border-color: #fff; background: rgba(255,255,255,.2); }
/* 深色大圖上的主按鈕改成白底，深灰按鈕壓在照片上不夠明顯 */
.btn-invert { background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
.btn-invert:hover { background: var(--sand-100); color: #000; }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

/* ── 導覽列 ──────────────────────────────────────── */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 68px;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(251, 248, 241, .93);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(43,37,32,.05);
}
#nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand {
  font-family: Montserrat, sans-serif;
  font-weight: 900; font-size: .95rem;
  letter-spacing: -.01em; color: #fff;
  transition: color .3s;
  line-height: 1.2;
}
#nav.scrolled .brand { color: var(--ink); }

/* 放了 logo 圖之後：大圖上用淺色版，捲動後換深色版 */
.brand.has-logo { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; display: block; transition: opacity .3s; }
.brand .logo-dark { display: none; }
#nav.scrolled .brand .logo-light { display: none; }
#nav.scrolled .brand .logo-dark  { display: block; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .89rem; font-weight: 700; color: rgba(255,255,255,.9);
  transition: color .25s; position: relative;
}
#nav.scrolled .nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--clay); }
#nav:not(.scrolled) .nav-links a:hover { color: var(--ochre); }
.nav-links .btn { padding: 10px 22px; font-size: .86rem; }
/* 還在大圖上的時候，導覽列按鈕用白底才看得清楚 */
#nav:not(.scrolled) .nav-links .btn-primary { background: #fff; color: var(--ink); }
#nav:not(.scrolled) .nav-links .btn-primary:hover { background: var(--sand-100); }

#burger { display: none; padding: 8px; color: #fff; }
#nav.scrolled #burger { color: var(--ink); }
#burger svg { width: 24px; height: 24px; }

#mobile-menu {
  display: none;
  background: var(--sand-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
#mobile-menu.open { display: block; }
#mobile-menu .wrap { flex-direction: column; align-items: stretch; height: auto; padding-top: 8px; padding-bottom: 20px; }
#mobile-menu a {
  padding: 15px 0; font-weight: 700; color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
}
#mobile-menu .btn { margin-top: 16px; border-bottom: none; }

/* ── Hero ────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 560px; height: min(88vh, 780px);
  display: flex; align-items: flex-end;
  background: var(--earth-900);
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-img.on { opacity: 1; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-video.on { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28,22,17,.94) 0%, rgba(28,22,17,.45) 42%, rgba(28,22,17,.18) 70%),
    linear-gradient(115deg, rgba(28,22,17,.68) 0%, transparent 58%);
}
.hero-body { position: relative; width: 100%; padding-bottom: 72px; }
.hero-tag {
  font-family: Montserrat, sans-serif;
  font-size: .72rem; font-weight: 800; letter-spacing: .22em;
  color: var(--ochre); margin-bottom: 18px;
}
#hero h1 {
  font-size: clamp(2.7rem, 8vw, 4.9rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.03em;
  color: #fff; margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
#hero h1 em { font-style: normal; color: var(--ochre); }
.hero-sub {
  color: rgba(255,255,255,.9); font-size: 1.1rem; font-weight: 500;
  max-width: 24em; margin-bottom: 34px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── 數字條 ──────────────────────────────────────── */
#stats { background: var(--sand-100); border-bottom: 1px solid var(--line); padding: 0; }
#stats .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 30px; padding-bottom: 30px; text-align: center; }
.stat-n { font-family: Montserrat, sans-serif; font-weight: 900; font-size: clamp(1.7rem, 4.5vw, 2.4rem); color: var(--clay); line-height: 1.1; }
.stat-l { font-size: .74rem; font-weight: 800; letter-spacing: .1em; color: var(--ink-3); margin-top: 4px; }

/* ── IG 導流條（緊接在數字下面，很顯眼）───────────── */
#ig-band {
  display: block;
  background: var(--earth-900);
  color: var(--sand-100);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
#ig-band:hover { background: var(--earth-800); }
#ig-band .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  padding: 18px 24px;
  text-align: center;
}
#ig-band .ig-mark {
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(45deg, #F0A03C 0%, #D8583F 38%, #B93B7A 68%, #7B4FAE 100%);
  color: #fff; flex: 0 0 auto;
}
#ig-band .ig-mark svg { width: 20px; height: 20px; }
#ig-band .ig-handle {
  font-family: Montserrat, sans-serif; font-weight: 900;
  font-size: 1.02rem; letter-spacing: .01em; color: #fff;
}
#ig-band .ig-note { font-size: .92rem; font-weight: 500; color: rgba(236,233,228,.72); }
#ig-band .ig-go {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 999px;
  font-size: .84rem; font-weight: 800;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; transition: background .2s, gap .2s;
}
#ig-band:hover .ig-go { background: rgba(255,255,255,.22); gap: 10px; }

@media (max-width: 620px) {
  #ig-band .wrap { gap: 10px; padding: 16px 18px; }
  #ig-band .ig-note { flex-basis: 100%; order: 3; font-size: .85rem; }
  #ig-band .ig-go { order: 4; }
}

/* ── 檔期表 ──────────────────────────────────────── */
#schedule { background: var(--sand-50); }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 22px; }
.chip {
  padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  border: 1.5px solid var(--line); color: var(--ink-2);
  background: #fff;
  transition: all .18s;
}
.chip:hover { border-color: var(--sand-300); color: var(--ink); }
.chip.on { background: var(--clay); border-color: var(--clay); color: #fff; }

.table-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.table-scroll { overflow-x: auto; }

table.sched { width: 100%; border-collapse: collapse; min-width: 660px; }
table.sched thead th {
  text-align: left; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; color: var(--ink-3);
  padding: 14px 18px; background: var(--sand-100);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.sched td { padding: 16px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
table.sched tbody tr:last-child td { border-bottom: none; }
table.sched tbody tr { transition: background .15s; }
table.sched tbody tr:hover { background: var(--sand-50); }
table.sched tr.is-full { opacity: .58; }

.td-date { font-family: Montserrat, sans-serif; font-weight: 800; font-size: .95rem; white-space: nowrap; color: var(--ink); }
.td-series { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 700; color: var(--ink-2); white-space: nowrap; transition: color .18s; }
.td-series:hover { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.td-title { font-weight: 800; font-size: 1rem; }
.td-title small { display: block; font-weight: 600; font-size: .78rem; color: var(--ink-3); margin-top: 2px; }
.td-price { font-family: Montserrat, sans-serif; font-weight: 900; font-size: 1.08rem; white-space: nowrap; text-align: right; }
.td-price .cur { font-size: .74rem; font-weight: 700; color: var(--ink-3); margin-right: 3px; }
.td-price .none { font-family: inherit; font-size: .88rem; font-weight: 700; color: var(--ink-3); }
.td-cta { text-align: right; white-space: nowrap; }

.pill { display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: .71rem; font-weight: 800; letter-spacing: .03em; white-space: nowrap; }
.pill-ok   { background: var(--ok-bg);   color: var(--ok); }
.pill-full { background: var(--full-bg); color: var(--full); }
.pill-plan { background: var(--sand-200); color: var(--ink-2); }
.pill-noflight { background: #EDE6F2; color: #6A5580; }

.ask {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 800;
  background: var(--clay); color: #fff;
  transition: background .18s;
}
.ask:hover { background: var(--clay-dark); }
.ask.muted { background: var(--sand-200); color: var(--ink-2); }
.ask.muted:hover { background: var(--sand-300); }

/* 手機版檔期卡 */
.sched-cards { display: none; flex-direction: column; gap: 12px; }
.sc {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; padding: 18px; box-shadow: var(--shadow-sm);
}
.sc.is-full { opacity: .6; }
.sc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.sc-date { font-family: Montserrat, sans-serif; font-weight: 800; font-size: .92rem; }
.sc h4 { font-size: 1.08rem; font-weight: 800; line-height: 1.35; margin-bottom: 4px; }
.sc-series { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--clay); margin-bottom: 12px; }
.sc-bot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft); }

.notes {
  margin-top: 22px; padding: 20px 22px;
  background: var(--sand-100); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.notes h5 { font-size: .74rem; font-weight: 800; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 10px; }
.notes ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.notes li { font-size: .88rem; color: var(--ink-2); padding-left: 20px; position: relative; line-height: 1.6; }
.notes li::before { content: "·"; position: absolute; left: 6px; top: -2px; font-size: 1.4rem; color: var(--clay); line-height: 1.4; }
.notes strong { color: var(--ink); font-weight: 800; }

/* ── 系列 ────────────────────────────────────────── */
#series { background: var(--sand-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.series-grid {
  display: grid; gap: 18px; margin-top: 34px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--sand-300); }
.card.big { grid-column: span 2; }

.card-media {
  position: relative; aspect-ratio: 16 / 9;
  background:
    radial-gradient(120% 100% at 20% 0%, color-mix(in srgb, var(--accent) 55%, #fff) 0%, var(--accent) 70%);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card.big .card-media { aspect-ratio: 21 / 9; }
.card-media .ico { font-size: 3rem; filter: drop-shadow(0 3px 10px rgba(0,0,0,.3)); }
.card-media.has-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,22,17,.55), rgba(28,22,17,.05));
}
.card-flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  font-size: .7rem; font-weight: 800; letter-spacing: .04em;
  background: rgba(255,255,255,.94); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.card-flag.hot { background: var(--clay); color: #fff; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.22rem; font-weight: 900; letter-spacing: -.01em; margin-bottom: 8px; }
.card-body p { font-size: .89rem; color: var(--ink-2); line-height: 1.7; flex: 1; }
.card-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card-count { font-size: .8rem; font-weight: 700; color: var(--ink-3); }
.card-count b { color: var(--clay); font-family: Montserrat, sans-serif; }
.card-link { font-size: .84rem; font-weight: 800; color: var(--clay); display: inline-flex; align-items: center; gap: 5px; }
.card:hover .card-link { gap: 9px; }
.card-link span { transition: transform .2s; }

/* ── 理念 ────────────────────────────────────────── */
#credo { background: var(--sand-50); }
.credo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.credo-item {
  padding: 26px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.credo-item:hover { border-color: var(--sand-300); transform: translateY(-2px); }
.credo-item .ic { font-size: 1.7rem; margin-bottom: 14px; }
.credo-item h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.credo-item p { font-size: .88rem; color: var(--ink-2); line-height: 1.75; }

/* ── 評價 ────────────────────────────────────────── */
#voices { background: var(--earth-900); color: var(--sand-100); }
#voices .eyebrow { color: var(--ochre); }
#voices .eyebrow::after { background: rgba(255,255,255,.14); }
#voices h2.section-title { color: #fff; }
#voices .section-lead { color: rgba(245,238,226,.62); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.voice {
  padding: 26px; border-radius: var(--radius);
  background: var(--earth-800); border: 1px solid rgba(255,255,255,.08);
}
.voice .stars { color: var(--ochre); font-size: .82rem; letter-spacing: .12em; margin-bottom: 14px; }
.voice p { font-size: 1rem; line-height: 1.8; color: rgba(245,238,226,.92); margin-bottom: 16px; }
.voice footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.voice cite { font-style: normal; font-size: .86rem; font-weight: 800; color: var(--ochre); }
.voice a { font-size: .78rem; font-weight: 700; color: rgba(245,238,226,.55); }
.voice a:hover { color: var(--ochre); }

/* ── 結尾 CTA ────────────────────────────────────── */
#end { background: var(--sand-100); text-align: center; border-top: 1px solid var(--line); }
#end h2 { font-size: clamp(2rem, 5.2vw, 3.3rem); font-weight: 900; line-height: 1.18; letter-spacing: -.025em; margin-bottom: 14px; }
#end h2 em { font-style: normal; color: var(--clay); }
#end .lead { color: var(--ink-2); font-size: 1.08rem; margin-bottom: 34px; }

.ig-row { margin-top: 56px; }
.ig-row p { font-size: .72rem; font-weight: 800; letter-spacing: .16em; color: var(--ink-3); margin-bottom: 16px; }
.ig-avatars { display: flex; justify-content: center; gap: 14px; }
.ig-avatars a {
  width: 54px; height: 54px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--sand-300);
  transition: border-color .2s, transform .2s;
}
.ig-avatars a:hover { border-color: var(--clay); transform: scale(1.06); }
.ig-avatars img { width: 100%; height: 100%; object-fit: cover; }

footer.site { background: var(--earth-900); color: rgba(245,238,226,.5); text-align: center; padding: 30px 0; font-size: .78rem; letter-spacing: .06em; }

/* ════════════════════════════════════════════════════
   以下是「行程內頁」專用的樣式
   ════════════════════════════════════════════════════ */

/* ── 待填提示（SHOW_TODO 設 false 就不會出現）───── */
.todo {
  border: 1.5px dashed var(--sand-300);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(45,43,40,.02) 10px, rgba(45,43,40,.02) 20px);
  padding: 18px 20px;
  color: var(--ink-2);
}
.todo-tag {
  display: inline-block; margin-bottom: 8px;
  padding: 3px 10px; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  background: var(--sand-200); color: var(--ink-2);
}
.todo strong { display: block; font-size: .98rem; color: var(--ink); margin-bottom: 4px; }
.todo p { font-size: .85rem; line-height: 1.7; color: var(--ink-3); }

/* ── 內頁 Hero ─────────────────────────────────── */
#s-hero {
  position: relative; margin-top: 0;
  min-height: 420px; height: 52vh;
  display: flex; align-items: flex-end;
  background: var(--earth-900);
  background-size: cover; background-position: center;
}
#s-hero.a-ocean, #s-hero.a-snow, #s-hero.a-deep,
#s-hero.a-earth, #s-hero.a-night, #s-hero.a-leaf {
  background-image: radial-gradient(120% 100% at 20% 0%, color-mix(in srgb, var(--accent) 55%, #fff) 0%, var(--accent) 70%);
}
#s-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,.9) 0%, rgba(20,18,16,.35) 55%, rgba(20,18,16,.15) 100%);
}
#s-hero .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: 46px; }
#s-hero-ico { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 4rem; z-index: 1; }
.s-crumb { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.72); margin-bottom: 14px; }
.s-crumb a { color: rgba(255,255,255,.72); }
.s-crumb a:hover { color: #fff; }
#s-tagline {
  display: inline-block; margin-bottom: 12px;
  padding: 5px 14px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  background: rgba(255,255,255,.92); color: var(--ink);
}
#s-name {
  font-size: clamp(2.1rem, 6vw, 3.4rem); font-weight: 900;
  letter-spacing: -.025em; color: #fff; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
#s-blurb { color: rgba(255,255,255,.9); font-size: 1.02rem; max-width: 46em; text-shadow: 0 1px 10px rgba(0,0,0,.5); }

/* ── 報名須知（三題）───────────────────────────── */
#ask { background: var(--sand-100); border-bottom: 1px solid var(--line); padding: 40px 0 44px; }
.ask-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ask-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.ask-q { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: .98rem; margin-bottom: 10px; }
.ask-ico { font-size: 1.15rem; }
.ask-a p { font-size: .9rem; line-height: 1.75; color: var(--ink-2); }
.ask-a p + p { margin-top: 9px; }
.ask-vid {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 9px 16px; border-radius: 999px;
  font-size: .83rem; font-weight: 800;
  background: var(--ink); color: #fff;
  transition: background .18s, transform .18s;
}
.ask-vid:hover { background: var(--clay); transform: translateY(-1px); }
.ask-vid svg { width: 15px; height: 15px; }

/* 點「看影片」跳出來的視窗 */
#vid-modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(15,14,13,.9);
  align-items: center; justify-content: center; padding: 20px;
}
#vid-modal.open { display: flex; }
#vm-body { width: 100%; max-width: 420px; max-height: 92vh; overflow-y: auto; border-radius: 12px; }
#vm-close {
  position: absolute; top: 16px; right: 22px;
  font-size: 2.4rem; font-weight: 300; line-height: 1;
  color: #fff; padding: 6px 12px;
}
#vm-close:hover { color: var(--ochre); }

#ask-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.meta-pill {
  padding: 7px 15px; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
}

/* ── 內頁通用區塊 ──────────────────────────────── */
.blk { padding: 60px 0; }
.blk + .blk { border-top: 1px solid var(--line-soft); }
.blk h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.blk .sub { color: var(--ink-3); font-size: .92rem; margin-bottom: 26px; }
.blk p { color: var(--ink-2); line-height: 1.85; }
.blk p + p { margin-top: 12px; }

/* 重點句：大字獨立一行 */
.blk p.pull {
  font-size: clamp(1.18rem, 2.5vw, 1.55rem);
  font-weight: 900; line-height: 1.55; letter-spacing: -.01em;
  color: var(--ink);
  margin: 24px 0;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--clay);
}
.blk p.pull + p { margin-top: 24px; }

/* 句子裡的重點字：加粗＋淡底色 */
.pop {
  font-weight: 800; color: var(--ink);
  box-shadow: inset 0 -.55em 0 var(--sand-200);
}

/* 適合誰 / 不適合誰 */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.who {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.who h3 { font-size: 1rem; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.who ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.who li { font-size: .9rem; color: var(--ink-2); padding-left: 22px; position: relative; line-height: 1.65; }
.who.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.who.no  li::before { content: "!"; position: absolute; left: 4px; color: var(--full); font-weight: 800; }
#requirement { margin-top: 16px; }

/* 亮點 */
.hl-list { display: flex; flex-direction: column; gap: 16px; }
.hl {
  display: grid; grid-template-columns: 260px 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hl:not(:has(.hl-img)) { grid-template-columns: 1fr; }
.hl-img { background-size: cover; background-position: center; min-height: 170px; }
.hl-body { padding: 22px 26px; }
.hl-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 7px; }
.hl-body p { font-size: .91rem; }
.hl-body p + p { margin-top: 8px; }
.hl-body .pull {
  border-left: 3px solid var(--olive);
  padding-left: 12px;
  font-weight: 700;
}

/* IG 影片 */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vid { border-radius: var(--radius); overflow: hidden; }
.vid-poster {
  position: relative; width: 100%; aspect-ratio: 9 / 14;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(150deg, #F0A03C 0%, #D8583F 34%, #B93B7A 66%, #7B4FAE 100%);
  background-size: cover; background-position: center;
  color: #fff; border-radius: var(--radius);
  transition: transform .2s;
}
.vid-poster::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: rgba(20,18,16,.28); transition: background .2s;
}
.vid-poster:hover { transform: translateY(-2px); }
.vid-poster:hover::after { background: rgba(20,18,16,.12); }
.vid-play {
  position: relative; z-index: 2;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.vid-play svg { width: 26px; height: 26px; margin-left: 3px; }
.vid-label { position: relative; z-index: 2; font-size: .82rem; font-weight: 800; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.vid.live { background: #fff; border: 1px solid var(--line); }

/* 檔期 */
.dt-list { display: flex; flex-direction: column; gap: 12px; }
.dt {
  display: grid; grid-template-columns: 190px 1fr auto auto;
  align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.dt.is-full { opacity: .6; }
.dt-when { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.dt-date { font-family: Montserrat, sans-serif; font-weight: 800; font-size: .95rem; white-space: nowrap; }
.dt-mid h4 { font-size: 1.05rem; font-weight: 800; }
.dt-mid .pill { margin-top: 5px; }
.dt-price { font-family: Montserrat, sans-serif; font-weight: 900; font-size: 1.1rem; white-space: nowrap; }
.dt-price .cur { font-size: .72rem; font-weight: 700; color: var(--ink-3); margin-right: 3px; }
.dt-price .none { font-family: inherit; font-size: .88rem; font-weight: 700; color: var(--ink-3); }
.empty { text-align: center; color: var(--ink-3); padding: 30px; }

/* 兩種報價 */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* 三個方案的時候改成三欄 */
.plan-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .plan-grid.is-3 { grid-template-columns: 1fr; } }
.plan {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
}
.plan.is-rec {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.plan-flag {
  position: absolute; top: -11px; left: 24px;
  padding: 4px 13px; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  background: var(--ink); color: #fff;
}
.plan h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 4px; }
.plan-sub { font-size: .86rem; color: var(--ink-3); margin-bottom: 14px; }
.plan-price {
  font-family: Montserrat, sans-serif; font-weight: 900;
  font-size: 2rem; letter-spacing: -.02em; color: var(--ink);
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.plan-price .cur { font-size: .8rem; font-weight: 700; color: var(--ink-3); margin-right: 5px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan li { font-size: .88rem; color: var(--ink-2); line-height: 1.65; padding-left: 20px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.plan-caveat {
  margin-top: 16px; padding: 13px 15px;
  background: var(--sand-100); border-radius: 10px;
  font-size: .82rem !important; line-height: 1.7; color: var(--ink-2) !important;
}

/* 費用 */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cost {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.cost h3 { font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.cost ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cost li { font-size: .9rem; color: var(--ink-2); padding-left: 22px; position: relative; line-height: 1.65; }
.cost ul.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.cost ul.no  li::before { content: "×"; position: absolute; left: 1px; color: var(--full); font-weight: 800; }
#cost-note { margin-top: 16px; }

/* 合法旅行社 ＋ 旅遊責任險 */
.trust {
  display: flex; gap: 18px; align-items: flex-start;
  margin-top: 16px; padding: 24px 26px;
  background: var(--earth-900); color: var(--sand-100);
  border-radius: var(--radius);
}
.trust-ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); color: #fff;
}
.trust-ico svg { width: 24px; height: 24px; }
.trust h3 { font-size: 1.06rem; font-weight: 800; color: #fff; margin-bottom: 7px; }
.trust p { font-size: .89rem; line-height: 1.75; color: rgba(236,233,228,.78); }
.trust-lic {
  margin-top: 10px; display: inline-block;
  padding: 5px 13px; border-radius: 999px;
  font-family: Montserrat, sans-serif; font-size: .78rem; font-weight: 700;
  background: rgba(255,255,255,.12); color: #fff !important;
}
@media (max-width: 620px) {
  .trust { flex-direction: column; gap: 14px; padding: 20px; }
}

/* 每日行程 */
.days { list-style: none; position: relative; padding-left: 26px; }
.days::before {
  content: ""; position: absolute; left: 6px; top: 10px; bottom: 10px;
  width: 2px; background: var(--sand-300);
}
.day { position: relative; padding-bottom: 26px; }
.day:last-child { padding-bottom: 0; }
.day::before {
  content: ""; position: absolute; left: -24px; top: 7px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--clay); border: 2px solid var(--sand-50);
}
.day-n {
  display: inline-block; margin-bottom: 6px;
  font-family: Montserrat, sans-serif; font-weight: 900;
  font-size: .72rem; letter-spacing: .08em;
  color: var(--clay);
}
.day h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; line-height: 1.45; }
.day p { font-size: .9rem; color: var(--ink-2); line-height: 1.75; }
.day-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.day-tag {
  padding: 4px 12px; border-radius: 999px;
  font-size: .76rem; font-weight: 700;
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
}
#videos-note {
  padding: 20px 24px;
  background: var(--sand-100); border-radius: var(--radius);
  border-left: 3px solid var(--clay);
}
#videos-note p { font-size: .9rem; line-height: 1.8; color: var(--ink-2); }
#videos-note p + p { margin-top: 8px; }
#videos-note:empty { display: none; }

#itinerary-note, #dates-note {
  margin-top: 22px; padding: 14px 18px;
  background: var(--sand-100); border-radius: var(--radius);
  font-size: .85rem; color: var(--ink-3);
}
#itinerary-note:empty, #dates-note:empty { display: none; }

/* 報名流程 */
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.step-n {
  position: absolute; top: -11px; left: 22px;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Montserrat, sans-serif; font-weight: 900; font-size: .78rem;
  background: var(--ink); color: #fff;
}
.step-ico { display: block; font-size: 1.6rem; margin-bottom: 12px; }
.step h4 { font-size: 1rem; font-weight: 800; margin-bottom: 7px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.step p { font-size: .87rem; color: var(--ink-2); line-height: 1.7; }

.step.is-lock { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(34,34,34,.06), var(--shadow-md); }
.step.is-lock .step-n { background: var(--clay); }
.lock-tag {
  padding: 3px 10px; border-radius: 999px;
  font-size: .66rem; font-weight: 800; letter-spacing: .04em;
  background: var(--ink); color: #fff;
}

/* 住宿 */
.stay-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stay-list.one { grid-template-columns: minmax(0, 640px); }
.stay-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.stay-img { aspect-ratio: 3 / 2; background-size: cover; background-position: center; }
.stay-body { padding: 20px 22px 22px; }
.stay-where {
  display: inline-block; margin-bottom: 8px;
  padding: 4px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  background: var(--sand-100); color: var(--ink-2);
}
.stay-card h3 { font-size: 1.1rem; font-weight: 900; letter-spacing: .01em; margin-bottom: 8px; }
.stay-card p { font-size: .89rem; color: var(--ink-2); line-height: 1.75; }
@media (max-width: 820px) {
  .stay-list, .stay-list.one { grid-template-columns: 1fr; }
}

/* FAQ */
.faq {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  padding: 16px 22px; font-weight: 800; font-size: .95rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--ink-3); }
.faq[open] summary::after { content: "−"; }
.faq-a { padding: 0 22px 18px; }
.faq-a p { font-size: .9rem; color: var(--ink-2); line-height: 1.8; }
.faq-a p + p { margin-top: 10px; }

@media (max-width: 940px) {
  .ask-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
  .hl { grid-template-columns: 1fr; }
  .hl-img { min-height: 200px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  #s-hero { min-height: 340px; height: auto; padding-top: 130px; }
  .blk { padding: 44px 0; }
  .who-grid, .cost-grid, .plan-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .vid-poster { aspect-ratio: 16 / 11; }
  .steps { grid-template-columns: 1fr; }
  .dt { grid-template-columns: 1fr auto; gap: 12px; }
  .dt-when { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .dt-mid { grid-column: 1 / -1; }
}

/* ── 回到頂端 ────────────────────────────────────── */
#top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clay); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
#top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#top svg { width: 18px; height: 18px; }

/* ── 進場動畫 ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RWD ─────────────────────────────────────────── */
@media (max-width: 940px) {
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .card.big { grid-column: span 2; }
  .credo-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .wrap, .wrap-narrow { padding: 0 18px; }
  .nav-links { display: none; }
  #burger { display: block; }
  #hero { height: auto; min-height: 78vh; }
  .hero-body { padding-bottom: 52px; padding-top: 130px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .table-shell { display: none; }
  .sched-cards { display: flex; }
  /* 篩選改成橫向滑動，不然 12 個按鈕會佔掉半個螢幕 */
  .filter-row {
    flex-wrap: nowrap; overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    margin-left: -18px; margin-right: -18px;
    padding: 0 18px 4px;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .chip { flex: 0 0 auto; scroll-snap-align: start; }

  .series-grid { grid-template-columns: 1fr; }
  .card.big { grid-column: span 1; }
  .card.big .card-media { aspect-ratio: 16 / 9; }
  .credo-grid { grid-template-columns: 1fr; }
  #stats .wrap { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* 評價的來源標籤（沒有連結時） */
.voice-src { font-size: .78rem; color: var(--ink-3); }

/* 「我們怎麼帶團」的開場白現在可以分段 */
.section-lead p + p { margin-top: 14px; }

/* ══ 檔期表：整列可以點進行程頁 ══════════════════ */
tr.go, .sc.go { cursor: pointer; }
tr.go:hover { background: var(--sand-100); }
.sc.go:hover { border-color: var(--ink); }
.td-more {
  margin-left: 10px; font-weight: 700;
  color: var(--olive); white-space: nowrap;
  opacity: 0; transition: opacity .18s ease;
}
tr.go:hover .td-more { opacity: 1; }
@media (hover: none) { .td-more { opacity: 1; } }

/* 價格後面的「起」 */
.from { font-size: .7em; font-weight: 700; margin-left: 3px; opacity: .7; }

/* ══ 兩種報價：主價格底下的身分標籤與第二價格 ══════ */
.plan-price-tag {
  display: inline-block;
  margin-left: 10px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: 0;
  color: var(--olive);
  white-space: nowrap;
}
.plan-alt {
  font-size: .84rem;
  color: var(--clay);
  padding: 8px 0 12px;
  border-top: 1px dashed rgba(0, 0, 0, .14);
  margin-bottom: 4px;
}
.plan-alt .alt-v { font-weight: 800; color: var(--ink); margin-right: 8px; }

/* 人數級距表（包團用：人越多每人越便宜）*/
.plan-tiers {
  width: 100%; border-collapse: collapse;
  margin: -6px 0 14px;
  font-size: .85rem;
}
.plan-tiers tr + tr th, .plan-tiers tr + tr td { border-top: 1px dashed rgba(0, 0, 0, .12); }
.plan-tiers th {
  text-align: left; font-weight: 600; color: var(--ink-2);
  padding: 7px 0;
}
.plan-tiers td {
  text-align: right; font-weight: 800; color: var(--ink);
  padding: 7px 0;
}

/* ══ 現場照片相簿 ══════════════════════════════════ */
.gal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 720px) {
  .gal { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
.gal-item {
  display: block; padding: 0; border: 0;
  background: var(--sand-50);
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.gal-item:hover img { transform: scale(1.06); }

#lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, .93);
  display: none; align-items: center; justify-content: center;
  padding: 16px; cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 6px;
}
.lb-close {
  position: absolute; top: 8px; right: 16px;
  font-size: 2.4rem; line-height: 1;
  color: #fff; background: none; border: 0; cursor: pointer;
}
