:root {
  --bg: #f7f4ee;
  --bg-alt: #f5f2eb;
  --bg-card: rgba(255, 255, 255, 0.35);
  --text: #2f2f2f;
  --text-muted: #6a7d68;
  --text-dim: #8a9589;
  --accent: #385241;
  --accent-hover: #4f6b58;
  --accent-secondary: #6a7d68;
  --primary: #385241;
  --primary-hover: #4f6b58;
  --accent-soft: rgba(56, 82, 65, 0.12);
  --accent-glow: rgba(56, 82, 65, 0.28);
  --brand-green: #385241;
  --brand-green-hover: #4f6b58;
  --border: rgba(47, 47, 47, 0.08);
  --glass: rgba(255, 255, 255, 0.35);
  --shadow-card: 0 4px 24px rgba(47, 47, 47, 0.06);
  --shadow-card-hover: 0 12px 36px rgba(47, 47, 47, 0.1);
  --hero-text: #ffffff;
  --hero-text-muted: rgba(255, 255, 255, 0.88);
  --kiwi-pattern: url("images/网页使用照片集/site/kiwi-pattern.svg");
  --pattern-opacity: 1;
  --pattern-size-x: 230px;
  --pattern-size-y: 260px;
  --pattern-offset-x: 115px;
  --pattern-offset-y: 130px;
  --paper-panel: rgba(255, 255, 255, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 88px;
  --container: min(1200px, calc(100% - 48px));
  --section-pad: clamp(56px, 8vw, 100px);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-hero-title: "Ma Shan Zheng", "STXingkai", "华文行楷", "行楷", cursive;
  --wa: #25d366;
  --wechat: #07c160;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper texture (2%~3%) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='paperNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23paperNoise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

body.is-loading { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

body:not(.is-loading) .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* ── Header（轻奢旅行 · 暖白毛玻璃 + Kiwi 线稿纹理） ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 245, 241, 0.82);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  border-bottom: 1px solid rgba(56, 82, 65, 0.1);
  box-shadow: 0 1px 18px rgba(47, 47, 47, 0.04);
  transition:
    background 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    backdrop-filter 0.45s var(--ease-out);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--pattern-opacity);
  pointer-events: none;
  background-image: var(--kiwi-pattern), var(--kiwi-pattern);
  background-repeat: repeat, repeat;
  background-size: var(--pattern-size-x) var(--pattern-size-y), var(--pattern-size-x) var(--pattern-size-y);
  background-position: 0 0, var(--pattern-offset-x) var(--pattern-offset-y);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid rgba(56, 82, 65, 0.12);
  box-shadow: 0 4px 28px rgba(47, 47, 47, 0.06);
}

.brand-en,
.brand-zh,
.nav-center a,
.phone-label,
.phone-num,
.icon-btn,
.nav-toggle span,
.btn-cta {
  transition:
    color 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.header-bar {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.site-logo--footer {
  width: 56px;
  height: 56px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-en {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-zh {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
  white-space: nowrap;
}

.brand--footer .brand-en { font-size: 13px; }
.brand--footer .brand-zh { font-size: 11px; }

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.15vw, 20px);
  flex-wrap: wrap;
}

.nav-center a {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

.nav-center a:hover,
.nav-center a.is-active {
  color: var(--text);
}

.nav-center a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--brand-green);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  font-size: 12px;
  transition: opacity 0.25s;
}

.header-phone:hover { opacity: 0.85; }

.phone-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.phone-num {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(56, 82, 65, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.icon-btn svg { width: 18px; height: 18px; }

.icon-btn:hover {
  border-color: rgba(56, 82, 65, 0.35);
  background: #fff;
  box-shadow: 0 4px 14px rgba(56, 82, 65, 0.1);
}

.btn-cta {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(56, 82, 65, 0.22);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn-cta:hover {
  transform: translateY(-1px);
  background: var(--brand-green-hover);
  box-shadow: 0 8px 24px rgba(79, 107, 88, 0.32);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 22px;
  background: var(--text);
  margin-left: auto;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── Hero（左文案 · 右人物） ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: var(--pattern-opacity);
  pointer-events: none;
  background-image: var(--kiwi-pattern), var(--kiwi-pattern);
  background-repeat: repeat, repeat;
  background-size: var(--pattern-size-x) var(--pattern-size-y), var(--pattern-size-x) var(--pattern-size-y);
  background-position: 0 0, var(--pattern-offset-x) var(--pattern-offset-y);
  mix-blend-mode: soft-light;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%),
    linear-gradient(180deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%),
    linear-gradient(180deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  mask-composite: intersect;
}

/* Hero 信息流：主标题 → 副标题 → IP → 按钮 → 标签 */
.hero-headline {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h) + 132px);
  left: calc(clamp(20px, 4vw, 56px) + 60px);
  width: clamp(380px, 42vw, 560px);
  max-width: calc(100vw - 2 * (clamp(20px, 4vw, 56px) + 60px));
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 42%;
  animation: kenBurns 32s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.18) 38%,
      rgba(0, 0, 0, 0.04) 52%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.hero-title {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-hero-title);
  font-size: clamp(57px, 7.4vw, 105px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.05em;
  color:#f8f6f1;
  white-space: nowrap;
  text-shadow:
-2px -2px 0 rgba(80,80,80,0.8),
 2px -2px 0 rgba(80,80,80,0.8),
-2px  2px 0 rgba(80,80,80,0.8),
 2px  2px 0 rgba(80,80,80,0.8),
 0 8px 18px rgba(0,0,0,0.35);
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-title-break {
  display: none;
}

.hero-subtitle {
  width: 100%;
  margin: 24px 0 0;
  font-family: var(--font-hero-title);
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-byline {
  margin: 18px 0 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  min-width: 0;
  padding: 0 28px;
  font-size: clamp(14px, 1.8vw, 15px);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    color 0.4s var(--ease-out);
}

.btn-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-hero-icon svg {
  width: 18px;
  height: 18px;
}

.btn-hero-arrow {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.4s var(--ease-out);
}

.btn-hero--primary {
  background: linear-gradient(145deg, #faf8f4 0%, #ede8df 48%, #f5f1ea 100%);
  color: #2f2f2f;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-hero--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-hero--secondary {
  color: #fff;
  background: linear-gradient(145deg, #4a6354 0%, #385241 42%, #2d4235 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.btn-hero--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 66%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

.btn-hero--secondary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px rgba(56, 82, 65, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-hero--secondary:hover::before {
  opacity: 1;
}

.btn-hero--secondary:hover .btn-hero-arrow {
  transform: translateX(5px);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 0 10px 0 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 0;
}

.hero-highlight-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-highlight-icon {
  font-size: 14px;
  line-height: 1;
}

.hero-highlight-text {
  flex: 1;
  min-width: 0;
  padding-right: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

/* ── Hero route animation（奔驰商务精品小团路线） ── */
.hero-route {
  --route-car-w: 78px;
  --route-bottom: 86px;
  --route-end-x: calc(100vw - clamp(170px, 18vw, 280px));
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-route-pin {
  position: absolute;
  left: 0;
  bottom: var(--route-bottom);
  width: var(--route-car-w);
  animation: heroRouteDrive 15s ease-in-out infinite;
  will-change: transform;
}

.hero-route-vehicle {
  position: relative;
  width: var(--route-car-w);
  background: transparent;
  border: none;
  box-shadow: none;
  animation: heroRouteFloat 2.8s ease-in-out infinite;
  will-change: transform;
}

.hero-route-vehicle img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.hero-route-wheel {
  position: absolute;
  bottom: 9%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  animation: heroRouteWheel 1.3s linear infinite;
}

.hero-route-wheel--rear { left: 16%; }
.hero-route-wheel--front { right: 13%; }

.hero-route-card,
.hero-route-brand {
  color: #fff;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.hero-route-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: min(260px, 70vw);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
  white-space: nowrap;
}

.hero-route-card.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-route-brand {
  position: absolute;
  right: clamp(58px, 15vw, 220px);
  bottom: calc(var(--route-bottom) + 58px);
  max-width: 300px;
  padding: 12px 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.hero-route-brand.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-route-brand strong,
.hero-route-brand span {
  display: block;
}

.hero-route-brand strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-route-brand span {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.05em;
}

@keyframes heroRouteDrive {
  0% {
    transform: translate3d(-120px, 0, 0);
  }
  86.666%,
  100% {
    transform: translate3d(var(--route-end-x), -8px, 0);
  }
}

@keyframes heroRouteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes heroRouteWheel {
  to {
    transform: rotate(360deg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.hero-actions .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--hero-text);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-card);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 11px;
  opacity: 0.5;
}

.hero-scroll span {
  display: block;
  width: 3px;
  height: 6px;
  margin: 8px auto 0;
  background: var(--text);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.2; }
}

/* ── Sections（Kiwi 线稿背景纹理） ── */
.section {
  position: relative;
  isolation: isolate;
  padding: var(--section-pad) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--pattern-opacity);
  pointer-events: none;
  background-image: var(--kiwi-pattern), var(--kiwi-pattern);
  background-repeat: repeat, repeat;
  background-size: var(--pattern-size-x) var(--pattern-size-y), var(--pattern-size-x) var(--pattern-size-y);
  background-position: 0 0, var(--pattern-offset-x) var(--pattern-offset-y);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%),
    linear-gradient(180deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%),
    linear-gradient(180deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  mask-composite: intersect;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head,
.intro-copy,
.peter-copy,
.vehicle-card,
.summary-item,
.timeline-body,
.itinerary-cta,
.why-card,
.review-card,
.contact-us-head,
.contact-us-info,
.contact-us-qr,
.footer-brand-block,
.gallery-empty,
.tour-carousel-content,
.tour-overview-stat,
.tour-overview-note,
.tour-route,
.day-card,
.tour-book-cta {
  background: var(--paper-panel);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-head,
.intro-copy,
.peter-copy,
.contact-us-head,
.footer-brand-block {
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
}

.timeline-body {
  border-radius: var(--radius);
  padding: 18px 20px;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Intro ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.intro-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.intro-subtitle {
  margin: 0 0 clamp(22px, 3vw, 28px);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  color: var(--accent);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.intro-body {
  margin-bottom: clamp(22px, 3vw, 28px);
}

.intro-body p {
  margin: 0 0 14px;
  font-size: clamp(14.5px, 1.7vw, 16px);
  color: var(--text-muted);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.intro-body p:last-child {
  margin-bottom: 0;
}

.intro-lead {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.intro-list {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding: 0;
  list-style: none;
}

.intro-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.intro-list--check li {
  padding-left: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.intro-list--check li::before {
  content: "✓";
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  top: 10px;
  transform: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.intro-closing {
  margin: 0;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(56, 82, 65, 0.12);
  font-size: clamp(14.5px, 1.7vw, 16px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 12px 20px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-card);
}

/* ── Peter ── */
.peter-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.peter-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.peter-avatar {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: var(--bg-card);
  display: block;
}

.peter-media:not(:has(.peter-avatar)) img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.peter-caption {
  position: static;
  margin-top: 16px;
  padding: 0;
  background: none;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.peter-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
}

.peter-meta {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.peter-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 500;
}

.peter-subtitle {
  margin: -6px 0 20px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.peter-lead {
  margin: 0;
  max-width: 600px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.peter-lead + .peter-lead {
  margin-top: 14px;
}

.peter-service,
.peter-why {
  margin-top: clamp(48px, 7vw, 76px);
}

.peter-service .section-head,
.peter-why .section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.peter-highlights {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.peter-highlights--grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 0;
}

.peter-highlights article {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(47, 47, 47, 0.06);
  min-height: 152px;
}

.peter-highlights h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}

.peter-highlights p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Vehicle ── */
.vehicle-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.vehicle-gallery {
  display: grid;
  gap: 16px;
}

.vehicle-main {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.vehicle-main img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* 手机端完整显示车身（保持原有比例与圆角，不裁切） */
@media (max-width: 768px) {
  .vehicle-main img {
    object-fit: contain;
    background: var(--bg-alt);
  }
}

.vehicle-sub {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.vehicle-sub img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* 奔驰专栏图片轮播 */
.mb-carousel {
  position: relative;
}

.mb-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.mb-carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.mb-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
}

.mb-slide img {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 460px);
  object-fit: cover;
}

.mb-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 22px 18px;
  color: #fff;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.mb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  z-index: 2;
}

.mb-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.mb-arrow--prev { left: 14px; }
.mb-arrow--next { right: 14px; }

.mb-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.mb-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(56, 82, 65, 0.25);
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.mb-dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .mb-arrow {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
}

.vehicle-features {
  display: grid;
  gap: 14px;
}

.vehicle-card {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.vehicle-card:hover {
  border-color: var(--accent-soft);
  transform: translateX(4px);
}

.vehicle-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
}

.vehicle-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 500;
}

.vehicle-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Destinations ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--border);
}

.dest-card--wide {
  grid-column: span 2;
  min-height: 360px;
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.88));
}

.dest-tag {
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
  margin-bottom: 10px;
}

.dest-overlay h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
}

.dest-overlay p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ── Itinerary ── */
.itinerary-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.itinerary-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.summary-item {
  padding: 20px 16px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.summary-item span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.summary-item strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
}

.itinerary-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
  margin-left: 12px;
}

.timeline-item {
  position: relative;
  padding: 0 0 32px 32px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline-day {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
}

.timeline-body p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.itinerary-cta {
  margin-top: 40px;
  padding: 32px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.itinerary-cta p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ── 精品线路卡片 ── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.journey-grid--routes {
  align-items: stretch;
}

/* 首页精品线路：桌面 3+2，手机单列 */
.journey-grid--home {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.journey-grid--home .journey-card {
  grid-column: span 2;
  min-height: clamp(240px, 24vw, 280px);
}

.journey-grid--home .journey-card:nth-child(4) {
  grid-column: 2 / 4;
}

.journey-grid--home .journey-card:nth-child(5) {
  grid-column: 4 / 6;
}

.journey-card-desc {
  flex: 1;
  min-height: 3.2em;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.journey-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(47, 47, 47, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.journey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 82, 65, 0.18);
  box-shadow: 0 18px 44px rgba(47, 47, 47, 0.09);
}

.journey-card--featured {
  box-shadow: 0 18px 48px rgba(56, 82, 65, 0.1);
}

.journey-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.journey-card h2,
.journey-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.journey-card p:not(.journey-eyebrow) {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.journey-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.journey-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.routes-hero {
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 96px));
}

.routes-hero .section-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

/* ── Why · Peter 故事模块 ── */
.why-peter-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.why-peter-head h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--text);
}

.why-peter-lead {
  margin: clamp(16px, 2.5vw, 22px) 0 0;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1.6;
}

.why-peter-poem {
  margin: clamp(14px, 2vw, 20px) 0 0;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.04em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-grid--peter {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 960px;
  margin-inline: auto;
}

.why-card {
  padding: 36px 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.why-card--story {
  position: relative;
  text-align: left;
  padding: clamp(26px, 3vw, 34px) clamp(24px, 3vw, 32px);
  padding-left: clamp(28px, 3.5vw, 36px);
  min-height: clamp(200px, 22vw, 220px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(47, 47, 47, 0.05);
}

.why-card--story::before {
  content: "";
  position: absolute;
  top: clamp(26px, 3vw, 34px);
  left: 0;
  width: 3px;
  height: 36px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(56, 82, 65, 0.25) 100%);
  opacity: 0.7;
}

.why-card--story:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 82, 65, 0.18);
  box-shadow: 0 14px 36px rgba(47, 47, 47, 0.08);
}

.why-card-num {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  opacity: 0.85;
}

.why-card--story h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: var(--text);
}

.why-card-lead {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 15px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.why-card-desc {
  margin: 8px 0 0;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  color: var(--text-muted);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-card-hover);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.why-icon svg { width: 100%; height: 100%; }

.why-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 500;
}

.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-card-hover);
}

.review-media {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.review-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.review-card:hover .review-media img {
  transform: scale(1.04);
}

.review-stars {
  margin: 18px 24px 0;
  font-size: 14px;
  color: #f5a623;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 12px 24px 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: normal;
}

.review-card cite {
  display: block;
  margin: 0 24px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: normal;
}

/* ── Gallery ── */
.masonry {
  column-count: 4;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) forwards;
  border: 1px solid var(--border);
  transform: translateY(12px);
}

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

.masonry-item img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease-out);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.gallery-empty {
  text-align: center;
  color: var(--text-dim);
  padding: 40px 0;
}

/* ── Footer / 联系我们 ── */
.footer {
  position: relative;
  isolation: isolate;
  padding: var(--section-pad) 0 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding-bottom: calc(48px + 80px);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--pattern-opacity);
  pointer-events: none;
  background-image: var(--kiwi-pattern), var(--kiwi-pattern);
  background-repeat: repeat, repeat;
  background-size: var(--pattern-size-x) var(--pattern-size-y), var(--pattern-size-x) var(--pattern-size-y);
  background-position: 0 0, var(--pattern-offset-x) var(--pattern-offset-y);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%),
    linear-gradient(180deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%),
    linear-gradient(180deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  mask-composite: intersect;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-brand-block {
  margin-bottom: clamp(40px, 6vw, 56px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid var(--border);
}

.footer-brand-block .brand {
  display: inline-flex;
}

.footer-tagline {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
}

/* 联系我们模块 */
.contact-us {
  margin-bottom: 48px;
}

.contact-us-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.contact-us-head .section-desc {
  margin-top: 12px;
}

.contact-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: 880px;
  margin-inline: auto;
}

.contact-us-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), background 0.3s;
}

.contact-row:hover {
  border-color: var(--accent-soft);
  background: rgba(201, 184, 150, 0.06);
  transform: translateX(4px);
}

.contact-row-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.contact-row-icon svg {
  width: 22px;
  height: 22px;
}

.contact-row-text {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  word-break: break-all;
}

.contact-us-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-qr-card {
  margin: 0;
  text-align: center;
}

.contact-qr-img-wrap {
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.contact-qr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-qr-card figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.contact-qr-card--wa .contact-qr-img-wrap {
  border-color: var(--border);
}

.contact-qr-card--wa figcaption {
  color: var(--text-muted);
}

.contact-us-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(32px, 5vw, 40px);
}

/* ── 开始规划您的南岛之旅（联系页升级） ── */
.footer--plan {
  padding-top: clamp(64px, 9vw, 96px);
}

.plan-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 72px);
}

.plan-hero h2 {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.plan-hero-copy {
  margin-top: clamp(18px, 3vw, 28px);
}

.plan-hero-copy p {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.plan-hero-copy p:last-child {
  margin-bottom: 0;
}

.plan-peter {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto clamp(56px, 8vw, 80px);
  padding: clamp(28px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(47, 47, 47, 0.06);
}

.plan-peter-photo {
  margin: 0;
}

.plan-peter-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(47, 47, 47, 0.1);
  display: block;
}

.plan-peter-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.plan-peter-tags {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-peter-tags li {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(56, 82, 65, 0.08);
  border: 1px solid rgba(56, 82, 65, 0.12);
}

.plan-peter-highlight {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.plan-peter-routes-label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.plan-peter-routes p:last-child {
  margin: 0;
  font-size: clamp(14.5px, 1.7vw, 16px);
  color: var(--text-muted);
  line-height: 1.9;
}

.plan-peter-contact {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(56, 82, 65, 0.1);
}

.plan-contact-link {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  transition: opacity 0.25s;
}

.plan-contact-link:hover {
  opacity: 0.75;
}

.plan-contact-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.plan-contact-value {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  color: var(--text);
  word-break: break-all;
}

.plan-section-title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.plan-why {
  max-width: 1080px;
  margin: 0 auto clamp(56px, 8vw, 80px);
}

.plan-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 24px);
}

.plan-why-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(47, 47, 47, 0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.plan-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(47, 47, 47, 0.08);
}

.plan-why-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.plan-why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.plan-why-card:hover .plan-why-visual img {
  transform: scale(1.04);
}

.plan-why-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 26px);
}

.plan-why-body h4 {
  margin: 0 0 10px;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.plan-why-lead {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.plan-why-body p:last-child {
  margin: 0;
  margin-top: auto;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.plan-contact {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vw, 72px);
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(47, 47, 47, 0.06);
}

.plan-contact-sub {
  margin: 0 0 8px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.plan-contact-hint {
  margin: 0 0 clamp(28px, 4vw, 36px);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.plan-qr-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 48px);
  margin-inline: auto;
}

.plan-qr-row .contact-qr-card {
  flex: 0 1 220px;
}

.plan-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 36px);
}

.plan-quote {
  margin: 0 auto clamp(40px, 6vw, 56px);
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  max-width: 680px;
  text-align: center;
  border: none;
  background: transparent;
}

.plan-quote p {
  margin: 0 0 16px;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.plan-quote-welcome {
  color: var(--accent) !important;
  font-weight: 500 !important;
}

.plan-quote footer {
  margin-top: clamp(20px, 3vw, 28px);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* 微信弹窗二维码 */
.wechat-dialog-qr img {
  width: 220px;
  height: 220px;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
  background: #fff;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── Float contact ── */
.float-contact {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  text-decoration: none;
}

.float-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.float-btn--wa {
  background: var(--wa);
}

.float-btn--wechat {
  background: var(--wechat);
}

/* ── WeChat modal ── */
.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wechat-modal[hidden] { display: none; }

.wechat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.wechat-dialog {
  position: relative;
  width: min(400px, 100%);
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  animation: slideDown 0.35s var(--ease-out);
}

.wechat-dialog h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
}

.wechat-dialog > p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.wechat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--glass);
  color: var(--text);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.wechat-id {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.wechat-id a {
  color: var(--accent);
}

/* ── Search ── */
.search-panel {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 24px 24px;
}

.search-panel[hidden] { display: none; }

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.search-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  animation: slideDown 0.35s var(--ease-out);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--glass);
  color: var(--text);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.search-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.search-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
}

.search-results {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.search-results li { border-bottom: 1px solid var(--border); }

.search-results a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.search-results a:hover { color: var(--accent); }

.search-results .empty {
  padding: 12px 0;
  color: var(--text-dim);
  font-size: 14px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: var(--glass);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-center {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid rgba(56, 82, 65, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.4s, visibility 0.4s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav-center a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .nav-center.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle { display: flex; }

  .header-phone { display: none; }

  .intro-grid,
  .peter-grid,
  .vehicle-showcase {
    grid-template-columns: 1fr;
  }

  .peter-highlights--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .peter-media { order: -1; }

  .peter-avatar {
    width: 180px;
    height: 180px;
  }

  .dest-card--wide {
    grid-column: span 1;
    min-height: 280px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .why-grid--peter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid,
  .journey-grid--home {
    grid-template-columns: 1fr;
  }

  .journey-grid--home .journey-card,
  .journey-grid--home .journey-card:nth-child(4),
  .journey-grid--home .journey-card:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    text-align: center;
  }

  .footer-brand-block .brand {
    justify-content: center;
  }

  .footer-tagline { margin-inline: auto; }

  .contact-us-grid {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
  }

  .contact-us-qr {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-peter {
    grid-template-columns: 1fr;
    max-width: min(560px, 100%);
  }

  .plan-peter-photo img {
    max-height: 420px;
    aspect-ratio: auto;
  }

  .masonry { column-count: 2; }

  .hero {
    padding-right: clamp(26vw, 36%, 480px);
  }

  .hero-headline {
    left: calc(clamp(20px, 4vw, 56px) + 48px);
    width: 40vw;
    max-width: 40vw;
  }

  .hero-title {
    font-size: clamp(57px, 7.4vw, 105px);
  }

  .hero-bg-img {
    object-position: 92% 40%;
  }

  .hero-route {
    --route-car-w: 65px;
    --route-bottom: 74px;
    --route-end-x: calc(100vw - clamp(145px, 20vw, 220px));
  }

  .hero-route-brand {
    right: clamp(36px, 14vw, 160px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 88px;
    --container: calc(100% - 32px);
  }

  .header-bar { padding: 0 16px; gap: 12px; }

  .brand-en { font-size: 12px; }
  .brand-zh { font-size: 10px; }

  .btn-cta {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
  }

  .btn-primary,
  .btn-outline,
  .btn-hero {
    min-height: 48px;
    font-size: 15px;
  }

  .btn-hero {
    padding: 14px 22px;
  }

  .contact-us-actions .btn {
    min-height: 50px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .float-btn {
    min-width: 52px;
    min-height: 52px;
  }

  .hero-headline {
    top: calc(var(--header-h) + 60px);
    left: calc(16px + 24px);
    width: min(40vw, calc(100% - 120px));
    max-width: min(40vw, calc(100% - 120px));
  }

  .hero-title {
    font-size: clamp(42px, 11.5vw, 57px);
    white-space: normal;
    line-height: 1.15;
    letter-spacing: 0.04em;
  }

  .hero-title-break {
    display: block;
    line-height: 0;
  }

  .hero-subtitle {
    font-size: clamp(20px, 5vw, 26px);
    letter-spacing: 0.08em;
  }

  .hero-byline {
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-bg-img {
    object-position: 88% 38%;
  }

  .hero-route {
    --route-car-w: 52px;
    --route-bottom: 54px;
    --route-end-x: calc(100vw - clamp(118px, 30vw, 160px));
  }

  .hero-route-card {
    padding: 7px 10px;
    font-size: 11px;
    max-width: min(220px, 78vw);
  }

  .hero-route-brand {
    right: clamp(18px, 12vw, 70px);
    bottom: calc(var(--route-bottom) + 46px);
    max-width: min(260px, 72vw);
    padding: 10px 12px;
  }

  .hero-route-brand strong {
    font-size: 12px;
  }

  .hero-route-brand span {
    font-size: 10px;
  }

  .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-highlights li {
    flex: 1 1 calc(50% - 5px);
    width: auto;
    min-width: min(100%, 168px);
  }

  .hero-highlights li:last-child {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .peter-avatar {
    width: 140px;
    height: 140px;
  }

  .float-btn span {
    display: none;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .float-contact {
    right: 16px;
    bottom: 16px;
  }

  .masonry { column-count: 1; }

  .why-grid,
  .why-grid--peter {
    grid-template-columns: 1fr;
    max-width: min(480px, 100%);
  }

  .why-card--story {
    min-height: 0;
    padding: 24px 24px 24px 28px;
  }

  .why-peter-poem br {
    display: none;
  }

  .why-peter-poem {
    line-height: 1.85;
  }

  .peter-highlights--grid {
    grid-template-columns: 1fr;
  }

  .itinerary-summary {
    grid-template-columns: 1fr 1fr;
  }

  .contact-us-grid {
    max-width: 100%;
  }

  .contact-us-qr {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-row {
    padding: 16px 18px;
  }

  .contact-row-icon {
    width: 40px;
    height: 40px;
  }

  .contact-us-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

  .contact-us-actions .btn {
    width: 100%;
  }

  .plan-contact-link {
    grid-template-columns: 64px 1fr;
  }

  .plan-why-grid {
    grid-template-columns: 1fr;
    max-width: min(480px, 100%);
    margin-inline: auto;
  }

  .plan-qr-row {
    flex-direction: column;
    align-items: center;
  }

  .plan-contact-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 4px;
  }

  .plan-contact-actions .btn {
    width: 100%;
  }

  .plan-quote p br {
    display: none;
  }

  .lightbox { padding: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .brand-text {
    max-width: calc(100vw - 120px);
  }

  .brand-en,
  .brand-zh {
    white-space: normal;
  }

  .icon-btn { display: none; }

  .contact-us-qr {
    grid-template-columns: 1fr;
    max-width: 220px;
    margin-inline: auto;
  }

  .contact-qr-img-wrap {
    max-width: 200px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg-img {
    animation: none;
    transform: none;
  }
  .hero-route-pin,
  .hero-route-vehicle,
  .hero-route-wheel {
    animation: none;
  }
  .hero-route-pin {
    transform: translate3d(var(--route-end-x), -8px, 0);
  }
  .hero-scroll span, .loader-line { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .btn-hero:hover { transform: none; }
  .btn-hero:hover .btn-hero-arrow { transform: none; }
}

/* ── 行程详情页 winter-tour.html ── */
.page-tour {
  padding-top: 0;
}

.page-tour .tour-carousel {
  padding-top: var(--header-h);
}

/* 顶部轮播 */
.tour-carousel {
  position: relative;
  height: min(72vh, 560px);
  min-height: 360px;
  overflow: hidden;
  background: var(--bg);
}

.tour-carousel-track {
  position: absolute;
  inset: 0;
}

.tour-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}

.tour-carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.tour-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.tour-carousel-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(72px, 12vw, 100px);
}

.tour-carousel-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.tour-carousel-title {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tour-carousel-caption {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.tour-carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.carousel-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* 行程概览 */
.tour-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.tour-overview-stat {
  padding: 24px 16px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tour-overview-stat strong {
  display: block;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}

.tour-overview-stat span {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.tour-overview-note {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.tour-route {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--text-muted);
}

.tour-route span:not(.tour-route-arrow) {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--glass);
  color: var(--text);
}

.tour-route-arrow {
  color: var(--accent);
  font-size: 12px;
}

/* 每日卡片 */
.day-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin-inline: auto;
}

.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.day-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.day-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.day-card-num {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 100px;
}

.day-card-head h3 {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

.day-card-desc {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.day-card-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}

.day-meta-item {
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.day-meta-item--full {
  grid-column: 1 / -1;
}

.day-meta-item dt {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.day-meta-item dd {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.tour-book-cta {
  margin-top: clamp(40px, 6vw, 56px);
  padding: 32px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 880px;
  margin-inline: auto;
}

.tour-book-cta p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.tour-book-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-tour .footer {
  padding-bottom: calc(48px + 80px);
}

.page-tour .footer-copy a {
  color: var(--accent);
  transition: opacity 0.25s;
}

.page-tour .footer-copy a:hover {
  opacity: 0.8;
}

/* ── 旗舰路线页 south-island-13-day.html ── */
.route-cover {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 720px);
  padding: calc(var(--header-h) + clamp(72px, 10vw, 120px)) 0 clamp(72px, 10vw, 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.route-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--kiwi-pattern), var(--kiwi-pattern);
  background-repeat: repeat, repeat;
  background-size: var(--pattern-size-x) var(--pattern-size-y), var(--pattern-size-x) var(--pattern-size-y);
  background-position: 0 0, var(--pattern-offset-x) var(--pattern-offset-y);
}

.route-cover-inner {
  max-width: 860px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(47, 47, 47, 0.08);
}

.route-cover h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.route-cover-subtitle {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.75;
}

.route-cover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.route-cover-tags span,
.route-price-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.route-cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.flagship-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flagship-timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 56px;
  width: 1px;
  background: rgba(56, 82, 65, 0.18);
}

.flagship-day {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.flagship-day + .flagship-day {
  margin-top: 28px;
}

.flagship-day-num {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(56, 82, 65, 0.18);
}

.flagship-day-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(47, 47, 47, 0.06);
}

.flagship-day-card h3 {
  margin: 0 0 22px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.flagship-day-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.flagship-day-card dl div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.flagship-day-card dt {
  margin: 0 0 7px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.flagship-day-card dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.route-pricing {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(47, 47, 47, 0.06);
}

.route-pricing h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.route-pricing p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.route-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 32px;
}

.route-price-grid span {
  justify-content: center;
}

@media (max-width: 900px) {
  .tour-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .day-card-meta {
    grid-template-columns: 1fr;
  }

  .day-meta-item--full {
    grid-column: 1;
  }

  .route-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flagship-day-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .route-cover {
    min-height: auto;
    padding-top: calc(var(--header-h) + 48px);
  }

  .route-cover h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .route-cover-actions {
    flex-direction: column;
  }

  .route-cover-actions .btn {
    width: 100%;
  }

  .journey-card .btn {
    align-self: stretch;
    width: 100%;
  }

  .flagship-timeline::before {
    left: 18px;
  }

  .flagship-day {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 42px;
  }

  .flagship-day-num {
    position: relative;
    top: auto;
    width: max-content;
    height: 38px;
    padding: 0 16px;
  }

  .tour-carousel {
    height: min(65vh, 480px);
    min-height: 320px;
  }

  .tour-carousel-title br {
    display: none;
  }

  .tour-route {
    font-size: 13px;
    padding: 16px;
  }

  .tour-book-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-book-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .route-price-grid {
    grid-template-columns: 1fr;
  }

  .tour-overview-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* ====================================================================
   多页面扩展：一日游 / 两日游 / 三日游 / 景点百科 / 摄影旅拍 / 客人评价
   沿用现有米白 + 森林绿配色与卡片风格；类名前缀 tt- 避免与既有样式冲突
   ==================================================================== */

.nav-center a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* 「查看全部 →」入口链接 */
.tt-see-all-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 22px;
}

.tt-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease-out);
}

.tt-see-all .tt-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}

.tt-see-all:hover {
  color: var(--accent-hover);
}

.tt-see-all:hover .tt-arrow {
  transform: translateX(4px);
}

/* 档期安排 availability */
.avail-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 38px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(56, 82, 65, 0.22);
  box-shadow: var(--shadow-card);
}

.avail-highlight .avail-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.avail-highlight .avail-dot::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2faa5d;
  box-shadow: 0 0 0 4px rgba(47, 170, 93, 0.18);
}

.avail-highlight strong {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.avail-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 24px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.avail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.avail-card--rest {
  background: var(--bg-alt);
}

.avail-month {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.avail-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.avail-badge--open {
  color: #1f6b3d;
  background: rgba(47, 170, 93, 0.14);
}

.avail-badge--open::before {
  background: #2faa5d;
}

.avail-badge--rest {
  color: #9a6a3a;
  background: rgba(199, 142, 74, 0.16);
}

.avail-badge--rest::before {
  background: #c78e4a;
}

/* 月历档期系统 calendar */
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 0 0 12px;
}

.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.cal-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-dot--open { background: #2faa5d; }
.cal-dot--enquiry { background: #e6b400; }
.cal-dot--booked { background: #d24b4b; }
.cal-dot--holiday { background: #6f6f6f; }

.cal-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.9;
  max-width: 660px;
  margin: 0 auto clamp(28px, 4vw, 42px);
}

.cal-root {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.cal-month {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(16px, 2vw, 22px);
}

.cal-month-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.cal-weekdays,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-weekdays {
  margin-bottom: 6px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.cal-day--empty {
  background: transparent;
}

.cal-day--open {
  background: rgba(47, 170, 93, 0.16);
  color: #1f6b3d;
}

.cal-day--enquiry {
  background: rgba(230, 180, 0, 0.22);
  color: #8a6a00;
}

.cal-day--booked {
  background: rgba(210, 75, 75, 0.18);
  color: #a83232;
}

.cal-day--holiday {
  background: rgba(111, 111, 111, 0.18);
  color: #5f5f5f;
}

@media (max-width: 560px) {
  .cal-root {
    grid-template-columns: 1fr;
  }

  .cal-day {
    font-size: 12px;
    border-radius: 7px;
  }

  .cal-weekdays span {
    font-size: 10px;
  }
}

/* Peter与南岛 · 品牌故事 + 资质背书 */
.peter-si-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.peter-si-head h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.peter-si-lead {
  margin: clamp(14px, 2.5vw, 20px) 0 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  line-height: 1.7;
}

.peter-si-belief {
  margin-top: clamp(24px, 3.5vw, 32px);
  padding-top: clamp(24px, 3.5vw, 32px);
  border-top: 1px solid rgba(56, 82, 65, 0.12);
}

.peter-si-belief-label {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.peter-si-belief-text {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.04em;
}

.peter-si-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  max-width: 1080px;
  margin-inline: auto;
}

.peter-si-photo {
  margin: 0;
}

.peter-si-avatar {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(47, 47, 47, 0.12);
  display: block;
}

.peter-si-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-top: 18px;
}

.peter-si-name {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.peter-si-meta {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.peter-si-story {
  margin-top: clamp(24px, 3vw, 32px);
  max-width: 480px;
}

.peter-si-story p {
  margin: 0 0 16px;
  font-size: clamp(14.5px, 1.7vw, 16px);
  color: var(--text-muted);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.peter-si-story p:last-child {
  margin-bottom: 0;
}

.peter-si-story-highlight {
  font-weight: 600;
  color: var(--text) !important;
  font-size: clamp(15px, 1.8vw, 17px) !important;
}

.peter-si-story-closing {
  color: var(--text) !important;
  font-weight: 500;
}

.peter-si-trust {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
}

.peter-si-cert-head {
  text-align: center;
}

.peter-si-cert-head h3 {
  margin: 0 0 6px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.peter-si-cert-head p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.peter-si-cert {
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(56, 82, 65, 0.1);
  box-shadow: 0 12px 36px rgba(47, 47, 47, 0.07);
}

.cred-badges--trust {
  margin-top: 0;
  justify-content: flex-start;
  gap: 10px;
}

.cred-badges--trust li {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(56, 82, 65, 0.12);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
}

.cred-badges--trust li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 2px;
}

/* 公司资质 Company Credentials（其他页面复用） */
.cred-intro {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 44px);
  text-align: center;
}

.cred-intro p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.9;
}

.cred-intro p:last-child {
  margin-bottom: 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.cred-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(18px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cred-card-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cred-card-value {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.cred-cert {
  max-width: 720px;
  margin: 0 auto;
}

.cred-cert-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
}

.cred-cert-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(47, 47, 47, 0.12);
  padding: clamp(16px, 2.4vw, 28px);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.cred-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(47, 47, 47, 0.16);
}

.cred-cert-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.cred-cert-card figcaption {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.cred-badges {
  list-style: none;
  padding: 0;
  margin: clamp(24px, 3vw, 32px) 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cred-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(47, 170, 93, 0.12);
  border: 1px solid rgba(47, 170, 93, 0.3);
  color: #1f6b3d;
  font-size: 13.5px;
  font-weight: 500;
}

.cred-badges li::before {
  content: none;
}

/* 首页精简版公司资质 */
.cred-compact {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.cred-compact-name {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--text);
}

.cred-compact-tagline {
  margin: 0 0 clamp(20px, 3vw, 28px);
  color: var(--text-muted);
  font-size: 15px;
}

.cred-compact-list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.cred-compact-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: baseline;
}

.cred-compact-list dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cred-compact-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.cred-cert-card--compact {
  margin: 0;
}

.home-routes-cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

/* ── 首页重组：Peter 信任 → 线路 → 故事 → 咨询 ── */
.home-peter-head {
  max-width: 720px;
  margin-inline: auto;
}

.home-trust-list {
  list-style: none;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: 0;
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}

.home-trust-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.home-trust-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.home-trust-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.home-trust-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.home-trust-card--cert {
  cursor: pointer;
}

.home-trust-card--cert img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #faf9f7;
  padding: 8px;
}

.home-trust-card figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--border);
}

.home-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.home-about-block h3 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--text);
}

.home-about-block p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

.home-about-block p:last-child {
  margin-bottom: 0;
}

.home-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.home-route-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.home-route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(47, 47, 47, 0.12);
  border-color: rgba(47, 170, 93, 0.35);
}

.home-route-card--featured {
  border-color: rgba(47, 170, 93, 0.25);
  background: linear-gradient(180deg, #fff 0%, rgba(47, 170, 93, 0.04) 100%);
}

.home-route-card__img {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-route-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-route-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px, 2.5vw, 20px);
  flex: 1;
}

.home-route-card__days {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-route-card__body h3 {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
}

.home-route-card__body p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.home-route-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

/* 摄影相册 — 地区封面网格 */
.gallery-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 1100px;
  margin-inline: auto;
}

.gallery-region-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(47, 47, 47, 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.gallery-region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(47, 47, 47, 0.12);
}

.gallery-region-card__img {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e6e2;
}

.gallery-region-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-region-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 36px 14px 14px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 40, 32, 0.75) 100%);
  border: none;
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

/* ── 摄影作品集 — Photography Showcase ── */
.section-photo-showcase {
  --photo-title-gap: clamp(28px, 4vw, 40px);
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.photo-showcase-intro {
  padding: clamp(16px, 2.5vw, 24px) 0 0;
}

.photo-showcase-intro--tight {
  padding-bottom: 0;
}

.photo-showcase-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--photo-title-gap, 36px);
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 0;
}

.photo-showcase-head--home {
  margin-bottom: var(--photo-title-gap, 36px);
}

.photo-showcase-head--page {
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.photo-showcase-head h1,
.photo-showcase-head h2 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.photo-showcase-head .section-kicker {
  margin-bottom: 6px;
}

.photo-showcase-head .section-desc {
  margin: 0;
  color: var(--text-muted, #666);
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.55;
}

.photo-section-head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.photo-section-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
}

.photo-showcase-hero {
  width: 100%;
  margin: 0 0 clamp(24px, 3.5vw, 32px);
}

.photo-showcase-intro--tight .photo-showcase-hero {
  margin-top: 0;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.photo-hero-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 21 / 9;
  max-height: min(52vh, 480px);
  background: #1a1f1c;
}

.photo-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out, ease-out);
  cursor: zoom-in;
}

.photo-hero-figure:hover img {
  transform: scale(1.03);
}

.photo-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 32px) clamp(18px, 3vw, 24px);
  background: linear-gradient(180deg, transparent 0%, rgba(12, 18, 14, 0.72) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.photo-hero-label {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.photo-hero-label-en {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.photo-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
  max-width: 1140px;
  margin-inline: auto;
}

.photo-masonry--uniform .photo-masonry-item img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.photo-masonry--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-masonry-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(30, 40, 32, 0.1);
  background: #e8e6e2;
  transition: transform 0.35s var(--ease-out, ease-out), box-shadow 0.35s var(--ease-out, ease-out);
}

.photo-masonry-item:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 40px rgba(30, 40, 32, 0.14);
}

.photo-masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.photo-theme-block {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.photo-theme-block:last-child {
  margin-bottom: 0;
}

.photo-theme-head {
  margin-bottom: clamp(18px, 3vw, 24px);
}

.photo-theme-head h3 {
  margin: 0 0 4px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

.photo-theme-head p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.photo-showcase-regions {
  padding-top: clamp(24px, 4vw, 36px);
}

.photo-showcase-featured {
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 56px);
}

.page-photo-showcase .photo-showcase-intro {
  padding-top: clamp(16px, 2.5vw, 24px);
}

.page-photo-showcase .section {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.page-photo-showcase .photo-showcase-featured.section {
  padding-top: 0;
}

.page-gallery-hub .tt-banner,
.page-gallery-region .tt-banner--region {
  min-height: 220px;
}

@media (max-width: 900px) {
  .photo-masonry,
  .photo-masonry--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .photo-hero-figure {
    aspect-ratio: 16 / 9;
    max-height: min(44vh, 360px);
  }
}

@media (max-width: 640px) {
  .section-photo-showcase {
    --photo-title-gap: 28px;
  }

  .photo-showcase-head,
  .photo-showcase-head--home {
    margin-bottom: 28px;
  }

  .photo-masonry,
  .photo-masonry--home {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-hero-figure {
    max-height: 260px;
  }
}

/* 首页瀑布流（客人好评墙） */
#gallery,
#reviews {
  scroll-margin-top: 88px;
}

.home-gallery-masonry {
  max-width: 1100px;
  margin-inline: auto;
  column-count: 4;
}

#homeGalleryShowcase {
  margin-top: clamp(24px, 4vw, 40px);
}

.home-gallery-masonry .home-gallery-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.08);
}

.home-gallery-item {
  margin: 0 0 14px;
  break-inside: avoid;
}

/* 首页精选摄影 — 编辑式大小图混排 */
#homeGalleryShowcase.home-gallery-masonry--editorial {
  column-count: unset;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
  max-width: 1140px;
}

#homeGalleryShowcase .home-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

#homeGalleryShowcase .home-gallery-item img {
  width: 100%;
  max-width: 100%;
  min-height: 160px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

#homeGalleryShowcase .home-gallery-item--hero {
  grid-column: span 7;
}

#homeGalleryShowcase .home-gallery-item--wide {
  grid-column: span 5;
}

#homeGalleryShowcase .home-gallery-item--standard {
  grid-column: span 4;
}

#homeReviewsMasonry .home-gallery-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.home-reviews-cta {
  text-align: center;
  margin: 0 auto clamp(24px, 4vw, 32px);
  max-width: 520px;
}

.home-reviews-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  max-width: 1140px;
  margin-inline: auto;
}

/* ── 客户评价中心卡片 ── */
.rev-stars {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  line-height: 1;
}

.rev-center-card {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
  padding: clamp(18px, 2.5vw, 24px);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(47, 47, 47, 0.06);
  height: 100%;
}

.rev-center-card--highlight {
  border-color: rgba(56, 82, 65, 0.18);
  background: linear-gradient(145deg, rgba(255,255,255,0.58) 0%, rgba(56,82,65,0.04) 100%);
}

.rev-center-card--compact {
  padding: clamp(14px, 2vw, 18px);
}

.rev-center-card__meta {
  margin-bottom: 6px;
}

.rev-center-card__meta .rev-guest-name {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.rev-center-card__meta .rev-guest-meta {
  font-size: 0.8rem;
  color: var(--text-muted, #666);
}

.rev-center-card__quote {
  margin: 0;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  line-height: 1.65;
  color: #333;
  font-style: normal;
  border: none;
  padding: 0;
}

.rev-media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.rev-media-gallery--compact {
  grid-template-columns: 1fr;
}

.rev-media-slot {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 4px 14px rgba(47, 47, 47, 0.08);
  transition: transform 0.3s var(--ease-out, ease-out);
}

.rev-media-slot:hover {
  transform: scale(1.02);
}

.rev-media-slot img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  cursor: zoom-in;
}

.rev-media-slot--guest img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.rev-media-slot .rev-source {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}

.rev-center-list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
  max-width: 920px;
  margin-inline: auto;
}

.rev-center-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 24px);
}

@media (max-width: 900px) {
  .home-reviews-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rev-center-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-reviews-preview-grid {
    grid-template-columns: 1fr;
  }

  .rev-media-gallery {
    grid-template-columns: 1fr;
  }

  .rev-media-slot img {
    aspect-ratio: 4 / 5;
    max-height: 320px;
  }
}

.home-reviews-stars {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  letter-spacing: 0.15em;
  margin: 0 0 8px;
}

.home-reviews-cta-title {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin: 0 0 8px;
  font-weight: 600;
}

.home-reviews-cta-desc {
  color: var(--text-muted, #666);
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.home-reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.home-featured-reviews {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.home-featured-reviews .rev-featured {
  min-height: 100%;
}

.rev-hero-stars {
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}

.rev-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.rev-card-grid-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.07);
}

.rev-card-grid-media {
  margin: 0;
  position: relative;
}

.rev-card-grid-media img {
  width: 100%;
  display: block;
  max-height: 240px;
  object-fit: cover;
  object-position: top center;
}

.rev-card-grid-media .rev-source {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.rev-card-grid-body {
  padding: 14px 16px 18px;
}

.rev-card-grid-guest {
  font-size: 13px;
  color: #888;
  margin: 0 0 6px;
}

.rev-card-grid-body h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.rev-card-grid-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}

.rev-cta-band {
  text-align: center;
}

.rev-cta-band h2 {
  margin-bottom: 10px;
}

.rev-cta-band p {
  color: var(--text-muted, #666);
  margin-bottom: 20px;
}

.page-customer-reviews .rev-featured--card {
  cursor: pointer;
}

@media (max-width: 640px) {
  .home-featured-reviews.rev-featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  #homeGalleryShowcase.home-gallery-masonry--editorial {
    grid-template-columns: repeat(6, 1fr);
  }

  #homeGalleryShowcase .home-gallery-item--hero {
    grid-column: span 6;
  }

  #homeGalleryShowcase .home-gallery-item--wide {
    grid-column: span 3;
  }

  #homeGalleryShowcase .home-gallery-item--standard {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .home-gallery-masonry {
    column-count: 2;
  }

  #homeGalleryShowcase.home-gallery-masonry--editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #homeGalleryShowcase .home-gallery-item--hero {
    grid-column: span 2;
  }

  #homeGalleryShowcase .home-gallery-item--wide,
  #homeGalleryShowcase .home-gallery-item--standard {
    grid-column: span 1;
  }

  #homeGalleryShowcase .home-gallery-item img {
    min-height: 120px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-img {
    max-width: 96vw;
    max-height: 80vh;
  }
}

.home-gallery-cta {
  text-align: center;
  margin-top: clamp(20px, 3vw, 28px);
}

#reviews + .footer--consult.footer--plan {
  padding-top: clamp(48px, 7vw, 72px);
}

.footer--consult .plan-hero-copy--single {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.home-contact-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.home-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 22px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s;
}

.home-contact-item:hover {
  border-color: rgba(47, 170, 93, 0.35);
  background: #fff;
}

.home-contact-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.home-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.home-contact-actions {
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 900px) {
  .home-trust-visual {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .home-trust-list {
    grid-template-columns: 1fr;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
  }

  .home-routes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-routes-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  min-height: 52px;
}

/* 精品线路分类页 */
.pr-section {
  scroll-margin-top: 88px;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.pr-grid--2 {
  max-width: 880px;
  margin-inline: auto;
}

.pr-grid--single {
  max-width: 640px;
  margin-inline: auto;
}

.pr-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(47, 47, 47, 0.12);
  border-color: rgba(47, 170, 93, 0.35);
}

.pr-card--featured {
  border-color: rgba(47, 170, 93, 0.25);
  background: linear-gradient(145deg, #fff 0%, rgba(47, 170, 93, 0.04) 100%);
}

.pr-card-num {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.pr-card h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.pr-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.pr-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

.pr-see-all {
  text-align: center;
  margin-top: clamp(24px, 3vw, 32px);
}

@media (max-width: 900px) {
  .peter-si-split {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
    margin-inline: auto;
  }

  .peter-si-avatar {
    max-width: 100%;
  }

  .peter-si-story {
    max-width: none;
  }

  .cred-badges--trust {
    justify-content: center;
  }

  .peter-si-belief-text br {
    display: none;
  }
}

@media (max-width: 760px) {
  .cred-compact {
    grid-template-columns: 1fr;
  }

  .cred-compact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .cred-compact-list div {
    grid-template-columns: 1fr;
  }
}

.cred-note {
  max-width: 720px;
  margin: clamp(36px, 5vw, 52px) auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.9;
}

@media (max-width: 760px) {
  .cred-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .cred-grid {
    grid-template-columns: 1fr;
  }
}

/* 页面顶部 Banner（占位大图 + 标题） */
.tt-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(56vh, 440px);
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(48px, 7vw, 84px);
  overflow: hidden;
}

.tt-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.tt-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 41, 38, 0.52) 0%, rgba(31, 41, 38, 0.34) 55%, rgba(31, 41, 38, 0.52) 100%);
}

.tt-banner-inner {
  max-width: 780px;
  padding: 0 24px;
}

.tt-banner-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 13px;
}

.tt-banner h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.tt-banner p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
}

/* 线路卡片网格 */
.tt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.tt-grid--single {
  grid-template-columns: 1fr;
  max-width: 940px;
  margin: 0 auto;
}

/* 通用卡片 */
.tt-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.tt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.tt-card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tt-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.tt-card:hover .tt-card-cover img {
  transform: scale(1.05);
}

.tt-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(56, 82, 65, 0.92);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.tt-card-body {
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tt-card-body h2,
.tt-card-body h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--text);
}

.tt-card-en {
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-card-desc {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.tt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--text-muted);
  font-size: 13.5px;
}

.tt-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tt-tags span {
  font-size: 12.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
}

.tt-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tt-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.tt-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

/* 多日行程 Day 区块 */
.tt-days {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tt-day {
  border-top: 1px dashed var(--border);
  padding-top: 18px;
}

.tt-day:first-child {
  border-top: none;
  padding-top: 0;
}

.tt-day-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.tt-day-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

/* 景点百科条目 */
.tt-dest {
  margin-bottom: clamp(44px, 6vw, 80px);
}

.tt-dest:last-child {
  margin-bottom: 0;
}

.tt-dest-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  margin-bottom: 22px;
}

.tt-dest-cover {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tt-dest-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-dest-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 600;
}

.tt-dest-en {
  margin: 0 0 14px;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}

.tt-dest-intro {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.tt-dest-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tt-dest-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* 摄影旅拍瀑布流 */
.tt-masonry {
  column-count: 4;
  column-gap: 14px;
}

.tt-masonry img {
  width: 100%;
  margin: 0 0 14px;
  border-radius: 12px;
  break-inside: avoid;
}

/* 客人评价 */
.tt-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.tt-review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tt-review-name {
  font-weight: 600;
}

.tt-review-meta {
  color: var(--text-dim);
  font-size: 13px;
}

.tt-stars {
  color: #d4af37;
  letter-spacing: 2px;
}

.tt-review p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.tt-shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tt-shot {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.tt-shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.tt-shot figcaption {
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
}

.tt-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}

.tt-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.tt-video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* 响应式 */
@media (max-width: 900px) {
  .tt-grid {
    grid-template-columns: 1fr;
  }

  .tt-dest-head {
    grid-template-columns: 1fr;
  }

  .tt-dest-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .tt-masonry {
    column-count: 2;
  }

  .tt-review-grid {
    grid-template-columns: 1fr;
  }

  .tt-shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tt-dest-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 南岛故事地图 destinations.html ── */
.page-story-map {
  padding-top: 0;
}

.story-hero {
  position: relative;
  min-height: clamp(420px, 58vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 clamp(48px, 7vw, 72px);
  overflow: hidden;
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.story-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
  color: #fff;
}

.story-hero-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.88;
}

.story-hero h1 {
  margin: 0 0 clamp(20px, 3vw, 28px);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.story-hero-lead p {
  margin: 0 0 12px;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.95;
  letter-spacing: 0.03em;
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.story-hero-lead p:last-child {
  margin-bottom: 0;
}

.story-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.story-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.story-nav-list a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.story-nav-list a:hover {
  color: var(--accent);
  background: rgba(56, 82, 65, 0.06);
  border-color: rgba(56, 82, 65, 0.12);
}

.story-route {
  scroll-margin-top: calc(var(--header-h) + 56px);
}

.story-route-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.story-route-num {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.story-route-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.story-route-en {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.story-route-theme {
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.story-route-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.story-route-tags li {
  padding: 6px 14px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 999px;
}

.story-spots {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
  max-width: 920px;
  margin-inline: auto;
}

.story-spot {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.story-spot:nth-child(even) {
  direction: rtl;
}

.story-spot:nth-child(even) > * {
  direction: ltr;
}

.story-spot-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 48px rgba(47, 47, 47, 0.1);
}

.story-spot-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.story-spot:hover .story-spot-photo img {
  transform: scale(1.03);
}

.story-spot-body h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.story-spot-en {
  margin: 6px 0 20px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.peter-says {
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 28px rgba(47, 47, 47, 0.05);
}

.peter-says-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.peter-says p:last-child {
  margin: 0;
  font-size: clamp(15px, 1.7vw, 16.5px);
  color: var(--text-muted);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.story-cta {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(47, 47, 47, 0.06);
}

.story-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
}

.story-cta > p {
  margin: 0 0 28px;
  color: var(--text-muted);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .story-nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .story-nav-list a {
    text-align: center;
  }

  .story-spot,
  .story-spot:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .story-spot-photo {
    aspect-ratio: 16 / 10;
  }

  .peter-says {
    border-radius: 16px;
    border-left: none;
    border-top: 3px solid var(--accent);
  }
}

/* ── 客人眼中的 Peter testimonials.html ── */
.page-reviews {
  padding-top: 0;
}

.rev-hero {
  position: relative;
  min-height: clamp(380px, 52vh, 480px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.rev-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  z-index: 0;
}

.rev-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}

.rev-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  max-width: 680px;
  text-align: center;
  color: #fff;
}

.rev-hero-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.88;
}

.rev-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.rev-hero-lead {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 2;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.rev-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.rev-featured-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 32px);
  max-width: 880px;
  margin-inline: auto;
}

.rev-featured {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 36px rgba(47, 47, 47, 0.06);
}

.rev-featured--highlight {
  border-color: rgba(56, 82, 65, 0.22);
  background: linear-gradient(145deg, rgba(255,255,255,0.55) 0%, rgba(56,82,65,0.05) 100%);
}

.rev-featured-shot {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.1);
}

.rev-featured-shot img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.rev-source {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rev-source--xhs { color: #fe2c55; }
.rev-source--wechat { color: #07c160; }
.rev-source--google { color: #4285f4; }
.rev-source--moments { color: #576b95; }

.rev-featured-shot img[src*="placeholder"],
.rev-theme-shots img[src*="placeholder"],
.rev-masonry-item img[src*="placeholder"] {
  background: linear-gradient(180deg, #faf9f7 0%, #f0eeea 100%);
  object-fit: contain;
  padding: 12%;
}

.rev-review-card img[src*="review"],
.rev-review-card img[src*="reviews"] {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  padding: 0;
  background: none;
}

.rev-review-card.media-slot--review,
.rev-featured-shot.rev-review-card {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  padding: 0;
  background: transparent;
  border: none;
  overflow: hidden;
  border-radius: 14px;
}

.rev-review-card.media-slot--review > img,
.rev-featured-shot.rev-review-card > img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  padding: 0;
  background: none;
}

/* 小红书式瀑布流：等宽列、错落高度 */
.rev-review-masonry {
  column-count: 4;
  column-gap: 12px;
  width: 100%;
}

.rev-theme .rev-review-masonry {
  column-count: 3;
}

.rev-review-masonry--mixed {
  column-count: 2;
}

.rev-review-masonry .rev-review-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 12px;
  vertical-align: top;
  box-shadow: 0 6px 18px rgba(47, 47, 47, 0.08);
}

.rev-review-masonry .rev-review-card .media-slot-caption {
  position: static;
  margin: 0;
  padding: 8px 10px 10px;
  border: none;
  border-top: 1px solid rgba(56, 82, 65, 0.08);
  text-align: left;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.rev-review-masonry--mixed .media-slot--photo {
  position: relative;
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 12px;
  border: none;
  box-shadow: 0 6px 18px rgba(47, 47, 47, 0.08);
  overflow: hidden;
  border-radius: 14px;
  background: #2f2f2f;
}

.rev-review-masonry--mixed .media-slot--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rev-review-masonry--mixed .media-slot--photo:nth-child(4n + 1) {
  aspect-ratio: 4 / 5;
}

.rev-review-masonry--mixed .media-slot--photo:nth-child(4n + 3) {
  aspect-ratio: 3 / 4;
}

.rev-review-masonry--mixed .media-slot--photo .media-slot-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 22px 10px 9px;
  border: none;
  text-align: left;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 100%);
}

.rev-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.rev-guest {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rev-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rev-guest-name {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.rev-guest-meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-dim);
}

.rev-summary {
  margin: 0;
  font-size: clamp(15px, 1.7vw, 16.5px);
  color: var(--text-muted);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.rev-themes {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 56px);
  max-width: 100%;
  margin-inline: auto;
}

.rev-theme {
  padding: clamp(24px, 3.5vw, 32px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 20px;
}

.rev-theme--accent {
  border-color: rgba(56, 82, 65, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.rev-theme--highlight {
  border-color: rgba(56, 82, 65, 0.25);
  background: linear-gradient(145deg, rgba(255,255,255,0.5) 0%, rgba(56,82,65,0.06) 100%);
}

.rev-theme-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.rev-theme-num {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}

.rev-theme-head h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
}

.rev-theme-note {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.rev-keywords {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rev-keywords li {
  padding: 5px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  background: rgba(56, 82, 65, 0.06);
  border-radius: 999px;
}

.rev-theme-shots:not(.rev-review-masonry) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rev-theme-shots:not(.rev-review-masonry) figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #2f2f2f;
  border: none;
}

.rev-theme-shots:not(.rev-review-masonry) img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.rev-shot-photo > img {
  object-fit: cover;
  object-position: center;
}

.rev-photo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.rev-photo-wall figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.rev-photo-wall img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.rev-photo-wall figure:hover img {
  transform: scale(1.04);
}

.rev-photo-wall figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}

.rev-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 920px;
  margin-inline: auto;
}

.rev-stat {
  text-align: center;
  padding: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(56, 82, 65, 0.1);
  border-radius: 16px;
}

.rev-stat-num {
  display: block;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.rev-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.rev-stats-note {
  text-align: center;
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--text-dim);
}

.rev-masonry {
  column-count: 4;
  column-gap: 12px;
}

.rev-masonry.rev-review-masonry {
  column-gap: 12px;
}

.rev-masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: #2f2f2f;
  border: none;
  box-shadow: 0 6px 18px rgba(47, 47, 47, 0.08);
}

.rev-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

.rev-masonry-item figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

.rev-closing {
  margin: clamp(48px, 8vw, 72px) auto;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  max-width: 640px;
  text-align: center;
  border: none;
  background: transparent;
}

.rev-closing p {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.95;
  letter-spacing: 0.05em;
}

.rev-closing footer {
  margin-top: clamp(20px, 3vw, 28px);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.rev-cta {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.rev-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
}

.rev-cta p {
  margin: 0 0 28px;
  color: var(--text-muted);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .rev-featured {
    grid-template-columns: 1fr;
  }

  .rev-featured-shot {
    max-width: 280px;
    margin-inline: auto;
    width: 100%;
  }

  .rev-theme-shots:not(.rev-review-masonry) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rev-review-masonry {
    column-count: 3;
  }

  .rev-theme .rev-review-masonry {
    column-count: 2;
  }

  .rev-review-masonry--mixed {
    column-count: 2;
  }

  .rev-photo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rev-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .rev-theme-shots:not(.rev-review-masonry) {
    grid-template-columns: 1fr;
  }

  .rev-review-masonry,
  .rev-masonry.rev-review-masonry {
    column-count: 2;
  }

  .rev-theme .rev-review-masonry {
    column-count: 2;
  }

  .rev-stats {
    grid-template-columns: 1fr;
  }

  .rev-hero-lead br,
  .rev-closing p br {
    display: none;
  }
}

/* ── 全站统一媒体位 media-slot ──
   替换图片：仅修改 img src，无需改版式。
   类型：hero | peter | guest | mercedes | scenery | review | photo | video | avatar
   已替换真实图时自动隐藏标签（media-slot--filled）
── */
.media-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f0eeea;
  border-radius: inherit;
}

.media-slot > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slot:not(.media-slot--filled) > img[src*="slot-placeholder"],
.media-slot:not(.media-slot--filled) > img[src*="placeholder.svg"] {
  object-fit: contain;
  padding: 10%;
  background: linear-gradient(180deg, #faf9f7 0%, #f0eeea 100%);
}

.media-slot-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #3d4a3f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(56, 82, 65, 0.15);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.media-slot-caption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--border);
}

.media-slot--filled .media-slot-label {
  display: none;
}

/* 标准比例 */
.media-slot--hero { aspect-ratio: 16 / 9; }
.media-slot--peter { aspect-ratio: 3 / 4; }
.media-slot--guest { aspect-ratio: 1 / 1; }
.media-slot--mercedes { aspect-ratio: 16 / 10; }
.media-slot--scenery { aspect-ratio: 4 / 3; }
.media-slot--review:not(.rev-review-card) { aspect-ratio: 3 / 4; }

.rev-review-card.media-slot--review {
  aspect-ratio: auto;
  height: auto;
}

.rev-review-card.media-slot > img {
  height: auto;
}
.media-slot--photo { aspect-ratio: 4 / 5; }
.media-slot--video { aspect-ratio: 16 / 9; }
.media-slot--avatar { aspect-ratio: 1 / 1; width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }

.media-slot--avatar .media-slot-label {
  display: none;
}

.media-slot--avatar:not(.media-slot--filled)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(56, 82, 65, 0.25);
  pointer-events: none;
}

/* 全幅 Banner / Hero 背景层 */
.media-slot--banner,
.media-slot--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.media-slot--cover {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.tt-banner .media-slot--banner,
.rev-hero .media-slot--banner,
.story-hero .media-slot--banner {
  z-index: 0;
}

.tt-banner .media-slot--banner > img,
.rev-hero .media-slot--banner > img,
.story-hero .media-slot--banner > img {
  object-fit: cover;
  padding: 0;
  min-height: 100%;
}

.tt-card-cover .media-slot--cover > img {
  object-fit: cover;
  padding: 0;
}

.tt-card-cover .media-slot-label {
  top: auto;
  bottom: 10px;
  left: 10px;
}

/* 缩略图条 */
.media-slot--thumb {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  flex: 1;
  min-width: 0;
}

.tt-thumbs {
  display: flex;
  gap: 8px;
}

.tt-thumbs .media-slot--thumb {
  flex: 1;
}

/* 瀑布流：figure 作为 masonry item */
.tt-masonry .media-slot {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.05);
}

.rev-masonry:not(.rev-review-masonry) .media-slot {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.05);
}

.tt-masonry .media-slot > img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.rev-masonry:not(.rev-review-masonry) .media-slot--review.media-slot--filled > img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.rev-masonry.rev-review-masonry .rev-review-card {
  border: none;
  box-shadow: 0 6px 18px rgba(47, 47, 47, 0.08);
}

.rev-masonry.rev-review-masonry .rev-review-card > img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  aspect-ratio: auto;
}

.tt-masonry .media-slot--photo:nth-child(3n+2) { aspect-ratio: 3 / 4; }
.tt-masonry .media-slot--photo:nth-child(3n) { aspect-ratio: 4 / 3; }

.rev-masonry:not(.rev-review-masonry) .media-slot--review:nth-child(4n+2) { aspect-ratio: 4 / 5; }

.rev-review-masonry .media-slot--review {
  aspect-ratio: unset;
}

/* 轮播 slide 内媒体位 */
.tour-carousel-slide .media-slot {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.tour-carousel-slide .media-slot > img {
  min-height: 100%;
}

.tour-carousel-slide .media-slot-label {
  top: auto;
  bottom: 16px;
  left: 16px;
}

/* 合影墙 / 故事地图兼容 */
.rev-photo-wall .media-slot,
.story-spot-photo .media-slot {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.rev-featured-shot.media-slot,
figure.rev-featured-shot .media-slot {
  width: 100%;
  height: auto;
}

.rev-featured-shot.rev-review-card.media-slot {
  height: auto;
}

.rev-theme-shots:not(.rev-review-masonry) .media-slot {
  border-radius: 14px;
  border: none;
}

/* 视频位（预留） */
.media-slot--video .media-slot-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.media-slot--video .media-slot-play::after {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23385241'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: 22px;
}

.media-slot--filled.media-slot--video .media-slot-play {
  opacity: 0.85;
}

/* 模块扩展提示（开发阶段可见，上线后可删） */
.media-wall-hint {
  margin: 0 0 20px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(56, 82, 65, 0.06);
  border-radius: 12px;
  line-height: 1.7;
}

.media-wall-hint code {
  font-size: 12px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.rev-guest .media-slot--avatar {
  margin: 0;
}

.rev-featured-shot.media-slot {
  aspect-ratio: auto;
  height: auto;
}

.rev-featured-shot .rev-source {
  z-index: 3;
  top: auto;
  bottom: 10px;
  left: 10px;
}

.rev-review-card .rev-source {
  z-index: 3;
}

.hero-bg .media-slot--fill > img.hero-bg-img {
  object-fit: cover;
  padding: 0;
  width: 100%;
  height: 100%;
}

.tt-banner .media-slot--banner {
  z-index: -2;
}

.route-cover-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 0;
}

.intro-visual .media-slot {
  width: 100%;
  border-radius: var(--radius-lg);
}

.peter-avatar-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
}

.peter-avatar-wrap .peter-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.peter-video-slot {
  max-width: 720px;
  margin: clamp(32px, 5vw, 48px) auto 0;
}

.peter-video-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.7;
}

.mb-slide .media-slot {
  width: 100%;
  height: 100%;
}

@media (max-width: 560px) {
  .media-wall-hint code {
    word-break: break-all;
  }
}

/* Akaroa Day Tour photo library */
.page-akaroa-day-tour .tt-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.akaroa-tour-nav {
  padding-block: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.akaroa-tour-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.akaroa-tour-nav-list a {
  font-size: 0.9rem;
  color: var(--color-text-muted, #5a6472);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.akaroa-tour-nav-list a:hover {
  color: var(--color-primary, #1a5f4a);
  border-bottom-color: currentColor;
}

.akaroa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.akaroa-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.akaroa-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.akaroa-gallery-caption {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.akaroa-gallery-caption-en {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text, #1e293b);
}

.akaroa-gallery-caption-zh {
  font-size: 0.78rem;
  color: var(--color-text-muted, #64748b);
}

.akaroa-tour-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .akaroa-gallery-grid {
    grid-template-columns: 1fr;
  }
}
