* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #F7F6F2;
    color: #2F2D2A;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(92,73,50,0.10);
}
.header-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}
.logo, .drawer-logo, .footer-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.logo img {
    max-height: 52px;
    width: auto;
    display: block;
}
.desktop-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}
.nav-link {
    position: relative;
    padding: 26px 12px 24px;
    color: #3D352B;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}
.nav-link:hover,
.nav-link.active,
.dropdown-menu a.active,
.drawer-nav a.active,
.text-link,
.highlight {
    color: #B99563;
}
.nav-link.active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 14px;
    height: 3px;
    border-radius: 3px;
    background: #B99563;
}
.nav-item {
    position: relative;
}
.drop-mark {
    font-size: 12px;
    margin-left: 2px;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 176px;
    background: #FFFFFF;
    border: 1px solid rgba(185,149,99,0.18);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(92,73,50,0.16);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 2600;
}
.dropdown-menu-right {
    left: auto;
    right: 0;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #3D352B;
    font-size: 14px;
    font-weight: 600;
}
.dropdown-menu a:hover {
    background: #FAF8F4;
    color: #B99563;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(169,129,82,0.25);
    border: 0;
    white-space: nowrap;
}
.main-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(169,129,82,0.30);
}
.header-btn {
    flex: 0 0 auto;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(185,149,99,0.22);
    border-radius: 12px;
    background: #FFFFFF;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}
.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #3D352B;
    border-radius: 2px;
}
.site-main {
    padding-top: 0;
}
.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}
.section {
    padding: 58px 0;
}
.section.alt {
    background: #F3EFE8;
}
.section.compact {
    padding: 36px 0;
}
h1, h2, h3, .section-title {
    color: #B99563;
    margin: 0;
    line-height: 1.3;
}
h1 {
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.03em;
}
h2, .section-title {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 18px;
}
h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
p {
    margin: 0 0 14px;
}
.lead {
    color: #6B6256;
    font-size: 18px;
    max-width: 820px;
}
.muted {
    color: #8E8579;
}
.banner-slider {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(92,73,50,0.12);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(185,149,99,0.14);
    z-index: 1;
}
.slider-track {
    position: relative;
    background: #FFFFFF;
}
.slide {
    display: none;
    background: #FFFFFF;
}
.slide.active {
    display: block;
}
.banner-slider img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    background: #FFFFFF;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.86);
    background: rgba(47,42,36,0.36);
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}
.slider-btn.prev {
    left: 18px;
}
.slider-btn.next {
    right: 18px;
}
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.72);
    cursor: pointer;
}
.slider-dots button.active {
    width: 24px;
    border-radius: 999px;
    background: #B99563;
}
.hero-card,
.page-hero,
.card,
.zone-card,
.info-card,
.review-card,
.notice-card,
.faq-item,
.step-card,
.contact-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(185,149,99,0.18);
    box-shadow: 0 14px 36px rgba(92,73,50,0.12);
    border-radius: 24px;
}
.hero-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
    padding: clamp(26px, 5vw, 54px);
}
.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 22px;
}
.soft-link {
    color: #B99563;
    font-weight: 700;
}
.image-panel {
    border-radius: 22px;
    background: #FAF8F4;
    border: 1px solid rgba(185,149,99,0.14);
    overflow: hidden;
}
.image-panel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #FAF8F4;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.section-head p {
    max-width: 720px;
    color: #6B6256;
}
.grid {
    display: grid;
    gap: 22px;
}
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card,
.zone-card,
.info-card,
.review-card,
.notice-card,
.faq-item,
.step-card,
.contact-card {
    padding: 24px;
}
.card .tag,
.zone-card .tag,
.info-card .tag {
    color: #D2B17D;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}
.card p,
.zone-card p,
.info-card p,
.review-card p,
.faq-item p,
.step-card p,
.contact-card p {
    color: #6B6256;
}
.card-img {
    margin: -8px -8px 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #FAF8F4;
    border: 1px solid rgba(185,149,99,0.12);
}
.card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #FAF8F4;
}
.text-link {
    font-weight: 800;
}
.number-badge {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #EFE8DD;
    color: #B99563;
    font-weight: 800;
    margin-bottom: 12px;
}
.steps {
    counter-reset: step;
}
.step-card {
    position: relative;
}
.step-card::before {
    counter-increment: step;
    content: counter(step);
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFFFFF;
    background: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
    font-weight: 800;
    margin-bottom: 12px;
}
.review-card {
    background: #FFFFFF;
}
.review-name {
    color: #B99563;
    font-weight: 800;
    margin-top: 10px;
}
.page-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: clamp(28px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 34px;
    align-items: center;
}
.breadcrumb {
    color: #8E8579;
    font-size: 14px;
    margin-bottom: 10px;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.hero-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: #F3EFE8;
    color: #B99563;
    font-weight: 700;
    font-size: 13px;
}
.notice-card {
    background: #EFE8DD;
}
.notice-card strong {
    color: #B99563;
}
.faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.faq-item h3::before {
    content: "问";
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EFE8DD;
    color: #B99563;
    font-size: 13px;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(185,149,99,0.14);
    color: #6B6256;
}
.contact-list li:last-child {
    border-bottom: 0;
}
.site-footer {
    background: #2F2A24;
    color: #F7F0E6;
    margin-top: 64px;
}
.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 42px;
}
.footer-logo img {
    max-height: 50px;
    width: auto;
}
.footer-brand p,
.footer-warning p {
    color: rgba(247,240,230,0.82);
    margin-top: 18px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.footer-links h3 {
    color: #F7F0E6;
    font-size: 17px;
    margin-bottom: 14px;
}
.footer-links a {
    display: block;
    color: rgba(247,240,230,0.78);
    margin: 8px 0;
}
.footer-links a:hover {
    color: #D2B17D;
}
.footer-btn {
    margin-top: 10px;
}
.footer-warning {
    border-top: 1px solid rgba(247,240,230,0.12);
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
}
.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.42);
    opacity: 0;
    visibility: hidden;
    z-index: 2100;
    transition: all .25s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(84vw, 320px);
    background: #FFFFFF;
    z-index: 2200;
    transform: translateX(-102%);
    transition: transform .28s ease;
    box-shadow: 18px 0 40px rgba(47,42,36,0.22);
    overflow-y: auto;
}
.drawer-open .drawer-mask {
    opacity: 1;
    visibility: visible;
}
.drawer-open .mobile-drawer {
    transform: translateX(0);
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(185,149,99,0.14);
}
.drawer-logo img {
    max-height: 46px;
    width: auto;
}
.drawer-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #F3EFE8;
    color: #3D352B;
    font-size: 24px;
}
.drawer-nav {
    padding: 14px;
}
.drawer-nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: #3D352B;
    font-weight: 700;
}
.drawer-nav a:hover,
.drawer-nav a.active {
    background: #F3EFE8;
    color: #B99563;
}
.drawer-note {
    margin: 0 14px 22px;
    padding: 14px;
    border-radius: 16px;
    background: #FAF8F4;
    color: #8E8579;
    font-size: 13px;
}
.drawer-open {
    overflow: hidden;
}
.register-panel {
    border-radius: 26px;
    padding: clamp(26px, 5vw, 46px);
    background: linear-gradient(135deg, #FFFFFF 0%, #F3EFE8 100%);
    border: 1px solid rgba(185,149,99,0.18);
    box-shadow: 0 14px 36px rgba(92,73,50,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
@media (max-width: 1100px) {
    .desktop-nav {
        gap: 0;
    }
    .nav-link {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }
    .header-inner {
        gap: 14px;
    }
}
@media (max-width: 920px) {
    .header-inner {
        height: 70px;
        justify-content: space-between;
    }
    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }
    .desktop-nav {
        display: none;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        max-height: 46px;
    }
    .header-btn {
        min-height: 38px;
        padding: 0 17px;
    }
    .hero-card,
    .page-hero,
    .footer-inner,
    .register-panel {
        grid-template-columns: 1fr;
    }
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-head {
        display: block;
    }
}
@media (max-width: 640px) {
    .container,
    .header-inner,
    .footer-inner,
    .footer-warning,
    .page-hero {
        width: min(100% - 24px, 1200px);
    }
    .section {
        padding: 42px 0;
    }
    .banner-slider {
        margin: 18px 12px 28px;
        border-radius: 18px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    .slider-btn.prev {
        left: 10px;
    }
    .slider-btn.next {
        right: 10px;
    }
    .slider-dots {
        bottom: 10px;
    }
    .hero-card,
    .page-hero {
        padding: 24px;
        border-radius: 20px;
    }
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .notice-card,
    .faq-item,
    .step-card,
    .contact-card {
        padding: 20px;
        border-radius: 20px;
    }
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .main-btn {
        min-height: 40px;
        padding: 0 18px;
    }
    .register-panel {
        display: block;
    }
    .register-panel .main-btn {
        margin-top: 14px;
    }
}
