:root {
  --ink: #17211f;
  --muted: #61716d;
  --paper: #f8f6f1;
  --paper-strong: #fffdf8;
  --jade: #0f6c5a;
  --jade-dark: #0a3d35;
  --gold: #c88b3a;
  --gold-text: #8f6328;
  --blue: #dce8ee;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 22px 55px rgba(15, 25, 22, 0.18);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

select,
textarea {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 220;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(248, 246, 241, 0.94);
  box-shadow: 0 8px 26px rgba(19, 30, 28, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
}

.brand-mark-logo {
  display: block;
  width: auto;
  height: 34px;
  margin-right: 3px;
  border: 0;
  border-radius: 0;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.7;
  font-size: 12px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.nav-trigger:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 999px;
}

.nav-menu {
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  right: auto;
  z-index: 240;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: min(390px, calc(100vw - 32px));
  padding: 12px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(11, 18, 17, 0.98), rgba(10, 61, 53, 0.97)),
    #0b1211;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(6, 12, 11, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-menu-guides {
  width: min(310px, calc(100vw - 32px));
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-item:hover .nav-menu,
.nav-item.is-hovered .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.28;
  text-decoration: none;
  white-space: normal;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-menu a small {
  color: rgba(200, 139, 58, 0.94);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-menu-divider {
  display: block;
  height: 1px;
  margin: 5px 4px;
  background: rgba(255, 255, 255, 0.14);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
  outline: none;
}

@media (max-width: 1060px) {
  html[lang="en"] .main-nav .nav-item.is-hovered .nav-menu,
  html[lang="en"] .main-nav .nav-item:focus-within .nav-menu {
    transform: none;
  }
}

html[lang="zh-Hans"] .nav-menu a {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.32;
}

.header-cta {
  text-decoration: none;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
}

.header-call-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 7px 15px;
  color: currentColor;
  border: 1px solid rgba(15, 108, 90, 0.28);
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.05;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-call-link strong {
  font-size: 14px;
  letter-spacing: 0;
}

.header-call-link span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call-link:hover,
.header-call-link:focus-visible {
  color: var(--jade-dark);
  background: rgba(229, 242, 239, 0.72);
  border-color: rgba(15, 108, 90, 0.42);
  outline: none;
}

button.header-call-link.contact-menu-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header:not(.is-solid) .header-call-link {
  border-color: rgba(255, 255, 255, 0.52);
}

.site-header:not(.is-solid) .header-call-link span {
  color: rgba(255, 255, 255, 0.74);
}

.site-header:not(.is-solid) .header-call-link:hover,
.site-header:not(.is-solid) .header-call-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.74);
}

.header-contact-menu {
  position: relative;
  display: inline-flex;
}

.contact-choice-menu[hidden] {
  display: none;
}

.contact-choice-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 260;
  min-width: 236px;
  padding: 8px;
  border: 1px solid rgba(15, 84, 72, 0.16);
  border-radius: 14px;
  background: rgba(250, 248, 241, 0.98);
  box-shadow: 0 18px 44px rgba(23, 33, 31, 0.14);
}

.contact-choice-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 32px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(15, 84, 72, 0.16);
  border-left: 1px solid rgba(15, 84, 72, 0.16);
  background: rgba(250, 248, 241, 0.98);
  transform: rotate(45deg);
}

.contact-choice-menu a,
.contact-choice-menu button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  padding: 11px 12px;
}

.contact-choice-menu a:hover,
.contact-choice-menu a:focus-visible,
.contact-choice-menu button:hover,
.contact-choice-menu button:focus-visible {
  outline: none;
  background: rgba(229, 242, 239, 0.74);
  color: var(--jade-dark);
}

.mobile-nav-contact {
  display: none;
}

.nav-direct-link {
  color: currentColor;
  font-weight: 700;
  text-decoration: none;
}

.nav-call-link {
  color: currentColor;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
}

.language-switch a {
  min-width: 38px;
  padding: 6px 8px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
}

.language-switch a.is-active {
  color: var(--ink);
  background: var(--paper-strong);
}

.site-header.is-solid .language-switch a.is-active {
  color: #fff;
  background: var(--jade-dark);
}

html[lang="zh-Hans"] body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
}

html[lang="zh-Hans"] .hero h1,
html[lang="zh-Hans"] .hero h2,
html[lang="zh-Hans"] .section-heading h1,
html[lang="zh-Hans"] .section-heading h2,
html[lang="zh-Hans"] .intro-band h2,
html[lang="zh-Hans"] .closing-band h2,
html[lang="zh-Hans"] .contact-band h2,
html[lang="zh-Hans"] .journey-card h3,
html[lang="zh-Hans"] .theme-detail h3,
html[lang="zh-Hans"] .plan-result h3,
html[lang="zh-Hans"] .ia-grid h3,
html[lang="zh-Hans"] .support-grid h3,
html[lang="zh-Hans"] .subpage-hero h1,
html[lang="zh-Hans"] .subpage-section h2,
html[lang="zh-Hans"] .subpage-cta h2,
html[lang="zh-Hans"] .planner-step legend,
html[lang="zh-Hans"] .timeline-grid h3,
html[lang="zh-Hans"] .regional-grid h3 {
  font-family: "Songti SC", "Noto Serif CJK SC", "STSong", Georgia, "Times New Roman", serif;
}

html[lang="zh-Hans"] .eyebrow,
html[lang="zh-Hans"] .section-kicker,
html[lang="zh-Hans"] .card-meta,
html[lang="zh-Hans"] .timeline-grid span,
html[lang="zh-Hans"] .advantage-grid span {
  letter-spacing: 0.06em;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 76px) 74px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-key-traveller-media {
  background:
    linear-gradient(135deg, rgba(200, 139, 58, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(248, 246, 241, 0.05), transparent 32%, rgba(200, 139, 58, 0.06)),
    linear-gradient(135deg, #06342d 0%, #0a463c 54%, #041f1b 100%);
  background-size: 54px 54px, auto, auto;
}

.hero-slide-key-traveller .hero-key-traveller-shade {
  background:
    linear-gradient(90deg, rgba(5, 22, 19, 0.64) 0%, rgba(5, 22, 19, 0.22) 58%, rgba(5, 22, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 22, 19, 0.58) 0%, rgba(5, 22, 19, 0) 48%);
}

.hero-slide-key-traveller .hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 22, 19, 0.72) 0%, rgba(5, 22, 19, 0.30) 40%, rgba(5, 22, 19, 0.0) 72%),
    linear-gradient(0deg, rgba(5, 22, 19, 0.58) 0%, rgba(5, 22, 19, 0.0) 30%);
}

.hero-slide-key-traveller .eyebrow {
  color: var(--gold);
}

.hero-slide-key-traveller .hero-copy {
  color: rgba(248, 246, 241, 0.88);
}

.hero-product-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-product-panel {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-product-panel:last-child {
  border-right: 0;
}

.hero-panel-media .hero-product-panel img {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-panel figcaption {
  position: absolute;
  right: 14px;
  bottom: 18px;
  left: 14px;
  z-index: 1;
  color: #fff;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 850;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
}

.hero-product-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(0deg, rgba(5, 13, 12, 0.72), rgba(5, 13, 12, 0));
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 20, 18, 0.82) 0%, rgba(9, 20, 18, 0.38) 34%, rgba(9, 20, 18, 0.0) 68%),
    linear-gradient(0deg, rgba(9, 20, 18, 0.66) 0%, rgba(9, 20, 18, 0.0) 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-content-compact {
  width: min(650px, 100%);
}

.home-page .hero {
  --hero-arrow-safe-margin: clamp(48px, 4.5vw, 72px);
}

.home-page .hero-content {
  width: min(760px, calc(100% - var(--hero-arrow-safe-margin)));
  margin-left: var(--hero-arrow-safe-margin);
}

.home-page .hero-content-compact {
  width: min(650px, calc(100% - var(--hero-arrow-safe-margin)));
}

.eyebrow,
.section-kicker,
.card-meta {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.hero h2,
.section-heading h1,
.section-heading h2,
.intro-band h2,
.closing-band h2,
.contact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 7vw, 86px);
}

.hero h2 {
  max-width: 700px;
  font-size: clamp(42px, 6.6vw, 82px);
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.planner-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #1d1710;
}

.hero-actions .button {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 17px;
  line-height: 1.1;
}

.button-outline {
  color: currentColor;
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.13);
  color: currentColor;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.hero-proof-kicker {
  margin: 0 0 18px;
}

.hero-slide-key-traveller .hero-content-compact {
  width: min(760px, calc(100% - var(--hero-arrow-safe-margin)));
}

@media (min-width: 900px) {
  .hero-slide-key-traveller h1 {
    max-width: none;
    white-space: nowrap;
  }
}

.result-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-controls {
  position: absolute;
  right: 50%;
  bottom: 44px;
  z-index: 5;
  transform: translateX(50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(9, 20, 18, 0.22);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-arrow,
.hero-dots button {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: inline-flex;
  width: clamp(54px, 5vw, 68px);
  height: clamp(54px, 5vw, 68px);
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.94);
  background-color: rgba(12, 23, 20, 0.36);
  background-image:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 56%, rgba(255, 255, 255, 0.16));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -18px 30px rgba(9, 20, 18, 0.1);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  font-size: 0;
  line-height: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  transform: translateY(-50%);
  transition:
    transform 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    background-color 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    border-color 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    filter 280ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.hero-arrow::before {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 54px);
  line-height: 1;
  transform: translateY(-0.07em);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background-color: rgba(24, 39, 34, 0.3);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.31),
    0 0 34px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -14px 26px rgba(255, 255, 255, 0.1);
  filter: brightness(1.12);
  transform: translateY(-50%) scale(1.12);
}

.hero-arrow:focus {
  outline: none;
}

.hero-arrow:focus-visible,
.hero-dots button:focus-visible {
  outline: 2px solid rgba(214, 156, 54, 0.86);
  outline-offset: 5px;
}

.hero-arrow-prev {
  left: 8px;
}

.hero-arrow-prev::before {
  content: "‹";
}

.hero-arrow-next {
  right: 8px;
}

.hero-arrow-next::before {
  content: "›";
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dots button:hover,
.hero-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.74);
  transform: scaleY(1.6);
}

.hero-dots button.is-active {
  background: var(--gold);
}

.intro-band,
.closing-band,
.contact-band,
.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: 42px;
  align-items: center;
  background: var(--jade-dark);
  color: #fff;
}

.intro-band h2,
.closing-band h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.intro-band p:not(.section-kicker),
.closing-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.advantage-band {
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(34px, 4.8vw, 58px);
  padding-bottom: clamp(34px, 4.8vw, 58px);
}

.advantage-lead {
  margin-top: 16px !important;
  max-width: 520px;
  font-size: 16px !important;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.advantage-grid article {
  min-height: 0;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.advantage-grid span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.advantage-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.18;
}

html[lang="zh-Hans"] .advantage-band {
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(36px, 4.4vw, 62px);
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

html[lang="zh-Hans"] .advantage-band h2 {
  max-width: 520px;
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.13;
}

html[lang="zh-Hans"] .advantage-lead {
  max-width: 500px;
  margin-top: 20px !important;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px !important;
  line-height: 1.78 !important;
}

html[lang="zh-Hans"] .advantage-grid {
  gap: 24px 34px;
}

html[lang="zh-Hans"] .advantage-grid article {
  padding-left: 20px;
  border-left-color: rgba(255, 255, 255, 0.22);
}

html[lang="zh-Hans"] .advantage-grid span {
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

html[lang="zh-Hans"] .advantage-grid h3 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 650;
  line-height: 1.5;
}

.section-tight {
  padding-top: clamp(68px, 9vw, 116px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2 {
  max-width: 780px;
  font-size: clamp(34px, 5.4vw, 66px);
}

.section-heading p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.journey-card {
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.08);
}

.journey-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.journey-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.journey-card-large img {
  aspect-ratio: 1.58;
}

.journey-card-body {
  padding: 20px;
}

.journey-card h3,
.theme-detail h3,
.plan-result h3,
.ia-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.journey-card p:not(.card-meta),
.journey-card a,
.theme-detail p,
.theme-detail li,
.plan-result p,
.result-itinerary,
.ia-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.journey-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(8, 78, 67, 0.28);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.journey-card a:hover,
.journey-card a:focus-visible {
  color: var(--jade);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 78, 67, 0.58);
  box-shadow: 0 8px 20px rgba(22, 32, 30, 0.08);
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(-1px);
}

html[lang="en"] .home-page .journey-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

html[lang="en"] .home-page .journey-card-large {
  grid-column: auto;
  grid-row: auto;
}

html[lang="en"] .home-page .journey-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

html[lang="en"] .home-page .journey-card img,
html[lang="en"] .home-page .journey-card-large img {
  display: block;
  aspect-ratio: 1.45;
}

html[lang="en"] .home-page .journey-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

html[lang="en"] .home-page .journey-card a {
  align-self: flex-start;
  margin-top: auto;
}

.theme-section {
  background: var(--blue);
}

.support-section {
  background: #f0ede6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.support-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.06);
}

.support-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 850;
}

.support-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 33px);
  font-weight: 500;
  line-height: 1.12;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.facts-section {
  background: var(--paper);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.facts-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.07);
}

.facts-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 850;
}

.facts-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 500;
  line-height: 1.13;
}

.facts-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

html[lang="zh-Hans"] .facts-grid h3 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.35;
}

.theme-carousel {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.theme-carousel::after {
  position: absolute;
  right: 4px;
  bottom: -18px;
  left: 4px;
  z-index: -1;
  height: 54px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(16, 55, 51, 0.08), rgba(255, 253, 248, 0.34));
  content: "";
  pointer-events: none;
}

.theme-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 14px 12px 24px;
  scroll-behavior: smooth;
  scroll-padding-inline: 12px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(194, 143, 76, 0.75) rgba(16, 55, 51, 0.12);
  scrollbar-width: thin;
}

.theme-grid.is-centering-selection {
  scroll-snap-type: none;
}

.theme-grid::-webkit-scrollbar {
  height: 8px;
}

.theme-grid::-webkit-scrollbar-track {
  background: rgba(16, 55, 51, 0.12);
  border-radius: 999px;
}

.theme-grid::-webkit-scrollbar-thumb {
  background: rgba(194, 143, 76, 0.75);
  border-radius: 999px;
}

.theme-tile {
  position: relative;
  z-index: 0;
  flex: 0 0 clamp(176px, 16vw, 220px);
  min-height: 178px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #0d1817;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(15, 38, 35, 0.14);
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
  scroll-snap-align: center;
}

.theme-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03) brightness(0.78);
  transition: filter 220ms ease;
}

.theme-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 21, 20, 0.02) 24%, rgba(4, 21, 20, 0.56) 100%),
    linear-gradient(90deg, rgba(4, 21, 20, 0.2), rgba(4, 21, 20, 0));
  pointer-events: none;
}

.theme-tile[data-theme="calligraphy"] img {
  object-position: 45% 58%;
}

.theme-tile[data-theme="taichi"] img {
  object-position: 50% 44%;
}

.theme-tile[data-theme="temple"] img {
  object-position: 50% 50%;
}

.theme-tile[data-theme="cooking"] img,
.theme-tile[data-theme="imperial-banquet"] img {
  object-position: 50% 56%;
}

.theme-tile[data-theme="tea-culture"] img,
.theme-tile[data-theme="tea-picking"] img,
.theme-tile[data-theme="pottery"] img,
.theme-tile[data-theme="lacquer-fan"] img,
.theme-tile[data-theme="ear-cleaning"] img {
  object-position: 50% 58%;
}

.theme-tile[data-theme="hanfu"] img,
.theme-tile[data-theme="opera"] img,
.theme-tile[data-theme="paper-craft"] img {
  object-position: 50% 62%;
}

.theme-tile[data-theme="minority-craft"] img {
  object-position: 50% 54%;
}

.theme-tile[data-theme="suzhou-embroidery"] img {
  object-position: 50% 68%;
}

.theme-tile[data-theme="cloisonne-enamel"] img {
  object-position: 58% 52%;
}

.theme-tile[data-theme="laoshe-teahouse"] img {
  object-position: 44% 54%;
}

.theme-tile[data-theme="mother-of-pearl"] img {
  object-position: 50% 50%;
}

.theme-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-weight: 850;
  line-height: 1.05;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

html[lang="zh-Hans"] .theme-tile span {
  font-size: 15px;
  font-weight: 780;
  line-height: 1.18;
}

.theme-tile.is-active img {
  filter: saturate(1.02) contrast(1.06) brightness(0.92);
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .theme-grid {
    margin-top: -14px;
    padding-top: 30px;
  }

  .theme-tile:hover,
  .theme-tile:focus-visible {
    z-index: 6;
    transform: scale(1.075);
    box-shadow: 0 28px 54px rgba(15, 38, 35, 0.26);
  }

  .theme-tile:hover + .theme-tile,
  .theme-tile:focus-visible + .theme-tile {
    z-index: 2;
    transform: translateX(8px);
  }

  .theme-tile:hover + .theme-tile + .theme-tile,
  .theme-tile:focus-visible + .theme-tile + .theme-tile {
    transform: translateX(6px);
  }

  .theme-tile:hover + .theme-tile + .theme-tile + .theme-tile,
  .theme-tile:focus-visible + .theme-tile + .theme-tile + .theme-tile {
    transform: translateX(4px);
  }

  .theme-tile:hover + .theme-tile + .theme-tile + .theme-tile + .theme-tile,
  .theme-tile:focus-visible + .theme-tile + .theme-tile + .theme-tile + .theme-tile {
    transform: translateX(2px);
  }

  .theme-tile:has(+ .theme-tile:hover),
  .theme-tile:has(+ .theme-tile:focus-visible) {
    z-index: 2;
    transform: translateX(-8px);
  }

  .theme-tile:has(+ .theme-tile + .theme-tile:hover),
  .theme-tile:has(+ .theme-tile + .theme-tile:focus-visible) {
    transform: translateX(-6px);
  }

  .theme-tile:has(+ .theme-tile + .theme-tile + .theme-tile:hover),
  .theme-tile:has(+ .theme-tile + .theme-tile + .theme-tile:focus-visible) {
    transform: translateX(-4px);
  }

  .theme-tile:has(+ .theme-tile + .theme-tile + .theme-tile + .theme-tile:hover),
  .theme-tile:has(+ .theme-tile + .theme-tile + .theme-tile + .theme-tile:focus-visible) {
    transform: translateX(-2px);
  }

  .theme-tile:hover img,
  .theme-tile:focus-visible img {
    filter: saturate(1.04) contrast(1.08) brightness(0.94);
  }
}

.theme-tile.is-active {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.theme-scroll {
  position: absolute;
  top: calc(50% - 5px);
  z-index: 4;
  display: inline-flex;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.94);
  background-color: rgba(12, 23, 20, 0.36);
  background-image:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 56%, rgba(255, 255, 255, 0.16));
  box-shadow:
    0 18px 42px rgba(15, 38, 35, 0.26),
    0 0 22px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -16px 26px rgba(9, 20, 18, 0.1);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
  transition:
    transform 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    background-color 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    border-color 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    filter 280ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.theme-scroll::before {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-0.07em);
}

.theme-scroll:hover,
.theme-scroll:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background-color: rgba(24, 39, 34, 0.3);
  box-shadow:
    0 22px 52px rgba(15, 38, 35, 0.31),
    0 0 32px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -14px 24px rgba(255, 255, 255, 0.1);
  filter: brightness(1.12);
  transform: translateY(-50%) scale(1.1);
}

.theme-scroll:focus {
  outline: none;
}

.theme-scroll:focus-visible {
  outline: 2px solid rgba(214, 156, 54, 0.86);
  outline-offset: 5px;
}

.theme-scroll-prev {
  left: -18px;
}

.theme-scroll-prev::before {
  content: "‹";
}

.theme-scroll-next {
  right: -18px;
}

.theme-scroll-next::before {
  content: "›";
}

.theme-detail {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 22px 56px rgba(15, 38, 35, 0.13);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.theme-detail::before,
.theme-detail::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.theme-detail::before {
  z-index: -2;
  background-image: var(--theme-panel-image);
  background-position: center;
  background-size: cover;
  filter: blur(24px) saturate(0.9);
  opacity: 0.24;
  transform: scale(1.08);
}

.theme-detail::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.9), rgba(238, 245, 243, 0.68)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
}

.theme-detail .section-kicker {
  color: rgba(12, 67, 58, 0.7);
}

.theme-detail h3 {
  margin-top: 6px;
}

.experience-title-note {
  color: rgba(87, 104, 98, 0.72);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62em;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
}

.experience-subsections {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.experience-subsection {
  padding-left: 14px;
  border-left: 2px solid rgba(194, 143, 76, 0.34);
}

.experience-subsection h4 {
  margin: 0 0 5px;
  color: rgba(12, 67, 58, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.22;
}

.experience-subsection p {
  margin: 0;
}

.experience-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
}

.experience-meta-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  padding: 0;
}

.experience-meta-pill::before {
  flex: 0 0 auto;
  align-self: center;
  width: 15px;
  height: 15px;
  margin-right: 1px;
  background: rgba(12, 67, 58, 0.78);
  content: "";
  transform: translateY(-1px);
}

.experience-meta-pill:first-child::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.experience-meta-pill:nth-child(2)::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.experience-meta-pill strong {
  color: rgba(12, 67, 58, 0.72);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-enquiry-cta {
  margin-top: 20px;
}

.theme-detail ul {
  margin: 68px 0 0;
  padding-left: 18px;
}

.tailor-section {
  background: var(--paper);
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.planner,
.plan-result,
.ia-grid article {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.08);
}

.planner {
  padding: clamp(22px, 4vw, 34px);
}

.planner-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.planner-step.is-active {
  display: block;
}

.planner-step legend {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid label {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.choice-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--jade);
}

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

.planner-controls {
  justify-content: space-between;
  margin-top: 30px;
}

.progress {
  color: var(--muted);
  font-size: 14px;
}

.plan-result {
  position: sticky;
  top: 92px;
  padding: 28px;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.result-tags span {
  color: var(--jade-dark);
  border-color: rgba(15, 108, 90, 0.24);
  background: rgba(15, 108, 90, 0.08);
}

.result-itinerary {
  margin: 0 0 22px;
  padding-left: 20px;
}

.full-width {
  width: 100%;
}

.microcopy {
  margin: 14px 0 0;
  font-size: 13px;
}

.checkbox-fineprint {
  display: block;
  margin-top: 4px;
  font-size: 0.85em;
  opacity: 0.75;
}

.planner-page {
  background: #eef5f3;
}

.ai-planner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(106px, 12vw, 154px) clamp(20px, 6vw, 76px) clamp(44px, 6vw, 76px);
  color: #f9fbf6;
  background: #0a3d35;
}

.ai-hero-copy h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 500;
  line-height: 1.02;
}

.ai-hero-copy p:not(.section-kicker) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.ai-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ai-status-row span,
.result-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

.ai-orbit-panel {
  max-width: 470px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.ai-orbit-panel p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-orbit-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}

.ai-orbit-panel span {
  position: relative;
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.ai-orbit-panel span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 1px;
  background: rgba(200, 139, 58, 0.78);
  content: "";
}

.ai-planner-section {
  padding: clamp(34px, 5vw, 70px) clamp(20px, 6vw, 76px) clamp(58px, 7vw, 96px);
  background: #eef5f3;
}

.ai-planner-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 22px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.ai-planner {
  min-height: 660px;
  padding: clamp(22px, 4vw, 36px);
}

.ai-planner .planner-step {
  max-width: 100%;
}

.planner-topline {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.planner-meter {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 108, 90, 0.11);
}

.planner-meter span {
  display: block;
  width: 14%;
  height: 100%;
  border-radius: inherit;
  background: var(--jade);
  transition: width 220ms ease;
}

.ai-planner .planner-step legend {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 50px);
}

.ai-planner .planner-step legend span {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-intro {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  align-items: start;
  margin-bottom: 18px;
}

.field-group {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.field-group-wide {
  grid-column: 1 / -1;
}

.autocomplete-field {
  position: relative;
}

.date-picker-field {
  position: relative;
}

.date-picker-field input {
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--jade) 50%),
    linear-gradient(135deg, var(--jade) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 52%,
    calc(100% - 17px) 52%;
  background-repeat: no-repeat;
  background-size: 7px 7px;
}

.field-group label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.conditional-field {
  padding: 14px;
  border: 1px solid rgba(200, 139, 58, 0.35);
  border-radius: 8px;
  background: rgba(200, 139, 58, 0.08);
}

.conditional-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.field-group small {
  display: block;
  max-width: 36em;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(15, 108, 90, 0.2);
  border-radius: 8px;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  box-sizing: border-box;
  font-size: 16px;
}

.field-group textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.55;
}

.city-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  overflow: auto;
  max-height: 250px;
  padding: 6px;
  border: 1px solid rgba(15, 108, 90, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(22, 32, 30, 0.16);
}

.city-suggestions[hidden] {
  display: none;
}

.city-suggestions button {
  display: grid;
  width: 100%;
  gap: 3px;
  padding: 10px;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.city-suggestions button:hover,
.city-suggestions button.is-active {
  background: rgba(15, 108, 90, 0.1);
}

.city-suggestions strong {
  font-size: 14px;
}

.city-suggestions span {
  color: var(--muted);
  font-size: 12px;
}

.date-picker-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 14;
  width: min(360px, 100%);
  padding: 14px;
  border: 1px solid rgba(15, 108, 90, 0.2);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 46px rgba(22, 32, 30, 0.18);
}

.date-picker-header {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.date-picker-header strong {
  text-align: center;
  font-size: 15px;
}

.date-picker-header button,
.date-picker-days button {
  display: grid;
  min-width: 0;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.date-picker-header button {
  height: 36px;
  color: var(--jade-dark);
  background: rgba(15, 108, 90, 0.08);
  font-size: 22px;
}

.date-picker-weekdays,
.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.date-picker-weekdays {
  margin-bottom: 6px;
}

.date-picker-weekdays span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.date-picker-empty {
  min-height: 34px;
}

.date-picker-days button {
  min-height: 34px;
  font-size: 13px;
  font-weight: 720;
}

.date-picker-header button:hover,
.date-picker-days button:hover {
  color: #fff;
  background: var(--jade);
}

.choice-subheading {
  position: relative;
  margin: 26px 0 10px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-subheading-first {
  margin-top: 2px;
  padding-top: 0;
}

.choice-subheading::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 108, 90, 0.22), rgba(15, 108, 90, 0.04));
  content: "";
}

.choice-subheading-first::before {
  display: none;
}

.ai-planner .choice-grid {
  gap: 14px 16px;
  margin-top: 0;
}

.ai-planner .choice-grid label {
  min-height: 68px;
  align-items: center;
  padding: 17px 18px;
  border-color: rgba(15, 108, 90, 0.16);
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ai-planner .choice-grid label:has(input:checked) {
  border-color: rgba(15, 108, 90, 0.62);
  background: rgba(15, 108, 90, 0.08);
  box-shadow: inset 0 0 0 1px rgba(15, 108, 90, 0.08);
}

.ai-planner .choice-grid label span {
  line-height: 1.3;
}

.ai-planner .checkbox-grid label {
  position: relative;
  padding-right: 72px;
}

.ai-planner .checkbox-grid label.has-priority {
  box-shadow: inset 0 0 0 1px rgba(15, 108, 90, 0.12), 0 12px 28px rgba(15, 108, 90, 0.08);
}

.ai-planner .checkbox-grid label.has-priority[data-priority="1"] {
  border-color: rgba(15, 108, 90, 0.9);
  background: rgba(15, 108, 90, 0.15);
}

.ai-planner .checkbox-grid label.has-priority[data-priority="2"] {
  border-color: rgba(15, 108, 90, 0.58);
  background: rgba(15, 108, 90, 0.1);
}

.ai-planner .checkbox-grid label.has-priority[data-priority="3"] {
  border-color: rgba(15, 108, 90, 0.34);
  background: rgba(15, 108, 90, 0.06);
}

.priority-badge {
  position: absolute;
  top: 11px;
  right: 12px;
  display: none;
  min-width: 42px;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--jade-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.ai-planner .checkbox-grid label.has-priority .priority-badge {
  display: inline-flex;
}

.ai-planner .checkbox-grid label.has-priority[data-priority="2"] .priority-badge {
  background: rgba(15, 108, 90, 0.76);
}

.ai-planner .checkbox-grid label.has-priority[data-priority="3"] .priority-badge {
  background: rgba(15, 108, 90, 0.54);
}

.ai-plan-result {
  overflow: hidden;
  color: #eef5f3;
  background: #0a3d35;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(10, 61, 53, 0.24);
}

.ai-plan-result h3 {
  margin: 10px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.ai-plan-result p,
.ai-plan-result li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

.match-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.match-score span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.match-score strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  transition: color 220ms ease, transform 220ms ease;
}

.match-score.is-animating strong {
  color: #f4d4a6;
  transform: translateY(-1px);
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.signal-list span {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.signal-list i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  border-radius: inherit;
  background: rgba(200, 139, 58, 0.38);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.signal-list span {
  isolation: isolate;
}

.signal-list span::after {
  position: relative;
  content: "";
}

.ai-plan-result .result-tags span {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.ai-brief-notes {
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ai-brief-notes strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 13px;
}

.ai-brief-notes ul {
  margin: 0;
  padding-left: 18px;
}

.ai-plan-result .button-primary {
  background: var(--gold);
}

.ai-loading-panel[hidden],
.generated-itinerary[hidden] {
  display: none;
}

.ai-loading-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #edf6f3;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 139, 58, 0.22), transparent 32%),
    linear-gradient(135deg, #092e29 0%, #0d5146 100%);
  box-shadow: 0 28px 80px rgba(10, 61, 53, 0.24);
}

.ai-loading-panel .section-kicker {
  color: #d8a04a;
}

.ai-loading-panel h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.02;
}

.ai-loading-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.ai-loading-core {
  position: relative;
  width: min(42vw, 170px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.ai-loading-core::before,
.ai-loading-core::after,
.ai-loading-core span {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.ai-loading-core::before {
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  animation: aiSpin 4s linear infinite;
}

.ai-loading-core::after {
  inset: 48px;
  background: rgba(216, 160, 74, 0.82);
  box-shadow: 0 0 42px rgba(216, 160, 74, 0.48);
  animation: aiPulseScale 1.4s ease-in-out infinite;
}

.ai-loading-core span {
  inset: 0;
  background: conic-gradient(from 90deg, transparent 0 62%, rgba(216, 160, 74, 0.7) 74%, transparent 88%);
  -webkit-mask: radial-gradient(circle, transparent 54%, #000 56%);
  mask: radial-gradient(circle, transparent 54%, #000 56%);
  animation: aiSpin 2.3s linear infinite;
}

.ai-loading-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.ai-loading-steps span {
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 750;
}

.generated-itinerary {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.generated-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(18, 45, 40, 0.12);
}

.generated-hero h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.98;
}

.generated-hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.62;
}

.generated-tags {
  margin-top: 22px;
}

.generated-match-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
  padding: 26px;
  border-radius: 10px;
  color: #fff;
  background: #0a3d35;
}

.generated-match-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generated-match-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.92;
}

.generated-match-card p {
  color: rgba(255, 255, 255, 0.76);
}

.generated-route-layout,
.generated-insight-grid {
  display: grid;
  gap: 18px;
}

.generated-route-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.generated-insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.generated-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(15, 108, 90, 0.13);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.9);
}

.generated-card h3 {
  margin: 6px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.generated-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generated-card p,
.generated-card li {
  color: var(--muted);
  line-height: 1.58;
}

.generated-share-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(15, 108, 90, 0.12);
  background: transparent;
}

.generated-share-actions .button {
  justify-content: center;
  width: 100%;
  min-height: 62px;
  border-color: rgba(15, 108, 90, 0.28);
  color: var(--jade-dark);
  background: rgba(255, 253, 248, 0.45);
}

.generated-share-actions .microcopy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.generated-next-choice-section {
  display: grid;
  gap: 12px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(15, 108, 90, 0.12);
}

.generated-next-choice-head {
  display: grid;
  gap: 0;
}

.generated-next-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(15, 108, 90, 0.18);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.62);
  overflow: hidden;
}

.generated-next-choice-section-single .generated-next-choice-grid {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.generated-next-choice-section-single .generated-next-choice-grid {
  grid-template-columns: minmax(0, 1fr);
}

.generated-next-choice-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  min-height: 310px;
  padding: clamp(22px, 3vw, 30px);
}

.generated-next-choice-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

.generated-next-choice-card p:not(.microcopy) {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.generated-next-choice-copy {
  display: grid;
  gap: 12px;
}

.generated-next-choice-card .button {
  justify-content: center;
  min-height: 52px;
  width: 100%;
  padding-right: 22px;
  padding-left: 22px;
  color: var(--jade-dark);
}

.generated-next-choice-card .button-primary {
  color: #1d1710;
}

.generated-next-choice-card .button-secondary {
  border-color: rgba(15, 108, 90, 0.32);
  background: rgba(255, 253, 248, 0.68);
}

.generated-next-choice-action {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.generated-payment-agreement {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(15, 108, 90, 0.16);
  border-radius: 10px;
  padding: 12px;
  color: rgba(80, 98, 93, 0.88);
  background: rgba(247, 249, 245, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.generated-payment-agreement input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--jade);
}

.generated-payment-agreement a {
  color: var(--jade-dark);
  font-weight: 850;
}

.generated-next-choice-card .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.generated-next-choice-card-primary {
  border-left: 1px solid var(--jade);
}

.generated-next-choice-section-single .generated-next-choice-card-primary {
  border-left: 0;
}

.generated-support-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.generated-support-list li {
  position: relative;
  min-height: 22px;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.45;
}

.generated-support-list li::before {
  position: absolute;
  top: 0.42em;
  left: 3px;
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--jade);
  border-bottom: 2px solid var(--jade);
  content: "";
  transform: rotate(42deg);
}

.generated-note-list {
  display: grid;
  gap: 4px;
  min-height: 46px;
}

.generated-note-list .microcopy,
.generated-next-choice-action .microcopy {
  margin: 0;
  color: rgba(80, 98, 93, 0.82);
}

.generated-next-choice-action > .microcopy {
  min-height: 46px;
}

.generated-result-continuation {
  display: grid;
  gap: 0;
}

.generated-sheet-section {
  padding: 20px 0;
  border-top: 1px solid rgba(15, 108, 90, 0.12);
}

.generated-sheet-section p,
.generated-sheet-section li {
  color: var(--muted);
  line-height: 1.58;
}

.generated-payment-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(10px, 2vw, 18px);
  padding: clamp(28px, 4.5vw, 46px) 0;
  border-top: 1px solid rgba(15, 108, 90, 0.16);
  border-bottom: 1px solid rgba(15, 108, 90, 0.16);
  background: transparent;
}

.generated-payment-section h3 {
  max-width: 760px;
  margin: 6px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.generated-payment-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.generated-payment-section aside {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(15, 108, 90, 0.16);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 36px rgba(15, 108, 90, 0.08);
}

.generated-payment-section aside span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generated-payment-section aside strong {
  color: var(--jade-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 500;
  line-height: 1.25;
}

.generated-payment-section aside p {
  font-size: 14px;
  line-height: 1.55;
}

.generated-payment-section aside .button {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
}

.generated-payment-section aside .microcopy {
  color: var(--muted);
  font-size: 12px;
}

.generated-next-section {
  display: grid;
  gap: 18px;
}

.generated-next-head {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.generated-next-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.generated-next-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.generated-next-step {
  position: relative;
}

.generated-next-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 10px 0 0 10px;
  background: var(--jade);
  content: "";
}

.generated-next-step h3 {
  font-size: clamp(23px, 2.4vw, 30px);
}

.generated-route-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: routeStep;
}

.generated-route-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 16px 16px 58px;
  border-radius: 8px;
  background: rgba(15, 108, 90, 0.07);
}

.generated-route-list li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--jade);
  counter-increment: routeStep;
  content: counter(routeStep);
  font-size: 12px;
  font-weight: 850;
}

.editable-itinerary-card {
  display: grid;
  gap: 18px;
}

.editable-itinerary-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 108, 90, 0.12);
}

.editable-itinerary-head h3 {
  margin-bottom: 8px;
}

.editable-itinerary-head p {
  max-width: 760px;
  margin: 0;
}

.edit-mode-pill {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(15, 108, 90, 0.18);
  border-radius: 999px;
  color: var(--jade-dark);
  background: rgba(15, 108, 90, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.itinerary-day-grid {
  display: grid;
  gap: 16px;
}

.itinerary-day-card {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.itinerary-day-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.itinerary-day-top span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--jade);
  font-size: 12px;
  font-weight: 850;
}

.itinerary-day-top strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-day-card h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.itinerary-day-card > p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
}

.day-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
  margin-top: 2px;
  border: 1px solid rgba(22, 32, 30, 0.08);
  border-radius: 8px;
  background: rgba(22, 32, 30, 0.045);
}

.day-metrics span {
  display: flex;
  flex: 1 1 190px;
  min-height: 44px;
  align-items: baseline;
  gap: 9px;
  padding: 10px 16px;
  background: transparent;
}

.day-metrics span + span {
  border-left: 1px solid rgba(22, 32, 30, 0.08);
}

.day-metrics strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.day-metrics em {
  color: var(--ink);
  font-style: normal;
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
}

.itinerary-components {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.itinerary-component {
  display: grid;
  gap: 10px;
  min-height: 322px;
  padding: 16px;
  border: 1px solid rgba(15, 108, 90, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  overflow: hidden;
}

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

.component-toolbar span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.component-toolbar select {
  min-width: 0;
  max-width: 170px;
  padding: 8px 28px 8px 10px;
  border: 1px solid rgba(15, 108, 90, 0.18);
  border-radius: 999px;
  color: var(--jade-dark);
  background: rgba(15, 108, 90, 0.06);
  font-size: 12px;
  font-weight: 750;
}

.itinerary-component h5 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.itinerary-component p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.component-image {
  display: block;
  width: calc(100% + 32px);
  height: clamp(118px, 10vw, 148px);
  align-self: end;
  margin: auto -16px -16px;
  border-radius: 0 0 8px 8px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(0.98);
}

.component-metrics {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.component-metrics span {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(15, 108, 90, 0.06);
}

.component-metrics strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.component-metrics em {
  color: var(--ink);
  font-style: normal;
  font-size: 13px;
  font-weight: 750;
}

[contenteditable="true"] {
  outline: 0;
}

[contenteditable="true"]:focus {
  border-radius: 6px;
  box-shadow: 0 0 0 3px rgba(15, 108, 90, 0.14);
}

.generated-check-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.generated-check-list li {
  position: relative;
  padding-left: 20px;
}

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

.generated-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 20px 0 0;
}

.generated-actions .microcopy {
  flex-basis: 100%;
}

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

@keyframes aiPulseScale {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.68;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

html[lang="zh-Hans"] .ai-hero-copy h1,
html[lang="zh-Hans"] .ai-planner .planner-step legend,
html[lang="zh-Hans"] .ai-orbit-panel strong,
html[lang="zh-Hans"] .ai-plan-result h3,
html[lang="zh-Hans"] .ai-loading-panel h2,
html[lang="zh-Hans"] .generated-hero h2,
html[lang="zh-Hans"] .generated-card h3 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.22;
}

.structure-section {
  background: #f0ede6;
}

.seasonal-section {
  background: #f0ede6;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.seasonal-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.seasonal-heading h2 {
  max-width: 700px;
  font-size: clamp(31px, 3.8vw, 44px);
  line-height: 1.02;
}

.seasonal-heading p {
  max-width: 610px;
  line-height: 1.5;
}

.seasonal-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
  gap: 14px;
  align-items: stretch;
}

.season-card {
  display: grid;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.season-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 108, 90, 0.3);
  box-shadow: 0 20px 46px rgba(22, 32, 30, 0.12);
}

.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.season-card:hover img {
  transform: scale(1.035);
}

.season-card div {
  position: relative;
  z-index: 1;
  background: var(--paper-strong);
}

.season-card-feature {
  grid-template-rows: auto 1fr;
}

.season-card-feature img {
  aspect-ratio: 2.75;
  height: auto;
}

.season-card-feature div {
  padding: 18px 20px;
}

.season-card-list {
  display: grid;
  gap: 10px;
}

.season-card-compact {
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 118px;
}

.season-card-compact div {
  padding: 14px 16px;
}

.season-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.season-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.season-card-compact h3 {
  font-size: clamp(18px, 1.45vw, 21px);
}

.season-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.season-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--jade);
  font-size: 15px;
}

.travel-notes-page .whats-on-current-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.travel-notes-page .whats-on-current-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--paper-strong);
  border: 1px solid rgba(0, 95, 80, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.08);
}

.travel-notes-page .whats-on-current-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.travel-notes-page .whats-on-current-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.travel-notes-page .whats-on-current-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.travel-notes-page .whats-on-current-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

.travel-notes-page .whats-on-current-card-body > p:not(.whats-on-current-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.travel-notes-page .whats-on-current-cta {
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  font-size: 14px;
}

.seasonal-guide-stack {
  display: grid;
  gap: 18px;
}

.seasonal-guide-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  min-height: 320px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seasonal-guide-card:hover,
.seasonal-guide-card:focus-visible {
  border-color: rgba(15, 108, 90, 0.3);
  box-shadow: 0 22px 48px rgba(22, 32, 30, 0.13);
  transform: translateY(-3px);
}

.seasonal-guide-card:focus-visible {
  outline: 3px solid rgba(187, 141, 54, 0.32);
  outline-offset: 4px;
}

.seasonal-guide-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.seasonal-guide-card:hover img,
.seasonal-guide-card:focus-visible img {
  transform: scale(1.025);
}

.seasonal-guide-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3.6vw, 38px);
}

.seasonal-guide-card-body span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.seasonal-guide-card-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3.4vw, 43px);
  font-weight: 500;
  line-height: 1.08;
}

.seasonal-guide-card-body p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.seasonal-guide-card-body ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.seasonal-guide-card-body li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.seasonal-guide-card-body li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.seasonal-guide-card-body strong {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--jade);
  font-size: 15px;
}

.season-card-placeholder {
  align-content: center;
  cursor: default;
  box-shadow: none;
}

.season-card-placeholder:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.season-card-placeholder div {
  grid-column: 1 / -1;
  min-height: 118px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(240, 237, 230, 0.82)),
    var(--paper-strong);
}

.season-card-placeholder p {
  color: rgba(116, 88, 33, 0.78);
  font-weight: 650;
}

.seasonal-article-hero {
  position: relative;
  display: grid;
  min-height: clamp(430px, 58vw, 640px);
  padding: clamp(132px, 16vw, 190px) clamp(20px, 6vw, 76px) clamp(64px, 9vw, 110px);
  overflow: hidden;
  color: #fff;
  background: var(--jade-dark);
}

.seasonal-article-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 38, 31, 0.82), rgba(8, 38, 31, 0.46) 45%, rgba(8, 38, 31, 0.18)),
    linear-gradient(0deg, rgba(8, 38, 31, 0.5), rgba(8, 38, 31, 0.02) 52%);
}

.seasonal-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal-article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.seasonal-article-hero h1 span {
  display: block;
}

.seasonal-article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 500;
  line-height: 1.03;
}

.seasonal-article-content {
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background: var(--paper);
}

.seasonal-article-body {
  display: grid;
  gap: clamp(42px, 6vw, 72px);
  max-width: 920px;
  margin: 0 auto;
}

.seasonal-article-intro {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.58;
}

.seasonal-article-section {
  display: grid;
  gap: 20px;
}

.seasonal-article-section h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.seasonal-article-section p,
.seasonal-article-item p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.seasonal-article-section strong,
.seasonal-article-item strong {
  color: var(--ink);
  font-weight: 750;
}

.seasonal-article-item-list {
  display: grid;
  gap: 26px;
  margin-top: 8px;
}

.seasonal-article-item {
  display: grid;
  gap: 16px;
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(187, 141, 54, 0.42);
}

.seasonal-article-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 500;
  line-height: 1.18;
}

.seasonal-article-image {
  max-width: 820px;
  margin: 6px 0 0;
}

.seasonal-article-image-portrait {
  max-width: 560px;
}

.seasonal-article-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(22, 32, 30, 0.1);
}

.seasonal-article-image-portrait img {
  max-height: 650px;
}

.seasonal-article-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 76px);
  background: #f0ede6;
}

.seasonal-article-cta > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seasonal-article-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.seasonal-article-cta-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.06;
}

.seasonal-article-cta-content > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.seasonal-article-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.seasonal-article-cta-actions .button {
  width: auto;
  min-width: min(100%, 260px);
}

@media (max-width: 1060px) {
  .seasonal-article-cta {
    grid-template-columns: 1fr;
  }

  .seasonal-article-cta > img {
    min-height: 320px;
    aspect-ratio: 1.6;
  }
}

@media (max-width: 720px) {
  .season-article-page,
  .seasonal-landing-page {
    overflow-x: hidden;
  }

  .season-article-page main,
  .season-article-page section,
  .season-article-page article,
  .season-article-page div,
  .seasonal-landing-page main,
  .seasonal-landing-page section,
  .seasonal-landing-page article,
  .seasonal-landing-page div {
    min-width: 0;
  }

  .seasonal-article-hero {
    min-height: 78vh;
    padding: 104px 18px 70px;
  }

  .seasonal-article-hero-content,
  .seasonal-article-hero h1 {
    width: min(100%, calc(100vw - 36px));
    max-width: min(100%, calc(100vw - 36px));
  }

  .seasonal-article-hero h1 {
    font-size: clamp(30px, 8.7vw, 38px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .seasonal-article-content,
  .seasonal-article-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .seasonal-article-body {
    gap: 42px;
    width: 100%;
    max-width: 100%;
  }

  .seasonal-article-section h2,
  .seasonal-article-cta-content h2,
  .seasonal-landing-page .seasonal-heading h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .seasonal-article-intro,
  .seasonal-article-section p,
  .seasonal-article-item p,
  .seasonal-landing-page .seasonal-heading p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .seasonal-article-intro {
    font-size: 19px;
    line-height: 1.62;
  }

  .seasonal-article-item {
    padding-left: 16px;
  }

  .seasonal-article-image img,
  .seasonal-article-image-portrait img {
    max-height: none;
  }

  .seasonal-guide-stack {
    gap: 16px;
  }

  .seasonal-guide-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .seasonal-guide-card img {
    min-height: 0;
    aspect-ratio: 1.45;
  }

  .seasonal-guide-card-body {
    padding: 22px;
  }

  .seasonal-guide-card-body h3 {
    font-size: clamp(25px, 7.5vw, 31px);
  }

  .seasonal-guide-card-body p {
    font-size: 15.5px;
  }

  .seasonal-article-cta-actions .button {
    width: 100%;
  }
}

.notes-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.notes-path-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.notes-path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 108, 90, 0.28);
  box-shadow: 0 16px 34px rgba(22, 32, 30, 0.08);
}

.notes-path-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notes-path-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.notes-path-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

html[lang="zh-Hans"] .season-card h3 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.35;
}

.ia-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ia-grid article {
  padding: 24px;
}

.ia-number {
  color: var(--gold);
  font-weight: 850;
}

.closing-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  align-items: center;
  color: #fff;
  background: var(--jade-dark);
}

.closing-band img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.closing-band .button {
  margin-top: 22px;
}

.contact-band {
  color: var(--ink);
  background: #f1eee6;
  border-top: 1px solid rgba(23, 33, 31, 0.1);
}

.contact-band-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 4.5vw, 56px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper-strong);
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(23, 33, 31, 0.1);
}

.newsletter-main {
  display: grid;
  align-content: center;
  gap: 24px;
}

.newsletter-panel h2 {
  max-width: 640px;
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.05;
}

.newsletter-panel p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

html[lang="en"] .newsletter-panel h2,
html[lang="en"] .newsletter-contact h3 {
  font-size: clamp(26px, 2.1vw, 28px);
  line-height: 1.14;
}

html[lang="en"] .newsletter-panel p:not(.section-kicker):not(.newsletter-disclaimer):not(.newsletter-status) {
  font-size: 16px;
  line-height: 1.58;
}

.newsletter-contact {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid rgba(23, 33, 31, 0.12);
}

.newsletter-contact h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--ink);
}

.newsletter-contact p:not(.section-kicker) {
  max-width: 310px;
  font-size: 16px;
  line-height: 1.56;
}

.newsletter-contact .button {
  margin-top: 4px;
}

.newsletter-contact .button-secondary,
.tour-contact-cta .button-secondary,
.about-cta-actions .button-secondary {
  color: var(--jade-dark);
  border-color: rgba(15, 84, 72, 0.22);
  background: rgba(244, 248, 245, 0.82);
}

.newsletter-contact .button-secondary:hover,
.tour-contact-cta .button-secondary:hover,
.about-cta-actions .button-secondary:hover {
  border-color: rgba(15, 84, 72, 0.38);
  background: #fffefa;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form label,
.newsletter-card-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-form div {
  display: flex;
  gap: 10px;
}

.newsletter-form .newsletter-field-row {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(23, 33, 31, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}

.newsletter-form button {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--jade-dark);
  font-weight: 850;
  cursor: pointer;
}

.newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.newsletter-disclaimer,
.newsletter-status {
  max-width: 620px;
  margin: 0;
  color: rgba(63, 74, 70, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.newsletter-disclaimer a {
  color: var(--jade-dark);
  font-weight: 760;
  text-decoration: none;
}

.newsletter-disclaimer a:hover {
  color: var(--gold);
}

html[lang="en"] .newsletter-form .newsletter-disclaimer,
html[lang="en"] .newsletter-form .newsletter-status {
  font-size: 13px;
  line-height: 1.55;
}

.newsletter-status {
  min-height: 1.55em;
  font-weight: 750;
}

.newsletter-status[data-status="success"] {
  color: var(--jade-dark);
}

.newsletter-status[data-status="error"] {
  color: #9d4a37;
}

.newsletter-form.is-success .newsletter-field-row {
  display: none;
}

.newsletter-form .newsletter-social {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-social-label {
  display: inline-block;
}

.newsletter-form .newsletter-social-links {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.newsletter-social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #06342d;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.newsletter-social-links a:hover,
.newsletter-social-links a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.newsletter-social-links svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

html[lang="en"] .contact-band {
  padding-bottom: 0;
}

html[lang="en"] .contact-band.contact-band--footer-only {
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0;
  background: transparent;
}

html[lang="en"] .shared-footer-preceding-block {
  margin-bottom: 0;
  padding-bottom: 0;
}

.shared-footer-block {
  width: 100vw;
  margin-top: 56px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(20px, 6vw, 76px);
  color: #f8f6f1;
  background: #06342d;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(190px, 1fr) minmax(260px, 1.32fr) minmax(190px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: 56px 0 42px;
}

.footer-info-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shared-footer-block .footer-info-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.shared-footer-block .footer-info-grid h3 {
  color: rgba(248, 246, 241, 0.94);
}

.footer-info-grid article,
.footer-info-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.footer-info-grid a,
.footer-info-grid span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.shared-footer-block .footer-info-grid a,
.shared-footer-block .footer-info-grid span {
  color: rgba(248, 246, 241, 0.78);
}

.footer-info-grid a:hover {
  color: var(--jade-dark);
}

.shared-footer-block .footer-info-grid a:hover {
  color: var(--gold);
}

.footer-about p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.shared-footer-block .footer-about p {
  color: rgba(248, 246, 241, 0.78);
}

html[lang="zh-Hans"] .newsletter-panel h2 {
  font-family: "Songti SC", "Noto Serif CJK SC", "STSong", Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

html[lang="zh-Hans"] .footer-info-grid h3,
html[lang="zh-Hans"] .newsletter-form label {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.site-footer {
  display: block;
  padding: 0 clamp(20px, 6vw, 76px) 24px;
  color: rgba(23, 33, 31, 0.56);
  background: #f1eee6;
  font-size: 13px;
}

html[lang="en"] .site-footer {
  color: rgba(248, 246, 241, 0.68);
  background: #06342d;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 31, 0.12);
}

html[lang="en"] .site-footer-inner {
  border-top-color: rgba(248, 246, 241, 0.2);
}

.site-footer-inner > span:nth-child(2) {
  text-align: center;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--jade-dark);
}

html[lang="en"] .site-footer a:hover {
  color: var(--gold);
}

.site-footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
}

.subpage-main {
  padding-top: 72px;
}

.subpage-hero,
.subpage-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 76px);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background: var(--paper);
}

.subpage-hero img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.subpage-hero h1,
.subpage-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 500;
  line-height: 1.04;
}

.subpage-hero p:not(.section-kicker) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.subpage-hero > div > .section-kicker,
.ai-hero-copy > .section-kicker,
.checkout-topline .section-kicker,
.confirmation-panel > .section-kicker {
  margin: 0 0 12px;
}

.subpage-hero > div > h1,
.ai-hero-copy > h1,
.checkout-topline > div > h1,
.confirmation-panel > h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.subpage-hero > div > h1 + p,
.ai-hero-copy > h1 + p,
.checkout-topline > div > h1 + p,
.confirmation-panel > h1 + p {
  max-width: 690px;
  margin: 18px 0 0;
}

.subpage-section {
  background: #f0ede6;
}

.season-guide-section {
  background: var(--paper);
}

.season-detail-stack {
  display: grid;
  gap: 18px;
  max-width: 1000px;
  margin: 34px auto 0;
}

.season-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.07);
  scroll-margin-top: 96px;
}

.season-detail img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.season-detail-body {
  padding: clamp(24px, 4vw, 38px);
}

.season-detail-body span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.season-detail-body h3 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.7vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.season-detail-body p,
.season-detail-body li {
  color: var(--muted);
  line-height: 1.62;
}

.season-detail-body ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

html[lang="zh-Hans"] .season-detail-body h3 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.32;
}

.subpage-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 6vw, 76px);
  color: #fff;
  background: var(--jade-dark);
}

.subpage-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.subpage-cta p {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.contact-hero {
  align-items: stretch;
}

.contact-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(6, 70, 58, 0.96), rgba(13, 85, 75, 0.92)),
    var(--jade);
  box-shadow: 0 24px 58px rgba(15, 108, 90, 0.16);
}

.contact-hero-card span,
.contact-method-grid span,
.contact-feature-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-card strong {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.04;
}

.contact-hero-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.contact-method-grid,
.contact-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-method-grid article,
.contact-feature-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 0 18px 42px rgba(22, 32, 30, 0.07);
}

.contact-method-grid h3,
.contact-feature-card h2 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-method-grid p,
.contact-feature-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.58;
}

.contact-method-grid a,
.contact-method-grid strong {
  color: var(--jade-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-method-grid a:hover,
.contact-method-grid a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.contact-next-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.contact-feature-card > span {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 108, 90, 0.16);
  border-radius: 999px;
  color: var(--jade-dark);
  background: rgba(229, 242, 239, 0.72);
}

.contact-planner-card {
  background:
    linear-gradient(145deg, rgba(229, 242, 239, 0.72), rgba(255, 253, 248, 0.98)),
    var(--paper-strong);
}

.contact-planner-card .button {
  width: fit-content;
}

.payment-success-main {
  background:
    linear-gradient(180deg, rgba(244, 248, 245, 0.82), rgba(255, 253, 248, 0.98) 34%),
    var(--paper);
}

.payment-success-hero {
  min-height: min(680px, 78vh);
  align-items: center;
}

.payment-success-panel {
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.payment-success-panel h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.98;
}

.payment-success-panel > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}

.payment-success-next {
  display: grid;
  gap: 12px;
  max-width: 560px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 108, 90, 0.16);
}

.payment-success-next p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.payment-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.about-hero {
  align-items: stretch;
}

.about-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(6, 70, 58, 0.96), rgba(13, 85, 75, 0.92)),
    var(--jade);
  box-shadow: 0 24px 58px rgba(15, 108, 90, 0.16);
}

.about-hero-card span,
.about-section-card span,
.about-promise-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero-card strong {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.about-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-section-card,
.about-promises,
.about-cta-panel {
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 0 18px 42px rgba(22, 32, 30, 0.07);
}

.about-section-card h2,
.about-promises h2,
.about-cta-panel h2 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.about-section-card p,
.about-promises p,
.about-cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-section-card .about-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  background: rgba(200, 139, 58, 0.1);
  font-size: 14px;
}

.about-promises {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.about-promise-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-promise-list li {
  padding: 16px 18px;
  border: 1px solid rgba(15, 108, 90, 0.12);
  border-radius: 8px;
  background: rgba(229, 242, 239, 0.46);
}

.about-promise-list strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
}

.about-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(229, 242, 239, 0.72), rgba(255, 253, 248, 0.98)),
    var(--paper-strong);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.guide-responsive-page {
  overflow-x: hidden;
}

.guide-responsive-page .mobile-menu-toggle {
  display: none;
}

.guide-responsive-page .season-detail-body {
  min-width: 0;
}

.guide-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.guide-cta-actions .button {
  width: auto;
}

@media (max-width: 1060px) {
  .guide-responsive-page.is-mobile-nav-open {
    overflow: hidden;
  }

  .guide-responsive-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .guide-responsive-page .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: currentColor;
    background: rgba(248, 246, 241, 0.72);
    border: 1px solid currentColor;
    border-radius: 999px;
    cursor: pointer;
  }

  .guide-responsive-page .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 999px;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .guide-responsive-page.is-mobile-nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .guide-responsive-page.is-mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .guide-responsive-page.is-mobile-nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .guide-responsive-page .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 230;
    display: grid;
    align-content: start;
    justify-self: stretch;
    gap: 0;
    width: 100vw;
    min-height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
    padding: 20px clamp(18px, 5vw, 54px) 32px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 54px rgba(19, 30, 28, 0.16);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .guide-responsive-page.is-mobile-nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .guide-responsive-page .nav-item {
    display: grid;
    align-self: auto;
    border-bottom: 1px solid rgba(17, 37, 34, 0.1);
  }

  .guide-responsive-page .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    width: 100%;
    padding: 14px 0;
    font-weight: 800;
    text-align: left;
  }

  .guide-responsive-page .nav-trigger::after {
    content: "+";
    color: var(--jade);
    font-size: 20px;
    line-height: 1;
  }

  .guide-responsive-page .nav-item.is-hovered .nav-trigger::after,
  .guide-responsive-page .nav-item:focus-within .nav-trigger::after {
    content: "-";
  }

  .guide-responsive-page .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
    visibility: hidden;
  }

  .guide-responsive-page .nav-menu::before,
  .guide-responsive-page .nav-menu a::after {
    display: none;
  }

  .guide-responsive-page .nav-item.is-hovered .nav-menu,
  .guide-responsive-page .nav-item:focus-within .nav-menu {
    max-height: 340px;
    padding: 0 0 16px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .guide-responsive-page .nav-menu a {
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(15, 108, 90, 0.06);
    border: 1px solid rgba(15, 108, 90, 0.14);
    border-radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.3;
  }
}

@media (max-width: 720px) {
  .guide-responsive-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .guide-responsive-page .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .guide-responsive-page .main-nav {
    min-height: calc(100vh - 64px);
    max-height: calc(100vh - 64px);
    padding: 14px 18px 28px;
  }
}

.booking-cta {
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1.14fr);
  align-items: stretch;
}

.booking-cta-copy {
  display: grid;
  align-content: center;
}

.booking-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.booking-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-step-list span {
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #17231f;
  background: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.booking-step-list strong {
  color: #fff;
  font-size: 20px;
}

.booking-step-list em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.5;
}

.fixed-booking-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 6vw, 70px);
}

.fixed-booking-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(360px, 1.16fr);
  gap: 18px;
  margin-top: 28px;
}

.fixed-booking-panel,
.fixed-booking-preview {
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 18px 44px rgba(15, 108, 90, 0.08);
}

.fixed-booking-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

.fixed-booking-panel label {
  display: grid;
  gap: 8px;
}

.fixed-booking-panel label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fixed-booking-panel select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(15, 108, 90, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(245, 248, 244, 0.94);
  font: inherit;
}

.fixed-booking-panel .button {
  justify-content: center;
  margin-top: 4px;
}

.fixed-booking-preview {
  padding: clamp(26px, 3.6vw, 38px);
  background:
    linear-gradient(135deg, rgba(15, 68, 55, 0.96), rgba(11, 84, 91, 0.92)),
    var(--jade-dark);
  color: #fff;
}

.fixed-booking-preview .section-kicker {
  color: var(--gold);
}

.fixed-booking-preview h3 {
  margin: 8px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.fixed-booking-preview dl,
.stripe-metadata-preview {
  display: grid;
  gap: 10px;
  margin: 0;
}

.fixed-booking-preview dl div,
.stripe-metadata-preview div {
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fixed-booking-preview dt,
.stripe-metadata-preview dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fixed-booking-preview dd,
.stripe-metadata-preview dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.stripe-reserve-note {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.stripe-reserve-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-reserve-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.booking-page {
  background:
    linear-gradient(180deg, rgba(229, 242, 239, 0.8), rgba(255, 253, 248, 0.94) 34%),
    var(--paper);
}

.booking-hero {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  background: var(--jade-dark);
}

.booking-hero h1,
.booking-hero p {
  color: #fff;
}

.booking-hero .section-kicker {
  color: var(--gold);
}

.booking-hero > div > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.booking-status-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.booking-status-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-status-card strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}

.booking-status-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.booking-payment-section,
.confirmation-next-section {
  display: grid;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) clamp(20px, 6vw, 70px);
}

.booking-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.checkout-payment-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.02fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.booking-summary-card,
.booking-payment-card,
.booking-method-card,
.booking-safety-note,
.confirmation-panel,
.confirmation-next-grid article {
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 16px 40px rgba(15, 108, 90, 0.07);
}

.booking-summary-card,
.booking-payment-card,
.booking-method-card {
  padding: clamp(24px, 3.4vw, 34px);
}

.booking-summary-card {
  grid-row: span 2;
}

.checkout-payment-grid .booking-summary-card {
  grid-row: auto;
}

.checkout-date-card,
.checkout-contact-card {
  align-self: stretch;
}

.checkout-date-card {
  background:
    linear-gradient(180deg, rgba(238, 247, 244, 0.94), rgba(255, 253, 248, 0.96)),
    rgba(255, 253, 248, 0.95);
}

.checkout-itinerary-card {
  display: flex;
  flex-direction: column;
}

.checkout-itinerary-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.checkout-deposit-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 232, 0.92)),
    var(--paper-strong);
}

.checkout-contact-card {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: rgba(229, 242, 239, 0.7);
}

.booking-summary-card h2,
.booking-payment-card h2,
.booking-method-card h2,
.confirmation-panel h1,
.confirmation-next-section h2 {
  margin: 6px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.booking-summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.booking-summary-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 108, 90, 0.12);
}

.booking-summary-list div:last-child {
  border-bottom: 0;
}

.booking-summary-list dt,
.payment-schedule span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-summary-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.checkout-select-label {
  display: grid;
  gap: 8px;
}

.checkout-select-label span,
.checkout-choice-summary dt,
.checkout-deposit-line span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-select-label select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(15, 108, 90, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
}

.checkout-choice-summary {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.checkout-choice-summary div {
  padding: 12px 0;
  border-top: 1px solid rgba(15, 108, 90, 0.1);
}

.checkout-choice-summary dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.4;
}

.checkout-deposit-line {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  gap: 12px;
  margin-bottom: 16px;
}

.checkout-deposit-line > div {
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(15, 108, 90, 0.12);
  border-radius: 10px;
  background: rgba(15, 108, 90, 0.07);
}

.checkout-deposit-line strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
}

.checkout-deposit-line p,
.checkout-contact-card p {
  color: var(--muted);
  line-height: 1.58;
}

.checkout-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--jade);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.payment-schedule {
  display: grid;
  gap: 12px;
}

.payment-schedule div,
.payment-form-preview {
  padding: 16px;
  border-radius: 10px;
  background: rgba(15, 108, 90, 0.07);
}

.payment-schedule strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
}

.payment-schedule p,
.payment-method-list,
.booking-safety-note p,
.confirmation-panel p,
.confirmation-next-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.confirmation-panel > h1 {
  max-width: 840px;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.04;
}

.confirmation-panel > h1 + p {
  font-size: 18px;
  line-height: 1.65;
}

.payment-method-list {
  margin: 0 0 18px;
  padding-left: 20px;
}

.payment-form-preview {
  display: grid;
  min-height: 86px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--muted);
  border: 1px dashed rgba(15, 108, 90, 0.28);
  text-align: center;
}

.stripe-checkout-preview {
  gap: 4px;
  min-height: 116px;
  border-style: solid;
  background:
    linear-gradient(135deg, rgba(15, 108, 90, 0.08), rgba(199, 143, 49, 0.12));
}

.stripe-checkout-preview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-checkout-preview strong {
  color: var(--ink);
  font-size: 24px;
}

.stripe-checkout-preview small {
  color: var(--muted);
}

.stripe-metadata-preview {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(22, 32, 30, 0.92);
}

.stripe-metadata-preview div {
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
  padding: 8px 0;
}

.booking-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.booking-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--jade);
}

.booking-method-card .button {
  justify-content: center;
  width: 100%;
}

.booking-safety-note {
  padding: 22px;
  background: rgba(229, 242, 239, 0.72);
}

.booking-safety-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.confirmation-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 88px) clamp(24px, 7vw, 82px);
}

.confirmation-panel h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
}

.confirmation-panel > p {
  max-width: 760px;
  font-size: 19px;
}

.confirmation-summary {
  max-width: 820px;
  margin-top: 28px;
}

.confirmation-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.confirmation-next-grid article {
  padding: 24px;
}

.confirmation-next-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.confirmation-next-grid h3 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
}

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

.journeys-page {
  background: var(--paper);
}

.journeys-hero {
  background:
    linear-gradient(90deg, rgba(241, 238, 231, 0.94), rgba(241, 238, 231, 0.74)),
    var(--paper);
}

.journeys-overview {
  background: #eef6f3;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-overview-grid-detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-overview-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.08);
}

.product-overview-grid-detailed .product-overview-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  min-height: 310px;
}

.product-overview-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.product-overview-grid-detailed .product-overview-card img {
  height: 100%;
  min-height: 310px;
  aspect-ratio: auto;
}

.product-overview-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-overview-card span {
  display: block;
  margin: 18px 18px 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.product-overview-body > span {
  margin: 0 0 8px;
}

.product-overview-card h3 {
  margin: 0 18px 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
}

.product-overview-body h3 {
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(27px, 3.2vw, 36px);
}

.product-overview-card p {
  margin: 0 18px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.product-overview-body > p {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16px;
}

.product-card-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.product-card-facts div {
  padding-top: 10px;
  border-top: 1px solid rgba(22, 32, 30, 0.1);
}

.product-card-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.product-card-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  line-height: 1.48;
}

.product-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.product-card-highlights em {
  padding: 6px 9px;
  color: var(--jade);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  border: 1px solid rgba(0, 95, 80, 0.18);
  border-radius: 999px;
  background: rgba(0, 95, 80, 0.05);
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  border: 1px solid rgba(8, 78, 67, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card-cta:hover,
.product-card-cta:focus-visible {
  color: var(--jade);
  border-color: rgba(8, 78, 67, 0.62);
  box-shadow: 0 8px 20px rgba(22, 32, 30, 0.08);
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(-1px);
}

.journey-detail-hero .button {
  margin-top: 26px;
}

.journey-product-section {
  padding: clamp(54px, 7vw, 94px) clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  scroll-margin-top: 92px;
}

.journey-product-section:nth-of-type(odd) {
  background: #f7f4ed;
}

.journey-product-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.journey-product-intro img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.journey-product-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.6vw, 70px);
  font-weight: 500;
  line-height: 1.04;
}

.journey-product-intro p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-tags span {
  padding: 8px 12px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(0, 95, 80, 0.24);
  border-radius: 999px;
  background: rgba(0, 95, 80, 0.06);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto 18px;
}

.product-detail-grid article {
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.product-detail-grid p,
.product-detail-grid li {
  color: var(--muted);
  line-height: 1.62;
}

.product-detail-grid ul {
  margin: 0;
  padding-left: 20px;
}

.product-day-list {
  display: grid;
  gap: 8px;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: product-day;
}

.product-day-list li {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-day-list strong {
  color: var(--ink);
}

.product-day-list span {
  color: var(--muted);
  line-height: 1.58;
}

.tour-detail-page {
  background: var(--mist);
}

.tour-detail-hero {
  border-bottom: 1px solid var(--line);
}

.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tour-section-nav {
  position: sticky;
  z-index: 20;
  top: 66px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px clamp(20px, 6vw, 76px);
  background: rgba(247, 244, 237, 0.92);
  border-top: 1px solid rgba(22, 32, 30, 0.08);
  border-bottom: 1px solid rgba(22, 32, 30, 0.1);
  backdrop-filter: blur(16px);
}

.tour-section-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid rgba(0, 95, 80, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.tour-section-nav a:hover,
.tour-section-nav a:focus-visible {
  border-color: rgba(0, 95, 80, 0.42);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.tour-section-nav a.is-active {
  color: #fff;
  border-color: rgba(0, 95, 80, 0.72);
  background: var(--jade);
  box-shadow: 0 10px 22px rgba(0, 95, 80, 0.16);
}

.journey-detail-page.is-tabbed .tour-tab-panel[hidden] {
  display: none;
}

.journey-detail-page.is-tabbed .tour-tab-panel.is-active {
  display: block;
}

.journey-detail-page.is-tabbed .date-price-panel.is-active {
  display: grid;
}

.tour-detail-section {
  padding: clamp(50px, 6vw, 86px) clamp(20px, 6vw, 76px);
  scroll-margin-top: 132px;
  background: var(--mist);
}

.tour-detail-section:nth-of-type(even) {
  background: var(--paper);
}

.tour-section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.tour-tab-header {
  max-width: 860px;
  margin-bottom: clamp(26px, 3vw, 34px);
}

.tour-tab-header .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tour-tab-header h2 {
  color: var(--ink);
}

.tour-tab-header p:not(.section-kicker) {
  max-width: 780px;
  margin: 14px 0 0;
}

.tour-section-head h2,
.date-price-panel h2,
.review-guide-grid h2,
.review-carousel-section h2,
.tour-final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.06;
}

.tour-section-head p:not(.section-kicker),
.date-price-panel p,
.review-guide-grid p,
.review-carousel-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

#overview .tour-section-head p.tour-overview-price {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: clamp(19px, 2.1vw, 23px);
  font-weight: 600;
  line-height: 1.35;
}

.tour-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1180px;
}

.tour-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.tour-fact-strip div {
  min-height: 106px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tour-fact-strip div:nth-child(3n) {
  border-right: 0;
}

.tour-fact-strip div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.tour-fact-strip dt,
.tour-day-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-fact-strip dd,
.tour-day-meta dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.36;
}

.tour-route-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 218px;
  padding: 26px;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: var(--jade);
  box-shadow: var(--shadow);
}

.tour-route-summary span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-route-summary strong {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.12;
}

.tour-gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.82fr);
  gap: 10px;
  max-width: 1180px;
  margin-top: 18px;
}

.tour-gallery-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(22, 32, 30, 0.08);
}

.tour-gallery-strip img:first-child {
  height: 260px;
}

.tour-gallery-strip-even {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tour-gallery-strip-even img,
.tour-gallery-strip-even img:first-child {
  height: 210px;
}

.tour-gallery-strip-even + .tour-section-head {
  margin-top: 30px;
}

.tour-highlight-grid,
.hotel-grid,
.inclusion-grid,
.review-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
}

.tour-highlight-card,
.hotel-card,
.inclusion-card,
.review-panel,
.guide-panel,
.faq-item {
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(22, 32, 30, 0.05);
}

.tour-highlight-card h3,
.hotel-card h3,
.inclusion-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.tour-highlight-card p,
.hotel-card p,
.inclusion-card li,
.review-panel li,
.faq-item p {
  color: var(--muted);
  line-height: 1.62;
}

.sample-hotel-showcase {
  max-width: 1180px;
}

.sample-hotel-carousel-shell {
  position: relative;
  max-width: 100%;
}

.sample-hotel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--jade);
  border: 1px solid rgba(15, 108, 90, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(22, 32, 30, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sample-hotel-arrow-prev {
  left: -18px;
}

.sample-hotel-arrow-next {
  right: -18px;
}

.sample-hotel-arrow:hover,
.sample-hotel-arrow:focus-visible {
  color: #fff;
  border-color: var(--jade);
  background: var(--jade);
  transform: translateY(-50%) scale(1.03);
}

.sample-hotel-arrow:disabled {
  color: rgba(23, 33, 31, 0.34);
  border-color: rgba(23, 33, 31, 0.1);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
  cursor: default;
  transform: translateY(-50%);
}

.sample-hotel-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.sample-hotel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 18px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(15, 108, 90, 0.32) rgba(15, 108, 90, 0.08);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.sample-hotel-track::-webkit-scrollbar {
  height: 8px;
}

.sample-hotel-track::-webkit-scrollbar-track {
  background: rgba(15, 108, 90, 0.08);
  border-radius: 999px;
}

.sample-hotel-track::-webkit-scrollbar-thumb {
  background: rgba(15, 108, 90, 0.32);
  border-radius: 999px;
}

.sample-hotel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.sample-hotel-card {
  flex: 0 0 clamp(286px, 31vw, 360px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(22, 32, 30, 0.11);
  scroll-snap-align: start;
}

.sample-hotel-card img {
  width: 100%;
  aspect-ratio: 40 / 27;
  object-fit: cover;
  background: rgba(15, 108, 90, 0.08);
}

.sample-hotel-body {
  flex: 1;
  display: grid;
  grid-template-rows: auto minmax(5.1em, auto) 1fr auto;
  min-height: 212px;
  padding: 20px;
  background: #fff;
}

.sample-hotel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 900;
}

.sample-hotel-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
  white-space: nowrap;
}

.sample-hotel-rating svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke-width: 2;
}

.sample-hotel-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.3vw, 31px);
  font-weight: 500;
  line-height: 1.12;
}

.sample-hotel-card p {
  display: flex;
  align-items: center;
  gap: 7px;
  align-self: end;
  margin: 0;
  padding-top: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.sample-hotel-card p svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--gold);
  stroke-width: 2.2;
}

.sample-hotel-note {
  max-width: 820px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.route-map-panel {
  overflow: hidden;
}

.route-map-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.route-stop {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(0, 95, 80, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
}

.route-stop::before {
  content: "";
  position: absolute;
  top: 44px;
  right: -18px;
  width: 24px;
  height: 1px;
  background: rgba(0, 95, 80, 0.32);
}

.route-stop:last-child::before {
  display: none;
}

.route-stop span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: var(--jade);
}

.route-stop strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.route-stop em {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-stop p {
  color: var(--muted);
  line-height: 1.55;
}

.route-map-enhanced {
  background:
    linear-gradient(180deg, rgba(239, 247, 246, 0.92), rgba(247, 244, 237, 0.96)),
    var(--paper);
}

.route-map-enhanced .route-map-copy {
  max-width: 760px;
}

.route-map-visual-card {
  position: relative;
  max-width: 1180px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(0, 95, 80, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 248, 0.8)),
    #f8fbf8;
  box-shadow: 0 24px 58px rgba(22, 32, 30, 0.1);
}

.route-map-visual-card::-webkit-scrollbar {
  height: 8px;
}

.route-map-visual-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 95, 80, 0.26);
}

.route-map-ribbon {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 8px;
  background: #d74e43;
  box-shadow: 0 16px 34px rgba(117, 35, 28, 0.18);
}

.journey-route-map {
  display: block;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  border-radius: 8px;
}

.journey-route-map-svg {
  display: block;
  width: 100%;
  min-width: 780px;
  height: auto;
  aspect-ratio: 980 / 620;
  border-radius: 8px;
}

svg.journey-route-map {
  min-width: 780px;
  height: clamp(360px, 43vw, 520px);
}

.journey-route-map .map-water {
  fill: #d7e9e4;
}

.journey-route-map .map-land {
  fill: #fffdf7;
  stroke: rgba(15, 108, 90, 0.3);
  stroke-width: 1.8;
}

.journey-route-map .map-physical-land {
  stroke: none;
}

.journey-route-map .map-geography .map-land,
.journey-route-map .map-geography .map-national-boundary {
  vector-effect: non-scaling-stroke;
}

.journey-route-map .map-national-boundary {
  fill: none;
  stroke: rgba(15, 108, 90, 0.32);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.journey-route-map .map-coast,
.journey-route-map .map-river {
  fill: none;
  stroke: rgba(0, 95, 80, 0.18);
  stroke-width: 3;
  stroke-linecap: round;
}

.journey-route-map .map-river {
  stroke: rgba(109, 166, 178, 0.42);
}

.journey-route-map .map-country {
  fill: rgba(15, 108, 90, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.journey-route-map .map-country-regional {
  fill: rgba(15, 108, 90, 0.07);
  font-size: 42px;
  letter-spacing: 0.14em;
}

.journey-route-map.is-framed-route-map .journey-route-map-svg {
  min-width: 0;
}

.route-shadow-line {
  fill: none;
  stroke: rgba(10, 61, 53, 0.16);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-casing-line {
  fill: none;
  stroke: #fffdf8;
  stroke-width: 10.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-segment-line,
.route-main-line {
  fill: none;
  stroke: var(--jade);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-segment-line {
  stroke-width: 3.5;
  opacity: 0.32;
}

.route-main-line {
  stroke-width: 5.5;
}

.route-city-dot {
  fill: var(--jade-dark);
  stroke: #fffdf8;
  stroke-width: 5;
}

.route-city-number {
  fill: #fff;
  font-size: 8.5px;
  font-weight: 900;
  text-anchor: middle;
}

.route-city-number-long {
  font-size: 6.2px;
}

.route-label-leader {
  fill: none;
  stroke: rgba(10, 61, 53, 0.28);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.route-city-label rect,
.route-transport-label rect {
  fill: rgba(255, 253, 248, 0.94);
  stroke: rgba(15, 108, 90, 0.18);
}

.journey-route-map.uses-route-casing .route-city-label-card {
  fill: #fffdf8;
  stroke: rgba(15, 108, 90, 0.24);
  stroke-width: 1.4;
}

.route-city-label text {
  fill: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.route-transport-marker circle {
  fill: #fffdf8;
  stroke: var(--gold);
  stroke-width: 2.8;
}

.route-transport-marker path,
.route-transport-marker circle:not(:first-child) {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-mode-flight circle,
.route-mode-flight path {
  stroke: var(--jade);
}

.route-mode-car circle,
.route-mode-car path,
.route-mode-mixed circle,
.route-mode-mixed path,
.route-mode-cruise-car circle,
.route-mode-cruise-car path {
  stroke: #a87630;
}

.route-transport-label text {
  fill: #284642;
  font-size: 13px;
  font-weight: 900;
}

.route-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 4px 2px;
}

.route-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(0, 95, 80, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.legend-icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-line,
.legend-dot {
  display: inline-block;
  flex: 0 0 auto;
}

.legend-line {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--jade);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--jade-dark);
  box-shadow: 0 0 0 3px rgba(15, 108, 90, 0.12);
}

.legend-rail {
  background: var(--jade);
}

.legend-flight {
  background: #0c5f50;
}

.legend-car {
  background: var(--gold);
}

.route-map-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  max-width: 1180px;
  margin-top: 18px;
}

.route-map-details > div {
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.route-map-details h3 {
  margin: 0 0 16px;
  color: rgba(22, 32, 30, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-flow-list {
  display: grid;
  gap: 10px;
}

.route-flow-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(238, 244, 242, 0.74);
}

.route-flow-list span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: var(--jade);
}

.route-flow-list strong,
.route-stop-summary strong,
.route-overnight-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.route-flow-list em,
.route-stop-summary span,
.route-overnight-list span {
  color: #a87630;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-stop-summary,
.route-overnight-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-stop-summary li,
.route-overnight-list li {
  display: grid;
  grid-template-columns: minmax(94px, 0.58fr) 48px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 32, 30, 0.08);
}

.route-stop-summary li:last-child,
.route-overnight-list li:last-child {
  border-bottom: 0;
}

.route-stop-summary em,
.route-overnight-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.36;
}

.tour-day-list {
  display: grid;
  gap: 10px;
  max-width: 1180px;
}

.tour-day-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(22, 32, 30, 0.04);
}

.tour-day-card summary {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(130px, 0.28fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.tour-day-card summary::-webkit-details-marker {
  display: none;
}

.tour-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: var(--jade);
}

.tour-day-title {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.1;
}

.tour-day-city {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.tour-day-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 20px;
  padding: 0 20px 20px;
}

.tour-day-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

.tour-day-meta div,
.date-price-panel {
  padding: 16px;
  border: 1px solid rgba(22, 32, 30, 0.08);
  border-radius: 8px;
  background: rgba(242, 244, 239, 0.9);
}

html[lang="en"] .tour-product-page .tour-day-body {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  align-content: start;
  min-height: 340px;
  padding-bottom: clamp(104px, 10vw, 152px);
}

html[lang="en"] .tour-product-page .tour-day-meta {
  grid-column: 3;
  grid-template-columns: 1fr;
  width: 100%;
}

html[lang="en"] .tour-product-page .tour-day-body:has(.tour-day-gallery) {
  padding-bottom: 20px;
}

html[lang="en"] .tour-product-page .tour-day-body.tour-day-body-no-gallery {
  min-height: auto;
  padding-bottom: 20px;
}

.tour-day-gallery {
  --tour-day-gallery-image-height: clamp(148px, 12vw, 150px);
  grid-column: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
  width: 100%;
  padding: 4px 0 8px;
  overflow: visible;
}

.tour-day-image-button {
  position: relative;
  z-index: 1;
  flex: 0 0 calc(var(--tour-day-gallery-image-height) * 1.5);
  aspect-ratio: 3 / 2;
  height: var(--tour-day-gallery-image-height);
  min-width: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  border-radius: 8px;
  background: rgba(242, 244, 239, 0.9);
  box-shadow: 0 14px 30px rgba(22, 32, 30, 0.08);
  transform-origin: center;
  transition:
    transform 240ms cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 240ms cubic-bezier(0.2, 0.85, 0.2, 1),
    filter 240ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.tour-day-image-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-day-image-button:hover,
.tour-day-image-button:focus-visible {
  z-index: 6;
  outline: 0;
  box-shadow: 0 28px 54px rgba(15, 38, 35, 0.24);
  filter: saturate(1.04) contrast(1.04) brightness(0.98);
  transform: translateY(-5px) scale(1.075);
}

.tour-day-image-button:hover + .tour-day-image-button,
.tour-day-image-button:focus-visible + .tour-day-image-button {
  z-index: 2;
  transform: translateX(14px);
}

.tour-day-image-button:hover + .tour-day-image-button + .tour-day-image-button,
.tour-day-image-button:focus-visible + .tour-day-image-button + .tour-day-image-button {
  transform: translateX(8px);
}

.tour-day-image-button:has(+ .tour-day-image-button:hover),
.tour-day-image-button:has(+ .tour-day-image-button:focus-visible) {
  z-index: 2;
  transform: translateX(-14px);
}

.tour-day-image-button:has(+ .tour-day-image-button + .tour-day-image-button:hover),
.tour-day-image-button:has(+ .tour-day-image-button + .tour-day-image-button:focus-visible) {
  transform: translateX(-8px);
}

.tour-day-image-button:focus-visible {
  box-shadow:
    0 0 0 3px rgba(201, 166, 90, 0.34),
    0 28px 54px rgba(15, 38, 35, 0.24);
}

.tour-image-lightbox-open {
  overflow: hidden;
}

.tour-image-lightbox[hidden] {
  display: none;
}

.tour-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
}

.tour-image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  background: rgba(9, 28, 24, 0.78);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.tour-image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
}

.tour-image-lightbox-frame {
  width: 100%;
  margin: 0;
}

.tour-image-lightbox-frame img {
  display: block;
  width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.tour-image-lightbox-close,
.tour-image-lightbox-nav {
  width: clamp(54px, 5vw, 68px);
  height: clamp(54px, 5vw, 68px);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.94);
  background-color: rgba(12, 23, 20, 0.36);
  background-image:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 56%, rgba(255, 255, 255, 0.16));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -18px 30px rgba(9, 20, 18, 0.1);
  cursor: pointer;
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  transition:
    transform 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    background-color 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    border-color 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.2, 0.85, 0.2, 1),
    filter 280ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.tour-image-lightbox-close {
  position: absolute;
  top: -22px;
  right: -22px;
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1;
}

.tour-image-lightbox-nav {
  position: absolute;
  top: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 54px);
  line-height: 1;
  transform: translateY(-50%);
}

.tour-image-lightbox-nav.previous {
  left: -34px;
}

.tour-image-lightbox-nav.next {
  right: -34px;
}

.tour-image-lightbox-close:hover,
.tour-image-lightbox-close:focus-visible,
.tour-image-lightbox-nav:hover,
.tour-image-lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background-color: rgba(24, 39, 34, 0.3);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.31),
    0 0 34px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -14px 26px rgba(255, 255, 255, 0.1);
  filter: brightness(1.12);
  outline: 0;
}

.tour-image-lightbox-close:hover,
.tour-image-lightbox-close:focus-visible {
  transform: scale(1.12);
}

.tour-image-lightbox-nav:hover,
.tour-image-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.12);
}

.tour-image-lightbox-close:focus-visible,
.tour-image-lightbox-nav:focus-visible {
  outline: 2px solid rgba(214, 156, 54, 0.86);
  outline-offset: 5px;
}

@media (max-width: 640px) {
  .tour-image-lightbox {
    padding: 16px 12px;
  }

  .tour-image-lightbox-dialog {
    max-height: calc(100vh - 32px);
  }

  .tour-image-lightbox-frame img {
    max-height: 72vh;
  }

  .tour-image-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .tour-image-lightbox-nav {
    top: auto;
    bottom: 34px;
    width: 42px;
    height: 46px;
    transform: none;
  }

  .tour-image-lightbox-nav.previous {
    left: 16px;
  }

  .tour-image-lightbox-nav.next {
    right: 16px;
  }
}

.hotel-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.inclusion-card ul,
.review-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.date-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 0 clamp(20px, 6vw, 76px);
  padding: clamp(26px, 4vw, 38px);
  background: var(--jade);
}

.date-price-panel h2,
.date-price-panel p {
  color: #fff;
}

.date-price-panel .section-kicker {
  color: var(--gold);
}

.date-price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

html[lang="en"] .tour-product-page .date-price-panel:has([data-departure-calendar]) {
  display: block;
  max-width: none;
  margin: 0;
  padding: clamp(50px, 6vw, 86px) clamp(20px, 6vw, 76px);
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}

html[lang="en"] .tour-product-page .date-price-panel:has([data-departure-calendar]) h2,
html[lang="en"] .tour-product-page .date-price-panel:has([data-departure-calendar]) h3 {
  color: var(--ink);
}

html[lang="en"] .tour-product-page .date-price-panel:has([data-departure-calendar]) p:not(.section-kicker) {
  color: var(--muted);
}

.journey-dates-copy p:not(.section-kicker) {
  line-height: 1.68;
}

.departure-calendar-shell {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(240px, 360px);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
  max-width: 940px;
}

.departure-calendar-card {
  width: min(100%, 520px);
}

.departure-calendar-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

.departure-calendar-toolbar {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}

.departure-calendar-month {
  margin: 0;
  color: var(--jade-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.departure-calendar-nav {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: var(--jade-dark);
  border: 1px solid rgba(15, 108, 90, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.departure-calendar-nav:hover,
.departure-calendar-nav:focus-visible {
  color: var(--gold);
  border-color: rgba(200, 139, 58, 0.7);
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
  transform: translateY(-1px);
}

.departure-calendar-nav:disabled {
  cursor: not-allowed;
  color: rgba(97, 113, 109, 0.44);
  border-color: rgba(23, 33, 31, 0.08);
  background: rgba(255, 255, 255, 0.34);
  transform: none;
}

.departure-calendar-weekdays,
.departure-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.departure-calendar-weekdays {
  margin-top: 16px;
}

.departure-calendar-weekdays span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.departure-calendar-grid {
  margin-top: 6px;
}

.departure-calendar-day {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  border: 1px solid rgba(15, 108, 90, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.departure-calendar-day:not(.is-empty):not(:disabled):hover,
.departure-calendar-day:not(.is-empty):not(:disabled):focus-visible {
  color: var(--jade-dark);
  border-color: rgba(200, 139, 58, 0.76);
  background: rgba(200, 139, 58, 0.14);
  box-shadow: 0 10px 22px rgba(200, 139, 58, 0.13);
  outline: 0;
  transform: translateY(-1px);
}

.departure-calendar-day:disabled {
  cursor: not-allowed;
  color: rgba(97, 113, 109, 0.45);
  border-color: rgba(23, 33, 31, 0.06);
  background: rgba(23, 33, 31, 0.04);
  box-shadow: none;
}

.departure-calendar-day.is-empty {
  min-height: 36px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.departure-calendar-day.is-in-span {
  color: var(--jade-dark);
  border-color: rgba(15, 108, 90, 0.18);
  background: rgba(15, 108, 90, 0.12);
}

.departure-calendar-day.is-selected-start,
.departure-calendar-day.is-selected-end {
  color: #fff;
  border-color: rgba(15, 108, 90, 0.82);
  background: var(--jade);
  box-shadow: 0 12px 24px rgba(15, 108, 90, 0.24);
}

.departure-calendar-day.is-selected-start:hover,
.departure-calendar-day.is-selected-start:focus-visible,
.departure-calendar-day.is-selected-end:hover,
.departure-calendar-day.is-selected-end:focus-visible {
  color: #fff;
  border-color: rgba(15, 108, 90, 0.82);
  background: var(--jade);
}

.departure-calendar-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding-top: 2px;
}

.departure-calendar-feedback {
  margin: 0;
  color: var(--jade-dark) !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.departure-calendar-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px;
  line-height: 1.5;
}

.departure-calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.review-guide-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

.review-carousel-section {
  overflow: hidden;
}

.review-section-head {
  max-width: 860px;
}

.review-carousel {
  display: flex;
  gap: 14px;
  max-width: 1180px;
  margin-top: 6px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  cursor: grab;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.review-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.review-carousel::-webkit-scrollbar {
  height: 8px;
}

.review-carousel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(15, 108, 90, 0.08);
}

.review-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 108, 90, 0.28);
}

.review-card {
  display: flex;
  flex: 0 0 clamp(292px, 31vw, 390px);
  flex-direction: column;
  min-height: 284px;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(22, 32, 30, 0.06);
  scroll-snap-align: start;
}

.review-rating {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.42;
}

.review-card footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 32, 30, 0.08);
}

.review-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.jadedays-reviewer-programme {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  max-width: 1180px;
  margin-top: clamp(30px, 4.5vw, 54px);
  padding: clamp(28px, 4.4vw, 48px);
  color: rgba(248, 246, 241, 0.86);
  border-radius: 8px;
  background: #06342d;
}

.jadedays-reviewer-programme .section-kicker {
  margin: 0;
  color: var(--gold);
}

.jadedays-reviewer-programme h3 {
  margin: 0;
  color: #f8f6f1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.jadedays-reviewer-programme > p {
  margin: 0;
}

.jadedays-reviewer-programme .key-traveller-intro {
  max-width: 760px;
  color: rgba(248, 246, 241, 0.9);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}

.key-traveller-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: 2px;
}

.key-traveller-offers div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding-top: 14px;
  border-top: 2px solid rgba(200, 139, 58, 0.82);
}

.key-traveller-offers strong {
  color: #f8f6f1;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 850;
  line-height: 1.2;
}

.key-traveller-offers span {
  color: rgba(248, 246, 241, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.jadedays-reviewer-programme .key-traveller-closing {
  color: rgba(248, 246, 241, 0.86);
  font-size: 15px;
  line-height: 1.6;
}

.jadedays-reviewer-programme .button {
  justify-self: start;
  margin-top: 2px;
}

.review-carousel-section p.jadedays-reviewer-note {
  color: rgba(248, 246, 241, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.key-traveller-learn-more {
  justify-self: start;
  color: rgba(248, 246, 241, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.key-traveller-learn-more:hover,
.key-traveller-learn-more:focus-visible {
  color: var(--gold);
}

.key-programme-hero,
.key-programme-closing-band {
  color: rgba(248, 246, 241, 0.9);
  background: #06342d;
}

.key-programme-hero {
  padding: clamp(92px, 11vw, 150px) clamp(20px, 6vw, 76px) clamp(62px, 8vw, 104px);
}

.key-programme-hero-inner,
.key-programme-copy,
.key-programme-closing-band > div {
  max-width: 1180px;
  margin: 0 auto;
}

.key-programme-hero-inner {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.key-programme-hero .section-kicker,
.key-programme-closing-band .section-kicker {
  color: var(--gold);
}

.key-programme-hero h1,
.key-programme-copy h2,
.key-programme-closing-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

.key-programme-hero h1 {
  max-width: 820px;
  color: #f8f6f1;
  font-size: clamp(46px, 7vw, 86px);
}

.key-programme-hero p:not(.section-kicker) {
  max-width: 730px;
  margin: 0;
  color: rgba(248, 246, 241, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.key-programme-hero .button,
.key-programme-closing-band .button {
  justify-self: start;
  min-height: 56px;
  padding: 16px 28px;
  font-size: 16px;
}

.key-programme-section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 76px);
  background: var(--paper);
}

.key-programme-section-alt {
  background: #f0ede6;
}

.key-programme-copy h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
}

.key-programme-copy > p:not(.section-kicker) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.key-programme-offer-row {
  margin-top: 28px;
}

.key-programme-feedback-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.key-traveller-programme-page .key-programme-offer-row div {
  border-top-color: rgba(200, 139, 58, 0.82);
}

.key-traveller-programme-page .key-programme-offer-row strong {
  color: var(--ink);
}

.key-traveller-programme-page .key-programme-offer-row span {
  color: var(--muted);
}

.key-programme-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.key-programme-steps article {
  display: grid;
  grid-template-rows: auto minmax(48px, auto) 1fr;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding-top: 14px;
  border-top: 2px solid rgba(200, 139, 58, 0.82);
}

.key-programme-steps span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.key-programme-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.key-programme-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.key-programme-journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 28px;
}

.key-programme-journey-grid a {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.key-programme-journey-grid a:hover,
.key-programme-journey-grid a:focus-visible {
  border-color: rgba(15, 108, 90, 0.32);
  box-shadow: 0 18px 36px rgba(22, 32, 30, 0.08);
  transform: translateY(-2px);
}

.key-programme-journey-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.key-programme-journey-grid strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 31px);
  font-weight: 500;
  line-height: 1.08;
}

.key-programme-journey-grid em {
  color: var(--jade);
  font-style: normal;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

/* Keep the brighter brand gold for decoration and dark surfaces. */
.home-page .journey-card .card-meta,
.home-page .support-grid span,
.home-page .newsletter-panel .section-kicker,
.key-traveller-programme-page .key-programme-section .section-kicker,
.key-traveller-programme-page .key-programme-section .key-programme-steps span {
  color: var(--gold-text);
}

.key-programme-closing-band {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.key-programme-closing-band > div {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.key-programme-closing-band h2 {
  max-width: 760px;
  color: #f8f6f1;
  font-size: clamp(34px, 4.8vw, 62px);
}

.key-programme-closing-band p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 246, 241, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.key-traveller-programme-page .shared-footer-block {
  margin-top: 0;
}

@media (max-width: 980px) {
  .key-programme-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .key-programme-feedback-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .key-programme-hero {
    padding: 92px 18px 58px;
  }

  .key-programme-hero-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .key-programme-hero h1 {
    max-width: 100%;
    min-width: 0;
    font-size: clamp(34px, 9.5vw, 44px);
    overflow-wrap: break-word;
  }

  .key-programme-hero p:not(.section-kicker),
  .key-programme-copy h2,
  .key-programme-closing-band h2 {
    max-width: 100%;
    min-width: 0;
  }

  .key-programme-copy h2,
  .key-programme-closing-band h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .key-programme-hero .button,
  .key-programme-closing-band .button {
    justify-self: stretch;
    width: 100%;
  }

  .key-programme-section,
  .key-programme-closing-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .key-programme-offer-row,
  .key-programme-steps,
  .key-programme-feedback-row,
  .key-programme-journey-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .key-traveller-programme-page {
    overflow-x: hidden;
  }

  .key-traveller-programme-page .key-programme-hero-inner,
  .key-traveller-programme-page .key-programme-copy,
  .key-traveller-programme-page .key-programme-closing-band > div {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
  }

  .key-traveller-programme-page .key-programme-hero h1,
  .key-traveller-programme-page .key-programme-copy h2,
  .key-traveller-programme-page .key-programme-closing-band h2,
  .key-traveller-programme-page .key-programme-hero p:not(.section-kicker),
  .key-traveller-programme-page .key-programme-copy > p:not(.section-kicker),
  .key-traveller-programme-page .key-programme-closing-band p:not(.section-kicker) {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .key-traveller-programme-page .key-programme-journey-grid a {
    min-width: 0;
  }
}

.faq-grid {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-item summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.tour-final-cta {
  margin-top: 0;
}

html[lang="zh-Hans"] .tour-section-head h2,
html[lang="zh-Hans"] .date-price-panel h2,
html[lang="zh-Hans"] .review-guide-grid h2,
html[lang="zh-Hans"] .review-carousel-section h2,
html[lang="zh-Hans"] .tour-final-cta h2,
html[lang="zh-Hans"] .tour-route-summary strong,
html[lang="zh-Hans"] .route-stop strong,
html[lang="zh-Hans"] .tour-day-title {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.22;
}

html[lang="zh-Hans"] .product-overview-card h3,
html[lang="zh-Hans"] .journey-product-intro h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.25;
}

.timeline-grid,
.regional-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline-grid article,
.regional-grid article {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.timeline-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-grid h3,
.regional-grid h3 {
  margin: 12px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.timeline-grid p,
.regional-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.regional-grid article {
  padding: 0;
}

.regional-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.regional-grid h3,
.regional-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.regional-grid p {
  padding-bottom: 22px;
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .mobile-nav-contact {
    display: flex;
  }

  .nav-direct-link {
    width: 100%;
    padding: 14px 0;
    color: var(--ink);
    font-size: 18px;
  }

  .nav-call-link {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    color: var(--ink);
    border: 1px solid rgba(15, 108, 90, 0.18);
    border-radius: 16px;
    background: rgba(244, 247, 241, 0.82);
    font-size: 18px;
  }

  .nav-call-link span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-contact-menu {
    width: 100%;
  }

  .mobile-contact-menu .contact-choice-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(250, 248, 241, 0.72);
  }

  .mobile-contact-menu .contact-choice-menu::before {
    display: none;
  }

  .home-page .nav-link,
  .tour-product-page .nav-link,
  .journeys-overview-page .nav-link,
  .guide-responsive-page .nav-link,
  .checkout-responsive-page .nav-link,
  .confirmation-responsive-page .nav-link,
  .planner-responsive-page .nav-link {
    display: flex;
    align-items: center;
    min-height: 54px;
    width: 100%;
    padding: 14px 0;
    color: var(--ink);
    font-weight: 800;
    text-align: left;
    text-decoration: none;
  }

  .home-page .nav-link:focus-visible,
  .tour-product-page .nav-link:focus-visible,
  .journeys-overview-page .nav-link:focus-visible,
  .guide-responsive-page .nav-link:focus-visible,
  .checkout-responsive-page .nav-link:focus-visible,
  .confirmation-responsive-page .nav-link:focus-visible,
  .planner-responsive-page .nav-link:focus-visible {
    outline: 2px solid var(--jade);
    outline-offset: 3px;
    border-radius: 8px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .journey-grid,
  .product-overview-grid,
  .journey-product-intro,
  .product-detail-grid,
  .ia-grid,
  .support-grid,
  .facts-grid,
  .tour-overview-grid,
  .tour-highlight-grid,
  .hotel-grid,
  .review-guide-grid,
  .timeline-grid,
  .regional-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-fact-strip div:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .tour-fact-strip div:nth-child(2n) {
    border-right: 0;
  }

  .tour-fact-strip div:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .tour-fact-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .tour-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-gallery-strip img,
  .tour-gallery-strip img:first-child {
    height: 220px;
  }

  .route-map-details {
    grid-template-columns: 1fr;
  }

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

  .route-stop::before {
    display: none;
  }

  .date-price-panel {
    grid-template-columns: 1fr;
  }

  .date-price-actions {
    justify-content: flex-start;
  }

  .product-overview-grid-detailed .product-overview-card {
    grid-template-columns: 1fr;
  }

  .product-overview-grid-detailed .product-overview-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.58;
  }

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

  .theme-tile {
    flex-basis: clamp(172px, 24vw, 210px);
  }

  .planner-layout,
  .ai-planner-hero,
  .ai-planner-shell,
  .ai-loading-panel,
	  .generated-hero,
	  .generated-route-layout,
	  .generated-insight-grid,
    .generated-payment-section,
    .fixed-booking-grid,
    .booking-hero,
    .booking-payment-grid,
    .confirmation-next-grid,
    .about-story-grid,
    .about-promises,
    .about-cta-panel,
    .contact-method-grid,
    .contact-next-grid,
	  .theme-detail,
	  .intro-band,
	  .closing-band,
  .newsletter-panel,
  .seasonal-blog-grid,
  .season-detail,
  .subpage-cta,
	  .subpage-hero {
    grid-template-columns: 1fr;
  }

  .checkout-contact-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .checkout-contact-actions {
    justify-content: flex-start;
  }

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

  .travel-notes-page .whats-on-current-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-contact {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(23, 33, 31, 0.12);
    border-left: 0;
  }

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

  .plan-result {
    position: static;
  }

  html[lang="zh-Hans"] .advantage-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand small,
  .header-cta,
  .header-call-link {
    display: none;
  }

  .brand-mark-logo {
    height: 32px;
    margin-right: 2px;
  }

  .header-actions {
    gap: 0;
  }

  .hero {
    min-height: 88vh;
  }

  .contact-hero-card {
    min-height: auto;
  }

  .about-hero-card {
    min-height: auto;
  }

  .contact-feature-card h2,
  .contact-method-grid h3,
  .about-section-card h2,
  .about-promises h2,
  .about-cta-panel h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .contact-planner-card .button,
  .about-cta-actions,
  .about-cta-actions .button {
    width: 100%;
  }

  .about-cta-actions {
    justify-content: stretch;
  }

  .hero-slide {
    padding: 96px 18px 98px;
  }

  .hero-controls {
    right: 50%;
    bottom: 38px;
  }

  .hero-actions,
  .planner-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .journey-grid,
  .product-overview-grid,
  .journey-product-intro,
  .product-detail-grid,
  .ia-grid,
  .support-grid,
  .facts-grid,
  .tour-overview-grid,
  .tour-highlight-grid,
  .hotel-grid,
  .inclusion-grid,
  .review-guide-grid,
    .timeline-grid,
    .regional-grid,
    .contact-link-grid,
    .footer-info-grid,
    .question-grid,
    .season-card-compact,
    .choice-grid,
    .checkbox-grid,
    .advantage-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .site-footer-inner > span:nth-child(2) {
    text-align: left;
  }

  .site-footer-legal {
    justify-self: start;
    justify-content: flex-start;
  }

  .shared-footer-block {
    margin-top: 42px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-info-grid {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .tour-section-nav {
    top: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .tour-detail-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tour-hero-actions,
  .date-price-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .tour-fact-strip div,
  .tour-fact-strip div:nth-child(2n),
  .tour-fact-strip div:nth-child(3n),
  .tour-fact-strip div:nth-last-child(-n + 2),
  .tour-fact-strip div:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tour-fact-strip div:last-child {
    border-bottom: 0;
  }

  .tour-gallery-strip,
  .route-map-line {
    grid-template-columns: 1fr;
  }

  .checkout-deposit-line {
    grid-template-columns: 1fr;
  }

  .checkout-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .route-map-visual-card {
    padding: 10px;
  }

  .route-map-ribbon {
    top: 18px;
    left: 18px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .journey-route-map-svg,
  svg.journey-route-map {
    min-width: 760px;
  }

  svg.journey-route-map {
    height: 390px;
  }

  .route-map-legend {
    padding-left: 0;
    padding-right: 0;
  }

  .route-flow-list article,
  .route-stop-summary li,
  .route-overnight-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tour-gallery-strip img,
  .tour-gallery-strip img:first-child {
    height: auto;
    aspect-ratio: 1.45;
  }

  .tour-day-card summary,
  .tour-day-body,
  .tour-day-meta {
    grid-template-columns: 1fr;
  }

  .tour-day-city {
    text-align: left;
  }

  html[lang="en"] .tour-product-page .tour-day-body {
    grid-template-columns: 1fr;
    min-height: 440px;
    padding-bottom: 128px;
  }

  html[lang="en"] .tour-product-page .tour-day-body:has(.tour-day-gallery) {
    padding-bottom: 18px;
  }

  html[lang="en"] .tour-product-page .tour-day-meta {
    grid-column: 1;
    width: 100%;
  }

  .tour-day-gallery {
    grid-column: 1;
    gap: 14px;
  }

  .tour-day-image-button,
  .tour-day-gallery[data-image-count="1"] .tour-day-image-button,
  .tour-day-gallery[data-image-count="2"] .tour-day-image-button {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .tour-day-image-button:hover,
  .tour-day-image-button:focus-visible,
  .tour-day-image-button:hover + .tour-day-image-button,
  .tour-day-image-button:focus-visible + .tour-day-image-button,
  .tour-day-image-button:hover + .tour-day-image-button + .tour-day-image-button,
  .tour-day-image-button:focus-visible + .tour-day-image-button + .tour-day-image-button,
  .tour-day-image-button:has(+ .tour-day-image-button:hover),
  .tour-day-image-button:has(+ .tour-day-image-button:focus-visible),
  .tour-day-image-button:has(+ .tour-day-image-button + .tour-day-image-button:hover),
  .tour-day-image-button:has(+ .tour-day-image-button + .tour-day-image-button:focus-visible) {
    z-index: 1;
    filter: none;
    transform: none;
  }

  .tour-day-image-button:hover {
    box-shadow: 0 14px 30px rgba(22, 32, 30, 0.08);
  }

  .tour-day-image-button:focus-visible {
    z-index: 2;
    box-shadow:
      0 0 0 3px rgba(201, 166, 90, 0.34),
      0 14px 30px rgba(22, 32, 30, 0.08);
  }

  .date-price-panel {
    margin-left: 18px;
    margin-right: 18px;
  }

  .ai-planner-hero {
    padding-top: 92px;
  }

  .ai-loading-panel {
    gap: 22px;
    padding: 28px 20px;
  }

  .ai-loading-core {
    justify-self: center;
    width: min(52vw, 150px);
  }

	  .ai-loading-steps,
	  .generated-share-actions,
	  .generated-next-choice-grid,
	  .itinerary-components,
	  .generated-insight-grid,
	  .booking-step-list {
	    grid-template-columns: 1fr;
	  }

	  .booking-cta-actions,
	  .confirmation-actions {
	    align-items: stretch;
	    flex-direction: column;
	  }

	  .booking-payment-section,
	  .confirmation-next-section {
	    padding-left: 18px;
	    padding-right: 18px;
	  }

  .fixed-booking-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fixed-booking-preview dl div,
  .stripe-metadata-preview div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .day-metrics span {
    flex-basis: 100%;
    min-height: 40px;
  }

  .day-metrics span + span {
    border-top: 1px solid rgba(22, 32, 30, 0.08);
    border-left: 0;
  }

  .editable-itinerary-head,
  .component-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .component-toolbar select {
    max-width: none;
    width: 100%;
  }

  .generated-hero,
  .generated-card,
  .generated-match-card {
    border-radius: 8px;
  }

  .generated-match-card {
    min-height: auto;
  }

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

  .generated-next-choice-card-primary {
    border-left: 0;
  }

  .generated-next-choice-section:not(.generated-next-choice-section-single) .generated-next-choice-card-primary {
    border-top: 1px solid var(--jade);
  }

  .generated-next-choice-card {
    min-height: 0;
  }

  .generated-next-choice-card .button {
    width: 100%;
  }

  .ai-planner {
    min-height: auto;
  }

  .journey-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .product-day-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 14px;
  }

  .theme-tile {
    flex-basis: min(72vw, 250px);
    min-height: 150px;
  }

  .theme-scroll {
    display: none;
  }

  .season-card-compact img {
    aspect-ratio: 1.48;
    height: auto;
  }

  .intro-band,
  .closing-band,
  .contact-band,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .newsletter-panel {
    padding: 24px;
  }

  .newsletter-panel h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .newsletter-form div {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  html[lang="zh-Hans"] .advantage-band h2 {
    font-size: clamp(34px, 9.6vw, 44px);
  }

html[lang="zh-Hans"] .advantage-grid h3 {
    font-size: 19px;
    line-height: 1.45;
  }
}

.home-page {
  overflow-x: hidden;
}

.home-page .mobile-menu-toggle {
  display: none;
}

@media (max-width: 1060px) {
  .home-page.is-mobile-nav-open {
    overflow: hidden;
  }

  .home-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .home-page .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: currentColor;
    background: rgba(248, 246, 241, 0.72);
    border: 1px solid currentColor;
    border-radius: 999px;
    cursor: pointer;
  }

  .home-page .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 999px;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .home-page.is-mobile-nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .home-page.is-mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .home-page.is-mobile-nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .home-page .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 230;
    display: grid;
    align-content: start;
    justify-self: stretch;
    gap: 0;
    width: 100vw;
    min-height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
    padding: 20px clamp(18px, 5vw, 54px) 32px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 54px rgba(19, 30, 28, 0.16);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .home-page.is-mobile-nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .home-page .nav-item {
    display: grid;
    align-self: auto;
    border-bottom: 1px solid rgba(17, 37, 34, 0.1);
  }

  .home-page .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    width: 100%;
    padding: 14px 0;
    font-weight: 800;
    text-align: left;
  }

  .home-page .nav-trigger::after {
    content: "+";
    color: var(--jade);
    font-size: 20px;
    line-height: 1;
  }

  .home-page .nav-item.is-hovered .nav-trigger::after,
  .home-page .nav-item:focus-within .nav-trigger::after {
    content: "-";
  }

  .home-page .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
    visibility: hidden;
  }

  .home-page .nav-menu::before {
    display: none;
  }

  .home-page .nav-item.is-hovered .nav-menu,
  .home-page .nav-item:focus-within .nav-menu {
    max-height: 340px;
    padding: 0 0 16px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .home-page .nav-menu a {
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(15, 108, 90, 0.06);
    border: 1px solid rgba(15, 108, 90, 0.14);
    border-radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.3;
  }

  .home-page .nav-menu a::after {
    display: none;
  }

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

  .home-page .journey-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .season-card-feature,
  .home-page .season-card-compact {
    grid-template-columns: 1fr;
  }

  .home-page .hero-controls {
    bottom: 12px;
  }
}

@media (max-width: 720px) {
  .home-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .home-page .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .home-page .main-nav {
    min-height: calc(100vh - 64px);
    max-height: calc(100vh - 64px);
    padding: 14px 18px 28px;
  }

  .home-page .hero {
    min-height: min(760px, 92vh);
    --hero-arrow-safe-margin: 0px;
  }

  .home-page .hero-slide {
    align-items: flex-end;
    padding: 92px 18px 92px;
  }

  .home-page .hero-product-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-product-panel {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .home-page .hero-product-panel:nth-child(2n) {
    border-right: 0;
  }

  .home-page .hero-product-panel:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-page .hero-product-panel figcaption {
    right: 10px;
    bottom: 12px;
    left: 10px;
    font-size: 12px;
  }

  .home-page .hero-content,
  .home-page .hero-content-compact {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 0.98;
  }

  .home-page .hero-copy {
    max-width: 32rem;
    font-size: 16px;
  }

  .home-page .hero-proof {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .home-page .hero-proof span {
    font-size: 13px;
    line-height: 1.35;
  }

  .home-page .hero-actions .button {
    min-height: 56px;
    padding: 15px 24px;
    font-size: 16px;
  }

  .home-page .hero-controls {
    right: 50%;
    left: auto;
    bottom: 26px;
    width: auto;
    transform: translateX(50%);
  }

  .home-page .hero-dots {
    justify-content: center;
  }

  .home-page .hero-arrow {
    display: none;
  }

  .home-page .section-heading h2,
  .home-page .support-section h2,
  .home-page .seasonal-heading h2,
  .home-page .intro-band h2 {
    font-size: clamp(32px, 9.4vw, 44px);
    line-height: 1.04;
  }

  .home-page .section-heading p,
  .home-page .seasonal-heading p {
    font-size: 16px;
  }

  .home-page .journey-grid,
  .home-page .support-grid,
  .home-page .seasonal-blog-grid,
  .home-page .season-card-list,
  .home-page .notes-path-grid,
  .home-page .advantage-grid,
  .home-page .theme-detail,
  .home-page .newsletter-panel,
  .home-page .footer-info-grid {
    grid-template-columns: 1fr;
  }

  .home-page .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .advantage-grid article {
    min-width: 0;
    padding: 13px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .home-page .advantage-grid span {
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.3;
  }

  .home-page .advantage-grid h3 {
    font-size: clamp(16px, 4.9vw, 19px);
    line-height: 1.25;
  }

  .home-page .journey-card img {
    height: auto;
    aspect-ratio: 1.35;
  }

  html[lang="en"] .home-page .journey-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  html[lang="en"] .home-page .journey-card img,
  html[lang="en"] .home-page .journey-card-large img {
    aspect-ratio: 1.35;
  }

  .home-page .journey-card-body {
    padding: 22px;
  }

  .home-page .theme-grid {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x proximity;
  }

  .home-page .theme-tile {
    flex: 0 0 min(76vw, 260px);
    min-height: 168px;
    scroll-snap-align: center;
  }

  .home-page .theme-detail {
    gap: 18px;
    padding: 22px;
  }

  .home-page .theme-detail ul {
    margin-top: 0;
  }

  .home-page .theme-detail::before {
    opacity: 0.16;
  }

  .home-page .season-card-feature img,
  .home-page .season-card-compact img {
    height: auto;
    aspect-ratio: 1.45;
  }

  .travel-notes-page .whats-on-current-grid {
    grid-template-columns: 1fr;
  }

  .travel-notes-page .subpage-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .travel-notes-page .subpage-hero > div,
  .travel-notes-page .subpage-hero h1,
  .travel-notes-page .subpage-hero p:not(.section-kicker) {
    width: 100%;
    max-width: 100%;
  }

  .travel-notes-page .whats-on-current-card img {
    aspect-ratio: 1.38;
  }

  .home-page .newsletter-panel {
    gap: 18px;
    padding: 22px;
  }

  .home-page .newsletter-form input,
  .home-page .newsletter-form button {
    width: 100%;
  }

  .home-page .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .subpage-hero h1,
  .checkout-topline > div > h1,
  .confirmation-panel > h1,
  .ai-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(29px, 8.8vw, 34px);
    line-height: 1.04;
  }

  .home-page .hero-slide {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    max-width: 100%;
    font-size: clamp(29px, 8.7vw, 34px);
    line-height: 1.02;
  }

  .home-page .hero-copy {
    font-size: 15px;
  }

  .home-page .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-page .intro-band,
  .home-page .contact-band {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-page .button {
    min-height: 46px;
  }

  .home-page .section-heading h2,
  .home-page .support-section h2,
  .home-page .seasonal-heading h2,
  .home-page .intro-band h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .home-page .journey-card-body,
  .home-page .theme-detail,
  .home-page .newsletter-panel {
    padding: 20px;
  }

  .home-page .contact-fineprint {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  html[lang="zh-Hans"] .home-page .hero h1,
  html[lang="zh-Hans"] .home-page .hero h2 {
    font-size: clamp(31px, 10vw, 40px);
  }

html[lang="zh-Hans"] .home-page .section-heading h2,
  html[lang="zh-Hans"] .home-page .support-section h2,
  html[lang="zh-Hans"] .home-page .seasonal-heading h2,
  html[lang="zh-Hans"] .home-page .intro-band h2 {
    font-size: clamp(29px, 8.8vw, 38px);
  }
}

.tour-product-page {
  overflow-x: hidden;
}

.tour-product-page .mobile-menu-toggle {
  display: none;
}

@media (max-width: 1060px) {
  .tour-product-page.is-mobile-nav-open {
    overflow: hidden;
  }

  .tour-product-page.is-mobile-nav-open .site-header {
    z-index: 80;
  }

  .tour-product-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .tour-product-page .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: currentColor;
    background: rgba(248, 246, 241, 0.72);
    border: 1px solid currentColor;
    border-radius: 999px;
    cursor: pointer;
  }

  .tour-product-page .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 999px;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .tour-product-page.is-mobile-nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .tour-product-page.is-mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .tour-product-page.is-mobile-nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .tour-product-page .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 230;
    display: grid;
    align-content: start;
    justify-self: stretch;
    gap: 0;
    width: 100vw;
    min-height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
    padding: 20px clamp(18px, 5vw, 54px) 32px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 54px rgba(19, 30, 28, 0.16);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .tour-product-page.is-mobile-nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .tour-product-page .nav-item {
    display: grid;
    align-self: auto;
    border-bottom: 1px solid rgba(17, 37, 34, 0.1);
  }

  .tour-product-page .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    width: 100%;
    padding: 14px 0;
    font-weight: 800;
    text-align: left;
  }

  .tour-product-page .nav-trigger::after {
    content: "+";
    color: var(--jade);
    font-size: 20px;
    line-height: 1;
  }

  .tour-product-page .nav-item.is-hovered .nav-trigger::after,
  .tour-product-page .nav-item:focus-within .nav-trigger::after {
    content: "-";
  }

  .tour-product-page .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
    visibility: hidden;
  }

  .tour-product-page .nav-menu::before {
    display: none;
  }

  .tour-product-page .nav-item.is-hovered .nav-menu,
  .tour-product-page .nav-item:focus-within .nav-menu {
    max-height: 340px;
    padding: 0 0 16px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .tour-product-page .nav-menu a {
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(15, 108, 90, 0.06);
    border: 1px solid rgba(15, 108, 90, 0.14);
    border-radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.3;
  }

  .tour-product-page .nav-menu a::after {
    display: none;
  }

  .tour-product-page .tour-detail-hero {
    gap: 34px;
  }

  .tour-product-page .tour-detail-hero h1 {
    font-size: clamp(46px, 7vw, 68px);
  }

  .tour-product-page .tour-section-nav {
    max-width: 100vw;
    scroll-padding-left: clamp(20px, 6vw, 76px);
    -webkit-overflow-scrolling: touch;
  }

  .tour-product-page .route-map-visual-card,
  .tour-product-page .review-carousel {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .tour-product-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .tour-product-page .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .tour-product-page .main-nav {
    min-height: calc(100vh - 64px);
    max-height: calc(100vh - 64px);
    padding: 14px 18px 28px;
  }

  .tour-product-page .tour-detail-hero {
    gap: 24px;
    padding: 92px 18px 40px;
  }

  .tour-product-page .tour-detail-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.3;
    object-fit: cover;
  }

  .tour-product-page .tour-detail-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1;
  }

  .tour-product-page .tour-detail-hero p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.6;
  }

  .tour-product-page .tour-section-nav {
    top: 64px;
    gap: 7px;
    padding: 9px 18px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .tour-product-page .tour-section-nav::-webkit-scrollbar {
    display: none;
  }

  .tour-product-page .tour-section-nav a {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
    scroll-snap-align: start;
  }

  .tour-product-page .tour-detail-section {
    padding: 38px 18px;
    scroll-margin-top: 116px;
  }

  .tour-product-page .tour-section-head {
    margin-bottom: 20px;
  }

  .tour-product-page .tour-section-head h2,
  .tour-product-page .date-price-panel h2,
  .tour-product-page .review-guide-grid h2,
  .tour-product-page .review-carousel-section h2,
  .tour-product-page .tour-final-cta h2 {
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.07;
  }

  .tour-product-page .tour-section-head p:not(.section-kicker),
  .tour-product-page .date-price-panel p,
  .tour-product-page .review-guide-grid p,
  .tour-product-page .review-carousel-section p {
    font-size: 16px;
    line-height: 1.62;
  }

  .tour-product-page .route-map-enhanced .route-map-copy {
    max-width: min(100%, 20.5rem);
  }

  .tour-product-page .route-map-enhanced .tour-section-head h2 {
    font-size: clamp(29px, 6.5vw, 32px);
    line-height: 1.08;
  }

  .tour-product-page .tour-overview-grid,
  .tour-product-page .tour-highlight-grid,
  .tour-product-page .hotel-grid,
  .tour-product-page .inclusion-grid,
  .tour-product-page .review-guide-grid {
    gap: 12px;
  }

  .tour-product-page .tour-fact-strip div {
    min-height: auto;
    padding: 16px;
  }

  .tour-product-page .tour-route-summary,
  .tour-product-page .tour-highlight-card,
  .tour-product-page .hotel-card,
  .tour-product-page .inclusion-card,
  .tour-product-page .review-panel,
  .tour-product-page .guide-panel,
  .tour-product-page .faq-item,
  .tour-product-page .route-map-details > div {
    padding: 20px;
  }

  .tour-product-page .tour-route-summary {
    min-height: 172px;
  }

  .tour-product-page .tour-route-summary strong {
    font-size: clamp(25px, 7vw, 34px);
  }

  .tour-product-page .tour-highlight-card h3,
  .tour-product-page .hotel-card h3,
  .tour-product-page .inclusion-card h3 {
    font-size: 20px;
  }

  .tour-product-page .route-map-visual-card {
    padding: 10px;
    overflow: hidden;
    overscroll-behavior-inline: contain;
  }

  .tour-product-page .journey-route-map-svg,
  .tour-product-page svg.journey-route-map {
    min-width: 640px;
  }

  .tour-product-page svg.journey-route-map {
    height: 340px;
  }

  .tour-product-page .route-map-legend span {
    flex: 1 1 100%;
    justify-content: flex-start;
    min-width: 0;
    padding: 7px 10px;
    font-size: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .tour-product-page .route-flow-list article,
  .tour-product-page .route-stop-summary li,
  .tour-product-page .route-overnight-list li {
    padding: 12px;
  }

  .tour-product-page .tour-day-list {
    gap: 12px;
  }

  .tour-product-page .tour-day-card summary {
    gap: 9px;
    padding: 16px;
  }

  .tour-product-page .tour-day-number {
    justify-self: start;
  }

  .tour-product-page .tour-day-title {
    font-size: clamp(22px, 7vw, 29px);
  }

  .tour-product-page .tour-day-body {
    gap: 14px;
    padding: 0 16px 16px;
  }

  .tour-product-page .tour-day-meta div {
    padding: 14px;
  }

  .tour-product-page .date-price-panel {
    gap: 20px;
    margin: 0 18px;
    padding: 24px;
  }

  .tour-product-page .date-price-actions .button,
  .tour-product-page .tour-hero-actions .button,
  .tour-product-page .booking-cta-actions .button {
    width: 100%;
  }

  .tour-product-page .review-carousel {
    gap: 12px;
    padding-bottom: 14px;
  }

  .tour-product-page .jadedays-reviewer-programme {
    gap: 16px;
    margin-top: 28px;
    padding: 24px 20px;
  }

  .tour-product-page .key-traveller-offers {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-product-page .jadedays-reviewer-programme .button {
    justify-self: stretch;
    width: 100%;
  }

  .tour-product-page .sample-hotel-track {
    gap: 12px;
    padding-bottom: 14px;
  }

  .tour-product-page .sample-hotel-arrow {
    width: 40px;
    height: 40px;
  }

  .tour-product-page .sample-hotel-card {
    flex-basis: min(84vw, 330px);
  }

  .tour-product-page .sample-hotel-body {
    min-height: 198px;
    padding: 18px;
  }

  .tour-product-page .sample-hotel-card h3 {
    font-size: clamp(23px, 6.6vw, 28px);
  }

  .tour-product-page .review-card {
    flex-basis: min(84vw, 330px);
    min-height: 260px;
  }

  .tour-product-page .faq-grid {
    max-width: 100%;
  }

  .tour-product-page .tour-final-cta {
    gap: 22px;
  }

  .tour-product-page .booking-step-list {
    gap: 10px;
  }

  .tour-product-page .contact-fineprint,
  .tour-product-page .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  html[lang="zh-Hans"] .tour-product-page .tour-detail-hero h1 {
    font-size: clamp(34px, 9.8vw, 46px);
  }

  html[lang="zh-Hans"] .tour-product-page .tour-section-head h2,
  html[lang="zh-Hans"] .tour-product-page .date-price-panel h2,
  html[lang="zh-Hans"] .tour-product-page .review-guide-grid h2,
  html[lang="zh-Hans"] .tour-product-page .review-carousel-section h2,
  html[lang="zh-Hans"] .tour-product-page .tour-final-cta h2 {
    font-size: clamp(30px, 8.6vw, 40px);
  }
}

@media (max-width: 480px) {
  .tour-product-page .tour-detail-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .tour-product-page .tour-detail-hero h1 {
    font-size: clamp(29px, 8.8vw, 34px);
    line-height: 1.04;
  }

  .tour-product-page .tour-section-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .tour-product-page .tour-detail-section {
    padding: 34px 16px;
  }

  .tour-product-page .tour-section-head h2,
  .tour-product-page .date-price-panel h2,
  .tour-product-page .review-guide-grid h2,
  .tour-product-page .review-carousel-section h2,
  .tour-product-page .tour-final-cta h2 {
    font-size: clamp(29px, 9.2vw, 38px);
  }

  .tour-product-page .route-map-enhanced .tour-section-head h2 {
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.08;
  }

  .tour-product-page .tour-gallery-strip {
    gap: 8px;
  }

  .tour-product-page .tour-route-summary,
  .tour-product-page .tour-highlight-card,
  .tour-product-page .hotel-card,
  .tour-product-page .inclusion-card,
  .tour-product-page .review-panel,
  .tour-product-page .guide-panel,
  .tour-product-page .faq-item,
  .tour-product-page .route-map-details > div,
  .tour-product-page .review-card {
    padding: 18px;
  }

  .tour-product-page .route-map-ribbon {
    display: none;
  }

  .tour-product-page .journey-route-map-svg,
  .tour-product-page svg.journey-route-map {
    min-width: 560px;
  }

  .tour-product-page svg.journey-route-map {
    height: 312px;
  }

  .tour-product-page .route-map-legend {
    gap: 8px;
  }

  .tour-product-page .route-map-legend span {
    flex: 1 1 100%;
    justify-content: flex-start;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .tour-product-page .tour-day-card summary,
  .tour-product-page .tour-day-body {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tour-product-page .tour-day-card summary {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .tour-product-page .tour-day-body {
    padding-bottom: 14px;
  }

  .tour-product-page .date-price-panel {
    margin-right: 16px;
    margin-left: 16px;
    padding: 20px;
  }

  .tour-product-page .review-card {
    flex-basis: min(86vw, 310px);
  }

  .tour-product-page .sample-hotel-arrow {
    width: 40px;
    height: 40px;
  }

  .tour-product-page .sample-hotel-arrow-prev {
    left: 8px;
  }

  .tour-product-page .sample-hotel-arrow-next {
    right: 8px;
  }

  .tour-product-page .sample-hotel-card {
    flex-basis: min(86vw, 318px);
  }

  .tour-product-page .sample-hotel-body {
    min-height: 190px;
    padding: 16px;
  }

  .tour-product-page .sample-hotel-meta {
    gap: 10px;
    margin-bottom: 11px;
  }

  html[lang="zh-Hans"] .tour-product-page .tour-detail-hero h1 {
    font-size: clamp(29px, 8.8vw, 34px);
    line-height: 1.04;
  }

html[lang="zh-Hans"] .tour-product-page .tour-section-head h2,
  html[lang="zh-Hans"] .tour-product-page .date-price-panel h2,
  html[lang="zh-Hans"] .tour-product-page .review-guide-grid h2,
  html[lang="zh-Hans"] .tour-product-page .review-carousel-section h2,
  html[lang="zh-Hans"] .tour-product-page .tour-final-cta h2 {
    font-size: clamp(28px, 8.8vw, 36px);
  }
}

.journeys-overview-page {
  overflow-x: hidden;
}

.journeys-overview-page .mobile-menu-toggle,
.journeys-overview-page .journey-comparison-mobile {
  display: none;
}

.journeys-overview-page .journey-shelf-intro {
  margin-bottom: 28px;
}

.journeys-overview-page .journey-shelf-intro .section-heading {
  margin-bottom: 0;
}

.journeys-overview-page .product-card-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.journeys-overview-page .product-card-meta div {
  padding-top: 10px;
  border-top: 1px solid rgba(22, 32, 30, 0.1);
}

.journeys-overview-page .product-card-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journeys-overview-page .product-card-meta dd {
  margin: 4px 0 0;
  color: var(--ink);
  line-height: 1.48;
}

.journeys-overview-page .journey-comparison-section {
  background: var(--paper);
}

.journeys-overview-page .journey-comparison-wrap {
  overflow-x: auto;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(15, 108, 90, 0.07);
}

.journeys-overview-page .journey-comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.journeys-overview-page .journey-comparison-table th,
.journeys-overview-page .journey-comparison-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 108, 90, 0.12);
}

.journeys-overview-page .journey-comparison-table th {
  color: var(--ink);
  background: rgba(229, 242, 239, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.journeys-overview-page .journey-comparison-table th:first-child,
.journeys-overview-page .journey-comparison-table td:first-child {
  width: 170px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journeys-overview-page .journey-comparison-table tr:last-child td {
  border-bottom: 0;
}

.journeys-overview-page .journey-comparison-table strong {
  color: var(--ink);
}

.journeys-overview-page .journey-comparison-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.06);
}

.journeys-overview-page .journey-comparison-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journeys-overview-page .journey-comparison-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 6.5vw, 31px);
  font-weight: 500;
  line-height: 1.08;
}

.journeys-overview-page .journey-comparison-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.journeys-overview-page .journey-comparison-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 108, 90, 0.12);
}

.journeys-overview-page .journey-comparison-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journeys-overview-page .journey-comparison-card dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.52;
}

.journeys-overview-page .journeys-support-section {
  background: #eef6f3;
}

.journeys-overview-page .journeys-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.journeys-overview-page .journeys-support-card {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(15, 108, 90, 0.14);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(22, 32, 30, 0.06);
}

.journeys-overview-page .journeys-support-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.journeys-overview-page .journeys-support-card p,
.journeys-overview-page .journeys-support-card li {
  color: var(--muted);
  line-height: 1.58;
}

.journeys-overview-page .journeys-support-card ol,
.journeys-overview-page .journeys-support-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.journeys-overview-page .journeys-fallback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 30px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 68, 55, 0.96), rgba(11, 84, 91, 0.92)),
    var(--jade-dark);
  border: 1px solid rgba(15, 108, 90, 0.18);
  border-radius: 10px;
}

.journeys-overview-page .journeys-fallback h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.journeys-overview-page .journeys-fallback p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.journeys-overview-page .journeys-fallback .button {
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .journeys-overview-page.is-mobile-nav-open {
    overflow: hidden;
  }

  .journeys-overview-page.is-mobile-nav-open .site-header {
    z-index: 80;
  }

  .journeys-overview-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .journeys-overview-page .mobile-menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: currentColor;
    background: rgba(248, 246, 241, 0.72);
    border: 1px solid currentColor;
    border-radius: 999px;
    cursor: pointer;
  }

  .journeys-overview-page .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 999px;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .journeys-overview-page.is-mobile-nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .journeys-overview-page.is-mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .journeys-overview-page.is-mobile-nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .journeys-overview-page .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 230;
    display: grid;
    align-content: start;
    justify-self: stretch;
    gap: 0;
    width: 100vw;
    min-height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
    padding: 20px clamp(18px, 5vw, 54px) 32px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 54px rgba(19, 30, 28, 0.16);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .journeys-overview-page.is-mobile-nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .journeys-overview-page .nav-item {
    display: grid;
    align-self: auto;
    border-bottom: 1px solid rgba(17, 37, 34, 0.1);
  }

  .journeys-overview-page .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    width: 100%;
    padding: 14px 0;
    font-weight: 800;
    text-align: left;
  }

  .journeys-overview-page .nav-trigger::after {
    content: "+";
    color: var(--jade);
    font-size: 20px;
    line-height: 1;
  }

  .journeys-overview-page .nav-item.is-hovered .nav-trigger::after,
  .journeys-overview-page .nav-item:focus-within .nav-trigger::after {
    content: "-";
  }

  .journeys-overview-page .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
    visibility: hidden;
  }

  .journeys-overview-page .nav-menu::before {
    display: none;
  }

  .journeys-overview-page .nav-item.is-hovered .nav-menu,
  .journeys-overview-page .nav-item:focus-within .nav-menu {
    max-height: 340px;
    padding: 0 0 16px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .journeys-overview-page .nav-menu a {
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(15, 108, 90, 0.06);
    border: 1px solid rgba(15, 108, 90, 0.14);
    border-radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.3;
  }

  .journeys-overview-page .nav-menu a::after {
    display: none;
  }

  .journeys-overview-page .journeys-support-grid,
  .journeys-overview-page .journeys-fallback {
    grid-template-columns: 1fr;
  }

  .journeys-overview-page .journeys-fallback .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .journeys-overview-page .site-header {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .journeys-overview-page .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .journeys-overview-page .main-nav {
    min-height: calc(100vh - 64px);
    max-height: calc(100vh - 64px);
    padding: 14px 18px 28px;
  }

  .journeys-overview-page .subpage-hero {
    gap: 24px;
    padding: 92px 18px 42px;
  }

  .journeys-overview-page .subpage-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.25;
    object-fit: cover;
  }

  .journeys-overview-page .subpage-hero h1 {
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 1;
  }

  .journeys-overview-page .subpage-hero p:not(.section-kicker),
  .journeys-overview-page .section-heading p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.62;
  }

  .journeys-overview-page .subpage-section {
    padding: 38px 18px;
  }

  .journeys-overview-page .section-heading {
    margin-bottom: 20px;
  }

  .journeys-overview-page .section-heading h2 {
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.07;
  }

  .journeys-overview-page .journey-shelf-intro {
    margin-bottom: 18px;
  }

  .journeys-overview-page .journeys-support-card,
  .journeys-overview-page .journeys-fallback {
    padding: 20px;
  }

  .journeys-overview-page .product-overview-grid,
  .journeys-overview-page .product-overview-grid-detailed {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .journeys-overview-page .product-overview-grid-detailed .product-overview-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .journeys-overview-page .product-overview-grid-detailed .product-overview-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.48;
  }

  .journeys-overview-page .product-overview-body {
    padding: 20px;
  }

  .journeys-overview-page .product-overview-card h3 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .journeys-overview-page .product-card-highlights {
    gap: 7px;
  }

  .journeys-overview-page .journey-comparison-wrap {
    display: none;
  }

  .journeys-overview-page .journey-comparison-mobile {
    display: grid;
    gap: 14px;
  }

  .journeys-overview-page .journeys-support-grid {
    gap: 14px;
    margin-top: 18px;
  }

  .journeys-overview-page .journeys-support-card h3,
  .journeys-overview-page .journeys-fallback h3 {
    font-size: clamp(25px, 7.2vw, 33px);
  }

  .journeys-overview-page .journeys-fallback .button {
    width: 100%;
  }

  .journeys-overview-page .contact-fineprint,
  .journeys-overview-page .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  html[lang="zh-Hans"] .journeys-overview-page .subpage-hero h1 {
    font-size: clamp(34px, 9.6vw, 45px);
  }

  html[lang="zh-Hans"] .journeys-overview-page .section-heading h2 {
    font-size: clamp(30px, 8.6vw, 39px);
  }
}

@media (max-width: 480px) {
  .journeys-overview-page .subpage-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .journeys-overview-page .subpage-hero h1 {
    font-size: clamp(29px, 8.8vw, 34px);
    line-height: 1.04;
  }

  .journeys-overview-page .subpage-section {
    padding: 34px 16px;
  }

  .journeys-overview-page .section-heading h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .journeys-overview-page .journeys-support-card,
  .journeys-overview-page .journeys-fallback,
  .journeys-overview-page .journey-comparison-card {
    padding: 18px;
  }

  .journeys-overview-page .product-overview-body {
    padding: 18px;
  }

  .journeys-overview-page .product-card-highlights em {
    font-size: 12px;
  }

  html[lang="zh-Hans"] .journeys-overview-page .subpage-hero h1 {
    font-size: clamp(29px, 8.8vw, 34px);
    line-height: 1.04;
  }

  html[lang="zh-Hans"] .journeys-overview-page .section-heading h2 {
    font-size: clamp(28px, 8.6vw, 36px);
  }
}

.contact-modal-open {
  overflow: hidden;
}

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

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 32, 27, 0.58);
  backdrop-filter: blur(6px);
}

.contact-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(390px, 1fr);
  gap: clamp(30px, 4.5vw, 56px);
  align-items: start;
  width: min(100%, 1000px);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(9, 45, 39, 0.26);
  padding: clamp(34px, 4.8vw, 54px);
}

.contact-modal-dialog:focus {
  outline: none;
}

.contact-modal-intro {
  padding-top: 2px;
}

.contact-modal-dialog h2 {
  max-width: 460px;
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  color: var(--ink);
}

.contact-modal-dialog p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 84, 72, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-form {
  display: grid;
  gap: 14px;
}

.contact-modal-form label,
.contact-modal-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-modal-form span,
.contact-modal-form legend {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-modal-form strong {
  color: #b35c4f;
}

.contact-modal-form em {
  margin-left: 6px;
  color: rgba(78, 98, 93, 0.72);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-modal-form input[type="text"],
.contact-modal-form input[type="email"],
.contact-modal-form input[type="tel"],
.contact-modal-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 84, 72, 0.18);
  border-radius: 10px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-modal-form textarea {
  resize: vertical;
  min-height: 124px;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  outline: 2px solid rgba(0, 121, 105, 0.22);
  border-color: rgba(0, 121, 105, 0.48);
}

.contact-modal-form fieldset {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px 14px;
}

.contact-modal-form fieldset legend {
  grid-column: 1 / -1;
}

.contact-modal-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(15, 84, 72, 0.15);
  border-radius: 999px;
  background: rgba(244, 248, 245, 0.78);
  padding: 0 14px;
  color: var(--ink);
  font-weight: 700;
}

.contact-modal-form .button {
  width: fit-content;
  margin-top: 2px;
}

.contact-modal-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-modal-note[data-state="success"] {
  color: var(--jade);
  font-weight: 700;
}

.contact-modal-note[data-state="error"] {
  color: #9a3f35;
  font-weight: 700;
}

.contact-modal-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.footer-message-link,
.contact-inline-trigger {
  width: fit-content;
  border: 1px solid rgba(15, 84, 72, 0.2);
  border-radius: 999px;
  background: rgba(244, 248, 245, 0.92);
  color: var(--jade-dark);
  font: inherit;
  font-weight: 800;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
}

.footer-message-link:hover,
.contact-inline-trigger:hover {
  border-color: rgba(15, 84, 72, 0.38);
  background: #fffefa;
}

.tour-contact-cta {
  width: min(1250px, calc(100% - 44px));
  margin: clamp(26px, 3.8vw, 42px) auto 0;
  padding: clamp(18px, 2.6vw, 26px) 0 clamp(24px, 3.2vw, 36px);
  border-top: 1px solid rgba(23, 33, 31, 0.12);
}

.tour-contact-cta h2 {
  max-width: 620px;
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
}

.tour-contact-cta p {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.62;
}

.generated-actions > [data-contact-modal-trigger] {
  border-color: rgba(15, 84, 72, 0.28);
  background: rgba(244, 248, 245, 0.92);
  color: var(--jade-dark);
  box-shadow: none;
}

.generated-actions > [data-contact-modal-trigger]:hover,
.generated-actions > [data-contact-modal-trigger]:focus-visible {
  border-color: rgba(15, 84, 72, 0.46);
  background: #fffefa;
  color: var(--jade);
}

@media (max-width: 720px) {
  .payment-success-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .payment-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-success-actions .button {
    width: 100%;
    justify-content: center;
  }

  .contact-modal {
    align-items: end;
    padding: 0;
  }

  .contact-modal-dialog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-height: calc(100vh - 12px);
    border-radius: 18px 18px 0 0;
    padding: 20px 20px 18px;
  }

  .contact-modal-dialog h2 {
    max-width: 330px;
    margin-bottom: 8px;
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .contact-modal-dialog p:not(.section-kicker) {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .contact-modal-form {
    gap: 12px;
  }

  .contact-modal-form label,
  .contact-modal-form fieldset {
    gap: 6px;
  }

  .contact-modal-form input[type="text"],
  .contact-modal-form input[type="email"],
  .contact-modal-form input[type="tel"],
  .contact-modal-form textarea {
    padding: 12px 14px;
  }

  .contact-modal-form textarea {
    min-height: 96px;
  }

  .contact-modal-form fieldset {
    grid-template-columns: 1fr;
  }

  .contact-modal-form .button,
  .footer-message-link,
  .contact-inline-trigger {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .tour-contact-cta {
    width: min(100% - 32px, 1250px);
    margin-top: 20px;
    padding-bottom: 28px;
  }

  .tour-contact-cta h2 {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .tour-contact-cta p {
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .home-page .hero-content,
  .home-page .hero-content > *,
  .subpage-hero,
  .subpage-hero > *,
  .tour-product-page .tour-detail-hero,
  .tour-product-page .tour-detail-hero > *,
  .journeys-overview-page .subpage-hero,
  .journeys-overview-page .subpage-hero > *,
  .checkout-topline,
  .checkout-topline > *,
  .confirmation-panel,
  .confirmation-panel > *,
  .ai-hero-copy,
  .ai-hero-copy > * {
    min-width: 0;
  }

  .subpage-hero > div,
  .tour-product-page .tour-detail-hero > div,
  .journeys-overview-page .subpage-hero > div,
  .checkout-topline > div,
  .confirmation-panel,
  .ai-hero-copy {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .home-page .hero h1,
  .home-page .hero h2,
  .subpage-hero h1,
  .tour-product-page .tour-detail-hero h1,
  .journeys-overview-page .subpage-hero h1,
  .checkout-topline > div > h1,
    .confirmation-panel > h1,
    .ai-hero-copy h1 {
    width: min(100%, 320px);
    max-width: min(100%, 320px);
    font-size: clamp(28px, 7.6vw, 31px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .subpage-hero p:not(.section-kicker),
  .home-page .hero-copy,
  .tour-product-page .tour-detail-hero p:not(.section-kicker),
  .journeys-overview-page .subpage-hero p:not(.section-kicker),
  .checkout-topline > div > h1 + p,
  .confirmation-panel > h1 + p,
  .ai-hero-copy h1 + p {
    width: min(100%, 320px);
    max-width: min(100%, 320px);
    font-size: 15px;
    overflow-wrap: break-word;
  }

  html[lang="zh-Hans"] .home-page .hero h1,
  html[lang="zh-Hans"] .home-page .hero h2,
  html[lang="zh-Hans"] .subpage-hero h1,
  html[lang="zh-Hans"] .tour-product-page .tour-detail-hero h1,
  html[lang="zh-Hans"] .journeys-overview-page .subpage-hero h1 {
    font-size: clamp(28px, 7.6vw, 31px);
    line-height: 1.04;
  }
}

@media (max-width: 900px) {
  .departure-calendar-shell {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 18px;
  }

  .departure-calendar-summary {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  html[lang="en"] .tour-product-page .date-price-panel:has([data-departure-calendar]) {
    margin: 0;
    padding: 38px 18px;
    background: var(--paper);
  }

  .departure-calendar-shell {
    max-width: 100%;
    gap: 16px;
  }

  .departure-calendar-toolbar {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    margin-top: 16px;
  }

  .departure-calendar-nav {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .departure-calendar-weekdays,
  .departure-calendar-grid {
    gap: 3px;
  }

  .departure-calendar-day,
  .departure-calendar-day.is-empty {
    min-height: 38px;
    border-radius: 7px;
    font-size: 13px;
  }

  .departure-calendar-feedback {
    font-size: 15px;
  }

  .departure-calendar-actions .button {
    width: 100%;
  }
}
