/* ============================================================
   nnyudingktv.com - Ink Atlas Noir
   Native HTML/CSS/JS visual system
   ============================================================ */

:root {
  --ink-950: #030806;
  --ink-925: #06110f;
  --ink-900: #071714;
  --ink-850: #0b211d;
  --ink-800: #102a25;
  --ink-760: #14342f;
  --panel: rgba(10, 27, 24, 0.78);
  --panel-solid: #0d201d;
  --panel-elevated: rgba(16, 42, 37, 0.82);
  --panel-hover: rgba(22, 54, 48, 0.88);
  --line: rgba(224, 201, 153, 0.16);
  --line-strong: rgba(224, 201, 153, 0.28);
  --line-teal: rgba(64, 198, 178, 0.24);
  --ivory: #f4efe3;
  --ivory-soft: #d9d0bd;
  --muted: #9c927f;
  --dim: #6f746c;
  --copper: #c99a4e;
  --copper-bright: #e1b86f;
  --copper-deep: #8d642e;
  --copper-soft: rgba(201, 154, 78, 0.14);
  --teal: #40c6b2;
  --teal-soft: rgba(64, 198, 178, 0.12);
  --ruby: #b96358;
  --purple: #9a88cf;
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 18px 52px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 28px 86px rgba(0, 0, 0, 0.46);
  --glow-copper: 0 0 40px rgba(201, 154, 78, 0.16);
  --glow-teal: 0 0 42px rgba(64, 198, 178, 0.14);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --max-width: 1200px;
  --header-height: 72px;
  --bottom-nav-height: 82px;
  --font-display: "Noto Serif SC", "Songti SC", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --transition-fast: 150ms cubic-bezier(.2, .8, .2, 1);
  --transition: 260ms cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.72;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(3, 8, 6, .28), rgba(3, 8, 6, .92) 42%),
    linear-gradient(115deg, #04100d 0%, #071714 40%, #0c211d 76%, #050908 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(224, 201, 153, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 198, 178, .028) 1px, transparent 1px),
    linear-gradient(135deg, rgba(201, 154, 78, .05), transparent 34%, rgba(64, 198, 178, .045) 76%, transparent);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .28) 58%, rgba(0, 0, 0, .6));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 16%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.015), rgba(255,255,255,.015) 1px, transparent 1px, transparent 6px);
  mix-blend-mode: screen;
  opacity: .36;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

a:hover { color: var(--copper-bright); }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(3, 8, 6, .44);
  color: var(--ivory);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--copper-bright) 50%),
    linear-gradient(135deg, var(--copper-bright) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

input::placeholder,
textarea::placeholder { color: rgba(217, 208, 189, .52); }

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(225, 184, 111, .78);
  background: rgba(3, 8, 6, .62);
  box-shadow: 0 0 0 3px rgba(201, 154, 78, .16);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

::selection {
  color: var(--ink-950);
  background: var(--copper-bright);
}

.skip-link {
  position: fixed;
  top: -96px;
  left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--copper-bright);
  color: var(--ink-950);
  font-weight: 800;
}
.skip-link:focus { top: 0; }

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

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 600;
  height: var(--header-height);
  border-bottom: 1px solid rgba(224, 201, 153, .14);
  background: rgba(3, 8, 6, .72);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 12px 42px rgba(0, 0, 0, .24);
  transition: transform var(--transition);
}

.header--hidden { transform: translateY(-110%); }

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.logo::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: url("../assets/brand/logo-icon.svg") center / contain no-repeat;
  box-shadow: 0 0 30px rgba(201, 154, 78, .2);
}

.logo .highlight {
  color: var(--copper-bright);
  font-size: 1.12em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 0;
  gap: 8px;
}

.nav-desktop a,
.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: rgba(244, 239, 227, .7);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active,
.nav-dropdown:hover > a {
  color: var(--ivory);
  background: rgba(244, 239, 227, .055);
}

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-bright), transparent);
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 176px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(5, 14, 12, .94);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  width: 100%;
  min-height: 36px;
  padding: 8px 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 13px 26px;
  border: 1px solid rgba(225, 184, 111, .36);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(225, 184, 111, .16), rgba(201, 154, 78, .08)),
    rgba(201, 154, 78, .08);
  color: var(--copper-bright);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(201, 154, 78, .08);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-phone:hover {
  border-color: rgba(225, 184, 111, .5);
  background:
    linear-gradient(180deg, rgba(225, 184, 111, .22), rgba(201, 154, 78, .12)),
    rgba(201, 154, 78, .12);
  box-shadow: 0 14px 34px rgba(201, 154, 78, .14);
  transform: translateY(-1px);
}

.header-phone svg,
.phone-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  gap: 5px;
}

.hamburger span {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--ivory);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--active span:nth-child(2) { opacity: 0; }
.hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 590;
  display: none;
  padding: 18px 22px 96px;
  overflow-y: auto;
  background: rgba(3, 8, 6, .96);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  transition: transform var(--transition);
}

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

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(224, 201, 153, .1);
  color: var(--ivory-soft);
  font-weight: 700;
}

.mobile-nav a.active { color: var(--copper-bright); }

/* City selector */
.city-selector { position: relative; flex: 0 0 auto; }

.city-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .055);
  color: var(--ivory-soft);
  font-size: .82rem;
  font-weight: 700;
}

.city-selector-btn:hover,
.city-selector-btn.active {
  color: var(--ivory);
  border-color: var(--line-strong);
  background: rgba(64, 198, 178, .08);
}

.city-selector-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.city-selector-btn.active svg:last-child { transform: rotate(180deg); }

.city-selector-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(680px, calc(100vw - 32px));
  max-height: min(72vh, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(4, 12, 10, .96);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  overscroll-behavior: contain;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.city-selector-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.city-selector-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px;
}

.city-selector-search {
  height: 44px;
  padding: 0 14px;
  margin-bottom: 14px;
}

.city-selector-grid {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 14px;
  height: min(430px, calc(72vh - 94px));
  min-height: 0;
  max-height: 430px;
  overflow: hidden;
}

.city-selector-provinces,
.city-selector-cities,
.city-selector-list {
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 154, 78, .36) transparent;
  -webkit-overflow-scrolling: touch;
}

.city-selector-provinces {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  border-right: 1px solid rgba(224, 201, 153, .12);
}

.city-selector-province,
.city-selector-city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ivory-soft);
  font-size: .84rem;
  text-align: left;
}

.city-selector-province:hover,
.city-selector-province.active,
.city-selector-city:hover {
  border-color: rgba(64, 198, 178, .2);
  background: rgba(64, 198, 178, .08);
  color: var(--ivory);
}

.city-selector-province.active {
  color: var(--copper-bright);
  border-color: rgba(201, 154, 78, .3);
  background: rgba(201, 154, 78, .11);
}

.city-selector-cities {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.city-selector-panel--content {
  gap: 14px;
}

.city-selector-lite-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ivory);
}

.city-selector-lite-head strong {
  font-size: .92rem;
  font-weight: 900;
}

.city-selector-lite-head a {
  color: var(--copper-bright);
  font-size: .78rem;
  font-weight: 850;
}

.city-selector-cities--lite {
  height: auto;
  max-height: none;
  overflow: visible;
}

.city-selector-city small {
  color: var(--dim);
  font-size: .68rem;
}

.city-selector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 320px;
}

.city-selector-list li {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ivory-soft);
  cursor: pointer;
}

/* Hero */
.hero,
.search-hero,
.page-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 201, 153, .12);
  background:
    linear-gradient(180deg, rgba(3, 8, 6, .22), rgba(3, 8, 6, .88)),
    linear-gradient(128deg, rgba(64, 198, 178, .12), transparent 36%),
    linear-gradient(20deg, rgba(201, 154, 78, .12), transparent 44%),
    var(--ink-950);
}

.hero::before,
.search-hero::before,
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.03) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(224, 201, 153, .04) 0 1px, transparent 1px 40px);
  opacity: .72;
}

.hero::before {
  background: none;
  opacity: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 6, .02) 0%, rgba(3, 8, 6, .50) 92%);
}

.hero::before,
.hero::after {
  z-index: 1;
}

.hero {
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  align-items: center;
  overflow: visible;
  padding: calc(var(--header-height) + 78px) 24px 82px;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink-950);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.28) contrast(1.08) brightness(1.24);
  transform: scale(1.04);
  animation: heroBgFade 18s infinite;
}

.hero-bg-slide--one { animation-delay: 0s; }
.hero-bg-slide--two { animation-delay: 6s; }
.hero-bg-slide--three { animation-delay: 12s; }

@keyframes heroBgFade {
  0% { opacity: 0; transform: scale(1.04); }
  6% { opacity: .96; }
  31% { opacity: .96; }
  39% { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.09); }
}

.hero-content {
  position: relative;
  z-index: 30;
  width: min(960px, 100%);
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  text-align: left;
}

.home-hero-content {
  width: min(1180px, 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
  gap: 0;
  align-items: center;
}

.home-hero-copy {
  position: relative;
  min-width: 0;
  text-align: center;
}

.home-hero-copy .subtitle,
.home-hero-copy .hero-search,
.home-hero-copy .hero-city-entry {
  margin-right: auto;
  margin-left: auto;
}

.home-hero-copy .hero-city-entry {
  justify-content: center;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-badge::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.hero h1,
.search-hero h1,
.page-banner h1,
.page-header h1 {
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ivory);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .72),
    0 12px 30px rgba(0, 0, 0, .52);
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--ivory-soft);
  font-size: .5em;
  line-height: 1.26;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .78);
}

.hero .subtitle,
.search-hero p,
.page-banner p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--ivory-soft);
  font-size: clamp(.98rem, 2vw, 1.18rem);
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.hero .subtitle {
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 251, 239, .96);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .72);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-search,
.search-bar-wrap {
  position: relative;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(680px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(224, 201, 153, .34);
  border-radius: var(--radius-md);
  background: rgba(3, 8, 6, .52);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.hero-search input,
.search-bar-wrap input {
  min-width: 0;
  height: 58px;
  padding: 0 58px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-size: 1rem;
}

.hero-search .search-icon,
.search-bar-wrap > svg,
.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: var(--copper-bright);
}

.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-right: 3px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: var(--ink-950);
}

.search-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.search-bar-wrap {
  display: block;
}

.search-bar-wrap input {
  padding: 0 72px 0 18px;
}

.search-bar-wrap .search-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  margin: 0;
}

.hero-stats,
.city-overview,
.province-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 34px;
  border: 1px solid var(--line);
  background: rgba(224, 201, 153, .1);
  box-shadow: var(--shadow-sm);
}

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

.hero-stats .stat,
.overview-stat {
  padding: 18px;
  background: rgba(6, 17, 15, .76);
}

.stat-val,
.stat-value {
  display: block;
  font-family: var(--font-display);
  color: var(--copper-bright);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.stat-lbl,
.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Layout */
.section,
.page,
.search-page,
.detail-container,
.article-detail-wrap {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section-alt {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  border-block: 1px solid rgba(224, 201, 153, .09);
  background: rgba(244, 239, 227, .025);
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-title,
.section-title__main {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: clamp(1.36rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.section-subtitle {
  max-width: 660px;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}

.view-all,
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ivory-soft);
  font-size: .82rem;
  font-weight: 800;
}

.view-all:hover,
.back-link:hover {
  border-color: var(--line-strong);
  background: rgba(201, 154, 78, .08);
}

/* Home filters */
.filter-showcase {
  margin-top: -72px;
  padding-top: 0;
}

.home-filter-panel {
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(7, 23, 20, .88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
}

.home-filter-panel {
  padding: 22px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.filter-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.filter-field {
  position: relative;
  min-width: 0;
}

.filter-field input,
.filter-field select {
  height: 46px;
  padding-left: 14px;
}

.native-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select {
  position: relative;
  min-width: 0;
}

.custom-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 46px;
  padding: 0 13px 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .07), rgba(244, 239, 227, .035)),
    rgba(6, 17, 15, .62);
  color: var(--ivory);
  font-size: .88rem;
  font-weight: 760;
  text-align: left;
}

.custom-select-btn span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-btn svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: var(--copper-bright);
  transition: transform var(--transition-fast);
}

.custom-select.active .custom-select-btn {
  border-color: rgba(225, 184, 111, .46);
  box-shadow: 0 0 0 3px rgba(201, 154, 78, .12);
}

.custom-select.active .custom-select-btn svg {
  transform: rotate(180deg);
}

.custom-select-menu,
.search-suggestion-panel {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 900;
  overflow-y: auto;
  border: 1px solid rgba(225, 184, 111, .24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .06), rgba(244, 239, 227, .025)),
    rgba(4, 13, 11, .96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
}

.custom-select-menu {
  top: calc(100% + 8px);
  display: none;
  max-height: 294px;
  padding: 7px;
}

.custom-select.active .custom-select-menu {
  display: grid;
  gap: 4px;
}

.custom-select-menu button,
.search-suggestion-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ivory-soft);
  text-align: left;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.custom-select-menu button {
  min-height: 38px;
  padding: 8px 10px;
  font-size: .84rem;
  font-weight: 760;
}

.custom-select-menu button:hover,
.custom-select-menu button.active,
.search-suggestion-item:hover {
  border-color: rgba(225, 184, 111, .28);
  background: rgba(201, 154, 78, .12);
  color: var(--ivory);
}

.booking-form .custom-select-btn {
  height: 48px;
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .08), rgba(244, 239, 227, .035)),
    rgba(3, 11, 9, .72);
}

.booking-form .custom-select-menu {
  z-index: 1200;
}

.custom-select--city .custom-select-menu {
  max-height: min(390px, 52vh);
  padding: 8px;
}

.custom-select--city .custom-select-option--city {
  min-height: 42px;
  padding-inline: 12px;
}

.custom-select--city .custom-select-option--city span,
.custom-select--tier .custom-select-option--tier span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.custom-select--city .custom-select-option--city span::before,
.custom-select--tier .custom-select-option--tier span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--copper-bright);
  box-shadow: 0 0 12px rgba(201, 154, 78, .38);
}

.custom-select--city .custom-select-option--all span::before {
  background: var(--teal);
  box-shadow: 0 0 12px rgba(64, 198, 178, .36);
}

.custom-select--tier .custom-select-option--premium span::before {
  background: var(--teal);
  box-shadow: 0 0 12px rgba(64, 198, 178, .36);
}

.custom-select--tier .custom-select-option--select span::before {
  background: #b9a7ff;
  box-shadow: 0 0 12px rgba(185, 167, 255, .36);
}

.custom-select--plain .custom-select-option span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion-panel {
  top: calc(100% + 10px);
  max-height: 360px;
  padding: 8px;
}

.search-suggestion-panel[hidden] {
  display: none;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 10px 12px;
}

.search-suggestion-item span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.search-suggestion-item b {
  overflow: hidden;
  color: var(--ivory);
  font-size: .9rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: .76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion-item em {
  flex: 0 0 auto;
  border: 1px solid rgba(64, 198, 178, .22);
  border-radius: var(--radius-xs);
  background: rgba(64, 198, 178, .09);
  color: var(--teal);
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  padding: 5px 7px;
}

.filter-submit,
.btn,
.cta-btn,
.form-submit,
.sidebar-phone-btn,
.sidebar-wechat-btn,
.phone-reveal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(225, 184, 111, .38);
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: var(--ink-950);
  font-size: .9rem;
  font-weight: 900;
  box-shadow: var(--glow-copper);
}

.filter-submit:hover,
.cta-btn:hover,
.form-submit:hover,
.sidebar-phone-btn:hover,
.phone-reveal:hover {
  color: var(--ink-950);
  transform: translateY(-1px);
  box-shadow: 0 0 48px rgba(225, 184, 111, .22);
}

.btn--outline,
.cta-btn-outline,
.cta-wechat-btn,
.sidebar-wechat-btn {
  border-color: var(--line-teal);
  background: rgba(64, 198, 178, .1);
  color: var(--teal);
  box-shadow: var(--glow-teal);
}

.btn--sm { min-height: 36px; padding: 8px 12px; font-size: .78rem; }

.home-filter-summary,
.search-info,
.filter-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted);
  font-size: .86rem;
}

.home-filter-summary strong,
.search-info strong,
.filter-count strong {
  color: var(--copper-bright);
}

.home-store-entry {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(201, 154, 78, .24);
  border-radius: var(--radius-sm);
  background: rgba(201, 154, 78, .08);
  color: var(--copper-bright);
  font-size: .78rem;
  font-weight: 850;
  white-space: nowrap;
}

.home-store-entry:hover {
  border-color: rgba(225, 184, 111, .5);
  background: rgba(201, 154, 78, .14);
  color: var(--ivory);
}

/* Tags and badges */
.tier-label,
.tier-badge,
.store-tag,
.article-tag,
.job-tag,
.mode-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(201, 154, 78, .26);
  border-radius: var(--radius-xs);
  background: rgba(201, 154, 78, .1);
  color: var(--copper-bright);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.tier-label {
  margin-bottom: 12px;
  letter-spacing: .14em;
}

.new-tier1,
.teal,
.tag-teal,
.store-tag:not(.amber):not(.tag-amber):not(.tag-gold),
.store-card__tag--featured {
  border-color: rgba(64, 198, 178, .24);
  background: rgba(64, 198, 178, .1);
  color: var(--teal);
}

.purple,
.tag-purple {
  border-color: rgba(154, 136, 207, .28);
  background: rgba(154, 136, 207, .12);
  color: #c8baff;
}

.pink,
.tag-blue,
.tag-gold,
.amber,
.tag-amber,
.store-tag.amber {
  border-color: rgba(201, 154, 78, .28);
  background: rgba(201, 154, 78, .12);
  color: var(--copper-bright);
}

a.store-tag {
  text-decoration: none;
}

/* Cards */
.store-grid,
.stores-grid,
.city-grid,
.region-grid,
.regions-grid,
.news-grid,
.articles-grid,
.related-grid,
.contact-grid,
.partner-benefits,
.cooperation-modes,
.job-list {
  display: grid;
  gap: 18px;
}

.store-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

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

.region-grid,
.regions-grid,
.city-grid,
.partner-benefits,
.cooperation-modes,
.job-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.store-card,
.region-card,
.city-card,
.news-card,
.article-card,
.related-card,
.contact-card,
.benefit-card,
.mode-card,
.job-card,
.info-block,
.sidebar-card,
.contact-form-wrap,
.business-hours,
.process-step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .045), rgba(244, 239, 227, .015)),
    rgba(9, 26, 23, .74);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.store-card::before,
.region-card::before,
.city-card::before,
.news-card::before,
.article-card::before,
.sidebar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 184, 111, .58), rgba(64, 198, 178, .36), transparent);
  opacity: .75;
}

.store-card:hover,
.region-card:hover,
.city-card:hover,
.news-card:hover,
.article-card:hover,
.related-card:hover,
.contact-card:hover,
.benefit-card:hover,
.mode-card:hover,
.job-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .06), rgba(244, 239, 227, .02)),
    rgba(16, 42, 37, .86);
  box-shadow: var(--shadow-md);
}

.store-card { cursor: pointer; min-height: 246px; display: flex; flex-direction: column; }

.store-card-media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 24%, rgba(69, 201, 184, .22), transparent 38%),
    radial-gradient(circle at 78% 12%, rgba(225, 184, 111, .22), transparent 34%),
    #06110f;
}

.store-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(2, 6, 5, .28)),
    linear-gradient(90deg, rgba(244, 239, 227, .08), transparent 22%, transparent 78%, rgba(244, 239, 227, .06));
  pointer-events: none;
}

.store-card-media a {
  display: block;
  height: 100%;
}

.store-card-media__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.store-card:hover .store-card-media__image {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.store-card-body,
.store-card__body,
.article-card-body,
.job-card-body,
.news-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.store-name,
.store-card__title,
.region-card h3,
.region-card__name,
.city-name,
.news-title,
.news-card__title,
.article-title,
.related-title,
.job-card h3,
.benefit-card h3,
.mode-card h3 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.35;
}

.store-tags,
.store-card__tags,
.article-tags,
.job-meta,
.detail-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

#homeFilterResults .store-name--mobile,
#homeFilterResults .store-tags--mobile {
  display: none;
}

.store-address,
.store-card__address,
.store-desc,
.store-card__address,
.store-card__footer,
.news-card__excerpt,
.article-excerpt,
.city-entry-tags,
.nearby-card__address,
.job-desc {
  color: var(--muted);
  font-size: .84rem;
}

.store-address,
.store-card__address {
  margin-top: 14px;
  line-height: 1.65;
}

.store-desc {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.store-package,
.store-card__price {
  margin-top: 12px;
  color: var(--copper-bright);
  font-size: .84rem;
  font-weight: 800;
}

.store-footer,
.store-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.store-time,
.store-city,
.news-date,
.article-date,
.related-date,
.news-card__date,
.news-card__category {
  color: var(--dim);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .02em;
}

.store-phone-btn,
.store-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 92px;
  min-height: 34px;
  margin-top: auto;
  padding: 7px 11px;
  border: 1px solid rgba(201, 154, 78, .34);
  border-radius: var(--radius-sm);
  background: rgba(201, 154, 78, .12);
  color: var(--copper-bright);
  font-size: .76rem;
  font-weight: 900;
}

.store-phone-btn:hover,
.store-card__link:hover {
  background: rgba(201, 154, 78, .18);
  color: var(--ivory);
}

.store-card__image,
.article-card-image,
.news-card__image,
.nearby-card__image {
  min-height: 150px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 154, 78, .18), transparent 36%),
    linear-gradient(45deg, rgba(64, 198, 178, .16), transparent 48%),
    #06110f;
}

.store-card__image-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 150px;
  color: rgba(225, 184, 111, .65);
  font-size: 2.1rem;
}

/* Regions, cities and articles */
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: min(980px, calc(100% - 48px));
  margin: 26px auto 0;
}

.hero-city-entry {
  justify-content: flex-start;
  width: min(760px, 100%);
  margin: 28px 0 0;
}

.hero-city-entry .city-tag {
  border-color: rgba(224, 201, 153, .28);
  background: rgba(3, 8, 6, .48);
  color: rgba(255, 251, 239, .96);
  text-shadow: 0 1px 3px rgba(0, 0, 0, .72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}

.city-tag,
.suggestions a,
.city-entry-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .045);
  color: var(--ivory-soft);
  font-size: .82rem;
  font-weight: 750;
}

.city-tag:hover,
.suggestions a:hover,
.city-entry-tag:hover {
  border-color: var(--line-strong);
  background: rgba(201, 154, 78, .08);
}

.region-card,
.city-card,
.news-card,
.related-card {
  display: block;
  padding: 22px;
  color: inherit;
}

.region-cities,
.city-entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.region-cities a {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(224, 201, 153, .12);
  border-radius: var(--radius-xs);
  background: rgba(244, 239, 227, .035);
  color: var(--ivory-soft);
  font-size: .78rem;
}

.news-date,
.news-card__meta,
.article-meta,
.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.news-title,
.news-card__title { min-height: 2.7em; }

.news-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  line-height: 1.4;
}

.news-keyword-tag {
  display: inline-block;
  padding: 2px 8px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 3px;
}

.news-summary {
  color: var(--dim);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Page shell */
.page-content {
  padding-top: calc(var(--header-height) + 18px);
}

.breadcrumb,
.breadcrumb-wrap .breadcrumb,
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  color: var(--dim);
  font-size: .82rem;
}

.breadcrumb a,
.breadcrumb__link { color: var(--ivory-soft); }
.breadcrumb .current,
.breadcrumb__current { color: var(--copper-bright); }
.sep,
.separator,
.breadcrumb__separator::before { color: rgba(244, 239, 227, .34); }
.breadcrumb__separator::before { content: "/"; }

.page {
  padding: 28px 0 86px;
}

.page-header {
  margin-bottom: 24px;
  padding: 28px 0 6px;
}

.page-header h1 { font-size: clamp(2rem, 4vw, 3.4rem); }

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .86rem;
}

.page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.meta-label { color: var(--ivory-soft); }

.page-banner {
  padding: 0 24px 22px;
  text-align: center;
}

.page-banner--city-index {
  padding: 0 24px 22px;
}

.page-banner-content,
.page-banner h1,
.page-banner p {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.page-banner--city-index h1 {
  max-width: 100%;
  font-size: clamp(1.78rem, 4vw, 3.2rem);
  line-height: 1.08;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.page-banner--city-index p {
  margin-top: 6px;
}

.page-banner--city-index .hero-badge {
  margin-bottom: 6px;
}

.page-banner h1 {
  font-size: clamp(1.78rem, 4vw, 3.2rem);
}

.page-banner p {
  margin-top: 6px;
}

.page-banner .hero-badge {
  margin-bottom: 6px;
}

/* City navigation */
.city-index-section {
  padding-top: 50px;
}

.city-index-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.city-index-main {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.city-index-intro,
.city-index-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.city-index-panel {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.city-index-panel + .city-index-panel {
  padding-top: 30px;
  border-top: 1px solid rgba(224, 201, 153, .11);
}

.city-index-panel-head {
  margin-bottom: 16px;
}

.city-index-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.city-index-panel-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.city-index-panel-meta .view-all {
  flex: 0 0 auto;
}

.city-index-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.city-index-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(201, 154, 78, .11), transparent 38%),
    linear-gradient(180deg, rgba(244, 239, 227, .055), rgba(244, 239, 227, .018)),
    rgba(8, 19, 18, .72);
  color: inherit;
}

.city-index-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(64, 198, 178, .5);
}

.city-index-card:hover {
  border-color: rgba(225, 184, 111, .36);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.city-index-card__name {
  padding-right: 18px;
  color: var(--ivory);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.35;
}

.city-index-card small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 760;
}

.city-index-card em {
  color: var(--ivory-soft);
  font-size: .8rem;
  font-style: normal;
  line-height: 1.55;
}

.city-index-provinces {
  padding-top: 34px;
}

.city-index-featured-stores {
  padding-top: 48px;
}

.city-index-store-direct-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-content-entry {
  padding-top: 68px;
}

.home-content-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 22px;
  align-items: start;
}

.home-content-panel {
  min-width: 0;
}

.home-content-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.home-content-panel-head h3 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
}

.home-content-panel-head span {
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(201, 154, 78, .26);
  border-radius: var(--radius-xs);
  background: rgba(201, 154, 78, .1);
  color: var(--copper-bright);
  font-size: .74rem;
  font-weight: 900;
}

.home-content-panel-head .view-all {
  min-height: 32px;
  padding: 6px 10px;
  font-size: .76rem;
  white-space: nowrap;
}

.home-direct-city-grid,
.home-direct-store-grid {
  display: grid;
  gap: 12px;
}

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

.home-direct-store-grid {
  grid-template-columns: 1fr;
}

.home-store-direct-card {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 68px;
  padding: 14px 16px 14px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgba(64, 198, 178, .09), transparent 42%),
    rgba(244, 239, 227, .035);
  color: inherit;
}

.home-store-direct-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(64, 198, 178, .45);
}

.home-store-direct-card:hover {
  border-color: rgba(225, 184, 111, .34);
  background:
    linear-gradient(90deg, rgba(201, 154, 78, .12), transparent 48%),
    rgba(244, 239, 227, .05);
}

.home-store-direct-card span {
  color: var(--ivory);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.35;
}

.home-store-direct-card small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 760;
}

/* Search page */
.search-hero {
  padding: calc(var(--header-height) + 70px) 24px 68px;
}

.search-hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  margin: 0 auto;
}

.search-hero h1 { font-size: clamp(2.2rem, 5.8vw, 4.3rem); }

.search-page {
  padding: 34px 0 86px;
}

.search-page .search-bar-wrap {
  width: 100%;
  margin: 0 0 14px;
  border-color: rgba(225, 184, 111, .24);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .08), rgba(244, 239, 227, .03)),
    rgba(5, 16, 14, .78);
}

.search-page .search-bar-wrap input {
  height: 60px;
  padding-right: 118px;
}

.search-page .search-bar-wrap .search-btn {
  width: 104px;
  font-size: .9rem;
  font-weight: 900;
}

.search-hot-cities {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.search-hot-cities-label {
  flex-shrink: 0;
  color: var(--muted);
  font-size: .85rem;
  white-space: nowrap;
}

.search-hot-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.search-hot-cities-list .city-tag {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.search-filters,
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.search-filter-btn,
.filter-tab {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .045);
  color: var(--ivory-soft);
  font-size: .82rem;
  font-weight: 800;
}

.search-filter-btn:hover,
.filter-tab:hover,
.search-filter-btn.active,
.filter-tab.active {
  border-color: rgba(225, 184, 111, .38);
  background: rgba(201, 154, 78, .12);
  color: var(--copper-bright);
}

.search-results {
  display: grid;
  gap: 22px;
}

.search-result-group {
  display: grid;
  gap: 14px;
}

.search-empty,
.search-page__empty,
.empty-state,
.articles-empty,
.article-not-found,
.detail-not-found {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 44px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(9, 26, 23, .62);
  color: var(--muted);
  text-align: center;
}

.empty-icon,
.search-page__empty-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  fill: rgba(225, 184, 111, .62);
}

.search-page__empty-title,
.search-empty h3,
.empty-state h3,
.detail-not-found h2 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.search-page__empty-desc,
.search-empty p,
.detail-not-found p { margin-top: 8px; }

/* City page */
.city-overview,
.province-overview {
  width: 100%;
  margin: 24px 0;
}

.tier-filter-tabs {
  margin-top: 8px;
}

.filter-count {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* Detail page */
.detail-container {
  padding: 8px 0 96px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.detail-main,
.detail-info {
  min-width: 0;
}

.detail-main {
  display: grid;
  gap: 22px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(3, 8, 6, .12), rgba(3, 8, 6, .86)),
    linear-gradient(135deg, rgba(201, 154, 78, .22), transparent 38%),
    linear-gradient(45deg, rgba(64, 198, 178, .18), transparent 54%),
    #071714;
  box-shadow: var(--shadow-lg);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 227, .04) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, transparent, rgba(3, 8, 6, .9));
}

.detail-hero--media::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 8, 6, .08), rgba(3, 8, 6, .88)),
    linear-gradient(90deg, rgba(3, 8, 6, .78), rgba(3, 8, 6, .22) 58%, rgba(3, 8, 6, .72));
}

.detail-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.detail-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 356px;
}

.store-title,
.detail-info__name {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--copper-bright);
}

.rating-stars svg {
  width: 17px;
  height: 17px;
  fill: rgba(225, 184, 111, .28);
}

.rating-stars svg.filled { fill: var(--copper-bright); }
.rating-number { margin-left: 8px; color: var(--ivory); font-weight: 900; }

.detail-info-grid,
.detail-info__details,
.room-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-info-item,
.detail-info__detail,
.room-card,
.service-item,
.booking-card {
  display: flex;
  gap: 12px;
  min-height: 100px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(9, 26, 23, .66);
}

.info-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: var(--teal);
}

.info-icon.amber { fill: var(--copper-bright); }

.info-label,
.detail-info__detail-label,
.package-name {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .06em;
}

.info-value,
.detail-info__detail-value,
.package-price {
  color: var(--ivory);
  font-size: .92rem;
  font-weight: 750;
}

.detail-section,
.detail-desc,
.detail-package,
.map-container {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(9, 26, 23, .62);
}

.detail-section-title,
.detail-desc h3,
.detail-package h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
}

.detail-desc p,
.detail-info__desc,
.room-card p,
.service-item p {
  color: var(--ivory-soft);
  font-size: .94rem;
}

.package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(224, 201, 153, .1);
}

.package-item:first-of-type { border-top: 0; }
.package-price { color: var(--copper-bright); }

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

.gallery-item,
.gallery-placeholder {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-placeholder {
  display: grid;
  place-items: end start;
  min-height: 154px;
  padding: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 20%, rgba(3, 8, 6, .78)),
    linear-gradient(135deg, rgba(201, 154, 78, .2), transparent 44%),
    linear-gradient(45deg, rgba(64, 198, 178, .14), transparent 54%),
    #0b211d;
  color: var(--ivory);
  font-size: .82rem;
  font-weight: 900;
}

.g2, .g6 { background-color: #102a25; }
.g3, .g7 { background-color: #121d20; }
.g4, .g8 { background-color: #1a211b; }

.gallery-media-item {
  border: 1px solid var(--line);
  background: rgba(9, 26, 23, .66);
}

.gallery-media-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-media-item figcaption {
  padding: 9px 11px 11px;
  color: var(--muted-2);
  font-size: .78rem;
  line-height: 1.35;
}

.map-placeholder,
.map-container__map {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(64, 198, 178, .18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(64, 198, 178, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 198, 178, .08) 1px, transparent 1px),
    rgba(3, 8, 6, .36);
  background-size: 28px 28px;
  color: var(--muted);
  text-align: center;
}

.map-placeholder svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  fill: var(--teal);
}

.map-hint { color: var(--ivory-soft); font-size: .86rem; }

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 20px;
}

.sidebar-card h2,
.sidebar-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem;
}

.sidebar-card h2 svg,
.sidebar-card h4 svg,
.cta-btn svg,
.form-submit svg,
.sidebar-phone-btn svg,
.sidebar-wechat-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sidebar-phone-btn,
.sidebar-wechat-btn {
  width: 100%;
  margin-top: 10px;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.share-btn {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .045);
  color: var(--ivory-soft);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sidebar-store-item,
.nearby-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(224, 201, 153, .1);
  color: inherit;
}

.sidebar-store-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 154, 78, .26);
  border-radius: var(--radius-sm);
  color: var(--copper-bright);
  background: rgba(201, 154, 78, .08);
  font-weight: 900;
}

.sidebar-store-name,
.nearby-card__name { color: var(--ivory); font-size: .84rem; font-weight: 850; }
.sidebar-store-addr { color: var(--muted); font-size: .74rem; line-height: 1.55; }

.booking-form {
  display: grid;
  gap: 10px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 42px;
  padding: 10px 12px;
}

/* Contact, partner, recruitment, article */
.recruitment-page-section {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 24px) 0 74px;
}

.recruitment-wrap {
  display: grid;
  gap: 22px;
}

.recruitment-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.recruitment-breadcrumb a {
  color: var(--copper-bright);
}

.recruitment-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.recruitment-heading h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.18;
}

.recruitment-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.recruitment-job-panel {
  overflow: hidden;
  border: 1px solid rgba(196, 162, 101, .28);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .06), rgba(244, 239, 227, .018)),
    radial-gradient(circle at 18% 0%, rgba(69, 201, 184, .12), transparent 35%),
    rgba(8, 19, 17, .88);
  box-shadow: var(--shadow-lg);
}

.recruitment-job-head {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 24px 24px 16px;
  text-align: center;
}

.recruitment-job-head h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 950;
}

.recruitment-job-head strong {
  color: var(--copper-bright);
  font-size: 1rem;
}

.recruitment-job-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 18px 18px;
  border: 1px solid rgba(196, 162, 101, .2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.recruitment-job-meta div {
  display: grid;
  gap: 8px;
  min-height: 76px;
  padding: 16px 18px;
  background: rgba(3, 11, 10, .26);
}

.recruitment-job-meta div + div {
  border-left: 1px solid rgba(196, 162, 101, .2);
}

.recruitment-job-meta dt,
.recruitment-job-block h3 {
  color: var(--copper-bright);
  font-size: .9rem;
  font-weight: 950;
}

.recruitment-job-meta dd {
  margin: 0;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.recruitment-job-block {
  padding: 18px 24px;
  border-top: 1px solid rgba(196, 162, 101, .22);
}

.recruitment-job-block h3 {
  margin: 0 0 10px;
}

.recruitment-job-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15em;
  color: var(--ivory-soft);
  line-height: 1.75;
}

.recruitment-job-block--contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.recruitment-job-copy {
  min-width: 0;
}

.recruitment-job-qr {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(196, 162, 101, .18);
  border-radius: var(--radius-sm);
  background: rgba(3, 11, 10, .28);
}

.recruitment-job-qr h4,
.recruitment-job-qr-title {
  display: block;
  margin: 0;
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 950;
}

.recruitment-job-qr .footer-qr-frame {
  width: 132px;
  height: 132px;
  border-width: 5px;
}

.recruitment-job-qr .footer-qr-image {
  width: 100%;
  height: 100%;
}

.recruitment-job-qr strong {
  color: var(--ivory);
  font-size: .82rem;
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0, rgba(225, 184, 111, .08), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(69, 201, 184, .08), transparent 32%),
    linear-gradient(180deg, rgba(8, 14, 20, .96), rgba(5, 8, 14, .98));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(142px, .22fr);
  gap: clamp(26px, 4vw, 64px);
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 52px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 1.2;
}

.footer-logo span {
  color: var(--gold);
}

.footer h4 {
  margin: 0 0 18px;
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 950;
}

.footer a,
.footer p,
.footer-contact {
  color: var(--muted);
  font-size: .88rem;
}

.footer a:hover,
.contact-value { color: var(--copper-bright); }

.footer-brand p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
}

.footer-hotline {
  color: var(--ivory-soft);
}

.footer-hotline a,
.footer-phone {
  color: var(--ivory);
  font-weight: 900;
}

.footer-nav {
  margin-top: 18px;
}

.footer-nav h4,
.footer-nav-title {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-weight: 900;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  line-height: 1.3;
  font-weight: 800;
}

.footer-qr {
  min-width: 0;
}

.footer-qr-title {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-weight: 900;
  line-height: 1.35;
}

.footer-qr-frame {
  display: block;
  width: 140px;
  height: 140px;
  border: 6px solid rgba(244, 239, 227, .95);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.footer-qr-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-qr-image--booking {
  transform: scale(1.105);
  transform-origin: center;
}

.footer-qr strong {
  display: block;
  margin-top: 12px;
  color: var(--ivory);
  font-size: .86rem;
  line-height: 1.35;
}

.footer-qr a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--ivory);
  font-weight: 900;
  line-height: 1.45;
}

.footer-contact p { display: flex; align-items: center; gap: 8px; margin-top: 8px; }

.footer-bottom {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(224, 201, 153, .08);
  color: var(--dim);
  text-align: center;
  font-size: .78rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--dim);
  line-height: 1.8;
}

.footer-bottom a {
  color: var(--dim);
}

.footer-bottom a:hover {
  color: var(--copper-bright);
}

.contact-card,
.benefit-card,
.mode-card,
.job-card,
.info-block {
  padding: 24px;
}

.card-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(201, 154, 78, .1);
}

.card-icon svg,
.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--copper-bright);
}

.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group { margin-bottom: 14px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--muted); font-size: .8rem; font-weight: 800; }
.form-group input,
.form-group select,
.form-group textarea { padding: 12px 14px; }
.required { color: var(--copper-bright); }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(224, 201, 153, .1);
  color: var(--ivory-soft);
  font-size: .86rem;
}

.hours-row:last-child { border-bottom: 0; }
.time.highlight,
.response-value,
.highlight-text,
.gold-word,
.brand-gold { color: var(--copper-bright); }
.teal-text { color: var(--teal); }

.quick-response,
.partner-cta,
.recruit-cta,
.cta-section {
  position: relative;
  overflow: hidden;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 36px auto 86px;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(201, 154, 78, .14), transparent 46%),
    linear-gradient(45deg, rgba(64, 198, 178, .12), transparent 54%),
    rgba(9, 26, 23, .76);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-section h2,
.partner-cta h2,
.recruit-cta h2 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.cta-section p,
.partner-cta p,
.recruit-cta p { margin-top: 8px; color: var(--ivory-soft); }

.info-page-compact {
  padding-bottom: 34px;
}

.info-page-compact .section {
  padding: 38px 0;
}

.info-page-compact .section:first-child {
  padding-top: 46px;
}

.info-page-compact .contact-grid,
.info-page-compact .partner-benefits,
.info-page-compact .content-index-grid {
  gap: 14px;
}

.info-page-compact .content-panel {
  padding: clamp(24px, 3vw, 34px);
}

.info-page-compact .content-panel p {
  margin-top: 10px;
}

.info-page-compact .content-detail-list {
  margin-top: 18px;
}

.info-page-compact .cta-section {
  margin: 22px auto 44px;
  padding: 34px;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.partner-process {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
  margin: 32px 0;
}

.process-step { flex: 1 1 160px; max-width: 220px; padding: 20px; text-align: center; }
.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--ink-950);
  font-weight: 900;
}
.process-arrow { display: grid; place-items: center; color: var(--copper-bright); }

.article-content,
.article-detail__content {
  color: var(--ivory-soft);
  font-size: 1rem;
}

.article-content h2,
.article-detail__content h2 {
  margin: 28px 0 12px;
  color: var(--ivory);
  font-family: var(--font-display);
}

.article-content p,
.article-detail__content p { margin: 12px 0; }

.article-detail__header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.article-detail__title {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.article-detail__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.article-detail__nav-link {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ivory-soft);
}

.article-detail-layout {
  width: min(100%, 960px);
  margin: 0 auto;
}

.article-detail-layout--story {
  padding-bottom: 18px;
}

.article-detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.article-detail-main--story {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border-color: rgba(196, 162, 101, .26);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .07), rgba(244, 239, 227, .025)),
    radial-gradient(circle at 18% 0%, rgba(69, 201, 184, .16), transparent 34%),
    rgba(8, 19, 17, .88);
  box-shadow: var(--shadow-lg);
}

.article-detail-head {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.article-detail-head h1 {
  max-width: 840px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: 0;
}

.article-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.article-detail-tags span {
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(69, 201, 184, .34);
  border-radius: 999px;
  background: rgba(69, 201, 184, .08);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
}

.article-detail-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 101, .44), transparent);
}

.article-content--story {
  color: var(--ivory-soft);
  font-size: 1rem;
  line-height: 1.95;
}

.article-content--story h2 {
  margin: 28px 0 12px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
  line-height: 1.35;
}

.article-content--story p {
  margin: 16px 0;
}

.article-inline-figure {
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid rgba(196, 162, 101, .22);
  border-radius: var(--radius-md);
  background: rgba(3, 11, 10, .38);
  box-shadow: var(--shadow-md);
}

.article-inline-image,
.article-body-image,
.article-content--story img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-detail-update {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.article-detail-update strong {
  color: var(--copper-bright);
}

.article-detail-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-detail-nav-link {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(196, 162, 101, .25);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .04);
  color: var(--ivory-soft);
  font-weight: 800;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.article-detail-nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(196, 162, 101, .46);
  background: rgba(196, 162, 101, .10);
  color: var(--text);
}

.article-detail-nav-link--primary {
  border-color: rgba(224, 201, 153, .6);
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: var(--ink-950);
}

.article-detail-nav-link--primary:hover {
  color: var(--ink-950);
}

.article-detail-nav-link.is-disabled {
  opacity: .42;
  pointer-events: none;
}

.article-related-inline {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-related-inline h2 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.28rem;
}

.article-related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-related-link {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(196, 162, 101, .22);
  border-radius: var(--radius-sm);
  background: rgba(3, 11, 10, .36);
  color: var(--ivory-soft);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.article-related-link:hover {
  transform: translateY(-1px);
  border-color: rgba(69, 201, 184, .44);
  background: rgba(69, 201, 184, .08);
}

.article-related-link strong {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
}

.article-related-link small {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .article-detail-layout {
    width: min(100%, 900px);
  }
}

@media (max-width: 768px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(3, 8, 6, .08) 0%, rgba(3, 8, 6, .62) 94%);
  }

  .hero h1 {
    text-shadow:
      0 2px 6px rgba(0, 0, 0, .82),
      0 10px 26px rgba(0, 0, 0, .62);
  }

  .article-detail-head {
    justify-items: start;
    text-align: left;
  }

  .article-detail-head h1 {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    line-height: 1.3;
  }

  .article-detail-tags {
    justify-content: flex-start;
  }

  .article-inline-figure {
    margin: 18px 0;
    border-radius: var(--radius-sm);
  }

  .article-inline-image,
  .article-body-image,
  .article-content--story img {
    aspect-ratio: 4 / 3;
  }

  .article-detail-nav {
    grid-template-columns: 1fr;
  }

  .article-related-list {
    grid-template-columns: 1fr;
  }
}

/* Modals and floating actions */
.float-wechat,
.scroll-top {
  position: fixed;
  right: 18px;
  z-index: 700;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(224, 201, 153, .18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .08), rgba(244, 239, 227, .025)),
    rgba(7, 23, 20, .9);
  color: var(--teal);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.float-wechat {
  bottom: 92px;
  cursor: pointer;
  border-color: rgba(64, 198, 178, .34);
  background:
    radial-gradient(circle at 32% 18%, rgba(64, 198, 178, .28), transparent 34%),
    linear-gradient(180deg, rgba(64, 198, 178, .14), rgba(7, 23, 20, .92));
}

.float-wechat::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(64, 198, 178, .18), transparent 68%);
  opacity: .72;
  pointer-events: none;
}

.float-wechat-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(64, 198, 178, .28);
  border-radius: 999px;
  background: rgba(64, 198, 178, .12);
}

.float-wechat-dot {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(3, 8, 6, .86);
  border-radius: 999px;
  background: var(--copper-bright);
  box-shadow: 0 0 16px rgba(225, 184, 111, .55);
}

.scroll-top {
  bottom: 148px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  color: var(--copper-bright);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.float-wechat svg,
.scroll-top svg { width: 22px; height: 22px; fill: currentColor; }

.float-wechat:hover,
.scroll-top:hover {
  border-color: rgba(225, 184, 111, .42);
  color: var(--ivory);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42), 0 0 30px rgba(64, 198, 178, .14);
  transform: translateY(-2px);
}

.scroll-top.visible:hover {
  transform: translateY(-2px);
}

.float-wechat-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  min-width: 160px;
  padding: 10px;
  border: 1px solid rgba(64, 198, 178, .26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .08), rgba(244, 239, 227, .025)),
    rgba(3, 8, 6, .96);
  color: var(--ivory);
  text-align: center;
  font-size: .8rem;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.float-wechat-qr-frame {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto 7px;
  border: 1px solid rgba(225, 184, 111, .28);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.float-wechat-qr-frame img {
  width: 126px;
  height: 126px;
  max-width: none;
  object-fit: contain;
  transform: scale(1.1);
}

.float-wechat-qr-title {
  display: block;
  color: var(--copper-bright);
  font-size: .78rem;
  font-weight: 900;
}

.float-wechat:hover .float-wechat-tooltip,
.float-wechat.active .float-wechat-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-2px, -50%);
}

.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .68);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.phone-modal.active {
  opacity: 1;
  visibility: visible;
}

.phone-modal-content {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(7, 23, 20, .96);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.phone-modal-title {
  display: block;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
}

.phone-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ivory-soft);
  font-size: 1.4rem;
}

.phone-number {
  margin: 16px 0 8px;
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--copper-bright);
  font-weight: 900;
}

.phone-hint { color: var(--muted); font-size: .86rem; }

.mobile-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 680;
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  width: 100dvw;
  max-width: 100dvw;
  height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  border-top: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 8, 6, .68) 22%, rgba(3, 8, 6, .96) 100%);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.mobile-bottom-nav::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: calc(8px + env(safe-area-inset-bottom));
  left: 8px;
  height: 58px;
  border: 1px solid rgba(224, 201, 153, .16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .075), rgba(244, 239, 227, .025)),
    rgba(5, 16, 14, .96);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .045);
  pointer-events: none;
}

.mobile-bottom-nav a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 32px auto;
  place-items: center;
  align-content: center;
  gap: 2px;
  min-width: 0;
  min-height: 58px;
  padding: 5px 0 4px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  line-height: 1;
  touch-action: manipulation;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
  color: var(--copper-bright);
}

.mobile-bottom-nav a:active {
  transform: scale(.97);
}

.mobile-bottom-nav__icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.mobile-bottom-nav a.active .mobile-bottom-nav__icon {
  border-color: rgba(225, 184, 111, .28);
  background:
    linear-gradient(180deg, rgba(225, 184, 111, .16), rgba(201, 154, 78, .08));
  color: var(--copper-bright);
}

.mobile-bottom-nav a.active:not(.mobile-bottom-nav__cta)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: -1px;
  border-radius: 999px;
  background: var(--copper-bright);
  box-shadow: 0 0 12px rgba(225, 184, 111, .5);
}

.mobile-bottom-nav__cta {
  color: var(--copper-bright);
}

.mobile-bottom-nav__cta .mobile-bottom-nav__icon {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 231, 181, .42);
  background:
    radial-gradient(circle at 35% 18%, rgba(255, 255, 255, .42), transparent 34%),
    linear-gradient(135deg, #f0cd86, #c99a4e 58%, #8d642e);
  color: var(--ink-950);
  box-shadow: 0 10px 26px rgba(201, 154, 78, .24), 0 0 0 4px rgba(201, 154, 78, .08);
}

.mobile-bottom-nav__cta:active .mobile-bottom-nav__icon {
  transform: translateY(1px) scale(.98);
}

.mobile-bottom-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-bottom-nav__cta svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.9;
}

.mobile-bottom-nav a > span:last-child {
  max-width: 100%;
  overflow: hidden;
  font-size: .58rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-bottom-nav__cta > span:last-child {
  color: var(--copper-bright);
  font-weight: 900;
}

.hero-stats.hero-stats--single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-stats--single .stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.8vw, 24px);
  min-width: 0;
  padding: 16px 18px;
  white-space: nowrap;
}

.hero-stats--single .stat-item {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: clamp(.74rem, 2.3vw, .9rem);
  font-weight: 820;
}

.hero-stats--single .stat-item strong {
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 1.08em;
  font-weight: 950;
}

.mobile-cta-bar {
  position: fixed;
  right: 0;
  bottom: var(--bottom-nav-height);
  left: 0;
  z-index: 690;
  display: none;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: rgba(3, 8, 6, .92);
  backdrop-filter: blur(18px);
}

.mobile-cta-bar button { flex: 1; }

.mobile-cta-bar .cta-phone,
.mobile-cta-bar .cta-wechat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 900;
}

.mobile-cta-bar .cta-phone {
  border: 1px solid rgba(225, 184, 111, .38);
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: var(--ink-950);
}

.mobile-cta-bar .cta-wechat {
  border: 1px solid var(--line-teal);
  background: rgba(64, 198, 178, .1);
  color: var(--teal);
}

.mobile-cta-bar svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.loading {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: var(--muted);
}

.alert { display: none; padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 14px; }
.alert.success { display: block; border: 1px solid var(--line-teal); background: var(--teal-soft); color: var(--teal); }
.alert.error { display: block; border: 1px solid rgba(185,99,88,.3); background: rgba(185,99,88,.12); color: #ffaaa1; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ivory-soft);
}
.pagination .current-page {
  background: var(--copper-bright);
  color: var(--ink-950);
  border-color: var(--copper-bright);
}

/* Static Baidu-friendly content pages */
.content-page {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 26px) 0 84px;
}

.content-breadcrumb {
  width: 100%;
  margin: 0 0 18px;
}

.content-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 162, 101, .22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(244, 239, 227, .10), rgba(6, 17, 15, .58)),
    radial-gradient(circle at 14% 18%, rgba(69, 201, 184, .24), transparent 36%),
    radial-gradient(circle at 84% 8%, rgba(196, 162, 101, .18), transparent 32%),
    rgba(8, 19, 17, .86);
  box-shadow: var(--shadow-xl);
  padding: clamp(34px, 6vw, 76px);
}

.content-hero::after {
  content: "";
  position: absolute;
  inset: auto 7% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 101, .72), transparent);
}

.content-hero h1 {
  max-width: 920px;
  margin: 12px 0 16px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.content-hero p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.store-detail-hero .hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-detail-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.store-detail-hero-copy {
  min-width: 0;
}

.store-detail-cover {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 239, 227, .14);
  border-radius: var(--radius-lg);
  background: rgba(6, 17, 15, .58);
  box-shadow: var(--shadow-lg);
}

.store-detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .04), transparent 45%, rgba(2, 6, 5, .34)),
    linear-gradient(90deg, rgba(225, 184, 111, .13), transparent 24%, transparent 76%, rgba(69, 201, 184, .12));
  pointer-events: none;
}

.store-detail-cover__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.store-detail-cover figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(244, 239, 227, .16);
  border-radius: var(--radius-sm);
  background: rgba(2, 6, 5, .62);
  color: var(--muted-2);
  font-size: .72rem;
  line-height: 1.4;
  padding: 7px 10px;
  backdrop-filter: blur(10px);
}

.store-detail-page-head {
  margin-top: 18px;
}

.store-detail-page-head h1 {
  max-width: 980px;
  margin: 10px 0 10px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.store-detail-page-head p {
  max-width: 860px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.85;
}

.store-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: .82rem;
}

.store-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.store-detail-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--copper-bright);
  box-shadow: 0 0 12px rgba(225, 184, 111, .42);
}

.store-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(22px, 3.8vw, 44px);
  align-items: start;
  margin-top: 28px;
}

.store-detail-main {
  min-width: 0;
}

.store-detail-cover--wide {
  border-radius: var(--radius-md);
}

.store-detail-cover--wide .store-detail-cover__image {
  aspect-ratio: 16 / 7.4;
}

.store-detail-action-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(201, 154, 78, .2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(201, 154, 78, .14), rgba(64, 198, 178, .08)),
    rgba(6, 17, 15, .62);
}

.store-detail-action-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(225, 184, 111, .3);
  border-radius: var(--radius-sm);
  background: rgba(201, 154, 78, .12);
  color: var(--copper-bright);
  font-size: .86rem;
  font-weight: 900;
}

.store-detail-action-strip a:hover {
  border-color: rgba(225, 184, 111, .52);
  background: rgba(201, 154, 78, .18);
  color: var(--ivory);
}

.store-detail-intro-panel {
  margin-top: 18px;
}

.store-detail-facts-panel {
  margin-top: 18px;
}

.store-detail-main .content-panel img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-md);
  margin: 12px 0;
  background: rgba(6, 17, 15, .58);
}

.store-detail-subtitle {
  margin: 22px 0 12px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
}

.store-detail-story {
  display: grid;
  gap: 18px;
  margin: 18px 0 16px;
}

.store-detail-story-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(224, 201, 153, .14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .045), rgba(244, 239, 227, .018)),
    rgba(6, 17, 15, .5);
}

.store-detail-story-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #06110f;
}

.store-detail-story-item figcaption {
  display: grid;
  gap: 7px;
  padding: 14px 16px 16px;
}

.store-detail-story-item strong {
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 900;
}

.store-detail-story-item span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
}

.store-detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 16px;
  min-width: 0;
}

.store-detail-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 239, 227, .052), rgba(244, 239, 227, .018)),
    rgba(6, 17, 15, .72);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.store-detail-side-card h2 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.store-detail-side-list {
  display: grid;
  gap: 10px;
}

.store-detail-side-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(224, 201, 153, .1);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .035);
  color: inherit;
}

.store-detail-side-item:hover {
  border-color: rgba(225, 184, 111, .28);
  background: rgba(201, 154, 78, .08);
}

.store-detail-side-thumb {
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: #06110f;
}

.store-detail-side-thumb__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.store-detail-side-copy {
  min-width: 0;
}

.store-detail-side-copy strong,
.store-detail-side-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-detail-side-copy strong {
  color: var(--ivory);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.store-detail-side-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.store-detail-side-more {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  color: var(--copper-bright);
  font-size: .78rem;
  font-weight: 900;
}

.store-detail-city-nav {
  display: grid;
  gap: 8px;
}

.store-detail-city-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(224, 201, 153, .1);
  border-radius: var(--radius-sm);
  background: rgba(244, 239, 227, .032);
  color: var(--ivory-soft);
}

.store-detail-city-nav a.active,
.store-detail-city-nav a:hover {
  border-color: rgba(225, 184, 111, .28);
  background: rgba(201, 154, 78, .1);
  color: var(--copper-bright);
}

.store-detail-city-nav span {
  font-weight: 850;
}

.store-detail-city-nav small {
  color: var(--muted);
  font-size: .7rem;
  white-space: nowrap;
}

.content-section,
.content-panel {
  margin-top: 28px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(244, 239, 227, .055);
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 4vw, 36px);
}

.content-panel h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: 0;
}

.content-panel p {
  color: var(--muted);
  line-height: 1.85;
}

.content-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.content-index-grid--dense {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.content-index-link {
  display: flex;
  min-width: 0;
  border: 1px solid rgba(244, 239, 227, .12);
  border-radius: var(--radius-md);
  background: rgba(6, 17, 15, .44);
  color: var(--text);
  transition: var(--transition);
}

.content-index-link {
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
}

.content-index-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.content-index-link small {
  overflow: hidden;
  color: var(--muted-2);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-index-link:hover {
  border-color: rgba(196, 162, 101, .5);
  background: rgba(196, 162, 101, .12);
  transform: translateY(-2px);
}

.content-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.content-detail-list div {
  border: 1px solid rgba(244, 239, 227, .10);
  border-radius: var(--radius-md);
  background: rgba(6, 17, 15, .36);
  padding: 14px 16px;
}

.content-detail-list dt {
  color: var(--muted-2);
  font-size: .82rem;
}

.content-detail-list dd {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.55;
}

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

.store-room-card {
  overflow: hidden;
  border: 1px solid rgba(244, 239, 227, .12);
  border-radius: var(--radius-md);
  background: rgba(6, 17, 15, .48);
}

.store-room-media {
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid rgba(244, 239, 227, .1);
  background:
    radial-gradient(circle at 22% 22%, rgba(69, 201, 184, .2), transparent 38%),
    radial-gradient(circle at 78% 16%, rgba(225, 184, 111, .22), transparent 35%),
    #06110f;
}

.store-room-media__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.store-room-card:hover .store-room-media__image {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.store-room-card__body {
  padding: 16px;
}

.store-room-card h3,
.store-room-card p {
  margin: 0;
}

.store-room-card h3 {
  color: var(--text);
}

.store-room-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

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

.store-gallery-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 239, 227, .12);
  border-radius: var(--radius-md);
  background: rgba(6, 17, 15, .48);
}

.store-gallery-item:first-child {
  grid-column: span 2;
}

.store-gallery-item__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #06110f;
}

.store-gallery-item figcaption {
  min-height: 46px;
  padding: 10px 12px 12px;
  color: var(--muted-2);
  font-size: .78rem;
  line-height: 1.45;
}

.content-media-note {
  margin-top: 16px;
  border: 1px solid rgba(225, 184, 111, .18);
  border-radius: var(--radius-md);
  background: rgba(225, 184, 111, .07);
  padding: 14px 16px;
}

.content-media-note strong {
  color: var(--copper-bright);
}

.content-compliance {
  margin-top: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.content-article .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted-2);
}

.baidu-content-entry {
  padding-top: 28px;
}

/* Responsive */
@media (max-width: 1100px) {
  .header-inner {
    gap: 10px;
    padding-inline: 18px;
  }
  .logo {
    gap: 8px;
    font-size: 1.17rem;
  }
  .logo::before {
    width: 30px;
    height: 30px;
  }
  .nav-desktop { gap: 0; }
  .nav-desktop a,
  .nav-dropdown > a {
    min-height: 40px;
    padding-inline: 9px;
    font-size: .84rem;
  }
  .header-phone {
    min-height: 48px;
    padding: 10px 18px;
    font-size: 1.03rem;
  }
  .region-grid,
  .regions-grid,
  .city-grid,
  .articles-grid,
  .news-grid,
  .related-grid,
  .contact-grid,
  .partner-benefits,
  .cooperation-modes,
  .job-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .city-index-layout {
    grid-template-columns: 1fr;
  }
  .city-index-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-content-entry-grid {
    grid-template-columns: 1fr;
  }
  .city-index-store-direct-grid,
  .home-direct-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  body { padding-bottom: var(--bottom-nav-height); }

  .nav-desktop,
  .city-selector {
    display: none !important;
  }

  .header-phone {
    display: inline-flex !important;
    justify-content: center;
    min-height: 44px;
    margin-left: auto;
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    font-size: .94rem;
    line-height: 1;
    letter-spacing: .01em;
  }

  .hamburger { display: none; }
  .mobile-nav { display: block; }
  .mobile-bottom-nav { display: grid; }
  .mobile-cta-bar { display: flex; }

  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }
  .logo {
    gap: 8px;
    font-size: 1.1rem;
  }
  .logo::before {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: calc(var(--header-height) + 56px) 18px 28px;
  }
  .hero-bg-slider,
  .hero::after {
    inset: 0 0 auto;
    height: var(--hero-bg-mobile-end, 430px);
  }
  .hero-content,
  .search-hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .home-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero h1,
  .search-hero h1,
  .page-banner h1,
  .page-header h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    word-break: break-all;
  }
  .hero h1 span {
    margin-top: 10px;
    font-size: .52em;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .hero .subtitle {
    width: 100%;
    max-width: 100%;
  }
  .hero-search,
  .search-bar-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 100%;
    margin-top: 24px;
    overflow: hidden;
  }

  .search-bar-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .search-bar-wrap input {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(244, 239, 227, .07);
    padding: 0 18px;
  }

  .search-bar-wrap .search-btn {
    position: static;
    width: 100%;
    height: 48px;
    margin: 0;
  }

  .search-page .search-bar-wrap .search-btn {
    width: 100%;
  }

  .search-page .search-bar-wrap input {
    padding-right: 18px;
  }

  .hero-search input,
  .search-bar-wrap input {
    height: 54px;
    padding-right: 12px;
  }

  #cityQuickEntry.hero-city-entry {
    padding: 12px;
    border: 1px solid rgba(224, 201, 153, .14);
    border-radius: var(--radius-md);
    background:
      linear-gradient(180deg, rgba(244, 239, 227, .055), rgba(244, 239, 227, .02)),
      rgba(3, 8, 6, .94);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .26);
  }

  .hero-stats,
  .city-overview,
  .province-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .page,
  .search-page,
  .content-page,
  .detail-container,
  .article-detail-wrap,
  .breadcrumb,
  .breadcrumb-wrap .breadcrumb,
  .breadcrumb-inner {
    width: min(100% - 32px, var(--max-width));
  }

  .page-content {
    padding-top: var(--header-height);
  }

  .section { padding: 56px 0; }
  .section-alt { padding: 56px 16px; }

  .info-page-compact {
    padding-bottom: 18px;
  }

  .info-page-compact .section {
    padding: 26px 0;
  }

  .info-page-compact .section:first-child {
    padding-top: 32px;
  }

  .info-page-compact .contact-grid,
  .info-page-compact .partner-benefits,
  .info-page-compact .content-index-grid {
    gap: 12px;
  }

  .info-page-compact .content-panel {
    padding: 18px;
  }

  .info-page-compact .cta-section {
    margin: 18px auto 34px;
    padding: 24px 18px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .filter-showcase { margin-top: -42px; }
  .home-filter-panel { padding: 16px; }
  .filter-grid,
  .contact-two-col,
  .detail-info-grid,
  .detail-info__details,
  .content-detail-list,
  .store-room-grid,
  .room-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .store-footer,
  .store-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-phone-btn,
  .store-card__link {
    width: 100%;
  }

  .store-grid,
  .stores-grid,
  .region-grid,
  .regions-grid,
  .city-grid,
  .articles-grid,
  .news-grid,
  .related-grid,
  .contact-grid,
  .partner-benefits,
  .cooperation-modes,
  .job-list {
    grid-template-columns: 1fr;
  }

  .store-grid,
  .stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .store-card {
    min-height: 0;
    border-color: var(--line);
    border-radius: var(--radius-md);
    background:
      linear-gradient(180deg, rgba(244, 239, 227, .052), rgba(244, 239, 227, .018)),
      radial-gradient(circle at 18% 0, rgba(201, 154, 78, .12), transparent 36%),
      rgba(9, 26, 23, .84);
    box-shadow: var(--shadow-sm);
  }

  .store-card:hover {
    transform: none;
  }

  .store-card::before {
    height: 100%;
    background:
      radial-gradient(circle at 18% 14%, rgba(225, 184, 111, .14), transparent 34%),
      radial-gradient(circle at 82% 0, rgba(64, 198, 178, .11), transparent 38%),
      linear-gradient(180deg, rgba(244, 239, 227, .035), transparent 42%);
    opacity: .9;
  }

  .store-card-media {
    aspect-ratio: 1 / .76;
    border-bottom-color: var(--line);
    background:
      radial-gradient(circle at 24% 12%, rgba(225, 184, 111, .18), transparent 34%),
      radial-gradient(circle at 78% 6%, rgba(64, 198, 178, .13), transparent 38%),
      linear-gradient(135deg, rgba(16, 42, 37, .96), rgba(6, 17, 15, .98));
  }

  .store-card-media::after {
    background:
      linear-gradient(180deg, rgba(3, 8, 6, .04), rgba(3, 8, 6, .34)),
      linear-gradient(90deg, rgba(225, 184, 111, .07), transparent 32%, rgba(64, 198, 178, .05));
  }

  .store-card-media__image {
    filter: none;
    opacity: 1;
  }

  .store-card:hover .store-card-media__image {
    transform: none;
    filter: none;
  }

  .store-card-body,
  .store-card__body {
    position: static;
    min-height: 0;
    padding: 11px 10px 12px;
  }

  .store-card .store-tags,
  .store-card .store-card__tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    margin-top: 0;
    gap: 0;
  }

  .store-card .store-tags .store-tag:not(:first-child),
  .store-card .store-card__tags .store-tag:not(:first-child) {
    display: none;
  }

  .store-card .store-tag,
  .store-card .store-tag.amber {
    min-height: 30px;
    padding: 6px 9px;
    border-color: rgba(255, 221, 154, .62);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, var(--copper-bright), var(--copper));
    color: var(--ink-950);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
  }

  #homeFilterResults .store-name--desktop,
  #homeFilterResults .store-tags--desktop,
  #homeFilterResults .store-address--desktop {
    display: none;
  }

  #homeFilterResults .store-card-body {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 6px;
    row-gap: 8px;
  }

  #homeFilterResults .store-card .store-name--mobile {
    display: block;
    grid-column: 1;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding-right: 0;
    overflow: visible;
    color: var(--ivory);
    font-size: clamp(.82rem, 2.6vw, 1.04rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  #homeFilterResults .store-card .store-name--mobile.store-name--long {
    font-size: clamp(.72rem, 2.35vw, .9rem);
    line-height: 1.14;
  }

  #homeFilterResults .store-card .store-tags--mobile,
  #homeFilterResults .store-card .store-card__tags {
    position: static;
    z-index: 4;
    display: flex;
    grid-column: 2;
    justify-self: end;
    align-self: start;
    max-width: 52px;
    min-width: 0;
    margin-top: 0;
    gap: 0;
  }

  #homeFilterResults .store-card .store-tags--mobile .store-tag,
  #homeFilterResults .store-card .store-card__tags .store-tag {
    max-width: 100%;
    min-height: 20px;
    padding: 3px 6px;
    overflow: hidden;
    border-radius: 7px;
    font-size: .62rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #homeFilterResults .store-card .store-package,
  #homeFilterResults .store-card .store-desc,
  #homeFilterResults .store-card .store-footer {
    grid-column: 1 / -1;
  }

  .store-card .store-name,
  .store-card .store-card__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.55em;
    color: var(--ivory);
    font-size: .88rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .store-card .store-name a,
  .store-card .store-card__title a {
    color: inherit;
  }

  .store-card .store-address,
  .store-card .store-card__address,
  .store-card .store-desc {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    color: var(--ivory-soft);
    font-size: .72rem;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .store-card .store-package,
  .store-card .store-card__price,
  .store-card .store-footer,
  .store-card .store-card__footer {
    display: none;
  }

  .store-card > a {
    display: block;
    min-height: 164px;
    padding: 14px;
  }

  .store-card > a h3 {
    color: var(--ivory);
    font-size: .9rem;
    line-height: 1.35;
  }

  .store-card > a p {
    margin-top: 8px;
    color: var(--ivory-soft);
    font-size: .74rem;
    line-height: 1.45;
  }

  .city-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .city-tags .city-tag {
    justify-content: center;
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
  }

  .search-hero {
    padding: calc(var(--header-height) + 10px) 16px 28px;
  }

  .page-banner {
    padding: 8px 16px 12px;
  }

  .recruitment-page-section {
    width: min(100% - 32px, 1100px);
    padding: 14px 0 42px;
  }

  .recruitment-wrap {
    gap: 16px;
  }

  .recruitment-heading h1 {
    font-size: clamp(1.42rem, 6vw, 2rem);
  }

  .recruitment-heading p {
    font-size: .92rem;
    line-height: 1.75;
  }

  .recruitment-job-head {
    padding: 20px 16px 14px;
  }

  .recruitment-job-meta {
    grid-template-columns: 1fr;
    margin: 0 12px 12px;
  }

  .recruitment-job-meta div {
    min-height: 70px;
    padding: 14px;
  }

  .recruitment-job-meta div + div {
    border-top: 1px solid rgba(196, 162, 101, .2);
    border-left: 0;
  }

  .recruitment-job-block {
    padding: 16px;
  }

  .recruitment-job-block ul {
    gap: 7px;
    font-size: .92rem;
  }

  .recruitment-job-block--contact {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruitment-job-qr {
    justify-self: center;
    width: min(100%, 190px);
  }

  .page-banner--city-index {
    padding: 8px 16px 12px;
  }

  .page-banner--city-index h1 {
    font-size: clamp(1.32rem, 5.4vw, 1.9rem);
    white-space: normal;
  }

  .page-banner h1 {
    font-size: clamp(1.32rem, 5.4vw, 1.9rem);
  }

  .page-banner p {
    margin-top: 4px;
    font-size: .9rem;
    line-height: 1.62;
  }

  .page-banner .hero-badge {
    margin-bottom: 3px;
  }

  .city-index-section {
    padding-top: 34px;
  }

  .city-index-intro,
  .city-index-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .city-index-panel-meta {
    justify-content: space-between;
    width: 100%;
  }

  .home-content-entry {
    padding-top: 50px;
  }

  .home-direct-city-grid,
  .city-index-store-direct-grid,
  .home-direct-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-content-panel-head {
    gap: 10px;
    margin-bottom: 12px;
  }

  .home-content-panel-head h3 {
    font-size: .98rem;
  }

  .home-content-panel-head span {
    flex: 0 0 auto;
    min-height: 26px;
    padding: 4px 8px;
    font-size: .68rem;
  }

  .home-content-panel-head .view-all {
    min-height: 30px;
    padding: 5px 8px;
    font-size: .7rem;
  }

  #cityQuickEntry.hero-city-entry {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 430px);
  }

  #cityQuickEntry .city-tag {
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 7px 5px;
    font-size: .74rem;
    white-space: nowrap;
  }

  .home-direct-city-grid .city-index-card {
    min-height: 96px;
    padding: 14px 12px;
  }

  .home-direct-city-grid .city-index-card__name {
    font-size: .86rem;
    line-height: 1.28;
  }

  .home-direct-city-grid .city-index-card small,
  .home-direct-city-grid .city-index-card em {
    font-size: .7rem;
    line-height: 1.35;
  }

  .home-direct-store-grid .home-store-direct-card {
    min-height: 78px;
    padding: 12px 11px 12px 25px;
    gap: 5px;
  }

  .home-direct-store-grid .home-store-direct-card::before {
    left: 11px;
    top: 18px;
  }

  .home-direct-store-grid .home-store-direct-card span {
    font-size: .78rem;
    line-height: 1.3;
  }

  .home-direct-store-grid .home-store-direct-card small {
    font-size: .68rem;
    line-height: 1.3;
  }

  .search-info {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-filter-summary {
    align-items: center;
    flex-flow: row wrap;
    gap: 8px;
  }

  .home-filter-summary > span:first-child {
    flex: 0 0 100%;
  }

  .home-filter-summary .home-filter-search-link,
  .home-filter-summary .home-store-entry {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-height: 38px;
    padding-inline: 8px;
    font-size: .72rem;
    text-align: center;
  }

  .content-page {
    padding-top: calc(var(--header-height) + 8px);
  }

  .content-hero,
  .content-panel {
    border-radius: var(--radius-md);
    padding: 18px;
  }

  .content-hero h1 {
    margin: 8px 0 10px;
    font-size: clamp(1.46rem, 6vw, 2.12rem);
    line-height: 1.16;
  }

  .content-hero p {
    font-size: .92rem;
    line-height: 1.72;
  }

  .store-detail-hero-layout {
    grid-template-columns: 1fr;
  }

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

  .store-detail-page-head h1 {
    font-size: clamp(1.6rem, 7vw, 2.45rem);
  }

  .store-detail-page-head p {
    font-size: .92rem;
  }

  .store-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 22px;
  }

  .store-detail-sidebar {
    position: static;
  }

  .store-detail-cover--wide .store-detail-cover__image {
    aspect-ratio: 16 / 9;
  }

  .store-detail-action-strip {
    grid-template-columns: 1fr;
  }

  .store-detail-side-card {
    padding: 16px;
  }

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

  .filter-tabs,
  .search-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .filter-tab,
  .search-filter-btn {
    flex: 0 0 auto;
  }

  .detail-hero {
    min-height: 390px;
    padding: 22px;
  }
  .detail-hero-content { min-height: 330px; }
  .detail-section,
  .detail-desc,
  .detail-package,
  .map-container,
  .sidebar-card { padding: 18px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-placeholder { min-height: 128px; }

  .footer { padding-bottom: var(--bottom-nav-height); }
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(430px, calc(100% - 28px));
    gap: 30px 18px;
    padding: 38px 0 28px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-logo {
    justify-content: center;
    font-size: 1.36rem;
  }

  .footer-brand p {
    max-width: 30em;
    margin: 16px auto 0;
    color: var(--ivory-soft);
    font-size: .9rem;
    line-height: 1.95;
  }

  .footer-hotline {
    margin-top: 20px;
    color: var(--ivory);
    font-size: .94rem;
    font-weight: 850;
  }

  .footer-hotline a {
    color: var(--ivory);
    font-size: 1.04rem;
    letter-spacing: .02em;
  }

  .footer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .footer-nav {
    display: grid;
    justify-items: center;
    margin-top: 18px;
  }

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    max-width: 360px;
  }

  .footer-nav li {
    display: inline-flex;
  }

  .footer-nav a {
    min-height: 32px;
    color: var(--ivory-soft);
    font-size: .88rem;
    font-weight: 800;
  }

  .footer-qr {
    grid-column: 1 / -1;
    justify-self: center;
    display: grid;
    justify-items: center;
    align-content: start;
    text-align: center;
  }

  .footer-qr-frame {
    width: 116px;
    height: 116px;
    border-width: 5px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
  }

  .footer-qr strong {
    margin-top: 10px;
    color: var(--ivory);
    font-size: .86rem;
  }

  .footer-qr a {
    justify-content: center;
    color: var(--ivory);
    font-size: .86rem;
  }

  .footer-bottom {
    width: min(430px, calc(100% - 28px));
    padding: 16px 0 24px;
  }

  .footer-bottom p {
    font-size: .72rem;
    line-height: 1.75;
  }

  .cta-section,
  .partner-cta,
  .recruit-cta {
    width: calc(100% - 32px);
    padding: 30px 18px;
    margin-bottom: 58px;
  }
  .cta-btns { flex-direction: column; }
  .cta-btn { width: 100%; }

  .float-wechat {
    right: 14px;
    bottom: calc(var(--bottom-nav-height) + 14px);
    width: 50px;
    height: 50px;
  }

  .scroll-top {
    right: 14px;
    bottom: calc(var(--bottom-nav-height) + 70px);
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 8px;
    padding-inline: 12px;
  }
  .logo {
    gap: 6px;
    font-size: 1rem;
  }
  .logo::before {
    width: 24px;
    height: 24px;
  }
  .header-phone {
    min-height: 40px;
    padding: 8px 10px;
    font-size: .84rem;
    letter-spacing: 0;
  }
  .city-index-card-grid {
    grid-template-columns: 1fr;
  }

  #city-level-1 .city-index-card-grid,
  #city-level-2 .city-index-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  #city-level-1 .city-index-card,
  #city-level-2 .city-index-card {
    min-height: 92px;
    padding: 13px 10px;
    gap: 6px;
  }

  #city-level-1 .city-index-card__name,
  #city-level-2 .city-index-card__name {
    font-size: .78rem;
    line-height: 1.25;
  }

  #city-level-1 .city-index-card small,
  #city-level-1 .city-index-card em,
  #city-level-2 .city-index-card small,
  #city-level-2 .city-index-card em {
    font-size: .66rem;
    line-height: 1.28;
  }

  #city-level-1 .city-index-card::before,
  #city-level-2 .city-index-card::before {
    top: 12px;
    right: 12px;
  }

  .city-index-panel-meta {
    gap: 8px;
  }

  .city-index-panel-meta p {
    font-size: .74rem;
  }

  .city-index-panel-meta .view-all {
    min-height: 30px;
    padding: 5px 7px;
    font-size: .68rem;
  }
  .city-index-store-direct-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .city-index-store-direct-grid .home-store-direct-card {
    min-height: 76px;
    padding: 12px 10px 12px 24px;
  }
  .city-index-store-direct-grid .home-store-direct-card::before {
    left: 10px;
    top: 18px;
  }
  .city-index-store-direct-grid .home-store-direct-card span {
    font-size: .76rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }
  .city-index-store-direct-grid .home-store-direct-card small {
    font-size: .68rem;
    line-height: 1.3;
  }
  .city-index-card {
    min-height: 104px;
    padding: 16px;
  }
  .hero-stats,
  .city-overview,
  .province-overview {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .store-gallery-grid { grid-template-columns: 1fr; }
  .store-gallery-item:first-child { grid-column: auto; }
  .article-detail__nav { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 28px);
    gap: 28px 14px;
    padding-top: 34px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p {
    font-size: .88rem;
    line-height: 1.9;
  }
  .footer-qr-frame {
    width: 108px;
    height: 108px;
  }
  .footer-qr a {
    font-size: .82rem;
  }
  .float-wechat-tooltip {
    right: calc(100% + 8px);
    min-width: 148px;
    padding: 8px;
  }
  .float-wechat-qr-frame {
    width: 120px;
    height: 120px;
  }
  .float-wechat-qr-frame img {
    width: 114px;
    height: 114px;
  }

  .mobile-bottom-nav {
    padding-inline: 6px;
  }

  .mobile-bottom-nav::before {
    right: 6px;
    left: 6px;
  }

  .mobile-bottom-nav a {
    grid-template-rows: 31px auto;
    border-radius: 12px;
  }

  .mobile-bottom-nav__icon {
    width: 23px;
    height: 23px;
  }

  .mobile-bottom-nav__cta .mobile-bottom-nav__icon {
    width: 32px;
    height: 32px;
  }

  .mobile-bottom-nav a > span:last-child {
    font-size: .55rem;
  }

  .hero-stats--single .stat {
    justify-content: space-between;
    gap: 6px;
    padding: 12px 10px;
  }

  .hero-stats--single .stat-item {
    gap: 3px;
    font-size: .66rem;
  }

  #cityQuickEntry.hero-city-entry {
    gap: 7px;
  }

  #cityQuickEntry .city-tag {
    min-height: 32px;
    padding-inline: 3px;
    font-size: .68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-bg-slide {
    animation: none !important;
    opacity: 0;
    transform: scale(1.04);
  }

  .hero-bg-slide--one {
    opacity: .96;
  }
}
