:root {
  --ink: #16323a;
  --pine: #1e5a52;
  --river: #6ca8ab;
  --ice: #e9f5f2;
  --sun: #f2bf4a;
  --paper: #fbfaf5;
  --coral: #d85d45;
  --line: #c9d9d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
#route,
#plan-detail,
#tips,
#weather,
#spots,
#food {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", sans-serif;
}

.topbar {
  height: 72px;
  padding: 0 clamp(20px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(22, 50, 58, 0.12);
  background: rgba(251, 250, 245, 0.94);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-family: "Ma Shan Zheng", cursive;
  font-size: 21px;
}

.topbar nav {
  display: flex;
  gap: 28px;
}

.topbar nav a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}

.icon-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.icon-button.saved {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.hero {
  height: min(690px, calc(100vh - 72px));
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #15434a;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 38, 43, 0.76) 0%, rgba(10, 38, 43, 0.35) 48%, rgba(10, 38, 43, 0.07) 100%), url("https://images.unsplash.com/photo-1586232702178-f044c5f01d98?auto=format&fit=crop&w=1800&q=85") center/cover;
  animation: arrive 1.2s ease-out both;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: clamp(70px, 13vh, 140px) clamp(24px, 9vw, 150px);
  color: #fff;
}

.eyebrow {
  font: 500 11px/1.4 "DM Mono", monospace;
  letter-spacing: 1.1px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 {
  font: 400 clamp(48px, 7vw, 92px)/1.1 "Ma Shan Zheng", cursive;
  margin: 0;
  letter-spacing: 0;
}

.hero h1 em {
  font-style: normal;
  color: #f6d47e;
}

.hero-copy {
  font-size: 16px;
  line-height: 1.9;
  max-width: 400px;
  margin: 25px 0 32px;
  color: #e8f0ef;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-links a:hover {
  background: rgba(242, 191, 74, 0.2);
  border-color: rgba(242, 191, 74, 0.5);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--sun);
  color: var(--ink);
  text-decoration: none;
  padding: 14px 19px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
}

.primary-action span {
  font-size: 20px;
}

.departure-ticket {
  position: absolute;
  right: clamp(24px, 9vw, 150px);
  bottom: 46px;
  z-index: 1;
  width: min(350px, 40vw);
  padding: 19px 22px;
  background: #f9f6ed;
  color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 96% 100%, 0 100%);
}

.departure-ticket > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.departure-ticket span,
.return-ticket span {
  font-size: 11px;
  color: var(--pine);
  font-weight: 700;
}

.departure-ticket strong,
.return-ticket strong {
  font: 500 27px "DM Mono", monospace;
}

.ticket-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 10px;
  font-size: 13px;
}

.ticket-line i {
  height: 1px;
  flex: 1;
  background: var(--river);
}

.ticket-line small {
  font: 10px "DM Mono", monospace;
  color: #607c80;
}

.departure-ticket p {
  margin: 0;
  font-size: 12px;
  color: #607c80;
}

.hero-note {
  position: absolute;
  right: clamp(24px, 3vw, 50px);
  top: 28px;
  color: #e0ecea;
  font: 11px/1.8 "DM Mono", monospace;
  text-align: right;
  z-index: 1;
}

.trip-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 25px;
  padding: 27px max(5vw, 24px);
  background: var(--pine);
  color: #fff;
}

.trip-strip div {
  padding-left: 18px;
  border-left: 2px solid var(--sun);
}

.trip-strip span {
  display: block;
  font-size: 11px;
  color: #b7d8d3;
  margin-bottom: 7px;
}

.trip-strip strong {
  font-size: 14px;
}

.trip-strip button {
  align-self: center;
  border: none;
  background: var(--sun);
  padding: 10px 13px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.route {
  padding-top: 100px;
  padding-bottom: 105px;
}

.plan-detail {
  padding-bottom: 90px;
}

.plan-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan-card {
  padding: 22px 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(22, 50, 58, 0.05);
}

.plan-card h3 {
  margin: 12px 0 16px;
  font-size: 17px;
}

.plan-card p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.8;
  color: #516a70;
}

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

.plan-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--pine);
  font: 700 13px "DM Mono", monospace;
}

.tips {
  padding-bottom: 98px;
}

.tip-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tip-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(233,245,242,.72));
  border: 1px solid rgba(201, 217, 211, .85);
}

.tip-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.tip-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #587276;
}

.weather {
  padding-bottom: 100px;
}

.weather-live {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 18px;
}

.weather-live-main,
.weather-live-side {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(22, 50, 58, 0.05);
}

.weather-live-main {
  padding: 22px 22px 24px;
}

.weather-live-label {
  display: inline-block;
  margin-bottom: 10px;
  font: 500 11px "DM Mono", monospace;
  letter-spacing: 1px;
  color: var(--coral);
  text-transform: uppercase;
}

.weather-live-main strong {
  display: block;
  font: 700 clamp(34px, 6vw, 54px)/1.1 "DM Mono", monospace;
  color: var(--ink);
  margin-bottom: 10px;
}

.weather-live-main p,
.weather-live-side p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #587276;
}

.weather-live-side {
  padding: 22px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.weather-live-time {
  font-weight: 700;
  color: var(--ink);
}

.weather-shell {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

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

.weather-day {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(22, 50, 58, 0.05);
}

.weather-day.active {
  border-color: var(--pine);
  outline: 2px solid rgba(30, 90, 82, 0.12);
}

.weather-day .date {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.weather-day .date strong {
  font: 700 17px "DM Mono", monospace;
  color: var(--pine);
}

.weather-day .date span {
  font-size: 12px;
  color: #6a8388;
}

.weather-day h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.weather-day p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: #587276;
}

.weather-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font: 500 11px "DM Mono", monospace;
  color: var(--coral);
}

.weather-timeline {
  background: var(--ink);
  color: #fff;
  padding: 26px;
  overflow: hidden;
}

.weather-timeline .eyebrow {
  color: #f6d47e;
}

.weather-timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.weather-timeline-head h3 {
  margin: 0;
  font-size: 24px;
}

.weather-timeline-head p:last-child {
  margin: 0;
  max-width: 360px;
  color: #d6e3e1;
  font-size: 13px;
  line-height: 1.8;
}

.hour-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.hour-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 12px 12px;
  min-height: 134px;
}

.hour-card strong {
  display: block;
  font: 700 15px "DM Mono", monospace;
  margin-bottom: 10px;
}

.hour-card b {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.hour-card span {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  color: #d7e5e2;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 44px);
  letter-spacing: 0;
  font-weight: 700;
}

.section-heading .eyebrow {
  color: var(--coral);
}

.day-grid {
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.day-card {
  min-height: 285px;
  padding: 22px 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.day-card:first-child {
  border-left: 1px solid var(--line);
}

.day-card.current {
  background: var(--ice);
}

.day-number {
  font: 500 11px "DM Mono", monospace;
  color: var(--coral);
}

.day-card h3 {
  font-size: 16px;
  margin: 31px 0 13px;
}

.day-card p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  color: #527075;
}

.day-weather {
  margin: 11px 0 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(30, 90, 82, 0.08);
  color: #31535a;
  font-size: 12px;
  line-height: 1.6;
}

.stops {
  position: absolute;
  bottom: 20px;
  left: 19px;
  right: 19px;
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}

.stops b {
  font-size: 11px;
  font-weight: 500;
  background: #fff;
  padding: 5px 7px;
  border-radius: 2px;
}

.stops i {
  width: 10px;
  height: 1px;
  background: var(--river);
}

.spot-section {
  padding: 96px 0 100px;
  background: #dcece8;
}

.spot-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 35px;
}

.search {
  width: min(360px, 100%);
  display: flex;
  gap: 9px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  padding: 8px 2px;
}

.search span {
  font-size: 25px;
}

.search input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font: 14px "Noto Sans SC", sans-serif;
  color: var(--ink);
}

.search input::placeholder {
  color: #739098;
}

.spot-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 35px;
}

.spot-list {
  display: grid;
  gap: 9px;
}

.spot-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.spot-item:hover,
.spot-item.active {
  background: #fff;
  border-color: var(--pine);
}

.spot-item img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #dfe9e5;
}

.spot-item h3 {
  font-size: 16px;
  margin: 0 0 7px;
}

.spot-item p {
  font-size: 12px;
  margin: 0;
  color: #5a7578;
}

.spot-item small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: #7b9296;
}

.spot-item b {
  font: 500 12px "DM Mono", monospace;
  color: var(--coral);
}

.guide-panel {
  background: var(--ink);
  color: white;
  padding: 30px;
  min-height: 395px;
  position: relative;
  overflow: hidden;
}

.guide-panel:after {
  content: "HARBIN";
  position: absolute;
  right: -35px;
  bottom: -18px;
  font: 500 80px "DM Mono", monospace;
  color: rgba(255, 255, 255, 0.05);
}

.guide-panel .eyebrow {
  color: #f6d47e;
}

.guide-panel h3 {
  font-size: 27px;
  margin: 0 0 18px;
}

.guide-panel p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.9;
  color: #d7e5e2;
}

.guide-source {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.7;
  color: #9cc0be;
}

.guide-bullets {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.guide-bullets span {
  display: block;
  color: #8dafae;
  font-size: 11px;
  margin-bottom: 5px;
}

.guide-bullets b {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.guide-gallery {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-shot {
  margin: 0;
}

.guide-shot img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.guide-shot figcaption {
  margin-top: 8px;
  font-size: 11px;
  color: #8dafae;
  font-family: "DM Mono", monospace;
}

.food-section {
  padding-top: 100px;
  padding-bottom: 105px;
}

.food-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
  gap: 20px;
}

.food-heading > p {
  font-size: 13px;
  color: #628084;
}

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

.food-card {
  border-top: 2px solid var(--pine);
  padding-top: 14px;
}

.food-card img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  margin: 0 0 14px;
  border-radius: 14px;
  background: #e9f1ee;
}

.food-card .food-meta {
  display: flex;
  justify-content: space-between;
  color: var(--coral);
  font: 11px "DM Mono", monospace;
}

.food-card h3 {
  margin: 8px 0;
  font-size: 17px;
}

.food-restaurant {
  margin: 0 0 8px !important;
  color: var(--pine) !important;
  font-weight: 600;
}

.food-facts {
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
}

.food-facts span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
  color: #557174;
}

.food-card p {
  margin: 0;
  color: #607a7d;
  font-size: 13px;
  line-height: 1.7;
}

.food-dishes {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.food-dishes span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(30, 90, 82, 0.08);
  color: var(--pine);
  font-size: 12px;
  line-height: 1;
}

.return-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 75px max(8vw, 30px);
  background: var(--sun);
  color: var(--ink);
}

.return-banner h2 {
  font: 400 clamp(36px, 5vw, 60px)/1.2 "Ma Shan Zheng", cursive;
  margin: 0;
}

.return-ticket {
  min-width: 280px;
  padding: 22px;
  background: #f7f3e8;
  box-shadow: 7px 7px 0 rgba(22, 50, 58, 0.15);
}

.return-ticket strong {
  display: block;
  margin: 8px 0;
}

.return-ticket p {
  font-weight: 700;
  margin: 0 0 13px;
}

.return-ticket small {
  font-size: 11px;
  color: #647579;
}

footer {
  padding: 25px;
  text-align: center;
  background: var(--ink);
  color: #a8c5c2;
  font: 10px "DM Mono", monospace;
  letter-spacing: 1px;
}

.quick-jump {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  display: grid;
  gap: 10px;
}

.quick-jump-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font: 600 13px "Noto Sans SC", sans-serif;
  box-shadow: 0 12px 28px rgba(22, 50, 58, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.quick-jump-item:hover {
  background: var(--pine);
}

dialog {
  width: min(440px, calc(100% - 40px));
  border: 0;
  padding: 32px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.25);
}

dialog::backdrop {
  background: rgba(10, 38, 43, 0.52);
}

dialog h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.dialog-close {
  float: right;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
}

dialog li {
  margin: 12px 0;
  line-height: 1.5;
  color: #537177;
}

@keyframes arrive {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .topbar nav {
    display: none;
  }

  .brand {
    font-size: 14px;
  }

  .brand span {
    width: 24px;
    height: 24px;
    margin-right: 7px;
    font-size: 18px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .hero {
    height: 540px;
    min-height: 540px;
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .hero-copy {
    font-size: 13px;
    line-height: 1.65;
    margin: 14px 0 18px;
  }

  .hero-links {
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-links a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero-note {
    display: none;
  }

  .departure-ticket {
    left: 18px;
    right: 18px;
    bottom: 14px;
    width: auto;
    padding: 12px 14px;
  }

  .trip-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .trip-strip button {
    grid-column: span 2;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .route {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .section-heading h2 {
    font-size: clamp(22px, 5.6vw, 32px);
    line-height: 1.12;
  }

  .plan-detail {
    padding-bottom: 58px;
  }

  .plan-grid,
  .tip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-card h3,
  .tip-card h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .plan-card p,
  .tip-card p {
    font-size: 11px;
    line-height: 1.6;
  }

  .weather-days {
    grid-template-columns: 1fr 1fr;
  }

  .weather-live {
    gap: 14px;
  }

  .weather-live-main strong {
    font-size: clamp(28px, 7.6vw, 40px);
  }

  .weather-live-main p,
  .weather-live-side p {
    font-size: 11px;
    line-height: 1.6;
  }

  .weather-day h3,
  .weather-timeline-head h3 {
    font-size: 16px;
  }

  .hour-card {
    min-height: 106px;
  }

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

  .day-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .stops {
    position: static;
    margin-top: auto;
    padding-top: 18px;
  }

  .day-card h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .day-card p,
  .day-weather {
    font-size: 11px;
    line-height: 1.6;
  }

  .day-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .spot-head {
    display: block;
    padding-bottom: 20px;
  }

  .search {
    margin-top: 20px;
    width: 100%;
  }

  .spot-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .guide-panel {
    min-height: 250px;
    padding: 20px;
  }

  .guide-panel h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .guide-panel p,
  .food-card p {
    font-size: 11px;
    line-height: 1.6;
  }

  .guide-bullets {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .guide-shot img {
    height: 148px;
  }

  .food-section {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .tips {
    padding-bottom: 58px;
  }

  .weather {
    padding-bottom: 58px;
  }

  .weather-live {
    grid-template-columns: 1fr;
  }

  .food-heading {
    display: block;
  }

  .food-heading > p {
    margin-top: 12px;
  }

  .food-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .food-card img {
    height: 160px;
  }

  .food-facts span {
    font-size: 10px;
    line-height: 1.4;
  }

  .food-dishes span {
    font-size: 10px;
  }

  .return-banner {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .return-ticket {
    margin-top: 22px;
    width: 100%;
  }

  .quick-jump {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(2, minmax(76px, 1fr));
    gap: 7px;
  }

  .quick-jump-item {
    min-width: 70px;
    height: 34px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .plan-grid,
  .tip-grid {
    grid-template-columns: 1fr;
  }

  .weather-days {
    grid-template-columns: 1fr;
  }

  .weather-timeline-head {
    display: block;
  }

  .weather-timeline-head p:last-child {
    margin-top: 12px;
  }

  .trip-strip {
    grid-template-columns: 1fr;
  }

  .trip-strip button {
    grid-column: auto;
  }

  .trip-strip strong {
    font-size: 12px;
    line-height: 1.35;
  }

  .trip-strip div {
    padding-left: 14px;
  }

  .section-heading h2 {
    font-size: clamp(21px, 6vw, 30px);
  }

  .plan-grid,
  .tip-grid,
  .weather-days,
  .day-grid {
    grid-template-columns: 1fr;
  }

  .day-card {
    padding: 15px 13px;
  }

  .spot-item {
    grid-template-columns: 84px 1fr;
    align-items: start;
    gap: 12px;
  }

  .spot-item img {
    width: 84px;
    height: 66px;
  }

  .spot-item h3 {
    font-size: 14px;
    line-height: 1.25;
  }

  .spot-item small {
    margin-top: 4px;
    line-height: 1.35;
  }

  .spot-item b {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

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

  .guide-shot img {
    height: 142px;
  }

  .food-facts {
    gap: 4px;
  }

  .quick-jump {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(2, minmax(74px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
  }
}
