* {
    box-sizing: border-box;
}
:root {
    --bg: #F7F6F2;
    --white: #FFFFFF;
    --soft: #F3EFE8;
    --soft-2: #EFE8DD;
    --soft-3: #FAF8F4;
    --title: #B99563;
    --nav: #3D352B;
    --text: #2F2D2A;
    --muted: #6B6256;
    --light-text: #8E8579;
    --gold: #D2B17D;
    --footer: #2F2A24;
    --footer-text: #F7F0E6;
    --border: rgba(185,149,99,0.18);
    --shadow: 0 14px 36px rgba(92,73,50,0.12);
    --btn: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.72;
    padding-top: 86px;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.site-header {
    position: fixed;
    inset: 0 0 auto 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));
    height: 86px;
    margin: 0 auto;
    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;
}
.nav {
    color: var(--nav);
}
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
}
.desktop-nav > a,
.nav-drop-btn {
    position: relative;
    padding: 28px 10px 26px;
    border: 0;
    background: transparent;
    color: #3D352B;
    font: inherit;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}
.desktop-nav > a::after,
.has-dropdown > .nav-drop-btn::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 18px;
    height: 2px;
    background: transparent;
    border-radius: 2px;
}
.desktop-nav > a.active,
.nav-item.active > .nav-drop-btn,
.nav a.active,
.highlight,
.text-link {
    color: #B99563;
}
.desktop-nav > a.active::after,
.nav-item.active > .nav-drop-btn::after,
.desktop-nav > a:hover::after,
.has-dropdown:hover > .nav-drop-btn::after,
.has-dropdown.open > .nav-drop-btn::after {
    background: #B99563;
}
.nav-item {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    min-width: 172px;
    transform: translateX(-50%) translateY(10px);
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 46px rgba(92,73,50,0.16);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 2500;
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #3D352B;
    font-weight: 600;
    line-height: 1.4;
}
.dropdown-menu a:hover {
    color: #B99563;
    background: #FAF8F4;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(169,129,82,0.24);
    border: 0;
    white-space: nowrap;
}
.main-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(169,129,82,0.28);
}
.header-btn {
    flex: 0 0 auto;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: #F3EFE8;
    border-radius: 12px;
    padding: 10px;
    flex: 0 0 auto;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #3D352B;
    border-radius: 2px;
}
.drawer-mask {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0,0,0,.42);
}
.mobile-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 84vw;
    max-width: 320px;
    z-index: 2200;
    background: #FFFFFF;
    transform: translateX(-104%);
    transition: transform .28s ease;
    box-shadow: 18px 0 42px rgba(47,42,36,.24);
    overflow-y: auto;
}
.mobile-drawer.open {
    transform: translateX(0);
}
body.drawer-open {
    overflow: hidden;
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
    border-bottom: 1px solid var(--border);
}
.drawer-logo img {
    max-height: 46px;
    width: auto;
}
.drawer-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #F3EFE8;
    color: #3D352B;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.drawer-nav {
    padding: 12px 14px 28px;
}
.drawer-nav a {
    display: block;
    padding: 12px 12px;
    border-bottom: 1px solid rgba(185,149,99,.12);
    color: #3D352B;
    font-weight: 650;
}
.site-main {
    min-height: 60vh;
}
.section,
.inner-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 48px;
}
.section-head {
    max-width: 820px;
    margin-bottom: 24px;
}
h1,
h2,
h3,
.section-title {
    color: #B99563;
    line-height: 1.28;
    margin: 0 0 14px;
    letter-spacing: .02em;
}
h1 {
    font-size: clamp(32px, 5vw, 58px);
}
h2,
.section-title {
    font-size: clamp(24px, 3vw, 36px);
}
h3 {
    font-size: 20px;
}
p {
    margin: 0 0 14px;
}
.lead {
    font-size: 18px;
    color: var(--muted);
}
.muted {
    color: var(--muted);
}
.small-text {
    color: var(--light-text);
    font-size: 14px;
}
.tag,
.number-badge {
    color: #D2B17D;
}
.hero-tag,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #F3EFE8;
    color: #B99563;
    font-weight: 700;
    font-size: 14px;
}
.banner-slider {
    max-width: 1200px;
    height: clamp(230px, 42vw, 520px);
    margin: 28px auto 36px;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(92,73,50,0.12);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.banner-track,
.banner-slide {
    width: 100%;
    height: 100%;
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .42s ease;
    background: #FFFFFF;
}
.banner-slide.active {
    opacity: 1;
    z-index: 2;
}
.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #B99563;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(92,73,50,.14);
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(185,149,99,.38);
    cursor: pointer;
    transition: width .22s ease, background .22s ease;
}
.slider-dot.active {
    width: 28px;
    background: #B99563;
}
.hero-split,
.brand-welcome,
.app-feature,
.about-summary,
.alert-panel,
.inner-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: 30px;
    align-items: center;
    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: 26px;
    padding: clamp(24px, 4vw, 46px);
}
.hero-img,
.card-img {
    border-radius: 22px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(185,149,99,.12);
}
.hero-img img,
.card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #FFFFFF;
}
.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}
.ghost-link {
    color: #B99563;
    font-weight: 700;
}
.grid {
    display: grid;
    gap: 20px;
}
.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,
.faq-card,
.notice-card,
.step-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: 22px;
    padding: 24px;
}
.zone-card {
    min-height: 190px;
}
.zone-card h3,
.info-card h3,
.card h3,
.faq-card h3,
.step-card h3 {
    color: #B99563;
}
.zone-card p,
.info-card p,
.card p,
.faq-card p,
.step-card p,
.review-card p {
    color: #6B6256;
}
.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: #B99563;
    font-weight: 700;
}
.soft-band {
    background: #F3EFE8;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
}
.alt-band {
    background: #EFE8DD;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
}
.number-badge {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FAF8F4;
    color: #D2B17D;
    font-weight: 800;
    margin-bottom: 12px;
}
.review-card {
    position: relative;
}
.review-card::before {
    content: "“";
    position: absolute;
    right: 22px;
    top: 10px;
    color: rgba(185,149,99,.18);
    font-size: 58px;
    line-height: 1;
    font-family: Georgia, serif;
}
.review-name {
    display: block;
    margin-top: 14px;
    color: #B99563;
    font-weight: 700;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 24px;
    color: #6B6256;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D2B17D;
    box-shadow: 0 0 0 5px rgba(210,177,125,.16);
}
.faq-list {
    display: grid;
    gap: 16px;
}
.faq-card {
    box-shadow: none;
}
.legal-reminder {
    background: #FAF8F4;
    border: 1px solid rgba(185,149,99,0.24);
    border-radius: 24px;
    padding: 26px;
}
.page-hero-title {
    margin-bottom: 16px;
}
.inner-page .inner-hero {
    margin-bottom: 48px;
}
.site-footer {
    background: #2F2A24;
    color: #F7F0E6;
    margin-top: 72px;
}
.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 30px;
    display: grid;
    grid-template-columns: 1.6fr .8fr .8fr 1fr;
    gap: 26px;
}
.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 14px;
}
.footer-brand p,
.footer-note p,
.footer-bottom,
.footer-col a {
    color: rgba(247,240,230,.82);
}
.footer-col h3 {
    color: #F7F0E6;
    font-size: 18px;
}
.footer-col a {
    display: block;
    padding: 4px 0;
}
.footer-col a:hover {
    color: #D2B17D;
}
.footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(247,240,230,.16);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}
@media (max-width: 1080px) {
    .desktop-nav { gap: 0; }
    .desktop-nav > a,
    .nav-drop-btn { padding-left: 7px; padding-right: 7px; font-size: 15px; }
    .header-inner { gap: 14px; }
}
@media (max-width: 920px) {
    body { padding-top: 74px; }
    .header-inner {
        height: 74px;
        width: min(100% - 20px, 1200px);
        display: grid;
        grid-template-columns: 48px 1fr auto;
        gap: 10px;
    }
    .menu-toggle { display: inline-block; }
    .desktop-nav { display: none; }
    .logo { justify-content: center; }
    .logo img { max-height: 46px; }
    .header-btn { padding: 9px 17px; min-height: 40px; }
    .banner-slider {
        width: min(100% - 20px, 1200px);
        margin-top: 18px;
        height: clamp(190px, 52vw, 360px);
        border-radius: 18px;
    }
    .slider-arrow { width: 38px; height: 38px; font-size: 26px; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .hero-split,
    .brand-welcome,
    .app-feature,
    .about-summary,
    .alert-panel,
    .inner-hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 620px) {
    .section,
    .inner-section {
        width: min(100% - 24px, 1200px);
        margin-bottom: 34px;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .faq-card,
    .notice-card,
    .step-card {
        padding: 20px;
        border-radius: 18px;
    }
    .banner-slider {
        height: 220px;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom span {
        display: block;
        margin: 4px 0;
    }
    .hero-actions,
    .action-row {
        align-items: stretch;
    }
    .hero-actions .main-btn,
    .action-row .main-btn {
        width: 100%;
    }
}
