
:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #171717;
  --muted: #6e6a64;
  --line: rgba(23, 23, 23, .10);
  --gold: #b78a4a;
  --gold-soft: #f1dfc2;
  --dark: #171717;
  --shadow: 0 18px 50px rgba(33, 28, 21, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 245, 241, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: .16em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--dark);
  font-family: Georgia, serif;
  font-size: 21px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.nav a:hover { color: var(--text); }

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.98); }
.btn-dark {
  color: #fff;
  background: var(--dark);
  box-shadow: 0 10px 24px rgba(23, 23, 23, .18);
}
.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-gold {
  background: var(--gold-soft);
  color: #5f421d;
}

.hero {
  padding: 78px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #735024;
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  max-width: 720px;
  margin: 22px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.hero h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.stat {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  border-radius: 18px;
}
.stat strong {
  display: block;
  font-size: 19px;
}
.stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-collage {
  position: relative;
  min-height: 600px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.78);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo.one {
  inset: 0 24% 12% 0;
  transform: rotate(-2deg);
}
.hero-photo.two {
  width: 46%;
  height: 54%;
  right: 0;
  top: 8%;
  transform: rotate(3deg);
}
.hero-photo.three {
  width: 42%;
  height: 40%;
  right: 5%;
  bottom: 0;
  transform: rotate(-1deg);
}
.hero-badge {
  position: absolute;
  left: 9%;
  bottom: 6%;
  z-index: 2;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: var(--shadow);
  font-size: 12px;
  letter-spacing: .12em;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  50% { transform: translateY(-8px); }
}

.section {
  padding: 72px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section h2 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 500;
}
.section-desc {
  max-width: 470px;
  color: var(--muted);
}

.filters {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 3px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 17px;
  cursor: pointer;
}
.filter-btn.active {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.model-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eae7e1;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 28px rgba(23,23,23,.08);
  cursor: pointer;
  isolation: isolate;
}
.model-card[hidden] { display: none; }
.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.model-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.68));
  z-index: 1;
}
.model-card:hover img { transform: scale(1.045); }
.card-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 2;
  color: #fff;
}
.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.card-info strong {
  font-size: 18px;
  letter-spacing: .02em;
}
.card-tag {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-size: 11px;
}
.card-info p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: #6b481d;
  font-size: 21px;
}
.service-card h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-banner {
  margin-top: 22px;
  padding: 44px;
  border-radius: 30px;
  background: var(--dark);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.contact-banner h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}
.contact-banner p {
  margin: 0;
  color: rgba(255,255,255,.65);
}
.contact-banner .btn {
  white-space: nowrap;
  background: var(--gold-soft);
  color: #4b3418;
}

.site-footer {
  padding: 34px 0 110px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.mobile-contact {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 25;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(23,23,23,.18);
  border: 1px solid rgba(255,255,255,.7);
}
.mobile-contact button,
.mobile-contact a {
  flex: 1;
  border: 0;
  border-radius: 14px;
  padding: 12px 7px;
  text-align: center;
  text-decoration: none;
  background: #f2efe9;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
}
.mobile-contact .primary {
  background: var(--dark);
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12,12,12,.56);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .22s ease;
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal-card {
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  transform: translateY(16px) scale(.98);
  transition: transform .22s ease;
}
.modal.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}
.modal-head h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}
.modal-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.modal-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f1efeb;
  cursor: pointer;
  font-size: 21px;
}
.contact-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 12px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #f3f0ea;
  font-size: 19px;
}
.contact-meta small {
  display: block;
  color: var(--muted);
}
.contact-meta strong {
  display: block;
  word-break: break-all;
}
.copy-btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 13px;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
}
.direct-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 13px;
}
.direct-links a {
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 13px;
  background: var(--gold-soft);
  color: #5d401c;
  font-weight: 700;
}
.modal-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 100;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  box-shadow: 0 14px 38px rgba(0,0,0,.26);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: .22s ease;
  font-size: 13px;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.policy-page {
  min-height: 100vh;
  padding: 48px 0 80px;
}
.policy-card {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 60px);
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
}
.policy-card h1 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 500;
}
.policy-card h2 { margin-top: 30px; }
.policy-card p, .policy-card li { color: var(--muted); }
.back-link { color: var(--text); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-collage { min-height: 590px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 22px, 1180px); }
  .nav a:not(.header-contact) { display: none; }
  .header-contact { display: none; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(44px, 15vw, 66px); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-collage { min-height: 500px; }
  .hero-photo.one { inset: 0 18% 15% 0; }
  .hero-photo.two { width: 45%; height: 45%; }
  .hero-photo.three { width: 44%; height: 35%; }
  .hero-badge { width: 94px; height: 94px; font-size: 10px; }
  .section { padding: 56px 0; }
  .section-head { display: block; }
  .section-desc { margin-top: 12px; }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
  .model-card { border-radius: 18px; }
  .card-info { left: 12px; right: 12px; bottom: 12px; }
  .card-info strong { font-size: 15px; }
  .card-tag { font-size: 9px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-banner { padding: 30px 24px; display: block; }
  .contact-banner .btn { margin-top: 20px; width: 100%; }
  .footer-inner { display: block; }
  .footer-links { margin-top: 12px; }
  .mobile-contact { display: flex; }
  .modal-card { padding: 22px; border-radius: 23px; }
  .contact-item { grid-template-columns: 40px 1fr auto; }
  .contact-icon { width: 40px; height: 40px; }
  .copy-btn { padding: 9px 10px; font-size: 12px; }
}


.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 80;
  width: min(720px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(23,23,23,.93);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.cookie-banner a {
  color: #f1dfc2;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.cookie-btn.accept {
  background: #f1dfc2;
  color: #5a3e18;
  font-weight: 700;
}
.cookie-btn.reject {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
@media (max-width: 720px) {
  .cookie-banner {
    width: calc(100% - 20px);
    bottom: calc(max(10px, env(safe-area-inset-bottom)) + 72px);
    gap: 8px;
    padding: 9px 10px;
    border-radius: 12px;
  }
  .cookie-banner p {
    font-size: 11px;
    line-height: 1.4;
  }
  .cookie-actions { gap: 5px; }
  .cookie-btn {
    padding: 7px 10px;
    font-size: 11px;
  }
}


/* 首页固定联系方式：显示在首屏内容中，不再使用底部悬浮卡片 */
.mobile-contact {
  display: none !important;
}

.home-contact-panel {
  margin-top: 34px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(33,28,21,.08);
}

.home-contact-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
}

.home-contact-heading span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.home-contact-heading strong {
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-contact-item {
  min-width: 0;
  padding: 13px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.home-contact-item small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.home-contact-item b {
  display: block;
  min-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.home-contact-item > button,
.home-contact-actions button,
.home-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: 9px;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.home-contact-actions {
  display: flex;
  gap: 6px;
}

.home-contact-actions a {
  background: var(--gold-soft);
  color: #5d401c;
}

@media (max-width: 980px) {
  .home-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-contact-panel {
    margin-top: 24px;
    padding: 13px;
    border-radius: 18px;
  }

  .home-contact-heading {
    margin-bottom: 11px;
  }

  .home-contact-heading strong {
    font-size: 12px;
  }

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

  .home-contact-item {
    padding: 11px;
    border-radius: 14px;
  }

  .home-contact-item:last-child {
    grid-column: 1 / -1;
  }

  .home-contact-item b {
    font-size: 12px;
  }

  .cookie-banner {
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }
}


/* 联系方式放在“立即咨询”按钮下方 */
.hero .home-contact-panel {
  margin-top: 24px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(33,28,21,.07);
}

.hero .home-contact-heading {
  margin-bottom: 11px;
}

.hero .home-contact-heading span {
  font-size: 11px;
}

.hero .home-contact-heading strong {
  font-size: 12px;
}

.hero .home-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero .home-contact-item {
  padding: 10px;
  border-radius: 14px;
}

.hero .home-contact-item small {
  font-size: 10px;
}

.hero .home-contact-item b {
  min-height: 21px;
  font-size: 12px;
}

.hero .home-contact-item > button,
.hero .home-contact-actions button,
.hero .home-contact-actions a {
  min-height: 27px;
  margin-top: 7px;
  padding: 5px 9px;
  font-size: 10px;
}

.hero .home-contact-actions {
  gap: 5px;
}

@media (max-width: 1100px) {
  .hero .home-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .home-contact-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .hero .home-contact-panel {
    margin-top: 20px;
    padding: 12px;
  }

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

  .hero .home-contact-heading {
    align-items: center;
  }
}


/* 本版本：联系方式固定在左侧，三张精选图片固定在其右侧 */
.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  align-items: start;
  gap: 42px;
}

.hero-grid > div:first-child {
  min-width: 0;
}

.hero-collage {
  min-width: 0;
  min-height: 650px;
  margin-top: 0;
  align-self: start;
}

.hero .home-contact-panel {
  width: 100%;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
    gap: 28px;
  }

  .hero-collage {
    min-height: 590px;
  }
}

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

  .hero-collage {
    min-height: 520px;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .hero-collage {
    min-height: 430px;
  }
}


/* 客户好评墙 */
.review-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(241,223,194,.55), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(183,138,74,.10), transparent 32%);
}

.review-summary {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
}

.review-summary > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.review-summary strong {
  grid-row: span 2;
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
}

.review-summary .review-stars {
  color: #f4d39a;
  letter-spacing: .09em;
}

.review-summary small {
  color: rgba(255,255,255,.62);
}

.review-summary p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(33,28,21,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(33,28,21,.11);
}

.review-card-top {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 11px;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: #65461f;
  font-weight: 800;
}

.review-card-top strong,
.review-card-top small {
  display: block;
}

.review-card-top small {
  color: var(--muted);
  font-size: 11px;
}

.review-stars {
  color: #c28b37;
  letter-spacing: .04em;
  white-space: nowrap;
  font-size: 13px;
}

.review-card p {
  flex: 1;
  margin: 18px 0 16px;
  color: #4f4a43;
  font-size: 14px;
  line-height: 1.75;
}

.review-card time {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  .review-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .review-summary {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .review-summary > div {
    grid-template-columns: auto 1fr;
  }

  .review-summary strong {
    font-size: 44px;
  }

  .review-wall {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .review-card {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .review-card-top {
    grid-template-columns: 40px 1fr auto;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
  }
}


/* 本版本：联系方式卡片颜色与页面背景保持一致 */
.home-contact-panel {
  background: var(--bg) !important;
  box-shadow: none !important;
}

.home-contact-item {
  background: var(--bg) !important;
  box-shadow: none !important;
}

.hero .home-contact-panel {
  background: var(--bg) !important;
  box-shadow: none !important;
}

.hero .home-contact-item {
  background: var(--bg) !important;
  box-shadow: none !important;
}


/* 微信好评图 */
.wechat-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(241,223,194,.55));
  border: 1px solid var(--line);
}

.wechat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e7f8df;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 700;
}

.wechat-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2dbd4f;
}

.wechat-rating strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.wechat-rating span {
  display: block;
  margin-top: 4px;
  color: #c28b37;
  letter-spacing: .08em;
  font-size: 14px;
}

.wechat-rating small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.wechat-shot {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f0f0f0;
  box-shadow: 0 14px 36px rgba(33,28,21,.08);
}

.wechat-topbar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  background: #ededed;
  color: #4e4e4e;
  font-size: 12px;
}

.wechat-topbar b {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.wechat-topbar span:last-child {
  text-align: right;
}

.wechat-chat {
  padding: 14px 12px 16px;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45)),
    #f4f4f4;
}

.msg {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}

.msg.right {
  justify-content: flex-end;
}

.msg.right .bubble {
  order: 1;
  background: #95ec69;
  color: #222;
}

.msg.right .avatar {
  order: 2;
}

.avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #d8d8d8;
  color: #555;
  font-size: 14px;
  font-weight: 800;
}

.avatar.brand {
  background: #222;
  color: #fff;
}

.bubble {
  max-width: calc(100% - 48px);
  padding: 10px 12px;
  border-radius: 6px 16px 16px 16px;
  background: #fff;
  color: #333;
  font-size: 13px;
  line-height: 1.65;
  box-shadow: 0 1px 1px rgba(0,0,0,.04);
  word-break: break-word;
}

.msg.right .bubble {
  border-radius: 16px 6px 16px 16px;
}

@media (max-width: 980px) {
  .wechat-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wechat-review-head {
    display: block;
    padding: 16px;
  }

  .wechat-rating {
    margin-top: 12px;
  }

  .wechat-wall {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wechat-shot {
    border-radius: 18px;
  }

  .bubble {
    font-size: 12px;
  }
}


/* 微信好评图（图片版） */
.image-wall {
  align-items: start;
}

.image-card {
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(33, 28, 21, .12);
}

.image-card a {
  display: block;
}

.wechat-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .wechat-image {
    width: 100%;
  }
}


/* 可点击 Logo 联系入口 */
.brand-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.brand-button:hover .brand-mark {
  transform: translateY(-1px) rotate(-3deg);
  box-shadow: 0 10px 24px rgba(23, 23, 23, .2);
}

.brand-button:focus-visible {
  outline: 3px solid rgba(194, 139, 55, .32);
  outline-offset: 5px;
  border-radius: 14px;
}

.brand-mark {
  transition: transform .22s ease, box-shadow .22s ease;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .16em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
}

.copy-all-btn {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--dark);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.copy-all-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.copy-all-btn:active {
  transform: scale(.985);
}

@media (max-width: 720px) {
  .brand-copy small {
    font-size: 9px;
  }
}


/* 首页联系方式图标组，点击后打开联系框 */
.hero-contact-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-contact-icon {
  width: 68px;
  min-height: 72px;
  padding: 10px 8px 8px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 18px;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(22, 20, 17, .08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.hero-contact-icon svg {
  width: 24px;
  height: 24px;
}

.hero-contact-icon .text-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.hero-contact-icon span:last-child {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.hero-contact-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(22, 20, 17, .14);
}

.hero-contact-icon:active {
  transform: scale(.96);
}

.hero-contact-icon:focus-visible {
  outline: 3px solid rgba(194, 139, 55, .38);
  outline-offset: 4px;
}

.phone-icon {
  background: #111;
  color: #fff;
}

.wechat-icon {
  background: #e7f8df;
  color: #2f8f2f;
}

.qq-icon {
  background: #eef4ff;
  color: #2563eb;
}

.tg-icon {
  background: #eef7ff;
  color: #1693e8;
}

.wa-icon {
  background: #eaf9ee;
  color: #1f9d53;
}

.contact-item.is-highlight {
  border-color: rgba(194, 139, 55, .45);
  box-shadow: 0 0 0 3px rgba(194, 139, 55, .14);
}

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

@media (max-width: 720px) {
  .hero-contact-dock {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-contact-icon {
    width: 60px;
    min-height: 66px;
    padding: 8px 6px;
    border-radius: 16px;
  }

  .hero-contact-icon svg,
  .hero-contact-icon .text-icon {
    width: 22px;
    height: 22px;
  }

  .hero-contact-icon .text-icon {
    font-size: 16px;
  }

  .hero-contact-icon span:last-child {
    font-size: 10px;
  }
}


/* 黑色图标统一改为页面背景系配色 */
.brand-mark,
.hero-badge,
.phone-icon,
.avatar.brand {
  background: #efe8dd;
  color: #6b4a22;
  border: 1px solid #ddc9a9;
}

.brand-mark {
  box-shadow: 0 8px 20px rgba(96, 67, 32, .10);
}

.hero-badge {
  box-shadow: 0 16px 38px rgba(96, 67, 32, .12);
}

.phone-icon {
  box-shadow: 0 14px 30px rgba(96, 67, 32, .10);
}

.phone-icon:hover {
  background: #e8dccb;
  color: #5f421d;
}


/* 按钮统一改为米白浅金配色 */
.btn-dark,
.copy-btn,
.copy-all-btn {
  background: linear-gradient(135deg, #f4eadb 0%, #ead6b7 100%);
  color: #6b4a22;
  border: 1px solid #dcc4a0;
  box-shadow: 0 10px 24px rgba(183, 138, 74, .18);
}

.btn-dark:hover,
.copy-btn:hover,
.copy-all-btn:hover {
  background: linear-gradient(135deg, #f6efe4 0%, #efdcbc 100%);
  color: #5c3f1d;
  box-shadow: 0 14px 30px rgba(183, 138, 74, .22);
  opacity: 1;
}

.btn-dark:active,
.copy-btn:active,
.copy-all-btn:active {
  transform: scale(.98);
}

.header-contact {
  font-weight: 700;
}


/* 筛选按钮统一改为米白浅金配色 */
.filter-btn {
  background: #fffaf2;
  color: #7a5a2d;
  border: 1px solid #e5cfab;
  box-shadow: 0 6px 16px rgba(183, 138, 74, .08);
}

.filter-btn.active,
.filter-btn:hover {
  color: #6b4a22;
  background: linear-gradient(135deg, #f4eadb 0%, #ead6b7 100%);
  border-color: #dcc4a0;
  box-shadow: 0 10px 24px rgba(183, 138, 74, .16);
}


/* 活动需求横幅改为米白浅金配色 */
.contact-banner {
  background: linear-gradient(135deg, #f5ecdf 0%, #ead7b9 100%);
  color: #5e4322;
  border: 1px solid #dcc4a0;
  box-shadow: 0 18px 42px rgba(183, 138, 74, .14);
}

.contact-banner h3 {
  color: #5b3f1e;
}

.contact-banner p {
  color: #7a6243;
}

.contact-banner .btn {
  background: #fffaf2;
  color: #68491f;
  border: 1px solid #d8bd92;
  box-shadow: 0 10px 24px rgba(183, 138, 74, .16);
}

.contact-banner .btn:hover {
  background: #f8eddb;
  color: #5a3d1c;
  box-shadow: 0 14px 28px rgba(183, 138, 74, .22);
}
