:root {
  --ink: #09282b;
  --ink-deep: #061b1e;
  --paper: #eef3ed;
  --paper-bright: #f8fbf7;
  --mist: #d6e0d8;
  --jade: #3da99d;
  --jade-dark: #176e68;
  --lotus: #d44b57;
  --lotus-dark: #8d2634;
  --gold: #efc46c;
  --sky: #90c5c2;
  --muted: #637673;
  --line: rgba(9, 40, 43, 0.17);
  --shadow: 0 24px 80px rgba(7, 38, 40, 0.12);
  --display: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --data: "SFMono-Regular", "Menlo", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(9, 40, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 40, 43, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: var(--gold);
  color: var(--ink-deep);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: white;
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(238, 243, 237, 0.14);
  color: var(--paper-bright);
  background: rgba(6, 27, 30, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: start;
}
.brand-mark {
  font: 700 15px/1 var(--data);
  letter-spacing: -0.08em;
  color: var(--gold);
}
.brand-copy {
  font: 600 13px/1 var(--body);
  letter-spacing: 0.18em;
}
.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 42px);
}
.desktop-nav a {
  position: relative;
  color: rgba(248, 251, 247, 0.72);
  font-size: 13px;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: white;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}
.print-button {
  justify-self: end;
  padding: 8px 15px;
  border: 1px solid rgba(248, 251, 247, 0.35);
  color: white;
  background: transparent;
  cursor: pointer;
}
.print-button:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) max(5vw, calc((100vw - 1320px) / 2));
  color: var(--paper-bright);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 85%,
      rgba(212, 75, 87, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 20%,
      rgba(61, 169, 157, 0.22),
      transparent 25%
    ),
    var(--ink-deep);
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  font: 700 11px/1.2 var(--data);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.kicker {
  color: var(--gold);
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.hero h1 span {
  display: block;
  font-size: clamp(64px, 10vw, 150px);
}
.hero h1 em {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-size: clamp(31px, 4.5vw, 66px);
  font-style: normal;
  letter-spacing: 0.08em;
}
.hero-lede {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(248, 251, 247, 0.72);
  font-size: clamp(16px, 1.35vw, 20px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-actions a {
  padding: 13px 21px;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}
.primary-action {
  color: var(--ink-deep);
  background: var(--gold);
}
.secondary-action {
  border: 1px solid rgba(248, 251, 247, 0.35);
}
.hero-actions a:hover {
  transform: translateY(-2px);
}

.trip-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 720px;
  margin: 54px 0 0;
  border-top: 1px solid rgba(248, 251, 247, 0.18);
}
.trip-facts div {
  padding: 20px 14px 0 0;
}
.trip-facts dt {
  color: rgba(248, 251, 247, 0.45);
  font: 700 10px/1 var(--data);
  letter-spacing: 0.14em;
}
.trip-facts dd {
  margin: 9px 0 0;
  color: white;
  font-size: 14px;
}

.route-poster {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.82;
  justify-self: end;
  border: 1px solid rgba(248, 251, 247, 0.22);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 80px rgba(61, 169, 157, 0.08);
  overflow: hidden;
}
.route-poster::before,
.route-poster::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(248, 251, 247, 0.28);
  z-index: 2;
}
.route-poster::before {
  left: 14px;
  top: 14px;
  border-left: 1px solid;
  border-top: 1px solid;
}
.route-poster::after {
  right: 14px;
  bottom: 14px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.poster-stamp {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 26px;
  padding: 11px 13px;
  border: 1px solid rgba(239, 196, 108, 0.55);
  color: var(--gold);
  font: 700 10px/1.45 var(--data);
  letter-spacing: 0.13em;
  transform: rotate(3deg);
}
.route-map {
  width: 100%;
  height: 100%;
}
.map-outline {
  fill: none;
  stroke: rgba(248, 251, 247, 0.11);
  stroke-width: 44;
  stroke-linecap: round;
}
.route-line {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  filter: url(#glow);
  animation: routeDash 16s linear infinite;
}
.route-halo {
  fill: none;
  stroke-width: 2;
  opacity: 0.55;
  animation: pulse 2.4s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.route-halo.south {
  stroke: var(--lotus);
}
.route-halo.north {
  stroke: var(--jade);
}
.route-point.south {
  fill: var(--lotus);
}
.route-point.north {
  fill: var(--jade);
}
.plane {
  fill: var(--gold);
  filter: url(#glow);
}
.map-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.map-label strong {
  font: 700 clamp(25px, 3vw, 41px) / 1 var(--data);
  letter-spacing: -0.08em;
}
.map-label span {
  margin-top: 7px;
  color: rgba(248, 251, 247, 0.6);
  font-size: 12px;
}
.label-han {
  top: 17%;
  left: 10%;
}
.label-sgn {
  left: 57%;
  bottom: 10%;
}
.label-nkg {
  top: 8%;
  left: 48%;
  opacity: 0.4;
  transform: scale(0.72);
}
.poster-note {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: rgba(248, 251, 247, 0.4);
  font: 700 10px/1 var(--data);
  letter-spacing: 0.14em;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -210;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.65);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.notice-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: 30px;
  align-items: center;
  padding: 22px max(5vw, calc((100vw - 1320px) / 2));
  color: white;
  background: var(--lotus-dark);
}
.notice-strip span {
  font: 800 12px/1 var(--data);
  letter-spacing: 0.16em;
  color: var(--gold);
}
.notice-strip p {
  margin: 0;
  font-size: 14px;
}

.section {
  padding: clamp(90px, 11vw, 160px) max(5vw, calc((100vw - 1320px) / 2));
}
.section-heading {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 8vw, 120px);
  align-items: start;
  margin-bottom: 64px;
}
.section-heading.wide {
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
}
.eyebrow {
  color: var(--lotus);
}
.section-heading h2,
.night-intro h2,
.sources-section h2 {
  margin: 0;
  font: 600 clamp(42px, 6vw, 86px) / 1.02 var(--display);
  letter-spacing: -0.055em;
}
.section-heading p:last-child {
  max-width: 530px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.section-heading.wide p:last-child {
  margin-top: 0;
}

.route-section {
  background: var(--paper-bright);
}
.flight-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.flight-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  background: var(--paper-bright);
  overflow: hidden;
}
.flight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--lotus);
}
.flight-card.domestic::before {
  background: var(--gold);
}
.flight-card.return::before {
  background: var(--jade);
}
.flight-date {
  display: grid;
  grid-template-columns: auto 1fr;
  width: max-content;
  column-gap: 8px;
}
.flight-date span,
.flight-date small {
  font: 700 10px/1 var(--data);
  letter-spacing: 0.13em;
}
.flight-date strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font: 700 42px/0.8 var(--data);
  letter-spacing: -0.09em;
}
.flight-main {
  margin-top: 64px;
}
.flight-number {
  margin: 0 0 22px;
  color: var(--muted);
  font: 700 11px/1 var(--data);
  letter-spacing: 0.09em;
}
.airport-line,
.time-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.airport-line strong {
  font: 750 clamp(28px, 3vw, 42px) / 1 var(--data);
  letter-spacing: -0.08em;
}
.airport-line span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font: 700 10px/1 var(--data);
}
.airport-line i {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--line);
}
.time-line {
  margin-top: 12px;
  color: var(--muted);
  font: 650 12px/1 var(--data);
}
.flight-tag {
  position: absolute;
  left: 30px;
  bottom: 28px;
  padding: 7px 9px;
  color: var(--lotus-dark);
  background: rgba(212, 75, 87, 0.1);
  font: 700 10px/1 var(--data);
}
.domestic .flight-tag {
  color: #7b5914;
  background: rgba(239, 196, 108, 0.2);
}
.return .flight-tag {
  color: var(--jade-dark);
  background: rgba(61, 169, 157, 0.12);
}
.route-advice {
  display: grid;
  grid-template-columns: 0.3fr 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-top: 0;
}
.route-advice strong {
  font-family: var(--display);
  font-size: 21px;
}
.route-advice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.route-advice a {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.itinerary-section {
  background: var(--paper);
}
.filters {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  gap: 8px;
  margin: -22px 0 44px;
  padding: 12px 0;
  background: rgba(238, 243, 237, 0.93);
  backdrop-filter: blur(12px);
  overflow-x: auto;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar {
  display: none;
}
.filter,
.budget-control button {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.filter:hover,
.filter.is-active,
.budget-control button:hover,
.budget-control button.is-active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}
.day-list {
  display: grid;
  gap: 20px;
}
.day-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  border: 1px solid var(--line);
  background: var(--paper-bright);
  box-shadow: 0 10px 50px rgba(9, 40, 43, 0.05);
}
.day-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: rgba(212, 75, 87, 0.035);
}
.city-north .day-head {
  background: rgba(61, 169, 157, 0.05);
}
.city-transfer .day-head {
  background: rgba(239, 196, 108, 0.12);
}
.day-index {
  flex: 0 0 50px;
}
.day-index span {
  display: block;
  color: var(--muted);
  font: 700 9px/1 var(--data);
  letter-spacing: 0.14em;
}
.day-index strong {
  display: block;
  margin-top: 8px;
  font: 750 36px/0.9 var(--data);
  letter-spacing: -0.09em;
}
.day-head p {
  margin: 0 0 10px;
  color: var(--lotus);
  font: 700 11px/1 var(--data);
  letter-spacing: 0.08em;
}
.city-north .day-head p {
  color: var(--jade-dark);
}
.day-head h3 {
  max-width: 300px;
  margin: 0;
  font: 600 clamp(24px, 2.2vw, 34px) / 1.18 var(--display);
}
.city-code {
  position: absolute;
  left: 34px;
  bottom: 30px;
  color: rgba(9, 40, 43, 0.16);
  font: 750 34px/1 var(--data);
  letter-spacing: -0.08em;
}
.activity-list {
  padding: 12px 34px;
}
.activity {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s ease;
}
.activity:last-child {
  border-bottom: 0;
}
.activity.is-hidden {
  display: none;
}
.activity time {
  padding-top: 4px;
  color: var(--muted);
  font: 700 11px/1 var(--data);
}
.activity strong {
  display: block;
  font-size: 15px;
}
.activity p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}
.activity a {
  display: inline-block;
  margin-top: 7px;
  color: var(--jade-dark);
  font-size: 12px;
  text-underline-offset: 3px;
}
.day-card.is-empty {
  display: none;
}

.stay-section {
  background: var(--paper-bright);
}
.hotel-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.hotel-city {
  padding: 34px;
  border: 1px solid var(--line);
}
.hotel-city > header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}
.hotel-city > header > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: white;
  background: var(--lotus);
  font: 750 18px/1 var(--data);
}
.hotel-city.city-north > header > span {
  background: var(--jade-dark);
}
.hotel-city header p {
  margin: 0;
  color: var(--muted);
  font: 700 10px/1 var(--data);
}
.hotel-city header h3 {
  margin: 5px 0 0;
  font: 600 30px/1.1 var(--display);
}
.hotel-choice {
  position: relative;
  padding: 28px;
  color: white;
  background: var(--ink-deep);
}
.choice-label {
  color: var(--gold);
  font: 700 10px/1 var(--data);
  letter-spacing: 0.15em;
}
.hotel-choice h4 {
  margin: 18px 0 8px;
  font: 600 27px/1.1 var(--display);
}
.hotel-choice p {
  min-height: 50px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.hotel-choice strong {
  display: block;
  margin-top: 24px;
  font: 700 13px/1 var(--data);
  color: var(--gold);
}
.hotel-choice a {
  display: inline-block;
  margin-top: 16px;
  color: white;
  font-size: 12px;
}
.hotel-alternatives {
  border: 1px solid var(--line);
  border-top: 0;
}
.hotel-alternatives div {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.hotel-alternatives div:last-child {
  border-bottom: 0;
}
.hotel-alternatives span {
  color: var(--muted);
  font: 700 10px/1 var(--data);
}
.hotel-alternatives strong {
  font-size: 13px;
}
.hotel-alternatives small {
  color: var(--muted);
  font: 700 11px/1 var(--data);
}
.hotel-note {
  margin: 22px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(239, 196, 108, 0.13);
  font-size: 14px;
}

.night-section {
  padding: clamp(90px, 11vw, 160px) max(5vw, calc((100vw - 1320px) / 2));
  color: white;
  background: var(--ink-deep);
}
.night-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}
.night-intro .eyebrow {
  color: var(--gold);
  grid-column: 1 / -1;
  margin-bottom: -35px;
}
.night-intro p:last-child {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}
.night-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.night-card {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.night-card:last-child {
  border-right: 0;
}
.night-card > span {
  color: var(--gold);
  font: 700 11px/1 var(--data);
}
.night-card h3 {
  margin: 82px 0 12px;
  font: 600 26px/1.1 var(--display);
}
.night-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.safety-rules {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 60px;
  margin-top: 70px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.safety-rules h3 {
  margin: 0;
  font: 600 30px/1.1 var(--display);
  color: var(--gold);
}
.safety-rules ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
.safety-rules li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.budget-section {
  background: var(--paper);
}
.budget-control {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 22px;
}
.budget-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  border: 1px solid var(--line);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}
.budget-total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 48px;
  color: white;
  background: var(--lotus-dark);
}
.budget-total span {
  font: 700 11px/1 var(--data);
  letter-spacing: 0.14em;
}
.budget-total strong {
  margin: 32px 0 18px;
  font: 600 clamp(34px, 4vw, 58px) / 1 var(--display);
}
.budget-total small {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}
.budget-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 34px 42px 10px;
}
.budget-breakdown div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.budget-breakdown div:nth-child(odd) {
  padding-right: 28px;
}
.budget-breakdown div:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.budget-breakdown dt {
  color: var(--muted);
  font-size: 12px;
}
.budget-breakdown dd {
  margin: 8px 0 0;
  font: 700 16px/1 var(--data);
}
.budget-panel > p {
  grid-column: 2;
  margin: 0;
  padding: 0 42px 30px;
  color: var(--muted);
  font-size: 12px;
}

.before-section {
  background: var(--paper-bright);
}
.prep-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.checklist {
  border: 1px solid var(--line);
}
.checklist label {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.checklist label:last-child {
  border-bottom: 0;
}
.checklist input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--jade-dark);
}
.checklist span {
  color: var(--muted);
  font-size: 13px;
}
.checklist strong {
  color: var(--ink);
}
.checklist input:checked + span {
  text-decoration: line-through;
  opacity: 0.55;
}
.visa-card {
  padding: 38px;
  color: white;
  background: var(--jade-dark);
}
.visa-card > span {
  color: var(--gold);
  font: 700 10px/1 var(--data);
  letter-spacing: 0.16em;
}
.visa-card h3 {
  margin: 28px 0;
  font: 600 34px/1.15 var(--display);
}
.visa-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.visa-card li {
  margin: 10px 0;
}
.visa-card a {
  display: inline-block;
  margin-top: 30px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.sources-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  padding: clamp(90px, 11vw, 150px) max(5vw, calc((100vw - 1320px) / 2));
  background: #dfe9e2;
}
.video-list {
  border-top: 1px solid var(--line);
}
.video-list a {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.video-list a:hover strong {
  color: var(--lotus-dark);
  transform: translateX(4px);
}
.video-list span {
  color: var(--lotus);
  font: 700 10px/1 var(--data);
}
.video-list strong {
  font-size: 14px;
  transition: 0.2s ease;
}
.video-list small {
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 60px max(5vw, calc((100vw - 1320px) / 2)) 100px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--ink-deep);
}
.site-footer > div {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.site-footer p {
  margin: 0;
  font-size: 12px;
}
.site-footer a {
  color: var(--gold);
  font-size: 12px;
}
.mobile-nav {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .route-poster {
    justify-self: start;
    width: min(100%, 620px);
  }
  .flight-board {
    grid-template-columns: 1fr;
  }
  .flight-card {
    min-height: 280px;
  }
  .flight-main {
    margin-top: 42px;
  }
  .route-advice {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .night-grid {
    grid-template-columns: 1fr 1fr;
  }
  .night-card:nth-child(2) {
    border-right: 0;
  }
  .night-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .sources-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 62px;
  }
  .site-header {
    min-height: 60px;
    padding: 0 18px;
  }
  .brand-copy {
    display: none;
  }
  .print-button {
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    padding: 64px 20px 74px;
  }
  .hero h1 span {
    font-size: clamp(56px, 20vw, 90px);
  }
  .hero h1 em {
    margin-top: 16px;
    font-size: clamp(28px, 10vw, 44px);
  }
  .hero-lede {
    margin-top: 26px;
  }
  .trip-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }
  .route-poster {
    aspect-ratio: 0.88;
  }
  .notice-strip {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px;
  }
  .section,
  .night-section,
  .sources-section {
    padding: 82px 20px;
  }
  .section-heading,
  .section-heading.wide,
  .night-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }
  .section-heading h2,
  .night-intro h2,
  .sources-section h2 {
    font-size: clamp(40px, 13vw, 62px);
  }
  .section-heading p:last-child,
  .section-heading.wide p:last-child {
    margin-top: 0;
  }
  .flight-card {
    padding: 25px;
  }
  .filters {
    top: 60px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .day-card {
    grid-template-columns: 1fr;
  }
  .day-head {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .city-code {
    right: 24px;
    left: auto;
    bottom: 25px;
  }
  .activity-list {
    padding: 8px 24px;
  }
  .activity {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 19px 0;
  }
  .hotel-city-grid,
  .prep-grid {
    grid-template-columns: 1fr;
  }
  .hotel-city {
    padding: 22px;
  }
  .hotel-alternatives div {
    grid-template-columns: 50px 1fr;
  }
  .hotel-alternatives small {
    grid-column: 2;
  }
  .night-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
  .night-grid {
    grid-template-columns: 1fr;
  }
  .night-card,
  .night-card:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .night-card h3 {
    margin-top: 42px;
  }
  .safety-rules {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .safety-rules ol {
    grid-template-columns: 1fr;
  }
  .budget-panel {
    grid-template-columns: 1fr;
  }
  .budget-total {
    min-height: 250px;
    padding: 32px;
  }
  .budget-breakdown {
    padding: 20px 24px 8px;
  }
  .budget-breakdown div:nth-child(odd),
  .budget-breakdown div:nth-child(even) {
    padding-left: 0;
    padding-right: 12px;
    border-left: 0;
  }
  .budget-panel > p {
    grid-column: 1;
    padding: 0 24px 24px;
  }
  .video-list a {
    grid-template-columns: 56px 1fr;
  }
  .video-list small {
    grid-column: 2;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 54px 20px 40px;
  }
  .mobile-nav {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(6, 27, 30, 0.96);
    backdrop-filter: blur(14px);
  }
  .mobile-nav a {
    padding: 13px 4px 15px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    text-align: center;
    text-decoration: none;
  }
  .mobile-nav a.is-active {
    color: var(--gold);
  }
}

@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 {
  body {
    padding: 0;
    color: #111;
    background: white;
  }
  .site-header,
  .mobile-nav,
  .hero-actions,
  .filters,
  .print-button {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 35px;
    color: white;
  }
  .route-poster {
    max-width: 330px;
  }
  .section,
  .night-section,
  .sources-section {
    padding: 32px;
    break-inside: auto;
  }
  .day-card,
  .hotel-city,
  .flight-card {
    break-inside: avoid;
    box-shadow: none;
  }
  .day-card {
    grid-template-columns: 230px 1fr;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  a {
    text-decoration: none;
  }
}
