/* ========== 全局重置 & 基础 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1A1A1A;
    line-height: 1.5;
    font-weight: 400;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 容器 */
.zjj886Container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* 有衬线标题 */
.zjj886SerifTitle {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1E1E1E;
}

/* 通用区块标题 */
.zjj886SectionTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 3rem;
    color: #1E1E1E;
}

/* 按钮基础 */
.zjj886Btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}

.zjj886BtnSolid {
    background-color: #8B6B42; /* 深棕/香槟金调 */
    color: white;
    border: 1px solid #8B6B42;
}

.zjj886BtnSolid:hover {
    background-color: #6A4F2E;
    border-color: #6A4F2E;
}

.zjj886BtnOutline {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.zjj886BtnOutline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #CFB784;
}

.zjj886BtnGhost {
    background: transparent;
    border-bottom: 1px solid #D4AF7A;
    color: #1E1E1E;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.zjj886BtnGhost:hover {
    gap: 12px;
    color: #8B6B42;
}

.zjj886LinkUnderline {
    border-bottom: 1px solid #D4AF7A;
    padding-bottom: 4px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.zjj886LinkUnderline:hover {
    color: #8B6B42;
    border-bottom-color: #8B6B42;
}

/* ========== 头部导航 ========== */
.zjj886Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.zjj886NavContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zjj886LogoImg {
    height: 48px;
    width: auto;
}

.zjj886NavList {
    display: flex;
    gap: 2rem;
}

.zjj886NavLink {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2C2C2C;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.zjj886NavLink:hover, .zjj886NavLink.active {
    color: #8B6B42;
    border-bottom-color: #8B6B42;
}

.zjj886MenuToggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 24px;
    position: relative;
}

.zjj886Hamburger,
.zjj886Hamburger::before,
.zjj886Hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #1E1E1E;
    transition: all 0.3s;
}

.zjj886Hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.zjj886Hamburger::before {
    top: -8px;
}

.zjj886Hamburger::after {
    top: 8px;
}

/* 移动端菜单样式（JS切换） */
@media (max-width: 1024px) {
    .zjj886NavMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        transition: left 0.3s ease;
        box-shadow: 0 20px 30px rgba(0,0,0,0.05);
        padding: 2rem;
        z-index: 999;
    }
    .zjj886NavMenu.active {
        left: 0;
    }
    .zjj886NavList {
        flex-direction: column;
        gap: 1.5rem;
    }
    .zjj886MenuToggle {
        display: block;
    }
}

/* ========== Hero 区域 ========== */
.zjj886HeroSection {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 0;
    overflow: hidden;
}

.zjj886HeroBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.zjj886HeroImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.zjj886HeroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
}

.zjj886HeroContent {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
}

.zjj886HeroInner {
    max-width: 580px;
}

.zjj886HeroTitle {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.zjj886HeroSubtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.zjj886HeroButtons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 预订工具栏 */
.zjj886Toolbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    padding: 16px 32px;
    z-index: 3;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.zjj886ToolbarInner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.zjj886ToolItem {
    flex: 1;
    min-width: 150px;
}

.zjj886ToolItem label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B6B42;
    display: block;
}

.zjj886ToolItem span {
    font-weight: 500;
    font-size: 0.9rem;
    color: #1E1E1E;
}

.zjj886QueryBtn {
    background: #8B6B42;
    border: none;
    padding: 10px 28px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.zjj886QueryBtn:hover {
    background: #5F4530;
}

/* ========== 集团简介 (半岛承诺风格) ========== */
.zjj886PromiseSection {
    padding: 100px 0;
}

.zjj886PromiseGrid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.zjj886PromiseDesc {
    margin-bottom: 1.2rem;
    color: #3D3D3D;
    font-size: 0.95rem;
    line-height: 1.6;
}

.zjj886IconGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}

.zjj886IconItem {
    text-align: center;
}

.zjj886CircleIcon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border: 1px solid #E0D6CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #8B6B42;
    background: #FCFAF7;
}

.zjj886IconItem h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.zjj886IconItem span {
    font-size: 0.75rem;
    color: #6F6F6F;
}

/* 服务卡片 4列 */
.zjj886ServicesSection, .zjj886GamingSection {
    padding: 80px 0;
    background: #FEFEFC;
}

.zjj886ServicesGrid, .zjj886GamingGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.zjj886ServiceCard, .zjj886GamingCard {
    background: white;
    border: 1px solid #EDE9E2;
    padding: 2rem 1.5rem;
    transition: transform 0.2s;
}

.zjj886ServiceCard:hover, .zjj886GamingCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}

.zjj886CardTag, .zjj886CardBadge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #8B6B42;
    border: 1px solid #EADECF;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1.5rem;
    background: #FAF7F2;
}

.zjj886ServiceCard h3, .zjj886GamingCard h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.zjj886ServiceCard p, .zjj886GamingCard p {
    font-size: 0.85rem;
    color: #5A5A5A;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.zjj886CardLink {
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid #D4AF7A;
    padding-bottom: 4px;
}

.zjj886CenterBtnWrap {
    text-align: center;
    margin-top: 48px;
}

/* 集团风采 不规则网格 */
.zjj886GallerySection {
    padding: 80px 0;
}

.zjj886GalleryGrid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
}

.zjj886GalleryLarge {
    position: relative;
    overflow: hidden;
}

.zjj886GalleryLarge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
}

.zjj886GalleryCaption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 12px 20px;
    backdrop-filter: blur(4px);
}

.zjj886GallerySmallGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.zjj886GalleryItem {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.zjj886GalleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.zjj886GalleryItem:hover img {
    transform: scale(1.02);
}

.zjj886ItemOverlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* 评价滑动区 */
.zjj886TestimonialsSection {
    padding: 80px 0;
    background: #FCF9F5;
}

.zjj886TestimonialSlider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.zjj886TestimonialTrack {
    display: flex;
    transition: transform 0.4s ease;
    gap: 32px;
}

.zjj886TestimonialCard {
    flex: 0 0 calc(33.33% - 22px);
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #F0EAE2;
}

.zjj886TestimonialCard i {
    font-size: 1.8rem;
    color: #CFB784;
    margin-bottom: 1rem;
    display: block;
}

.zjj886TestimonialCard p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.zjj886User {
    font-weight: 500;
    font-size: 0.8rem;
    color: #8B6B42;
}

.zjj886SliderControls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.zjj886SliderPrev, .zjj886SliderNext {
    background: white;
    border: 1px solid #DCD3C8;
    width: 44px;
    height: 44px;
    border-radius: 0;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.2rem;
}

.zjj886SliderPrev:hover, .zjj886SliderNext:hover {
    background: #8B6B42;
    color: white;
    border-color: #8B6B42;
}

/* 联系我们 + 半透明卡片 */
.zjj886ContactSection {
    position: relative;
    padding: 100px 0;
    background: #0A0A0A;
}

.zjj886ContactBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.zjj886ContactBgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zjj886ContactOverlayCard {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    padding: 48px 40px;
    text-align: center;
    z-index: 2;
}

.zjj886ContactInfo p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.zjj886ContactButtons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 24px;
}

.zjj886BtnSolidSmall {
    background: #8B6B42;
    padding: 8px 24px;
    color: white;
    border: none;
    font-size: 0.8rem;
}

.zjj886BtnOutlineSmall {
    border: 1px solid #8B6B42;
    padding: 8px 24px;
    color: #8B6B42;
    font-size: 0.8rem;
}

/* 邮件订阅 */
.zjj886Newsletter {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    background: #FFFFFF;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.zjj886SubscribeForm {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.zjj886EmailInput {
    flex: 1;
    padding: 12px;
    border: 1px solid #E0D6CC;
    background: white;
    font-size: 0.8rem;
}

.zjj886SubscribeBtn {
    background: #8B6B42;
    border: none;
    padding: 0 24px;
    color: white;
    cursor: pointer;
}

/* 社交分享 */
.zjj886SocialSection {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #F0EAE2;
}

.zjj886SocialTitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.zjj886Hashtag {
    font-size: 0.8rem;
    color: #8B6B42;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.zjj886SocialIcons {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.zjj886SocialIcons a {
    font-size: 1.6rem;
    color: #AFA28B;
    transition: color 0.2s;
}

.zjj886SocialIcons a:hover {
    color: #8B6B42;
}

/* 页脚 */
.zjj886FooterTop {
    background: #2C2C2C;
    padding: 32px 0;
    color: white;
}

.zjj886FooterSelectWrap select {
    background: #1E1E1E;
    color: white;
    padding: 12px 24px;
    border: none;
    width: 260px;
    font-size: 0.85rem;
}

.zjj886FooterLinks {
    background: white;
    padding: 60px 0 40px;
}

.zjj886FooterGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.zjj886FooterCol h5 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.zjj886FooterCol ul li {
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
    color: #6F6F6F;
}

.zjj886FooterBottom {
    background: #F9F9F9;
    padding: 20px 0;
    border-top: 1px solid #EFEFEF;
}

.zjj886BottomBar {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #7C7C7C;
}

.zjj886LegalLinks {
    display: flex;
    gap: 24px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .zjj886ServicesGrid, .zjj886GamingGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zjj886PromiseGrid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .zjj886GalleryGrid {
        grid-template-columns: 1fr;
    }
    .zjj886TestimonialCard {
        flex: 0 0 calc(100% - 20px);
    }
    .zjj886FooterGrid {
        grid-template-columns: repeat(2,1fr);
        gap: 28px;
    }
    .zjj886HeroTitle {
        font-size: 2.6rem;
    }
    .zjj886ToolbarInner {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .zjj886Container {
        padding: 0 20px;
    }
    .zjj886ServicesGrid, .zjj886GamingGrid {
        grid-template-columns: 1fr;
    }
    .zjj886IconGrid {
        grid-template-columns: repeat(2,1fr);
    }
    .zjj886HeroButtons {
        flex-direction: column;
        align-items: flex-start;
    }
    .zjj886ContactOverlayCard {
        margin: 0 20px;
        padding: 32px 24px;
    }
}