/* ============================================================
   洁屋家政 落地页样式 — 合并版（v6，由 v5.3–v5.10 叠层清理而来）
   范式：白底 × 生态绿 × 圆角卡（参照 mobanwang 23057/22543）
   结构：tokens → 基础 → 组件 → 页头/加载屏 → 首屏轮播 → 各区块
         → 灯箱/回顶 → 动效系统 → 媒体查询（768/1024/767-）
   ============================================================ */

/* ── Tokens ─────────────────────────────── */
:root {
  --white: #FFFFFF;
  --mint: #F0F9F4;
  --mint-line: #D9EFE3;
  --navy: #0F1E1A;
  --navy-2: #55655F;
  --green: #1FA463;
  --green-deep: #157347;
  --green-soft: rgba(31, 164, 99, 0.12);
  --amber: #FFB400;
  --line: #E4EEE8;
  --shade: rgba(8, 20, 16, 0.74);        /* 首屏照片压暗起点 */
  --on-dark-2: rgba(255, 255, 255, 0.78); /* 深底次级文字 */
  --on-dark-3: rgba(255, 255, 255, 0.88); /* 深底正文 */
  --shadow-card: 0 4px 18px -12px rgba(15, 30, 26, 0.18);
  --shadow-lift: 0 16px 34px -18px rgba(15, 30, 26, 0.28);
  --shadow-hero: 0 24px 48px -24px rgba(15, 30, 26, 0.4);
  --green-glow: 0 10px 24px -10px rgba(31, 164, 99, 0.6);

  --font-display: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", system-ui, -apple-system, sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

/* ── 基础 ───────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

::selection { background: var(--green); color: var(--white); }

.wrap { max-width: 75rem; margin-inline: auto; padding-inline: 1.25rem; }
section { scroll-margin-top: 5rem; padding-block: 5rem; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); line-height: 1.22; margin: 0 0 1.1rem; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.25; margin: 0; }
h3 { font-size: 1.1rem; margin: 0 0 0.2rem; font-weight: 700; }

a { color: inherit; touch-action: manipulation; }
a:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* 区块头 */
.sec-head { text-align: center; max-width: 42rem; margin: 0 auto 3.2rem; }
.kicker { color: var(--green); font-weight: 800; font-size: 0.88rem; letter-spacing: 0.28em; margin: 0 0 0.6rem; }
.sec-note { color: var(--navy-2); font-size: 0.92rem; margin: 0.4rem 0 0; }
.kicker-left { text-align: left; margin-inline: 0; }

/* ── 组件：标签 / 链接 / 星标 / 卡片 / 按钮 ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin: 0 0 1.4rem;
}
.tag-light { background: rgba(255, 255, 255, 0.14); color: var(--white); }
.tag-dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--green); }
.lede { color: var(--navy-2); max-width: 32rem; margin: 0 0 1.8rem; }
.lede-light { color: rgba(255, 255, 255, 0.86); }
.stars { color: var(--amber); letter-spacing: 0.15em; }
.star-off { color: var(--mint-line); }

.more { font-weight: 700; color: var(--green); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.more:hover { color: var(--green-deep); }
.arr { display: inline-block; transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1); }
.more:hover .arr { transform: translateX(5px); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

/* 按钮：胶囊 + 液态填充 + 高光扫过（hover 时填充从左漫入） */
.btn, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.9rem;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.btn::before, .nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: -1;
}
.btn:hover::before, .nav-cta:hover::before { transform: scaleX(1); }
.btn::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--green-glow); }
.btn-primary::before { background: var(--green-deep); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--green-deep); }
.btn-light::before { background: rgba(255, 255, 255, 0.92); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.35); }
.btn-light-ghost { border: 2px solid rgba(255, 255, 255, 0.8); color: var(--white); }
.btn-light-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.12); color: var(--white); transform: translateY(-2px); }

/* ── 页头：通条 + 吸顶导航（滚动收缩） ── */
.topstrip {
  margin: 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}
.topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  transition: padding 0.25s ease;
}
.topbar.scrolled { box-shadow: 0 8px 24px -16px rgba(15, 30, 26, 0.35); }
.topbar.scrolled .topbar-inner { padding-block: 0.55rem; }
.brand { font-weight: 800; font-size: 1.18rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
  background: var(--green);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 1.15rem;
}
.topnav { display: none; gap: 1.8rem; align-items: center; font-size: 0.95rem; font-weight: 600; }
.topnav a { text-decoration: none; color: var(--navy-2); position: relative; transition: color 0.18s ease; }
.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topnav a:hover { color: var(--green-deep); }
.topnav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
}
.nav-cta::before { background: var(--green-deep); }
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); }

/* ── 加载屏（无 JS 永不显示） ───────────── */
.loader { display: none; }
.js .loader {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.js .loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.loader-brand { color: rgba(255, 255, 255, 0.72); font-weight: 700; letter-spacing: 0.3em; font-size: 0.85rem; }
.loader-num { color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.loader-line { width: 11rem; height: 2px; background: rgba(255, 255, 255, 0.16); border-radius: 999px; overflow: hidden; }
.loader-line i { display: block; width: 0%; height: 100%; background: var(--green); transition: width 0.2s ease; }

/* ── 首屏：全屏照片轮播 ─────────────────── */
.hero {
  position: relative;
  height: min(92vh, 780px); /* 旧内核兜底 */
  height: min(92svh, 780px);
  min-height: 540px;
  padding: 0;
  overflow: hidden;
  display: block;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.on { opacity: 1; pointer-events: auto; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide.on img { animation: kenburns 7s ease-out both; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--shade) 0%, rgba(8, 20, 16, 0.42) 55%, rgba(8, 20, 16, 0.16) 100%);
}
.hero-text { position: relative; color: var(--white); width: 100%; }
.hero-text .tag, .hero-text h1, .hero-text .hero-title, .hero-text .lede, .hero-text .hero-actions { max-width: 44rem; }
.hero-text h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.4rem); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.22;
  margin: 0 0 1rem;
  color: var(--white);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.5rem; }
.hero-slide .hero-text > * { opacity: 0; }
.hero-slide.on .hero-text > * { animation: hero-copy-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-slide.on .hero-text > *:nth-child(1) { animation-delay: 0.15s; }
.hero-slide.on .hero-text > *:nth-child(2) { animation-delay: 0.3s; }
.hero-slide.on .hero-text > *:nth-child(3) { animation-delay: 0.45s; }
.hero-slide.on .hero-text > *:nth-child(4) { animation-delay: 0.6s; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.28); }
.hero-prev { left: 1.1rem; }
.hero-next { right: 1.1rem; }
.hero-count {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.hero-count i { font-style: normal; opacity: 0.5; margin: 0 0.35rem; }
.hero-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.4rem; display: flex; gap: 0.55rem; z-index: 2; }
.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  position: relative;
  transition: width 0.25s ease, background-color 0.25s ease;
}
.hero-dot.on { width: 1.8rem; background: var(--white); }
/* 圆点触控热区扩到 44px 级（不改视觉） */
.hero-dot::after, .review-dot::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 999px;
}

/* ── 服务区：去卡片化 + 大图标 ──────────── */
.svc-grid { display: grid; gap: 2.6rem 1.2rem; }
.svc { padding: 0.25rem 0 0; }
.services .svc.card { background: transparent; border-color: transparent; box-shadow: none; }
.services .svc.card:hover { transform: none; box-shadow: none; }
.svc-ico {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1.1rem;
  background: var(--mint);
  color: var(--green);
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, color 0.25s ease;
}
.svc-ico svg { width: 2.1rem; height: 2.1rem; }
.svc:hover .svc-ico { transform: rotate(-8deg) scale(1.1); background: var(--green); color: var(--white); }
.svc h3 { font-size: 1.22rem; }
.svc p { margin: 0 0 0.9rem; color: var(--navy-2); font-size: 0.9rem; }

/* ── About：图文分栏 + 数字角标 + 三关 ──── */
.about-grid { display: grid; gap: 2.6rem; align-items: center; }
.about-img { position: relative; max-width: 26rem; }
.about-img img { width: 100%; display: block; border-radius: 1.5rem; box-shadow: var(--shadow-hero); }
.photo-banner {
  position: absolute;
  right: -0.8rem;
  bottom: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem 1.3rem;
  box-shadow: 0 16px 34px -18px rgba(15, 30, 26, 0.35);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.about-img:hover .photo-banner { transform: translateY(-4px); }
.pb-num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--green); line-height: 1.15; }
.pb-label { font-size: 0.8rem; color: var(--navy-2); }
.about-lede { color: var(--navy-2); }
.about-steps { list-style: none; margin: 1.5rem 0 1.9rem; padding: 0; display: grid; gap: 1.05rem; }
.about-steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 0.9rem; align-items: start; }
.about-steps li > span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
  font-size: 1.25rem;
  line-height: 1.5;
  border-right: 2px solid var(--mint-line);
}
.about-steps p { margin: 0; color: var(--navy-2); font-size: 0.92rem; }
.about-more { font-size: 1.08rem; }

/* ── 服务风采：深底 mosaic + 图内视差 + 放大镜 ── */
.gallery { background: var(--navy); }
.gallery h2 { color: var(--white); }
.gallery .sec-note { color: var(--on-dark-2); }
.gallery .folio-grid { border-radius: 1.25rem; overflow: hidden; }
.folio-grid { display: grid; gap: 0; }
.folio {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mint);
}
.folio-zoom { height: 100%; transition: transform 0.45s ease; }
.folio:hover .folio-zoom { transform: scale(1.07); }
.folio img { width: 100%; height: 118%; margin-top: -9%; object-fit: cover; display: block; }
.folio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 30, 26, 0.62) 0%, transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.folio:hover::after { opacity: 1; }
.folio figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 0.9rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
}
.folio:hover figcaption { opacity: 1; transform: none; }
.folio-eye {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  margin: -1.6rem 0 0 -1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  transform: scale(0) rotate(-90deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 28px -10px rgba(15, 30, 26, 0.5);
}
.folio-eye svg { width: 1.4rem; height: 1.4rem; }
.folio:hover .folio-eye { transform: scale(1) rotate(0deg); }

/* ── 服务流程（四步） ───────────────────── */
.how { background: var(--mint); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.step { padding: 1.8rem 1.6rem; position: relative; }
.step-no {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.step p { margin: 0; color: var(--navy-2); font-size: 0.92rem; }

/* ── 我们的阿姨 ─────────────────────────── */
.team-grid { display: grid; gap: 1.1rem; }
.team-card { overflow: hidden; padding: 0; }
.team-card img { width: 100%; aspect-ratio: 7 / 8; object-fit: cover; display: block; transition: transform 0.45s ease; }
.team-card:hover img { transform: scale(1.09); }
.team-body { padding: 1.1rem 1.2rem 1.3rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 0.5rem; }
.team-tags span {
  background: var(--mint);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.18rem 0.75rem;
}
.team-meta { margin: 0; color: var(--navy-2); font-size: 0.86rem; }
.team-book { display: inline-block; margin-top: 0.55rem; }

/* ── 评价：薄荷底 + 横滑轮播（coverflow） ── */
.reviews { background: var(--mint); }
.review-slider { perspective: 1100px; }
.review-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
}
.review-track::-webkit-scrollbar { display: none; }
.review {
  margin: 0;
  padding: 1.6rem 1.5rem;
  flex: 0 0 86%;
  scroll-snap-align: center;
  transform-style: preserve-3d;
  transition: transform 0.15s linear, opacity 0.15s linear;
}
.review blockquote { margin: 0.7rem 0 1rem; color: var(--navy-2); font-size: 0.94rem; }
.review figcaption { font-weight: 700; font-size: 0.9rem; }
.review-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.1rem; }
.review-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--mint-line);
  cursor: pointer;
  position: relative;
  transition: width 0.25s ease, background-color 0.25s ease;
}
.review-dot.on { width: 1.5rem; background: var(--green); }
.more-all { text-align: center; margin: 1.6rem 0 0; }

/* ── 定价：深色卡 ───────────────────────── */
.pricing { background: var(--navy); }
.pricing .sec-head h2 { color: var(--white); }
.pricing .sec-note { color: var(--on-dark-2); }
.price-grid { display: grid; gap: 1.2rem; align-items: stretch; }
.price-card { padding: 2rem 1.7rem; text-align: center; display: flex; flex-direction: column; }
.price-card .btn { margin-top: auto; }
.pricing .price-card { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.14); color: var(--white); }
.price { margin: 0.6rem 0 1.2rem; }
.price data, .price span { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--navy); line-height: 1.1; }
.pricing .price span { color: var(--white); }
.price small { color: var(--navy-2); font-size: 0.85rem; margin-left: 0.25rem; }
.pricing .price small { color: rgba(255, 255, 255, 0.68); }
.price-card ul { list-style: none; margin: 0 0 1.6rem; padding: 0; text-align: left; }
.price-card li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; color: var(--navy-2); font-size: 0.92rem; border-top: 1px dashed var(--line); }
.price-card li:first-child { border-top: 0; }
.pricing .price-card li { color: rgba(255, 255, 255, 0.82); border-top-color: rgba(255, 255, 255, 0.16); }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
}
.pricing .price-card li::before { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.featured { background: var(--green); border-color: var(--green); color: var(--white); }
.featured .price span { color: var(--white); }
.featured .price small { color: rgba(255, 255, 255, 0.75); }
.featured ul li { color: rgba(255, 255, 255, 0.88); border-top-color: rgba(255, 255, 255, 0.22); }
.featured ul li::before { background: rgba(255, 255, 255, 0.18); color: var(--white); }
.badge {
  display: inline-block;
  align-self: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.4rem;
}
.pricing .price-card .more { font-size: 1rem; justify-self: center; }

/* ── 博客贴士 ───────────────────────────── */
.blog-grid { display: grid; gap: 1.1rem; }
.blog-card { padding: 1.7rem 1.6rem; display: flex; flex-direction: column; }
.blog-ico {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-ico svg { width: 1.7rem; height: 1.7rem; }
.blog-card:hover .blog-ico { transform: rotate(-7deg) scale(1.08); background: var(--green); color: var(--white); }
.blog-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 0.6rem; }
.blog-meta span { background: var(--mint); color: var(--green-deep); border-radius: 999px; padding: 0.14rem 0.75rem; font-weight: 600; font-size: 0.76rem; }
.blog-body > p:not(.blog-meta) { margin: 0 0 1rem; color: var(--navy-2); font-size: 0.92rem; }
.blog-card .more { margin-top: auto; }

/* ── 预约（深底 + 绿面板 + 表单） ───────── */
.cta { background: var(--navy); padding-block: 4rem; }
.cta .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.25rem;
  padding: 1.8rem 1.6rem;
}
.cta .search-hint { text-align: center; margin: 0; }
.cta-phone, .cta-hours { text-align: center; margin: 0; }
.cta-copy h2 { font-size: clamp(1.4rem, 5.5vw, 2.2rem); line-height: 1.35; }
.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, #17B778 60%, #0E8A55 100%);
  border-radius: 1.6rem;
  color: var(--white);
  padding: clamp(1.9rem, 5vw, 3.2rem);
  display: grid;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 24px 48px -24px rgba(31, 164, 99, 0.55);
}
.cta-blob {
  position: absolute;
  right: -60px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.cta-copy h2 { color: var(--white); }
.cta-copy p { margin: 0.8rem 0 0; color: var(--on-dark-3); max-width: 30rem; }
.search-hint { margin: 0.6rem 0 0; color: rgba(255, 255, 255, 0.92); font-size: 0.95rem; }
.search-hint strong { color: var(--white); }
.cta-phone { margin: 1rem 0 0; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.cta-phone a { color: var(--white); text-decoration: none; }
.cta-hours { margin: 0.3rem 0 0; color: var(--on-dark-3); font-size: 0.92rem; }
.qr-cards { display: flex; gap: 1.2rem; }
.qr { margin: 0; text-align: center; }
.qr-svg { width: 110px; height: 110px; color: var(--navy); display: block; margin-inline: auto; }
.qr figcaption { font-size: 0.8rem; color: rgba(255, 255, 255, 0.9); margin-top: 0.5rem; white-space: nowrap; }
.book-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; max-width: 26rem; margin-top: 1.3rem; }
.book-form label { min-width: 0; }
.book-form label { display: flex; flex-direction: column; gap: 0.32rem; color: rgba(255, 255, 255, 0.95); font-size: 0.85rem; font-weight: 600; }
.book-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0.55rem;
  padding: 0.68rem 0.85rem;
  font: inherit;
  background: var(--white);
  color: var(--navy);
  touch-action: manipulation;
}
.book-form input:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.6); outline-offset: 1px; }
.book-form .full { grid-column: 1 / -1; }
.book-form .book-err, .book-form .book-row, .book-form .book-done { grid-column: 1 / -1; }
.book-err { margin: 0; color: #FFEFD1; font-size: 0.85rem; min-height: 1.3em; }
.book-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.book-done { margin: 0.4rem 0 0; color: var(--white); font-size: 0.92rem; }
.book-done a { color: var(--white); font-weight: 700; }

/* ── 页脚 ───────────────────────────────── */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.8); padding-top: 3.2rem; }
.footer-grid { display: grid; gap: 2.2rem; }
.footer h3 { color: var(--white); font-size: 1rem; margin: 0 0 0.8rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: var(--white); font-weight: 800; font-size: 1.15rem; margin: 0 0 0.7rem; }
.footer-desc { margin: 0; font-size: 0.9rem; max-width: 22rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.footer-col a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.4rem;
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 2rem;
  font-size: 0.8rem;
  color: var(--on-dark-2);
}
.footer-bottom p { margin: 0; }

/* ── 灯箱（JS 动态创建） ────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 16, 13, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in 0.3s ease both;
}
.lightbox img {
  max-width: min(88vw, 900px);
  max-height: 82vh;
  border-radius: 1rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  animation: lb-zoom 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.lightbox button {
  position: absolute;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ── 回到顶部 ───────────────────────────── */
.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(31, 164, 99, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--green-deep); }

/* ── 动效系统 ───────────────────────────── */
/* 滚动入场（AOS 式；仅 JS 时启用，无 JS 直接显示） */
.js [data-anim] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.js [data-anim="up"] { transform: translateY(36px); }
.js [data-anim="left"] { transform: translateX(-44px); }
.js [data-anim="right"] { transform: translateX(44px); }
.js [data-anim="zoom"] { transform: scale(0.9); }
.js [data-anim].anim-in { opacity: 1; transform: none; }

@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-zoom { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-anim] { transition: none; }
  .card, .btn, .nav-cta, .review-dot, .folio-zoom, .folio figcaption, .team-card img { transition: none; }
  .btn::before, .nav-cta::before, .btn::after, .arr, .folio-eye,
  .svc-ico, .blog-ico, .topnav a::after, .photo-banner { transition: none; }
  .card:hover, .btn:hover, .nav-cta:hover { transform: none; }
  .folio:hover .folio-eye { transform: scale(1); }
  .svc:hover .svc-ico, .blog-card:hover .blog-ico { transform: none; }
}

/* ── 响应式：≥768px 平板 ────────────────── */
@media (min-width: 768px) {
  .wrap { padding-inline: 2rem; }
  .topnav { display: flex; }
  section { padding-block: 6.5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .folio-grid { grid-template-columns: repeat(3, 1fr); column-gap: 0; }
  .gallery .folio-grid { border-radius: 1.5rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1.4fr; }
}

/* ── 响应式：≥1024px 桌面 ───────────────── */
@media (min-width: 1024px) {
  section { padding-block: 8rem; }
  .cta { padding-block: 5rem; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); column-gap: 3rem; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; }
  .about-img { max-width: none; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: scale(1.03); }
  .price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
  .cta-panel { grid-template-columns: 1.2fr auto; }
  .review-track { overflow: visible; display: grid; grid-template-columns: repeat(3, 1fr); }
  .review { flex: auto; }
  .review-dots { display: none; }
}

/* ── 响应式：<768px 手机微调 ────────────── */
@media (max-width: 767px) {
  .hero-arrow { width: 2.4rem; height: 2.4rem; font-size: 1.3rem; }
  .hero-count { right: 50%; transform: translateX(50%); bottom: 3.4rem; }
}

/* ── 预约弹窗（点「立即预约」弹出；无 JS 时退化为页底区块） ── */
.modal-mask { display: none; }
.modal-close {
  display: none;
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.3); transform: rotate(90deg); }

/* JS 环境：区块升级为全屏弹层 */
.js .cta {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow-y: auto;
  background: rgba(8, 16, 13, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.js .cta.open { display: flex; }
.js .modal-mask { display: block; position: fixed; inset: 0; }
.js .cta-modal {
  position: relative;
  width: min(100%, 64rem);
  max-height: calc(100vh - 2.4rem);
  max-height: calc(100dvh - 2.4rem);
  overflow-y: auto;
  border-radius: 1.6rem;
}
.js .modal-close { display: block; }
.js .cta.open { animation: mask-in 0.3s ease both; }
.js .cta.open .cta-modal { animation: modal-in 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
@keyframes mask-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: none; } }

/* 手机：底部抽屉式滑入 */
@media (max-width: 767px) {
  .js .cta { align-items: flex-end; padding: 0; }
  .js .cta-modal {
    width: 100%;
    max-height: calc(100dvh - 3rem);
    border-radius: 1.6rem 1.6rem 0 0;
    animation-name: sheet-in;
  }
  .js .cta.open .cta-modal { animation: sheet-in 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
}
@keyframes sheet-in { from { transform: translateY(48%); opacity: 0.4; } to { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .js .cta.open, .js .cta.open .cta-modal { animation: none; }
  .modal-close { transition: none; }
}

/* 蜜罐字段：视觉与读屏均不可达 */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 0; height: 0; opacity: 0; }

/* 导航登录入口（商家/员工，弱视觉权重） */
.nav-login { color: var(--navy-2); font-weight: 600; }
.nav-login:hover { color: var(--green-deep); }
