/* 方案三：邻里有医 · 明亮烟火气 */
:root {
  --leaf: #1aa05a;
  --leaf-deep: #0e7a42;
  --sage: #5e9a74;
  --mist: #f6fbf7;
  --mist-2: #eaf6ee;
  --sun: #ffffff;
  --ink: #1f3228;
  --muted: #5d7266;
  --warm: #e8b84a;
  --line: rgba(26, 160, 90, .14);
  --white: #fff;
  --font-display: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  --font-body: "Noto Sans SC", sans-serif;
  --shadow: 0 12px 32px rgba(14, 122, 66, .1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1100px, calc(100% - 40px)); margin-inline: auto; }

.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 28px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 122, 66, .18);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  transition: background .35s, box-shadow .35s;
}
@media (max-width: 768px) { .site-nav { padding: 10px 16px; } }
.site-nav.scrolled {
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  letter-spacing: .08em;
  color: #0a5c32;
  font-weight: 400;
  line-height: 1.1;
}
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1aa05a, #0e7a42);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0;
  box-shadow: 0 4px 14px rgba(14, 122, 66, .28);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo small {
  display: block; font-family: var(--font-body); font-size: .68rem;
  color: #4a6358; letter-spacing: .14em; margin-top: 0;
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a {
  font-size: .9rem; color: #1f3228; font-weight: 500; transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: #0e7a42; }
.nav-cta {
  padding: 10px 18px !important; background: #1aa05a;
  color: #fff !important; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26,160,90,.28);
}
.nav-toggle {
  display: none; width: 40px; height: 40px;
  border: 1.5px solid rgba(10, 92, 50, .35);
  background: #fff; cursor: pointer; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.nav-toggle span { width: 18px; height: 2px; background: #0a5c32; display: block; border-radius: 1px; }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; background: var(--mist);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .4s;
  }
  .nav-links.open { transform: none; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border: none; cursor: pointer;
  font-size: .92rem; border-radius: 999px;
  transition: transform .25s, background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--leaf); color: #fff; box-shadow: 0 8px 24px rgba(26,160,90,.28); }
.btn-primary:hover { background: var(--leaf-deep); }
.btn-ghost {
  background: rgba(255,255,255,.92); color: var(--leaf-deep);
  border: 1px solid rgba(255,255,255,.95);
}
.btn-outline {
  background: transparent; color: var(--leaf); border: 1.5px solid var(--leaf);
}

.hero { position: relative; min-height: 100vh; color: #fff; overflow: hidden; }
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 7s ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide:nth-child(1) {
  background-image:
    linear-gradient(to top, rgba(14,80,48,.55) 0%, rgba(14,80,48,.2) 45%, rgba(14,80,48,.15) 100%),
    url("/imgs/潘水南苑店门头.jpg");
}
.slide:nth-child(2) {
  background-image:
    linear-gradient(to top, rgba(14,80,48,.55) 0%, rgba(14,80,48,.2) 45%, rgba(14,80,48,.15) 100%),
    url("/imgs/春波门头.jpg");
}
.slide:nth-child(3) {
  background-image:
    linear-gradient(to top, rgba(14,80,48,.55) 0%, rgba(14,80,48,.2) 45%, rgba(14,80,48,.15) 100%),
    url("/imgs/西兴二店门头.jpg");
}
.hero-content {
  position: relative; z-index: 2; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px 0 14vh; width: min(1100px, calc(100% - 48px)); margin-inline: auto;
}
.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
  opacity: 0;
  animation: rise .9s .15s forwards;
}
.heritage-mark {
  width: clamp(62px, 8.5vw, 86px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .4));
}
.hero-eyebrow {
  font-size: .85rem; letter-spacing: .16em; color: #ffe7a0;
  margin-bottom: 12px; opacity: 0; animation: rise .9s .2s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 3.9rem);
  letter-spacing: .05em; line-height: 1.2; margin-bottom: 12px;
  opacity: 0; animation: rise .9s .35s forwards;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.hero-brand-row .hero-eyebrow {
  margin-bottom: 8px; opacity: 1; animation: none; text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.hero-brand-row h1 {
  margin-bottom: 0; opacity: 1; animation: none;
}
.hero-lead {
  max-width: 26em; font-size: 1.05rem; color: rgba(255,255,255,.95);
  margin-bottom: 26px; opacity: 0; animation: rise .9s .5s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: rise .9s .65s forwards;
}
.dots {
  position: absolute; z-index: 3;
  bottom: 6vh; right: max(24px, calc((100% - 1100px) / 2));
  display: flex; gap: 8px;
}
.dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.4); cursor: pointer; padding: 0;
}
.dots button.active { background: #fff; width: 22px; border-radius: 999px; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* 浙江老字号 */
.heritage-section {
  padding-top: 72px;
  padding-bottom: 40px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(26, 160, 90, .08), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}
.heritage-panel {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 40px 48px;
  align-items: center;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (max-width: 800px) {
  .heritage-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
    gap: 22px;
  }
}
.heritage-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.heritage-visual img {
  width: min(200px, 52vw);
  height: auto;
  margin-inline: auto;
}
.heritage-caption {
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--sage);
}
.heritage-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  color: var(--leaf-deep);
  margin-bottom: 14px;
  line-height: 1.35;
}
.heritage-lead {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 40em;
}
@media (max-width: 800px) {
  .heritage-lead { margin-inline: auto; }
}
.heritage-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .heritage-points { grid-template-columns: 1fr; text-align: left; }
}
.heritage-point {
  padding: 14px 16px;
  background: var(--mist);
  border-left: 3px solid var(--leaf);
}
.heritage-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--leaf-deep);
  margin-bottom: 4px;
  font-weight: 400;
}
.heritage-point span {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}
.heritage-note {
  font-size: .92rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  max-width: 38em;
}
@media (max-width: 800px) {
  .heritage-note { margin-inline: auto; }
}

.section { padding: 80px 0; }
.section-head { margin-bottom: 40px; max-width: 34em; }
.eyebrow { font-size: .76rem; letter-spacing: .16em; color: var(--sage); margin-bottom: 8px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  letter-spacing: .03em; margin-bottom: 10px; color: var(--leaf-deep);
}
.section-head p { color: var(--muted); }

.stories { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 750px) { .stories { grid-template-columns: 1fr; } }
.story {
  background: #fff; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--line); box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.story img { width: 100%; height: 220px; object-fit: cover; }
.story .body { padding: 20px 22px 24px; }
.story h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  margin-bottom: 8px; letter-spacing: .02em; color: var(--leaf-deep);
}
.story p { color: var(--muted); font-size: .94rem; }
.story .who { margin-top: 12px; font-size: .8rem; color: var(--sage); }

.map-block {
  margin-top: 44px; padding: 32px; background: #fff;
  border-radius: 14px; border: 1px solid var(--line); position: relative;
}
.map-block h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 6px; color: var(--leaf-deep); }
.map-block > p { color: var(--muted); margin-bottom: 20px; max-width: 36em; }
.hand-map {
  position: relative; height: 260px; border-radius: 10px;
  background:
    url("/imgs/萧然东路三店门头.jpg") center/cover;
  border: 1px solid var(--line); overflow: hidden;
}
.hand-map::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(246,251,247,.55), rgba(246,251,247,.2));
}
.pin {
  position: absolute; transform: translate(-50%,-100%); text-align: center; z-index: 1;
}
.pin .dot {
  width: 12px; height: 12px; background: var(--leaf);
  border: 2px solid #fff; border-radius: 50%; margin: 0 auto 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.pin span {
  font-size: .72rem; background: #fff; padding: 4px 8px; border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12); white-space: nowrap;
}

.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .tools { grid-template-columns: 1fr; } }
.tool {
  padding: 26px 22px; background: #fff; border-radius: 12px;
  border: 1px solid var(--line); transition: border-color .3s, transform .3s, box-shadow .3s;
}
.tool:hover {
  border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow);
}
.tool h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; color: var(--leaf-deep); }
.tool p { color: var(--muted); font-size: .9rem; }
.join-soft {
  margin-top: 36px; padding: 28px; background: linear-gradient(120deg, var(--leaf), #22b35f);
  color: #fff; border-radius: 14px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.join-soft h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 4px; }
.join-soft p { opacity: .9; max-width: 28em; }

.page-hero {
  padding: 120px 0 52px;
  background:
    linear-gradient(180deg, rgba(234,246,238,.95), var(--mist)),
    url("/imgs/春波门头.jpg") center/cover;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.7rem); color: var(--leaf-deep); margin-bottom: 8px;
}
.page-hero p { color: var(--muted); max-width: 34em; }

.ar-demo { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items: center; }
@media (max-width: 800px) { .ar-demo { grid-template-columns: 1fr; } }
.ar-frame {
  position: relative; border-radius: 14px; overflow: hidden; min-height: 340px;
  background: url("/imgs/1784357020756.jpg") center/cover;
  box-shadow: var(--shadow);
}
.ar-scan {
  position: absolute; inset: 16% 16%;
  border: 2px solid rgba(255,255,255,.75); border-radius: 8px;
  animation: scanPulse 2.4s ease infinite;
}
@keyframes scanPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(255,255,255,.08); }
  50% { box-shadow: inset 0 0 36px rgba(255,255,255,.12); }
}
.ar-pop {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  padding: 14px 16px; background: rgba(255,255,255,.95); color: var(--ink);
  border-radius: 10px; font-size: .9rem;
  opacity: 0; transform: translateY(8px); animation: popIn .8s .4s forwards;
}
@keyframes popIn { to { opacity: 1; transform: none; } }
.wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
@media (max-width: 800px) { .wall { grid-template-columns: 1fr; } }
.note {
  background: #fffef9; padding: 20px 18px; border-radius: 8px;
  border: 1px solid rgba(232,184,74,.25);
  box-shadow: 2px 3px 0 rgba(26,160,90,.06);
  transform: rotate(-1deg); transition: transform .3s;
}
.note:nth-child(2) { transform: rotate(1deg); background: #f7fcf8; }
.note:nth-child(3) { transform: rotate(-.5deg); background: #fffaf0; }
.note:hover { transform: rotate(0) translateY(-4px); }
.note p { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; margin-bottom: 10px; }
.note cite { font-style: normal; font-size: .78rem; color: var(--sage); }

.calendar {
  margin-top: 40px; background: #fff; border-radius: 14px;
  padding: 26px; border: 1px solid var(--line);
}
.calendar h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 14px; color: var(--leaf-deep); }
.cal-list { display: grid; gap: 10px; }
.cal-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cal-item:last-child { border-bottom: none; }
.cal-date { text-align: center; color: var(--leaf); font-family: var(--font-display); }
.cal-date strong { display: block; font-size: 1.35rem; line-height: 1; }
.cal-date span { font-size: .72rem; color: var(--muted); font-family: var(--font-body); }
.cal-item h4 { font-size: .98rem; margin-bottom: 2px; }
.cal-item p { font-size: .84rem; color: var(--muted); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.cmp { padding: 26px; border-radius: 14px; }
.cmp.bad { background: #fdf2f2; }
.cmp.good { background: var(--mist-2); }
.cmp h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.cmp ul { list-style: none; display: grid; gap: 8px; }
.cmp li { color: var(--muted); font-size: .94rem; padding-left: 18px; position: relative; }
.cmp li::before { content: "·"; position: absolute; left: 4px; color: var(--sage); }
.cmp.good li::before { content: "✓"; color: var(--leaf); left: 0; }
.policies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .policies { grid-template-columns: 1fr; } }
.pol {
  padding: 24px; background: #fff; border-radius: 12px; border: 1px solid var(--line);
}
.pol h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; color: var(--leaf-deep); }
.pol p { color: var(--muted); font-size: .92rem; }
.portrait {
  display: grid; grid-template-columns: 160px 1fr; gap: 22px; align-items: center;
  padding: 26px; background: #fff; border-radius: 14px; margin-top: 22px;
  border: 1px solid var(--line);
}
@media (max-width: 600px) { .portrait { grid-template-columns: 1fr; } }
.portrait img { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; }
.portrait h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 6px; color: var(--leaf-deep); }
.portrait p { color: var(--muted); }

.form-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
@media (max-width: 800px) { .form-wrap { grid-template-columns: 1fr; } }
.form-grid { display: grid; gap: 12px; }
.form-grid label { display: grid; gap: 6px; font-size: .85rem; color: var(--muted); }
.form-grid input, .form-grid textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.form-grid .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .form-grid .row { grid-template-columns: 1fr; } }
.aside {
  padding: 26px; background: var(--leaf); color: #fff; border-radius: 14px;
}
.aside h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 10px; }
.aside p { opacity: .9; font-size: .92rem; margin-bottom: 8px; }
.aside a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.site-footer {
  background: var(--leaf-deep); color: rgba(255,255,255,.75);
  padding: 36px 0 22px; font-size: .88rem;
}
.site-footer a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.site-footer .logo { color: #fff; margin-bottom: 6px; display: block; font-size: 1.4rem; }
.site-footer .logo .logo-mark { display: none; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }

/* 门店列表 */
.store-intro {
  margin-bottom: 28px;
  max-width: 36em;
}
.store-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--leaf-deep);
  margin-bottom: 8px;
}
.store-intro p { color: var(--muted); }
.store-toolbar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; align-items: center;
}
.store-toolbar select, .store-toolbar input {
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; min-width: 140px;
}
.store-count { margin-left: auto; font-size: .88rem; color: var(--muted); }
.store-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 20px; font-size: .82rem; color: var(--muted);
}
.store-legend .leg {
  display: inline-flex; align-items: center; gap: 8px;
}
.store-legend .leg i {
  width: 18px; height: 12px; border-radius: 3px; display: inline-block;
  border: 1px solid transparent;
}
.leg-direct i { background: #e3f5ea; border-color: rgba(14,122,66,.28); }
.leg-join i { background: #fff6e8; border-color: rgba(200,150,60,.35); }
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.store-card {
  border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid transparent;
  transition: box-shadow .25s, transform .25s;
}
.store-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.store-card.is-direct {
  background: #e8f6ee;
  border-color: rgba(14, 122, 66, .22);
}
.store-card.is-join {
  background: #fff7eb;
  border-color: rgba(200, 150, 60, .28);
}
.store-photo {
  position: relative; height: 168px;
  display: grid; place-items: center; overflow: hidden;
  background: rgba(255,255,255,.35);
}
.store-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.store-photo.placeholder {
  color: var(--sage);
  text-align: center;
  padding: 20px;
}
.store-photo.placeholder strong {
  display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--leaf-deep);
}
.store-photo .badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .7rem; padding: 4px 8px; border-radius: 999px;
  background: rgba(255,255,255,.94); color: var(--leaf-deep); font-weight: 500;
}
.store-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.store-body h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--leaf-deep); margin-bottom: 6px;
}
.store-addr { font-size: .88rem; color: var(--muted); margin-bottom: 8px; line-height: 1.55; }
.store-phone { font-size: .88rem; color: var(--ink); margin-bottom: 6px; }
.store-cta {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--leaf), #22b35f);
  color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.store-cta h3 {
  font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 6px;
}
.store-cta p { opacity: .9; max-width: 28em; }
.store-cta .btn-primary {
  background: #fff; color: var(--leaf-deep); box-shadow: none;
}
.store-cta .btn-primary:hover { background: #f3fff7; }
