:root {
  --bg: #f6f7f9;
  --panel: #ffffff;
  --text: #111827;
  --muted: rgba(17, 24, 39, 0.7);
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
  --brand: #0b1220;
  --accent: #c9a227;
  --accent-2: #2563eb;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--brand);
  padding: 0.9rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.brand {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 720px;
  flex-wrap: nowrap;
  list-style: none;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.language-switcher button {
  min-width: 38px;
  height: 30px;
  padding: 0 0.58rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher button.active {
  background: rgba(255, 255, 255, 0.92);
  color: #5a341b;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .nav-menu,
html[dir="rtl"] .navbar {
  direction: rtl;
}

html[dir="rtl"] .language-switcher {
  direction: ltr;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background-color: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.25rem;
  color: #ffffff;
  background: linear-gradient(rgba(11, 18, 32, 0.55), rgba(11, 18, 32, 0.78)),
    url("images/server/common_header.png");
  background-size: cover;
  background-position: center;
}

.hero.hero-small {
  min-height: 44vh;
  padding: 4rem 1.25rem;
}

.hero-content {
  width: min(980px, 100%);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0.2px;
}

.hero p {
  margin: 0;
  max-width: 56ch;
  opacity: 0.95;
  font-size: 1.1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  height: 46px;
}

.btn-primary {
  background: var(--accent);
  color: #0b1220;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11, 18, 32, 0.28);
  background: #d6b02d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.25rem 1.25rem;
}

.section.section-muted {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
}

.section-title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: 0.2px;
}

.home {
  background: linear-gradient(#0b1220, rgba(11, 18, 32, 0.92));
}

.home-overview {
  padding-top: 2.25rem;
  padding-bottom: 3.25rem;
  color: rgba(255, 255, 255, 0.92);
}

.home-overview .section-title {
  color: #ffffff;
}

.home-lead {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 72ch;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.home-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1rem;
}

.home-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.home-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
}

.home-card p {
  margin: 0.6rem 0 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
}

.home-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 800;
}

.home-link:hover {
  text-decoration: underline;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.home-panel-title {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.home-list,
.home-steps {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-list li + li,
.home-steps li + li {
  margin-top: 0.4rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.module {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.module + .module {
  border-top: 1px solid var(--border);
}

.module-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.module-price {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.06);
  color: rgba(17, 24, 39, 0.88);
  font-weight: 800;
  white-space: nowrap;
}

.module-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}

.module-desc {
  margin: 0 0 0.9rem;
  color: rgba(17, 24, 39, 0.82);
}

.module-subtitle {
  margin: 1.1rem 0 0.55rem;
  font-size: 1rem;
  color: rgba(17, 24, 39, 0.92);
}

.module-features {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(17, 24, 39, 0.72);
}

.module-features li + li {
  margin-top: 0.35rem;
}

.module-actions {
  margin-top: 1rem;
}

.module-media {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.75rem;
}

.module-video {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  background: #0b1220;
  display: block;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.1);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-name {
  color: rgba(17, 24, 39, 0.88);
}

.pricing-price {
  font-weight: 900;
  white-space: nowrap;
}

.pricing-note {
  margin: 0.85rem 0 0;
  color: rgba(17, 24, 39, 0.6);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery a {
  display: block;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.06);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.video-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.video-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.video-card-media {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  background: #0b1220;
  display: block;
}

@media (min-width: 1200px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.videos-note {
  margin: 0.9rem 0 0;
  color: rgba(17, 24, 39, 0.62);
  font-size: 0.95rem;
}

.contact {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-item i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.06);
  color: var(--brand);
}

.contact-item p {
  margin: 0;
  color: rgba(17, 24, 39, 0.86);
}

.fixed-contact-buttons {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
}

.fixed-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: all;
}

.fixed-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.28);
}

.fixed-btn-phone {
  bottom: 18px;
  left: 16px;
  background: linear-gradient(45deg, #16a34a, #22c55e);
}

.fixed-btn-whatsapp {
  bottom: 18px;
  right: 16px;
  background: linear-gradient(45deg, #25d366, #22c55e);
}

.about-hero {
  padding: 5rem 1.25rem 3.5rem;
  background: var(--brand);
  color: #ffffff;
  text-align: center;
}

.about-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-hero p {
  margin: 0 auto;
  max-width: 60ch;
  opacity: 0.9;
}

.team-detail {
  padding: 3rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-detail-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-detail-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.team-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-detail-content {
  padding: 1.1rem;
}

@media (max-width: 1000px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-layout {
    grid-template-columns: 1fr;
  }

  .module-video {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-wrap: nowrap;
  }

  .nav-menu.active {
    transform: none;
  }

  .nav-menu a {
    width: auto;
    justify-content: center;
  }

  .gallery img {
    height: 200px;
  }

  .video-card-media {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 180px;
  }
  .team-row {
    grid-template-columns: 1fr;
  }

  .module-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .module-video {
    height: 220px;
  }
}

:root {
  --bg: #f7f2ea;
  --panel: #ffffff;
  --text: #2b2119;
  --muted: rgba(43, 33, 25, 0.72);
  --border: rgba(43, 33, 25, 0.1);
  --shadow: 0 16px 34px rgba(43, 33, 25, 0.1);
  --brand: #2a1a12;
  --accent: #9a6b3d;
  --accent-2: #d8b48a;
  --radius: 18px;
}

body {
  background: var(--bg);
  color: var(--text);
}

.navbar {
  background: rgba(42, 26, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand::before {
  content: "✧";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(216, 180, 138, 0.18);
  border: 1px solid rgba(216, 180, 138, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1;
}

.brand-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(216, 180, 138, 0.18);
  border: 1px solid rgba(216, 180, 138, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1;
}

.page-home .brand::before {
  content: none;
}

.page-home {
  background: #f3eee8;
}

.page-home main {
  background: linear-gradient(rgba(250, 247, 243, 0.96), rgba(239, 231, 221, 0.96)),
    url("images/home/08_clean_bg.jpg");
  background-size: cover;
  background-position: top center;
}

.page-home .navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  padding: 1.22rem clamp(2.75rem, 4.8vw, 4.75rem);
  justify-content: flex-start;
  gap: 2.8rem;
}

.page-home .brand {
  gap: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 1.08rem;
}

.page-home .brand-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 1.95rem;
}

.page-home .nav-menu {
  margin-left: auto;
  gap: clamp(0.75rem, 1.35vw, 1.55rem);
}

.page-home .nav-menu a {
  background: transparent;
  border-radius: 0;
  height: auto;
  padding: 0.2rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.page-home .nav-menu a:hover {
  background: transparent;
  transform: none;
  text-decoration: none;
  opacity: 0.78;
}

.page-home .hamburger {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-menu {
  gap: 0.35rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-book:hover {
  transform: translateY(-1px);
  background: #b07a43;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.hero {
  background: linear-gradient(
      rgba(42, 26, 18, 0.62),
      rgba(42, 26, 18, 0.82)
    ),
    url("images/server/common_header.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(1120px, 100%);
}

.hero h1 {
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: #b07a43;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  max-width: 1200px;
}

.card {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-2px);
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  margin-bottom: 0.85rem;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(43, 33, 25, 0.16);
}

.service-card-media {
  height: 160px;
  background: #2a1a12;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1rem 1.05rem 1.05rem;
}

.service-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.service-card-desc {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(154, 107, 61, 0.95);
  font-weight: 900;
}

.service-card-link span {
  transform: translateY(-0.5px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.15rem 1.25rem;
}

.pricing-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.pricing-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(43, 33, 25, 0.14);
}

.pricing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-item-name {
  color: rgba(43, 33, 25, 0.86);
}

.pricing-item-price {
  font-weight: 950;
  color: rgba(43, 33, 25, 0.92);
  white-space: nowrap;
}

.pricing-cta {
  margin-top: 1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
}

.filter-btn {
  border: 1px solid rgba(43, 33, 25, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(43, 33, 25, 0.9);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.filter-btn.active {
  background: rgba(154, 107, 61, 0.14);
  border-color: rgba(154, 107, 61, 0.35);
}

.home-hero {
  min-height: 356px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.15rem clamp(2.75rem, 4.8vw, 4.75rem) 1.55rem;
  color: #ffffff;
  background: linear-gradient(
      90deg,
      rgba(24, 13, 7, 0.7) 0%,
      rgba(24, 13, 7, 0.28) 43%,
      rgba(24, 13, 7, 0.56) 100%
    ),
    url("images/server/common_header.png");
  background-size: cover;
  background-position: center 43%;
}

.home-hero-inner {
  width: min(1390px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.43fr);
  gap: 0.75rem;
  align-items: end;
}

.home-hero-left {
  padding-left: clamp(0.3rem, 4.8vw, 5.25rem);
  padding-bottom: 0.95rem;
  max-width: 600px;
}

.home-hero-title {
  margin: 0 0 0.45rem;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: clamp(2.55rem, 4.4vw, 3.65rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.home-hero-subtitle {
  margin: 0 0 1.45rem;
  opacity: 0.94;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
}

.home-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #d7b27d 0%, #bb8758 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(59, 33, 13, 0.18);
}

.home-hero-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ddb987 0%, #c08e60 100%);
  box-shadow: 0 12px 24px rgba(59, 33, 13, 0.28);
}

.home-hero-right {
  display: grid;
  gap: 1.45rem;
  justify-items: end;
  padding-right: clamp(0rem, 1.5vw, 1.2rem);
  padding-bottom: 0.7rem;
}

.home-hero-feature {
  width: min(260px, 100%);
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  background: transparent;
  border: none;
  padding: 0;
}

.home-hero-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.45rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.home-hero-feature-title {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
}

.home-hero-feature-desc {
  opacity: 0.9;
  font-size: 0.8rem;
  margin-top: 0.22rem;
  letter-spacing: 0.06em;
}

.home-services {
  padding: 1rem clamp(2.75rem, 4.8vw, 4.75rem) 0.85rem;
  max-width: 1390px;
  background: transparent;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.home-service-card {
  position: relative;
  background: rgba(251, 246, 240, 0.96);
  border: 1px solid rgba(104, 74, 44, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(43, 33, 25, 0.05);
  display: block;
  min-height: 248px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(43, 33, 25, 0.08);
}

.home-service-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(188, 148, 104, 0.46);
  background: transparent;
  color: #9a6b3d;
  font-size: 13px;
  margin-bottom: 0.75rem;
}

.home-service-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 250, 244, 0.94) 0%,
    rgba(255, 250, 244, 0.75) 38%,
    rgba(255, 250, 244, 0.08) 70%
  );
  pointer-events: none;
}

.home-services-grid .home-service-card:nth-child(1) .home-service-card-media img {
  object-position: center 58%;
}

.home-services-grid .home-service-card:nth-child(2) .home-service-card-media img {
  object-position: center 48%;
}

.home-services-grid .home-service-card:nth-child(3) .home-service-card-media img {
  object-position: center 52%;
}

.home-service-card-body {
  position: relative;
  z-index: 1;
  width: min(52%, 235px);
  min-height: 248px;
  padding: 1.65rem 1.7rem 1.25rem;
  display: grid;
  align-content: start;
}

.home-service-card-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(43, 33, 25, 0.94);
  font-family: "Noto Serif SC", "Songti SC", serif;
}

.home-service-card-sub {
  margin-top: 0.18rem;
  color: rgba(43, 33, 25, 0.7);
  font-weight: 500;
  font-size: 0.9rem;
}

.home-service-card-list {
  margin: 0.9rem 0 0;
  padding-left: 0.95rem;
  color: rgba(43, 33, 25, 0.72);
  display: grid;
  gap: 0.32rem;
  font-size: 0.84rem;
}

.home-service-card-list a {
  color: rgba(43, 33, 25, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-service-card-list a:hover {
  color: #9a6b3d;
  text-decoration: underline;
}

.home-service-card-btn {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  background: #4a3728;
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.74rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-service-card-btn:hover {
  background: #3d2e22;
  transform: translateY(-1px);
}

.home-why {
  padding: 0.05rem clamp(2.75rem, 4.8vw, 4.75rem) 1.15rem;
  background: transparent;
  border: none;
}

.home-why-panel {
  width: min(1390px, 100%);
  margin: 0 auto;
  background: rgba(252, 247, 242, 0.88);
  border: 1px solid rgba(104, 74, 44, 0.07);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(43, 33, 25, 0.04);
  display: grid;
  grid-template-columns: 1.5fr 0.78fr 1.1fr;
  gap: 0;
  padding: 0.75rem 0.65rem 0.55rem;
}

.home-why-panel-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.home-why-panel-icon-item {
  text-align: center;
  padding: 0.95rem 0.42rem;
  border-right: 1px solid rgba(43, 33, 25, 0.08);
}

.home-why-panel-icon-item:last-child {
  border-right: none;
}

.home-why-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(188, 148, 104, 0.42);
  color: #b88958;
  font-size: 23px;
}

.home-why-panel-title {
  margin-top: 0.58rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.home-why-panel-desc {
  margin-top: 0.12rem;
  color: rgba(43, 33, 25, 0.55);
  font-weight: 500;
  font-size: 0.73rem;
}

.home-why-panel-center {
  display: grid;
  align-content: center;
  justify-items: start;
  text-align: left;
  padding: 0.45rem 0.9rem 0.45rem 0.95rem;
}

.home-why-panel-heading {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4a3728;
}

.home-why-panel-sub {
  margin-top: 0.12rem;
  color: rgba(43, 33, 25, 0.72);
  font-weight: 500;
  font-size: 0.84rem;
  position: relative;
  padding-top: 0.5rem;
}

.home-why-panel-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(154, 107, 61, 0.65);
}

.home-why-panel-btn {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  background: #4a3728;
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.72rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-why-panel-btn:hover {
  background: #3d2e22;
  transform: translateY(-1px);
}

.home-why-panel-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.15rem 0.25rem 0.25rem 0.5rem;
}

.home-why-panel-photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center center;
  border-radius: 7px;
  border: 1px solid rgba(43, 33, 25, 0.08);
  box-shadow: 0 6px 16px rgba(43, 33, 25, 0.08);
}

.home-why-panel-photos img:nth-child(1) {
  object-position: center center;
}

.home-why-panel-photos img:nth-child(2) {
  object-position: center 58%;
}

.home-why-panel-photos img:nth-child(3) {
  object-position: right center;
}

.home-benefits {
  width: min(1390px, 100%);
  margin: 0.6rem auto 0;
  background: rgba(236, 226, 214, 0.88);
  border: 1px solid rgba(104, 74, 44, 0.06);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.home-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-right: 1px solid rgba(74, 55, 40, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.home-benefit-item:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-benefit-text {
  min-width: 0;
}

.home-benefit-item:last-child {
  border-right: none;
}

.home-benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #b88958;
  font-size: 1.3rem;
}

.home-benefit-title {
  font-weight: 700;
  color: #4a3728;
  font-size: 0.9rem;
}

.home-benefit-desc {
  color: rgba(74, 55, 40, 0.62);
  font-weight: 500;
  font-size: 0.72rem;
  margin-top: 0.15rem;
  white-space: nowrap;
}

.door-ui {
  padding: 1rem clamp(2rem, 4vw, 3.4rem) 3rem;
}

.door-ui-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 2.2rem 2.2rem 1.2rem;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 250, 244, 0.95), rgba(247, 238, 228, 0.94)),
    url("images/home/08_clean_bg.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(103, 72, 42, 0.08);
  overflow: hidden;
  position: relative;
}

.door-ui-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
}

.door-ui-copy {
  position: relative;
  z-index: 1;
}

.door-ui-title {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(2.7rem, 6vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #4e3019;
}

.door-ui-subtitle {
  margin: 0.8rem 0 1.45rem;
  color: #5b3a22;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.door-ui-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 0 0 1.4rem;
}

.door-ui-feature {
  text-align: center;
  color: #5a3922;
}

.door-ui-feature-icon,
.door-ui-card-icon,
.door-ui-bottom-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(215, 172, 109, 0.7);
  color: #cd9954;
  background: rgba(255, 251, 246, 0.82);
  box-shadow: 0 6px 18px rgba(205, 153, 84, 0.08);
  font-size: 1.55rem;
}

.door-ui-feature-title {
  margin-top: 0.65rem;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.door-ui-feature-desc {
  margin-top: 0.2rem;
  color: rgba(91, 58, 34, 0.72);
  font-size: 0.78rem;
}

.door-ui-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.door-ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 46px;
  padding: 0 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #e2b36d 0%, #c88b3e 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(188, 126, 46, 0.2);
}

.door-ui-tray {
  display: block;
  width: 190px;
  margin: -0.15rem 0 0 9rem;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(92, 63, 34, 0.08);
}

.door-ui-hero-photo {
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 16px 34px rgba(90, 62, 36, 0.12);
}

.door-ui-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.door-ui-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.15rem;
}

.door-ui-card {
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(202, 170, 130, 0.24);
  border-radius: 20px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 10px 26px rgba(103, 72, 42, 0.06);
}

.door-ui-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.door-ui-card-icon {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.door-ui-card-title {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.2rem;
  color: #5a3922;
}

.door-ui-card-sub {
  color: rgba(90, 57, 34, 0.78);
  font-size: 0.86rem;
}

.door-ui-card-image {
  margin-top: 0.8rem;
  border-radius: 8px;
  overflow: hidden;
}

.door-ui-card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.door-ui-card:nth-child(1) .door-ui-card-image img {
  object-position: center 42%;
}

.door-ui-card:nth-child(2) .door-ui-card-image img {
  object-position: center 48%;
}

.door-ui-card:nth-child(3) .door-ui-card-image img {
  object-position: center 54%;
}

.door-ui-tags {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 0.75rem;
}

.door-ui-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 1.1rem;
  color: #5a3922;
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
}

.door-ui-tags span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #d19a57;
  border-radius: 3px;
  transform: rotate(45deg);
  display: inline-block;
}

.door-ui-tags span + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background: rgba(90, 57, 34, 0.18);
}

.door-ui-bottom {
  display: grid;
  grid-template-columns: 160px 1fr 180px;
  gap: 1rem;
  align-items: end;
  margin-top: 1.25rem;
}

.door-ui-bottom-decor {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.door-ui-bottom-decor-left {
  object-position: left center;
}

.door-ui-bottom-decor-right {
  object-position: center;
}

.door-ui-bottom-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(90, 57, 34, 0.1);
  border-bottom: 1px solid rgba(90, 57, 34, 0.1);
}

.door-ui-bottom-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem;
  border-right: 1px solid rgba(90, 57, 34, 0.1);
}

.door-ui-bottom-item:last-child {
  border-right: none;
}

.door-ui-bottom-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.door-ui-bottom-title {
  color: #5a3922;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.door-ui-bottom-desc {
  margin-top: 0.18rem;
  color: rgba(90, 57, 34, 0.72);
  font-size: 0.78rem;
}

.door-ui-note {
  margin: 1rem 0 0;
  text-align: center;
  color: #5f3d24;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.home-standalone-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(246, 236, 223, 0.98));
  border: 1px solid rgba(202, 170, 130, 0.18);
  box-shadow: 0 12px 28px rgba(103, 72, 42, 0.06);
}

.home-standalone-card .section-title {
  margin-bottom: 0.75rem;
}

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

  .door-ui-cards {
    grid-template-columns: 1fr;
  }

  .door-ui-bottom {
    grid-template-columns: 1fr;
  }

  .door-ui-bottom-decor {
    max-width: 260px;
  }

  .door-ui-bottom-decor-right {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .door-ui {
    padding: 0.75rem 1rem 2rem;
  }

  .door-ui-shell {
    padding: 1.4rem 1rem 1rem;
    border-radius: 20px;
  }

  .door-ui-title {
    font-size: 2.2rem;
  }

  .door-ui-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

  .door-ui-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.6rem;
  }

  .door-ui-tray {
    width: 140px;
    margin: 0.5rem 0 0 auto;
  }

  .door-ui-hero-photo,
  .door-ui-hero-photo img {
    min-height: 260px;
  }

  .door-ui-bottom-items {
    grid-template-columns: 1fr;
  }

  .door-ui-bottom-item {
    border-right: none;
    border-bottom: 1px solid rgba(90, 57, 34, 0.1);
  }

  .door-ui-bottom-item:last-child {
    border-bottom: none;
  }

  .door-ui-tags {
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-start;
  }

  .door-ui-tags span {
    padding: 0;
  }

  .door-ui-tags span + span::after {
    display: none;
  }
}

@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-inner {
    grid-template-columns: 1fr;
  }
  .home-hero-right {
    justify-items: start;
  }
  .home-services-grid {
    grid-template-columns: 1fr;
  }
  .home-service-card {
    grid-template-columns: 1fr;
  }
  .home-why-panel {
    grid-template-columns: 1fr;
  }
  .home-why-panel-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .home-why-panel-icon-item {
    border-right: none;
    border: 1px solid rgba(43, 33, 25, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
  }
  .home-why-panel-photos {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-benefit-item {
    border-right: none;
    border-top: 1px solid rgba(43, 33, 25, 0.08);
  }
  .home-benefit-item:nth-child(-n + 2) {
    border-top: none;
  }
}

@media (max-width: 768px) {
  .nav-cta {
    width: 100%;
  }
  .nav-book {
    width: 100%;
  }
  .home-service-card {
    grid-template-columns: 1fr;
  }
  .home-service-card-media img {
    height: 220px;
  }
  .home-why-panel-photos {
    grid-template-columns: 1fr;
  }
  .home-why-panel-photos img {
    height: 170px;
  }
  .home-benefits {
    grid-template-columns: 1fr;
  }
  .home-benefit-item {
    border-top: 1px solid rgba(43, 33, 25, 0.08);
  }
  .home-benefit-item:first-child {
    border-top: none;
  }
}

.service-group {
  scroll-margin-top: 80px;
}

.service-group + .service-group {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.page-inner {
  background: #f5efe8;
}

.page-inner main {
  background:
    linear-gradient(rgba(250, 247, 243, 0.95), rgba(239, 231, 221, 0.96)),
    url("images/home/08_clean_bg.jpg");
  background-size: cover;
  background-position: top center;
}

.page-inner .navbar {
  position: sticky;
  top: 0;
  background: rgba(42, 26, 18, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(24, 13, 7, 0.18);
}

.page-inner .brand::before {
  content: none;
}

.page-inner .hero {
  min-height: 380px;
  justify-content: flex-start;
  padding: 5.3rem clamp(1.25rem, 6vw, 5rem) 4rem;
  background:
    linear-gradient(
      90deg,
      rgba(31, 17, 10, 0.78) 0%,
      rgba(31, 17, 10, 0.44) 48%,
      rgba(31, 17, 10, 0.58) 100%
    ),
    url("images/server/common_header.png");
  background-size: cover;
  background-position: center;
}

.page-inner .hero-content {
  width: min(1180px, 100%);
}

.page-inner .hero h1 {
  margin-bottom: 0.8rem;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fffaf4;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.page-inner .hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.page-inner .page-breadcrumb {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.page-inner .hero-tag {
  height: 34px;
  border-color: rgba(216, 180, 138, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
}

.service-foot .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.34), rgba(31, 17, 10, 0.58)),
    url("images/足疗/generate-226-1280x720.png");
  background-size: cover;
  background-position: center 58%;
}

.service-body .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.78), rgba(31, 17, 10, 0.35), rgba(31, 17, 10, 0.6)),
    url("images/身体按摩/generate-224-1280x720.png");
  background-size: cover;
  background-position: center 42%;
}

.service-head .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.36), rgba(31, 17, 10, 0.58)),
    url("images/头疗/背景图.png");
  background-size: cover;
  background-position: center;
}

.service-facial-care .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.28), rgba(31, 17, 10, 0.56)),
    url("images/面部护理/generate-217-1280x720.png");
  background-size: cover;
  background-position: center 44%;
}

.service-facial-massage .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.3), rgba(31, 17, 10, 0.56)),
    url("images/脸部按摩/generate-219-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-nail .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.72), rgba(31, 17, 10, 0.26), rgba(31, 17, 10, 0.52)),
    url("images/美甲/generate-222-1280x720.png");
  background-size: cover;
  background-position: center 44%;
}

.page-about .hero,
.page-contact .hero,
.page-services .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.38), rgba(31, 17, 10, 0.6)),
    url("images/关于我们/微信图片_20260617100455_26_625.png");
  background-size: cover;
  background-position: center;
}

.page-services .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.34), rgba(31, 17, 10, 0.58)),
    url("images/home/03_foot_massage.jpg");
  background-size: cover;
  background-position: center;
}

.page-contact .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.36), rgba(31, 17, 10, 0.58)),
    url("images/联系我们/微信图片_20260617101252_38_625.png");
  background-size: cover;
  background-position: center;
}

.page-inner .section {
  max-width: 1180px;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.page-inner .section-title {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  color: #3f2b1d;
}

.page-inner .module {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.page-inner .module-header {
  align-items: center;
  margin-bottom: 1.2rem;
}

.page-inner .module-price {
  height: 38px;
  background: linear-gradient(180deg, #d7b27d 0%, #bb8758 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(92, 58, 31, 0.16);
}

.page-inner .module-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.35rem;
  align-items: stretch;
}

.page-inner .module-body,
.page-inner .contact,
.page-inner .card,
.page-inner .pricing,
.page-inner .video-card {
  background: rgba(255, 251, 246, 0.92);
  border: 1px solid rgba(104, 74, 44, 0.09);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(43, 33, 25, 0.08);
}

.page-inner .module-body {
  padding: 1.55rem;
}

.page-inner .module-desc {
  color: rgba(43, 33, 25, 0.78);
  font-size: 1rem;
}

.page-inner .module-subtitle {
  color: #4a3728;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.08rem;
}

.page-inner .module-features {
  padding-left: 0;
  list-style: none;
}

.page-inner .module-features li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(43, 33, 25, 0.72);
}

.page-inner .module-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #b88958;
}

.page-inner .module-media {
  padding: 0.55rem;
  background: rgba(255, 251, 246, 0.78);
  border-radius: 8px;
  min-height: 100%;
}

.module-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  background: #fffaf4;
  border-radius: 7px;
  display: block;
}

.page-inner .btn-primary {
  background: #4a3728;
  color: #ffffff;
  border-radius: 999px;
  height: 42px;
  padding: 0 1.25rem;
  box-shadow: 0 12px 24px rgba(74, 55, 40, 0.18);
}

.page-inner .btn-primary:hover {
  background: #3d2e22;
}

.page-inner .section-muted {
  padding-top: 1.4rem;
}

.page-inner .cards {
  gap: 1rem;
}

.page-inner .card {
  padding: 1.35rem;
  color: #2b2119;
}

.page-inner .card h3 {
  color: #4a3728;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.12rem;
}

.page-inner .card p,
.page-inner .card li {
  color: rgba(43, 33, 25, 0.7);
}

.page-inner .service-grid {
  gap: 1.2rem;
}

.page-inner .service-card {
  border-radius: 8px;
  background: rgba(255, 251, 246, 0.92);
  border-color: rgba(104, 74, 44, 0.09);
  box-shadow: 0 16px 38px rgba(43, 33, 25, 0.08);
}

.page-inner .service-card-media {
  height: 220px;
}

.page-inner .service-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.page-inner .service-card-title {
  font-family: "Noto Serif SC", "Songti SC", serif;
  color: #4a3728;
  font-size: 1.22rem;
}

.page-about #intro .card:first-of-type {
  margin-bottom: 1rem;
  padding: 1.55rem;
}

.page-about .gallery {
  grid-template-columns: repeat(4, 1fr);
}

.page-about .gallery img {
  height: 180px;
  object-fit: contain;
  background: #fffaf4;
  border-radius: 8px;
}

.page-contact .contact {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.page-contact .contact-item {
  padding: 1.25rem;
  border-right: 1px solid rgba(43, 33, 25, 0.08);
  border-bottom: 1px solid rgba(43, 33, 25, 0.08);
}

.page-contact .contact-item:nth-child(2n) {
  border-right: none;
}

.page-contact .contact-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.page-contact .contact-item i,
.page-inner .contact-item i {
  background: rgba(184, 137, 88, 0.12);
  color: #9a6b3d;
}

@media (max-width: 1000px) {
  .page-inner .module-layout {
    grid-template-columns: 1fr;
  }

  .module-image {
    min-height: 320px;
  }

  .page-about .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-inner .hero {
    min-height: 420px;
    padding: 4.4rem 1.25rem 2.7rem;
  }

  .page-inner .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .page-inner .section {
    padding: 2rem 1rem;
  }

  .page-inner .module {
    margin-top: -1.4rem;
  }

  .page-contact .contact {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-item,
  .page-contact .contact-item:nth-child(2n),
  .page-contact .contact-item:nth-last-child(-n + 2) {
    border-right: none;
    border-bottom: 1px solid rgba(43, 33, 25, 0.08);
  }

  .page-contact .contact-item:last-child {
    border-bottom: none;
  }
}

/* Spa refresh overrides */
.home-hero {
  min-height: 520px;
  margin-top: 0;
  padding: 5.2rem clamp(1rem, 3vw, 3rem) 1.2rem;
  background:
    linear-gradient(90deg, rgba(36, 18, 8, 0.7) 0%, rgba(36, 18, 8, 0.32) 44%, rgba(36, 18, 8, 0.62) 100%),
    url("images/server/common_header.png");
  background-size: cover;
  background-position: center;
}

.home-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 1rem;
  align-items: center;
}

.home-hero-left {
  max-width: 720px;
  padding: 1rem 0 1rem clamp(0.4rem, 3vw, 2rem);
}

.home-hero-title {
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.home-hero-subtitle {
  font-size: 1.08rem;
}

.home-hero-right {
  gap: 1.2rem;
}

.home-hero-feature {
  width: min(300px, 100%);
}

.home-services {
  padding: 1rem clamp(1rem, 3vw, 2rem) 0.85rem;
}

.home-services-grid {
  gap: 1rem;
}

.home-service-card {
  min-height: 300px;
  border-radius: 12px;
}

.home-service-card-body {
  min-height: 300px;
  padding: 1.6rem 1.5rem 1.2rem;
}

.home-service-card-title {
  font-size: 1.5rem;
}

.home-service-card-media img {
  object-fit: cover;
}

.home-why-panel,
.home-benefits {
  border-radius: 12px;
}

.home-why-panel-photos img {
  border-radius: 10px;
}

.door-ui-shell {
  border-radius: 16px;
}

.door-ui-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.door-ui-card,
.door-ui-card-image img {
  border-radius: 12px;
}

.page-inner .hero {
  min-height: 500px;
  padding: 5rem clamp(1rem, 4vw, 3rem) 3.4rem;
  background-size: cover;
  background-position: center;
}

.page-inner .hero h1 {
  font-size: clamp(3rem, 5vw, 4.35rem);
}

.page-inner .module {
  margin-top: -2.3rem;
}

.page-inner .module-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 1.2rem;
}

.page-inner .module-body,
.page-inner .card,
.page-inner .contact,
.page-inner .pricing,
.page-inner .video-card,
.page-inner .service-card {
  border-radius: 12px;
}

.module-image {
  min-height: 420px;
  border-radius: 10px;
}

.page-about .gallery img {
  border-radius: 10px;
  object-fit: cover;
}

.page-contact .contact {
  border-radius: 12px;
}

.detail-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.detail-panel {
  background: rgba(255, 251, 246, 0.92);
  border: 1px solid rgba(104, 74, 44, 0.09);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(43, 33, 25, 0.08);
  padding: 1.35rem;
}

.detail-panel h3 {
  margin: 0 0 1rem;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  color: #4a3728;
  font-size: 1.22rem;
}

.effect-grid,
.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.effect-item,
.duration-option,
.flow-step {
  min-height: 86px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 246, 235, 0.8);
  border: 1px solid rgba(184, 137, 88, 0.14);
}

.effect-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(184, 137, 88, 0.12);
  color: #b47c3f;
  margin-bottom: 0.42rem;
}

.effect-title,
.duration-time,
.flow-title {
  color: #4a3728;
  font-weight: 800;
}

.effect-desc,
.flow-desc,
.notice-list {
  color: rgba(43, 33, 25, 0.66);
  font-size: 0.88rem;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.flow-index {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff8ef;
  border: 1px solid rgba(184, 137, 88, 0.18);
  color: #9a5a22;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.duration-option.is-selected {
  background: linear-gradient(180deg, #9b6435 0%, #693512 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(92, 58, 31, 0.16);
}

.duration-option.is-selected .duration-time,
.duration-option.is-selected .effect-desc {
  color: #ffffff;
}

.notice-list {
  margin: 0;
  padding-left: 1.1rem;
  columns: 2;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  color: #6b3f20;
  border: 1px solid rgba(107, 63, 32, 0.35);
  font-weight: 800;
  background: rgba(255, 251, 246, 0.7);
}

.service-body .hero {
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 249, 242, 0.84) 36%, rgba(255, 249, 242, 0.1) 68%),
    url("images/身体按摩/generate-224-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-body .hero h1,
.service-body .hero p,
.service-body .page-breadcrumb,
.service-body .page-breadcrumb a {
  color: #3f2514;
  text-shadow: none;
}

.service-body .hero-tag {
  color: #6f4527;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(184, 137, 88, 0.2);
}

.page-services .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.34), rgba(31, 17, 10, 0.58)),
    url("images/server/common_header.png");
  background-size: cover;
  background-position: center;
}

.page-contact .hero {
  background:
    linear-gradient(90deg, rgba(31, 17, 10, 0.76), rgba(31, 17, 10, 0.36), rgba(31, 17, 10, 0.58)),
    url("images/home/10_spa_oil.jpg");
  background-size: cover;
  background-position: center;
}

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

  .effect-grid,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .notice-list {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: 560px;
  }

  .home-hero-inner,
  .page-inner .module-layout,
  .booking-row {
    grid-template-columns: 1fr;
  }

  .home-hero-right {
    display: none;
  }

  .home-service-card-body {
    width: 62%;
  }

  .effect-grid,
  .duration-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }
}

/* Reference-style service detail pages */
.page-service-detail {
  background: #fbf7f1;
}

.page-service-detail main {
  background:
    radial-gradient(circle at 10% 100%, rgba(225, 195, 154, 0.16), transparent 34%),
    linear-gradient(180deg, #fbf7f1 0%, #fffaf4 100%);
}

.page-service-detail .navbar {
  width: min(1320px, calc(100% - 40px));
  margin: 22px auto 14px;
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.96);
  border: 1px solid rgba(127, 82, 43, 0.08);
  box-shadow: 0 12px 34px rgba(82, 50, 24, 0.08);
  position: sticky;
  top: 12px;
}

.page-service-detail .brand,
.page-service-detail .brand-icon,
.page-service-detail .nav-menu a {
  color: #673719;
}

.page-service-detail .brand-icon {
  background: rgba(196, 126, 45, 0.12);
  border-color: rgba(196, 126, 45, 0.18);
}

.page-service-detail .nav-menu {
  gap: clamp(0.65rem, 1.25vw, 1.35rem);
}

.page-service-detail .nav-menu a {
  font-weight: 800;
  border-radius: 0;
  font-size: 0.92rem;
}

.page-service-detail .nav-menu a:hover {
  color: #b66d20;
  background: transparent;
  transform: none;
}

.page-service-detail .hamburger {
  border-color: rgba(103, 55, 25, 0.16);
  background: rgba(103, 55, 25, 0.05);
}

.page-service-detail .bar {
  background: #673719;
}

.page-service-detail .hero {
  width: min(1320px, calc(100% - 40px));
  min-height: 430px;
  margin: 0 auto 24px;
  border-radius: 16px;
  justify-content: flex-start;
  padding: 3.6rem clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  box-shadow: none;
}

.page-service-detail .hero-content {
  max-width: 610px;
}

.page-service-detail .hero h1 {
  color: #3c2111;
  text-shadow: none;
  font-size: clamp(3.3rem, 6vw, 5.2rem);
  margin-bottom: 0.8rem;
}

.page-service-detail .hero p {
  color: rgba(72, 43, 24, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  max-width: 640px;
}

.page-service-detail .page-breadcrumb,
.page-service-detail .page-breadcrumb a {
  color: rgba(103, 55, 25, 0.7);
  text-shadow: none;
}

.page-service-detail .hero-tag {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(196, 126, 45, 0.18);
  color: #7a4927;
}

.service-foot .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.88) 38%, rgba(255, 250, 244, 0.12) 72%),
    url("images/足疗/generate-226-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-body .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.84) 38%, rgba(255, 250, 244, 0.08) 72%),
    url("images/身体按摩/generate-224-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-head .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.84) 40%, rgba(255, 250, 244, 0.12) 74%),
    url("images/头疗/背景图.png");
  background-size: cover;
  background-position: center;
}

.service-facial-care .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.84) 40%, rgba(255, 250, 244, 0.08) 72%),
    url("images/面部护理/generate-217-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-facial-massage .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.84) 40%, rgba(255, 250, 244, 0.08) 72%),
    url("images/脸部按摩/generate-219-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-nail .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.84) 40%, rgba(255, 250, 244, 0.08) 72%),
    url("images/美甲/generate-222-1280x720.png");
  background-size: cover;
  background-position: center;
}

.service-detail-ui {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 32px;
}

.ui-info-card,
.ui-section-panel {
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(127, 82, 43, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(82, 50, 24, 0.06);
}

.ui-info-card {
  display: grid;
  grid-template-columns: 1.12fr 1.2fr;
  gap: 0;
  align-items: center;
  padding: 1.5rem 1.75rem;
  margin-bottom: 30px;
}

.ui-info-intro {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(127, 82, 43, 0.12);
}

.ui-info-icon,
.ui-feature-icon,
.ui-process-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: #f6e9d8;
  color: #bf7629;
  font-size: 1.45rem;
}

.ui-info-title,
.ui-section-title {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  color: #3c2111;
  font-weight: 800;
}

.ui-info-title {
  font-size: 1.55rem;
}

.ui-info-text {
  margin: 0.4rem 0 0;
  color: rgba(72, 43, 24, 0.74);
}

.ui-info-benefits,
.ui-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ui-info-benefit {
  text-align: center;
  padding: 0.45rem 0.75rem;
  border-right: 1px solid rgba(127, 82, 43, 0.1);
}

.ui-info-benefit:last-child {
  border-right: 0;
}

.ui-mini-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f8ecdd;
  color: #bd762c;
  margin-bottom: 0.45rem;
}

.ui-mini-title,
.ui-feature-title,
.ui-process-title {
  font-weight: 900;
  color: #4b2b18;
}

.ui-mini-desc,
.ui-feature-desc,
.ui-process-desc,
.ui-footnote {
  color: rgba(72, 43, 24, 0.63);
  font-size: 0.9rem;
}

.ui-section {
  margin-top: 30px;
}

.ui-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 22px;
}

.ui-section-heading::before,
.ui-section-heading::after {
  content: "";
  width: min(22vw, 230px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 88, 0.28));
}

.ui-section-heading::after {
  background: linear-gradient(90deg, rgba(184, 137, 88, 0.28), transparent);
}

.ui-section-title {
  font-size: clamp(1.85rem, 3vw, 2.3rem);
}

.ui-section-panel {
  padding: 1.65rem 1.35rem;
}

.ui-feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 112px;
  padding: 1rem;
  border-right: 1px solid rgba(127, 82, 43, 0.1);
}

.ui-feature-card:last-child {
  border-right: 0;
}

.ui-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.ui-process-step {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 247, 237, 0.72);
  border: 1px solid rgba(127, 82, 43, 0.08);
}

.ui-process-number {
  position: absolute;
  top: -13px;
  left: -8px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #c37b25;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(195, 123, 37, 0.18);
}

.ui-cta-wrap {
  display: grid;
  justify-items: center;
  margin-top: 24px;
}

.ui-cta {
  min-width: min(320px, 100%);
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #9a5b22 0%, #67310f 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.12rem;
  box-shadow: 0 14px 30px rgba(103, 49, 15, 0.18);
}

.ui-footnote {
  margin: 0.7rem 0 0;
}

@media (max-width: 960px) {
  .page-service-detail .navbar,
  .page-service-detail .hero,
  .service-detail-ui {
    width: min(100% - 24px, 1320px);
  }

  .ui-info-card {
    grid-template-columns: 1fr;
  }

  .ui-info-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(127, 82, 43, 0.12);
    padding: 0 0 1.1rem;
    margin-bottom: 1rem;
  }

  .ui-info-benefits,
  .ui-feature-grid,
  .ui-process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ui-info-benefit:nth-child(2n),
  .ui-feature-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .page-service-detail .navbar {
    margin-top: 10px;
    top: 8px;
  }

  .navbar,
  .page-home .navbar,
  .page-service-detail .navbar {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.9rem;
    overflow: hidden;
  }

  .brand {
    flex: 0 0 auto;
  }

  .page-service-detail .hero {
    min-height: 430px;
    padding: 2.4rem 1.3rem;
  }

  .page-service-detail .nav-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
    top: auto;
  }

  .ui-info-benefits,
  .ui-feature-grid,
  .ui-process-row {
    grid-template-columns: 1fr;
  }

  .ui-info-benefit,
  .ui-feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(127, 82, 43, 0.1);
  }

  .ui-info-benefit:last-child,
  .ui-feature-card:last-child {
    border-bottom: 0;
  }
}

/* Unified horizontal top tabs */
.navbar,
.page-home .navbar,
.page-inner .navbar,
.page-service-detail .navbar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.8rem, 1.6vw, 1.5rem);
}

.nav-menu,
.page-home .nav-menu,
.page-inner .nav-menu,
.page-service-detail .nav-menu {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.6rem, 1vw, 1.05rem);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu a,
.page-home .nav-menu a,
.page-inner .nav-menu a,
.page-service-detail .nav-menu a {
  display: inline-flex;
  width: auto;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 0.15rem;
  border-radius: 0;
  background: transparent;
  font-size: clamp(0.82rem, 0.92vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.page-home .nav-menu a,
.page-home .brand {
  color: #ffffff;
}

.page-service-detail .nav-menu a,
.page-service-detail .brand {
  color: #673719;
}

.brand {
  flex: 0 0 auto;
}

.hamburger {
  display: none !important;
}

@media (max-width: 900px) {
  .navbar,
  .page-home .navbar,
  .page-inner .navbar,
  .page-service-detail .navbar {
    overflow: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-menu,
  .page-home .nav-menu,
  .page-inner .nav-menu,
  .page-service-detail .nav-menu {
    justify-content: flex-start;
  }
}

/* Final global nav: one consistent white horizontal tab bar */
.navbar,
.page-home .navbar,
.page-inner .navbar,
.page-service-detail .navbar {
  position: sticky;
  top: 0.75rem;
  left: auto;
  right: auto;
  z-index: 100;
  width: min(1320px, calc(100% - 24px));
  margin: 0.75rem auto;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(127, 82, 43, 0.08);
  background: rgba(255, 253, 250, 0.97);
  box-shadow: 0 12px 34px rgba(82, 50, 24, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand,
.page-home .brand,
.page-inner .brand,
.page-service-detail .brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #633419;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-icon,
.page-home .brand-icon,
.page-inner .brand-icon,
.page-service-detail .brand-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(196, 126, 45, 0.18);
  background: rgba(196, 126, 45, 0.12);
  color: #7a421f;
  font-size: 0.9rem;
}

.nav-menu,
.page-home .nav-menu,
.page-inner .nav-menu,
.page-service-detail .nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  gap: clamp(0.75rem, 1.25vw, 1.45rem);
  overflow-x: auto;
  overflow-y: hidden;
  list-style: none;
  white-space: nowrap;
  scrollbar-width: none;
}

.nav-menu a,
.page-home .nav-menu a,
.page-inner .nav-menu a,
.page-service-detail .nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: 36px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #633419;
  font-size: clamp(0.84rem, 0.92vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transform: none;
}

.nav-menu a:hover,
.page-home .nav-menu a:hover,
.page-inner .nav-menu a:hover,
.page-service-detail .nav-menu a:hover {
  color: #b66d20;
  background: transparent;
  opacity: 1;
  transform: none;
}

.hamburger {
  display: none !important;
}

@media (max-width: 900px) {
  .navbar,
  .page-home .navbar,
  .page-inner .navbar,
  .page-service-detail .navbar {
    padding: 0.78rem 0.9rem;
  }

  .nav-menu,
  .page-home .nav-menu,
  .page-inner .nav-menu,
  .page-service-detail .nav-menu {
    justify-content: flex-start;
  }
}

/* Global nav follows the reference: dark image-overlay tabs, all horizontal */
.navbar,
.page-home .navbar,
.page-inner .navbar,
.page-service-detail .navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  margin: 0;
  padding: 1.1rem clamp(1.25rem, 4.2vw, 4.5rem);
  border: 0;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(39, 18, 8, 0.78),
    rgba(39, 18, 8, 0.48) 55%,
    rgba(39, 18, 8, 0.32)
  );
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.brand,
.page-home .brand,
.page-inner .brand,
.page-service-detail .brand {
  gap: 0.72rem;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-icon,
.page-home .brand-icon,
.page-inner .brand-icon,
.page-service-detail .brand-icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
}

.nav-menu,
.page-home .nav-menu,
.page-inner .nav-menu,
.page-service-detail .nav-menu {
  justify-content: flex-end;
  gap: clamp(0.72rem, 1.55vw, 1.85rem);
}

.nav-menu a,
.page-home .nav-menu a,
.page-inner .nav-menu a,
.page-service-detail .nav-menu a {
  height: 34px;
  padding: 0;
  color: #ffffff;
  font-size: clamp(0.78rem, 0.92vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.nav-menu a:hover,
.page-home .nav-menu a:hover,
.page-inner .nav-menu a:hover,
.page-service-detail .nav-menu a:hover {
  color: #f1c992;
  background: transparent;
  opacity: 1;
  transform: none;
}

.page-home .home-hero {
  margin-top: 0;
  padding-top: 6.6rem;
}

.hero.hero-small {
  padding-top: 6.9rem;
}

.page-inner .hero {
  margin-top: 0;
  padding-top: 6.9rem;
}

.page-service-detail .hero {
  margin-top: 0;
  padding-top: 6.9rem;
}

@media (max-width: 900px) {
  .navbar,
  .page-home .navbar,
  .page-inner .navbar,
  .page-service-detail .navbar {
    padding: 0.9rem 1rem;
  }

  .nav-menu,
  .page-home .nav-menu,
  .page-inner .nav-menu,
  .page-service-detail .nav-menu {
    justify-content: flex-start;
    gap: 1rem;
  }
}

/* Homepage reference composition */
.page-home {
  background: #f6f0e9;
}

.page-home main {
  background: linear-gradient(180deg, #fffaf4 0%, #f4ece2 100%);
}

.page-home .home-hero {
  min-height: 370px;
  padding: 5.55rem clamp(1.35rem, 4.2vw, 3.8rem) 1.55rem;
  background:
    linear-gradient(90deg, rgba(38, 17, 6, 0.78) 0%, rgba(38, 17, 6, 0.22) 48%, rgba(38, 17, 6, 0.66) 100%),
    url("images/home/02_body_massage.jpg");
  background-size: cover;
  background-position: center 43%;
}

.page-home .home-hero-inner {
  width: min(1360px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.28fr);
  align-items: center;
}

.page-home .home-hero-left {
  max-width: 680px;
  padding: 1.35rem 0 0;
}

.page-home .home-hero-title {
  margin-bottom: 0.65rem;
  font-size: clamp(2.75rem, 4.85vw, 4.65rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.page-home .home-hero-subtitle {
  margin-bottom: 1.55rem;
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.page-home .home-hero-cta {
  height: 40px;
  padding: 0 2.2rem;
  background: linear-gradient(180deg, #e5bc83 0%, #c99762 100%);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(55, 27, 10, 0.24);
}

.page-home .home-hero-right {
  gap: 1.65rem;
  padding-bottom: 0;
}

.page-home .home-hero-feature {
  gap: 1.05rem;
}

.page-home .home-hero-icon {
  width: 36px;
  height: 36px;
  font-size: 1.75rem;
}

.page-home .home-hero-feature-title {
  font-size: 1.22rem;
  font-weight: 900;
}

.page-home .home-hero-feature-desc {
  font-size: 0.86rem;
  font-weight: 800;
}

.page-home .home-services {
  width: min(1360px, calc(100% - 44px));
  max-width: none;
  margin: 0 auto;
  padding: 1.35rem 0 1.35rem;
}

.page-home .home-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.page-home .home-service-card {
  min-height: 232px;
  border-radius: 5px;
  border-color: rgba(190, 132, 67, 0.24);
  background: #fffaf5;
  box-shadow: 0 12px 26px rgba(62, 40, 23, 0.07);
}

.page-home .home-service-card:nth-child(3) {
  border-color: rgba(190, 132, 67, 0.68);
}

.page-home .home-service-card-body {
  min-height: 232px;
  width: min(64%, 258px);
  padding: 1.2rem 1.35rem 0.95rem;
}

.page-home .home-service-card::after {
  background: linear-gradient(
    90deg,
    rgba(255, 251, 246, 0.98) 0%,
    rgba(255, 251, 246, 0.78) 36%,
    rgba(255, 251, 246, 0.12) 72%
  );
}

.page-home .home-service-card-icon {
  width: 36px;
  height: 36px;
  color: #b9854d;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.page-home .home-service-card-title {
  font-size: clamp(1.42rem, 1.85vw, 1.78rem);
  line-height: 1.1;
}

.page-home .home-service-card-sub {
  margin-top: 0.32rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(48, 35, 25, 0.7);
}

.page-home .home-service-card-list {
  margin-top: 0.72rem;
  gap: 0.2rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.page-home .home-service-card-btn,
.page-home .home-why-panel-btn {
  height: 30px;
  padding: 0 1.05rem;
  background: #4a3324;
  font-size: 0.82rem;
  font-weight: 900;
}

.page-home .home-why {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 1.7rem;
}

.page-home .home-why-panel {
  width: 100%;
  grid-template-columns: 1.45fr 0.72fr 1.02fr;
  padding: 1.05rem 0.95rem;
  border-radius: 7px;
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 16px 34px rgba(62, 40, 23, 0.08);
}

.page-home .home-why-panel-icon {
  width: 54px;
  height: 54px;
}

.page-home .home-why-panel-title {
  font-size: 1rem;
  font-weight: 900;
}

.page-home .home-why-panel-desc {
  font-size: 0.78rem;
  font-weight: 700;
}

.page-home .home-why-panel-heading {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.page-home .home-why-panel-sub {
  font-size: 1rem;
}

.page-home .home-why-panel-photos img {
  height: 150px;
  border-radius: 4px;
}

.page-home .home-benefits {
  display: none;
}

@media (max-width: 980px) {
  .page-home .home-hero-inner,
  .page-home .home-services-grid,
  .page-home .home-why-panel {
    grid-template-columns: 1fr;
  }

  .page-home .home-hero-right {
    justify-items: start;
  }

  .page-home .home-why-panel-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .page-home .home-hero {
    min-height: 620px;
  }

  .page-home .home-service-card-body {
    width: min(68%, 260px);
  }

  .page-home .home-why-panel-icons,
  .page-home .home-why-panel-photos {
    grid-template-columns: 1fr;
  }
}

/* Home SPA page follows the provided UI composition */
.page-home-spa main {
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(245, 235, 222, 0.96)),
    url("images/home/08_clean_bg.jpg");
  background-size: cover;
  background-position: center;
}

.page-home-spa .door-ui {
  padding: 0;
}

.page-home-spa .door-ui-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 5.4rem clamp(1.4rem, 4vw, 4rem) 1.25rem;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.95) 0%, rgba(255, 250, 244, 0.65) 36%, rgba(255, 250, 244, 0.08) 70%),
    url("images/上门服务/generate-221-1280x720.png");
  background-size: cover;
  background-position: center top;
  box-shadow: none;
}

.page-home-spa .door-ui-hero {
  width: min(1340px, 100%);
  min-height: 315px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.page-home-spa .door-ui-copy {
  width: min(760px, 100%);
}

.page-home-spa .door-ui-title {
  font-size: clamp(4rem, 7.2vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  color: #3f2717;
  white-space: nowrap;
}

.page-home-spa .door-ui-subtitle {
  margin: 1rem 0 1.45rem;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: #4a2f1c;
  font-weight: 900;
}

.page-home-spa .door-ui-features {
  width: min(560px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1.35rem;
}

.page-home-spa .door-ui-feature {
  padding: 0 0.55rem;
  border-right: 1px solid rgba(198, 139, 73, 0.25);
}

.page-home-spa .door-ui-feature:last-child {
  border-right: 0;
}

.page-home-spa .door-ui-feature-icon,
.page-home-spa .door-ui-card-icon,
.page-home-spa .door-ui-bottom-icon {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(210, 151, 82, 0.68);
  background: rgba(255, 251, 246, 0.62);
  color: #cd9147;
}

.page-home-spa .door-ui-feature-icon svg,
.page-home-spa .door-ui-card-icon svg,
.page-home-spa .door-ui-bottom-icon svg {
  width: 62%;
  height: 62%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home-spa .door-ui-card-icon svg {
  width: 58%;
  height: 58%;
}

.page-home-spa .door-ui-feature-title {
  margin-top: 0.55rem;
  font-size: 1.1rem;
  color: #412919;
  font-weight: 900;
}

.page-home-spa .door-ui-feature-desc {
  font-size: 0.78rem;
  color: rgba(65, 41, 25, 0.82);
  font-weight: 800;
}

.page-home-spa .door-ui-btn {
  min-width: 192px;
  height: 48px;
  background: linear-gradient(180deg, #e9b86d 0%, #d19043 100%);
  font-size: 1.22rem;
  box-shadow: 0 16px 30px rgba(176, 111, 44, 0.23);
}

.page-home-spa .door-ui-tray {
  position: absolute;
  left: clamp(150px, 18vw, 250px);
  bottom: -6px;
  width: 190px;
  height: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-home-spa .door-ui-cards {
  width: min(1340px, 100%);
  margin: 0.75rem auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.page-home-spa .door-ui-card {
  border-radius: 14px;
  padding: 0.9rem 1.05rem 0.78rem;
  background: rgba(255, 252, 247, 0.94);
  border-color: rgba(205, 156, 93, 0.18);
  box-shadow: 0 12px 30px rgba(88, 58, 32, 0.12);
}

.page-home-spa .door-ui-card-head {
  gap: 0.85rem;
  min-height: 48px;
  align-items: center;
}

.page-home-spa .door-ui-card-icon {
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}

.page-home-spa .door-ui-card-title {
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  color: #422817;
}

.page-home-spa .door-ui-card-sub {
  font-size: 0.96rem;
  color: rgba(66, 40, 23, 0.82);
}

.page-home-spa .door-ui-card-image {
  margin-top: 0.85rem;
  border-radius: 0;
}

.page-home-spa .door-ui-card-image img {
  height: 124px;
}

.page-home-spa .door-ui-tags {
  margin-top: 0.72rem;
  justify-content: space-around;
}

.page-home-spa .door-ui-tags span {
  min-width: 126px;
  min-height: 30px;
  padding: 0 0.8rem;
  border-radius: 8px;
  background: rgba(244, 232, 218, 0.78);
  color: #4b2e1a;
  font-size: 1rem;
  font-weight: 900;
}

.page-home-spa .door-ui-tags span + span::after {
  left: -0.75rem;
}

.page-home-spa .door-ui-bottom {
  width: min(1340px, 100%);
  margin: 0.9rem auto 0;
  grid-template-columns: 160px 1fr 170px;
}

.page-home-spa .door-ui-bottom-decor {
  height: 96px;
  object-fit: contain;
  border-radius: 0;
}

.page-home-spa .door-ui-bottom-items {
  border: 0;
  align-self: center;
}

.page-home-spa .door-ui-bottom-item {
  justify-content: center;
  padding: 0.9rem 1rem;
  border-right-color: rgba(198, 139, 73, 0.25);
}

.page-home-spa .door-ui-bottom-title {
  font-size: 1.24rem;
  color: #422817;
}

.page-home-spa .door-ui-bottom-desc {
  font-size: 0.86rem;
  color: rgba(66, 40, 23, 0.75);
}

.page-home-spa .door-ui-note {
  margin-top: 0.7rem;
  color: #4b2e1a;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .page-home-spa .door-ui-shell {
    padding-top: 6.8rem;
  }

  .page-home-spa .door-ui-features,
  .page-home-spa .door-ui-cards,
  .page-home-spa .door-ui-bottom,
  .page-home-spa .door-ui-bottom-items {
    grid-template-columns: 1fr;
  }

  .page-home-spa .door-ui-feature,
  .page-home-spa .door-ui-bottom-item {
    border-right: 0;
  }
}

/* Head therapy page follows the provided UI composition */
.service-head main {
  background: linear-gradient(180deg, #fffaf5 0%, #f3e8dc 100%);
}

.service-head .head-ui {
  min-height: 100vh;
  background: #f6eee5;
}

.service-head .head-ui-hero {
  min-height: 370px;
  padding: 5.85rem clamp(1.35rem, 5vw, 4.5rem) 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(22, 9, 2, 0.86) 0%, rgba(22, 9, 2, 0.48) 38%, rgba(22, 9, 2, 0.12) 68%, rgba(22, 9, 2, 0.62) 100%),
    url("images/头疗/背景图.png");
  background-size: cover;
  background-position: center top;
}

.service-head .head-ui-copy {
  max-width: 620px;
}

.service-head .head-ui-copy h1 {
  margin: 0 0 0.7rem;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(3.65rem, 7.2vw, 6.2rem);
  line-height: 1;
  font-weight: 900;
  color: #fffaf3;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.service-head .head-ui-copy h2 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.35;
  color: #fff9f0;
}

.service-head .head-ui-copy p {
  width: min(470px, 100%);
  margin: 1rem 0 1.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 250, 244, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-head .head-ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 132px;
  padding: 0 1.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e5b667 0%, #c8893d 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.service-head .head-ui-benefits {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
  background: linear-gradient(90deg, transparent, rgba(141, 82, 34, 0.34));
}

.service-head .head-ui-benefit {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.service-head .head-ui-benefit-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(230, 183, 112, 0.42);
}

.service-head .head-ui-benefit-icon img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.service-head .head-ui-benefit-title {
  color: #fff7ef;
  font-size: 1.05rem;
  font-weight: 900;
}

.service-head .head-ui-benefit-desc {
  margin-top: 0.12rem;
  color: rgba(255, 245, 235, 0.88);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 700;
}

.service-head .head-ui-cards {
  width: min(1360px, calc(100% - 44px));
  margin: 1.25rem auto 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-head .head-ui-card {
  position: relative;
  min-height: 208px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(132, 85, 45, 0.1);
  background: #fffaf4;
  box-shadow: 0 12px 26px rgba(57, 35, 18, 0.12);
}

.service-head .head-ui-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 249, 242, 0.98) 0%, rgba(255, 249, 242, 0.76) 39%, rgba(255, 249, 242, 0.1) 72%);
}

.service-head .head-ui-card-copy {
  position: relative;
  z-index: 1;
  width: min(54%, 245px);
  min-height: 208px;
  padding: 1.25rem 1.35rem 1rem;
  display: grid;
  align-content: start;
}

.service-head .head-ui-card h3 {
  margin: 0;
  color: #4a2d19;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.58rem);
  line-height: 1.18;
}

.service-head .head-ui-card p {
  margin: 0.45rem 0 0.85rem;
  color: rgba(74, 45, 25, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-head .head-ui-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
  list-style: none;
  color: #5c3921;
  font-size: 0.88rem;
  font-weight: 800;
}

.service-head .head-ui-card li::before {
  content: "✓";
  margin-right: 0.42rem;
  color: #8a4f19;
  font-weight: 900;
}

.service-head .head-ui-card a {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #7b3d12;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-head .head-ui-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-head .head-ui-why {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto 1.8rem;
  padding: 0.95rem 1.15rem;
  display: grid;
  grid-template-columns: 1.45fr 0.66fr 0.82fr;
  gap: 1rem;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 251, 246, 0.96);
  box-shadow: 0 12px 30px rgba(57, 35, 18, 0.1);
}

.service-head .head-ui-why-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-head .head-ui-why-item {
  min-height: 104px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(74, 45, 25, 0.12);
}

.service-head .head-ui-why-item:last-child {
  border-right: 0;
}

.service-head .head-ui-why-item span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(199, 143, 75, 0.64);
  background: radial-gradient(circle, rgba(255, 251, 246, 0.88), rgba(255, 245, 232, 0.42));
  color: #b9823d;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.32);
}

.service-head .head-ui-why-item svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-head .head-ui-why-item strong {
  margin-top: 0.55rem;
  color: #4a2d19;
  font-size: 0.98rem;
}

.service-head .head-ui-why-item em {
  margin-top: 0.16rem;
  color: rgba(74, 45, 25, 0.62);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 700;
}

.service-head .head-ui-why-copy h2 {
  margin: 0;
  color: #4a2d19;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.55rem;
}

.service-head .head-ui-why-copy p {
  margin: 0.4rem 0 0.8rem;
  color: rgba(74, 45, 25, 0.68);
  font-weight: 700;
}

.service-head .head-ui-why-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #7b3d12;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-head .head-ui-why-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-head .head-ui-why-photos img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .service-head .head-ui-hero,
  .service-head .head-ui-cards,
  .service-head .head-ui-why {
    grid-template-columns: 1fr;
  }

  .service-head .head-ui-benefits {
    background: rgba(70, 38, 18, 0.24);
    padding: 1rem;
  }

  .service-head .head-ui-why-icons,
  .service-head .head-ui-why-photos {
    grid-template-columns: 1fr 1fr;
  }
}

/* Facial care page follows the provided bright UI composition */
.service-facial-care main {
  background:
    radial-gradient(circle at 4% 94%, rgba(226, 177, 105, 0.1), transparent 18%),
    radial-gradient(circle at 96% 94%, rgba(226, 177, 105, 0.1), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.service-facial-care .facial-ui {
  min-height: 100vh;
  padding: 6.05rem clamp(1.15rem, 3vw, 2.65rem) 1.35rem;
  color: #4a2f1c;
}

.service-facial-care .facial-ui-hero {
  width: min(1364px, 100%);
  min-height: 350px;
  margin: 0 auto 1.45rem;
  display: flex;
  align-items: center;
  border-radius: 19px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.86) 35%, rgba(255, 250, 244, 0.12) 69%),
    url("images/面部护理/generate-223-1280x720.png");
  background-size: cover;
  background-position: center 42%;
  box-shadow: 0 16px 38px rgba(94, 56, 24, 0.07);
}

.service-facial-care .facial-ui-copy {
  width: min(570px, 100%);
  padding: clamp(1.7rem, 3.9vw, 3.45rem);
}

.service-facial-care .facial-ui-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #9b5d16;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(94, 56, 24, 0.05);
}

.service-facial-care .facial-ui-kicker svg {
  width: 19px;
  height: 19px;
  fill: #c98622;
  stroke: #c98622;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-facial-care .facial-ui-copy h1 {
  margin: 1.15rem 0 0.5rem;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(3.75rem, 6vw, 5.55rem);
  line-height: 1;
  color: #3c2414;
  font-weight: 900;
}

.service-facial-care .facial-ui-copy h2 {
  margin: 0;
  color: #b8741d;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.25;
}

.service-facial-care .facial-ui-copy p {
  width: min(520px, 100%);
  margin: 1.15rem 0 0;
  padding-top: 0.95rem;
  border-top: 2px solid rgba(190, 119, 35, 0.3);
  color: rgba(62, 43, 31, 0.72);
  font-size: 1.04rem;
  line-height: 1.82;
  font-weight: 700;
}

.service-facial-care .facial-ui-section {
  width: min(1364px, 100%);
  margin: 0 auto;
}

.service-facial-care .facial-ui-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 0.7rem auto 1.02rem;
  width: min(745px, 100%);
}

.service-facial-care .facial-ui-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 137, 74, 0.28), transparent);
}

.service-facial-care .facial-ui-heading h2 {
  margin: 0;
  color: #3c2414;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.7rem, 2.55vw, 2.18rem);
  font-weight: 900;
}

.service-facial-care .facial-ui-effects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.7vw, 2.35rem);
  margin-bottom: 1.7rem;
}

.service-facial-care .facial-ui-effect {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(196, 139, 76, 0.08);
  box-shadow: 0 13px 30px rgba(92, 58, 31, 0.075);
}

.service-facial-care .facial-ui-effect span,
.service-facial-care .facial-ui-step span {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7ead9;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.34);
}

.service-facial-care .facial-ui-effect img,
.service-facial-care .facial-ui-step img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-facial-care .facial-ui-effect h3,
.service-facial-care .facial-ui-step h3 {
  margin: 0 0 0.22rem;
  color: #4a2f1c;
  font-size: 1.12rem;
  font-weight: 900;
}

.service-facial-care .facial-ui-effect p,
.service-facial-care .facial-ui-step p {
  margin: 0;
  color: rgba(74, 47, 28, 0.68);
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-facial-care .facial-ui-flow-section {
  text-align: center;
}

.service-facial-care .facial-ui-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.15rem, 4.5vw, 5.45rem);
  align-items: center;
  margin: 1.25rem 0 1rem;
}

.service-facial-care .facial-ui-step {
  min-height: 106px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(191, 127, 52, 0.08);
  box-shadow: 0 10px 25px rgba(92, 58, 31, 0.045);
}

.service-facial-care .facial-ui-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: calc(clamp(1.15rem, 4.5vw, 5.45rem) / -2 - 12px);
  top: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(249, 236, 220, 0.95);
  color: #c98622;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.service-facial-care .facial-ui-step b {
  position: absolute;
  top: -10px;
  left: 8px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c37b15;
  color: #ffffff;
  font-size: 0.9rem;
}

.service-facial-care .facial-ui-btn {
  margin: 0.05rem auto 0;
  min-width: 264px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #b87317 0%, #8d4b10 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(137, 78, 22, 0.18);
}

.service-facial-care .facial-ui-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-facial-care .facial-ui-note {
  margin: 0.55rem 0 0;
  color: rgba(74, 47, 28, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .service-facial-care .facial-ui {
    padding-top: 6.75rem;
  }

  .service-facial-care .facial-ui-hero {
    min-height: 315px;
  }

  .service-facial-care .facial-ui-effects,
  .service-facial-care .facial-ui-flow {
    grid-template-columns: 1fr 1fr;
  }

  .service-facial-care .facial-ui-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .service-facial-care .facial-ui {
    padding: 6.6rem 1rem 1.3rem;
  }

  .service-facial-care .facial-ui-hero {
    min-height: 430px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.84) 44%, rgba(255, 250, 244, 0.12) 100%),
      url("images/面部护理/generate-223-1280x720.png");
    background-size: cover;
    background-position: 63% center;
  }

  .service-facial-care .facial-ui-copy h1 {
    font-size: 3.4rem;
  }

  .service-facial-care .facial-ui-heading {
    gap: 0.6rem;
  }

  .service-facial-care .facial-ui-effects,
  .service-facial-care .facial-ui-flow {
    grid-template-columns: 1fr;
  }

  .service-facial-care .facial-ui-effect,
  .service-facial-care .facial-ui-step {
    justify-content: flex-start;
  }
}

/* Facial massage page follows the provided service UI composition */
.service-facial-massage main {
  background:
    radial-gradient(circle at 4% 96%, rgba(226, 177, 105, 0.1), transparent 18%),
    radial-gradient(circle at 96% 96%, rgba(226, 177, 105, 0.1), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.service-facial-massage .face-ui {
  min-height: 100vh;
  padding: 6.05rem clamp(1.15rem, 3vw, 2.65rem) 1.35rem;
  color: #4a2f1c;
}

.service-facial-massage .face-ui-hero,
.service-facial-massage .face-ui-info,
.service-facial-massage .face-ui-flow-section {
  width: min(1364px, 100%);
  margin-inline: auto;
}

.service-facial-massage .face-ui-hero {
  min-height: 360px;
  margin-bottom: 2.15rem;
  display: flex;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.86) 39%, rgba(255, 250, 244, 0.08) 72%),
    url("images/脸部按摩/generate-219-1280x720.png");
  background-size: cover;
  background-position: center 43%;
  box-shadow: 0 15px 36px rgba(92, 58, 31, 0.06);
}

.service-facial-massage .face-ui-copy {
  width: min(610px, 100%);
  padding: clamp(1.6rem, 4vw, 3.7rem);
}

.service-facial-massage .face-ui-breadcrumb {
  margin-bottom: 1.25rem;
  color: rgba(74, 47, 28, 0.58);
  font-size: 0.95rem;
  font-weight: 800;
}

.service-facial-massage .face-ui-breadcrumb span {
  margin: 0 0.42rem;
  color: rgba(184, 116, 29, 0.65);
}

.service-facial-massage .face-ui-copy h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(3.7rem, 6vw, 5.4rem);
  line-height: 1;
  color: #2f1c10;
  font-weight: 900;
}

.service-facial-massage .face-ui-line,
.service-facial-massage .face-ui-info h2::after,
.service-facial-massage .face-ui-flow-section h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: 1.3rem 0 1.2rem;
  border-radius: 999px;
  background: #c88630;
}

.service-facial-massage .face-ui-copy h2 {
  margin: 0 0 2.05rem;
  color: rgba(74, 47, 28, 0.82);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.45;
  font-weight: 700;
}

.service-facial-massage .face-ui-points {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-facial-massage .face-ui-point {
  min-height: 86px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(197, 137, 74, 0.22);
}

.service-facial-massage .face-ui-point:last-child {
  border-right: 0;
}

.service-facial-massage .face-ui-point span,
.service-facial-massage .face-ui-step span,
.service-facial-massage .face-ui-round {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8ead8;
  color: #b97828;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.32);
}

.service-facial-massage .face-ui-point img,
.service-facial-massage .face-ui-step img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-facial-massage .face-ui-point strong {
  margin-top: 0.62rem;
  color: #6a4228;
  font-size: 1rem;
  font-weight: 900;
}

.service-facial-massage .face-ui-info {
  min-height: 156px;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(196, 139, 76, 0.08);
  box-shadow: 0 14px 34px rgba(92, 58, 31, 0.06);
}

.service-facial-massage .face-ui-intro,
.service-facial-massage .face-ui-effects {
  min-height: 104px;
  padding: 1rem clamp(1.35rem, 3.6vw, 3rem);
}

.service-facial-massage .face-ui-intro {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  border-right: 1px solid rgba(116, 73, 40, 0.12);
}

.service-facial-massage .face-ui-round {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  font-size: 1.75rem;
}

.service-facial-massage .face-ui-info h2,
.service-facial-massage .face-ui-flow-section h2 {
  margin: 0;
  color: #2f1c10;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
}

.service-facial-massage .face-ui-info h2::after,
.service-facial-massage .face-ui-flow-section h2::after {
  width: 32px;
  height: 3px;
  margin: 0.62rem 0 0.72rem;
}

.service-facial-massage .face-ui-info p {
  margin: 0;
  color: rgba(74, 47, 28, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
}

.service-facial-massage .face-ui-effect-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.service-facial-massage .face-ui-effect-list span,
.service-facial-massage .face-ui-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(74, 47, 28, 0.72);
  font-weight: 900;
  white-space: nowrap;
}

.service-facial-massage .face-ui-effect-list i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eab46a;
  color: #ffffff;
  font-size: 0.72rem;
}

.service-facial-massage .face-ui-flow-section {
  min-height: 305px;
  padding: 1.45rem clamp(1.25rem, 3vw, 2.65rem) 1.6rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(196, 139, 76, 0.08);
  box-shadow: 0 14px 34px rgba(92, 58, 31, 0.055);
}

.service-facial-massage .face-ui-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.15rem, 4.2vw, 5rem);
  margin: 1.15rem 0 1.35rem;
}

.service-facial-massage .face-ui-step {
  min-height: 106px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(191, 127, 52, 0.07);
  box-shadow: 0 10px 24px rgba(92, 58, 31, 0.045);
}

.service-facial-massage .face-ui-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: calc(clamp(1.15rem, 4.2vw, 5rem) / -2 - 12px);
  top: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: rgba(175, 116, 58, 0.58);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.service-facial-massage .face-ui-step b {
  position: absolute;
  top: -10px;
  left: 8px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4e4cf;
  color: #8e4b11;
  font-weight: 900;
}

.service-facial-massage .face-ui-step span {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
}

.service-facial-massage .face-ui-step h3 {
  margin: 0 0 0.25rem;
  color: #2f1c10;
  font-size: 1.08rem;
  font-weight: 900;
}

.service-facial-massage .face-ui-step p {
  margin: 0;
  color: rgba(74, 47, 28, 0.68);
  font-size: 0.88rem;
  line-height: 1.48;
  font-weight: 700;
}

.service-facial-massage .face-ui-btn {
  width: min(360px, 100%);
  height: 52px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #a85f16 0%, #7d3207 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 900;
  box-shadow: 0 15px 28px rgba(125, 50, 7, 0.16);
}

.service-facial-massage .face-ui-note {
  justify-content: center;
  margin: 0.8rem 0 0;
  color: rgba(74, 47, 28, 0.6);
  font-size: 0.9rem;
}

.service-facial-massage .face-ui-note i {
  color: #d59a54;
}

@media (max-width: 980px) {
  .service-facial-massage .face-ui {
    padding-top: 6.75rem;
  }

  .service-facial-massage .face-ui-info {
    grid-template-columns: 1fr;
  }

  .service-facial-massage .face-ui-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(116, 73, 40, 0.12);
  }

  .service-facial-massage .face-ui-effect-list,
  .service-facial-massage .face-ui-flow {
    grid-template-columns: 1fr 1fr;
  }

  .service-facial-massage .face-ui-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .service-facial-massage .face-ui {
    padding: 6.6rem 1rem 1.3rem;
  }

  .service-facial-massage .face-ui-hero {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.99) 0%, rgba(255, 250, 244, 0.88) 49%, rgba(255, 250, 244, 0.12) 100%),
      url("images/脸部按摩/generate-219-1280x720.png");
    background-size: cover;
    background-position: 64% center;
  }

  .service-facial-massage .face-ui-copy h1 {
    font-size: 3.35rem;
  }

  .service-facial-massage .face-ui-points,
  .service-facial-massage .face-ui-effect-list,
  .service-facial-massage .face-ui-flow {
    grid-template-columns: 1fr;
  }

  .service-facial-massage .face-ui-point {
    border-right: 0;
    border-bottom: 1px solid rgba(197, 137, 74, 0.18);
    padding: 0.85rem 0;
  }

  .service-facial-massage .face-ui-point:last-child {
    border-bottom: 0;
  }

  .service-facial-massage .face-ui-intro,
  .service-facial-massage .face-ui-step {
    align-items: flex-start;
  }

  .service-facial-massage .face-ui-step {
    justify-content: flex-start;
  }
}

/* Nail page follows the provided bright service UI */
.service-nail main {
  background:
    radial-gradient(circle at 4% 96%, rgba(226, 177, 105, 0.09), transparent 18%),
    radial-gradient(circle at 96% 96%, rgba(226, 177, 105, 0.09), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.service-nail .nail-ui {
  min-height: 100vh;
  padding: 6.05rem clamp(1.15rem, 3vw, 2.65rem) 1.35rem;
  color: #4a2f1c;
}

.service-nail .nail-ui-hero,
.service-nail .nail-ui-panel {
  width: min(1364px, 100%);
  margin-inline: auto;
}

.service-nail .nail-ui-hero {
  min-height: 385px;
  margin-bottom: 1.45rem;
  display: flex;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.86) 37%, rgba(255, 250, 244, 0.08) 71%),
    url("images/美甲/generate-222-1280x720.png");
  background-size: cover;
  background-position: center 45%;
  box-shadow: 0 15px 36px rgba(92, 58, 31, 0.06);
}

.service-nail .nail-ui-copy {
  width: min(610px, 100%);
  padding: clamp(1.65rem, 4vw, 3.75rem);
}

.service-nail .nail-ui-breadcrumb {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(154, 91, 34, 0.82);
  font-size: 1rem;
  font-weight: 900;
}

.service-nail .nail-ui-breadcrumb span {
  color: rgba(184, 116, 29, 0.65);
}

.service-nail .nail-ui-copy h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(4rem, 6.4vw, 5.75rem);
  line-height: 1;
  color: #2f1c10;
  font-weight: 900;
}

.service-nail .nail-ui-copy h2 {
  margin: 1.35rem 0 1.45rem;
  color: #c47d2d;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  line-height: 1.35;
  font-weight: 800;
}

.service-nail .nail-ui-decor {
  width: min(390px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.service-nail .nail-ui-decor span,
.service-nail .nail-ui-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 137, 74, 0.34), transparent);
}

.service-nail .nail-ui-decor img {
  width: 24px;
  height: 26px;
  object-fit: contain;
}

.service-nail .nail-ui-panel {
  min-height: 458px;
  padding: 0 0 1.55rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(196, 139, 76, 0.08);
  box-shadow: 0 14px 34px rgba(92, 58, 31, 0.06);
}

.service-nail .nail-ui-intro {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 1.45rem;
  padding: 1.45rem clamp(1.7rem, 4vw, 3.2rem);
  border-bottom: 1px solid rgba(116, 73, 40, 0.08);
}

.service-nail .nail-ui-round,
.service-nail .nail-ui-card span {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8ead8;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.32);
}

.service-nail .nail-ui-round img,
.service-nail .nail-ui-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-nail .nail-ui-intro h2,
.service-nail .nail-ui-heading h2 {
  margin: 0;
  color: #2f1c10;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.service-nail .nail-ui-intro h2 {
  padding-right: 1.45rem;
  border-right: 1px solid rgba(197, 137, 74, 0.24);
}

.service-nail .nail-ui-intro p {
  margin: 0;
  color: rgba(74, 47, 28, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
  font-weight: 700;
}

.service-nail .nail-ui-advantages {
  padding: 1.85rem clamp(1.7rem, 4vw, 3.2rem) 0;
}

.service-nail .nail-ui-heading {
  width: min(520px, 100%);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  gap: 0.85rem;
}

.service-nail .nail-ui-heading img {
  width: 22px;
  height: 25px;
  object-fit: contain;
  opacity: 0.6;
}

.service-nail .nail-ui-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-nail .nail-ui-card {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(197, 137, 74, 0.22);
}

.service-nail .nail-ui-card:last-child {
  border-right: 0;
}

.service-nail .nail-ui-card h3 {
  margin: 0 0 0.34rem;
  color: #4a2f1c;
  font-size: 1.22rem;
  font-weight: 900;
}

.service-nail .nail-ui-card p {
  margin: 0;
  color: rgba(74, 47, 28, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 700;
}

.service-nail .nail-ui-btn {
  width: min(360px, 100%);
  height: 58px;
  margin: 2.1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #a85f16 0%, #7d3207 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 15px 28px rgba(125, 50, 7, 0.16);
}

.service-nail .nail-ui-note {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: rgba(74, 47, 28, 0.6);
  font-size: 0.95rem;
  font-weight: 900;
}

.service-nail .nail-ui-note i {
  color: #d59a54;
}

@media (max-width: 980px) {
  .service-nail .nail-ui {
    padding-top: 6.75rem;
  }

  .service-nail .nail-ui-intro {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .service-nail .nail-ui-intro p {
    grid-column: 1 / -1;
  }

  .service-nail .nail-ui-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0;
  }

  .service-nail .nail-ui-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .service-nail .nail-ui {
    padding: 6.6rem 1rem 1.3rem;
  }

  .service-nail .nail-ui-hero {
    min-height: 455px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.99) 0%, rgba(255, 250, 244, 0.88) 49%, rgba(255, 250, 244, 0.12) 100%),
      url("images/美甲/generate-222-1280x720.png");
    background-size: cover;
    background-position: 68% center;
  }

  .service-nail .nail-ui-copy h1 {
    font-size: 3.5rem;
  }

  .service-nail .nail-ui-intro,
  .service-nail .nail-ui-grid {
    grid-template-columns: 1fr;
  }

  .service-nail .nail-ui-intro {
    justify-items: center;
    text-align: center;
  }

  .service-nail .nail-ui-intro h2 {
    padding-right: 0;
    border-right: 0;
  }

  .service-nail .nail-ui-card {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 137, 74, 0.18);
    padding: 0.95rem 0;
  }

  .service-nail .nail-ui-card:last-child {
    border-bottom: 0;
  }
}

/* About page follows the provided brand story UI */
.page-about {
  background: #fff8ef;
}

.page-about .navbar {
  background: rgba(42, 22, 10, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.page-about .brand,
.page-about .nav-menu a {
  color: #ffffff;
}

.page-about .about-ui-hero {
  min-height: 330px;
  padding: 6.65rem clamp(1.5rem, 6vw, 6rem) 2.2rem;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(42, 19, 6, 0.9) 0%, rgba(42, 19, 6, 0.58) 38%, rgba(42, 19, 6, 0.34) 70%, rgba(42, 19, 6, 0.58) 100%),
    url("images/身体按摩/generate-224-1280x720.png");
  background-size: cover;
  background-position: center 43%;
}

.page-about .about-ui-hero-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-about .about-ui-hero h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(3.2rem, 5.3vw, 5rem);
  line-height: 1;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.page-about .about-ui-hero-line {
  width: 170px;
  margin: 1rem 0 1.05rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-about .about-ui-hero-line span {
  height: 1px;
  background: currentColor;
}

.page-about .about-ui-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.page-about .about-ui {
  min-height: 100vh;
  padding: 2.15rem clamp(1.15rem, 5vw, 4.2rem) 1.35rem;
  background:
    radial-gradient(circle at 5% 96%, rgba(226, 177, 105, 0.1), transparent 18%),
    radial-gradient(circle at 95% 96%, rgba(226, 177, 105, 0.1), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  color: #4a2f1c;
}

.page-about .about-ui-section,
.page-about .about-ui-values {
  width: min(1230px, 100%);
  margin-inline: auto;
}

.page-about .about-ui-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.7rem;
  text-align: center;
}

.page-about .about-ui-title h2 {
  margin: 0;
  color: #2f1c10;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  font-weight: 900;
}

.page-about .about-ui-title img {
  width: 24px;
  height: 27px;
  object-fit: contain;
  opacity: 0.72;
}

.page-about .about-ui-brand-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.3rem);
  align-items: center;
}

.page-about .about-ui-photo {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(92, 58, 31, 0.08);
}

.page-about .about-ui-copy p,
.page-about .about-ui-team-content > p {
  margin: 0 0 1.1rem;
  color: rgba(74, 47, 28, 0.78);
  font-size: 1.08rem;
  line-height: 1.95;
  font-weight: 750;
}

.page-about .about-ui-copy p:last-child,
.page-about .about-ui-team-content > p:last-child {
  margin-bottom: 0;
}

.page-about .about-ui-values {
  margin-top: 2rem;
  margin-bottom: 2.4rem;
  min-height: 170px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(196, 139, 76, 0.08);
  box-shadow: 0 14px 34px rgba(92, 58, 31, 0.055);
}

.page-about .about-ui-values article {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 1.25rem 1.6rem;
  border-right: 1px solid rgba(116, 73, 40, 0.12);
}

.page-about .about-ui-values article:last-child {
  border-right: 0;
}

.page-about .about-ui-values span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid rgba(181, 125, 68, 0.52);
}

.page-about .about-ui-values img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-about .about-ui-values h3 {
  margin: 0.75rem 0 0.45rem;
  color: #4a2f1c;
  font-size: 1.1rem;
  font-weight: 900;
}

.page-about .about-ui-values p {
  margin: 0;
  color: rgba(74, 47, 28, 0.68);
  font-size: 0.92rem;
  line-height: 1.68;
  font-weight: 700;
}

.page-about .about-ui-team {
  display: grid;
  grid-template-columns: 365px minmax(0, 1fr);
  gap: clamp(2.3rem, 5vw, 4.8rem);
  align-items: center;
}

.page-about .about-ui-team-photo img {
  width: 100%;
  height: 215px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(92, 58, 31, 0.08);
}

.page-about .about-ui-team .about-ui-title {
  justify-content: flex-start;
  margin-bottom: 1.2rem;
}

.page-about .about-ui-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.55rem;
}

.page-about .about-ui-stats div {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.75rem;
  align-content: center;
  justify-content: center;
  border-right: 1px solid rgba(116, 73, 40, 0.16);
}

.page-about .about-ui-stats div:last-child {
  border-right: 0;
}

.page-about .about-ui-stats i {
  grid-row: span 2;
  align-self: center;
  color: #b57d44;
  font-size: 1.7rem;
}

.page-about .about-ui-stats strong {
  color: #7d4b23;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.78rem;
  line-height: 1;
  font-weight: 900;
}

.page-about .about-ui-stats small {
  font-size: 0.95rem;
}

.page-about .about-ui-stats span {
  color: rgba(74, 47, 28, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .page-about .about-ui-brand-grid,
  .page-about .about-ui-team {
    grid-template-columns: 1fr;
  }

  .page-about .about-ui-values,
  .page-about .about-ui-stats {
    grid-template-columns: 1fr 1fr;
  }

  .page-about .about-ui-values article:nth-child(2),
  .page-about .about-ui-stats div:nth-child(2) {
    border-right: 0;
  }

  .page-about .about-ui-team .about-ui-title {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-about .about-ui-hero {
    min-height: 430px;
    padding-top: 6.8rem;
    background:
      linear-gradient(180deg, rgba(42, 19, 6, 0.88) 0%, rgba(42, 19, 6, 0.48) 100%),
      url("images/身体按摩/generate-224-1280x720.png");
    background-size: cover;
    background-position: 67% center;
  }

  .page-about .about-ui {
    padding: 1.6rem 1rem 1.3rem;
  }

  .page-about .about-ui-values,
  .page-about .about-ui-stats {
    grid-template-columns: 1fr;
  }

  .page-about .about-ui-values article,
  .page-about .about-ui-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(116, 73, 40, 0.12);
  }

  .page-about .about-ui-values article:last-child,
  .page-about .about-ui-stats div:last-child {
    border-bottom: 0;
  }
}

/* Contact page follows the provided contact UI */
.page-contact {
  background: #fff8ef;
}

.page-contact .navbar {
  background: rgba(42, 22, 10, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.page-contact .brand,
.page-contact .nav-menu a {
  color: #ffffff;
}

.page-contact .contact-ui-hero {
  min-height: 355px;
  padding: 7.1rem clamp(1.5rem, 5vw, 4.8rem) 2.2rem;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(42, 19, 6, 0.94) 0%, rgba(42, 19, 6, 0.62) 38%, rgba(42, 19, 6, 0.34) 70%, rgba(42, 19, 6, 0.58) 100%),
    url("images/身体按摩/generate-224-1280x720.png");
  background-size: cover;
  background-position: center 43%;
}

.page-contact .contact-ui-hero-copy {
  width: min(1500px, 100%);
  margin: 0 auto;
}

/* Final brand logo: use the supplied Jolin Foot Spa artwork in every nav. */
.brand,
.page-home .brand,
.page-inner .brand,
.page-service-detail .brand,
.page-about .brand,
.page-contact .brand {
  width: clamp(132px, 14vw, 182px);
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  overflow: hidden;
  letter-spacing: 0;
}

.brand::before,
.page-home .brand::before,
.page-inner .brand::before,
.page-service-detail .brand::before {
  content: none;
}

.brand-logo-frame {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

html[dir="rtl"] .brand-logo {
  transform: none;
}

@media (max-width: 900px) {
  .brand,
  .page-home .brand,
  .page-inner .brand,
  .page-service-detail .brand,
  .page-about .brand,
  .page-contact .brand {
    width: 118px;
    height: 30px;
  }
}

.page-contact .contact-ui-hero h1 {
  margin: 0 0 0.7rem;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(3.1rem, 5.2vw, 5rem);
  line-height: 1;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.page-contact .contact-ui-hero h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.22rem;
  line-height: 1.45;
  font-weight: 900;
}

.page-contact .contact-ui-hero span {
  width: 42px;
  height: 2px;
  display: block;
  margin: 1.35rem 0 1.25rem;
  background: #c89255;
}

.page-contact .contact-ui-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  font-weight: 800;
}

.page-contact .contact-ui {
  padding: 1.7rem clamp(1.15rem, 2.4vw, 1.8rem) 1.35rem;
  background:
    radial-gradient(circle at 5% 95%, rgba(226, 177, 105, 0.1), transparent 18%),
    radial-gradient(circle at 95% 95%, rgba(226, 177, 105, 0.1), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  color: #4a2f1c;
}

.page-contact .contact-ui-grid {
  width: min(1560px, 100%);
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.94fr 1.25fr;
  gap: 1rem;
}

.page-contact .contact-ui-card {
  min-height: 405px;
  padding: 2rem clamp(1.25rem, 2.6vw, 1.9rem);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 139, 76, 0.08);
  box-shadow: 0 14px 34px rgba(92, 58, 31, 0.055);
}

.page-contact .contact-ui-card h2 {
  margin: 0 0 1.35rem;
  color: #2f1c10;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
}

.page-contact .contact-ui-card > p {
  margin: -0.65rem 0 1.4rem;
  color: rgba(74, 47, 28, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 700;
}

.page-contact .contact-ui-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}

.page-contact .contact-ui-row span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(205, 145, 82, 0.52);
  background: rgba(249, 237, 222, 0.6);
}

.page-contact .contact-ui-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-contact .contact-ui-row h3 {
  margin: 0 0 0.2rem;
  color: #3b2415;
  font-size: 1.04rem;
  font-weight: 900;
}

.page-contact .contact-ui-row strong {
  display: block;
  color: #2f1c10;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}

.page-contact .contact-ui-row p {
  margin: 0.2rem 0 0;
  color: rgba(74, 47, 28, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-contact .contact-ui-address-link {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 6px;
}

.page-contact .contact-ui-address-link:hover strong {
  color: #b8793f;
}

.page-contact .contact-ui-whatsapp {
  text-align: center;
}

.page-contact .contact-ui-whatsapp img {
  width: 158px;
  height: 164px;
  display: block;
  margin: 1.65rem auto 1.65rem;
  object-fit: contain;
}

.page-contact .contact-ui-whatsapp a {
  width: min(285px, 100%);
  min-height: 42px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3ddc6;
  color: #c08243;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
}

.page-contact .contact-ui-whatsapp small {
  display: block;
  margin-top: 1rem;
  color: rgba(74, 47, 28, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-contact .contact-ui-map {
  position: relative;
  display: block;
  min-height: 274px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 23%, rgba(203, 190, 172, 0.45) 23% 24%, transparent 24% 49%, rgba(203, 190, 172, 0.45) 49% 50%, transparent 50% 74%, rgba(203, 190, 172, 0.45) 74% 75%, transparent 75%),
    linear-gradient(0deg, transparent 0 21%, rgba(203, 190, 172, 0.45) 21% 22%, transparent 22% 48%, rgba(203, 190, 172, 0.45) 48% 49%, transparent 49% 73%, rgba(203, 190, 172, 0.45) 73% 74%, transparent 74%),
    linear-gradient(90deg, rgba(231, 237, 226, 0.85), rgba(250, 244, 236, 0.9));
  border: 1px solid rgba(196, 139, 76, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-contact .contact-ui-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(82, 50, 24, 0.13);
}

.page-contact .contact-ui-map::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 68px;
  height: 12px;
  background: rgba(219, 180, 98, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

.page-contact .contact-ui-map::after {
  content: "巴尔卡路";
  position: absolute;
  left: 2rem;
  bottom: 44px;
  color: rgba(74, 47, 28, 0.75);
  font-size: 0.85rem;
  font-weight: 900;
}

.page-contact .contact-ui-pin {
  position: absolute;
  left: 50%;
  top: 39%;
  display: grid;
  justify-items: center;
  transform: translate(-50%, -50%);
  color: #7d4b23;
}

.page-contact .contact-ui-pin i {
  color: #c99158;
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(125, 75, 35, 0.2));
}

.page-contact .contact-ui-pin strong {
  margin-top: 0.15rem;
  color: #5a341b;
  font-size: 1.05rem;
}

.page-contact .contact-ui-banner {
  width: min(1560px, 100%);
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, #c88e5b 0%, #d4a06e 58%, #e6c7a6 100%);
  color: #ffffff;
}

.page-contact .contact-ui-banner div {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 1rem clamp(1.6rem, 4vw, 3rem);
}

.page-contact .contact-ui-banner i {
  font-size: 2rem;
  opacity: 0.85;
}

.page-contact .contact-ui-banner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 800;
}

.page-contact .contact-ui-banner strong {
  font-size: 1.15rem;
}

.page-contact .contact-ui-banner img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  object-position: center;
  align-self: end;
}

@media (max-width: 1100px) {
  .page-contact .contact-ui-grid {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-ui-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-contact .contact-ui-hero {
    min-height: 430px;
    padding-top: 6.8rem;
    background:
      linear-gradient(180deg, rgba(42, 19, 6, 0.88) 0%, rgba(42, 19, 6, 0.48) 100%),
      url("images/身体按摩/generate-224-1280x720.png");
    background-size: cover;
    background-position: 67% center;
  }

  .page-contact .contact-ui {
    padding: 1rem;
  }

  .page-contact .contact-ui-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .page-contact .contact-ui-banner {
    grid-template-columns: 1fr;
  }
}
