@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600&display=swap');

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

:root {
    /* 主色：深灰棕，干净克制 */
    --primary-color: #4a4540;
    --primary-light: #6b6560;
    --primary-dark: #2d2a26;
    /* 辅色 */
    --secondary-color: #2c2820;
    --accent-color: #f8f7f5;
    /* 文字 */
    --text-dark: #1a1816;
    --text-medium: #4a4540;
    --text-light: #6b6560;
    /* 背景 */
    --bg-light: #f0efec;
    --bg-white: #fafaf8;
    --bg-warm: #f5f4f2;
    --bg-cream: #ebeae8;
    /* 阴影与边框 */
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 6px 28px rgba(0, 0, 0, 0.15);
    --border-color: rgba(0, 0, 0, 0.12);
    --border-light: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-warm);
    font-weight: 300;
    letter-spacing: 0.4px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 导航栏 */
.navbar {
    background: var(--bg-white);
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 2px;
    position: relative;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--primary-color);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.logo:hover::after {
    width: 100%;
}

.logo img {
    height: 44px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-light);
}

.lang-switcher a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.3s;
}

.lang-switcher a:hover {
    color: var(--primary-color);
}

.lang-switcher a:hover::after {
    display: none;
}

.lang-divider {
    color: var(--border-color);
    font-weight: 300;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* 首页横幅 */
.hero {
    background: 
        linear-gradient(165deg, rgba(232, 223, 210, 0.92) 0%, rgba(237, 229, 217, 0.88) 50%, rgba(245, 239, 230, 0.9) 100%),
        url(images/3.jpg) center center / cover no-repeat;
    color: var(--text-dark);
    padding: 100px 20px 80px;
    text-align: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 35% at 50% 0%, rgba(0, 0, 0, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-warm), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 6px;
    line-height: 1.2;
    color: #4a4540;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 300;
    color: #5c5752;
}

/* 副标题换行：桌面端不强制换行，移动端显示换行 */
.hero-desc-br {
    display: none;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    padding: 10px 22px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    display: inline-flex;
}

.stars {
    color: #6b6560;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-score {
    font-weight: 600;
    font-size: 1.1rem;
    color: #4a4540;
}

.rating-count {
    font-size: 0.9rem;
    color: #6b6560;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 480px;
    margin: 2rem auto 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-width: 0;
    min-height: 48px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #5c5752;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 245, 240, 0.95) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(44, 38, 32, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.35s ease;
}

.hero-highlight-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.hero-highlight-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6b6560;
}

.section-ornament {
    color: var(--primary-color);
    font-size: 0.6em;
    margin-right: 0.4rem;
    vertical-align: middle;
    opacity: 0.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin: 0;
    order: 1;
}

.about-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 0;
    min-height: 58px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 240, 0.95) 100%);
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 16px rgba(44, 38, 32, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: all 0.35s ease;
}

.about-highlight:hover {
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.about-highlight-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* 首页按钮 - 暖色大地系，与背景协调 */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5c5248;
    color: #fff;
    padding: 14px 36px;
    border: 2px solid #5c5248;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.35s ease;
}

.cta-button:hover {
    background: #4a4540;
    border-color: #4a4540;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-button {
    background: #699763;
    border: 2px solid #699763;
    color: #fff;
}

.whatsapp-button:hover {
    background: #5a8554;
    border-color: #5a8554;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 151, 99, 0.35);
}

.whatsapp-button svg {
    flex-shrink: 0;
}

/* 关于我们 */
.about {
    padding: 90px 20px 100px;
    background: var(--bg-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), transparent);
    opacity: 0.6;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    display: block;
    width: 100%;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-medium);
    font-weight: 300;
}

.about-image-card {
    display: flex;
    align-items: stretch;
    order: 2;
    justify-content: center;
    min-height: 420px;
}

/* 轮播图容器 */
.carousel-container {
    position: relative;
    width: 100%;
    min-height: 420px;
    height: 420px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    box-shadow: var(--shadow-soft);
    border-radius: 12px;
}

.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 3;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    min-height: 420px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

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

/* 左右切换按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s;
    color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.9;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-primary);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 30px;
}

.carousel-btn-next {
    right: 30px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.carousel-wrapper:hover .carousel-btn {
    opacity: 1;
}

/* 指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 28px;
    border-radius: 4px;
}

.indicator:hover {
    background: var(--primary-light);
}

/* 服务项目 */
.services {
    padding: 90px 20px 100px;
    background: var(--bg-cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.services-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

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

.service-item:hover {
    padding-left: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
}

.service-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 2px;
    min-width: 40px;
    padding-top: 0.2rem;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.service-content p {
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
}

/* 价格表 */
.pricing {
    padding: 90px 20px 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ebe9e6 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 3.25rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* 价格表 - 标签切换 */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tab-button {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--text-medium);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-button:hover {
    color: var(--text-dark);
}

.tab-button.active {
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 价格表 - 卡片网格 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.pricing-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0;
    padding: 0.8rem 0;
    border-top: 1px solid var(--bg-cream);
}

/* 价格卡片 - 基础样式（移动端为主） */
.price-card {
    background: var(--bg-white);
    padding: 1.6rem 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.04);
    position: relative;
}

/* 人气/推荐卡片：左侧微妙色条 */
.price-card[data-category*="popular"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    opacity: 0.75;
    border-radius: 3px 0 0 3px;
}

/* 新客专享：柔和高亮 */
.price-card[data-category*="new"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6b7b6a 0%, #7a8b78 100%);
    opacity: 0.8;
    border-radius: 3px 0 0 3px;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

/* 标题与标签同一行 */
.price-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.price-card-header h3 {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.price-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.price-badge.popular {
    background: linear-gradient(135deg, rgba(74, 69, 64, 0.12) 0%, rgba(74, 69, 64, 0.06) 100%);
    color: var(--primary-dark);
}

.price-badge.new {
    background: linear-gradient(135deg, rgba(107, 123, 106, 0.15) 0%, rgba(107, 123, 106, 0.08) 100%);
    color: #4a5c4a;
    border: 1px solid rgba(107, 123, 106, 0.25);
}

/* 移动端卡片 body 布局 */
.price-card-body {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.15rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-card-left {
    flex: 1;
    min-width: 0;
    padding-right: 5rem;
}

.price-card-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.price-card h3 {
    font-size: 1.18rem;
    color: #4a4540;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.price-duration {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.2px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 400;
}

.current-price {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

.price-description {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* 预约按钮 - 精致 CTA */
.whatsapp-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(105, 151, 99, 0.95) 0%, rgba(90, 133, 84, 0.95) 100%);
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(90, 133, 84, 0.25);
}

.whatsapp-booking-btn:hover {
    background: linear-gradient(135deg, #5a8554 0%, #4d7348 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(90, 133, 84, 0.35);
}

.whatsapp-booking-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.whatsapp-booking-btn:hover svg {
    transform: scale(1.08);
}

/* ========== PC 端专属价格卡片布局 ========== */
@media (min-width: 769px) {

    /* 网格：3列，同行等高 */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1150px;
        margin: 0 auto;
        align-items: stretch;
    }

    /* 卡片：纵向 flex，撑满格子高度 */
    .price-card {
        display: flex;
        flex-direction: column;
        padding: 1.6rem 1.5rem;
    }

    /* body：纵向 flex，flex:1 占满剩余高度（把按钮推到底） */
    .price-card-body {
        display: flex;
        flex-direction: column;
        flex: 1;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 0;
    }

    /* left：纵向 flex，flex:1 占满 body（把时长/价格推到底） */
    .price-card-left {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding-right: 0;
    }

    /* header：标题 + badge 同行 */
    .price-card-header {
        margin-bottom: 0.75rem;
    }

    /* 描述：flex:1 撑开，把 price-card-right 推到 left 底部 */
    .price-description {
        flex: 1;
        margin-bottom: 1rem;
    }

    /* 时长 + 价格：贴在 left 底部，时长靠左，价格靠右 */
    .price-card-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-shrink: 0;
    }

    /* 按钮：始终在卡片底部 */
    .price-card .whatsapp-booking-btn {
        flex-shrink: 0;
        margin-top: 0;
    }
}

/* 环境展示 */
.gallery {
    padding: 90px 20px 100px;
    background: linear-gradient(180deg, #f0ebe5 0%, #ebe6de 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.04) 1.5px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* 环境展示 - 大图轮播 */
.gallery-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 560px;
    z-index: 2;
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    box-shadow: 
        0 8px 40px rgba(44, 42, 38, 0.12),
        0 2px 12px rgba(0, 0, 0, 0.06);
}

.gallery-carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    z-index: 4;
}

.gallery-carousel-slides {
    position: relative;
    width: 100%;
    height: 560px;
}

.gallery-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 560px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.gallery-carousel-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.gallery-carousel-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.gallery-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s;
    color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.9;
}

.gallery-carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-primary);
}

.gallery-carousel-btn-prev {
    left: 24px;
}

.gallery-carousel-btn-next {
    right: 24px;
}

.gallery-carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.gallery-indicator:hover {
    background: var(--primary-light);
}

/* 位置信息 */
.location {
    padding: 55px 20px 65px;
    background: var(--bg-white);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 15%, var(--primary-color), var(--primary-light), transparent 85%);
    opacity: 0.5;
}

.location h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2.5rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
}

.info-item p {
    color: var(--text-dark);
    line-height: 2;
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-note {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-style: normal;
    margin-top: 0.8rem;
    line-height: 1.6;
    font-weight: 300;
}

.info-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-service-list li {
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
}

.info-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    transform: rotate(45deg);
}

.info-service-list li:last-child {
    margin-bottom: 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--border-light);
}

.map-address {
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.map-address h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-weight: 500;
}

.map-address p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-link {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.map-button {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.map-button:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.highlight {
    color: var(--text-dark);
    font-weight: 400;
}

/* 页脚 */
.footer {
    background: linear-gradient(180deg, #2d2a26 0%, #3d3a36 100%);
    color: var(--bg-white);
    padding: 50px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 0.85rem;
    font-weight: 300;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-strong);
        padding: 2rem 0;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        border-top: 1px solid var(--border-light);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
    }

    /* 移动端：左上角 logo 字号减小、颜色调淡、艺术字体 */
    .navbar .logo {
        font-size: 1rem;
        font-family: 'Shippori Mincho B1', 'Noto Serif JP', Georgia, serif;
        font-weight: 500;
        color: #6b6560;
        letter-spacing: 2px;
    }
    .navbar .logo:hover {
        color: var(--primary-color);
    }

    /* 移动端：店名标题 - 艺术字体、颜色优化 */
    .hero-title {
        font-size: 1.65rem;
        letter-spacing: 2px;
        font-family: 'Shippori Mincho B1', 'Noto Serif JP', Georgia, serif;
        color: #4a4540;
    }

    /* 移动端：副标题显示优化 */
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.9;
        padding: 0 0.5rem;
        margin-bottom: 1.35rem;
        max-width: 100%;
        letter-spacing: 0.3px;
    }
    .hero-desc-br {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-highlights {
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .hero-highlight-item {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
    }

    .hero-highlight-icon {
        width: 16px;
        height: 16px;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .about-highlight {
        font-size: 0.85rem;
        padding: 0.65rem 1.2rem;
    }

    .about-highlight-icon {
        width: 18px;
        height: 18px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 40px;
        font-size: 0.9rem;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .carousel-container {
        min-height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .services {
        padding: 60px 20px;
    }

    .services-list {
        gap: 0;
    }

    .service-item {
        gap: 1.5rem;
        padding: 1.2rem 0;
    }

    .service-item:hover {
        padding-left: 1.25rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .price-card {
        padding: 1.35rem 1.2rem;
    }

    /* 移动端：垂直布局，标题和描述占满卡片宽度 */
    .price-card-body {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .price-card-left {
        display: block;
        width: 100%;
        padding-right: 0;
        min-width: 0;
    }

    /* 移动端：时长和价格改为底部一行，不占用描述区域 */
    .price-card-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 0.25rem;
    }

    /* 移动端：时长参与正常流式布局，字号加大 */
    .price-duration {
        position: static;
        top: auto;
        right: auto;
        padding: 5px 12px;
        font-size: 0.88rem;
        margin: 0;
    }

    /* 移动端：价格字号 */
    .current-price {
        font-size: 1.2rem;
    }

    .price-card-header {
        margin-bottom: 0.45rem;
        gap: 0.75rem;
    }

    .price-card h3 {
        font-size: 1.1rem;
    }

    .price-description {
        font-size: 0.88rem;
        line-height: 1.65;
        width: 100%;
    }

    .whatsapp-booking-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .price-badge {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    .pricing-tabs {
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
    }

    .tab-button {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .about h2,
    .services h2,
    .pricing h2,
    .location h2,
    .gallery h2 {
        font-size: 1.75rem;
    }

    .gallery {
        padding: 60px 20px 70px;
    }

    .gallery-carousel-container {
        height: 380px;
    }

    .gallery-carousel-wrapper {
        height: 380px;
    }

    .gallery-carousel-slides {
        height: 380px;
    }

    .gallery-carousel-slide {
        height: 380px;
    }

    .gallery-carousel-image {
        height: 380px;
    }

    .gallery-carousel-btn {
        width: 44px;
        height: 44px;
    }

    .gallery-carousel-btn-prev {
        left: 12px;
    }

    .gallery-carousel-btn-next {
        right: 12px;
    }

    .gallery-carousel-indicators {
        bottom: 16px;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 标题内换行：PC端和移动端均保留，保证长标题整齐换行 */

/* 隐藏特定分类的价格卡片 */
.price-card[data-category]:not([data-category*="all"]) {
    display: none;
}

.price-card[data-category*="all"] {
    display: block;
}

/* 多档位价格卡片（全宽描述版） */
.price-card-body.price-card-body--tiers-full {
    flex-direction: column;
    gap: 0;
}

.price-tiers-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 0.85rem;
}

.price-tier-item {
    padding: 0.7rem 0;
}

.price-tier-item:first-child {
    padding-top: 0;
}

.price-tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.price-tier-desc {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.65;
    font-weight: 300;
}

.price-tier-row-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-tier-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(74, 69, 64, 0.14) 0%, rgba(74, 69, 64, 0.07) 100%);
    color: var(--primary-dark);
}

.price-tier-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

@media (min-width: 769px) {
    .price-card-body.price-card-body--tiers-full {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .price-tier-desc {
        font-size: 0.83rem;
    }
}