:root {
  --forest-950: #102f29;
  --forest-900: #173e35;
  --forest-800: #225347;
  --moss: #67805a;
  --lake: #167486;
  --lake-light: #dcecef;
  --apple: #bf493c;
  --apple-dark: #97392f;
  --sun: #e5a84b;
  --paper: #f3eee2;
  --paper-deep: #e6ddcd;
  --cream: #fffdf7;
  --ink: #20302c;
  --muted: #66736f;
  --line: rgba(24, 62, 53, 0.18);
  --shadow: 0 24px 70px rgba(16, 47, 41, 0.13);
  --display: "Noto Serif TC", "PMingLiU", serif;
  --body: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --max: 1240px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(229, 168, 75, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 42%, rgba(22, 116, 134, 0.08), transparent 32rem),
    var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-underline-offset: 0.2em; }

button, textarea, input { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest-950);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  color: var(--forest-950);
  background: rgba(255, 253, 247, 0.94);
  border-color: rgba(23, 62, 53, 0.1);
  box-shadow: 0 12px 40px rgba(16, 47, 41, 0.09);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  line-height: 1.1;
}

.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--sun);
}

.brand-mark svg { width: 100%; height: 100%; }
.brand-mark path:first-child { fill: currentColor; stroke: none; }
.brand-mark path:not(:first-child) { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  opacity: 0.7;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a,
.share-button {
  position: relative;
  padding: 8px 0;
  color: inherit;
  background: none;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-current::after { transform: scaleX(1); transform-origin: left; }

.share-button {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.share-button:hover { color: var(--forest-950); background: var(--sun); border-color: var(--sun); }

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  height: min(94vh, 940px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--forest-950);
}

.hero-media,
.hero-media img,
.hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }

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

.hero-media img {
  object-fit: cover;
  object-position: center 53%;
  animation: hero-in 1.6s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 37, 31, 0.92) 0%, rgba(12, 37, 31, 0.73) 40%, rgba(12, 37, 31, 0.2) 72%, rgba(12, 37, 31, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 28, 23, 0.68), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -17%;
  left: -8%;
  height: 25%;
  z-index: 4;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 34px) 0 105px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--apple-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light { color: #f7d79e; }

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.06;
  text-wrap: balance;
  animation: rise-in 850ms 140ms both cubic-bezier(0.17, 0.67, 0.2, 1);
}

.hero h1 em {
  color: #f6d694;
  font-style: normal;
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.7;
  animation: rise-in 850ms 250ms both cubic-bezier(0.17, 0.67, 0.2, 1);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: rise-in 850ms 350ms both cubic-bezier(0.17, 0.67, 0.2, 1);
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--forest-950);
  background: var(--sun);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.12);
}

.button-primary:hover { background: #f1bd6c; box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.12); }

.button-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.62); background: rgba(255, 255, 255, 0.06); }
.button-ghost:hover { color: var(--forest-950); background: #fff; }

.hero-facts {
  max-width: 800px;
  margin: 47px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  animation: rise-in 850ms 460ms both cubic-bezier(0.17, 0.67, 0.2, 1);
}

.hero-facts li { padding: 18px 28px 0 0; }
.hero-facts li + li { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, 0.24); }
.hero-facts small, .hero-facts strong { display: block; }
.hero-facts small { color: rgba(255, 255, 255, 0.66); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.hero-facts strong { margin-top: 3px; font-family: var(--display); font-size: 20px; }

.hero-route {
  position: absolute;
  z-index: -1;
  top: 23%;
  right: -3%;
  width: min(52vw, 760px);
  opacity: 0.48;
}

.hero-route path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-dasharray: 0.012 0.016;
  stroke-linecap: round;
  animation: route-draw 2.2s 500ms both ease-out;
}

.hero-route circle { fill: var(--sun); stroke: #fff; stroke-width: 2px; }

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: max(36px, calc((100vw - var(--max)) / 2));
  bottom: 16%;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  transform: rotate(8deg);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero-stamp::before,
.hero-stamp::after { content: ""; width: 74px; height: 1px; margin: 4px auto; background: rgba(255, 255, 255, 0.55); }
.hero-stamp span, .hero-stamp small { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; }
.hero-stamp b { margin: 1px 0 3px; font-family: var(--display); font-size: 33px; letter-spacing: 0.14em; }

.photo-credit {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.4;
  text-decoration: none;
}

.photo-credit:hover { color: #fff; text-decoration: underline; }
.hero-credit { position: absolute; z-index: 5; right: 28px; bottom: 27%; writing-mode: vertical-rl; }

.section-pad {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading { max-width: 740px; margin-bottom: 54px; }
.section-heading h2,
.season-copy h2,
.prep-intro h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-heading-row > p,
.season-copy > p,
.prep-intro > p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading-row > p { margin: 0 0 9px; }

.overview { padding-top: 60px; }

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
  gap: 22px;
}

.decision-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(23, 62, 53, 0.06);
}

.decision-card-main::after {
  content: "青";
  position: absolute;
  right: -25px;
  bottom: -66px;
  color: rgba(23, 62, 53, 0.045);
  font-family: var(--display);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
}

.card-kicker {
  display: inline-block;
  color: var(--apple-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.decision-card h3 {
  max-width: 580px;
  margin: 12px 0 24px;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.3;
}

.tick-list { position: relative; z-index: 1; margin: 0; padding: 0; list-style: none; }
.tick-list li { position: relative; padding: 8px 0 8px 34px; }
.tick-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 3px;
  width: 15px;
  height: 8px;
  border-bottom: 2px solid var(--moss);
  border-left: 2px solid var(--moss);
  transform: rotate(-45deg);
}

.caution-card { color: #fff; background: var(--forest-900); border-color: var(--forest-900); box-shadow: 12px 12px 0 rgba(191, 73, 60, 0.2); }
.caution-card .card-kicker { color: #f4c97e; }
.caution-card h3 { color: #fff; }
.caution-card p { color: rgba(255, 255, 255, 0.78); }
.caution-card strong { color: #fff; }

.status-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid var(--line);
}

.status-strip div { position: relative; min-height: 104px; padding: 23px 24px 20px 44px; }
.status-strip div + div { border-left: 1px solid var(--line); }
.status-strip small, .status-strip b { display: block; }
.status-strip small { color: var(--muted); font-size: 11px; font-weight: 700; }
.status-strip b { margin-top: 4px; font-size: 14px; line-height: 1.45; }
.status-dot { position: absolute; top: 28px; left: 23px; width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 0 4px currentColor; }
.status-dot.good { color: rgba(103, 128, 90, 0.18); background: var(--moss); }
.status-dot.pending { color: rgba(229, 168, 75, 0.21); background: var(--sun); }

.data-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.data-note span { margin-right: 10px; padding: 5px 9px; color: var(--forest-900); background: rgba(103, 128, 90, 0.13); font-weight: 700; }

.itinerary {
  width: 100%;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    var(--forest-950);
  background-size: 34px 34px;
}

.itinerary .eyebrow { color: #eec980; }
.itinerary .section-heading h2 { color: #fff; }
.itinerary .section-heading-row > p { color: rgba(255, 255, 255, 0.64); }

.day-jump {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-h) + 10px);
  margin: 0 0 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(16, 47, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.day-jump a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.day-jump a + a { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.day-jump a:hover, .day-jump a.is-current { color: var(--forest-950); background: var(--sun); }
.day-jump b { font-family: var(--display); font-size: 18px; }
.day-jump span { font-size: 12px; font-weight: 600; }

.day-list { display: grid; gap: 26px; }

.day-card {
  position: relative;
  min-height: 490px;
  display: grid;
  grid-template-columns: 96px minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.day-index {
  position: relative;
  z-index: 2;
  padding: 27px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  background: var(--apple);
  text-align: center;
}

.day-index span, .day-index small { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; }
.day-index b { margin: 4px 0 auto; font-family: var(--display); font-size: 49px; line-height: 1; writing-mode: vertical-rl; }
.day-index small { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.46); writing-mode: vertical-rl; }

.day-copy { padding: clamp(32px, 4vw, 55px); align-self: center; }
.day-route { margin: 0 0 14px; color: var(--apple-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.day-route span { margin: 0 6px; color: var(--sun); }
.day-copy h3 { margin: 0 0 18px; color: var(--forest-950); font-family: var(--display); font-size: clamp(28px, 3.4vw, 45px); line-height: 1.3; letter-spacing: -0.025em; }
.day-copy > p:not(.day-route):not(.day-watch) { color: #53615d; }
.day-tags { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 7px; }
.day-tags span { padding: 6px 10px; color: var(--forest-800); background: rgba(103, 128, 90, 0.12); border: 1px solid rgba(103, 128, 90, 0.2); font-size: 11px; font-weight: 700; }
.day-watch { margin: 23px 0 0; padding: 12px 14px; color: #675748; background: #f6eddb; border-left: 3px solid var(--sun); font-size: 13px; }
.text-link { display: inline-flex; margin-top: 19px; color: var(--lake); font-size: 13px; font-weight: 800; }

.day-photo { position: relative; min-height: 320px; margin: 0; overflow: hidden; background: var(--forest-800); }
.day-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.day-photo:hover img { transform: scale(1.035); }
.day-photo figcaption { position: absolute; right: 10px; bottom: 8px; left: 10px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; color: rgba(255, 255, 255, 0.78); font-size: 9px; line-height: 1.4; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8); }
.day-photo figcaption a { color: inherit; text-decoration: none; }
.day-photo figcaption a:hover { color: #fff; text-decoration: underline; }
.wide-photo img { object-position: center; }

.photo-pair {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 490px;
}

.photo-pair .day-photo { min-height: 0; }
.photo-pair .day-photo + .day-photo { border-top: 4px solid var(--cream); }
.photo-pair-landscape .day-photo:first-child img { object-position: center 56%; }

.photo-pair-feature {
  grid-template-columns: minmax(150px, 0.8fr) minmax(260px, 1.2fr);
  grid-template-rows: 1fr;
}

.photo-pair-feature .day-photo + .day-photo { border-top: 0; border-left: 4px solid var(--cream); }
.portrait-photo img { object-position: center; }
.train-photo img { object-position: center; }

.day-card-final { min-height: 420px; grid-template-columns: 96px minmax(330px, 1.05fr) minmax(390px, 0.95fr); }

.boarding-card {
  position: relative;
  align-self: center;
  width: min(88%, 540px);
  min-height: 260px;
  margin: 36px auto;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 18px;
  color: var(--forest-950);
  background: #f4ead7;
  border: 1px solid rgba(23, 62, 53, 0.25);
  box-shadow: 12px 12px 0 rgba(23, 62, 53, 0.1);
  transform: rotate(-1.8deg);
}

.boarding-card::after { content: ""; position: absolute; top: 0; right: 24%; bottom: 0; border-right: 2px dashed rgba(23, 62, 53, 0.18); }
.boarding-top { position: absolute; top: 13px; left: 34px; font-size: 9px; font-weight: 800; letter-spacing: 0.18em; }
.boarding-card div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.boarding-card small { color: var(--muted); font-size: 8px; letter-spacing: 0.2em; }
.boarding-card b { font-family: var(--display); font-size: 42px; line-height: 1.15; }
.boarding-card div span { font-size: 12px; font-weight: 700; }
.boarding-card svg { width: 100%; }
.boarding-card svg path { fill: none; stroke: var(--apple); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.boarding-card p { position: absolute; right: 22px; bottom: 7px; margin: 0; color: var(--muted); font-size: 9px; }

.map-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  background: #e9e1d2;
}

.map-filter { margin: -18px 0 26px; display: flex; flex-wrap: wrap; gap: 7px; }
.map-filter button {
  min-width: 58px;
  min-height: 44px;
  padding: 8px 16px;
  color: var(--forest-900);
  background: transparent;
  border: 1px solid rgba(23, 62, 53, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.map-filter button:hover, .map-filter button.is-active { color: #fff; background: var(--forest-900); border-color: var(--forest-900); }

.map-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(340px, 0.7fr);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame { position: relative; min-height: 650px; overflow: hidden; }
#trip-map { width: 100%; height: 100%; min-height: 650px; background: #dce4de; }
.map-caption { position: absolute; z-index: 500; bottom: 12px; left: 12px; margin: 0; padding: 6px 10px; color: var(--forest-900); background: rgba(255, 253, 247, 0.92); box-shadow: 0 3px 14px rgba(16, 47, 41, 0.12); font-size: 10px; }
.legend-dot { width: 8px; height: 8px; display: inline-block; margin: 0 3px 0 7px; border-radius: 50%; }
.legend-dot.confirmed { background: var(--apple); }
.legend-dot.approximate { background: var(--sun); border: 1px dashed var(--forest-900); }
.map-noscript { margin: 20px; padding: 18px; background: #fff; }

.map-sidebar { display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.map-list-head { padding: 25px 27px 17px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.map-list-head span { color: var(--forest-950); font-family: var(--display); font-size: 20px; font-weight: 800; }
.map-list-head small { color: var(--muted); font-size: 10px; }
.map-stop-list { max-height: 492px; margin: 0; padding: 0; overflow: auto; list-style: none; scrollbar-color: var(--moss) transparent; }
.map-stop-list li { border-bottom: 1px solid var(--line); }
.map-stop-button { width: 100%; min-height: 72px; padding: 14px 24px 14px 20px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; color: var(--ink); background: transparent; border: 0; text-align: left; cursor: pointer; }
.map-stop-list a.map-stop-button { text-decoration: none; }
.map-stop-button:hover { background: rgba(22, 116, 134, 0.06); }
.map-stop-button:disabled { cursor: default; opacity: 0.72; }
.map-stop-button:disabled:hover { background: transparent; }
.map-day-badge { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; background: var(--forest-800); border-radius: 50%; font-family: var(--display); font-size: 11px; font-weight: 900; }
.map-stop-copy b, .map-stop-copy small { display: block; }
.map-stop-copy b { color: var(--forest-950); font-size: 13px; }
.map-stop-copy small { margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.map-open { color: var(--lake); font-size: 16px; }
.map-warning { margin-top: auto; padding: 19px 24px; color: #654d43; background: #f6ebd5; border-top: 1px solid rgba(229, 168, 75, 0.4); }
.map-warning strong { font-size: 12px; }
.map-warning p { margin: 3px 0 0; font-size: 10px; line-height: 1.55; }

.leaflet-control-attribution { font-family: var(--body); font-size: 8px !important; }
.leaflet-popup-content-wrapper { border-radius: 2px; box-shadow: 0 12px 36px rgba(16, 47, 41, 0.22); }
.leaflet-popup-content { margin: 16px 17px; font-family: var(--body); line-height: 1.55; }
.leaflet-popup-content strong { color: var(--forest-950); }
.leaflet-popup-content small { display: block; margin-top: 3px; color: var(--muted); }
.leaflet-popup-content a { display: inline-block; margin-top: 8px; color: var(--lake); font-size: 11px; font-weight: 800; }
.trip-marker { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: var(--apple); border: 3px solid #fff; border-radius: 50% 50% 50% 8px; box-shadow: 0 4px 14px rgba(16, 47, 41, 0.28); transform: rotate(-45deg); }
.trip-marker span { font-family: var(--display); font-size: 11px; font-weight: 900; transform: rotate(45deg); }
.trip-marker.approximate { color: var(--forest-950); background: var(--sun); border-style: dashed; }

.season {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.season-visual { position: relative; min-height: 650px; }
.season-visual::before { content: ""; position: absolute; top: -18px; left: -18px; width: 44%; height: 38%; z-index: -1; background: var(--lake); }
.season-visual img { width: 100%; height: 650px; object-fit: cover; box-shadow: var(--shadow); }
.season-label { position: absolute; right: -28px; bottom: 38px; width: 180px; height: 180px; display: grid; place-content: center; color: #fff; background: var(--apple); border-radius: 50%; text-align: center; transform: rotate(5deg); box-shadow: 0 16px 34px rgba(151, 57, 47, 0.27); }
.season-label span { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; }
.season-label strong { font-family: var(--display); font-size: 40px; line-height: 1.2; }
.season-label small { font-size: 9px; }
.season-copy > p { margin: 22px 0 0; }

.packing-row { margin-top: 35px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.packing-row div { min-height: 92px; padding: 18px 0; display: grid; grid-template-columns: 44px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.packing-row div > span { grid-row: 1 / 3; color: var(--apple); font-size: 26px; }
.packing-row b { color: var(--forest-900); font-size: 14px; }
.packing-row small { color: var(--muted); font-size: 11px; }

.budget {
  width: 100%;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.budget-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr); gap: 0; border: 1px solid var(--line); }
.budget-total { padding: clamp(34px, 5vw, 62px); color: #fff; background: var(--forest-900); }
.budget-total > span { color: #f1cf92; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.budget-total strong { display: block; margin-top: 15px; font-family: var(--display); font-size: clamp(35px, 4.5vw, 57px); line-height: 1.3; }
.budget-total strong small { font-size: 0.36em; letter-spacing: 0.1em; }
.budget-total strong em { color: var(--sun); font-style: normal; }
.budget-total p { color: rgba(255, 255, 255, 0.67); font-size: 12px; }
.budget-bar { margin-top: 42px; display: grid; grid-template-columns: 8fr 1.2fr 2.2fr; gap: 4px; }
.budget-bar i { height: 8px; display: block; background: var(--sun); }
.budget-bar i:nth-child(2) { background: var(--apple); }
.budget-bar i:nth-child(3) { background: var(--lake); }

.budget-breakdown { display: grid; grid-template-columns: 1fr 1fr; }
.budget-breakdown div { min-height: 150px; padding: 29px; display: flex; flex-direction: column; justify-content: center; }
.budget-breakdown div:nth-child(even) { border-left: 1px solid var(--line); }
.budget-breakdown div:nth-child(n+3) { border-top: 1px solid var(--line); }
.budget-breakdown span { color: var(--muted); font-size: 11px; font-weight: 700; }
.budget-breakdown b { margin-top: 5px; color: var(--forest-900); font-family: var(--display); font-size: 25px; }
.budget-breakdown small { color: var(--muted); font-size: 10px; }

.comparison { margin-top: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.comparison summary, .sources summary { min-height: 74px; padding: 17px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--forest-900); cursor: pointer; list-style: none; }
.comparison summary::-webkit-details-marker, .sources summary::-webkit-details-marker { display: none; }
.comparison summary span, .sources summary span { font-family: var(--display); font-size: 18px; font-weight: 800; }
.comparison summary small, .sources summary small { color: var(--apple-dark); font-size: 11px; font-weight: 800; }
.comparison[open] summary small::before, .sources details[open] summary small::before { content: "收合 "; }
.comparison[open] summary small, .sources details[open] summary small { font-size: 0; }
.comparison[open] summary small::before, .sources details[open] summary small::before { font-size: 11px; }
.comparison-grid { padding: 0 0 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.comparison-grid article { position: relative; min-height: 270px; padding: 32px; background: var(--paper); }
.rank { color: rgba(23, 62, 53, 0.15); font-family: var(--display); font-size: 48px; font-weight: 900; line-height: 1; }
.comparison-grid h3 { margin: 9px 0; color: var(--forest-950); font-family: var(--display); font-size: 20px; }
.comparison-grid b { color: var(--apple-dark); font-size: 12px; }
.comparison-grid p { color: var(--muted); font-size: 13px; }

.question-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  list-style: none;
}

.question-list li { min-height: 118px; padding: 23px 22px 23px 0; display: grid; grid-template-columns: 58px 1fr; align-items: start; gap: 13px; border-bottom: 1px solid var(--line); }
.question-list li:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line); }
.question-list li:last-child { grid-column: 1 / -1; }
.question-list span { color: var(--apple); font-family: var(--display); font-size: 20px; font-weight: 900; }
.question-list p { margin: 0; font-weight: 600; line-height: 1.7; }

.message-box { margin-top: 56px; padding: clamp(26px, 5vw, 55px); color: #fff; background: var(--forest-900); box-shadow: var(--shadow); }
.message-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.message-head span { color: #f0cd8e; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.message-head h3 { margin: 4px 0 0; font-family: var(--display); font-size: 28px; }
.button-copy { color: var(--forest-950); background: var(--sun); }
.button-copy:hover { background: #f1bd6c; }
#inquiry-message { width: 100%; min-height: 325px; margin-top: 26px; padding: 28px; resize: vertical; color: var(--ink); background: var(--cream); border: 0; border-radius: 0; line-height: 1.85; }
.copy-status { min-height: 22px; margin: 10px 0 0; color: #f4d69f; font-size: 12px; }

.prep {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.prep-intro { position: sticky; top: calc(var(--header-h) + 38px); }
.prep-progress { margin-top: 38px; color: var(--forest-900); font-size: 12px; font-weight: 800; }
.prep-progress i { height: 8px; margin-top: 8px; display: block; overflow: hidden; background: var(--paper-deep); }
.prep-progress b { width: 0; height: 100%; display: block; background: var(--apple); transition: width 260ms ease; }

.prep-list { display: grid; border-top: 1px solid var(--line); }
.prep-list label { min-height: 112px; padding: 22px 8px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); cursor: pointer; }
.prep-list input { appearance: none; width: 28px; height: 28px; margin: 0; display: grid; place-content: center; background: transparent; border: 2px solid var(--moss); border-radius: 2px; }
.prep-list input::before { content: ""; width: 14px; height: 8px; border-bottom: 3px solid #fff; border-left: 3px solid #fff; transform: rotate(-45deg) scale(0); transition: transform 140ms ease; }
.prep-list input:checked { background: var(--moss); }
.prep-list input:checked::before { transform: rotate(-45deg) scale(1); }
.prep-list label:has(input:checked) b { color: var(--muted); text-decoration: line-through; }
.prep-list b, .prep-list small { display: block; }
.prep-list b { color: var(--forest-950); font-size: 15px; }
.prep-list small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.6; }

.sources { padding-top: 30px; padding-bottom: 80px; }
.sources details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sources-content { padding: 10px 0 42px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 38px; }
.sources-content h3 { color: var(--forest-950); font-family: var(--display); font-size: 17px; }
.sources-content ul { margin: 0; padding-left: 19px; }
.sources-content li, .sources-content p { color: var(--muted); font-size: 11px; line-height: 1.7; }
.sources-content li + li { margin-top: 7px; }
.sources-content a { color: var(--lake); }

.site-footer {
  min-height: 250px;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-950);
}

.footer-title { margin: 0; color: #fff; font-family: var(--display); font-size: 27px; font-weight: 900; }
.site-footer p:not(.footer-title) { margin: 5px 0 0; font-size: 12px; }
.footer-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-actions a { min-height: 45px; padding: 10px 15px; display: inline-flex; align-items: center; color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); font-size: 12px; font-weight: 700; text-decoration: none; }
.footer-actions a:hover { color: var(--forest-950); background: var(--sun); border-color: var(--sun); }
.site-footer > small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 9px; letter-spacing: 0.1em; }

.toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 18px;
  color: #fff;
  background: var(--forest-950);
  box-shadow: 0 12px 34px rgba(16, 47, 41, 0.26);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-in {
  from { opacity: 0.2; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes route-draw {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1120px) {
  :root { --max: 1040px; }
  .primary-nav { gap: 18px; }
  .hero-stamp { width: 124px; height: 124px; }
  .hero-stamp b { font-size: 28px; }
  .day-card { grid-template-columns: 78px minmax(300px, 0.85fr) minmax(340px, 1.15fr); }
  .day-card-final { grid-template-columns: 78px 1fr 1fr; }
  .day-index b { font-size: 42px; }
  .day-copy { padding: 36px; }
  .map-layout { grid-template-columns: minmax(0, 1.4fr) 340px; }
  .season-label { right: -12px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  body { font-size: 16px; }
  .site-header { padding: 0 20px; }
  .nav-toggle { display: grid; z-index: 1002; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    padding: 110px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    color: #fff;
    background: var(--forest-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav a, .share-button { min-height: 58px; padding: 14px 5px; display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.13); font-family: var(--display); font-size: 19px; }
  .share-button { margin-top: 18px; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.54); border-radius: 0; }
  .site-header.nav-active { color: #fff; background: transparent; box-shadow: none; }
  .hero { min-height: 750px; height: auto; }
  .hero-inner { padding-top: 135px; padding-bottom: 155px; }
  .hero h1 { font-size: clamp(57px, 13vw, 84px); }
  .hero-wash { background: linear-gradient(90deg, rgba(12, 37, 31, 0.9), rgba(12, 37, 31, 0.4)), linear-gradient(0deg, rgba(7, 28, 23, 0.74), transparent 52%); }
  .hero-stamp { right: 26px; bottom: 18%; }
  .hero-credit { bottom: 24%; }
  .hero-route { top: 16%; width: 70vw; }
  .section-pad { width: min(100% - 38px, var(--max)); padding: 85px 0; }
  .section-heading-row { grid-template-columns: 1fr; gap: 16px; }
  .section-heading-row > p { max-width: 700px; }
  .decision-grid { grid-template-columns: 1fr; }
  .status-strip { grid-template-columns: 1fr 1fr; }
  .status-strip div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .status-strip div:nth-child(4) { border-top: 1px solid var(--line); }
  .itinerary, .map-section, .budget { width: 100%; padding-right: 19px; padding-left: 19px; }
  .day-jump a { flex-direction: column; gap: 0; }
  .day-card, .day-card-final { grid-template-columns: 72px 1fr; }
  .day-index { grid-row: 1 / 3; }
  .day-copy { grid-column: 2; }
  .day-card > .day-photo, .day-card > .photo-pair, .day-card > .boarding-card { grid-column: 2; }
  .wide-photo { min-height: 410px; }
  .photo-pair { min-height: 560px; }
  .photo-pair-feature { min-height: 480px; }
  .boarding-card { width: min(86%, 580px); }
  .map-layout { grid-template-columns: 1fr; }
  .map-frame, #trip-map { min-height: 520px; }
  .map-sidebar { border-top: 1px solid var(--line); border-left: 0; }
  .map-stop-list { max-height: 390px; }
  .season { grid-template-columns: 1fr; }
  .season-visual, .season-visual img { min-height: 520px; height: 520px; }
  .season-copy { max-width: 700px; }
  .budget-layout { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-grid article { min-height: 0; }
  .question-list { grid-template-columns: 1fr; }
  .question-list li:nth-child(even) { padding-left: 0; border-left: 0; }
  .question-list li:last-child { grid-column: auto; }
  .prep { grid-template-columns: 1fr; }
  .prep-intro { position: static; max-width: 680px; }
  .sources-content { grid-template-columns: 1fr 1fr; }
  .sources-content > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  html { scroll-padding-top: calc(var(--header-h) + 14px); }
  body { font-size: 16px; }
  .brand strong { font-size: 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { min-height: 770px; }
  .hero-media img { object-position: 57% center; }
  .hero-wash { background: linear-gradient(0deg, rgba(9, 34, 28, 0.94) 5%, rgba(9, 34, 28, 0.48) 80%, rgba(9, 34, 28, 0.62)); }
  .hero-inner { width: calc(100% - 36px); align-self: flex-end; padding-top: 120px; padding-bottom: 170px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); line-height: 1.1; }
  .hero-lead { margin-top: 22px; font-size: 17px; line-height: 1.7; }
  .hero-actions { margin-top: 26px; display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts { margin-top: 34px; grid-template-columns: 1fr 1fr; }
  .hero-facts li { padding-top: 14px; padding-right: 12px; }
  .hero-facts li + li { padding-left: 14px; }
  .hero-facts li:last-child { grid-column: 1 / -1; margin-top: 12px; padding-left: 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.25); }
  .hero-facts strong { font-size: 17px; }
  .hero-stamp { right: 18px; bottom: 13%; width: 92px; height: 92px; }
  .hero-stamp span, .hero-stamp small { font-size: 7px; }
  .hero-stamp b { font-size: 22px; }
  .hero-stamp::before, .hero-stamp::after { width: 49px; }
  .hero-credit { right: 6px; bottom: 25%; font-size: 7px; }
  .hero::after { height: 16%; bottom: -10%; }
  .hero-route { display: none; }
  .section-pad { width: calc(100% - 32px); padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .season-copy h2, .prep-intro h2 { font-size: clamp(35px, 10vw, 46px); }
  .overview { padding-top: 45px; }
  .decision-card { min-height: 0; padding: 28px 24px; }
  .decision-card h3 { font-size: 29px; }
  .decision-card-main::after { font-size: 180px; }
  .status-strip { grid-template-columns: 1fr; }
  .status-strip div + div { border-top: 1px solid var(--line); border-left: 0; }
  .data-note { line-height: 1.7; }
  .data-note span { display: inline-block; margin-bottom: 6px; }
  .itinerary, .map-section, .budget { width: 100%; padding-right: 16px; padding-left: 16px; }
  .day-jump { top: calc(var(--header-h) + 4px); margin-right: -16px; margin-left: -16px; overflow-x: auto; grid-template-columns: repeat(5, 98px); scrollbar-width: none; }
  .day-jump::-webkit-scrollbar { display: none; }
  .day-jump a { min-height: 58px; }
  .day-jump span { font-size: 9px; }
  .day-card, .day-card-final { grid-template-columns: 50px 1fr; min-height: 0; }
  .day-index { padding: 20px 5px; }
  .day-index span { font-size: 8px; }
  .day-index b { font-size: 31px; }
  .day-index small { font-size: 8px; }
  .day-copy { padding: 28px 20px; }
  .day-copy h3 { font-size: 28px; }
  .day-route { font-size: 10px; }
  .day-card > .day-photo, .day-card > .photo-pair, .day-card > .boarding-card { grid-column: 1 / -1; }
  .wide-photo { min-height: 280px; }
  .photo-pair { min-height: 560px; }
  .photo-pair-feature { min-height: 520px; grid-template-columns: 0.78fr 1.22fr; }
  .photo-pair-feature .day-photo + .day-photo { border-left-width: 3px; }
  .day-photo figcaption { font-size: 7px; }
  .boarding-card { width: calc(100% - 38px); min-height: 220px; margin: 31px auto; padding: 26px 18px; grid-template-columns: 1fr 70px 1fr; gap: 6px; }
  .boarding-card::after { right: 23%; }
  .boarding-card b { font-size: 34px; }
  .boarding-card p { right: 10px; font-size: 7px; }
  .map-filter { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .map-filter::-webkit-scrollbar { display: none; }
  .map-filter button { flex: 0 0 auto; }
  .map-frame, #trip-map { min-height: 440px; }
  .map-caption { max-width: calc(100% - 24px); }
  .map-stop-button { padding-right: 16px; padding-left: 14px; }
  .season { width: calc(100% - 32px); gap: 58px; }
  .season-visual, .season-visual img { min-height: 430px; height: 430px; }
  .season-label { right: -6px; bottom: -37px; width: 140px; height: 140px; }
  .season-label strong { font-size: 32px; }
  .packing-row { margin-top: 56px; }
  .budget-total { padding: 32px 24px; }
  .budget-total strong { font-size: 34px; }
  .budget-breakdown { grid-template-columns: 1fr; }
  .budget-breakdown div { min-height: 122px; padding: 24px; }
  .budget-breakdown div:nth-child(even) { border-left: 0; }
  .budget-breakdown div:nth-child(n+2) { border-top: 1px solid var(--line); }
  .comparison summary, .sources summary { align-items: flex-start; }
  .comparison summary span, .sources summary span { font-size: 15px; }
  .comparison-grid article { padding: 26px 22px; }
  .question-list li { min-height: 0; grid-template-columns: 43px 1fr; padding: 20px 4px 20px 0; }
  .message-box { margin-right: -16px; margin-left: -16px; padding: 30px 16px; }
  .message-head { align-items: stretch; flex-direction: column; }
  .button-copy { width: 100%; }
  #inquiry-message { min-height: 410px; padding: 20px 16px; font-size: 14px; }
  .prep-list label { min-height: 102px; }
  .sources { padding-top: 10px; }
  .sources-content { grid-template-columns: 1fr; gap: 20px; }
  .sources-content > div:last-child { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; padding: 46px 22px; }
  .footer-actions { justify-content: flex-start; }
  .footer-actions a { flex: 1 1 160px; justify-content: center; }
}

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

@media print {
  .site-header, .hero-actions, .hero-credit, .hero-route, .day-jump, .map-filter, .map-frame, .share-button, .button-copy, .toast { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero { min-height: 0; height: auto; padding: 30mm 15mm; color: #fff; page-break-after: always; }
  .hero-inner { width: 100%; padding: 0; }
  .hero::after, .hero-stamp { display: none; }
  .section-pad, .itinerary, .map-section, .budget { width: 100%; padding: 14mm; }
  .day-card { break-inside: avoid; }
  .reveal { opacity: 1; transform: none; }
  a { text-decoration: none; }
}
