* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.75 "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans SC",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
summary {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  opacity: 0.5;
  cursor: default;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.3;
}
button,
a {
  touch-action: manipulation;
}
a,
button {
  transition:
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 5px;
}
button:focus-visible {
  border-radius: 6px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--surface);
  padding: 10px;
}
.skip:focus {
  top: 12px;
}
.muted {
  color: var(--muted);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1360px, calc(100% - 80px));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 46px;
  color: var(--primary);
  border: 1px solid var(--control);
  border-radius: 15px 15px 4px 4px;
  font-size: 23px;
  font-family: serif;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
}
.desktop-nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}
.desktop-nav a.active {
  border-color: var(--primary);
  color: var(--primary);
}
.tools {
  position: relative;
  font-size: 14px;
}
.tools summary {
  list-style: none;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tools summary::-webkit-details-marker {
  display: none;
}
.tools-menu {
  position: absolute;
  right: 0;
  top: 52px;
  width: 200px;
  background: var(--surface);
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--map-shadow);
}
.tools-menu > * {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
}
.tools-menu > *:hover {
  background: var(--soft);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 72px 80px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
}
.small-line {
  height: 1px;
  width: 32px;
  background: var(--primary);
}
.trip-kicker {
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0 24px;
  letter-spacing: 2px;
}
.hero h1 {
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 650;
  letter-spacing: -2px;
  line-height: 1.22;
}
.hero h1 span {
  color: var(--primary);
}
.hero-intro {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
}
.trip-date {
  font-size: 12px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-top: 24px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.trip-date i {
  width: 1px;
  height: 12px;
  background: var(--control);
  margin-inline: 4px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  min-height: 48px;
  white-space: nowrap;
}
.primary {
  background: var(--primary);
  color: var(--on-primary);
}
.primary:hover {
  background: var(--primary-hover);
}
.secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}
.secondary:hover {
  border-color: var(--control);
}
.text-link {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: var(--primary);
}
.text-link:hover {
  color: var(--text);
}
.hero-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 44px;
  letter-spacing: 2px;
}
.hero-footnote span {
  font-size: 10px;
  letter-spacing: 2px;
  border-right: 1px solid var(--border);
  padding-right: 20px;
  margin-right: 20px;
}
.hero-art {
  position: relative;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: -45px -20px;
  background: radial-gradient(ellipse, var(--soft), transparent 70%);
  z-index: -1;
}
.map-mat {
  padding: 14px 14px 0;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--map-shadow);
}
.cover-map {
  padding: 0;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
}
.cover-map img {
  width: 100%;
  height: auto;
}
.map-mat figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  font-size: 11px;
  color: var(--muted);
}
.inline-button {
  font-size: 13px;
  color: var(--primary);
  min-height: 44px;
  padding: 4px 0;
}
.art-caption {
  position: absolute;
  right: -28px;
  top: 30%;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted);
}
.route-band {
  border-block: 1px solid var(--border);
  padding-block: 28px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.route-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--primary);
  min-width: 180px;
}
.route-label small {
  display: block;
  letter-spacing: 0;
  font-size: 12px;
  margin-top: 6px;
  color: var(--muted);
}
.route-stops {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 16px;
}
.route-stop {
  position: relative;
  text-align: left;
  min-height: 44px;
  padding: 0 10px;
}
.route-stop b {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.route-stop small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.route-stop:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -30px;
  top: 10px;
  color: var(--control);
}
.section {
  padding-block: 104px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}
.section-heading h2 {
  font-size: 40px;
  letter-spacing: -1px;
  font-weight: 600;
  margin-top: 16px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 14px;
  font-size: 15px;
}
.heading-note {
  max-width: 380px;
}
.tiny-label {
  color: var(--muted);
  font-size: 12px;
}
.journey-controls {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filters button {
  font-size: 14px;
  padding: 10px 19px;
  border-radius: 9px;
  min-height: 44px;
  color: var(--muted);
}
.filters button[aria-pressed="true"] {
  background: var(--soft);
  color: var(--primary);
  font-weight: 600;
}
.view-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
  flex-shrink: 0;
}
.view-switch button {
  font-size: 12px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 7px;
  color: var(--muted);
}
.view-switch button[aria-pressed="true"] {
  background: var(--primary);
  color: var(--on-primary);
}
.search-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 28px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--control);
  border-radius: 10px;
  padding: 0 14px;
  max-width: 500px;
  flex: 1;
}
.search-box > span:first-child {
  font-size: 24px;
  color: var(--muted);
}
.search-box input {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 100%;
  min-width: 0;
  font-size: 14px;
  height: 46px;
}
.search-box input::placeholder {
  color: var(--muted);
}
.search-box input:focus {
  outline: none;
}
.search-box:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.search-box button {
  min-width: 32px;
  min-height: 44px;
}
.search-row > span {
  font-size: 12px;
}
.journey-layout {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
.day-tabs {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 4px;
}
.day-tab {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 13px 14px;
  border-left: 2px solid transparent;
  border-radius: 0 10px 10px 0;
  width: 100%;
  min-height: 64px;
}
.day-tab.active {
  background: var(--soft);
  border-color: var(--primary);
}
.day-number {
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.day-tab b {
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.day-tab small {
  font-size: 11px;
  color: var(--muted);
  display: block;
}
.day-content {
  min-width: 0;
}
.chapter {
  background: var(--surface);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 18px;
}
.chapter-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.chapter-date {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 1px;
}
.chapter h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
}
.chapter-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 680px;
}
.chapter-route {
  margin-block: 22px 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.chapter-route b {
  display: block;
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.day-warning {
  font-size: 13px;
  color: var(--warning);
  background: var(--warning-bg);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 26px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.time-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 26px 22px;
  border-left: 1px solid var(--border);
}
.time-item:last-child {
  padding-bottom: 0;
  border-color: transparent;
}
.time-item:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: -4px;
  top: 9px;
}
.time-item time {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.time-item strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.time-item p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
.day-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  gap: 24px;
  padding-top: 24px;
}
.day-facts dt {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}
.day-facts dd {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.chapter details {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 20px;
  font-size: 14px;
}
.chapter summary {
  cursor: pointer;
  min-height: 44px;
  padding-block: 8px;
}
.chapter details p,
.chapter details ul {
  color: var(--muted);
  margin: 10px 0;
  font-size: 13px;
}
.chapter-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  gap: 12px;
}
.chapter-nav button {
  color: var(--primary);
  font-size: 13px;
  min-height: 44px;
}
.overview-row {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.overview-row:first-of-type {
  padding-top: 8px;
}
.overview-row summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.overview-row summary::-webkit-details-marker {
  display: none;
}
.overview-row summary:after {
  content: "＋";
  margin-left: auto;
  color: var(--primary);
}
.overview-row[open] summary:after {
  content: "−";
}
.overview-row summary small {
  color: var(--primary);
  font-size: 12px;
  min-width: 70px;
}
.overview-row summary strong {
  font-size: 18px;
  font-weight: 500;
}
.overview-row .chapter {
  margin-top: 20px;
}
.overview-tools {
  display: flex;
  justify-content: end;
  margin-bottom: 12px;
}
.empty {
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--control);
  border-radius: 16px;
}
.empty p {
  color: var(--muted);
  margin: 12px 0;
}
.maps-section {
  background: var(--soft);
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.map-card {
  min-width: 0;
}
.map-card .map-thumb {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.map-thumb img {
  width: 100%;
  height: auto;
  max-height: 480px;
  aspect-ratio: 1055/1491;
  object-fit: contain;
  border-radius: 6px;
}
.map-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
.map-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.map-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 12px;
  color: var(--primary);
}
.map-links a,
.map-links button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 12px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
}
.group-title {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.group-title span {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: var(--muted);
  font-weight: 400;
}
.transport-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--border);
}
.transport-row .booking-type {
  color: var(--primary);
  font-size: 12px;
}
.transport-row h4,
.stay-row h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
}
.transport-row p,
.stay-row p {
  font-size: 13px;
  color: var(--muted);
}
.booking-note {
  font-size: 12px !important;
  margin-top: 8px;
}
.stay-row {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
}
.stay-row .booking-type {
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.food-section {
  background: var(--soft);
}
.food-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.food-layout .filters {
  margin-bottom: 24px;
}
.food-layout .filters button[aria-pressed="true"] {
  background: var(--surface);
}
.food-item {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  font-size: 15px;
}
.food-item > span {
  font-size: 10px;
  color: var(--primary);
  padding-top: 5px;
}
.photo-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.photo-item h4 {
  font-size: 14px;
  margin: 0 0 8px;
  font-weight: 500;
}
.photo-item p {
  font-size: 12px;
  color: var(--muted);
}
.photo-item .shops {
  margin-bottom: 8px;
  color: var(--text);
}
.prep-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.reserve-row {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.reserve-row strong {
  font-weight: 500;
  font-size: 14px;
}
.reserve-row p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.packing-panel {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.packing-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.packing-heading h3 {
  font-size: 20px;
  font-weight: 500;
}
.packing-heading span {
  font-size: 12px;
  color: var(--primary);
}
progress {
  width: 100%;
  height: 4px;
  appearance: none;
  border: 0;
  background: var(--border);
  margin: 22px 0;
}
progress::-webkit-progress-bar {
  background: var(--border);
  border-radius: 8px;
}
progress::-webkit-progress-value {
  background: var(--primary);
  border-radius: 8px;
}
progress::-moz-progress-bar {
  background: var(--primary);
}
.pack {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 13px;
}
.pack input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--primary);
}
.pack.done span {
  text-decoration: line-through;
  color: var(--muted);
}
.packing-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
}
.risk-summary {
  margin-top: 48px;
  border-block: 1px solid var(--border);
  padding-block: 18px;
  scroll-margin-top: 110px;
}
.risk-summary > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
}
.risk-summary > summary::-webkit-details-marker {
  display: none;
}
#riskGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-block: 20px;
}
.risk-item h4 {
  font-size: 14px;
  margin: 0 0 8px;
}
.risk-item p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.closing {
  padding: 50px 0 100px;
  text-align: center;
}
.closing .eyebrow {
  justify-content: center;
}
.closing > p:not(.eyebrow) {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 500;
  margin: 24px 0;
}
.footer {
  border-top: 1px solid var(--border);
  padding-block: 30px 50px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  color: var(--muted);
}
.footer strong {
  font-size: 14px;
  color: var(--text);
  display: block;
  font-weight: 500;
}
.footer span {
  font-size: 9px;
  letter-spacing: 1px;
}
.footer p {
  margin-left: auto;
}
.footer > a {
  color: var(--primary);
}
.mobile-nav {
  display: none;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--map-shadow);
  font-size: 14px;
  max-width: 90vw;
  width: max-content;
  display: flex;
  gap: 24px;
  align-items: center;
}
.toast button {
  color: inherit;
  text-decoration: underline;
  min-height: 44px;
}
.toast span {
  white-space: normal;
}
dialog {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  width: min(1100px, 94vw);
  height: 92dvh;
  max-height: 92dvh;
  overflow: hidden;
}
dialog::backdrop {
  background: rgba(10, 25, 35, 0.8);
}
.viewer-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  height: 72px;
}
.viewer-toolbar h2 {
  font-size: 16px;
  font-weight: 500;
}
.viewer-toolbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.viewer-toolbar button {
  min-height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: var(--soft);
  font-size: 14px;
}
.viewer-footer {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--muted);
  gap: 12px;
}
.viewer-footer a,
.viewer-footer button {
  color: var(--primary);
  min-height: 36px;
  display: flex;
  align-items: center;
}
#mapViewport {
  height: calc(100% - 124px);
  position: relative;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  background: var(--bg);
}
#mapViewport:active {
  cursor: grabbing;
}
#viewerImage {
  position: absolute;
  max-width: none;
  transform-origin: center;
  user-select: none;
  pointer-events: none;
}
#mapState {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  font-size: 14px;
}
body:has(dialog[open]) .mobile-nav {
  display: none;
}
#printDocument {
  display: none;
}
@media (min-width: 1700px) {
  .hero {
    padding-block: 96px;
  }
  .hero-art {
    max-width: 460px;
  }
}
@media (max-width: 1199px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    width: calc(100% - 64px);
    gap: 24px;
  }
  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }
  .hero {
    gap: 48px;
    padding-block: 60px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-art {
    max-width: 370px;
  }
  .hero-actions {
    gap: 20px;
  }
  .route-label {
    min-width: 140px;
  }
  .route-band {
    gap: 24px;
  }
  .route-stop:not(:last-child):after {
    right: -18px;
  }
  .map-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .map-card .map-thumb {
    padding: 16px;
  }
  .map-thumb img {
    max-height: 430px;
  }
  .booking-layout,
  .prep-layout {
    gap: 40px;
  }
  .food-layout {
    gap: 48px;
  }
  .journey-layout {
    grid-template-columns: 185px minmax(0, 1fr);
    gap: 24px;
  }
  .chapter {
    padding: 28px;
  }
  .hero-footnote {
    margin-top: 30px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 14px;
  }
  .desktop-nav a:nth-last-child(-n + 2) {
    display: none;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero {
    gap: 32px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 14px;
  }
  .hero-intro br {
    display: none;
  }
  .hero-footnote {
    display: none;
  }
  .route-label {
    display: none;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section {
    padding-block: 80px;
  }
  .journey-layout {
    grid-template-columns: 1fr;
  }
  .day-tabs {
    position: sticky;
    top: 88px;
    z-index: 10;
    display: flex;
    overflow-x: auto;
    gap: 6px;
    background: var(--bg);
    padding-block: 10px;
  }
  .day-tab {
    flex: 0 0 118px;
    min-height: 66px;
    border-left: 0;
    border-bottom: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    padding: 8px 10px;
    gap: 8px;
  }
  .day-tab.active {
    border-bottom-color: var(--primary);
  }
  .day-tab small {
    white-space: nowrap;
  }
  .booking-layout,
  .prep-layout,
  .food-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer p {
    margin-left: 0;
  }
  .chapter h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 92px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 40px);
    height: 72px;
    justify-content: space-between;
  }
  .brand {
    font-size: 14px;
    gap: 10px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .brand-mark {
    width: 34px;
    height: 39px;
    font-size: 21px;
  }
  .desktop-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 38px 42px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
  }
  .trip-kicker {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 14px 0 18px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -1px;
  }
  .hero-intro {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .trip-date {
    font-size: 10px;
    gap: 6px;
    margin-top: 18px;
  }
  .trip-date i {
    margin-inline: 3px;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 22px;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    padding: 12px 16px;
    font-size: 13px;
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .hero-art {
    max-width: 260px;
  }
  .map-mat {
    padding: 9px 9px 0;
    border-radius: 16px;
  }
  .map-mat figcaption {
    font-size: 9px;
    min-height: 44px;
  }
  .map-mat .inline-button {
    font-size: 10px;
  }
  .art-caption {
    right: -22px;
    font-size: 8px;
    letter-spacing: 2px;
  }
  .route-band {
    padding-block: 20px;
  }
  .route-stops {
    gap: 6px;
  }
  .route-stop {
    padding: 0;
    min-width: 0;
  }
  .route-stop b {
    font-size: 13px;
  }
  .route-stop small {
    font-size: 9px;
  }
  .route-stop:not(:last-child):after {
    display: none;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 30px;
    margin-top: 12px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 12px;
  }
  .section-heading > .btn {
    margin-top: 18px;
  }
  .section-heading > .tiny-label {
    display: block;
    margin-top: 16px;
  }
  .journey-controls {
    display: block;
  }
  .filters {
    gap: 2px;
  }
  .filters button {
    padding: 9px 13px;
    font-size: 13px;
  }
  .view-switch {
    margin-top: 16px;
    width: max-content;
  }
  .view-switch button {
    min-height: 40px;
  }
  .search-row {
    gap: 10px;
    margin-block: 16px;
  }
  .search-box {
    padding: 0 10px;
    gap: 6px;
  }
  .search-box input {
    font-size: 13px;
  }
  .search-row > span {
    font-size: 10px;
    white-space: nowrap;
  }
  .journey-layout {
    gap: 16px;
  }
  .day-tabs {
    top: 72px;
    margin-inline: -20px;
    padding-inline: 20px;
    scrollbar-width: thin;
  }
  .day-tab {
    flex-basis: 115px;
  }
  .chapter {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .chapter h3 {
    font-size: 24px;
    line-height: 1.4;
  }
  .chapter-topline {
    gap: 8px;
    margin-bottom: 12px;
  }
  .chapter-date {
    font-size: 10px;
    letter-spacing: 0;
  }
  .chapter-topline .inline-button {
    font-size: 11px;
  }
  .chapter-intro {
    font-size: 14px;
  }
  .chapter-route {
    font-size: 12px;
    margin-top: 18px;
  }
  .day-warning {
    font-size: 12px;
    padding: 12px;
  }
  .time-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 17px;
    padding-bottom: 24px;
  }
  .time-item time {
    font-size: 12px;
  }
  .time-item strong {
    font-size: 15px;
  }
  .time-item p {
    font-size: 13px;
  }
  .day-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .chapter-nav button {
    font-size: 12px;
  }
  .overview-row summary {
    gap: 12px;
  }
  .overview-row summary strong {
    font-size: 16px;
  }
  .overview-row summary small {
    min-width: 58px;
    font-size: 11px;
  }
  .map-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }
  .map-card {
    max-width: 430px;
    width: 100%;
    margin: auto;
  }
  .map-thumb img {
    max-height: 400px;
  }
  .map-card h3 {
    margin-top: 16px;
  }
  .map-card p {
    font-size: 13px;
  }
  .heading-note br {
    display: none;
  }
  .group-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .group-title span {
    font-size: 8px;
  }
  .transport-row {
    gap: 12px;
    grid-template-columns: 40px 1fr;
  }
  .packing-panel {
    padding: 22px 18px;
  }
  .packing-actions {
    font-size: 10px;
  }
  #riskGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .closing {
    padding-block: 24px 60px;
  }
  .closing > p:not(.eyebrow) {
    font-size: 28px;
  }
  .footer {
    gap: 14px;
    padding-bottom: 110px;
    display: block;
  }
  .footer p {
    margin-top: 12px;
    font-size: 10px;
  }
  .footer > a {
    display: inline-block;
    margin-top: 12px;
  }
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: var(--header);
    border-top: 1px solid var(--border);
    z-index: 25;
    backdrop-filter: blur(15px);
  }
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--muted);
    min-height: 44px;
    gap: 0;
  }
  .mobile-nav a span {
    font-size: 18px;
    line-height: 1.4;
  }
  .mobile-nav a.active {
    color: var(--primary);
    background: var(--soft);
    border-radius: 10px;
  }
  .toast {
    bottom: 90px;
    font-size: 12px;
    padding: 10px 16px;
  }
  .viewer-toolbar {
    height: 110px;
    display: block;
    padding: 10px 14px;
  }
  .viewer-toolbar h2 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .viewer-toolbar > div {
    justify-content: space-between;
  }
  .viewer-toolbar button {
    font-size: 12px;
  }
  #mapViewport {
    height: calc(100% - 162px);
  }
  .viewer-footer {
    padding: 8px 12px;
    font-size: 10px;
  }
  dialog {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
  }
  .risk-summary {
    scroll-margin-top: 90px;
  }
}
@media (max-width: 359px) {
  .wrap,
  .header-inner {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .btn {
    font-size: 12px;
    padding-inline: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-art {
    max-width: 230px;
  }
  .trip-date {
    letter-spacing: 0;
  }
  .day-tabs {
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .chapter {
    padding: 18px 14px;
  }
  .filters button {
    padding-inline: 10px;
  }
  .route-stop small {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  @page {
    size: A4;
    margin: 14mm;
  }
  body {
    background: white !important;
    color: #172d3b !important;
    font-size: 11pt;
  }
  body > * {
    display: none !important;
  }
  #printDocument {
    display: block !important;
  }
  #printDocument h1 {
    font-size: 26pt;
    margin-bottom: 8mm;
  }
  #printDocument h2 {
    font-size: 19pt;
    margin: 5mm 0;
  }
  #printDocument h3 {
    font-size: 14pt;
    margin: 4mm 0;
  }
  #printDocument p {
    margin-bottom: 3mm;
  }
  #printDocument .print-day {
    break-before: page;
  }
  #printDocument .print-map {
    break-before: page;
  }
  #printDocument .print-map img {
    width: 100%;
    height: 235mm;
    object-fit: contain;
  }
  #printDocument li {
    break-inside: avoid;
    margin-bottom: 3mm;
  }
  #printDocument .print-facts {
    font-size: 10pt;
  }
  #printDocument details {
    display: block;
  }
  a {
    text-decoration: none;
  }
}

@media (max-width: 900px) {
  #dayContent {
    scroll-margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .hero-art:before {
    inset: -30px -20px;
  }
}
.map-card {
  max-width: 440px;
  width: 100%;
  margin-inline: auto;
}
.map-thumb img {
  max-height: none;
  aspect-ratio: 1055/1491;
  width: 100%;
  height: auto;
}
@media print {
  #printDocument .print-extra {
    break-before: page;
  }
}

/* 2026 visual pass: original parchment warmth fading into jade and mist */
:root {
  --bg: #f7f3e8;
  --surface: #fffdf7;
  --soft: #e8f0eb;
  --text: #213330;
  --muted: #647672;
  --primary: #1f6259;
  --primary-hover: #174d46;
  --accent: #b95f42;
  --border: #d8ded6;
  --control: #819b93;
  --warning: #9b4e2f;
  --warning-bg: #fff0e9;
  --shadow: 0 16px 44px rgba(41, 58, 50, 0.08);
  --map-shadow: 0 28px 72px rgba(41, 58, 50, 0.14);
  --header: rgba(250, 248, 240, 0.9);
}
body {
  background-color: var(--bg);
  background-image: linear-gradient(
    132deg,
    #f8edd2 0%,
    #f7f2e4 30%,
    #f1f3e9 52%,
    #eaf2ee 76%,
    #e9f1f4 100%
  );
  background-attachment: fixed;
}
body.dark {
  --bg: #14211f;
  --surface: #1c2d2a;
  --soft: #263b36;
  --text: #edf2ec;
  --muted: #afc1ba;
  --primary: #8ec9bb;
  --primary-hover: #a9dbcf;
  --on-primary: #17332d;
  --accent: #e5a183;
  --border: #3c514a;
  --control: #839f96;
  --warning: #f0b594;
  --warning-bg: #3d2a23;
  --header: rgba(20, 33, 31, 0.92);
  background-image: linear-gradient(132deg, #2d281d 0%, #1f2b27 48%, #162c32 100%);
}
.site-header {
  border-bottom: 1px solid rgba(66, 88, 78, 0.1);
  box-shadow: 0 8px 28px rgba(62, 71, 58, 0.04);
}
.header-inner { height: 78px; }
.brand-mark {
  background: linear-gradient(145deg, #a76837 0%, #c79b4a 42%, #1f6259 100%);
  color: #fffdf7;
  border: 0;
  border-radius: 13px 13px 5px 13px;
  transform: rotate(-5deg);
  box-shadow: 4px 5px 0 rgba(54, 91, 80, 0.14);
}
.brand > span:last-child { letter-spacing: 0.04em; }
.desktop-nav { gap: 24px; }
.desktop-nav a.active { border-color: var(--accent); color: var(--accent); }
.hero { min-height: 650px; padding-block: 82px 92px; gap: 54px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { font-weight: 720; letter-spacing: -0.06em; font-size: clamp(56px, 6.2vw, 92px); }
.hero h1 span {
  color: var(--accent);
  background: linear-gradient(100deg, #b55e3d 0%, #c78e3f 42%, #277268 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-intro { color: #526b66; max-width: 36em; }
.trip-kicker { color: var(--primary); font-weight: 650; }
.primary { border-radius: 8px; box-shadow: 0 10px 24px rgba(31, 98, 89, 0.18); }
.secondary { border-radius: 8px; }
.hero-art { filter: drop-shadow(0 25px 30px rgba(31, 98, 89, 0.1)); }
.route-band {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 28px;
  background: linear-gradient(
    115deg,
    rgba(255, 250, 234, 0.96) 0%,
    rgba(247, 238, 211, 0.96) 30%,
    rgba(231, 241, 233, 0.96) 68%,
    rgba(229, 239, 244, 0.96) 100%
  );
  color: var(--text);
  border: 1px solid rgba(86, 112, 100, 0.16);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(67, 79, 65, 0.08);
}
.route-label { min-width: 0; color: var(--primary); }
.route-label small { color: var(--muted); }
.route-stops {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.route-stops::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, #c89b45, #2b7569 55%, #6f96a8);
}
.route-stop {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 62px;
  padding: 24px 8px 4px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 7px;
}
.route-stop::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: calc(50% - 6px);
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: var(--surface);
}
.route-stop:not(:last-child)::after { display: none; }
.route-stop:hover { background: rgba(255, 255, 255, 0.42); }
.route-stop b { color: var(--text); font-weight: 650; }
.route-stop small { color: var(--muted); }
.section { padding-block: 100px; }
.section-heading h2 { font-size: clamp(34px, 4vw, 54px); letter-spacing: -0.05em; }
.section-heading h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, #c4923e, var(--accent), var(--primary));
}
.filters button, .view-switch button { border-radius: 8px; }
.chapter, .booking-card, .stay-card, .food-card, .prep-card, .packing-panel {
  border: 1px solid rgba(31, 98, 89, 0.12);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.chapter { background: rgba(255, 253, 247, 0.86); }
.chapter:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(41, 58, 50, 0.12); }
.day-tabs button { border-radius: 8px; }
.day-tabs button[aria-selected="true"] { background: var(--primary); box-shadow: 4px 4px 0 rgba(196, 146, 62, 0.18); }
.maps-section, .food-section {
  background: linear-gradient(105deg, rgba(247, 238, 213, 0.54), rgba(229, 240, 235, 0.72));
}
.map-card { border-radius: 10px; overflow: hidden; box-shadow: var(--map-shadow); }
.map-card h3 { letter-spacing: -0.02em; }
.group-title { color: var(--primary); }
.booking-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid rgba(31, 98, 89, 0.22);
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 650;
}
@media (max-width: 767px) {
  .wrap { width: min(100% - 32px, 1280px); }
  .header-inner { width: calc(100% - 32px); height: 68px; }
  .day-tabs { margin-inline: -16px; padding-inline: 16px; }
  .hero { min-height: auto; padding-block: 54px 60px; gap: 38px; }
  .hero h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { gap: 16px; flex-wrap: wrap; }
  .section { padding-block: 68px; }
  .section-heading h2 { font-size: 34px; }
  .route-band {
    grid-template-columns: 1fr;
    padding: 18px 12px;
    border-radius: 8px;
  }
  .route-stops { grid-template-columns: repeat(5, minmax(82px, 1fr)); }
  .route-stop { padding-inline: 3px; }
  .route-stop b { font-size: 14px; }
  .route-stop small { font-size: 9px; }
}
@media (max-width: 480px) {
  .route-stops {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .route-stops::before { left: 10%; right: 10%; }
  .route-stop { padding-inline: 0; }
  .route-stop b { font-size: 12px; }
  .route-stop small { font-size: 8px; white-space: nowrap; }
}

/* Desktop map scale: let the hand-drawn artwork carry more visual weight. */
@media (min-width: 901px) {
  .map-card { max-width: 560px; }
}
@media (min-width: 1200px) {
  .hero-art { max-width: 520px; }
}
