:root {
  --ink: #2d281f;
  --muted: #756c5d;
  --soft: #a79b87;
  --paper: #f7efe2;
  --paper-strong: #fff9ef;
  --paper-glass: rgba(255, 249, 239, 0.72);
  --brown: #3b3025;
  --brown-2: #5c4934;
  --gold: #b58b52;
  --gold-light: #dfc89f;
  /* 新增：中国红强调色系统 */
  --accent: #C45A4A;
  --accent-dark: #A84538;
  --accent-light: #E8D5D0;
  --accent-glow: rgba(196, 90, 74, 0.25);
  --line: rgba(143, 113, 72, 0.22);
  --shadow: 0 24px 70px rgba(77, 55, 32, 0.14);
  --shadow-soft: 0 12px 36px rgba(74, 55, 35, 0.11);
  --shadow-accent: 0 16px 36px rgba(196, 90, 74, 0.3);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", SimSun, "Noto Serif", Georgia, serif;
  --sans: Inter, "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  background:
    radial-gradient(circle at 18% 6%, rgba(232, 215, 186, 0.62), transparent 28rem),
    radial-gradient(circle at 82% 16%, rgba(190, 201, 199, 0.45), transparent 26rem),
    linear-gradient(180deg, #f6efe3 0%, #fbf5ea 42%, #f2e7d8 100%);
  overflow-x: hidden;
}

body::selection {
  color: #fff;
  background: var(--brown);
}

body.lang-switching main,
body.lang-switching footer {
  opacity: 0.35;
  transition: opacity 180ms var(--ease);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-paper {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 30%, rgba(98, 81, 58, 0.08), transparent 0.45rem),
    radial-gradient(circle at 74% 42%, rgba(112, 99, 82, 0.07), transparent 0.34rem),
    radial-gradient(circle at 48% 80%, rgba(185, 145, 91, 0.07), transparent 0.5rem),
    repeating-linear-gradient(92deg, rgba(77, 59, 39, 0.028) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
  mix-blend-mode: multiply;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  transition: transform 240ms var(--ease);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px clamp(18px, 4vw, 56px);
  transition: padding 280ms var(--ease), filter 280ms var(--ease);
}

.nav-shell {
  width: min(1340px, 100%);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(165, 132, 86, 0.18);
  border-radius: 999px;
  background: rgba(252, 246, 235, 0.48);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition: background 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 250, 241, 0.88);
  border-color: rgba(133, 98, 55, 0.28);
  box-shadow: 0 18px 50px rgba(74, 53, 32, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 8px 12px rgba(85, 59, 31, 0.14));
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  letter-spacing: 0.01em;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.96rem;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 240ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 120%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #554738;
  font-size: 0.9rem;
  white-space: nowrap;
}

.lang-btn,
.city-tabs button,
.question-pills button,
.address-actions button,
.itinerary-panel button,
.translate-panel button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lang-btn {
  min-height: 34px;
  padding: 4px 2px;
  border-radius: 999px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.lang-btn.is-active {
  color: var(--gold);
  font-weight: 700;
}

.telegram-link,
.btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(127, 89, 46, 0.25);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
}

.telegram-link {
  padding: 0 18px;
  background: rgba(255, 253, 247, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.telegram-link::before {
  content: "➤";
  transform: rotate(-18deg);
}

.telegram-link:hover,
.btn:hover,
.mini-btn:hover,
button:hover {
  transform: translateY(-2px);
}

.menu-toggle,
.menu-close {
  display: none;
}

.mobile-overlay,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 132px clamp(20px, 5vw, 72px) 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(158, 126, 83, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.75) 0%, rgba(248, 239, 225, 0.72) 50%, rgba(244, 232, 214, 0.88) 100%),
    radial-gradient(circle at 34% 17%, rgba(255, 255, 255, 0.82), transparent 16rem),
    radial-gradient(circle at 65% 28%, rgba(214, 224, 221, 0.35), transparent 20rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 46% -5% 0;
  background:
    radial-gradient(ellipse at 55% 20%, rgba(108, 129, 130, 0.11), transparent 33%),
    linear-gradient(180deg, transparent, rgba(201, 186, 162, 0.2));
  filter: blur(0.2px);
  opacity: 0.86;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 155px;
  background: linear-gradient(180deg, transparent, #f7efe2 74%, #f7efe2);
  pointer-events: none;
}

.hero-art,
.hero > img,
.gold-dust {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-mountains {
  left: -8%;
  top: 80px;
  width: 58%;
  min-width: 620px;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.hero-train {
  left: -1%;
  bottom: 110px;
  width: min(38vw, 560px);
  min-width: 360px;
  z-index: 2;
  filter: drop-shadow(0 18px 22px rgba(79, 67, 51, 0.18));
}

.hero-skyline {
  right: -1.5%;
  bottom: 112px;
  width: min(38vw, 560px);
  min-width: 390px;
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.hero-bamboo {
  right: -6px;
  top: 74px;
  width: min(22vw, 260px);
  opacity: 0.68;
  transform-origin: 88% 0;
}

.hero-pavilion {
  left: 2.5%;
  bottom: 236px;
  width: min(21vw, 250px);
  min-width: 160px;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.gold-dust {
  inset: 74px 9% auto;
  height: 160px;
  background:
    radial-gradient(circle at 12% 66%, rgba(174, 126, 58, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 38%, rgba(174, 126, 58, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 56%, rgba(174, 126, 58, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 25%, rgba(174, 126, 58, 0.42) 0 1px, transparent 2px);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero-kicker,
.section-heading p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.why-card h2,
.final-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 1.04;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.45), 0 20px 42px rgba(73, 53, 32, 0.11);
}

.hero-russian {
  margin: 10px 0 2px;
  color: #776953;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.06em;
}

.hero-lead {
  margin: 4px auto 22px;
  max-width: 690px;
  color: #51483b;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-search {
  width: min(680px, 100%);
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34px 1fr 48px;
  align-items: center;
  gap: 6px;
  padding: 5px 6px 5px 18px;
  border: 1px solid rgba(127, 89, 46, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 42px rgba(77, 55, 33, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.search-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.hero-search input::placeholder {
  color: #9d927f;
}

.hero-search button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #D46858, #A84538);
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(196, 90, 74, 0.3);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.hero-search button:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 24px rgba(196, 90, 74, 0.38);
}

.question-pills {
  margin: 22px auto 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.question-pills button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(135, 101, 61, 0.22);
  border-radius: 999px;
  color: #554a3c;
  background: rgba(255, 251, 244, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 22px rgba(75, 56, 36, 0.07);
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-width: 192px;
  padding: 0 25px;
  font-weight: 700;
}

.btn-dark {
  color: #fff;
  border-color: rgba(168, 69, 56, 0.9);
  background: linear-gradient(135deg, #D46858 0%, #A84538 90%);
  box-shadow: var(--shadow-accent);
}

.btn-dark:hover {
  box-shadow: 0 20px 42px rgba(196, 90, 74, 0.38);
}

.btn-light {
  color: #4a3a2a;
  background: rgba(255, 249, 239, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 10px 30px rgba(76, 55, 32, 0.09);
}

.stats-grid {
  width: min(620px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stats-grid div {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(146, 112, 69, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.5);
  backdrop-filter: blur(8px);
}

.stats-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(196, 90, 74, 0.15);
}

.stats-grid span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto 18px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 116, 72, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.9), rgba(245, 234, 218, 0.72)),
    radial-gradient(circle at 88% 14%, rgba(205, 181, 142, 0.26), transparent 15rem);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(84, 75, 62, 0.035), transparent 6rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 36%, rgba(184, 151, 102, 0.08));
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(179, 137, 75, 0.42);
  box-shadow: 0 24px 70px rgba(71, 51, 31, 0.17), 0 0 0 1px rgba(226, 197, 150, 0.26);
}

.assistant-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 18px;
  margin-top: 18px;
}

.app-preview {
  min-height: 305px;
  display: grid;
  grid-template-columns: 168px 1fr;
  padding: 16px;
}

.app-sidebar {
  position: relative;
  z-index: 1;
  padding: 20px 14px;
  border-radius: 22px;
  background: rgba(238, 226, 208, 0.56);
}

.app-sidebar h2 {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.app-sidebar a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 12px;
  color: #5d5143;
  font-size: 0.86rem;
}

.app-sidebar a.active,
.app-sidebar a:hover {
  background: rgba(255, 248, 236, 0.82);
  color: var(--ink);
}

.app-main {
  position: relative;
  z-index: 1;
  padding: 20px 20px 16px;
}

.chat-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.tool-row span {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(144, 112, 74, 0.15);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.62);
}

.tool-row em {
  font-style: normal;
  color: #6a5c4a;
  font-size: 0.78rem;
}

.message {
  width: fit-content;
  max-width: 82%;
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
}

.message.user {
  margin-left: auto;
  color: #6b604f;
  background: rgba(235, 223, 207, 0.82);
}

.message.bot {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(145, 112, 70, 0.12);
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbs span {
  width: 104px;
  height: 64px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(170, 202, 214, 0.3), rgba(255, 246, 230, 0.76)),
    linear-gradient(90deg, #ae9270 0 12%, transparent 12% 18%, #6f8291 18% 30%, transparent 30% 36%, #c1a779 36% 48%, transparent 48%);
  box-shadow: inset 0 0 0 1px rgba(116, 87, 54, 0.12);
}

.why-card {
  min-height: 305px;
  padding: 34px 34px 30px;
}

.why-card h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.why-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.why-list > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(225, 207, 177, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.why-list p {
  margin: 0;
}

.why-list strong,
.why-list em {
  display: block;
}

.why-list strong {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.why-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.93rem;
}

.card-bamboo {
  position: absolute;
  right: -20px;
  top: 30px;
  width: 185px;
  opacity: 0.22;
  filter: grayscale(0.2);
}

.mini-skyline {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 230px;
  height: 76px;
  opacity: 0.16;
  background:
    linear-gradient(to top, rgba(70, 83, 88, 0.65) 0 38px, transparent 38px) 15px 100% / 16px 66px no-repeat,
    linear-gradient(to top, rgba(70, 83, 88, 0.6) 0 54px, transparent 54px) 58px 100% / 24px 72px no-repeat,
    linear-gradient(to top, rgba(70, 83, 88, 0.64) 0 66px, transparent 66px) 105px 100% / 28px 76px no-repeat,
    linear-gradient(to top, rgba(70, 83, 88, 0.55) 0 46px, transparent 46px) 158px 100% / 42px 64px no-repeat;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.section-heading.compact h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
}

.address-card {
  padding: 30px 34px 28px;
}

.address-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  background: url("ink-mountains.svg") right bottom / 92% auto no-repeat;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.address-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1.1fr;
  gap: 12px;
  align-items: end;
  padding-right: 230px;
}

.flow-step {
  min-width: 0;
}

.step-num {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #D46858, #A84538);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 6px 14px rgba(196, 90, 74, 0.3);
}

.flow-step > strong {
  font-family: var(--serif);
  font-size: 1.03rem;
}

.address-box {
  min-height: 104px;
  margin-top: 10px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(142, 107, 64, 0.18);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.address-box.highlight {
  background: rgba(255, 250, 241, 0.9);
  box-shadow: inset 0 0 0 1px rgba(181, 139, 82, 0.18), 0 10px 26px rgba(73, 53, 32, 0.08);
}

.address-box span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
}

.address-box p {
  margin: 4px 0 4px;
  font-weight: 700;
}

.address-box small {
  color: var(--muted);
}

.flow-arrow {
  align-self: center;
  justify-self: center;
  color: var(--gold);
  font-size: 2rem;
}

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

.address-actions button,
.itinerary-panel button,
.translate-panel button {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(145, 111, 67, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.address-car {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 240px;
  filter: drop-shadow(0 20px 24px rgba(76, 56, 35, 0.16));
}

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

.hotel-card {
  min-height: 186px;
  padding: 24px 22px;
}

.hotel-card::after,
.faq-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 180px;
  height: 140px;
  background: url("pavilion.svg") center / contain no-repeat;
  opacity: 0.12;
}

.hotel-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #D46858, #A84538);
  box-shadow: 0 6px 14px rgba(196, 90, 74, 0.25);
  font-family: var(--serif);
  font-weight: 700;
}

.hotel-card h3,
.faq-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.hotel-card p,
.faq-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-btn {
  position: relative;
  z-index: 1;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  border-color: rgba(168, 69, 56, 0.85);
  background: linear-gradient(135deg, #D46858, #A84538);
  box-shadow: 0 6px 16px rgba(196, 90, 74, 0.25);
  font-size: 0.88rem;
  font-weight: 700;
}

.mini-btn:hover {
  box-shadow: 0 10px 22px rgba(196, 90, 74, 0.32);
}

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

.faq-card {
  min-height: 160px;
  padding: 22px;
}

.faq-card > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: rgba(222, 207, 181, 0.42);
  font-size: 1.35rem;
}

.food-entry-card {
  min-height: 160px;
  padding: 0;
}

.food-entry-button {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 160px;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 7px;
  padding: 22px;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.food-entry-button span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(222, 207, 181, 0.42);
  font-size: 1.3rem;
}

.food-entry-button strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.food-entry-button em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.94rem;
}

.food-section {
  margin-top: 8px;
}

.food-panel {
  max-height: 0;
  padding: 0 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: max-height 480ms var(--ease), padding 320ms var(--ease), opacity 260ms var(--ease), transform 320ms var(--ease), visibility 320ms var(--ease);
}

.food-panel.is-open {
  max-height: 2600px;
  padding: 34px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.food-panel::after {
  content: "";
  position: absolute;
  inset: auto -5% -10% 38%;
  height: 340px;
  background: url("ink-mountains.svg") right bottom / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.food-bamboo {
  position: absolute;
  right: -28px;
  top: 22px;
  width: 210px;
  opacity: 0.14;
  pointer-events: none;
}

.food-subtitle {
  max-width: 760px;
  color: #6a5d4c !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 1rem !important;
}

.food-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.meal-tabs,
.food-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meal-tabs button,
.food-filters button,
.pick-food-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(143, 108, 66, 0.17);
  border-radius: 999px;
  color: #574b3d;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 20px rgba(76, 55, 32, 0.07);
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.meal-tabs button.active,
.food-filters button.active {
  color: #fff;
  background: linear-gradient(135deg, #604b37, #2f261e);
}

.pick-food-button {
  color: #fff;
  border-color: rgba(168, 69, 56, 0.9);
  background: linear-gradient(135deg, #D46858, #A84538);
  box-shadow: 0 10px 24px rgba(196, 90, 74, 0.28);
}

.pick-food-button:hover {
  box-shadow: 0 14px 32px rgba(196, 90, 74, 0.36);
}

.pick-food-button {
  flex: 0 0 auto;
  font-weight: 700;
}

.food-filters {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.food-reason {
  position: relative;
  z-index: 2;
  min-height: 30px;
  margin-bottom: 10px;
  color: #8b6535;
  font-family: var(--serif);
  font-size: 1.02rem;
}

.food-results {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), filter 220ms var(--ease);
}

.food-results.is-changing {
  opacity: 0.42;
  transform: translateY(8px);
}

.food-results.is-shuffling .food-card {
  opacity: 0.68;
  transform: translateY(6px) rotate(var(--shuffle-tilt, 0.4deg));
}

.food-results.is-shuffling .food-card:nth-child(2n) {
  --shuffle-tilt: -0.4deg;
}

.food-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(143, 108, 66, 0.28);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 251, 244, 0.56);
}

.food-card {
  position: relative;
  overflow: hidden;
  min-height: 438px;
  padding: 20px;
  border: 1px solid rgba(143, 108, 66, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 10%, rgba(203, 178, 135, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(255, 252, 247, 0.86), rgba(245, 235, 219, 0.72));
  box-shadow: 0 12px 34px rgba(74, 55, 34, 0.1);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease), opacity 220ms var(--ease);
}

.food-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -58px;
  width: 170px;
  height: 140px;
  background: url("pavilion.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.food-card:hover,
.food-card:focus-visible,
.food-card.is-picked {
  transform: translateY(-5px);
  border-color: rgba(181, 139, 82, 0.45);
  box-shadow: 0 24px 62px rgba(71, 51, 31, 0.16), 0 0 0 1px rgba(226, 197, 150, 0.22);
}

.food-card.is-picked {
  background:
    radial-gradient(circle at 86% 10%, rgba(205, 158, 88, 0.28), transparent 9rem),
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(246, 232, 208, 0.84));
}

.food-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.food-card h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.food-card p {
  margin: 0;
  color: #665949;
  font-size: 0.9rem;
}

.food-copy-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-height: 116px;
  margin-bottom: 13px;
}

.food-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}

.food-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #6b5b48;
  background: rgba(238, 225, 205, 0.52);
  font-size: 0.75rem;
}

.food-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.food-actions button {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(143, 108, 66, 0.16);
  border-radius: 13px;
  color: #5f472d;
  background: rgba(255, 250, 242, 0.72);
  cursor: pointer;
  font-size: 0.82rem;
  transition: transform 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.food-actions button:hover {
  background: rgba(252, 241, 222, 0.94);
  box-shadow: 0 8px 18px rgba(74, 55, 34, 0.1);
}

.food-icon {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 240, 0.9), rgba(231, 216, 190, 0.48)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(179, 139, 82, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 12px 24px rgba(74, 55, 34, 0.08);
}

.burger-icon span,
.noodles-icon span,
.steak-icon span,
.hotpot-icon span,
.dumpling-icon span,
.bowl-icon span {
  position: absolute;
  display: block;
}

.burger-icon .bun {
  left: 17px;
  width: 44px;
  height: 14px;
  border-radius: 18px 18px 7px 7px;
  background: #c79a61;
}

.burger-icon .top { top: 20px; }
.burger-icon .lettuce { left: 16px; top: 36px; width: 46px; height: 7px; border-radius: 999px; background: #777764; }
.burger-icon .cheese { left: 20px; top: 43px; width: 38px; height: 6px; background: #d8b164; clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%); }
.burger-icon .patty { left: 18px; top: 50px; width: 42px; height: 8px; border-radius: 999px; background: #7a4d38; }
.burger-icon .bottom { top: 60px; border-radius: 6px 6px 15px 15px; }

.food-card.is-playing .burger-icon .top { animation: burgerTop 620ms var(--ease); }
.food-card.is-playing .burger-icon .lettuce { animation: burgerLeaf 620ms var(--ease); }
.food-card.is-playing .burger-icon .cheese { animation: burgerCheese 620ms var(--ease); }
.food-card.is-playing .burger-icon .patty { animation: burgerPatty 620ms var(--ease); }

@keyframes burgerTop { 45% { transform: translateY(-9px); } }
@keyframes burgerLeaf { 45% { transform: translateY(-4px); } }
@keyframes burgerCheese { 45% { transform: translateY(4px); } }
@keyframes burgerPatty { 45% { transform: translateY(8px); } }

.noodles-icon .bowl,
.bowl-icon .bowl {
  left: 16px;
  bottom: 15px;
  width: 48px;
  height: 22px;
  border-radius: 4px 4px 24px 24px;
  background: linear-gradient(180deg, #efe2ca, #a58355);
  border: 2px solid rgba(86, 65, 42, 0.36);
}

.noodles-icon .chopstick {
  width: 48px;
  height: 2px;
  right: 11px;
  top: 18px;
  background: #6a5946;
  transform-origin: 80% 50%;
}

.noodles-icon .one { transform: rotate(-18deg); }
.noodles-icon .two { transform: rotate(-8deg); top: 24px; }
.noodles-icon .noodle {
  top: 29px;
  width: 3px;
  height: 26px;
  border-radius: 999px;
  background: #b98a50;
}

.noodles-icon .n1 { left: 31px; }
.noodles-icon .n2 { left: 39px; height: 29px; }
.noodles-icon .n3 { left: 47px; }

.food-card.is-playing .noodles-icon .chopstick { animation: chopLift 720ms var(--ease); }
.food-card.is-playing .noodles-icon .noodle { animation: noodleWave 720ms var(--ease); }
@keyframes chopLift { 45% { transform: rotate(-24deg) translateY(-6px); } }
@keyframes noodleWave { 35% { transform: translateY(-6px) scaleY(1.14); } 70% { transform: translateY(2px); } }

.steak-icon .plate {
  left: 13px;
  bottom: 14px;
  width: 52px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.88);
  border: 2px solid rgba(107, 82, 50, 0.24);
}

.steak-icon .steak {
  left: 23px;
  bottom: 23px;
  width: 34px;
  height: 25px;
  border-radius: 54% 46% 55% 45%;
  background: linear-gradient(135deg, #9e5946, #6a3c31);
}

.steak-icon .steam,
.dumpling-icon .steam,
.bowl-icon .steam {
  width: 12px;
  height: 26px;
  border-left: 2px solid rgba(112, 102, 86, 0.42);
  border-radius: 50%;
  opacity: 0;
}

.steak-icon .s1 { left: 28px; top: 13px; }
.steak-icon .s2 { left: 44px; top: 10px; }
.food-card.is-playing .steak-icon .steam,
.food-card.is-playing .dumpling-icon .steam,
.food-card.is-playing .bowl-icon .steam { animation: foodSteam 820ms var(--ease); }
@keyframes foodSteam { 0% { opacity: 0; transform: translateY(8px); } 35% { opacity: .75; } 100% { opacity: 0; transform: translateY(-12px); } }

.hotpot-icon .pot {
  left: 14px;
  bottom: 16px;
  width: 52px;
  height: 28px;
  border-radius: 8px 8px 22px 22px;
  background: linear-gradient(180deg, #a78357, #5e4b39);
}

.hotpot-icon .broth {
  left: 20px;
  bottom: 38px;
  width: 40px;
  height: 11px;
  border-radius: 50%;
  background: rgba(158, 72, 55, 0.68);
}

.hotpot-icon .bubble {
  width: 7px;
  height: 7px;
  border: 1.5px solid rgba(255, 245, 220, 0.9);
  border-radius: 50%;
  opacity: 0.35;
}

.hotpot-icon .b1 { left: 27px; top: 30px; }
.hotpot-icon .b2 { left: 39px; top: 25px; }
.hotpot-icon .b3 { left: 50px; top: 31px; }
.food-card.is-playing .hotpot-icon .bubble { animation: hotpotBubble 760ms var(--ease); }
@keyframes hotpotBubble { 50% { opacity: 1; transform: translateY(-9px) scale(1.18); } 100% { opacity: 0; transform: translateY(-15px) scale(.72); } }

.dumpling-icon .basket {
  left: 14px;
  bottom: 15px;
  width: 52px;
  height: 24px;
  border-radius: 4px 4px 22px 22px;
  background: repeating-linear-gradient(90deg, #a77e4d 0 6px, #c49a61 6px 12px);
}

.dumpling-icon .dumpling {
  bottom: 36px;
  width: 22px;
  height: 14px;
  border-radius: 18px 18px 7px 7px;
  background: #f4ead7;
  border: 1px solid rgba(114, 87, 54, 0.25);
}

.dumpling-icon .d1 { left: 20px; }
.dumpling-icon .d2 { left: 38px; }
.dumpling-icon .s1,
.bowl-icon .s1 { left: 28px; top: 9px; }
.dumpling-icon .s2,
.bowl-icon .s2 { left: 45px; top: 7px; }

.city-food-strip {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(143, 108, 66, 0.14);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.62);
}

.city-food-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.city-food-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-food-chips span {
  padding: 7px 13px;
  border-radius: 999px;
  color: #6a4d2d;
  background: rgba(232, 214, 184, 0.56);
  font-size: 0.88rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
}

.city-card,
.ai-card {
  padding: 28px;
}

.city-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.city-tabs button {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: #5c5143;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(143, 108, 66, 0.16);
}

.city-tabs button.active {
  color: #fff;
  background: var(--brown);
}

.route-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 14px;
  min-height: 306px;
}

.route-info {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid rgba(143, 108, 66, 0.14);
}

.route-info strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.route-info p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-visual {
  position: relative;
  min-height: 306px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(143, 108, 66, 0.13);
  background:
    linear-gradient(90deg, rgba(128, 117, 96, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(0deg, rgba(128, 117, 96, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    radial-gradient(circle at 70% 32%, rgba(159, 191, 191, 0.22), transparent 12rem),
    rgba(255, 253, 249, 0.7);
}

.map-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-visual .river {
  fill: none;
  stroke: rgba(122, 170, 180, 0.34);
  stroke-width: 38;
  stroke-linecap: round;
}

.map-visual .route-line {
  fill: none;
  stroke: #9d7140;
  stroke-width: 5;
  stroke-dasharray: 11 8;
  stroke-linecap: round;
}

.map-visual circle {
  fill: #fff7e8;
  stroke: #9d7140;
  stroke-width: 4;
}

.map-label {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  color: #5a4431;
  background: rgba(255, 249, 239, 0.88);
  box-shadow: 0 8px 20px rgba(76, 56, 33, 0.12);
  font-size: 0.84rem;
}

.label-1 { left: 11%; top: 57%; }
.label-2 { left: 42%; top: 32%; }
.label-3 { left: 59%; top: 70%; }
.label-4 { right: 9%; top: 35%; }

.ai-panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.itinerary-panel,
.translate-panel {
  min-height: 306px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(143, 108, 66, 0.14);
  background: rgba(255, 251, 244, 0.72);
}

.itinerary-panel > strong,
.translate-head strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.itinerary-panel div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 8px 0;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(242, 232, 216, 0.62);
}

.itinerary-panel span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.83rem;
}

.itinerary-panel p {
  margin: 0;
  color: #625545;
  font-size: 0.9rem;
}

.itinerary-panel button {
  width: 100%;
  margin-top: 12px;
  color: #fff;
  border-color: rgba(168, 69, 56, 0.9);
  background: linear-gradient(135deg, #D46858, #A84538);
  box-shadow: 0 8px 20px rgba(196, 90, 74, 0.25);
  font-weight: 700;
}

.itinerary-panel button:hover {
  box-shadow: 0 12px 28px rgba(196, 90, 74, 0.32);
}

.translate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.translate-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.translate-question,
.translate-answer {
  margin: 12px 0;
  padding: 14px;
  border-radius: 16px;
}

.translate-question {
  background: rgba(245, 237, 225, 0.86);
}

.translate-answer {
  color: #4a443a;
  background: rgba(235, 240, 240, 0.8);
}

.translate-panel button {
  padding: 0 18px;
  color: #654c30;
  font-weight: 700;
}

.final-cta {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(151, 116, 72, 0.18);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(242, 230, 212, 0.86));
}

.footer-landscape,
.footer-pavilion,
.footer-train {
  position: absolute;
  pointer-events: none;
}

.footer-landscape {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.footer-pavilion {
  left: 56px;
  bottom: 25px;
  width: 245px;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.footer-train {
  right: 40px;
  bottom: 14px;
  width: 330px;
  filter: drop-shadow(0 14px 18px rgba(65, 50, 35, 0.18));
}

.final-copy {
  position: relative;
  z-index: 2;
  width: min(740px, 100%);
  padding: 38px 24px;
  text-align: center;
}

.final-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.final-copy p {
  margin: 8px 0 18px;
  color: #5e5448;
}

.final-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.final-tags span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(143, 108, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
}

.site-footer {
  width: min(1340px, calc(100% - 48px));
  margin: 20px auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #766b5c;
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 1600;
  min-width: 180px;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  background: rgba(48, 38, 29, 0.94);
  box-shadow: 0 16px 42px rgba(53, 37, 24, 0.25);
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float-slow {
  animation: floatSlow 6.8s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,
  100% { translate: 0 0; rotate: 0deg; }
  50% { translate: -5px 8px; rotate: -1.2deg; }
}

:focus-visible {
  outline: 3px solid rgba(181, 139, 82, 0.72);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .language-switcher {
    display: none;
  }

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

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

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

  .food-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .food-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .address-flow {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .address-car {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    margin-top: -30px;
  }

  .footer-pavilion {
    left: 18px;
    opacity: 0.45;
  }

  .footer-train {
    right: -40px;
    opacity: 0.74;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 10px 14px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px 10px 8px 14px;
  }

  .desktop-nav,
  .nav-actions > .telegram-link {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(127, 89, 46, 0.22);
    border-radius: 50%;
    background: rgba(255, 250, 242, 0.76);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--brown);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    background: rgba(37, 28, 20, 0.34);
    backdrop-filter: blur(5px);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: min(86vw, 360px);
    height: 100dvh;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
    background: rgba(255, 250, 241, 0.94);
    box-shadow: -28px 0 70px rgba(48, 36, 24, 0.22);
    transform: translateX(104%);
    transition: transform 300ms var(--ease);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
  }

  .menu-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(236, 221, 199, 0.62);
    cursor: pointer;
    font-size: 1.6rem;
  }

  .mobile-menu > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 253, 249, 0.66);
  }

  .mobile-language {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 10px 0;
  }

  .mobile-language .lang-btn {
    min-height: 44px;
    padding: 0 10px;
    border: 1px solid rgba(143, 108, 66, 0.17);
    background: rgba(255, 253, 249, 0.68);
  }

  .mobile-telegram {
    width: 100%;
  }

  .hero {
    min-height: 780px;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-mountains {
    left: -30%;
    top: 92px;
    min-width: 640px;
    opacity: 0.5;
  }

  .hero-train {
    left: -120px;
    bottom: 104px;
    min-width: 390px;
    opacity: 0.86;
  }

  .hero-skyline {
    right: -180px;
    bottom: 130px;
    min-width: 430px;
    opacity: 0.55;
  }

  .hero-bamboo {
    right: -60px;
    width: 180px;
  }

  .hero-pavilion {
    left: -20px;
    bottom: 248px;
    width: 150px;
  }

  .hero-search {
    grid-template-columns: 26px 1fr 46px;
    min-height: 56px;
  }

  .question-pills,
  .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .question-pills button,
  .hero-cta .btn {
    width: 100%;
  }

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

  .section {
    width: min(100% - 28px, 680px);
  }

  .app-preview {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .tool-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card,
  .address-card,
  .city-card,
  .ai-card {
    padding: 24px 18px;
  }

  .hotel-grid,
  .faq-grid,
  .ai-panels,
  .food-results,
  .route-card {
    grid-template-columns: 1fr;
  }

  .food-panel.is-open {
    padding: 24px 18px;
  }

  .meal-tabs,
  .food-filters {
    width: 100%;
  }

  .meal-tabs button,
  .food-filters button,
  .pick-food-button {
    flex: 1 1 auto;
    min-width: calc(50% - 6px);
  }

  .pick-food-button {
    width: 100%;
  }

  .food-card {
    min-height: auto;
  }

  .food-actions {
    grid-template-columns: 1fr;
  }

  .address-actions {
    grid-template-columns: 1fr;
  }

  .address-car {
    width: 210px;
    margin-top: 4px;
  }

  .map-visual {
    min-height: 260px;
  }

  .final-cta {
    min-height: 360px;
  }

  .footer-pavilion {
    width: 180px;
  }

  .footer-train {
    width: 260px;
    right: -72px;
  }

  .brand-title {
    font-size: 1.12rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-search {
    border-radius: 22px;
    grid-template-columns: 22px 1fr 44px;
  }

  .hero-search input {
    font-size: 0.88rem;
  }

  .section-heading h2,
  .why-card h2 {
    font-size: 1.8rem;
  }

  .chat-title {
    font-size: 1.26rem;
  }

  .footer-pavilion {
    left: -34px;
  }

  .final-copy {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
