:root {
  --ink: #17231d;
  --muted: #667168;
  --paper: #fbf6eb;
  --card: #fffdf8;
  --leaf: #203b34;
  --moss: #6f8f55;
  --amber: #d99a3d;
  --clay: #b45d3e;
  --water: #86b6b1;
  --stone: #d8d2c4;
  --line: rgba(23, 35, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 235, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(23, 35, 29, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.nav-cta,
.primary,
.ghost {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 900;
}

.primary,
.nav-cta {
  background: var(--leaf);
  color: #fff;
}

.ghost {
  background: #efe3cf;
  color: #644a2b;
}

.full {
  width: 100%;
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 7vw, 88px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(120deg, rgba(30, 54, 48, 0.96), rgba(42, 75, 61, 0.76)),
    radial-gradient(circle at 78% 18%, rgba(217, 154, 61, 0.28), transparent 30%),
    linear-gradient(135deg, #28463e, #d9c59c);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.hero-scene {
  min-height: 570px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ecdcae 0%, #d7e0c2 42%, #8fb39c 72%, #6f9f98 100%);
  box-shadow: inset 0 -80px 120px rgba(23, 35, 29, 0.24), 0 28px 70px rgba(0, 0, 0, 0.22);
}

.hero-scene.scene-road {
  background:
    linear-gradient(180deg, #f2d08c 0%, #bdd5ba 42%, #78a187 72%, #4f7d77 100%);
}

.hero-scene.scene-dusk {
  background:
    linear-gradient(180deg, #d49a67 0%, #b78473 40%, #607b6e 72%, #284a4b 100%);
}

.film-grain,
.light-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.film-grain {
  z-index: 4;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(23,35,29,0.35) 0 1px, transparent 1px);
  background-size: 22px 22px, 18px 18px;
  mix-blend-mode: soft-light;
  animation: grainMove 1.8s steps(3) infinite;
}

.light-beam {
  z-index: 1;
  width: 44%;
  background: linear-gradient(100deg, transparent, rgba(255, 253, 248, 0.26), transparent);
  transform: skewX(-18deg);
  animation: beamSweep 9s ease-in-out infinite;
}

.beam-a { left: -35%; }
.beam-b { left: 32%; animation-delay: 4.2s; opacity: 0.55; }

.water-line {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 3px;
  background: rgba(255, 253, 248, 0.54);
  animation: waterDrift 8s linear infinite;
}

.water-a { bottom: 118px; }
.water-b { bottom: 88px; animation-duration: 12s; opacity: 0.64; }

.hill {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 220px;
  clip-path: polygon(0 82%, 14% 48%, 28% 66%, 44% 28%, 58% 70%, 74% 38%, 100% 76%, 100% 100%, 0 100%);
}

.hill-back {
  bottom: 190px;
  background: #8ba76d;
  opacity: 0.76;
  animation: mountainBreath 9s ease-in-out infinite;
}

.hill-front {
  bottom: 142px;
  background: #486f4a;
  animation: mountainBreath 10s ease-in-out infinite reverse;
}

.moon-gate {
  position: absolute;
  right: 12%;
  top: 62px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 16px solid rgba(255, 253, 248, 0.78);
  box-shadow: 0 0 52px rgba(255, 253, 248, 0.26);
  animation: softPulse 6s ease-in-out infinite;
}

.wupeng-boat {
  position: absolute;
  left: 9%;
  bottom: 84px;
  width: 160px;
  height: 48px;
  border-radius: 0 0 70px 70px;
  background: #2b211d;
  animation: boatFloat 5s ease-in-out infinite;
}

.wupeng-boat::before {
  content: "";
  position: absolute;
  left: 46px;
  bottom: 26px;
  width: 68px;
  height: 46px;
  border-radius: 70px 70px 0 0;
  background: #1f1714;
}

.wupeng-boat span {
  position: absolute;
  right: -42px;
  top: -30px;
  width: 5px;
  height: 100px;
  border-radius: 999px;
  background: rgba(43, 33, 29, 0.76);
  transform: rotate(24deg);
}

.coffee-house {
  position: absolute;
  right: 13%;
  bottom: 142px;
  width: 148px;
  height: 96px;
  border-radius: 16px;
  background: var(--card);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(23, 35, 29, 0.24);
}

.coffee-house::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -42px;
  height: 54px;
  background: var(--clay);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.coffee-house strong {
  position: relative;
  font-size: 28px;
  z-index: 1;
}

.steam-cloud {
  position: absolute;
  width: 28px;
  height: 82px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  filter: blur(8px);
  animation: steamRise 3.8s ease-in-out infinite;
}

.steam-a { right: 26%; bottom: 230px; }
.steam-b { right: 20%; bottom: 220px; animation-delay: 1s; }

.floating-bean {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8a4d25 0 48%, #2f241c 48% 52%, #b87333 52%);
  box-shadow: 0 10px 18px rgba(23, 35, 29, 0.18);
  animation: beanFloat 6s ease-in-out infinite;
}

.bean-a { left: 18%; top: 18%; }
.bean-b { right: 28%; top: 34%; animation-delay: 1.4s; }
.bean-c { left: 46%; bottom: 18%; animation-delay: 2.6s; }

.stone-path {
  position: absolute;
  right: 18%;
  bottom: -50px;
  width: 170px;
  height: 210px;
  transform: rotate(9deg);
  background: repeating-linear-gradient(180deg, var(--stone) 0 22px, #c5beae 22px 25px, var(--stone) 25px 48px);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}

.scene-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  min-height: 54px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 860px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.hero-text,
.section-text {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
  max-width: 700px;
}

.hero-facts {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-facts span {
  min-height: 38px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  font-size: 14px;
}

.notice-board {
  margin: -42px auto 0;
  width: min(1180px, calc(100% - 36px));
  position: relative;
  z-index: 3;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(360px, 1fr) minmax(180px, 0.42fr);
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(23, 35, 29, 0.14);
}

.notice-board h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 0;
}

.section-text {
  color: var(--muted);
}

.hero-actions,
.route-actions,
.visit-actions,
.passport-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.scene-switcher {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.scene-chip {
  min-height: 38px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
}

.scene-chip.active {
  background: var(--amber);
  color: var(--leaf);
}

.hero-card {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.bean-mark {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.notice-list {
  display: grid;
  gap: 12px;
}

.notice {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
}

.notice strong,
.week-card strong,
.project-card strong {
  display: block;
}

.tag {
  min-width: 48px;
  height: 30px;
  border-radius: 999px;
  background: #e8f0e8;
  color: #275044;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.notice small,
.week-card small {
  color: var(--muted);
  line-height: 1.5;
}

.notice button {
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  padding: 9px 13px;
  font-weight: 900;
}

.prep-pill {
  margin-top: 18px;
  border-radius: 16px;
  background: #f2e7d1;
  color: var(--ink);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.prep-pill span {
  font-size: 22px;
  font-weight: 900;
}

.mood-strip {
  margin: -26px auto 0;
  width: min(1120px, calc(100% - 36px));
  position: relative;
  z-index: 2;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  box-shadow: 0 18px 48px rgba(23, 35, 29, 0.14);
}

.dream {
  background:
    linear-gradient(180deg, #fff9ee, #eef2df);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.dream-copy {
  max-width: 680px;
}

.dream-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.motion-scene {
  min-height: 520px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f9e8bd 0%, #dbe7c4 48%, #8dab68 100%);
  border: 1px solid rgba(23, 35, 29, 0.12);
  box-shadow: inset 0 -70px 100px rgba(32, 59, 52, 0.24);
}

.sky-line {
  position: absolute;
  left: -22%;
  width: 144%;
  height: 2px;
  background: rgba(255, 253, 248, 0.72);
  animation: driftLine 16s linear infinite;
}

.sky-line-a {
  top: 70px;
}

.sky-line-b {
  top: 118px;
  animation-duration: 22s;
  opacity: 0.55;
}

.sun {
  position: absolute;
  right: 54px;
  top: 52px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #f4bc55;
  box-shadow: 0 0 70px rgba(244, 188, 85, 0.5);
  animation: softPulse 5s ease-in-out infinite;
}

.mountain {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 180px;
  height: 210px;
  clip-path: polygon(0 82%, 12% 48%, 25% 70%, 39% 26%, 54% 68%, 68% 34%, 82% 64%, 100% 22%, 100% 100%, 0 100%);
}

.mountain-back {
  background: #86a36d;
  opacity: 0.72;
  bottom: 222px;
  animation: mountainBreath 8s ease-in-out infinite;
}

.mountain-front {
  background: #4d744e;
  animation: mountainBreath 9s ease-in-out infinite reverse;
}

.country-road {
  position: absolute;
  left: 34%;
  bottom: -92px;
  width: 260px;
  height: 330px;
  background: linear-gradient(180deg, rgba(238, 226, 199, 0.8), #dbc397);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  transform: rotate(-8deg);
}

.country-road::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 4px;
  height: 260px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.86) 0 22px, transparent 22px 42px);
  animation: roadFlow 1.8s linear infinite;
}

.coffee-stop {
  position: absolute;
  left: 12%;
  bottom: 122px;
  width: 132px;
  height: 96px;
  animation: stopFloat 4.8s ease-in-out infinite;
}

.stop-roof {
  width: 142px;
  height: 42px;
  background: var(--clay);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.stop-body {
  margin: -1px auto 0;
  width: 102px;
  height: 62px;
  border-radius: 10px;
  background: var(--card);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.cup {
  position: absolute;
  right: 17%;
  bottom: 128px;
  width: 104px;
  height: 74px;
  border-radius: 0 0 34px 34px;
  background: #fffdf8;
  box-shadow: 0 16px 34px rgba(23, 35, 29, 0.2);
}

.cup::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 18px;
  width: 34px;
  height: 30px;
  border: 9px solid #fffdf8;
  border-left: 0;
  border-radius: 0 20px 20px 0;
}

.steam {
  position: absolute;
  bottom: 78px;
  width: 12px;
  height: 70px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  filter: blur(5px);
  animation: steamRise 3.4s ease-in-out infinite;
}

.s1 { left: 22px; }
.s2 { left: 48px; animation-delay: 0.8s; }
.s3 { left: 74px; animation-delay: 1.5s; }

.route-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fffdf8;
  border: 4px solid var(--amber);
  box-shadow: 0 0 0 7px rgba(217, 154, 61, 0.18);
  animation: dotGlow 2.4s ease-in-out infinite;
}

.dot-a { left: 44%; bottom: 172px; }
.dot-b { left: 53%; bottom: 112px; animation-delay: 0.6s; }
.dot-c { left: 62%; bottom: 54px; animation-delay: 1.2s; }

.scene-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
}

@keyframes driftLine {
  from { transform: translateX(-6%); }
  to { transform: translateX(6%); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes mountainBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes roadFlow {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-50%) translateY(42px); }
}

@keyframes stopFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes steamRise {
  0% { transform: translateY(18px) scaleY(0.7); opacity: 0; }
  35% { opacity: 0.8; }
  100% { transform: translateY(-32px) scaleY(1.16); opacity: 0; }
}

@keyframes dotGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.72; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes grainMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(2px, -2px); }
  100% { transform: translate(-1px, 1px); }
}

@keyframes beamSweep {
  0%, 100% { transform: translateX(0) skewX(-18deg); opacity: 0.08; }
  50% { transform: translateX(90%) skewX(-18deg); opacity: 0.34; }
}

@keyframes beanFloat {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-18px) rotate(10deg); }
}

@keyframes waterDrift {
  from { transform: translateX(-5%); }
  to { transform: translateX(5%); }
}

@keyframes boatFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.mood {
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.mood.active {
  background: var(--leaf);
  color: #fff;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head.narrow {
  max-width: 900px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.story {
  background: #fff9ee;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr;
  gap: 16px;
}

.story-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card.lead {
  background: var(--leaf);
  color: #fff;
}

.story-card span {
  color: var(--amber);
  font-weight: 900;
}

.story-card h3 {
  margin-bottom: 12px;
}

.story-card p {
  color: var(--muted);
  line-height: 1.75;
}

.story-card.lead p {
  color: rgba(255, 255, 255, 0.74);
}

.shaoxing {
  background: #edf2e6;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.shaoxing-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.culture-tags,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.culture {
  min-height: 42px;
  border: 1px solid rgba(23, 35, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--leaf);
  padding: 0 15px;
  font-weight: 900;
}

.culture.active {
  background: var(--leaf);
  color: #fff;
}

.culture-panel {
  min-height: 440px;
  border-radius: 26px;
  border: 1px solid rgba(23, 35, 29, 0.12);
  background:
    radial-gradient(circle at 68% 20%, rgba(217, 154, 61, 0.28), transparent 28%),
    linear-gradient(145deg, #fffdf8, #d7dfc5);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 20px 54px rgba(23, 35, 29, 0.12);
}

.culture-art {
  flex: 1;
  min-height: 180px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(32, 59, 52, 0.92), rgba(111, 143, 85, 0.62)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.16) 0 12px, transparent 12px 24px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.culture-art span {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px solid rgba(255, 253, 248, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-weight: 900;
}

.culture-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.mini-tags span {
  border-radius: 999px;
  background: #f1e5cf;
  color: #60482e;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.week-card {
  min-height: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.week-day {
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
}

.week-card.active {
  background: var(--leaf);
  color: #fff;
}

.week-card.active small {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.64fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: #fff7e8;
}

.project-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.project-card,
.booking-card,
.visit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.project-card {
  padding: 18px;
}

.project-card .tag {
  margin-bottom: 14px;
}

.project-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.booking-card {
  padding: 24px;
  box-shadow: 0 20px 60px rgba(23, 35, 29, 0.1);
}

label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

input,
select {
  margin-top: 8px;
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
}

.prep-box {
  margin: 18px 0;
  border-radius: 14px;
  background: #f4ead9;
  padding: 16px;
}

.prep-box ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.form-tip {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.route {
  background: #eaf1e4;
}

.route-board {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.route-visual {
  min-height: 430px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.76), transparent 34%),
    linear-gradient(135deg, #f6ecd8, #c7d5ae);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-visual img {
  width: min(86%, 430px);
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(23, 35, 29, 0.22));
}

.route-stamp {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 118px;
  height: 118px;
  border: 3px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  transform: rotate(-12deg);
  background: rgba(255, 253, 248, 0.72);
}

.route-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.route-steps {
  margin: 22px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.route-steps span {
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(23, 35, 29, 0.1);
  color: var(--leaf);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 900;
}

.game-section {
  background:
    radial-gradient(circle at 76% 18%, rgba(217, 154, 61, 0.24), transparent 28%),
    linear-gradient(145deg, #121c18, #253f36 58%, #6d5432);
  color: #fff;
}

.game-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.game-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
}

.game-copy {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-copy h3 {
  font-size: clamp(30px, 4.4vw, 56px);
}

.game-copy p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
  font-size: 17px;
}

.game-stats {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.game-stats span {
  min-height: 72px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.08);
  padding: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
}

.game-stats strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
}

.game-canvas-wrap {
  min-height: 560px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: #17231d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

#coffeeGame {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  touch-action: none;
}

.game-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  min-width: min(320px, calc(100% - 44px));
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--leaf);
  padding: 14px 20px;
  text-align: center;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.game-overlay.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.passport {
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 154, 61, 0.18), transparent 25%),
    linear-gradient(180deg, #203b34, #304f43);
  color: #fff;
}

.passport .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.passport-stage {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.passport-book {
  min-height: 520px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(238, 226, 199, 0.92));
  color: var(--leaf);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  transform: rotate(-1deg);
}

.passport-cover {
  min-height: 118px;
  border-radius: 20px;
  padding: 22px;
  background:
    linear-gradient(135deg, #203b34, #6f8f55);
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.passport-cover span {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 900;
}

.passport-cover strong {
  font-size: 28px;
}

.stamp-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stamp-card {
  min-height: 150px;
  border: 2px dashed rgba(180, 93, 62, 0.34);
  border-radius: 18px;
  background: #fffdf8;
  color: var(--leaf);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease;
}

.stamp-card:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.stamp-card span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.stamp-card strong {
  font-size: 24px;
  line-height: 1.15;
}

.stamp-card.stamped {
  background:
    radial-gradient(circle, rgba(180, 93, 62, 0.12), transparent 54%),
    #fff7e8;
  border-style: solid;
}

.stamp-card.stamped::after {
  content: "LAPIS";
  width: 72px;
  height: 72px;
  border: 3px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  transform: rotate(-14deg);
}

.passport-copy {
  max-width: 720px;
}

.passport-copy h3 {
  font-size: clamp(34px, 5vw, 64px);
}

.passport-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.9;
}

.nearby {
  background: #fff9ee;
}

.nearby-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}

.nearby-map,
.nearby-panel,
.itinerary-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.nearby-map {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 248, 0.9), transparent 28%),
    radial-gradient(circle at 24% 24%, rgba(134, 182, 177, 0.56), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(217, 154, 61, 0.38), transparent 24%),
    linear-gradient(145deg, #dfe8d1, #f8ecd7);
  box-shadow: inset 0 -52px 90px rgba(32, 59, 52, 0.08);
}

.nearby-map::before {
  content: "";
  position: absolute;
  inset: 56px 42px;
  border: 2px dashed rgba(32, 59, 52, 0.18);
  border-radius: 45% 55% 46% 54%;
  transform: rotate(-8deg);
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(32, 59, 52, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 18px 46px rgba(23, 35, 29, 0.24);
}

.map-center strong {
  font-size: 28px;
}

.map-center span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  font-size: 13px;
}

.map-pin {
  position: absolute;
  min-height: 42px;
  border: 1px solid rgba(32, 59, 52, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--leaf);
  padding: 0 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(23, 35, 29, 0.1);
}

.map-pin.active {
  background: var(--amber);
  color: var(--leaf);
}

.pin-tea { right: 10%; top: 18%; }
.pin-village { left: 10%; top: 28%; }
.pin-song { right: 13%; bottom: 22%; }
.pin-ride { left: 14%; bottom: 18%; }

.nearby-panel {
  padding: 22px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  min-height: 500px;
}

.nearby-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.nearby-tab {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  padding: 0 14px;
  text-align: left;
  font-weight: 900;
}

.nearby-tab.active {
  background: var(--leaf);
  color: #fff;
}

.nearby-detail {
  border-radius: 18px;
  background: #f5ead8;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nearby-detail h3 {
  margin-bottom: 12px;
}

.nearby-detail strong {
  color: var(--clay);
  margin-bottom: 12px;
}

.nearby-detail p {
  color: var(--muted);
  line-height: 1.8;
}

.nearby-detail ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--leaf);
  line-height: 1.8;
  font-weight: 800;
}

.itinerary-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.itinerary-card {
  padding: 20px;
}

.itinerary-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e8f0e8;
  color: var(--leaf);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 900;
}

.itinerary-card p {
  color: var(--muted);
  line-height: 1.7;
}

.visit-card {
  margin: 0 clamp(18px, 5vw, 72px) 72px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.visit-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(24px);
  background: var(--leaf);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 40;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .dream,
  .route-board,
  .shaoxing,
  .notice-board,
  .story-grid,
  .game-stage,
  .passport-stage,
  .nearby-layout,
  .nearby-panel,
  .itinerary-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .mood-strip,
  .project-cards {
    grid-template-columns: 1fr 1fr;
  }

  .visit-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-card,
  .booking-card {
    padding: 18px;
  }

  .notice {
    grid-template-columns: 48px 1fr;
  }

  .notice button {
    grid-column: 2;
    width: fit-content;
  }

  .mood-strip,
  .project-cards {
    grid-template-columns: 1fr;
  }

  .route-visual {
    min-height: 300px;
  }

  .game-canvas-wrap,
  #coffeeGame {
    min-height: 430px;
  }

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

  .nearby-map {
    min-height: 380px;
  }

  .nearby-panel {
    padding: 16px;
  }

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

  .passport-book {
    min-height: auto;
    transform: none;
  }

  .map-pin {
    font-size: 13px;
    padding: 0 10px;
  }

  .motion-scene {
    min-height: 360px;
  }

  .hero-scene {
    min-height: 390px;
  }

  .notice-board {
    margin-top: -18px;
    padding: 16px;
  }

  .story-card,
  .culture-panel {
    min-height: auto;
  }

  .dream-copy p {
    font-size: 16px;
  }

  .country-road {
    left: 28%;
  }

  .coffee-stop {
    left: 9%;
    bottom: 104px;
    transform: scale(0.86);
  }

  .cup {
    right: 12%;
    bottom: 108px;
    transform: scale(0.86);
  }
}
