/* 首页旗帜使用独立矢量布料，继续沿用原有飘动与减少动态设置。 */
.home .flag-scene {
  right: clamp(48px, 12vw, 230px);
  bottom: 5%;
  width: clamp(166px, 22vw, 300px);
  height: min(78%, calc(40vh + 150px));
  max-height: 580px;
  pointer-events: none;
}
.home.route-mode .flag-scene { opacity: .24; }
.home .flag-scene::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -7px;
  width: 68px;
  height: 13px;
  border-radius: 50%;
  background: rgba(var(--theme-ink-rgb), .18);
  filter: blur(2px);
}
.home .flag-scene .mast {
  z-index: 1;
  left: 24px;
  right: auto;
  width: 5px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #7d887e, #dce0cd 32%, #fff2d5 53%, #a7b2a1 78%, #727f73);
  box-shadow: 2px 0 3px rgba(12, 27, 20, .16);
}
.home .flag-scene .mast::before {
  content: '';
  position: absolute;
  top: -7px;
  left: -3px;
  width: 11px;
  height: 11px;
  border: 1px solid #a88c50;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 27%, #fff0bd, #d2b16c 58%, #927744);
  box-shadow: 0 1px 3px rgba(12, 27, 20, .18);
}
.home .flag-scene .mast::after {
  content: '';
  position: absolute;
  top: 7px;
  bottom: 11px;
  left: 8px;
  width: 1px;
  background: #c5bd9a;
  opacity: .55;
}
.home .flag-scene .cloth {
  z-index: 2;
  top: 12px;
  left: 28px;
  width: calc(100% - 28px);
  height: auto;
  aspect-ratio: 224 / 154;
  background: url('../images/home-red-flag.svg') left top / 100% 100% no-repeat;
  clip-path: none;
  filter: drop-shadow(2px 4px 3px rgba(65, 12, 23, .18));
}
.home .flag-scene .base {
  z-index: 3;
  left: 8px;
  right: auto;
  bottom: -4px;
  width: 38px;
  height: 14px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #69786b, #354c3e);
  box-shadow: 0 3px 5px rgba(12, 27, 20, .2);
}
.home .flag-scene .base::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 5px;
  width: 28px;
  height: 7px;
  border-top: 1px solid rgba(243, 233, 196, .4);
  border-radius: 2px 2px 0 0;
  background: #84917d;
}
.home .flag-scene .base::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -7px;
  width: 52px;
  height: 6px;
  border-radius: 2px;
  background: #2d4437;
}
@media (prefers-reduced-motion: reduce) {
  .home .flag-scene .cloth { animation: none; }
}
