:root {
    --bg: #F7F3EC;
    --surface: #FFFFFF;
    --soft: #FAF6EF;
    --blue: #EEF7FF;
    --gold: #D6B48A;
    --deep-gold: #B98B5D;
    --line: #E8D2B5;
    --title: #3A332C;
    --text: #3E4148;
    --muted: #747A84;
    --light: #9A9FA8;
    --footer: #2F2B27;
    --shadow: 0 14px 36px rgba(185,139,93,0.14);
    --btn: linear-gradient(135deg, #E8C89A 0%, #D6A96F 55%, #B98B5D 100%);
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    min-width: 320px;
}
a {
    color: var(--deep-gold);
    text-decoration: none;
}
a:hover {
    color: #936a43;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(185,139,93,0.12);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 22px;
    overflow: visible;
}
.brand-logo,
.drawer-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-logo img {
    width: 136px;
    max-height: 48px;
    object-fit: contain;
}
.nav-core {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 1;
}
.nav-core a {
    white-space: nowrap;
    color: var(--text);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 15px;
    transition: all .2s ease;
}
.nav-core a:hover,
.nav-core a.active {
    color: var(--deep-gold);
    background: rgba(214,180,138,.14);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.app-entry {
    color: var(--deep-gold);
    font-weight: 700;
    white-space: nowrap;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 24px;
    border-radius: 999px;
    background: var(--btn);
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(185,139,93,.26);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.main-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(185,139,93,.32);
}
.header-btn {
    min-width: 82px;
}
.more-menu {
    position: relative;
    flex-shrink: 0;
}
.more-toggle,
.mobile-menu-btn,
.drawer-close {
    border: 0;
    background: var(--soft);
    color: var(--title);
    cursor: pointer;
    font-family: inherit;
}
.more-toggle {
    padding: 9px 16px;
    border: 1px solid rgba(185,139,93,0.18);
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}
.more-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(185,139,93,0.18);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
}
.more-menu:hover .more-dropdown,
.more-menu.open .more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.more-dropdown a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text);
    white-space: nowrap;
}
.more-dropdown a:hover,
.more-dropdown a.active {
    color: var(--deep-gold);
    background: rgba(214,180,138,.13);
}
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(185,139,93,0.18);
}
.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--title);
}
.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(47,43,39,.42);
    opacity: 0;
    visibility: hidden;
    z-index: 10001;
    transition: all .2s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 340px);
    height: 100vh;
    background: #FFFFFF;
    z-index: 10002;
    transform: translateX(-102%);
    transition: transform .25s ease;
    box-shadow: 18px 0 42px rgba(47,43,39,.22);
    overflow-y: auto;
}
.drawer-open .mobile-drawer {
    transform: translateX(0);
}
.drawer-open .drawer-mask {
    opacity: 1;
    visibility: visible;
}
.drawer-open {
    overflow: hidden;
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid rgba(185,139,93,0.16);
}
.drawer-logo img {
    width: 126px;
    max-height: 46px;
    object-fit: contain;
}
.drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}
.drawer-nav {
    padding: 12px 16px 28px;
    display: grid;
    gap: 8px;
}
.drawer-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    background: var(--soft);
}
.drawer-nav a.active,
.drawer-nav a:hover {
    color: var(--deep-gold);
    background: rgba(214,180,138,.16);
}
.site-main {
    position: relative;
    z-index: 1;
}
.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}
.banner-slider {
    width: min(1280px, calc(100% - 36px));
    margin: 24px auto 30px;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 6;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #F7F3EC;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.88);
    color: var(--title);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(47,43,39,.16);
}
.slider-prev {
    left: 18px;
}
.slider-next {
    right: 18px;
}
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(47,43,39,.18);
}
.slider-dot.active {
    width: 24px;
    border-radius: 999px;
    background: var(--deep-gold);
}
.notice-bar {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 24px;
    padding: 13px 18px;
    border: 1px solid rgba(185,139,93,0.2);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 10px 24px rgba(185,139,93,.1);
    color: var(--muted);
}
.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 34px;
}
.section-head {
    margin-bottom: 18px;
}
.eyebrow {
    color: var(--deep-gold);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 13px;
}
h1,
h2,
h3,
.section-title {
    color: var(--title);
    line-height: 1.3;
    margin: 0 0 12px;
}
h1 {
    font-size: clamp(30px, 4vw, 48px);
}
h2,
.section-title {
    font-size: clamp(24px, 3vw, 34px);
}
h3 {
    font-size: 21px;
}
p {
    margin: 0 0 14px;
}
.lead {
    color: var(--muted);
    font-size: 17px;
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.hero-panel {
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
    border-radius: 22px;
}
.hero-panel {
    padding: clamp(24px, 4vw, 42px);
}
.hero-grid,
.split-grid,
.two-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 26px;
    align-items: center;
}
.content-img,
.zone-card img,
.app-section img,
.image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #FAF6EF;
    border-radius: 18px;
}
.image-card {
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.card {
    padding: 20px;
}
.card h3 {
    margin-bottom: 8px;
}
.card p,
.info-card p,
.zone-card p,
.review-card p,
.faq-item p {
    color: var(--muted);
}
.text-link {
    color: var(--deep-gold);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.text-link::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}
.feature-band {
    padding: clamp(24px, 4vw, 42px);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,246,239,.96));
    border: 1px solid rgba(185,139,93,0.16);
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
}
.three-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.zone-card {
    overflow: hidden;
}
.zone-card img {
    border-radius: 0;
}
.zone-card .zone-body {
    padding: 20px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.info-card {
    padding: 22px;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.review-card {
    padding: 22px;
}
.review-card strong {
    display: block;
    color: var(--title);
    margin-bottom: 8px;
}
.faq-list {
    display: grid;
    gap: 14px;
}
.faq-item {
    padding: 20px;
}
.faq-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.safe-note {
    border: 1px solid rgba(185,139,93,0.24);
    background: linear-gradient(135deg, rgba(238,247,255,.88), rgba(250,246,239,.95));
    border-radius: 22px;
    padding: 22px;
    color: var(--muted);
}
.page-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 28px auto 30px;
}
.page-hero .hero-panel {
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,246,239,.96));
}
.breadcrumb {
    color: var(--light);
    font-size: 14px;
    margin-bottom: 10px;
}
.article {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto 34px;
}
.article .content-block {
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
    padding: clamp(22px, 4vw, 38px);
    margin-bottom: 22px;
}
.article h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin-top: 4px;
}
.article ul,
.service-list {
    padding-left: 20px;
    margin: 0 0 12px;
    color: var(--muted);
}
.article li,
.service-list li {
    margin: 7px 0;
}
.page-image-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}
.page-image-row.single {
    grid-template-columns: minmax(0, 1fr);
}
.page-image-row img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #FAF6EF;
    border-radius: 20px;
    border: 1px solid rgba(185,139,93,0.18);
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.mini-card {
    padding: 18px;
    background: #FAF6EF;
    border: 1px solid rgba(185,139,93,0.16);
    border-radius: 18px;
}
.mini-card h3 {
    font-size: 18px;
}
.site-footer {
    background: #2F2B27;
    color: #F7F3EC;
    margin-top: 44px;
}
.footer-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 42px 0 26px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 36px;
}
.footer-logo img {
    width: 132px;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 14px;
}
.footer-brand p {
    color: rgba(247,243,236,.78);
    max-width: 520px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.footer-links h3 {
    color: #F7F3EC;
    font-size: 17px;
    margin-bottom: 10px;
}
.footer-links a {
    display: block;
    color: rgba(247,243,236,.78);
    margin: 6px 0;
}
.footer-links a:hover {
    color: #FFFFFF;
}
.footer-bottom {
    border-top: 1px solid rgba(247,243,236,.12);
    padding: 16px 18px 22px;
    text-align: center;
    color: rgba(247,243,236,.7);
}
.footer-bottom p {
    margin: 0;
}
.app-section {
    overflow: hidden;
}
@media (max-width: 1120px) {
    .nav-core {
        gap: 4px;
    }
    .nav-core a {
        font-size: 14px;
        padding: 7px 8px;
    }
    .app-entry {
        display: none;
    }
}
@media (max-width: 1024px) {
    .nav-core,
    .more-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: inline-flex;
        order: 1;
    }
    .brand-logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .brand-logo img {
        width: 120px;
    }
    .header-actions {
        order: 3;
        margin-left: auto;
    }
    .header-btn {
        min-width: 72px;
        padding: 10px 18px;
    }
    .header-inner {
        min-height: 66px;
        padding: 0 14px;
        position: relative;
    }
    .hero-grid,
    .split-grid,
    .two-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .category-grid,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .banner-slider {
        width: min(100% - 24px, 1280px);
        margin-top: 16px;
        border-radius: 14px;
        aspect-ratio: 16 / 8.8;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .slider-prev {
        left: 10px;
    }
    .slider-next {
        right: 10px;
    }
    .notice-bar,
    .section,
    .page-hero,
    .article,
    .container {
        width: min(100% - 24px, 1180px);
    }
    .category-grid,
    .three-grid,
    .info-grid,
    .review-grid,
    .mini-grid,
    .page-image-row,
    .page-image-row.single,
    .footer-links {
        grid-template-columns: 1fr;
    }
    .hero-panel,
    .feature-band,
    .article .content-block {
        border-radius: 20px;
    }
    .footer-inner {
        padding-top: 32px;
    }
}
@media (max-width: 420px) {
    .brand-logo img {
        width: 104px;
    }
    .header-btn {
        min-width: 64px;
        padding: 9px 14px;
    }
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    h1 {
        font-size: 28px;
    }
}
