* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #F7F6F2;
    color: #2F2D2A;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    padding-top: 86px;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
p {
    margin: 0 0 14px;
}
h1, h2, h3, .section-title {
    color: #B99563;
    line-height: 1.28;
    margin: 0 0 16px;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(92,73,50,0.10);
}
.header-inner {
    max-width: 1240px;
    min-height: 86px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.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;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    white-space: nowrap;
}
.desktop-nav > a,
.nav-dropdown > button {
    position: relative;
    border: 0;
    background: transparent;
    color: #3D352B;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 28px 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.desktop-nav > a::after,
.nav-dropdown > button::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 21px;
    height: 2px;
    background: #B99563;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown:hover > button,
.nav-dropdown.active > button,
.nav-dropdown:focus-within > button {
    color: #B99563;
}
.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.nav-dropdown:hover > button::after,
.nav-dropdown.active > button::after,
.nav-dropdown:focus-within > button::after {
    transform: scaleX(1);
}
.nav-dropdown {
    position: relative;
}
.dropdown-panel {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    min-width: 172px;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(185,149,99,0.16);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(92,73,50,0.16);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .18s ease;
    z-index: 1010;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #3D352B;
    font-weight: 700;
}
.dropdown-panel a:hover,
.dropdown-panel a.active {
    background: #FAF8F4;
    color: #B99563;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
    color: #FFFFFF;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(169,129,82,0.26);
    transition: transform .2s ease, box-shadow .2s ease;
    border: 0;
    cursor: pointer;
}
.main-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(169,129,82,0.32);
}
.header-register {
    flex: 0 0 auto;
    min-width: 86px;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(185,149,99,0.22);
    border-radius: 14px;
    background: #FFFFFF;
    padding: 9px;
    flex: 0 0 auto;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #3D352B;
    border-radius: 8px;
}
.page-main {
    min-height: 60vh;
}
.hero-section {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(92,73,50,0.12);
    overflow: hidden;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 20px;
    align-items: center;
    padding: 52px;
}
.hero-text .eyebrow,
.section-eyebrow,
.tag,
.number-badge {
    color: #D2B17D;
    font-weight: 800;
    letter-spacing: .04em;
}
.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin: 10px 0 18px;
}
.hero-text p {
    color: #6B6256;
    font-size: 17px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}
.text-link {
    color: #B99563;
    font-weight: 800;
}
.hero-media,
.inner-media,
.image-panel {
    background: #FAF8F4;
    border-radius: 20px;
    border: 1px solid rgba(185,149,99,0.16);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}
.hero-media img,
.inner-media img,
.image-panel img,
.card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.section {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 22px;
}
.section-head {
    max-width: 760px;
    margin-bottom: 22px;
}
.section-head p {
    color: #6B6256;
    font-size: 16px;
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card,
.step-card,
.service-box {
    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: 20px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card,
.step-card,
.service-box {
    padding: 24px;
}
.zone-card h3,
.card h3,
.info-card h3,
.notice-card h3,
.step-card h3,
.service-box h3 {
    font-size: 21px;
}
.zone-card p,
.card p,
.info-card p,
.review-card p,
.notice-card p,
.step-card p,
.service-box p,
.faq-item p {
    color: #6B6256;
}
.entry-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 190px;
}
.entry-card a {
    margin-top: auto;
}
.product-card {
    padding: 0;
    overflow: hidden;
}
.product-card .card-body {
    padding: 22px;
}
.card-image {
    background: #FAF8F4;
}
.card-image img {
    width: 100%;
}
.image-text {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: center;
}
.image-text.reverse {
    grid-template-columns: 1.05fr .95fr;
}
.text-panel {
    padding: 30px;
}
.text-panel p,
.inner-hero p {
    color: #6B6256;
}
.check-list,
.clean-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}
.check-list li,
.clean-list li {
    position: relative;
    padding-left: 28px;
    margin: 10px 0;
    color: #2F2D2A;
}
.check-list li::before,
.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D2B17D;
    box-shadow: 0 0 0 5px rgba(210,177,125,0.16);
}
.steps {
    counter-reset: step;
}
.step-card {
    position: relative;
    padding-top: 62px;
}
.step-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 22px;
    left: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #EFE8DD;
    color: #B99563;
    display: grid;
    place-items: center;
    font-weight: 900;
}
.review-card strong {
    display: block;
    color: #3D352B;
    margin-top: 12px;
}
.notice-card {
    background: #F3EFE8;
}
.faq-list {
    display: grid;
    gap: 16px;
}
.faq-item h3 {
    font-size: 19px;
    margin-bottom: 8px;
}
.inner-hero {
    max-width: 1200px;
    margin: 28px auto 36px;
    padding: 0 22px;
}
.inner-hero-box {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: center;
    padding: 42px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(185,149,99,0.18);
    box-shadow: 0 18px 40px rgba(92,73,50,0.12);
}
.inner-hero h1 {
    font-size: clamp(30px, 4vw, 46px);
}
.breadcrumb {
    color: #8E8579;
    font-weight: 700;
    margin-bottom: 12px;
}
.breadcrumb a {
    color: #B99563;
}
.subtle-bg {
    background: #FAF8F4;
    border-radius: 26px;
    padding: 28px;
}
.service-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}
.service-strip .service-box {
    box-shadow: none;
}
.legal-band {
    max-width: 1200px;
    margin: 0 auto 42px;
    padding: 24px 22px;
}
.legal-band .notice-card {
    padding: 26px;
}
.site-footer {
    background: #2F2A24;
    color: #F7F0E6;
    margin-top: 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 22px 30px;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 28px;
}
.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 16px;
}
.footer-brand p,
.footer-contact p,
.footer-links a,
.footer-note {
    color: rgba(247,240,230,0.78);
}
.footer-links h3,
.footer-contact h3 {
    color: #F7F0E6;
    font-size: 18px;
}
.footer-links a {
    display: block;
    margin: 8px 0;
}
.footer-links a:hover {
    color: #D2B17D;
}
.footer-btn {
    margin-top: 14px;
}
.footer-bottom {
    border-top: 1px solid rgba(247,240,230,0.12);
    text-align: center;
    padding: 18px;
    color: rgba(247,240,230,0.72);
}
.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.44);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1100;
    transform: translateX(-104%);
    transition: transform .25s ease;
    box-shadow: 18px 0 34px rgba(0,0,0,0.18);
    overflow-y: auto;
}
.drawer-open .drawer-mask {
    opacity: 1;
    visibility: visible;
}
.drawer-open .mobile-drawer {
    transform: translateX(0);
}
body.drawer-open {
    overflow: hidden;
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(185,149,99,0.16);
    background: #F3EFE8;
}
.drawer-logo img {
    max-height: 44px;
    width: auto;
}
.drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: #FFFFFF;
    color: #3D352B;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.drawer-nav {
    padding: 12px 18px 26px;
}
.drawer-nav a {
    display: block;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(185,149,99,0.12);
    color: #3D352B;
    font-weight: 800;
}
.drawer-nav a.active {
    color: #B99563;
}
@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .header-inner {
        justify-content: space-between;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        max-height: 46px;
    }
}
@media (max-width: 900px) {
    body {
        padding-top: 76px;
    }
    .header-inner {
        min-height: 76px;
        padding: 0 14px;
    }
    .header-register {
        min-width: 72px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero-grid,
    .inner-hero-box,
    .image-text,
    .image-text.reverse {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .service-strip,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .section {
        margin-bottom: 30px;
    }
}
@media (max-width: 560px) {
    .hero-section,
    .inner-hero {
        margin-top: 18px;
    }
    .hero-grid,
    .inner-hero-box {
        padding: 22px;
        border-radius: 20px;
    }
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .main-btn {
        width: fit-content;
    }
    .hero-actions .main-btn,
    .footer-btn {
        width: 100%;
    }
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .faq-item,
    .notice-card,
    .step-card,
    .service-box,
    .text-panel {
        padding: 20px;
    }
    .logo img {
        max-height: 40px;
    }
}
