:root {
  --primary: #4a7c59;
  --primary-hover: #3d664a;
  --text-dark: #2c332e;
  --text-light: #5c665e;
  --bg-white: #ffffff;
  --bg-soft: #f8faf9;
  --border: #e2e8e4;
  --serif: "Playfair Display", serif;
  --sans: "Inter", sans-serif;

  --bg-section-b: #f2f6f3;
  --bg-tint: rgba(74, 124, 89, 0.06);
  --bg-gradient-soft: linear-gradient(
    180deg,
    rgba(74, 124, 89, 0.07),
    rgba(255, 255, 255, 0)
  );

  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background: #f1f5f2;
  padding: 16px 0; /* 稍微减小内边距，让大 Logo 更紧凑 */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: padding 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft),
    background 0.35s var(--ease-soft), backdrop-filter 0.35s var(--ease-soft);
  backdrop-filter: blur(0px);
}

.navbar.is-scrolled {
  padding: 12px 0; /* 滚动后也相应减小 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex; /* 确保图片垂直居中 */
  align-items: center;
}
/* --- LOGO 尺寸调整 --- */
.logo img {
  height: clamp(90px, 10vw, 150px); /* 增大最小、首选和最大高度 */
  width: auto;
  max-height: 160px; /* 增大最大高度限制 */
  transition: height 0.3s ease;
}
/* 滚动时稍微缩小 Logo，保持精致感 */
.navbar.is-scrolled .logo img {
  height: clamp(80px, 9vw, 130px);
  max-height: 140px;
}
/* -------------------- */

.logo span {
  color: var(--text-light);
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.05rem; /* 稍微增大导航字体，与大 Logo 平衡 */
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 14px 26px; /* 稍微增大按钮尺寸 */
  border-radius: 6px;
  font-size: 1rem; /* 稍微增大字体 */
  font-weight: 600;
  transition: transform 0.25s var(--ease-soft),
    background 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}
.nav-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(74, 124, 89, 0.18);
}

/* Hero 整体容器 */
.hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent; /* 必须设为透明，否则会遮挡图片 */
}

/* 背景图片层 */
.hero-image {
  position: absolute;
  top: -5%; /* 稍微高一点，为视差滚动留出余量 */
  left: 0;
  width: 100%;
  height: 110%; /* 稍微高一点，防止滚动时露白 */
  background-size: cover;
  background-position: center;
  z-index: -1; /* 确保在文字内容下方 */
  will-change: transform;
}

/* 图片上的半透明遮罩：关键！防止图片太花导致看不清字 */
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 文字内容区域 */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text-box {
  max-width: 600px;
}

.hero-text-box h1 {
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary); /* 你的品牌绿 */
}

.hero-text-box p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 36px;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px; /* 稍微增大按钮内边距 */
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem; /* 稍微增大字体 */
  transition: 0.25s var(--ease-soft);
  border: 2px solid transparent;
  will-change: transform;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74, 124, 89, 0.2);
}
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  margin-left: 16px;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 110px 0; /* 稍微增加区块间距 */
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0));
  opacity: 0.14;
  pointer-events: none;
}

.services {
  background: linear-gradient(180deg, var(--bg-section-b), #ffffff);
}

.section-title {
  font-family: var(--serif);
  font-size: 2.8rem; /* 稍微增大标题字体 */
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary); /* 让标题颜色与品牌色一致 */
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(340px, 1fr)
  ); /* 稍微增加卡片最小宽度 */
  gap: 36px;
}
.service-card {
  background: rgba(255, 255, 255, 0.8); /* 稍微增加背景不透明度 */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out-quint),
    box-shadow 0.35s var(--ease-out-quint);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.service-img {
  height: 240px; /* 稍微增加图片高度 */
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s var(--ease-out-quint);
}
.service-card:hover .service-img {
  transform: scale(1.04);
}
.service-info {
  padding: 36px;
}
.service-info h3 {
  font-family: var(--serif);
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.service-info p {
  color: var(--text-light);
  font-size: 1rem;
}

/* About */
.about {
  background: var(--bg-gradient-soft), var(--bg-soft);
}
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-image {
  height: 540px; /* 稍微增加图片高度 */
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 16px;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: 2.8rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.about-text p {
  margin-bottom: 22px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--bg-section-b), #ffffff);
}
.contact-card {
  background: white;
  padding: 70px; /* 稍微增加内边距 */
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(74, 124, 89, 0.15);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  max-width: 900px; /* 限制最大宽度，防止在大屏上过宽 */
  margin: 0 auto;
}
.contact-card h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.contact-card p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.detail-item small {
  display: block;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.detail-item span,
.detail-item a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}
.detail-item a:hover {
  color: var(--primary);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out-quint),
    transform 0.85s var(--ease-out-quint);
  will-change: transform, opacity;
}
[data-animate].appear {
  opacity: 1;
  transform: translateY(0);
}

/* ========= ✅ Footer (2 columns + comfortable Hours typography + small social icons) ========= */
.site-footer {
  padding: 80px 0 0;
}

.footer-surface {
  background: #eef4ee;
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

/* Title: smaller + calmer (closer to your reference) */
.footer-title {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: #50664f;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

/* Hours typography fine-tune (smaller + comfortable) */
.hours-list {
  display: grid;
  gap: 12px;
}

.hours-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

.time {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(44, 51, 46, 0.85);
  letter-spacing: 0.1px;
}

.footer-contact .footer-map {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.footer-contact .footer-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 20px;
}

.footer-address {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #3c5a3f;
  font-weight: 600;
  text-decoration: none; /* 去掉下划线，用 hover 效果代替 */
  font-size: 1.05rem;
  transition: color 0.2s ease;
}
.footer-address:hover {
  color: var(--primary);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #3f5f44;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 12px 26px rgba(63, 95, 68, 0.2);
  transition: transform 0.25s var(--ease-soft),
    background 0.25s var(--ease-soft);
}
.footer-phone:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
}

/* Small icon-only social row */
.footer-social {
  display: inline-flex;
  gap: 12px;
  margin-left: auto;
}

.social-ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #2f3a32;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s var(--ease-soft), background 0.2s var(--ease-soft),
    color 0.2s var(--ease-soft);
}
.social-ic:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-bottom {
  padding: 22px 0 38px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 0;
  }
  .logo img {
    height: clamp(70px, 9vw, 110px); /* 平板设备上稍微缩小 */
    max-height: 120px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .nav-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .hero-text-box h1 {
    font-size: 3.2rem;
  }
  .about-flex {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image {
    height: 400px;
  }

  .footer-grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-surface {
    padding: 46px 24px;
  }

  .hours-row {
    grid-template-columns: 120px 1fr;
  }

  .footer-social {
    margin-left: 0;
    margin-top: 16px; /* 在小屏幕上换行 */
  }
}

@media (max-width: 768px) {
  .nav-btn {
    display: none; /* 在移动端也可以考虑隐藏这个按钮，或者放入汉堡菜单中 */
  }
  .logo img {
    height: clamp(60px, 15vw, 90px); /* 手机上进一步缩小 */
    max-height: 100px;
  }
  .hero {
    text-align: center;
    height: auto;
    padding: 120px 0 80px;
    min-height: auto;
  }
  .hero-image::after {
    display: none;
  }

  .hero-text-box h1 {
    font-size: 2.8rem;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }
  .btn-outline {
    margin-left: 0;
  }
  .contact-card {
    padding: 40px 24px;
  }
  .contact-details {
    flex-direction: column;
    gap: 36px;
  }
  .detail-item span,
  .detail-item a {
    font-size: 1.2rem;
  }

  .footer-contact-row {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-address,
  .footer-phone,
  .footer-social {
    width: 100%; /* 让这些元素在手机上占满宽度 */
  }
  .footer-phone {
    justify-content: center;
  }
}

/* =========================
   HERO Step 1: text on right, image on left
   (Only affects .hero.hero-step1-right)
   ========================= */

.hero.hero-step1-right {
  position: relative;
  overflow: hidden;
}

/* 新增一个两列布局容器 */
.hero.hero-step1-right .hero-inner {
  height: 80vh;
  min-height: 550px;
  display: grid;
  grid-template-columns: 1.15fr 1fr; /* 左图右文 */
}

/* 左侧图片：变成“占位列”，不再 absolute 盖全屏 */
.hero.hero-step1-right .hero-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 右侧内容：居中对齐 */
.hero.hero-step1-right .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* 让文字块自然落在右侧中间 */
.hero.hero-step1-right .hero-text-box {
  margin-left: auto;
  max-width: 620px;
}

/* 手机端：上下堆叠 */
@media (max-width: 900px) {
  .hero.hero-step1-right .hero-inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .hero.hero-step1-right .hero-image {
    height: 44vh;
    min-height: 320px;
  }

  .hero.hero-step1-right .hero-content {
    padding: 40px 0 60px;
  }

  .hero.hero-step1-right .hero-text-box {
    margin-left: 0;
  }
}

/* =========================
   Services Page (only)
   ========================= */
body.services-page .page-hero {
  padding: 72px 0 54px;
  background: #f7f8f6; /* 你要区分 header/hero 的风格，这里非常合适 */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.services-page .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  margin: 0 0 10px;
}

body.services-page .page-hero p {
  margin: 0 0 18px;
  color: var(--text-light);
  max-width: 70ch;
}

body.services-page .page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

body.services-page .pricing-block {
  padding: 34px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.services-page .pricing-head h2 {
  font-family: var(--serif);
  margin: 0 0 8px;
  font-size: 1.6rem;
}

body.services-page .muted {
  margin: 0;
  color: var(--text-light);
}

body.services-page .price-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

body.services-page .price-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

body.services-page .price-card .time {
  font-weight: 700;
  margin-bottom: 6px;
}

body.services-page .price-card .price {
  font-size: 1.6rem;
  font-weight: 800;
}

body.services-page .service-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

body.services-page .service-price {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

body.services-page .service-price h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

body.services-page .service-price .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.services-page .addon-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.services-page .addon-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

body.services-page .package-box {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

body.services-page .package-actions {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

body.services-page .fineprint {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  body.services-page .price-cards,
  body.services-page .service-grid {
    grid-template-columns: 1fr;
  }
  body.services-page .addon-list {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Facial Showcase
   Background image on RIGHT side of container
   ========================= */

.facial-showcase-bg {
  padding: 64px 0;
  background: #f7f8f6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* 👉 关键：container 本身带背景 */
.facial-showcase-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;

  /* 右侧背景图 */
  background-image: linear-gradient(
      to right,
      #f7f8f6 0%,
      #f7f8f6 44%,
      rgba(247, 248, 246, 0.75) 52%,
      rgba(247, 248, 246, 0.35) 60%,
      rgba(247, 248, 246, 0) 68%
    ),
    url("assets/images/facial-bg-right.jpg");

  background-size: cover;
  background-position: right center;
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0 18px 44px rgba(44, 51, 46, 0.12);
}

/* 左侧内容区 */
.facial-left {
  max-width: 720px;
}

/* 文案样式 */
.facial-kicker {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.facial-showcase-bg h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  margin: 0 0 10px;
}

.facial-intro {
  margin: 0 0 18px;
  color: var(--text-light);
  max-width: 70ch;
}

/* 项目 */
.facial-deals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.deal {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 228, 0.98);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(44, 51, 46, 0.1);
}

.deal h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.deal p {
  margin: 0 0 12px;
  color: var(--text-light);
}

.deal-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 10px;
}

.deal-meta .from strong {
  font-size: 1.25rem;
}

.deal-meta .duration {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74, 124, 89, 0.1);
  font-weight: 800;
  font-size: 0.9rem;
}

/* CTA */
.facial-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.facial-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
}

/* Mobile */
@media (max-width: 980px) {
  .facial-showcase-inner {
    grid-template-columns: 1fr;
    background-image: url("assets/images/facial-bg-right.jpg");
    background-position: center;
    padding: 28px;
  }

  .facial-deals {
    grid-template-columns: 1fr;
  }
}

.services-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
