:root {
  --bg: #f4f8f5;
  --surface: #ffffff;
  --surface-soft: #edf6f1;
  --ink: #15241d;
  --muted: #66756e;
  --line: #dbe8e1;
  --green: #0f5a43;
  --green-deep: #0d352c;
  --green-soft: #e2f2eb;
  --red: #a73532;
  --gold: #c19a5b;
  --gold-soft: #f4e6c7;
  --shadow: 0 22px 64px rgba(18, 60, 49, 0.12);
  --max: 1320px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 10px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
nav,
.hero-care-tags,
.hero-actions,
.phone-link,
.primary-btn,
.secondary-btn,
.nav-cta,
.text-link {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--green-deep);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft) url("fafutang-logo-mark-v2.png") center / cover no-repeat;
  color: transparent;
  font-weight: 900;
  font-size: 10px;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow:
    0 0 0 2px rgba(15, 90, 67, 0.12),
    0 10px 24px rgba(15, 90, 67, 0.14);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  pointer-events: none;
}

.brand-mark span {
  display: block;
  opacity: 0;
}

.brand-mark span:first-child {
  margin-bottom: 2px;
}

.brand-mark-large {
  font-size: 10px;
}

.brand-text strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand > span:not(.brand-mark) {
  display: block;
  font-size: 18px;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 24px;
}

.brand-text small,
.brand > span:not(.brand-mark) small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

nav {
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.nav-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  z-index: 50;
  min-width: 142px;
  padding: 8px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(18, 60, 49, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-menu a {
  display: block;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
}

.nav-menu a:hover {
  background: var(--green-soft);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.phone-link {
  gap: 7px;
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta,
.primary-btn,
.secondary-btn {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.primary-btn {
  background: var(--green);
  color: white;
  border: 1px solid var(--green);
  box-shadow: 0 14px 28px rgba(15, 90, 67, 0.18);
}

.secondary-btn {
  background: white;
  color: var(--green);
  border: 1px solid rgba(15, 90, 67, 0.3);
}

.secondary-btn.light {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.95fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 58px) clamp(18px, 4vw, 48px) 24px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-care-tags {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-care-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 650px;
  margin: 30px 0 0;
}

.hero-stats div {
  position: relative;
  padding: 0 10px 0 18px;
}

.hero-stats div::before,
.hero-stats div::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 7px;
  border: 1px solid rgba(193, 154, 91, 0.78);
}

.hero-stats div::before {
  left: 0;
  border-right: 0;
  border-radius: 12px 0 0 12px;
}

.hero-stats div::after {
  right: 0;
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.hero-stats dt {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 248, 245, 0.48) 0%, rgba(244, 248, 245, 0) 42%);
  pointer-events: none;
}

.hero-ribbon {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 70px;
  transform: translateY(-50%);
  padding: 18px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d0a75d, #a73532);
  color: white;
  text-align: center;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 34px rgba(86, 42, 22, 0.2);
}

.hero-ribbon span {
  font-size: 13px;
  font-weight: 700;
}

.hero-ribbon strong {
  margin-top: 10px;
  font-size: 17px;
}

.hero-entry {
  display: grid;
  grid-template-columns: 1.05fr 0.88fr 0.78fr;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px) 44px;
}

.entry-card {
  position: relative;
  overflow: hidden;
  min-height: 166px;
  padding: 28px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 18px 44px rgba(18, 60, 49, 0.12);
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(11, 49, 38, 0.86), rgba(11, 49, 38, 0.36));
  pointer-events: none;
}

.entry-card span,
.entry-card strong,
.entry-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.entry-card span {
  color: var(--gold-soft);
  font-weight: 900;
}

.entry-card strong {
  max-width: 330px;
  margin-top: 10px;
  font-size: 23px;
  line-height: 1.35;
}

.entry-card small {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 900;
}

.entry-join {
  background: linear-gradient(120deg, #064834, #176b4c), url("hero-clinic.png") center / cover;
}

.entry-book {
  background: linear-gradient(120deg, #a73532, #dbb870), url("hero-clinic.png") center / cover;
}

.entry-city {
  color: var(--green-deep);
  background:
    linear-gradient(135deg, rgba(247, 235, 196, 0.92), rgba(255, 250, 235, 0.76)),
    linear-gradient(90deg, rgba(15, 90, 67, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(15, 90, 67, 0.12) 1px, transparent 1px),
    #f7e8bd;
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.entry-city::after {
  background: linear-gradient(110deg, rgba(247, 235, 196, 0.12), rgba(255, 255, 255, 0.2));
}

.entry-city span { color: #8b6232; }
.entry-city strong,
.entry-city small { color: var(--green-deep); }

.local-prompt {
  margin: -24px auto 40px;
  max-width: var(--max);
  display: flex;
  align-items: center;
  gap: 14px;
  width: calc(100% - clamp(36px, 8vw, 96px));
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(18, 60, 49, 0.08);
}

.local-prompt a { color: var(--green); font-weight: 900; }
.local-prompt button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.care-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px) 70px;
}

.flow-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.flow-item + .flow-item { border-left: 1px solid var(--line); }

.flow-item i {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 22px;
}

.flow-item span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.flow-item strong {
  color: var(--green-deep);
  font-size: 15px;
}

.section {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 4vw, 60px);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-tight { padding-top: 54px; }
.section-muted { background: var(--surface-soft); }

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.centered {
  text-align: center;
}

.section-head.split {
  max-width: var(--max);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.join-copy h2,
.lead-copy h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.14;
}

.section-head p,
.join-copy p,
.lead-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.service-grid,
.city-grid,
.store-grid,
.product-grid,
.advantage-grid,
.case-grid,
.article-grid,
.pricing-grid,
.process-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.city-card,
.store-card,
.product-card,
.stack-item,
.intro-grid article,
.advantage-grid article,
.pricing-grid article,
.process-grid article,
.contact-card,
.support-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(18, 60, 49, 0.06);
}

.service-card,
.city-card,
.product-card,
.stack-item,
.intro-grid article,
.advantage-grid article,
.pricing-grid article,
.process-grid article,
.contact-card,
.support-grid article {
  padding: 24px;
}

.service-grid.compact .service-card {
  min-height: 184px;
  background: linear-gradient(135deg, #fff 0%, #f3faf6 100%);
}

.service-grid.compact .service-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 22px;
}

.service-card span,
.city-card span,
.product-card span,
.stack-item span,
.advantage-grid span,
.process-grid strong {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}

.service-card h3,
.city-card h3,
.product-card h3,
.stack-item h4,
.intro-grid strong,
.advantage-grid strong,
.pricing-grid strong,
.process-grid span {
  display: block;
  margin: 10px 0;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1.35;
}

.service-card p,
.city-card p,
.store-card p,
.product-card p,
.stack-item p,
.intro-grid p,
.advantage-grid p,
.pricing-grid p,
.process-grid p,
.support-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-hero .hero-actions {
  margin-top: 28px;
}

.service-overview {
  background: white;
}

.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
}

.service-nav-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 90, 67, 0.08), rgba(255, 255, 255, 0) 52%),
    white;
  box-shadow: 0 18px 46px rgba(18, 60, 49, 0.08);
}

.service-nav-card.hair-loss-card {
  border-top-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(193, 154, 91, 0.14), rgba(255, 255, 255, 0) 54%),
    white;
}

.service-nav-card span,
.service-detail-copy .eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-nav-card strong {
  display: block;
  color: var(--green-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.24;
}

.service-nav-card p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.service-nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(18, 60, 49, 0.12);
}

.service-anchor {
  scroll-margin-top: 112px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.service-detail.hair-loss-detail .service-detail-copy {
  order: 2;
}

.service-detail-copy h2 {
  margin: 10px 0 0;
  color: var(--green-deep);
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.12;
}

.service-detail-copy > p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-points article {
  min-height: 146px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.service-points span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-points p {
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.75;
}

.service-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.service-detail-panel {
  display: grid;
  gap: 14px;
}

.service-detail-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-checklist {
  padding: 24px;
  border-radius: 8px;
  background: var(--green-deep);
  color: white;
  box-shadow: 0 18px 46px rgba(13, 53, 44, 0.18);
}

.service-checklist strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 20px;
}

.service-checklist ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.service-checklist li {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.text-link {
  gap: 6px;
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.store-map-section {
  background: white;
}

.store-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  max-width: var(--max);
}

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

.store-card img,
.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.store-card-body,
.product-card-body { padding: 20px; }

.store-card h3,
.product-card h3 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 22px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(18, 60, 49, 0.06);
}

.empty-state span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.empty-state h3 {
  margin: 10px 0;
  color: var(--green-deep);
  font-size: 24px;
}

.empty-state p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.store-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.map-panel {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  box-shadow: var(--shadow);
}

.map-panel iframe,
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  filter: saturate(0.78) contrast(0.98);
}

.map-preview {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #edf6f1;
  color: var(--green-deep);
}

.amap-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(15, 90, 67, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(15, 90, 67, 0.08) 1px, transparent 1px),
    #f4faf7;
  background-size: 28px 28px;
  color: var(--green-deep);
  font-weight: 900;
  text-align: center;
}

.map-preview[data-amap-ready="true"] .map-loading {
  display: none;
}

.map-road {
  position: absolute;
  display: block;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(15, 90, 67, 0.12);
}

.map-road-a {
  left: -10%;
  right: 18%;
  top: 28%;
  transform: rotate(-9deg);
}

.map-road-b {
  left: 34%;
  right: -14%;
  top: 55%;
  transform: rotate(18deg);
}

.map-road-c {
  width: 58%;
  left: 18%;
  bottom: 24%;
  transform: rotate(-24deg);
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 43%;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  border: 5px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 90, 67, 0.28);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.map-preview-card {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 7px;
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(15, 90, 67, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(18, 60, 49, 0.12);
}

.map-preview-card strong {
  color: var(--green-deep);
  font-size: 18px;
}

.map-preview-card span {
  color: var(--muted);
  line-height: 1.6;
}

.map-preview-card small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.map-open-link {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 90, 67, 0.22);
}

.amap-info-window {
  display: grid;
  gap: 4px;
  min-width: 180px;
  color: var(--green-deep);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.amap-info-window strong {
  font-size: 14px;
}

.amap-info-window span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.map-info {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
}

.map-panel h3,
.map-info h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 26px;
}

.map-panel p,
.map-info p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.map-panel dl,
.map-info dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.map-panel dl div,
.map-info dl div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(237, 246, 241, 0.86);
}

.map-panel dt,
.map-info dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.map-panel dd,
.map-info dd {
  margin: 0;
  color: var(--green-deep);
  font-weight: 900;
}

.city-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.city-card dt { color: var(--muted); font-size: 12px; }
.city-card dd { margin: 3px 0 0; font-weight: 900; color: var(--green); }
.city-card .city-link { display: inline-flex; margin-top: 18px; color: var(--green); font-weight: 900; }

.join-support {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
  max-width: none;
  margin: 0;
  background: var(--green-deep);
  color: white;
}

.join-support > * {
  max-width: none;
}

.join-support h2 { color: white; }
.join-support p { color: rgba(255, 255, 255, 0.72); }
.join-support .eyebrow { color: var(--gold); }

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

.support-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.support-grid i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 22px;
}

.support-grid strong {
  display: block;
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

.content-columns,
.two-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.content-columns h3 {
  margin: 0 0 16px;
  color: var(--green-deep);
  font-size: 24px;
}

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

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

.lead-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: none;
  background: linear-gradient(135deg, #ffffff 0%, #eff8f4 100%);
}

.lead-section > * {
  max-width: none;
}

.lead-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.lead-proof div {
  padding: 16px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.lead-proof dt {
  color: var(--green);
  font-weight: 900;
}

.lead-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  outline: none;
  color: var(--ink);
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(15, 90, 67, 0.65);
  box-shadow: 0 0 0 3px rgba(15, 90, 67, 0.1);
}

.full { grid-column: 1 / -1; }
button.primary-btn { cursor: pointer; }
.lead-form button.primary-btn { width: 100%; }

.lead-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.page-hero {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #f7fbf8 0%, #e8f3ee 100%);
}

.page-hero.compact { padding-bottom: clamp(58px, 7vw, 90px); }
.page-hero.join-hero { background: var(--green-deep); color: white; }
.page-hero.city-hero {
  background:
    linear-gradient(90deg, #f7fbf8 0%, #e8f3ee 52%, rgba(232, 243, 238, 0.3) 100%),
    url("hero-clinic.png") right center / 45% auto no-repeat;
}
.page-hero.join-hero {
  background:
    linear-gradient(90deg, #123c31 0%, rgba(18, 60, 49, 0.94) 54%, rgba(18, 60, 49, 0.48) 100%),
    url("hero-clinic.png") right center / 45% auto no-repeat;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}

.page-hero.join-hero h1,
.page-hero.join-hero p { color: white; }
.page-hero.join-hero .eyebrow { color: var(--gold); }

.intro-grid,
.advantage-grid.detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.join-band {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 40px;
  background: var(--green-deep);
  color: white;
}

.join-band h2 { color: white; }
.join-band p { color: rgba(255, 255, 255, 0.72); }

.join-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.join-steps.vertical { grid-template-columns: 1fr; }

.join-steps article {
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.join-steps strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 18px;
}

.join-steps span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: timeline;
}

.timeline article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong { color: var(--green-deep); font-size: 22px; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.8; }

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-card span { color: var(--muted); }

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

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.map-card {
  min-height: 320px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 90, 67, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(15, 90, 67, 0.08) 1px, transparent 1px),
    #f9fcfa;
  background-size: 28px 28px;
  color: var(--green-deep);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #0b241e;
  color: white;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  text-align: right;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.floating-service {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 25;
  display: grid;
  gap: 8px;
}

.floating-service a {
  min-width: 96px;
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 30px rgba(18, 60, 49, 0.18);
}

.mobile-bar { display: none; }

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .service-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .store-map-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body { padding-bottom: 58px; }
  .site-header {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 12px 16px;
  }
  .brand-text small,
  .phone-link,
  nav a:not(.active):not(.nav-cta),
  nav .nav-group:not(.active) { display: none; }
  nav .nav-group.active {
    display: flex;
    padding: 0;
  }
  nav .nav-group.active .nav-menu {
    display: none;
  }
  .brand-text strong,
  .brand > span:not(.brand-mark) {
    font-size: 18px;
  }
  nav {
    order: 0;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .header-actions .nav-cta { display: none; }
  .hero,
  .hero-entry,
  .join-support,
  .lead-section,
  .content-columns,
  .two-panel,
  .join-band {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    min-height: auto;
    padding-top: 34px;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .hero-media,
  .hero-media img {
    min-height: 320px;
  }
  .hero-ribbon {
    right: 16px;
  }
  .hero-entry {
    padding-bottom: 36px;
  }
  .care-flow,
  .service-grid,
  .service-nav-grid,
  .service-detail,
  .service-grid.compact,
  .city-grid,
  .store-grid,
  .product-grid,
  .advantage-grid,
  .advantage-grid.detail,
  .case-grid,
  .article-grid,
  .pricing-grid,
  .process-grid,
  .support-grid,
  .join-steps,
  .lead-form,
  .lead-proof,
  .stack-list.wide,
  .featured-stores,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .care-flow {
    gap: 10px;
    padding-bottom: 44px;
  }
  .service-nav-card {
    min-height: auto;
  }
  .service-detail.hair-loss-detail .service-detail-copy {
    order: 0;
  }
  .service-points {
    grid-template-columns: 1fr;
  }
  .service-actions .primary-btn {
    width: 100%;
    justify-content: center;
  }
  .service-detail-panel img {
    aspect-ratio: 16 / 11;
  }
  .flow-item,
  .flow-item + .flow-item {
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .section-head.split {
    align-items: start;
    flex-direction: column;
  }
  .page-hero.city-hero,
  .page-hero.join-hero {
    background: linear-gradient(135deg, #f7fbf8 0%, #e8f3ee 100%);
  }
  .page-hero.join-hero { background: var(--green-deep); }
  .timeline article { grid-template-columns: 1fr; gap: 8px; }
  .site-footer { flex-direction: column; }
  .footer-contact { text-align: left; }
  .floating-service { display: none; }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    border-top: 1px solid var(--line);
  }
  .mobile-bar a {
    text-align: center;
    padding: 14px 6px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 46px);
  }
  .hero-copy p {
    font-size: 17px;
  }
  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    flex: 1 1 100%;
  }
}
