:root {
  --black: #050607;
  --ink: #111315;
  --muted-ink: #5e666d;
  --line: #d9dee2;
  --soft: #f5f6f7;
  --soft-2: #eceff1;
  --white: #ffffff;
  --green: #15604a;
  --gold: #b78a6e;

  /* 只使用你服务器的思源宋体，无任何降级字体 */
  --font-base: "SourceHanSerifCN";
  --font-sans: var(--font-base);
  --font-serif: var(--font-base);
  --font-logo: var(--font-base);
  --font-latin: var(--font-base);

  --nav-h: 64px;
  --page-x: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ======================================
   核心：只加载 woff2，只加载一次，强制匹配
====================================== */
@font-face {
  font-family: "SourceHanSerifCN";
  src: url("./SourceHanSerifCN-Medium.woff2") format("woff2");
  font-weight: 400 500; /* 常规 + 中等 全覆盖 */
  font-style: normal;
  font-display: block; /* 字体加载完才显示文字，绝对不闪 */
}

/* ======================================
   全局强制：只使用思源宋体，禁止任何其他字体
====================================== */
* {
  font-family: "SourceHanSerifCN" !important;
  font-weight: 500 !important;
}

html,
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  appearance: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
.button:focus-visible,
.text-action:focus-visible,
.nav-appointment:focus-visible,
.filter-button:focus-visible {
  outline: 2px solid rgba(21, 96, 74, 0.34);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-synthesis: none;
}

h2,
h3 {
  font-weight: 300;
}

h1 {
  font-size: clamp(44px, 7vw, 96px);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-weight: 350;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(21px, 2.4vw, 30px);
  margin: 25px 0;
  font-family: var(--font-serif);
  font-weight: 350;
  letter-spacing: 0.01em;
}

p {
  color: var(--muted-ink);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  color: var(--white);
  transition: background 320ms var(--ease), color 320ms var(--ease), box-shadow 320ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  padding: 0 var(--page-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 44px;
  font-family: var(--font-logo);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.brand-logo span {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
}

.nav-list {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 14px;
}

.nav-list a {
  opacity: 0.88;
  transition: color 220ms var(--ease), opacity 220ms var(--ease);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--gold);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-appointment {
  min-height: 38px;
  padding: 0 18px;
  color: currentColor;
  background: transparent;
  border-radius: 4px;
  box-shadow: none;
  transition: background 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-appointment:hover {
  color: var(--white);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 34px var(--page-x);
  background: rgba(255, 255, 255, 0.97);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.mobile-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-panel a,
.mobile-panel button {
  min-height: 52px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 24px;
}

.page-hero,
.stage,
.feature-tile,
.compact-hero.dark {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12)), var(--hero-image);
  background-position: center;
  background-size: cover;
}



.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 40px) var(--page-x) 56px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: transparent;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
}

.hero-scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.28));
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.hero-lede,
.hero-copy p,
.page-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.55vw, 21px);
}

.action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.action-row.centered,
.hero .action-row {
  justify-content: center;
}

.text-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font-weight: 500;
}

.text-action::after {
  content: "";
  width: 18px;
  height: 1.5px;
  margin-left: 9px;
  background: currentColor;
  transform: translateX(0);
  clip-path: polygon(0 35%, 70% 35%, 70% 0, 100% 50%, 70% 100%, 70% 65%, 0 65%);
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.text-action:hover::after {
  transform: translateX(5px);
}

.text-action.light {
  color: var(--white);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  font-weight: 500;
  transition: background 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

.button:hover {
  transform: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: #0f4f3d;
}

.button.secondary {
  color: var(--green);
  background: rgba(21, 96, 74, 0.08);
}

.button.secondary:hover {
  color: var(--green);
  background: rgba(21, 96, 74, 0.14);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.stage {
  min-height: 92svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-h) + 70px) var(--page-x) 80px;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)), var(--stage-image);
}

.stage-copy {
  width: min(900px, 100%);
}

.stage-copy p {
  font-size: 18px;
}

.stage-dark {
  color: var(--white);
}

.stage-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.stage-light {
  color: var(--ink);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0.1)), var(--stage-image);
}

.tile-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--white);
}

.feature-tile {
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 74px 38px;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0)), var(--tile-image);
  background-position: center;
  background-size: cover;
}

.feature-tile > div {
  width: min(520px, 100%);
}

.feature-tile.dark {
  color: var(--white);
  background-image: linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.08)), var(--tile-image);
}

.feature-tile.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-tile.light p {
  color: var(--muted-ink);
}

.section {
  padding: clamp(72px, 9vw, 124px) var(--page-x);
}

.section-white {
  background: var(--white);
}

.section-muted {
  background: var(--soft);
}

.section-black {
  color: var(--white);
  background: var(--black);
}

.section-black p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  width: min(820px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.section-head p {
  font-size: 18px;
}

.category-grid,
.product-grid,
.news-grid,
.service-grid,
.value-grid,
.process-grid,
.job-list {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

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

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--soft);
  border-radius: 6px;
}

.category-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.category-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.category-card .category-card-name {
  position: relative;
  z-index: 1;
  padding: 16px 18px 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  background: #fff;
}

.category-card:hover .category-card-image img {
  transform: scale(1.04);
}

.center-action {
  margin-top: 44px;
  text-align: center;
}

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

.service-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 34px;
  align-items: end;
}

.newsletter-copy {
  width: min(680px, 100%);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.newsletter-form input {
  min-height: 50px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.page-hero {
  min-height: 78svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) var(--page-x) 80px;
  color: var(--white);
  text-align: center;
}

.page-hero.align-left {
  justify-content: flex-start;
  text-align: left;
}

.page-hero.align-left .page-hero-copy {
  margin-left: min(5vw, 64px);
}

.page-hero-copy.center {
  margin: 0 auto;
}

.two-column {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 7vw, 120px);
}

.rich-copy {
  max-width: 760px;
}

.rich-copy p {
  font-size: 18px;
}

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

.value-grid article,
.process-grid article,
.job-list article {
  padding: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

.value-grid span,
.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 500;
}

.timeline {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.timeline article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 32px;
  padding: 34px 0;
}

.timeline time {
  color: var(--gold);
  font-weight: 500;
}

.cta-panel {
  padding: clamp(76px, 9vw, 120px) var(--page-x);
  text-align: center;
  color: var(--white);
  background: var(--black);
}

.compact-hero {
  min-height: 430px;
  padding: calc(var(--nav-h) + 92px) var(--page-x) 72px;
  display: grid;
  align-content: end;
  color: var(--white); /* 文字变白，在图上才看得见 */
  text-align: center;

  /* 核心：背景图铺满 + 不重复 + 宽度100% */
  background-repeat: no-repeat;
  background-position: center center;
}

.compact-hero.dark {
  min-height: 520px;
  color: var(--white);
}

.compact-hero.dark p {
  color: rgba(255,255,255,0.78);
}

.catalog-shell {
  padding-top: 42px;
}

.filter-bar {
  width: min(1440px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted-ink);
  background: var(--soft);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  transition: background 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--white);
  background: var(--green);
}

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

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.product-card-body {
  padding: 22px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-ink);
  font-size: 14px;
}

.product-price {
  color: var(--gold);
  font-weight: 560;
}

.product-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.detail-layout {
  min-height: 65svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: calc(var(--nav-h) + 62px) var(--page-x) 80px;
  background: var(--white);
}

.detail-media {
  background: var(--soft);
  border-radius: 6px;
  overflow: hidden;
}

.detail-media img {
  object-fit: cover;
}

.detail-copy {
  max-width: 560px;
}

.detail-copy h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.detail-copy .category {
  color: var(--gold);
  font-weight: 500;
}

.detail-copy .price {
  margin: 22px 0;
  color: var(--gold);
  font-size: 28px;
  font-weight: 560;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
}

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

.news-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-body {
  padding: 26px;
}

.news-date {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.news-detail {
  background: var(--white);
}

.news-detail-hero {
  min-height: 72svh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: calc(var(--nav-h) + 70px) var(--page-x) 72px;
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.58)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.news-detail-hero > div {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.article-body {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 72px var(--page-x) 100px;
}

.article-body p {
  font-size: 18px;
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--nav-h) + 26px);
  padding-bottom: 50px;
}

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

.process-grid article {
  background: var(--soft);
  border-color: rgba(0,0,0,0.06);
}

.service-detail-list {
  display: grid;
  gap: 1px;
  padding-left: 0;
  padding-right: 0;
}

.service-detail-list article {
  padding: clamp(58px, 8vw, 96px) var(--page-x);
  background: var(--white);
}

.service-detail-list article > * {
  width: min(760px, 100%);
}

.text-service-card {
  min-height: 260px;
}

.bespoke-service-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.16fr repeat(2, minmax(0, 0.92fr));
  gap: 18px;
  align-items: stretch;
}

.bespoke-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border-radius: 6px;
}

.bespoke-service-card.is-featured {
  color: var(--white);
  background: var(--green);
}

.bespoke-service-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.bespoke-service-card p {
  margin-bottom: 22px;
}

.bespoke-service-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.bespoke-service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-ink);
}

.bespoke-service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.bespoke-service-card.is-featured p,
.bespoke-service-card.is-featured li {
  color: rgba(255,255,255,0.78);
}

.bespoke-service-card .button {
  width: fit-content;
  margin-top: auto;
}

.service-tool-grid,
.quick-service-grid,
.store-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.service-tool-card,
.store-card,
.risk-note {
  padding: 34px;
  background: var(--white);
  border-radius: 6px;
}

.service-tool-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 500;
}

.service-tool-card p,
.store-card p,
.risk-note p {
  margin-bottom: 0;
}

.service-form-section,
.franchise-note-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.service-center-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.service-center-copy {
  max-width: 680px;
}

.service-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-badge-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--green);
  background: var(--white);
  border-radius: 4px;
  font-weight: 500;
}

.service-center-image {
  margin-top: 0;
}

.service-tool-card {
  display: block;
  color: inherit;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.service-tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 138, 110, 0.36);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.service-page-copy {
  max-width: 720px;
}

.service-page-copy .button {
  margin-top: 28px;
}

.service-info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-info-list article {
  padding: 20px;
  background: var(--soft);
  border-radius: 6px;
}

.service-info-list h3,
.service-policy-card h3 {
  margin-bottom: 8px;
}

.service-info-list p,
.service-policy-card p {
  margin-bottom: 0;
}

.service-price-table {
  width: min(1000px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
}

.service-price-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  gap: 18px;
  padding: 20px 24px;
}

.service-price-row:first-child {
  border-top: 0;
  color: var(--white);
  background: var(--green);
  font-weight: 560;
}

.service-price-row strong {
  color: var(--gold);
}

.service-price-row:first-child strong {
  color: inherit;
}

.service-policy-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-policy-card {
  padding: 30px;
  background: var(--white);
  border-radius: 6px;
}

.auth-result {
  display: grid;
  gap: 22px;
}

.auth-result-status {
  padding: 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
}

.auth-result-status span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--green);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.auth-result-status strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.auth-result-status p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.78);
}

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

.auth-result-grid div {
  padding: 16px;
  background: var(--soft);
  border-radius: 6px;
}

.auth-result-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-ink);
  font-size: 13px;
}

.auth-result-grid strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.auth-result-note {
  margin: 0;
  color: var(--muted-ink);
}

.service-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-search-form {
  width: min(760px, 100%);
  margin: 0 auto 30px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.store-card[hidden] {
  display: none;
}

.store-card span,
.store-card strong {
  display: block;
}

.store-card span {
  margin: 18px 0 8px;
  color: var(--muted-ink);
}

.store-card strong {
  color: var(--gold);
}

.service-map {
  width: min(1100px, 100%);
  margin: 34px auto 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.form-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border-radius: 6px;
}

.section-muted .form-card {
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--soft);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
  transition: background 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #eef6f1;
  box-shadow: none;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 500;
}

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

.map-frame {
  overflow: hidden;
  margin-top: 18px;
  border-radius: 6px;
}

.map-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.job-list article {
  background: var(--soft);
  border-color: rgba(0,0,0,0.06);
}

.job-list span {
  color: var(--gold);
  font-weight: 500;
}

.join-copy {
  max-width: 620px;
}

.site-footer {
  color: rgba(255,255,255,0.72);
  background: #070808;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 0.6fr));
  gap: 40px;
  padding: 70px var(--page-x) 42px;
}

.footer-logo {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-logo);
  font-size: 26px;
  font-weight: 500;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
}

.footer-col a,
.footer-col button {
  min-height: 28px;
  padding: 0;
  color: rgba(255,255,255,0.72);
  background: transparent;
  border: 0;
  text-align: left;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--white);
}

.footer-qr {
  width: 118px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px var(--page-x);
  font-size: 13px;
}

.footer-records,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal button {
  min-height: 32px;
  padding: 0;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 0;
}

.footer-legal button:hover {
  color: var(--white);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
}

.modal-backdrop.hidden {
  display: none;
}

.modal-backdrop.is-lightweight {
  place-items: center;
  padding: 20px;
  background: transparent;
  pointer-events: none;
  backdrop-filter: none;
}

.modal {
  width: min(640px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.26);
}

.modal-backdrop.is-lightweight .modal {
  width: min(720px, calc(100vw - 40px));
  max-height: min(650px, calc(100svh - 56px));
  padding: 42px;
  box-shadow: 0 22px 58px rgba(0,0,0,0.2);
  pointer-events: auto;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.modal-backdrop.is-lightweight .modal-head {
  margin-bottom: 18px;
}

.modal-backdrop.is-lightweight .modal-close {
  display: none;
}

.modal-close {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--soft);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  font-size: 26px;
  line-height: 1;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.modal-close:hover {
  color: var(--green);
  background: rgba(21, 96, 74, 0.08);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.modal-backdrop.is-lightweight .modal-actions {
  justify-content: flex-end;
  margin-top: 30px;
}

.appointment-form {
  display: grid;
  gap: 16px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 240;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 18px;
  color: var(--white);
  background: rgba(17, 19, 21, 0.94);
  border-radius: 4px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.toast.is-modal-notice {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  min-width: min(360px, calc(100vw - 40px));
  text-align: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  transform: translate(-50%, calc(-50% + 20px));
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.is-modal-notice.is-visible {
  transform: translate(-50%, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .category-grid,
  .category-grid.large,
  .quick-service-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .nav-list,
  .nav-appointment {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    justify-self: start;
  }

  .tile-section,
  .newsletter-band,
  .two-column,
  .detail-layout,
  .contact-layout,
  .bespoke-service-grid,
  .service-page-layout,
  .service-form-section,
  .franchise-note-section,
  .service-center-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: 620px;
  }

  .category-grid,
  .category-grid.large,
  .product-grid,
  .product-grid.compact,
  .news-grid,
  .service-grid,
  .service-tool-grid,
  .quick-service-grid,
    .store-grid,
    .service-policy-grid,
    .value-grid,
    .job-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  :root {
    --nav-h: 58px;
    --page-x: 18px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .page-hero {
    min-height: 84svh;
    padding-bottom: 48px;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding-bottom: 48px;
  }

  .stage {
    min-height: 82svh;
    padding-top: 92px;
  }

  .feature-tile {
    min-height: 560px;
    padding: 56px 22px;
  }

  .category-grid,
  .category-grid.large,
  .product-grid,
  .product-grid.compact,
  .news-grid,
  .service-grid,
  .service-tool-grid,
  .quick-service-grid,
    .store-grid,
    .service-policy-grid,
    .auth-result-grid,
    .value-grid,
    .process-grid,
    .job-list {
    grid-template-columns: 1fr;
  }

  .service-price-row {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 330px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form,
  .form-row,
  .store-search-form {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

/* vivo.com inspired visual refresh: airy layout, pale surfaces, soft cards, XITIYA green accents. */
:root {
  --black: #091512;
  --ink: #202a27;
  --muted-ink: #69766f;
  --line: #e1e9e5;
  --soft: #f5f8f6;
  --soft-2: #edf4f0;
  --white: #ffffff;
  --green: #15604a;
  --gold: #b78a6e;
  --nav-h: 72px;
  --page-x: clamp(18px, 5.4vw, 88px);
  --card-radius: 26px;
  --panel-shadow: 0 18px 54px rgba(13, 55, 42, 0.08);
  --panel-shadow-hover: 0 30px 80px rgba(13, 55, 42, 0.14);
}

body {
  color: var(--ink);
  background: var(--soft);
  font-family: var(--font-sans);
  line-height: 1.7;
}

html {
  font-family: var(--font-sans);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
  font-synthesis: none;
}

.eyebrow,
.nav-list,
.nav-appointment,
.button,
.text-action,
.footer-logo,
.footer-legal button,
.filter-button,
.stage-carousel-dot,
.stage-carousel-arrow {
  font-family: var(--font-latin);
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 430;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(35px, 2vw, 92px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.16;
}

h3 {
  font-size: clamp(21px, 2.2vw, 28px);
}

.article-header {
  border-bottom: 1px solid #333;
  padding-bottom: 2px; /* 线和文字之间的距离 */
}

p {
  color: var(--muted-ink);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 28px rgba(13, 55, 42, 0.06);
  backdrop-filter: blur(18px);
}

.brand-logo {
  font-family: var(--font-logo);
  font-weight: 500;
  letter-spacing: 0;
}

.brand-logo span {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.nav-list a {
  color: rgba(32, 37, 51, 0.82);
}

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

.nav-item {
  position: relative;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-item.has-submenu .nav-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  opacity: 0.62;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after,
.nav-item.is-open .nav-link::after {
  transform: rotate(225deg) translate(-2px, -1px);
  opacity: 1;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 120;
  width: max-content;
  min-width: 174px;
  max-width: 260px;
  display: grid;
  gap: 4px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  box-shadow: 0 22px 58px rgba(13, 55, 42, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(32, 42, 39, 0.82);
  border-radius: 999px;
  font-size: 13px;
  opacity: 1;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--green);
  background: rgba(21, 96, 74, 0.08);
  outline: 0;
}

.nav-appointment,
.button {
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

.nav-appointment {
  min-height: 40px;
  padding: 0 22px;
  color: var(--green);
  background: rgba(21, 96, 74, 0.06);
}

.nav-appointment:hover,
.button.primary,
.button.primary:hover {
  color: var(--white);
  background: var(--green);
  box-shadow: none;
}

.nav-appointment:hover,
.button.primary:hover {
  background: #0f4f3d;
}

.button.secondary,
.button.light {
  color: var(--green);
  background: rgba(21, 96, 74, 0.08);
}

.button.secondary:hover,
.button.light:hover {
  color: var(--green);
  background: rgba(21, 96, 74, 0.14);
}

.text-action {
  color: var(--green);
}

.text-action.light {
  color: var(--white);
}

.hero {
  color: var(--white);
  background: #e3eee9;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(5, 12, 30, 0.20), rgba(5, 12, 30, 0.06) 48%, rgba(5, 12, 30, 0.28)),
    linear-gradient(90deg, rgba(5, 12, 30, 0.22), rgba(5, 12, 30, 0.02), rgba(5, 12, 30, 0.16));
}

.hero-copy,
.page-hero-copy {
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.18));
}

.page-hero,
.stage,
.compact-hero {
  background-color: var(--soft);
}

.compact-hero.dark {
  background-image:
    linear-gradient(180deg, rgba(6, 33, 27, 0.22), rgba(6, 33, 27, 0.42)),
    var(--hero-image);
}

.stage {
  margin: 14px;
  min-height: calc(100svh - 28px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--panel-shadow);
}

.stage-light {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.22)),
    var(--stage-image);
}

.stage-dark {
  background-image:
    linear-gradient(180deg, rgba(6, 33, 27, 0.20), rgba(6, 33, 27, 0.42)),
    var(--stage-image);
}

.stage-carousel {
  position: relative;
  display: block;
  padding: 0;
  background: transparent;
}

.stage-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.stage-carousel .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.stage-carousel-slide {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 28px);
  padding: calc(var(--nav-h) + 72px) var(--page-x) 96px;
  text-align: center;
  background-color: transparent;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1.018);
  transition: transform 1100ms var(--ease);
  z-index: 1;
}

.stage-carousel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage-carousel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 12, 0.18) 0%, rgba(4, 9, 12, 0.08) 42%, rgba(4, 9, 12, 0.38) 100%),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.06), transparent 40%);
}

.stage-carousel-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.stage-carousel-slide.is-active,
.stage-carousel-slide.swiper-slide-active {
  transform: scale(1);
}

.stage-carousel .stage-copy {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  transform: translateY(-10%);
  padding: 38px 42px 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.stage-carousel .stage-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.18em;
}

.stage-carousel .stage-copy h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
}

.stage-carousel .stage-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.3vw, 18px);
}

.stage-carousel .action-row {
  margin-top: 26px;
}

.stage-carousel .text-action.light::after {
  background: currentColor;
}

.stage-carousel-controls {
  position: absolute;
  z-index: 3;
  left: var(--page-x);
  right: var(--page-x);
  bottom: 34px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.stage-carousel-controls {
  position: absolute;
  z-index: 3;
  left: var(--page-x);
  right: var(--page-x);
  bottom: 34px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}

.stage-carousel-arrow,
.stage-carousel-dot {
  pointer-events: auto;
}

.stage-carousel-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  transition: background 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

.stage-carousel-arrow::before,
.stage-carousel-arrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transition: transform 180ms var(--ease);
}

.stage-carousel-arrow::before {
  opacity: 0;
}

.stage-carousel-arrow::after {
  width: 10px;
  height: 10px;
}

.stage-carousel-arrow.js-stage-prev::after {
  transform: rotate(225deg) translate(0, 0);
}

.stage-carousel-arrow.js-stage-next::after {
  transform: rotate(45deg) translate(0, 0);
}

.stage-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: none;
}

.stage-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stage-carousel-dots .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  opacity: 1;
  transition: width 280ms var(--ease), background 280ms var(--ease), opacity 280ms var(--ease);
}

.stage-carousel-dots .swiper-pagination-bullet-active {
  width: 68px;
  background: var(--white);
}

.stage-carousel-controls .js-stage-prev {
  justify-self: start;
}

.stage-carousel-controls .js-stage-next {
  justify-self: end;
}

@media (prefers-reduced-motion: reduce) {
  .stage-carousel-slide,
  .stage-carousel-dot,
  .stage-carousel-arrow {
    transition: none;
  }
}

.tile-section {
  gap: 18px;
  padding: 18px;
  background: var(--soft);
}

.feature-tile {
  min-height: 690px;
  border-radius: 30px;
  box-shadow: var(--panel-shadow);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), filter 360ms var(--ease);
}

.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--panel-shadow-hover);
}

.section-white,
.section-muted {
  background: var(--soft);
}

.section-black {
  background: linear-gradient(135deg, #10251f 0%, #091512 100%);
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-head h2,
.compact-hero h1,
.page-hero h1 {
  color: var(--ink);
}

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

.category-card,
.product-card,
.news-card,
.service-card,
.service-tool-card,
.store-card,
.risk-note,
.form-card,
.bespoke-service-card,
.service-policy-card,
.timeline article,
.process-grid article,
.job-list article,
.modal,
.service-price-table,
.service-info-list article,
.auth-result-grid div {
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--panel-shadow);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.category-card:hover,
.product-card:hover,
.news-card:hover,
.service-card:hover,
.service-tool-card:hover,
.store-card:hover,
.bespoke-service-card:hover,
.process-grid article:hover,
.job-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 96, 74, 0.22);
  box-shadow: var(--panel-shadow-hover);
}

.category-card,
.feature-tile,
.product-card,
.news-card,
.service-card {
  overflow: hidden;
}

.category-card img,
.product-card img,
.news-card img,
.service-card img {
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.category-card:hover img,
.product-card:hover img,
.news-card:hover img,
.service-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.category-card::after {
  background: linear-gradient(180deg, transparent 22%, rgba(7, 38, 31, 0.50));
}

.service-grid,
.news-grid,
.category-grid,
.product-grid,
.quick-service-grid,
.store-grid,
.process-grid,
.bespoke-service-grid {
  gap: 22px;
}

.product-card-body,
.news-card-body,
.service-card div {
  padding: 30px;
}

.service-card div {
  background: var(--white);
}

.bespoke-service-card.is-featured,
.auth-result-status,
.service-price-row:first-child {
  background: linear-gradient(135deg, #15604a 0%, #0b4334 100%);
}

.bespoke-service-card.is-featured {
  border-color: transparent;
}

input,
select,
textarea {
  min-height: 52px;
  background: #f4f8f5;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  background: #eef6f1;
  box-shadow: none;
}

.modal-backdrop {
  background: rgba(13, 20, 34, 0.46);
}

.modal {
  border-radius: 28px;
}

.modal-close {
  border-radius: 6px;
  background: #f2f7f4;
}

.mobile-panel {
  overflow-y: auto;
}

.mobile-nav-group {
  display: grid;
  gap: 4px;
  padding: 4px 0 14px;
}

.mobile-panel .mobile-nav-group > a {
  min-height: 44px;
  color: var(--ink);
  font-size: 23px;
}

.mobile-panel .mobile-nav-group > a.active {
  color: var(--green);
}

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

.mobile-panel .mobile-submenu a {
  min-height: 34px;
  color: var(--muted-ink);
  font-size: 14px;
}

.mobile-panel .mobile-submenu a:hover,
.mobile-panel .mobile-submenu a:focus-visible {
  color: var(--green);
}

.toast {
  border-radius: 999px;
  background: rgba(21, 32, 55, 0.92);
}

.timeline {
  width: min(1120px, 100%);
  display: grid;
  gap: 18px;
  border-top: 0;
}

.timeline article {
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding: 30px 34px;
  border-bottom: 0;
}

.timeline time {
  color: var(--green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.timeline h3 {
  margin-bottom: 8px;
}

.timeline p {
  margin-bottom: 0;
  max-width: 760px;
}

.reveal {
  transform: translateY(34px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

@media (max-width: 900px) {
  .stage,
  .feature-tile {
    border-radius: 24px;
  }

  .tile-section {
    padding: 12px;
  }

  .mobile-panel {
    background: rgba(245, 247, 251, 0.98);
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 66px;
  }

  .stage {
    margin: 10px;
    min-height: calc(88svh - 20px);
  }

  .stage-carousel-slide {
    padding: calc(var(--nav-h) + 56px) 22px 88px;
    min-height: calc(88svh - 20px);
  }

  .stage-carousel-controls {
    left: 22px;
    right: 22px;
    bottom: 26px;
    grid-template-columns: 42px 1fr 42px;
  }

  .stage-carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .stage-carousel-dot {
    width: 24px;
  }

  .stage-carousel-dot[aria-current="true"] {
    width: 44px;
  }

  .category-card,
  .product-card,
  .news-card,
  .service-card,
  .service-tool-card,
  .form-card,
  .bespoke-service-card,
  .modal {
    border-radius: 22px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px;
  }
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 36px;
  padding: 3px;
  color: currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-width: 34px;
  min-height: 28px;
  padding: 0 9px;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  font-size: 12px;
  line-height: 1;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.language-switch span {
  color: currentColor;
  opacity: 0.42;
  font-size: 12px;
}

.language-switch button.is-active {
  color: var(--white);
  background: var(--green);
}

.site-header:not(.is-scrolled):not(.is-open) .language-switch button.is-active {
  color: var(--white);
  background: rgba(21, 96, 74, 0.86);
}

.footer-main {
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 2.6fr) minmax(170px, 0.7fr);
  align-items: start;
}

.footer-brand-col {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.footer-nav-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col .footer-nav-title {
  display: block;
  min-height: auto;
  color: var(--white);
  font-weight: 600;
  line-height: 1.35;
}

.footer-nav-children {
  display: grid;
  gap: 8px;
}

.footer-col .footer-nav-children a {
  min-height: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.footer-hotline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

/* Flat button system */
.button,
.nav-appointment,
.filter-button,
.modal-close,
.stage-carousel-arrow,
.language-switch button,
.footer-col button,
.footer-legal button,
.mobile-panel button {
  border: 0;
  box-shadow: none;
}

.button,
.nav-appointment,
.filter-button,
.modal-close,
.stage-carousel-arrow,
.language-switch button {
  border-radius: 6px;
}

.button:hover,
.nav-appointment:hover,
.filter-button:hover,
.modal-close:hover,
.stage-carousel-arrow:hover,
.language-switch button:hover {
  transform: none;
  box-shadow: none;
}

input,
select,
textarea {
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .language-switch {
    min-height: 34px;
    padding: 2px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 28px;
    padding: 0 7px;
  }

  .footer-nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .footer-main {
    gap: 28px;
    padding: 42px var(--page-x) 28px;
  }

  .footer-brand-col {
    order: 1;
    gap: 10px;
    padding-bottom: 26px;
  }

  .footer-logo {
    margin-bottom: 0;
    font-size: 24px;
  }

  .footer-brand-col p {
    max-width: 30em;
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer-nav-col {
    order: 2;
    padding-bottom: 26px;
  }

  .footer-nav-group {
    min-width: 0;
    gap: 10px;
  }

  .footer-col .footer-nav-title {
    font-size: 14px;
  }

  .footer-col .footer-nav-children a {
    min-height: auto;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .footer-contact-col {
    order: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    align-items: center;
  }

  .footer-contact-col h3 {
    margin: 0;
    font-size: 15px;
  }

  .footer-hotline {
    margin: 0;
    font-size: 13px;
  }

  .footer-contact-col h3,
  .footer-hotline {
    grid-column: 1;
  }

  .footer-qr {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 92px;
    justify-self: end;
  }

  .footer-contact-col > a {
    display: none;
  }

  .footer-bottom {
    gap: 12px;
    padding: 18px var(--page-x) 24px;
    font-size: 11px;
  }

  .footer-records,
  .footer-legal {
    gap: 8px 14px;
  }
}

/* =========================
   轮播主容器
========================= */
.banner-slider {
  width: 100%;
  height: 1200px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .banner-slider {
    height: 70vh;
    padding: 10px;
    border-radius: 24px;
  }
  
}

/* =========================
   幻灯片 = 背景图模式
========================= */
.banner-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* 文字居中核心 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   文字内容居中
========================= */

.banner-slider .slide-content {
  margin-bottom: 30%;
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 60%;
}
.banner-slider .slide-content .eyebrow {
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.banner-slider .slide-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0 16px;
}

.banner-slider .slide-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

.banner-slider .slide-content .text-action {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

/* 移动端文字大小 */
@media (max-width: 768px) {
  .banner-slider .slide-content h2 {
    font-size: 24px;
  }
  .banner-slider .slide-content p,
  .banner-slider .slide-content .eyebrow {
    font-size: 14px;
  }
  .banner-slider .slide-content {
    margin-bottom: 80%;
    text-align: center;
  }
}

/* =========================
   分页器 = 横线
========================= */
.banner-slider .swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.banner-slider .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
}

.banner-slider .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 768px) {
  .banner-slider .swiper-button-prev,
  .banner-slider .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}