* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
body {
    background: #F7F3EC;
    color: #3E4148;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.72;
}
a {
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.site-header {
    position: sticky;
    top: 0;
    left: 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;
    overflow: visible;
    padding: 0 22px;
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.brand-logo img {
    width: 136px;
    height: 46px;
    object-fit: contain;
}
.nav-core {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 1;
}
.nav-core a,
.more-dropdown a,
.drawer-links a {
    text-decoration: none;
}
.nav-core a {
    white-space: nowrap;
    color: #3E4148;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}
.nav-core a:hover,
.nav-core a.active {
    color: #B98B5D;
    background: rgba(214,180,138,0.12);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.more-menu {
    position: relative;
    flex-shrink: 0;
}
.more-toggle {
    border: 1px solid rgba(185,139,93,0.22);
    background: #FFFFFF;
    color: #3E4148;
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.more-toggle:hover {
    color: #B98B5D;
    border-color: #D6B48A;
}
.more-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    box-shadow: 0 18px 42px rgba(185,139,93,0.18);
    z-index: 10000;
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.more-menu:hover .more-dropdown,
.more-menu.is-open .more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.more-dropdown a {
    color: #3E4148;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
}
.more-dropdown a:hover,
.more-dropdown a.active {
    color: #B98B5D;
    background: #FAF6EF;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8C89A 0%, #D6A96F 55%, #B98B5D 100%);
    color: #FFFFFF;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(185,139,93,0.22);
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(185,139,93,0.28);
}
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(185,139,93,0.20);
    border-radius: 14px;
    background: #FFFFFF;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #B98B5D;
}
.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(47,43,39,0.42);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(84vw, 340px);
    height: 100vh;
    background: #FFFFFF;
    z-index: 10001;
    transform: translateX(-105%);
    transition: transform .24s ease;
    box-shadow: 20px 0 44px rgba(47,43,39,0.18);
    overflow-y: auto;
}
.drawer-open .drawer-mask {
    opacity: 1;
    visibility: visible;
}
.drawer-open .mobile-drawer {
    transform: translateX(0);
}
body.drawer-open {
    overflow-y: hidden;
}
.drawer-head {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(185,139,93,0.14);
}
.drawer-head img {
    width: 128px;
    height: 46px;
    object-fit: contain;
}
.drawer-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #FAF6EF;
    color: #B98B5D;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.drawer-links {
    display: grid;
    gap: 4px;
    padding: 14px;
}
.drawer-links a {
    color: #3E4148;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
}
.drawer-links a.active,
.drawer-links a:hover {
    color: #B98B5D;
    background: #FAF6EF;
    border-color: rgba(185,139,93,0.14);
}
main {
    position: relative;
    z-index: 1;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}
.section {
    margin: 30px 0;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.section-title,
h1,
h2,
h3 {
    color: #3A332C;
    margin: 0;
    line-height: 1.28;
}
.section-title,
h2 {
    font-size: clamp(24px, 3vw, 34px);
}
h1 {
    font-size: clamp(30px, 4vw, 48px);
}
h3 {
    font-size: 20px;
}
p {
    margin: 0 0 14px;
}
.lead {
    color: #747A84;
    max-width: 760px;
    font-size: 17px;
}
.text-link {
    color: #B98B5D;
    text-decoration: none;
    font-weight: 800;
}
.text-link:hover {
    text-decoration: underline;
}
.banner-slider {
    max-width: 1280px;
    height: clamp(220px, 42vw, 520px);
    margin: 24px auto 30px;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 14px 36px rgba(185,139,93,0.14);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.slider-track,
.slide {
    width: 100%;
    height: 100%;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
}
.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #F7F3EC;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.86);
    color: #B98B5D;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(47,43,39,0.12);
}
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.70);
    cursor: pointer;
}
.slider-dots button.active {
    width: 28px;
    background: #D6B48A;
}
.notice-strip {
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 14px 36px rgba(185,139,93,0.10);
    color: #3E4148;
    display: flex;
    gap: 12px;
    align-items: center;
}
.notice-strip strong {
    color: #B98B5D;
    white-space: nowrap;
}
.card,
.zone-card,
.info-card,
.review-card,
.article-card,
.aside-card,
.faq-item,
.category-card,
.service-card {
    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;
}
.card,
.zone-card,
.info-card,
.review-card,
.article-card,
.aside-card,
.faq-item,
.category-card,
.service-card {
    padding: 24px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.brand-intro,
.feature-split,
.article-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: center;
}
.brand-intro .content-img,
.feature-split .content-img,
.aside-card .content-img,
.page-hero .content-img {
    width: 100%;
    border-radius: 18px;
    object-fit: contain;
    background: #FAF6EF;
    border: 1px solid rgba(185,139,93,0.12);
}
.content-img {
    max-width: 100%;
    height: auto;
}
.category-card h3,
.zone-card h3,
.review-card h3,
.info-card h3,
.faq-item h3,
.service-card h3 {
    margin-bottom: 10px;
}
.category-card p,
.zone-card p,
.review-card p,
.info-card p,
.faq-item p,
.service-card p {
    color: #747A84;
}
.category-card {
    min-height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}
.pill-list li {
    background: #FAF6EF;
    border: 1px solid rgba(185,139,93,0.16);
    color: #3E4148;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
}
.soft-panel {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF6EF 100%);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(185,139,93,0.18);
}
.blue-panel {
    background: #EEF7FF;
    border-color: rgba(93,144,185,0.14);
}
.page-hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF6EF 70%, #EEF7FF 100%);
    border-bottom: 1px solid rgba(185,139,93,0.12);
    padding: 48px 0 36px;
}
.page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
    gap: 30px;
    align-items: center;
}
.breadcrumb {
    color: #B98B5D;
    font-weight: 800;
    margin-bottom: 12px;
}
.hero-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(185,139,93,0.18);
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
}
.article-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
}
.article-card h2,
.article-card h3 {
    margin: 18px 0 10px;
}
.article-card h2:first-child,
.article-card h3:first-child {
    margin-top: 0;
}
.article-card p,
.article-card li,
.aside-card p,
.aside-card li {
    color: #3E4148;
}
.article-card ul,
.aside-card ul {
    margin: 12px 0 0;
    padding-left: 20px;
}
.article-card li,
.aside-card li {
    margin: 8px 0;
}
.aside-card {
    position: sticky;
    top: 96px;
}
.aside-card .content-img {
    margin-bottom: 16px;
}
.faq-list {
    display: grid;
    gap: 16px;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.review-card small {
    color: #B98B5D;
    font-weight: 800;
}
.service-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.compliance-box {
    background: #2F2B27;
    color: #F7F3EC;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 38px rgba(47,43,39,0.16);
}
.compliance-box h2,
.compliance-box h3 {
    color: #FFFFFF;
}
.compliance-box p {
    color: #F7F3EC;
}
.site-footer {
    background: #2F2B27;
    color: #F7F3EC;
    margin-top: 46px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 22px 26px;
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr 1fr;
    gap: 28px;
}
.footer-brand img {
    width: 146px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 14px;
}
.footer-brand p,
.footer-note p {
    color: rgba(247,243,236,0.78);
}
.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}
.footer-links h3,
.footer-note h3 {
    color: #FFFFFF;
    margin-bottom: 6px;
}
.footer-links a {
    color: rgba(247,243,236,0.80);
    text-decoration: none;
}
.footer-links a:hover {
    color: #E8C89A;
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px 28px;
    border-top: 1px solid rgba(247,243,236,0.12);
    color: rgba(247,243,236,0.70);
}
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 1180px) {
    .grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }
    .header-inner {
        min-height: 66px;
        display: grid;
        grid-template-columns: 92px 1fr 92px;
        gap: 8px;
        padding: 0 14px;
    }
    .mobile-menu-btn { display: inline-flex; }
    .brand-logo { justify-self: center; }
    .brand-logo img { width: 124px; height: 42px; }
    .nav-core { display: none; }
    .header-actions { justify-content: flex-end; gap: 0; }
    .more-menu { display: none; }
    .header-actions .main-btn { padding: 8px 16px; font-size: 14px; }
    .mobile-drawer,
    .drawer-mask {
        z-index: 10000;
    }
    .mobile-drawer { z-index: 10001; }
    .page-hero-inner,
    .brand-intro,
    .feature-split,
    .article-layout {
        grid-template-columns: 1fr;
    }
    .aside-card { position: static; }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    body { padding-bottom: 70px; }
    .container { padding: 0 16px; }
    .banner-slider {
        margin: 16px 12px 22px;
        border-radius: 16px;
        height: clamp(190px, 56vw, 340px);
    }
    .slider-arrow { width: 34px; height: 34px; font-size: 24px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .notice-strip {
        align-items: flex-start;
        flex-direction: column;
    }
    .section-head { align-items: flex-start; flex-direction: column; }
    .grid-2,
    .grid-3,
    .grid-4,
    .service-row,
    .review-grid {
        grid-template-columns: 1fr;
    }
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .article-card,
    .aside-card,
    .faq-item,
    .category-card,
    .service-card {
        padding: 20px;
        border-radius: 18px;
    }
    .page-hero { padding: 34px 0 26px; }
    .footer-inner { grid-template-columns: 1fr; padding-bottom: 18px; }
    .footer-bottom { padding-bottom: 28px; }
    .mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 9998;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: rgba(255,255,255,0.96);
        border: 1px solid rgba(185,139,93,0.18);
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(47,43,39,0.16);
        overflow: hidden;
    }
    .mobile-bottom-nav a {
        text-align: center;
        text-decoration: none;
        padding: 10px 4px;
        color: #3E4148;
        font-size: 13px;
        font-weight: 800;
    }
    .mobile-bottom-nav a.active {
        color: #B98B5D;
        background: #FAF6EF;
    }
}
@media (max-width: 380px) {
    .header-inner { grid-template-columns: 74px 1fr 74px; }
    .brand-logo img { width: 108px; }
    .header-actions .main-btn { padding: 7px 12px; }
}
