:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --surface-soft: #f0eeea;
  --ink: #1f1b1b;
  --muted: #6d6662;
  --line: #e4ded8;
  --green: #f05a28;
  --green-deep: #1f1b1b;
  --green-soft: #fff4eb;
  --red: #f05a28;
  --gold: #a87418;
  --gold-soft: #fff1cf;
  --black: #231f20;
  --shadow: 0 22px 64px rgba(35, 31, 32, 0.11);
  --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:
    radial-gradient(circle at 24px 24px, rgba(240, 90, 40, 0.08) 0 2px, transparent 2.5px) 0 0 / 28px 28px,
    linear-gradient(180deg, #fff 0, var(--bg) 560px);
  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.96);
  border-bottom: 1px solid var(--black);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
}

.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: clamp(172px, 16vw, 220px);
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: url("fafutang-vi-logo.png") center / contain 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: none;
}

.brand-mark::after {
  display: 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 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.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: none;
}

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

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

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

.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(--black);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 0.12);
  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(--red);
  color: white;
  border: 1px solid var(--red);
  box-shadow: 0 14px 28px rgba(240, 90, 40, 0.22);
}

.secondary-btn {
  background: white;
  color: var(--black);
  border: 1px solid var(--black);
}

.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(--black);
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 950;
}

.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.16em;
  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: 0;
  background: #fff;
  border: 1px solid var(--black);
  color: var(--black);
  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(240, 90, 40, 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(--red);
  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: 1px solid var(--black);
  border-radius: 0;
  background: var(--surface);
  box-shadow: 12px 12px 0 rgba(240, 90, 40, 0.14);
}

.hero-copy {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.hero-carousel {
  width: 100%;
  height: 100%;
}

.hero-carousel img {
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.hero-carousel img.is-changing {
  opacity: 0.2;
  transform: scale(1.035);
}

.hero-carousel-dots {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 4px 10px rgba(86, 38, 18, 0.18);
  cursor: pointer;
}

.hero-carousel-dots button.active {
  width: 26px;
  background: var(--red);
  border-color: var(--red);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(240, 90, 40, 0) 70%, rgba(240, 90, 40, 0.2) 100%);
  pointer-events: none;
}

.hero-ribbon {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 4;
  width: min(280px, calc(100% - 44px));
  min-height: 104px;
  padding: 16px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 126, 72, 0.72), rgba(205, 78, 28, 0.66)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 36px rgba(86, 42, 22, 0.18);
  backdrop-filter: blur(12px) saturate(1.1);
}

.hero-ribbon span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-ribbon strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-ribbon small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.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: 1px solid var(--black);
  border-radius: 0;
  color: white;
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 0.12);
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(35, 31, 32, 0.9), rgba(35, 31, 32, 0.32));
  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, #231f20, #f05a28), url("hero-clinic.png") center / cover;
}

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

.entry-city {
  color: var(--green-deep);
  background:
    linear-gradient(135deg, rgba(255, 244, 235, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(90deg, rgba(240, 90, 40, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(35, 31, 32, 0.1) 1px, transparent 1px),
    #fff1cf;
  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: 0;
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 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: 50%;
  background: var(--green-soft);
  color: var(--red);
  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;
}

.brand-proof-strip {
  overflow: hidden;
  padding-top: clamp(56px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 82px);
  background:
    radial-gradient(circle at 10% 22%, rgba(255, 255, 255, 0.3) 0 110px, transparent 112px),
    linear-gradient(115deg, #f15a24 0%, #ee6a2f 52%, #d9782f 100%);
  color: #fff;
}

.brand-proof-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.brand-proof-strip::before,
.brand-proof-strip::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-proof-strip::before {
  inset: 16px clamp(18px, 4vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-proof-strip::after {
  right: clamp(-90px, -5vw, -30px);
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.brand-proof-strip > * {
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.brand-proof-copy {
  display: grid;
  align-content: center;
}

.brand-proof-copy .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.brand-proof-copy h2,
.brand-track-section h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.14;
  font-weight: 950;
}

.brand-proof-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.brand-proof-copy h2 {
  max-width: 9em;
  color: #fff;
  text-shadow: 0 10px 28px rgba(93, 35, 14, 0.22);
}

.brand-proof-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
}

.brand-proof-grid,
.brand-belief-grid,
.brand-track-grid,
.support-matrix,
.proof-card-grid {
  display: grid;
  gap: 18px;
}

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

.brand-proof-grid article,
.brand-belief-grid article,
.brand-track-grid article,
.support-matrix article {
  padding: 24px;
  border: 1px solid rgba(35, 31, 32, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 8px 8px 0 rgba(240, 90, 40, 0.08);
}

.brand-proof-grid article {
  min-height: 168px;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  box-shadow: 0 18px 36px rgba(109, 46, 18, 0.14);
  backdrop-filter: blur(8px);
}

.brand-proof-grid span,
.brand-belief-grid span,
.brand-track-grid span,
.support-matrix span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.brand-proof-grid span {
  color: #ffe4c7;
}

.brand-proof-grid strong,
.brand-belief-grid strong,
.support-matrix strong {
  display: block;
  margin: 10px 0;
  color: var(--black);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 950;
}

.brand-proof-grid strong {
  color: #fff;
}

.brand-proof-grid p,
.brand-belief-grid p,
.brand-track-grid p,
.support-matrix p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.brand-proof-grid p {
  color: rgba(255, 255, 255, 0.86);
}

.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(--black);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.14;
  font-weight: 950;
}

.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: 0;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 0.05);
}

.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%, var(--green-soft) 100%);
}

.service-grid.compact .service-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--red);
  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(--black);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 950;
}

.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(--red);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.1), rgba(255, 255, 255, 0) 52%),
    white;
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 0.06);
}

.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(--black);
  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: 10px 10px 0 rgba(240, 90, 40, 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(--black);
  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: 0;
  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: 0;
  box-shadow: var(--shadow);
}

.service-checklist {
  padding: 24px;
  border-radius: 0;
  background: var(--black);
  color: white;
  box-shadow: 8px 8px 0 rgba(240, 90, 40, 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;
}

.product-card.product-card-detail {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card.product-card-detail img {
  height: 300px;
  padding: 10px;
  object-fit: contain;
  object-position: center center;
  background:
    linear-gradient(180deg, rgba(255, 247, 239, 0.92), rgba(255, 255, 255, 0.98));
  box-sizing: border-box;
}

.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;
}

.product-card-detail .product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.product-badges em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(241, 90, 36, 0.1);
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.product-meta div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid rgba(177, 104, 62, 0.16);
}

.product-meta dt,
.product-meta dd {
  margin: 0;
  line-height: 1.55;
}

.product-meta dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.product-meta dd {
  color: var(--muted);
  font-size: 13px;
}

.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;
}

.shenzhen-store-proof {
  background:
    linear-gradient(135deg, #fffaf6 0%, #fff1e8 58%, #fff8f3 100%);
}

.store-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.store-proof-layout-wide {
  grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.76fr);
}

.store-proof-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.store-proof-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 950;
}

.store-proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.store-proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 0;
}

.store-proof-layout-wide .store-proof-stats {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.store-proof-stats div {
  padding: 16px;
  border: 1px solid rgba(241, 90, 36, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.store-proof-stats dt {
  margin: 0;
  color: var(--red);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 950;
}

.store-proof-stats dd {
  margin: 8px 0 0;
  color: var(--black);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 850;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.store-map-media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(241, 90, 36, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 58px rgba(100, 52, 30, 0.13);
}

.store-map-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}

.store-map-media-compact img {
  min-height: 280px;
}

.store-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-name-list li {
  padding: 7px 10px;
  border: 1px solid rgba(241, 90, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
}

.map-panel {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  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: #f4f2ef;
  color: var(--black);
}

.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(240, 90, 40, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(35, 31, 32, 0.08) 1px, transparent 1px),
    #f7f6f3;
  background-size: 28px 28px;
  color: var(--black);
  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(35, 31, 32, 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(--red);
  border: 5px solid #fff;
  box-shadow: 0 12px 28px rgba(240, 90, 40, 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 var(--black);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 0.1);
}

.map-preview-card strong {
  color: var(--black);
  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(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(240, 90, 40, 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: 0;
  background: rgba(255, 244, 235, 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 {
  overflow: hidden;
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.24) 0 140px, transparent 142px),
    linear-gradient(125deg, #f15a24 0%, #f47a35 54%, #d9782f 100%);
  color: white;
}

.join-support::before,
.join-support::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.join-support::before {
  inset: 18px clamp(18px, 4vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-support::after {
  right: clamp(-120px, -7vw, -42px);
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.join-support-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

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

.join-support .join-copy h2 {
  max-width: 9.5em;
  text-shadow: 0 10px 28px rgba(93, 35, 14, 0.2);
}

.join-support .join-copy p {
  max-width: 560px;
}

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

.join-support .primary-btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: var(--red-deep);
  box-shadow: 0 16px 36px rgba(116, 43, 16, 0.18);
}

.join-support .secondary-btn.light {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

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

.support-grid article {
  min-height: 174px;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  box-shadow: 0 18px 36px rgba(109, 46, 18, 0.13);
  backdrop-filter: blur(8px);
}

.support-grid i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff7e8;
  font-size: 22px;
}

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

.support-grid p {
  color: rgba(255, 255, 255, 0.86);
}

.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(--black);
  font-size: 24px;
}

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

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

.stack-item-action {
  position: relative;
  cursor: pointer;
}

.store-card-action,
.product-card-action {
  cursor: pointer;
}

.store-card[href],
.product-card[href],
.stack-item[href] {
  display: block;
  color: inherit;
  text-decoration: none;
}

.store-card-action:hover .store-card-link,
.product-card-action:hover .product-card-link,
.stack-item-action:hover em {
  transform: translateX(3px);
}

.product-card-action:focus-visible,
.store-card-action:focus-visible,
.stack-item-action:focus-visible {
  outline: 3px solid rgba(240, 90, 40, 0.28);
  outline-offset: 4px;
}

.product-card-link,
.store-card-link,
.stack-item-action em {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
  transition: transform 0.2s ease;
}

body[data-page="cases"] .section:not(.section-muted) {
  background:
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

body[data-page="cases"] .section-head {
  position: relative;
  padding-left: 22px;
}

body[data-page="cases"] .section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), #ff9567);
}

.seo-detail-main {
  background:
    linear-gradient(180deg, #fff8f2 0%, #fffaf7 460px, #fff 100%);
}

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

.seo-breadcrumb a {
  color: var(--red);
}

.seo-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 108px) clamp(22px, 4vw, 60px);
}

.seo-detail-copy {
  display: grid;
  gap: 18px;
}

.seo-detail-copy h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}

.seo-detail-copy p {
  max-width: 700px;
  margin: 0;
  color: #5f544f;
  font-size: 18px;
  line-height: 1.9;
}

.seo-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-detail-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(241, 90, 36, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 900;
}

.seo-detail-media {
  overflow: hidden;
  border: 1px solid rgba(241, 90, 36, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 70px rgba(128, 54, 24, 0.13);
}

.seo-detail-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.seo-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(24px, 4vw, 42px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 60px) clamp(76px, 8vw, 116px);
}

.seo-article,
.seo-aside-card {
  border: 1px solid rgba(177, 104, 62, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.seo-article {
  padding: clamp(28px, 4vw, 48px);
}

.seo-article h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.24;
}

.seo-article h3 {
  margin: 30px 0 12px;
  color: var(--black);
  font-size: 22px;
}

.seo-article p,
.seo-article li {
  color: #514842;
  font-size: 16px;
  line-height: 1.95;
}

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

.seo-article ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.seo-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.seo-meta-grid div {
  padding: 16px;
  border: 1px solid rgba(241, 90, 36, 0.14);
  border-radius: var(--radius);
  background: #fff7ef;
}

.seo-meta-grid dt,
.seo-meta-grid dd {
  margin: 0;
}

.seo-meta-grid dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.seo-meta-grid dd {
  margin-top: 6px;
  color: var(--black);
  font-weight: 900;
  line-height: 1.5;
}

.seo-aside {
  display: grid;
  align-content: start;
  gap: 16px;
}

.seo-aside-card {
  padding: 22px;
}

.seo-aside-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.seo-aside-card h3 {
  margin: 8px 0 10px;
  color: var(--black);
  font-size: 22px;
}

.seo-aside-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.seo-aside-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.store-detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.store-detail-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(177, 104, 62, 0.16);
}

.store-detail-list dt,
.store-detail-list dd {
  margin: 0;
}

.store-detail-list dt {
  color: var(--red);
  font-weight: 950;
}

.store-detail-list dd {
  color: #514842;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .seo-detail-hero,
  .seo-detail-body {
    grid-template-columns: 1fr;
  }

  .seo-detail-media img {
    min-height: 260px;
  }

  .seo-meta-grid {
    grid-template-columns: 1fr;
  }
}

body.modal-open {
  overflow: hidden;
}

.content-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.content-detail-modal[hidden] {
  display: none;
}

.content-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 31, 32, 0.58);
}

.content-detail-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(177, 104, 62, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.96));
  box-shadow: 0 34px 84px rgba(35, 31, 32, 0.24);
}

.content-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--black);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.content-detail-cover {
  width: 100%;
  max-height: 320px;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.content-detail-kicker {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}

.content-detail-panel h3 {
  margin: 10px 0 12px;
  color: var(--black);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
}

.content-detail-summary {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.content-detail-body {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.content-detail-body p {
  margin: 0;
  color: var(--ink);
  line-height: 1.9;
}

.lead-section {
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 24px 24px, rgba(240, 90, 40, 0.08) 0 2px, transparent 2.5px) 0 0 / 28px 28px,
    linear-gradient(135deg, #ffffff 0%, #fff4eb 100%);
}

.lead-section > * {
  max-width: var(--max);
}

.lead-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

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

.lead-proof div {
  padding: 16px;
  border-radius: 0;
  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: 0;
  padding: 24px;
  box-shadow: var(--shadow);
}

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

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

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(240, 90, 40, 0.68);
  box-shadow: 0 0 0 3px rgba(240, 90, 40, 0.12);
}

.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:
    radial-gradient(circle at 24px 24px, rgba(240, 90, 40, 0.09) 0 2px, transparent 2.5px) 0 0 / 28px 28px,
    linear-gradient(135deg, #fff 0%, #fff4eb 100%);
}

.page-hero.compact { padding-bottom: clamp(58px, 7vw, 90px); }
.page-hero.join-hero { background: var(--black); color: white; }
.page-hero.city-hero {
  background:
    linear-gradient(90deg, #fff 0%, #fff4eb 52%, rgba(255, 244, 235, 0.3) 100%),
    url("hero-clinic.png") right center / 45% auto no-repeat;
}
.page-hero.join-hero {
  background:
    linear-gradient(90deg, #231f20 0%, rgba(35, 31, 32, 0.94) 54%, rgba(35, 31, 32, 0.48) 100%),
    url("hero-clinic.png") right center / 45% auto no-repeat;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--black);
  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(--black);
  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: 0;
  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(--black); font-size: 22px; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.8; }

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

.brand-belief-grid article {
  min-height: 220px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 235, 0.76)),
    white;
}

.brand-network-section {
  background:
    linear-gradient(135deg, #fffaf6 0%, #ffffff 48%, #fff1e8 100%);
}

.brand-media-panel {
  align-items: center;
}

.brand-number-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.brand-number-row div {
  padding: 16px;
  border: 1px solid rgba(240, 90, 40, 0.18);
  background: white;
}

.brand-number-row strong,
.brand-track-grid strong {
  display: block;
  color: var(--red);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.05;
  font-weight: 950;
}

.brand-number-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.proof-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card-grid article {
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.12);
  background: white;
  box-shadow: 8px 8px 0 rgba(35, 31, 32, 0.05);
}

.proof-card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.proof-card-grid div {
  padding: 20px;
}

.proof-card-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.proof-card-grid strong {
  display: block;
  margin: 8px 0;
  color: var(--black);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 950;
}

.proof-card-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.brand-track-section {
  background:
    radial-gradient(circle at 18px 18px, rgba(240, 90, 40, 0.08) 0 2px, transparent 2.5px) 0 0 / 28px 28px,
    #fffaf6;
}

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

.brand-track-grid article {
  background: white;
}

.brand-track-grid span {
  display: block;
  margin: 8px 0 12px;
  color: var(--black);
  font-size: 17px;
  line-height: 1.5;
}

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

.support-matrix article {
  min-height: 176px;
}

.product-proof-gallery {
  display: grid;
  gap: 16px;
}

.product-proof-gallery img {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 8px 8px 0 rgba(240, 90, 40, 0.08);
}

.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: 0;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--black);
  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: 0;
  background:
    linear-gradient(90deg, rgba(240, 90, 40, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(35, 31, 32, 0.08) 1px, transparent 1px),
    #f7f6f3;
  background-size: 28px 28px;
  color: var(--black);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: calc(100% - clamp(36px, 7vw, 112px));
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(18px, 3vw, 42px);
  background: var(--black);
  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: 0;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 30px rgba(240, 90, 40, 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;
  }
  .store-proof-layout,
  .store-proof-layout-wide {
    grid-template-columns: 1fr;
  }
  .store-proof-layout-wide .store-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body { padding-bottom: 58px; }
  .site-header {
    min-height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 12px 16px;
  }
  .brand-text small,
  .phone-link { display: none; }
  nav .nav-group,
  nav .nav-group.active {
    display: flex;
    padding: 0;
  }
  nav .nav-menu,
  nav .nav-group.active .nav-menu {
    display: none;
  }
  .brand-text strong,
  .brand > span:not(.brand-mark) {
    font-size: 18px;
  }
  nav {
    order: 3;
    margin-left: 0;
    flex: 1 0 100%;
    gap: 18px;
    overflow-x: auto;
    border-top: 1px solid rgba(35, 31, 32, 0.12);
    padding-top: 10px;
    scrollbar-width: none;
  }
  nav::-webkit-scrollbar {
    display: none;
  }
  nav a,
  .nav-parent {
    flex: 0 0 auto;
    padding-bottom: 6px;
    font-size: 13px;
  }
  .header-actions .nav-cta { display: none; }
  .hero,
  .hero-entry,
  .brand-proof-strip,
  .brand-proof-inner,
  .join-support,
  .join-support-inner,
  .lead-section,
  .lead-inner,
  .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,
  .brand-belief-grid,
  .brand-proof-grid,
  .brand-track-grid,
  .case-grid,
  .article-grid,
  .pricing-grid,
  .process-grid,
  .proof-card-grid,
  .support-grid,
  .support-matrix,
  .join-steps,
  .lead-form,
  .lead-proof,
  .stack-list.wide,
  .featured-stores,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .store-proof-stats,
  .store-proof-layout-wide .store-proof-stats {
    grid-template-columns: 1fr;
  }
  .store-map-media-compact img {
    min-height: 0;
  }
  .store-proof-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .store-name-list li {
    font-size: 12px;
  }
  .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: 0;
  }
  .section-head.split {
    align-items: start;
    flex-direction: column;
  }
  .page-hero.city-hero,
  .page-hero.join-hero {
    background:
      radial-gradient(circle at 24px 24px, rgba(240, 90, 40, 0.09) 0 2px, transparent 2.5px) 0 0 / 28px 28px,
      linear-gradient(135deg, #fff 0%, #fff4eb 100%);
  }
  .page-hero.join-hero { background: var(--black); }
  .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: 144px;
    height: 54px;
  }
  .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%;
  }
}

/* ============================================================
   Orange VI refinement
   以客户 VI 橙为主色，统一官网前台的医疗养护感与连锁招商转化感。
   ============================================================ */

:root {
  --bg: #fff8f3;
  --surface: #ffffff;
  --surface-soft: #fff1e8;
  --surface-tint: #fff7ef;
  --ink: #251f1c;
  --muted: #77665e;
  --line: #ead9ce;
  --green: #f15a24;
  --green-deep: #251f1c;
  --green-soft: #fff1e8;
  --red: #f15a24;
  --red-deep: #ca3d14;
  --gold: #bd7b28;
  --gold-soft: #fff0c8;
  --black: #251f1c;
  --shadow: 0 22px 58px rgba(133, 63, 30, 0.12);
  --shadow-soft: 0 14px 36px rgba(133, 63, 30, 0.08);
  --radius: 8px;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 244, 236, 0.92) 0, rgba(255, 250, 246, 0.72) 460px, #fffaf6 100%),
    repeating-linear-gradient(90deg, rgba(241, 90, 36, 0.045) 0 1px, transparent 1px 48px);
}

.site-header {
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
  background:
    linear-gradient(90deg, #d9782f 0%, var(--red) 42%, #df833c 100%);
  border-bottom: 1px solid rgba(128, 54, 24, 0.32);
  box-shadow: 0 14px 34px rgba(128, 54, 24, 0.16);
}

@media (min-width: 1181px) {
  .site-header {
    padding-inline: max(
      clamp(18px, 4vw, 60px),
      calc((100vw - var(--max)) / 2 + clamp(18px, 4vw, 48px))
    );
  }

  .brand {
    transform: translateX(-40px);
  }
}

.site-header::before {
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.brand {
  align-self: center;
  min-height: 52px;
  padding: 6px 16px;
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  box-shadow: none;
}

.brand-mark {
  width: clamp(150px, 13vw, 188px);
  height: 52px;
}

nav {
  gap: clamp(10px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.92);
}

nav a {
  position: relative;
  padding: 9px 2px;
  text-shadow: 0 1px 12px rgba(78, 31, 13, 0.18);
}

nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: left 0.2s ease, right 0.2s ease;
}

nav a:hover,
nav a.active,
.nav-group.active .nav-parent {
  color: #fff;
  border-bottom-color: transparent;
}

nav a:hover::before,
nav a.active::before,
.nav-group.active .nav-parent::before {
  left: 0;
  right: 0;
}

.nav-menu {
  padding: 9px;
  background:
    linear-gradient(180deg, rgba(255, 126, 72, 0.96) 0%, rgba(241, 90, 36, 0.98) 58%, rgba(213, 103, 45, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  box-shadow: 0 22px 44px rgba(91, 36, 13, 0.28);
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: 7px;
  color: #fff;
  text-shadow: none;
}

.nav-menu a::before {
  display: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.phone-link {
  color: #fff;
  text-shadow: 0 1px 12px rgba(78, 31, 13, 0.18);
}

.nav-cta,
.primary-btn {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red) 0%, #ff784b 100%);
  box-shadow: 0 16px 30px rgba(241, 90, 36, 0.22);
}

.site-header .nav-cta {
  border-color: rgba(255, 255, 255, 0.88);
  background: #fff;
  color: var(--red-deep);
  box-shadow: 0 12px 26px rgba(94, 39, 16, 0.16);
}

.secondary-btn {
  color: var(--red-deep);
  border-color: rgba(241, 90, 36, 0.32);
  background: rgba(255, 255, 255, 0.78);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(241, 90, 36, 0.18);
}

.hero {
  position: relative;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px clamp(10px, 3vw, 34px) 0;
  z-index: -1;
  border: 1px solid rgba(241, 90, 36, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 241, 232, 0.86), rgba(255, 255, 255, 0.58)),
    repeating-linear-gradient(90deg, rgba(241, 90, 36, 0.055) 0 1px, transparent 1px 36px);
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.join-copy h2,
.lead-copy h2,
.service-detail-copy h2 {
  color: var(--black);
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
}

.hero-copy p,
.page-hero p,
.section-head p,
.join-copy p,
.lead-copy p {
  color: var(--muted);
}

.eyebrow {
  color: var(--red);
  letter-spacing: 0.14em;
}

.hero-care-tags span {
  min-height: 36px;
  border: 1px solid rgba(241, 90, 36, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #3c302b;
  box-shadow: 0 8px 18px rgba(133, 63, 30, 0.06);
}

.hero-care-tags i {
  color: var(--red);
}

.hero-stats {
  gap: 12px;
}

.hero-stats div {
  padding: 16px 18px;
  border: 1px solid rgba(241, 90, 36, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-stats div::before,
.hero-stats div::after {
  display: none;
}

.hero-stats dt {
  color: var(--red);
  font-size: clamp(20px, 1.8vw, 24px);
  white-space: nowrap;
}

.hero-media {
  border-color: rgba(241, 90, 36, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(91, 50, 31, 0.14);
}

.hero-media img {
  transform: scale(1.01);
}

.hero-carousel img.is-changing {
  opacity: 0.2;
  transform: scale(1.035);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 246, 240, 0.28) 0%, rgba(255, 246, 240, 0) 42%),
    linear-gradient(180deg, rgba(241, 90, 36, 0) 70%, rgba(241, 90, 36, 0.17) 100%);
}

.hero-ribbon {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 126, 72, 0.72), rgba(205, 78, 28, 0.66)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 36px rgba(129, 54, 23, 0.18);
}

.hero-entry {
  gap: 18px;
}

.entry-card {
  border-color: rgba(241, 90, 36, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(92, 47, 28, 0.11);
}

.entry-card::after {
  background: linear-gradient(115deg, rgba(37, 31, 28, 0.82), rgba(37, 31, 28, 0.22));
}

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

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

.entry-city {
  background:
    linear-gradient(135deg, rgba(255, 244, 235, 0.94), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(90deg, rgba(241, 90, 36, 0.08) 0 1px, transparent 1px 30px),
    #fff0c8;
}

.entry-city span {
  color: var(--red-deep);
}

.hero-entry {
  align-items: stretch;
}

.entry-card {
  min-height: 156px;
  border-color: rgba(241, 90, 36, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fff5ed 100%);
  color: var(--black);
}

.entry-card::after {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.4) 0 44px, transparent 46px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(241, 90, 36, 0.08));
}

.entry-card span {
  color: var(--red-deep);
}

.entry-card strong,
.entry-card small {
  color: var(--black);
}

.entry-card small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 8px 0 0;
  color: var(--red-deep);
}

.entry-join {
  border-color: rgba(241, 90, 36, 0.28);
  background:
    linear-gradient(135deg, rgba(241, 90, 36, 0.96) 0%, rgba(255, 117, 72, 0.94) 58%, rgba(189, 123, 40, 0.9) 100%),
    url("hero-clinic.png") center / cover;
}

.entry-join::after {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.28) 0 48px, transparent 50px),
    linear-gradient(135deg, rgba(89, 38, 18, 0.22), rgba(241, 90, 36, 0));
}

.entry-join span,
.entry-join strong,
.entry-join small {
  color: #fff;
}

.entry-book {
  background:
    linear-gradient(135deg, #fff8f2 0%, #fff0e5 52%, #ffe5d4 100%);
}

.entry-book::after {
  background:
    radial-gradient(circle at 88% 12%, rgba(241, 90, 36, 0.12) 0 46px, transparent 48px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(241, 90, 36, 0.08));
}

.entry-city {
  background:
    linear-gradient(135deg, #fffdf9 0%, #fff4eb 55%, #ffe7d7 100%);
}

.entry-city::after {
  background:
    radial-gradient(circle at 88% 12%, rgba(189, 123, 40, 0.14) 0 48px, transparent 50px),
    repeating-linear-gradient(90deg, rgba(241, 90, 36, 0.055) 0 1px, transparent 1px 28px);
}

.care-flow {
  gap: 12px;
}

.flow-item,
.flow-item + .flow-item {
  border: 1px solid rgba(241, 90, 36, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.flow-item i {
  background: var(--green-soft);
  color: var(--red);
}

.section {
  position: relative;
}

.section-muted {
  background:
    linear-gradient(180deg, #fff7ef 0%, #fff1e8 100%);
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.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,
.lead-form,
.faq-list details,
.map-card,
.empty-state {
  border-color: rgba(177, 104, 62, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card,
.city-card,
.product-card,
.stack-item,
.intro-grid article,
.advantage-grid article,
.pricing-grid article,
.process-grid article,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.92));
}

.service-grid.compact .service-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 241, 232, 0.96) 100%);
}

.service-grid.compact .service-card i {
  background: #fff0e6;
  color: var(--red);
}

.service-card:hover,
.city-card:hover,
.store-card:hover,
.product-card:hover,
.stack-item:hover,
.service-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(133, 63, 30, 0.13);
}

.service-card,
.city-card,
.store-card,
.product-card,
.stack-item,
.service-nav-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card span,
.city-card span,
.product-card span,
.stack-item span,
.advantage-grid span,
.process-grid strong {
  color: var(--red);
}

.service-card h3,
.city-card h3,
.store-card h3,
.product-card h3,
.stack-item h4,
.intro-grid strong,
.advantage-grid strong,
.pricing-grid strong,
.process-grid span {
  color: var(--black);
}

.service-overview {
  background:
    linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.service-nav-card {
  border-color: rgba(241, 90, 36, 0.2);
  border-top-color: var(--red);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(241, 90, 36, 0.12), rgba(255, 255, 255, 0) 54%),
    #fff;
}

.service-nav-card.hair-loss-card {
  border-top-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(189, 123, 40, 0.14), rgba(255, 255, 255, 0) 56%),
    #fff;
}

.service-detail-panel img,
.store-card img,
.product-card img {
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-detail-panel img {
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(90, 47, 29, 0.13);
}

.service-points article {
  border-color: rgba(241, 90, 36, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.service-checklist {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #251f1c 0%, #3a2a24 64%, rgba(241, 90, 36, 0.92) 100%);
  box-shadow: 0 18px 42px rgba(74, 42, 29, 0.16);
}

.store-map-section {
  background:
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.map-panel {
  border-color: rgba(241, 90, 36, 0.18);
  border-radius: var(--radius);
  background: #fff8f3;
}

.map-preview,
.map-card {
  background:
    repeating-linear-gradient(90deg, rgba(241, 90, 36, 0.08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(37, 31, 28, 0.055) 0 1px, transparent 1px 28px),
    #fff7ef;
}

.map-loading {
  background:
    repeating-linear-gradient(90deg, rgba(241, 90, 36, 0.08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(37, 31, 28, 0.055) 0 1px, transparent 1px 28px),
    #fff7ef;
}

.map-preview-card {
  border-color: rgba(241, 90, 36, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(74, 42, 29, 0.13);
}

.map-panel h3,
.map-info h3,
.store-card h3,
.product-card h3,
.empty-state h3 {
  color: var(--black);
}

.map-panel dl div,
.map-info dl div {
  border-radius: 6px;
  background: #fff1e8;
}

.join-support {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.24) 0 140px, transparent 142px),
    linear-gradient(125deg, #f15a24 0%, #f47a35 54%, #d9782f 100%);
}

.join-support .eyebrow,
.page-hero.join-hero .eyebrow,
.join-steps strong,
.support-grid i,
.site-footer a {
  color: #fff7e8;
}

.join-support .join-copy h2 {
  color: #fff;
}

.join-support .join-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.join-support .secondary-btn.light {
  color: #fff;
}

.support-grid article,
.join-steps article {
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
}

.lead-section {
  background:
    linear-gradient(135deg, #fff 0%, #fff4ec 56%, #fff0e4 100%);
}

.lead-proof div {
  border-color: rgba(241, 90, 36, 0.16);
  border-radius: var(--radius);
}

input,
textarea,
select {
  border-color: rgba(177, 104, 62, 0.24);
  border-radius: 6px;
  background: #fffdfb;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(241, 90, 36, 0.68);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.12);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff 0%, #fff3eb 58%, #fffaf6 100%);
}

.page-hero.compact:not(.join-hero):not(.city-hero) {
  min-height: 460px;
  padding-right: clamp(28px, 40vw, 620px);
}

.page-hero.compact:not(.join-hero):not(.city-hero)::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: 50%;
  width: min(36vw, 470px);
  height: clamp(220px, 27vw, 330px);
  border: 1px solid rgba(241, 90, 36, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 236, 0.16), rgba(241, 90, 36, 0.14)),
    url("hero-clinic.png") center / cover;
  box-shadow: 0 24px 58px rgba(91, 50, 31, 0.13);
  transform: translateY(-46%);
}

.page-hero.service-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 244, 236, 0.12), rgba(241, 90, 36, 0.16)),
    url("service-white-hair-care.png") center / cover;
}

.service-hero h1 span {
  display: block;
}

.page-hero.compact:not(.join-hero):not(.city-hero) > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact:not(.join-hero):not(.city-hero) h1 {
  max-width: 620px;
  font-size: clamp(40px, 4.6vw, 60px);
}

.page-hero.city-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 243, 235, 0.94) 54%, rgba(255, 243, 235, 0.58) 100%),
    url("hero-clinic.png") right center / 45% auto no-repeat;
}

.page-hero.join-hero {
  background:
    linear-gradient(90deg, #251f1c 0%, rgba(37, 31, 28, 0.94) 54%, rgba(141, 59, 29, 0.64) 100%),
    url("hero-clinic.png") right center / 45% auto no-repeat;
}

.page-hero.visual-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1fr);
  min-height: clamp(560px, 46vw, 680px);
  padding: 0;
  border-bottom: 1px solid rgba(241, 90, 36, 0.22);
  background: linear-gradient(90deg, #fffaf7 0%, #fff3eb 54%, #fff8f2 100%);
}

.page-hero.visual-hero::after {
  display: none;
}

.page-hero.visual-hero .page-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(72px, 7vw, 108px) clamp(42px, 5vw, 88px) clamp(58px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 247, 0.9) 72%, rgba(255, 250, 247, 0.38) 100%);
}

.page-hero.visual-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.9vw, 72px);
  line-height: 1.08;
}

.page-hero.visual-hero p {
  max-width: 690px;
}

.page-hero.visual-hero .hero-actions {
  margin-top: 34px;
  gap: 12px;
}

.page-hero.visual-hero .primary-btn,
.page-hero.visual-hero .secondary-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  white-space: nowrap;
}

body[data-page="services"] .page-hero.visual-hero .hero-actions {
  margin-top: 26px;
}

body[data-page="services"] .page-hero.visual-hero .primary-btn,
body[data-page="services"] .page-hero.visual-hero .secondary-btn {
  padding: 0 16px;
  font-size: 15px;
}

.page-hero.visual-hero .page-hero-media {
  position: relative;
  min-width: 0;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.page-hero.visual-hero .page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.58) 0%, rgba(255, 250, 247, 0.04) 18%, rgba(255, 250, 247, 0) 46%),
    linear-gradient(180deg, rgba(255, 242, 232, 0.12), rgba(255, 242, 232, 0.04));
  pointer-events: none;
}

.page-hero.visual-hero .page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.page-hero.visual-hero.join-hero {
  color: var(--black);
  background: linear-gradient(90deg, #fffaf7 0%, #fff3eb 54%, #fff8f2 100%);
}

.page-hero.visual-hero.join-hero h1,
.page-hero.visual-hero.join-hero p {
  color: var(--black);
}

.page-hero.visual-hero.join-hero .eyebrow {
  color: var(--red);
}

.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-inline-color: transparent;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0 120px, transparent 122px),
    var(--red);
  box-shadow:
    0 0 0 100vmax var(--red);
  clip-path: inset(0 -100vmax);
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.floating-service a,
.mobile-bar a {
  color: white;
  background: linear-gradient(135deg, var(--red), #ff784b);
}

.floating-service {
  top: 50%;
  right: 14px;
  bottom: auto;
  transform: translateY(-50%);
}

.floating-service a {
  min-width: 42px;
  min-height: 88px;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(128, 54, 24, 0.16);
}

.mobile-bar {
  box-shadow: 0 -12px 34px rgba(74, 42, 29, 0.1);
}

@media (max-width: 900px) {
  .hero::before {
    inset: 10px 10px 0;
  }

  .hero-stats div {
    padding: 14px;
  }

  .site-header {
    background:
      linear-gradient(90deg, #d9782f 0%, var(--red) 48%, #df833c 100%);
  }

  nav {
    border-top-color: rgba(255, 255, 255, 0.28);
  }

  .page-hero.city-hero,
  .page-hero.join-hero,
  .page-hero.compact:not(.join-hero):not(.city-hero) {
    min-height: auto;
    padding-right: clamp(20px, 5vw, 72px);
    background:
      linear-gradient(135deg, #fff 0%, #fff3eb 58%, #fffaf6 100%);
  }

  .page-hero.compact:not(.join-hero):not(.city-hero)::after {
    display: none;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero) h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.18;
  }

  .page-hero.join-hero {
    background:
      linear-gradient(135deg, #251f1c 0%, #3a2a24 100%);
  }

  .page-hero.visual-hero,
  .page-hero.visual-hero.join-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: linear-gradient(135deg, #fff 0%, #fff3eb 58%, #fffaf6 100%);
  }

  .page-hero.visual-hero .page-hero-copy {
    grid-column: 1;
    padding: clamp(72px, 14vw, 112px) clamp(20px, 5vw, 72px) clamp(34px, 8vw, 56px);
  }

  .page-hero.visual-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.16;
  }

  .page-hero.visual-hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.8;
  }

  .page-hero.visual-hero .page-hero-media {
    min-height: clamp(240px, 56vw, 420px);
  }

  .page-hero.visual-hero .page-hero-media img {
    min-height: clamp(240px, 56vw, 420px);
  }
}

@media (max-width: 520px) {
  .hero-care-tags span {
    font-size: 12px;
  }

  .entry-card {
    min-height: 148px;
    padding: 22px;
  }

  .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: 20px;
  }
}

@media (max-width: 900px) {
  .site-header nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px 18px;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .site-header nav {
    gap: 8px 13px;
  }
}

/* 内页首屏与核心入口二次优化：统一橙色 VI，去掉右图挤压导致的大留白。 */
.page-hero.compact:not(.join-hero):not(.city-hero) {
  min-height: 0;
  padding: clamp(58px, 5.2vw, 82px) clamp(24px, 5vw, 72px) clamp(52px, 4.8vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 241, 0.96) 52%, rgba(255, 235, 221, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(240, 90, 40, 0.055) 0 1px, transparent 1px 44px),
    #fff7f0;
  border-bottom: 1px solid rgba(240, 90, 40, 0.13);
}

.page-hero.compact:not(.join-hero):not(.city-hero)::before {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  top: clamp(22px, 3.2vw, 36px);
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff9567);
}

.page-hero.compact:not(.join-hero):not(.city-hero)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: auto;
  height: 6px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--red) 0%, #ff8a55 52%, #f6b45e 100%);
  box-shadow: none;
  transform: none;
}

.page-hero.compact:not(.join-hero):not(.city-hero) > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact:not(.join-hero):not(.city-hero) .eyebrow {
  color: var(--red);
}

.page-hero.compact:not(.join-hero):not(.city-hero) h1 {
  max-width: 940px;
  color: #231f20;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.12;
}

.page-hero.compact:not(.join-hero):not(.city-hero) p {
  max-width: 760px;
  margin-top: 18px;
  color: #655954;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.8;
}

.page-hero.compact:not(.join-hero):not(.city-hero) .hero-actions {
  margin-top: 24px;
}

.page-hero.service-hero h1 {
  max-width: 760px;
}

.page-hero.compact + .section {
  padding-top: clamp(48px, 5vw, 72px);
}

.page-hero.compact + .section.section-tight {
  padding-top: clamp(44px, 4.6vw, 66px);
}

.hero-entry {
  gap: 20px;
  padding-top: 6px;
  padding-bottom: 46px;
}

.entry-card {
  min-height: 158px;
  padding: 30px;
  border: 1px solid rgba(240, 90, 40, 0.18);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--black);
  box-shadow: 0 18px 42px rgba(100, 52, 30, 0.1);
}

.entry-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 239, 229, 0.46)),
    repeating-linear-gradient(90deg, rgba(240, 90, 40, 0.06) 0 1px, transparent 1px 34px);
}

.entry-card span {
  color: var(--red);
}

.entry-card strong {
  max-width: 360px;
  color: var(--black);
}

.entry-card small {
  color: var(--red);
}

.entry-card:hover {
  border-color: rgba(240, 90, 40, 0.34);
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(100, 52, 30, 0.14);
}

.entry-join {
  border-color: rgba(240, 90, 40, 0.28);
  background:
    linear-gradient(135deg, #f05a28 0%, #ff784b 58%, #f6a85a 100%);
}

.entry-join::after {
  background:
    linear-gradient(135deg, rgba(58, 30, 17, 0.18), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 34px);
}

.entry-join span,
.entry-join strong,
.entry-join small {
  color: #fff;
}

.entry-book {
  background:
    linear-gradient(135deg, #fffaf6 0%, #fff0e7 54%, #ffe1cf 100%);
}

.entry-city {
  background:
    linear-gradient(135deg, #fffdf9 0%, #fff4e8 56%, #ffead6 100%);
}

.entry-city span,
.entry-city strong,
.entry-city small {
  color: var(--black);
}

.entry-city span,
.entry-book small,
.entry-city small {
  color: var(--red);
}

.floating-service {
  display: none;
}

@media (max-width: 900px) {
  .page-hero.compact:not(.join-hero):not(.city-hero) {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero)::before {
    top: 22px;
    width: 72px;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero) h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.18;
  }

  .page-hero.compact + .section,
  .page-hero.compact + .section.section-tight {
    padding-top: 42px;
  }

  .hero-entry {
    gap: 14px;
    padding-bottom: 34px;
  }

  .entry-card {
    min-height: 132px;
    padding: 22px;
  }
}

/* 招商加盟首屏：统一为橙色 VI 的暖白转化风格，避免深色大块与站点主视觉冲突。 */
.page-hero.join-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --join-hero-side: max(clamp(28px, 5vw, 72px), calc((100vw - 1500px) / 2 + 32px));
  --join-hero-image: min(43vw, 760px);
  --join-hero-gap: clamp(34px, 3.2vw, 58px);
  min-height: clamp(450px, 36vw, 590px);
  display: grid;
  align-content: center;
  padding: clamp(70px, 6.2vw, 106px) var(--join-hero-side);
  padding-right: calc(var(--join-hero-image) + var(--join-hero-side) + var(--join-hero-gap));
  color: var(--black);
  background:
    radial-gradient(circle at 22% 18%, rgba(240, 90, 40, 0.16), transparent 34%),
    linear-gradient(112deg, #fffaf6 0%, #fff2eb 48%, #ffe3d2 100%);
  border-bottom: 1px solid rgba(240, 90, 40, 0.18);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.74);
}

.page-hero.join-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--join-hero-side);
  bottom: 0;
  z-index: 0;
  width: var(--join-hero-image);
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("hero-clinic.png") center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.14) contrast(1.06);
}

.page-hero.join-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fffaf6 0%, rgba(255, 246, 240, 0.98) 34%, rgba(255, 246, 240, 0.6) 48%, rgba(255, 246, 240, 0.12) 62%, rgba(255, 246, 240, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 237, 224, 0.1));
  pointer-events: none;
}

.page-hero.join-hero > * {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.page-hero.join-hero .eyebrow {
  color: var(--red);
}

.page-hero.join-hero h1 {
  color: #231f20;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.08;
}

.page-hero.join-hero p {
  max-width: 590px;
  color: #5f544f;
  font-size: clamp(17px, 1.25vw, 20px);
}

.page-hero.join-hero .primary-btn {
  background: linear-gradient(135deg, var(--red), #ff7a45);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(240, 90, 40, 0.25);
}

.page-hero.join-hero .secondary-btn {
  color: var(--red);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(240, 90, 40, 0.32);
  box-shadow: 0 14px 32px rgba(100, 52, 30, 0.08);
}

@media (max-width: 1180px) {
  .page-hero.join-hero {
    padding-right: clamp(22px, 5vw, 72px);
  }

  .page-hero.join-hero::before {
    width: 70vw;
    opacity: 0.32;
  }

  .page-hero.join-hero::after {
    background:
      linear-gradient(90deg, #fffaf6 0%, rgba(255, 246, 240, 0.95) 58%, rgba(255, 246, 240, 0.58) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 237, 224, 0.22));
  }
}

@media (max-width: 900px) {
  .page-hero.join-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 52px;
  }

  .page-hero.join-hero::before {
    width: 100%;
    opacity: 0.12;
  }

  .page-hero.join-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.16;
  }

  .page-hero.join-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
  }
}

/* 官网内页首屏统一为招商页同款右侧实景图构图。 */
.page-hero.compact:not(.join-hero):not(.city-hero) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --inner-hero-side: max(clamp(28px, 5vw, 72px), calc((100vw - 1500px) / 2 + 32px));
  --inner-hero-image: min(43vw, 760px);
  --inner-hero-gap: clamp(34px, 3.2vw, 58px);
  min-height: clamp(450px, 36vw, 590px);
  display: grid;
  align-content: center;
  padding: clamp(70px, 6.2vw, 106px) var(--inner-hero-side);
  padding-right: calc(var(--inner-hero-image) + var(--inner-hero-side) + var(--inner-hero-gap));
  color: var(--black);
  background:
    radial-gradient(circle at 22% 18%, rgba(240, 90, 40, 0.13), transparent 34%),
    linear-gradient(112deg, #fffaf6 0%, #fff3ec 48%, #ffe6d7 100%);
  border-bottom: 1px solid rgba(240, 90, 40, 0.18);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.74);
}

.page-hero.compact:not(.join-hero):not(.city-hero)::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--inner-hero-side);
  bottom: 0;
  z-index: 0;
  width: var(--inner-hero-image);
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("hero-clinic.png") center / cover no-repeat;
  box-shadow: none;
  opacity: 1;
  filter: saturate(1.12) contrast(1.05);
  transform: none;
}

body[data-page="services"] .page-hero.compact:not(.join-hero):not(.city-hero)::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("inner-hero-services.png") center / cover no-repeat;
}

body[data-page="stores"] .page-hero.compact:not(.join-hero):not(.city-hero)::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("inner-hero-stores.png") center / cover no-repeat;
}

body[data-page="cases"] .page-hero.compact:not(.join-hero):not(.city-hero)::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("inner-hero-cases.png") center / cover no-repeat;
}

body[data-page="brand"] .page-hero.compact:not(.join-hero):not(.city-hero)::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("inner-hero-brand.png") center / cover no-repeat;
}

body[data-page="contact"] .page-hero.compact:not(.join-hero):not(.city-hero)::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0) 0%, rgba(255, 232, 218, 0.06) 46%, rgba(240, 90, 40, 0.13) 100%),
    url("inner-hero-contact.png") center / cover no-repeat;
}

.page-hero.compact:not(.join-hero):not(.city-hero)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, #fffaf6 0%, rgba(255, 246, 240, 0.98) 34%, rgba(255, 246, 240, 0.6) 48%, rgba(255, 246, 240, 0.12) 62%, rgba(255, 246, 240, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 237, 224, 0.1));
  box-shadow: none;
  pointer-events: none;
  transform: none;
}

.page-hero.compact:not(.join-hero):not(.city-hero) > * {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.page-hero.compact:not(.join-hero):not(.city-hero) .eyebrow {
  color: var(--red);
}

.page-hero.compact:not(.join-hero):not(.city-hero) h1 {
  max-width: 610px;
  color: #231f20;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.08;
}

.page-hero.compact:not(.join-hero):not(.city-hero) p {
  max-width: 590px;
  color: #5f544f;
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.82;
}

.page-hero.compact:not(.join-hero):not(.city-hero) .hero-actions {
  margin-top: 30px;
}

.page-hero.compact:not(.join-hero):not(.city-hero) .primary-btn {
  background: linear-gradient(135deg, var(--red), #ff7a45);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(240, 90, 40, 0.24);
}

.page-hero.compact:not(.join-hero):not(.city-hero) .secondary-btn {
  color: var(--red);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(240, 90, 40, 0.32);
  box-shadow: 0 14px 32px rgba(100, 52, 30, 0.08);
}

@media (min-width: 1181px) {
  body[data-page="services"] .page-hero.compact.service-hero:not(.join-hero):not(.city-hero) {
    padding-top: clamp(58px, 4vw, 72px);
    padding-bottom: clamp(58px, 4vw, 72px);
  }
}

@media (max-width: 1180px) {
  .page-hero.compact:not(.join-hero):not(.city-hero) {
    padding-right: clamp(22px, 5vw, 72px);
  }

  .page-hero.compact:not(.join-hero):not(.city-hero)::before {
    width: 70vw;
    opacity: 0.3;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero)::after {
    background:
      linear-gradient(90deg, #fffaf6 0%, rgba(255, 246, 240, 0.95) 58%, rgba(255, 246, 240, 0.58) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 237, 224, 0.22));
  }
}

@media (max-width: 900px) {
  .page-hero.compact:not(.join-hero):not(.city-hero) {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero)::before {
    display: block;
    width: 100%;
    opacity: 0.12;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero)::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 246, 240, 0.9) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 237, 224, 0.28));
  }

  .page-hero.compact:not(.join-hero):not(.city-hero) h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.6vw, 44px);
    line-height: 1.16;
  }

  .page-hero.compact:not(.join-hero):not(.city-hero) p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
  }
}

/* 招商流程：提高四步流程的阅读对比度，避免白字落在浅底上看不清。 */
.join-flow-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.1), transparent 30%),
    linear-gradient(135deg, #fffaf6 0%, #fff2ea 58%, #ffe9db 100%);
  border-top: 1px solid rgba(240, 90, 40, 0.12);
  border-bottom: 1px solid rgba(240, 90, 40, 0.12);
}

.join-flow-layout {
  align-items: center;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 92px);
}

.join-flow-layout .section-head {
  position: sticky;
  top: 112px;
  padding: clamp(10px, 1.6vw, 18px) 0;
}

.join-flow-layout .section-head h2 {
  max-width: 620px;
}

.join-flow-layout .section-head p {
  max-width: 560px;
  color: #5f544f;
}

.join-flow-layout .join-steps.vertical {
  position: relative;
  gap: 16px;
}

.join-flow-layout .join-steps.vertical::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(240, 90, 40, 0.16));
}

.join-flow-layout .join-steps article {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 28px 22px 0;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(100, 52, 30, 0.08);
}

.join-flow-layout .join-steps strong {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff8a55);
  box-shadow: 0 14px 30px rgba(240, 90, 40, 0.24);
}

.join-flow-layout .join-steps span {
  color: #2b2420;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 900;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .join-flow-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .join-flow-layout .section-head {
    position: static;
    padding: 0;
  }

  .join-flow-layout .join-steps article {
    grid-template-columns: 58px 1fr;
    min-height: 92px;
    padding: 18px 18px 18px 0;
  }

  .join-flow-layout .join-steps strong {
    width: 58px;
    height: 58px;
    font-size: 21px;
  }

  .join-flow-layout .join-steps.vertical::before {
    left: 29px;
  }
}

body[data-page="contact"] main {
  background:
    linear-gradient(180deg, #fffaf6 0%, #fff3eb 48%, #ffffff 100%);
  padding-bottom: 88px;
}

body[data-page="contact"] .contact-lead-section {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 420px) minmax(440px, 560px);
  justify-content: center;
  align-items: start;
  gap: clamp(54px, 7vw, 96px);
  padding: clamp(82px, 7.4vw, 122px) clamp(28px, 5vw, 72px) clamp(92px, 8vw, 132px);
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.035) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, #fffaf6 0%, #fff1e8 100%);
}

body[data-page="contact"] .contact-lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(122deg, transparent 0 58%, rgba(240, 90, 40, 0.08) 58% 100%);
  pointer-events: none;
}

body[data-page="contact"] .contact-lead-section > * {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body[data-page="contact"] .contact-lead-copy {
  display: grid;
  align-content: start;
  gap: 26px;
  padding-top: 18px;
}

body[data-page="contact"] .contact-lead-copy h2 {
  max-width: 420px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.14;
}

body[data-page="contact"] .contact-lead-copy p {
  max-width: 420px;
  margin-top: 0;
  color: #5f544f;
}

body[data-page="contact"] .contact-service-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(240, 90, 40, 0.18);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(100, 52, 30, 0.08);
}

body[data-page="contact"] .contact-service-card span,
body[data-page="contact"] .contact-quick-grid span,
body[data-page="contact"] .form-intro span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

body[data-page="contact"] .contact-service-card strong {
  color: #2b2420;
  font-size: 16px;
  line-height: 1.6;
}

body[data-page="contact"] .contact-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

body[data-page="contact"] .contact-service-tags strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: 999px;
  background: #fff8f3;
  white-space: nowrap;
}

body[data-page="contact"] .contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="contact"] .contact-quick-grid a {
  display: grid;
  gap: 7px;
  min-height: 78px;
  padding: 15px 16px;
  border: 1px solid rgba(177, 104, 62, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: #2b2420;
}

body[data-page="contact"] .contact-quick-grid strong {
  font-size: 16px;
  line-height: 1.35;
}

body[data-page="contact"] .contact-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

body[data-page="contact"] .contact-flow span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(240, 90, 40, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #4f4540;
  font-size: 14px;
  font-weight: 800;
}

body[data-page="contact"] .contact-flow span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

body[data-page="contact"] .lead-form {
  align-self: start;
  gap: 17px;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgba(240, 90, 40, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(100, 52, 30, 0.14);
}

body[data-page="contact"] .lead-form .form-intro {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(240, 90, 40, 0.14);
}

body[data-page="contact"] .form-intro strong {
  color: #231f20;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
}

body[data-page="contact"] .lead-form label {
  gap: 9px;
  color: #2b2420;
}

body[data-page="contact"] .lead-form input,
body[data-page="contact"] .lead-form textarea,
body[data-page="contact"] .lead-form select {
  min-height: 52px;
  padding: 14px 15px;
  border-color: rgba(177, 104, 62, 0.26);
  border-radius: var(--radius);
  background: #fffaf7;
}

body[data-page="contact"] .lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

body[data-page="contact"] .lead-form button.primary-btn {
  min-height: 56px;
  justify-content: center;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(240, 90, 40, 0.24);
}

@media (max-width: 900px) {
  body[data-page="contact"] main {
    padding-bottom: 0;
  }

  body[data-page="contact"] .mobile-bar {
    position: static;
    z-index: auto;
    box-shadow: 0 -1px 0 rgba(240, 90, 40, 0.14);
  }

  body[data-page="contact"] .page-hero.compact:not(.join-hero):not(.city-hero) {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  body[data-page="contact"] .page-hero.compact:not(.join-hero):not(.city-hero) h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.15;
  }

  body[data-page="contact"] .page-hero.compact:not(.join-hero):not(.city-hero) p {
    font-size: 15px;
    line-height: 1.7;
  }

  body[data-page="contact"] .contact-lead-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px clamp(12px, 3.5vw, 18px) 44px;
    background:
      linear-gradient(180deg, #fffaf6 0%, #fff1e8 55%, #ffffff 100%);
  }

  body[data-page="contact"] .contact-lead-section::before {
    background:
      linear-gradient(180deg, rgba(240, 90, 40, 0.08), transparent 40%);
  }

  body[data-page="contact"] .contact-lead-copy {
    gap: 0;
    padding-top: 0;
  }

  body[data-page="contact"] .contact-lead-copy > .eyebrow,
  body[data-page="contact"] .contact-lead-copy h2,
  body[data-page="contact"] .contact-lead-copy p {
    display: none;
  }

  body[data-page="contact"] .contact-lead-copy h2 {
    max-width: 100%;
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.18;
  }

  body[data-page="contact"] .contact-lead-copy p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
  }

  body[data-page="contact"] .contact-service-card {
    padding: 15px 16px;
    border-radius: 8px;
  }

  body[data-page="contact"] .contact-service-card strong {
    font-size: 16px;
    line-height: 1.55;
  }

  body[data-page="contact"] .contact-service-tags {
    gap: 8px;
  }

  body[data-page="contact"] .contact-service-tags strong {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 14px;
  }

  body[data-page="contact"] .contact-quick-grid,
  body[data-page="contact"] .contact-flow {
    display: none;
  }

  body[data-page="contact"] .lead-form {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px 18px;
    border-radius: 10px;
    box-shadow: 0 18px 52px rgba(100, 52, 30, 0.13);
  }

  body[data-page="contact"] .lead-form .form-intro {
    padding-bottom: 14px;
  }

  body[data-page="contact"] .form-intro strong {
    font-size: 22px;
    line-height: 1.34;
  }

  body[data-page="contact"] .lead-form label {
    font-size: 13px;
  }

  body[data-page="contact"] .lead-form input,
  body[data-page="contact"] .lead-form textarea,
  body[data-page="contact"] .lead-form select {
    min-height: 56px;
    padding: 15px 16px;
    font-size: 15px;
    border-radius: 8px;
  }

  body[data-page="contact"] .lead-form textarea {
    min-height: 126px;
  }

  body[data-page="contact"] .lead-form button.primary-btn {
    min-height: 58px;
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  body[data-page="contact"] .contact-lead-section {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 16px;
  }

  body[data-page="contact"] .contact-quick-grid {
    gap: 8px;
  }

  body[data-page="contact"] .contact-quick-grid a {
    padding: 12px;
  }

  body[data-page="contact"] .contact-quick-grid strong {
    font-size: 14px;
  }

  body[data-page="contact"] .lead-form {
    padding: 20px 16px;
    gap: 15px;
  }

  body[data-page="contact"] .lead-form label {
    font-size: 13px;
  }

  body[data-page="contact"] .lead-form input,
  body[data-page="contact"] .lead-form textarea,
  body[data-page="contact"] .lead-form select {
    min-height: 56px;
    font-size: 15px;
  }

  body[data-page="contact"] .lead-form textarea {
    min-height: 124px;
  }
}

/* 服务项目新增头皮护理：三项核心服务在 PC 上并列，移动端保持单列阅读。 */
body[data-page="services"] .service-nav-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="services"] .service-nav-card {
  min-height: 248px;
}

body[data-page="services"] .service-nav-card.scalp-care-card {
  border-top-color: #ff8a45;
  background:
    linear-gradient(135deg, rgba(255, 138, 69, 0.16), rgba(255, 255, 255, 0) 56%),
    #fff;
}

body[data-page="services"] .scalp-care-detail .service-detail-panel img {
  object-position: center;
}

@media (max-width: 1180px) {
  body[data-page="services"] .service-nav-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="services"] .service-nav-card {
    min-height: auto;
  }
}

/* 内页首屏统一规则：services/stores/cases/brand/contact 与 join 共用图3式左文右图。 */
.page-hero.visual-hero {
  display: grid;
  grid-template-columns:
    minmax(28px, 1fr)
    minmax(430px, 700px)
    minmax(520px, 820px)
    minmax(28px, 1fr);
  align-content: stretch;
  min-height: clamp(560px, 46vw, 680px);
  padding: 0;
  padding-right: 0;
  color: var(--black);
  border-bottom: 1px solid rgba(241, 90, 36, 0.22);
  background: linear-gradient(90deg, #fffaf7 0%, #fff3eb 54%, #fff8f2 100%);
}

.page-hero.visual-hero::before,
.page-hero.visual-hero::after {
  display: none;
}

.page-hero.visual-hero > * {
  max-width: none;
}

.page-hero.visual-hero .page-hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(72px, 7vw, 108px) clamp(30px, 3.2vw, 56px) clamp(58px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 247, 0.94) 76%, rgba(255, 250, 247, 0.12) 100%);
}

.page-hero.visual-hero h1 {
  max-width: 760px;
  color: var(--black);
  font-size: clamp(44px, 4.4vw, 66px);
  line-height: 1.08;
}

body[data-page="services"] .page-hero.visual-hero h1 {
  font-size: clamp(36px, 3.3vw, 50px);
}

body[data-page="brand"] .page-hero.visual-hero h1 {
  font-size: clamp(34px, 3.1vw, 48px);
}

@media (min-width: 901px) {
  body[data-page="services"] .page-hero.visual-hero h1 span,
  body[data-page="brand"] .page-hero.visual-hero h1 {
    white-space: nowrap;
  }
}

.page-hero.visual-hero p {
  max-width: 690px;
  color: var(--muted);
}

.page-hero.visual-hero .hero-actions {
  margin-top: 34px;
  gap: 12px;
}

.page-hero.visual-hero .primary-btn,
.page-hero.visual-hero .secondary-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  white-space: nowrap;
}

body[data-page="services"] .page-hero.visual-hero .hero-actions {
  margin-top: 26px;
}

body[data-page="services"] .page-hero.visual-hero .primary-btn,
body[data-page="services"] .page-hero.visual-hero .secondary-btn {
  padding: 0 16px;
  font-size: 15px;
}

.page-hero.visual-hero .page-hero-media {
  position: relative;
  grid-column: 3;
  min-width: 0;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.page-hero.visual-hero .page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.18) 0%, rgba(255, 250, 247, 0.04) 8%, rgba(255, 250, 247, 0) 18%),
    linear-gradient(180deg, rgba(255, 242, 232, 0.05), rgba(255, 242, 232, 0));
  pointer-events: none;
}

.page-hero.visual-hero .page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.08);
}

body[data-page="stores"] .page-hero.visual-hero .page-hero-media img {
  object-position: right center;
}

.page-hero.visual-hero.join-hero,
.page-hero.visual-hero.join-hero h1,
.page-hero.visual-hero.join-hero p {
  color: var(--black);
}

.page-hero.visual-hero.join-hero .eyebrow {
  color: var(--red);
}

@media (max-width: 900px) {
  .page-hero.visual-hero,
  .page-hero.visual-hero.join-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    background: linear-gradient(135deg, #fff 0%, #fff3eb 58%, #fffaf6 100%);
  }

  .page-hero.visual-hero .page-hero-copy {
    grid-column: 1;
    padding: clamp(72px, 14vw, 112px) clamp(20px, 5vw, 72px) clamp(34px, 8vw, 56px);
  }

  .page-hero.visual-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.16;
  }

  .page-hero.visual-hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.8;
  }

  .page-hero.visual-hero .page-hero-media,
  .page-hero.visual-hero .page-hero-media img {
    min-height: clamp(240px, 56vw, 420px);
  }

  .page-hero.visual-hero .page-hero-media {
    grid-column: 1;
  }
}
