/* ============================================================
   有一種癮叫。新疆 ｜ 四季旅遊行程網站
   Addicted2Xinjiang · Seasonal Xinjiang Travel
   ============================================================ */

:root {
  /* 基礎色 */
  --ink: #1d2328;
  --ink-soft: #4a5560;
  --ink-faint: #8a949e;
  --paper: #ffffff;
  --paper-warm: #faf7f2;
  --line: #e8e2d8;

  /* 季節主色 */
  --spring: #e87a9e;
  --spring-deep: #c2547a;
  --spring-soft: #fdeef3;

  --summer: #3d9c74;
  --summer-deep: #2c7a59;
  --summer-soft: #eaf6f0;

  --autumn: #d98e2b;
  --autumn-deep: #b06f14;
  --autumn-soft: #fdf3e4;

  --winter: #5f8fd6;
  --winter-deep: #3f6cb3;
  --winter-soft: #edf3fb;

  /* 共用 */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(29, 35, 40, 0.06);
  --shadow-md: 0 8px 28px rgba(29, 35, 40, 0.12);
  --shadow-lg: 0 18px 50px rgba(29, 35, 40, 0.2);

  --header-h: 76px;
  --container: 1160px;
  --font-serif: "Playfair Display", "Noto Serif TC", "Songti TC", serif;
  --font-sans: "Lato", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 中英混排對齊（強逼症友好：右邊整齊無鋸齒） */
p,
li,
dd,
figcaption,
.day-card p,
.attr-body p,
.album-desc,
.price-note,
.tips li,
.footer-note {
  text-align: justify;
  text-justify: inter-ideograph;
  overflow-wrap: break-word;
}

/* 標題自動換行平衡（唔會剩低一個字喺第二行） */
h1,
h2,
h3,
h4,
.section-title,
.block-title,
.brand-text,
.route-text h4,
.album-head h3 {
  text-wrap: balance;
}

/* 賣點強調標記（獨家 等） */
.hl,
.about-card p strong.hl,
.itinerary-note strong.hl {
  color: var(--autumn-deep);
  font-weight: 800;
  font-style: normal;
}

/* ============================================================
   英文模式排版微調（旅行雜誌風格）
   Playfair Display 用於標題、Lato 用於內文，
   右緣靠 justify + 連字號保持齊整，中文則維持 inter-ideograph
   ============================================================ */
html.lang-en body {
  letter-spacing: 0.015em;
}
html.lang-en p,
html.lang-en li,
html.lang-en dd,
html.lang-en figcaption,
html.lang-en .day-card p,
html.lang-en .attr-body p,
html.lang-en .album-desc,
html.lang-en .price-note,
html.lang-en .tips li,
html.lang-en .footer-note {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* 標題：Playfair 本身已具裝飾感，減少字距令右緣更利落 */
html.lang-en .hero-title { letter-spacing: 0.03em; }
html.lang-en .section-title,
html.lang-en .block-title,
html.lang-en .album-head h3 { letter-spacing: 0.015em; }
html.lang-en .brand-text { letter-spacing: 0.02em; }
html.lang-en .hero-eyebrow,
html.lang-en .section-eyebrow { letter-spacing: 0.22em; }
html.lang-en .season-label { letter-spacing: 0.16em; }
html.lang-en .hero-sub,
html.lang-en .about-lead,
html.lang-en .season-intro { letter-spacing: 0.012em; }
/* Playfair 斜體強調（英文模式專用，增添旅行雜誌感） */
html.lang-en .hero-title em,
html.lang-en .brand-text em {
  font-style: italic;
  font-weight: 700;
}
/* 「最抵」徽章：CSS 偽元素文字，英文模式覆蓋 */
html.lang-en .price-item.is-best strong::after { content: "Best Value"; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(216, 142, 43, 0.25); }

/* 通用容器 */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

/* ============================================================
   頂部導覽
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.header-inner {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  white-space: nowrap;
  margin-right: auto;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15), 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.brand-text em { font-style: normal; color: #ffd9a0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* 選單內品牌區：僅手機全螢幕選單顯示，桌面板隱藏 */
.site-nav .nav-brand { display: none; }

/* 桌面導覽連結：動畫底線 */
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0.15rem;
  transition: color 0.25s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }

/* 當前區段高亮 */
.site-nav a.active { color: #ffd9a0; }
.site-nav a.active::after { transform: scaleX(1); }

/* 語言切換按鈕 */
.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  position: relative;
  z-index: 120;
  flex-shrink: 0;
}
.lang-toggle:hover { background: #fff; color: var(--ink); border-color: #fff; }
.site-header.is-scrolled .lang-toggle {
  border-color: var(--autumn-deep);
  color: var(--autumn-deep);
  background: rgba(217, 130, 43, 0.06);
}
.site-header.is-scrolled .lang-toggle:hover { background: var(--autumn-deep); color: #fff; }
/* 行動版選單開啟時：深色全螢幕選單上維持白色按鈕 */
.site-header:has(.site-nav.is-open) .lang-toggle {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.site-header:has(.site-nav.is-open) .lang-toggle:hover { background: #fff; color: var(--ink); }

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18); }

/* 捲動後固定白色頭部
   注意：捲動狀態的毛玻璃只在桌面板啟用（min-width:861px），
   因為 backdrop-filter 會讓 header 成為子元素 position:fixed 的定位基準，
   手機全螢幕選單在 <861px 時不受影響。 */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  height: 64px;
}

@media (min-width: 861px) {
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
  }
}

.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .brand-text em { color: var(--autumn-deep); }
.site-header.is-scrolled .site-nav a { color: var(--ink-soft); }
.site-header.is-scrolled .site-nav a:hover { color: var(--ink); }
.site-header.is-scrolled .site-nav a.active { color: var(--autumn-deep); font-weight: 700; }
.site-header.is-scrolled .site-nav .nav-cta { border-color: var(--autumn-deep); color: var(--autumn-deep); background: rgba(217, 130, 43, 0.06); box-shadow: none; }
.site-header.is-scrolled .site-nav .nav-cta:hover { background: var(--autumn-deep); color: #fff; }
.site-header.is-scrolled .brand-logo { border-color: rgba(29, 35, 40, 0.2); box-shadow: 0 0 0 3px rgba(29, 35, 40, 0.06), 0 2px 6px rgba(0, 0, 0, 0.08); }

/* 捲動＋選單開啟：全螢幕深色選單上維持白色文字 */
.site-header.is-scrolled .site-nav.is-open a,
.site-header.is-scrolled .site-nav.is-open a:hover { color: #fff; }
.site-header.is-scrolled .site-nav.is-open a.active { color: #ffd9a0; }
.site-header.is-scrolled .site-nav.is-open .nav-cta { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: rgba(255, 255, 255, 0.1); }
.site-header.is-scrolled .site-nav.is-open .nav-cta:hover { background: #fff; color: var(--ink); }

/* 行動版選單按鈕 */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-open span { background: #fff; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   英雄區
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 22, 28, 0.45) 0%, rgba(15, 22, 28, 0.35) 45%, rgba(15, 22, 28, 0.72) 100%),
    radial-gradient(ellipse at center, rgba(15, 22, 28, 0.1) 0%, rgba(15, 22, 28, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 2.5rem);
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero-title em { font-style: normal; color: #ffd9a0; }

.hero-sub {
  margin: 1.4rem auto 0;
  max-width: 640px;
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* 按鈕 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, #e8a33d, #d9822b);
  color: #fff;
  box-shadow: 0 10px 26px rgba(217, 130, 43, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(217, 130, 43, 0.5); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

/* 英雄統計 */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 5vw, 3.5rem);
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.stat { display: flex; flex-direction: column; gap: 0.1rem; }
.stat strong {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  color: #ffd9a0;
}
.stat span { font-size: 0.82rem; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.78); }

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 4px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ============================================================
   季節速覽（chips）
   ============================================================ */
.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(1080px, 100% - 2.5rem);
  margin: -3.2rem auto 0;
  position: relative;
  z-index: 5;
}

.season-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--chip, var(--autumn));
  transition: transform 0.3s, box-shadow 0.3s;
}
.season-chip:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.season-chip-spring  { --chip: var(--spring); }
.season-chip-summer  { --chip: var(--summer); }
.season-chip-autumn  { --chip: var(--autumn); }
.season-chip-winter  { --chip: var(--winter); }

.chip-icon { font-size: 1.6rem; line-height: 1; margin-bottom: 0.3rem; }
.chip-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.12rem; }
.chip-time { font-size: 0.82rem; letter-spacing: 0.14em; color: var(--ink-faint); }
.chip-desc { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.25rem; }

/* ============================================================
   區塊標題
   ============================================================ */
.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ============================================================
   關於專頁
   ============================================================ */
.about { background: var(--paper-warm); }

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.about-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.2rem;
}

/* 關於專頁引言 */
.about-lead {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 600px;
  margin: 1.1rem auto 0;
}

/* 品牌區 */
.about-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px dashed var(--line);
}
.about-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(216, 142, 43, 0.16), 0 6px 16px rgba(0, 0, 0, 0.12);
}
.about-brand-text h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.about-brand-text p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.about-desc { margin-bottom: 0.9rem; }

/* 服務特色 */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin: 1.5rem 0 1.2rem;
}
.about-feature {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(216, 142, 43, 0.4);
}
.about-feature .af-icon { font-size: 1.35rem; display: block; margin-bottom: 0.35rem; }
.about-feature strong { display: block; font-size: 0.84rem; color: var(--ink); }
.about-feature small { display: block; font-size: 0.7rem; color: var(--ink-faint); margin-top: 0.12rem; }

.about-card p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-card p strong { color: var(--ink); font-weight: 700; }
.about-card .about-contact { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px dashed var(--line); }
.about-card .about-contact p { margin-bottom: 0.45rem; font-size: 0.95rem; }
.about-card .about-contact a {
  color: var(--autumn-deep);
  font-weight: 600;
  border-bottom: 1px dashed currentColor;
}
.about-card .about-contact a:hover { color: var(--ink); }

.about-card-facts h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}
.fact-list li:last-child { border-bottom: 0; }
.fact-list span { color: var(--ink-faint); flex-shrink: 0; }
.fact-list strong { color: var(--ink); text-align: right; font-weight: 600; }
.fact-list a { color: var(--autumn-deep); font-weight: 600; }
.fact-list a:hover { text-decoration: underline; }

/* ============================================================
   季節區段（通用）
   ============================================================ */
.season-section {
  border-top: 1px solid var(--line);
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.season-spring { --accent: var(--spring); --accent-deep: var(--spring-deep); --accent-soft: var(--spring-soft); }
.season-summer { --accent: var(--summer); --accent-deep: var(--summer-deep); --accent-soft: var(--summer-soft); }
.season-autumn { --accent: var(--autumn); --accent-deep: var(--autumn-deep); --accent-soft: var(--autumn-soft); }
.season-winter { --accent: var(--winter); --accent-deep: var(--winter-deep); --accent-soft: var(--winter-soft); }

.season-head {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}

.season-head-text { min-width: 0; }

.season-num {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.22;
  flex-shrink: 0;
  margin-top: -0.4rem;
}

.season-label {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.season-intro {
  max-width: 760px;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  font-size: 1.02rem;
}

/* 建議天數等資訊列 */
.season-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 2.6rem;
}

.meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.meta-item span { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--ink-faint); }
.meta-item strong { font-size: 0.98rem; font-weight: 700; color: var(--accent-deep); }

/* 行程區塊標題 */
.block-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--accent);
  color: var(--ink);
}

/* 行程編號標籤（區分同季節多條行程） */
.itinerary-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 999px;
  padding: 0.22rem 0.85rem;
  margin-bottom: 0.7rem;
}

/* 路線分類（北疆線／南疆線） */
.route-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.4rem;
  padding: 0.9rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
}
.route-block .route-icon { font-size: 1.4rem; }
.route-block .route-text h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}
.route-block .route-text p {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 0.1rem;
}
.route-block:not(:first-of-type) {
  margin-top: 3.2rem;
}

/* 雙路線並排（桌面板兩欄，手機版直排） */
.routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}
.route-col .route-block:not(:first-of-type) { margin-top: 0; }

/* 路線季節標籤 */
.route-time {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 999px;
  padding: 0.22rem 0.75rem;
  white-space: nowrap;
}

.itinerary-note {
  margin: -0.7rem 0 1.2rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* 行程參考報價 */
.price-box {
  margin-top: 1.6rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}
.price-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.price-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  text-align: center;
}
.price-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.price-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--accent-deep);
  margin-top: 0.15rem;
}
.price-item.is-best {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, #fff);
}
.price-item.is-best strong::after {
  content: "最抵";
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.price-note {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* 同季節多條推薦行程之間留白 */
.itinerary + .itinerary {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px dashed var(--line);
}

/* 每日行程卡片 */
.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
}

.day-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.25rem;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.day-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.day-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.18rem 0.75rem;
  margin-bottom: 0.6rem;
}

.day-card h4 {
  font-family: var(--font-serif);
  font-size: 1.04rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.day-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* 必訪景點（相冊入口） */
.attractions { margin-top: 2.8rem; }

.attr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.attr-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.attr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}
.attr-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 60%, transparent);
  outline-offset: 2px;
}

.attr-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 32%, #fff),
    color-mix(in srgb, var(--accent) 10%, #fff)
  );
  overflow: hidden;
}

.attr-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cover, none);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.attr-card:hover .attr-cover::before { transform: scale(1.07); }

.attr-cover .attr-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(29, 35, 40, 0.22);
}

.attr-body { padding: 1.05rem 1.15rem 1.2rem; }
.attr-card h4 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.3rem; }
.attr-card p { font-size: 0.86rem; color: var(--ink-soft); }

.attr-album-hint {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  transition: transform 0.25s;
}
.attr-card:hover .attr-album-hint { transform: translateX(4px); }

/* 小貼士 */
.tips {
  margin-top: 2.8rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
}

.tips h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--accent-deep);
  margin-bottom: 0.9rem;
}

.tips li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.tips li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.tips li:last-child { margin-bottom: 0; }

/* ============================================================
   四季比較表
   ============================================================ */
.compare { background: var(--paper-warm); }

.table-wrap {
  margin-top: 2.2rem;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.compare-table th,
.compare-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
.th-spring { background: var(--spring); }
.th-summer { background: var(--summer); }
.th-autumn { background: var(--autumn); }
.th-winter { background: var(--winter); }

.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--ink);
  background: var(--paper-warm);
  white-space: nowrap;
}

.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover td { background: #fdfaf5; }
.compare-table tbody tr:hover td:first-child { background: var(--paper-warm); }

/* 手機版四季卡片（由 JS 從表格生成，桌面隱藏） */
.season-cards { display: none; }

@media (max-width: 720px) {
  .table-wrap { display: none; }
  .season-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .season-card {
    background: #fff;
    border-radius: var(--radius-sm);
    border-top: 4px solid var(--accent, var(--autumn));
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.1rem 1.1rem;
  }
  .season-card h4 {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--accent-deep, var(--autumn-deep));
    margin-bottom: 0.6rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px dashed var(--line);
  }
  .season-card dl { margin: 0; }
  .season-card dt {
    font-size: 0.7rem;
    color: var(--ink-faint);
    letter-spacing: 0.08em;
    margin-top: 0.45rem;
  }
  .season-card dd {
    font-size: 0.85rem;
    color: var(--ink);
    line-height: 1.6;
    margin: 0.1rem 0 0;
  }
  .sc-spring  { --accent: var(--spring); --accent-deep: var(--spring-deep); }
  .sc-summer  { --accent: var(--summer); --accent-deep: var(--summer-deep); }
  .sc-autumn  { --accent: var(--autumn); --accent-deep: var(--autumn-deep); }
  .sc-winter  { --accent: var(--winter); --accent-deep: var(--winter-deep); }
}

/* ============================================================
   景點相冊視窗
   ============================================================ */
.album-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 14, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.album-modal.is-open { opacity: 1; visibility: visible; }

.album-modal-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem 1.8rem 1.4rem;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s ease;
}
.album-modal.is-open .album-modal-panel { transform: translateY(0) scale(1); }

.album-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.3s;
}
.album-close:hover { background: var(--line); transform: rotate(90deg); }

.album-head { padding-right: 2.8rem; margin-bottom: 1.4rem; }

.album-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--ink-faint);
  margin-bottom: 0.3rem;
}

.album-head h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.album-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-top: 0.5rem;
  max-width: 72ch;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.7rem;
}

.album-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-warm);
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.album-item:hover img { transform: scale(1.08); }

.album-item .album-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 0.6rem 0.45rem;
  font-size: 0.72rem;
  color: #fff;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(15, 22, 28, 0.75));
  opacity: 0;
  transition: opacity 0.3s;
}
.album-item:hover .album-cap { opacity: 1; }

.album-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--paper-warm);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
}

.album-empty-icon { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.album-empty p { font-size: 0.95rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-warm); }

.faq-list {
  margin-top: 2rem;
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--autumn) 45%, transparent); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--autumn-deep);
  font-family: var(--font-sans);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--autumn-deep); }

.faq-item p {
  padding: 0 1.3rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background:
    linear-gradient(120deg, rgba(28, 42, 58, 0.92), rgba(28, 42, 58, 0.78)),
    url("../assets/images/班廸爾藍湖/481656869_1164441835054868_7391708897504256592_n.jpg") center/cover fixed;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.cta p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* ============================================================
   頁尾
   ============================================================ */
.site-footer {
  background: #171d23;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand { display: flex; gap: 0.9rem; align-items: flex-start; }

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}
.footer-links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); transition: color 0.2s; }
.footer-links a:hover { color: #ffd9a0; }

.footer-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  padding-top: 1.4rem;
  line-height: 1.8;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.6rem;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 18, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-figure {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  margin-top: 0.9rem;
  text-align: center;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.lightbox button:hover { background: rgba(255, 255, 255, 0.24); transform: scale(1.06); }

.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

/* ============================================================
   響應式
   ============================================================ */
@media (max-width: 1024px) {
  .season-meta { grid-template-columns: repeat(2, 1fr); row-gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  /* 雙路線：手機版改為直排 */
  .routes-grid { grid-template-columns: 1fr; gap: 2.6rem; }

  /* 手機選單內品牌區（僅行動版顯示） */
  .site-nav .nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.8rem;
    padding: 0;
    color: #fff;
  }
  .nav-brand img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07), 0 10px 28px rgba(0, 0, 0, 0.45);
  }
  .nav-brand .brand-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.32rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }
  .nav-brand .brand-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    margin-top: 0.1rem;
  }
  .nav-brand em { font-style: normal; color: #ffd9a0; }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1.2rem;
    overflow-y: auto;
    background:
      radial-gradient(120% 55% at 50% -8%, rgba(216, 142, 43, 0.2), transparent 55%),
      radial-gradient(110% 45% at 100% 100%, rgba(95, 143, 214, 0.14), transparent 52%),
      radial-gradient(90% 40% at 0% 100%, rgba(61, 156, 116, 0.1), transparent 50%),
      linear-gradient(165deg, rgba(18, 26, 34, 0.99), rgba(30, 44, 60, 0.99));
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }

  /* 膠囊連結＋交錯淡入 */
  .site-nav > a:not(.nav-brand) {
    font-size: 1.18rem;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 0.78rem 2.3rem;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease, background 0.25s ease, color 0.25s;
  }
  .site-nav.is-open > a:not(.nav-brand) {
    opacity: 1;
    transform: translateY(0);
  }
  .site-nav.is-open > a:nth-child(2) { transition-delay: 0.07s; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: 0.14s; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: 0.21s; }
  .site-nav.is-open > a:nth-child(5) { transition-delay: 0.28s; }
  .site-nav.is-open > a:nth-child(6) { transition-delay: 0.35s; }
  .site-nav.is-open > a:nth-child(7) { transition-delay: 0.42s; }

  .site-nav a:hover { background: rgba(255, 255, 255, 0.14); }
  .site-nav a.active { background: rgba(255, 217, 160, 0.18); color: #ffd9a0; }

  .site-nav .nav-cta {
    border: 1px solid rgba(255, 217, 160, 0.45);
    background: linear-gradient(135deg, rgba(216, 142, 43, 0.28), rgba(216, 142, 43, 0.12));
    margin-top: 0.9rem;
  }
  .site-nav .nav-cta:hover { background: #fff; color: var(--ink); }



  .season-strip { grid-template-columns: repeat(2, 1fr); margin-top: -2.4rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .season-head { flex-direction: row; }
  .season-num { font-size: 2.8rem; }
}

@media (max-width: 560px) {
  :root { --header-h: 66px; }

  /* —— 手機排版：字體大小／行距／對齊微調 —— */
  body {
    font-size: 16.5px;
    line-height: 1.82;
    letter-spacing: 0.012em;
  }

  .hero-title { line-height: 1.3; }
  .hero-sub { line-height: 1.85; }

  .section-title { line-height: 1.45; }

  .season-intro { font-size: 1rem; line-height: 1.85; }

  .day-card { padding: 1.15rem 1.2rem; }
  .day-card h4 { font-size: 1.07rem; margin-bottom: 0.5rem; }
  .day-card p { font-size: 0.93rem; line-height: 1.78; }

  .itinerary-note { font-size: 0.83rem; line-height: 1.7; }

  .block-title { font-size: 1.22rem; }
  .route-block { padding: 0.85rem 1rem; }
  .route-text h4 { font-size: 1.06rem; }
  .route-text p { font-size: 0.8rem; line-height: 1.6; }

  .price-box { padding: 1rem; }
  .price-item { padding: 0.6rem 0.4rem; }
  .price-item span { font-size: 0.72rem; }
  .price-item strong { font-size: 1rem; }
  .price-note { font-size: 0.78rem; line-height: 1.7; }

  .attr-card h4 { font-size: 0.98rem; }
  .attr-body { padding: 0.9rem 0.95rem 1.05rem; }
  .attr-body p { font-size: 0.82rem; line-height: 1.65; }

  .tips { padding: 1.25rem 1.3rem; }
  .tips li { font-size: 0.91rem; line-height: 1.75; }

  .album-desc { font-size: 0.93rem; line-height: 1.85; }
  .faq-item summary { font-size: 0.98rem; }
  .faq-item p { font-size: 0.91rem; line-height: 1.85; }

  .only-lg { display: none; }

  .season-strip { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .season-chip { padding: 1rem 0.9rem; }

  .season-meta { grid-template-columns: 1fr 1fr; padding: 1rem; }
  .day-grid { grid-template-columns: 1fr; }
  .attr-grid { grid-template-columns: 1fr 1fr; }

  .hero-stats { gap: 1.4rem; }
  .stat strong { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .cta { background-attachment: scroll; }

  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
  .lightbox button { width: 44px; height: 44px; font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
