:root {
    --bg: #F7F6F2;
    --white: #FFFFFF;
    --soft: #F3EFE8;
    --soft-2: #EFE8DD;
    --soft-3: #FAF8F4;
    --title: #B99563;
    --nav: #3D352B;
    --text: #2F2D2A;
    --muted: #6B6256;
    --light-text: #8E8579;
    --accent: #D2B17D;
    --footer: #2F2A24;
    --footer-text: #F7F0E6;
    --border: rgba(185,149,99,0.18);
    --shadow: 0 14px 36px rgba(92,73,50,0.12);
    --button: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

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.75;
    overflow-x: hidden;
}

body.drawer-open {
    overflow: 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: var(--title);
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(30px, 5vw, 54px);
}

h2, .section-title {
    font-size: clamp(24px, 3.4vw, 38px);
}

h3 {
    font-size: 20px;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    background: var(--title);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    z-index: 9999;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

.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 {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 78px;
    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 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
}

.desktop-nav > a,
.nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    color: #3D352B;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}

.desktop-nav > a:hover,
.nav-item:hover > a,
.desktop-nav a.active,
.nav-item > a.active {
    color: var(--title);
    background: rgba(185,149,99,0.08);
}

.desktop-nav > a.active::after,
.nav-item > a.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    border-radius: 99px;
    background: var(--title);
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item > a::before {
    content: "";
}

.has-dropdown > a::after {
    content: "";
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 174px;
    transform: translateX(-50%) translateY(8px);
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(92,73,50,0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 3000;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--nav);
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--title);
    background: var(--soft-3);
}

.main-btn,
.text-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--button);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(169,129,82,0.24);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.main-btn:hover,
.text-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(169,129,82,0.30);
}

.header-register {
    flex: 0 0 auto;
    min-width: 84px;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--soft);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex: 0 0 auto;
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--nav);
    border-radius: 99px;
}

.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.42);
    z-index: 2500;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 2600;
    transform: translateX(-105%);
    transition: transform .28s ease;
    box-shadow: 16px 0 36px rgba(47,42,36,0.20);
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-head {
    height: 74px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.drawer-logo img {
    max-height: 46px;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: var(--soft);
    color: var(--nav);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.drawer-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--nav);
    font-weight: 700;
    background: var(--soft-3);
}

.drawer-nav a:hover {
    color: var(--title);
    background: var(--soft);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.section {
    padding: 74px 0;
}

.section.tight {
    padding: 48px 0;
}

.section-head {
    max-width: 780px;
    margin-bottom: 32px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow,
.tag,
.number-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 14px;
}

.lead {
    font-size: 18px;
    color: var(--muted);
}

.highlight,
.text-link {
    color: var(--title);
}

.text-link {
    font-weight: 800;
    border-bottom: 1px solid rgba(185,149,99,0.42);
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.hero-panel,
.notice-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: var(--radius-md);
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card {
    padding: 24px;
}

.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 h3,
.zone-card h3,
.info-card h3,
.notice-card h3,
.faq-item h3 {
    margin-bottom: 10px;
}

.card p,
.zone-card p,
.info-card p,
.review-card p,
.faq-item p,
.notice-card p {
    color: var(--muted);
}

.card .text-link,
.zone-card .text-link,
.info-card .text-link {
    margin-top: 8px;
    display: inline-flex;
}

.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;
    z-index: 1;
}

.slider-track {
    position: relative;
    height: clamp(260px, 42vw, 520px);
    background: #FFFFFF;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: var(--title);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(92,73,50,0.16);
    z-index: 2;
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(61,53,43,0.30);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.slider-dot.active {
    width: 28px;
    background: var(--title);
}

.hero-panel {
    overflow: hidden;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 34px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
}

.panel-content {
    padding: 36px;
}

.panel-image {
    min-height: 340px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-image img,
.content-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}

.content-image {
    min-height: 270px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card-img {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 26px;
    padding: 0;
    list-style: none;
}

.pill-list li {
    color: var(--nav);
    background: var(--soft);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.soft-bg {
    background: var(--soft);
}

.soft-bg-2 {
    background: var(--soft-3);
}

.notice-strip {
    padding: 18px 22px;
    border-radius: 18px;
    background: var(--soft-2);
    color: var(--muted);
    border: 1px solid rgba(185,149,99,0.20);
}

.steps {
    counter-reset: step;
}

.step-card {
    position: relative;
    padding-left: 72px;
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 22px;
    top: 24px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--button);
    color: #fff;
    font-weight: 800;
}

.review-card {
    position: relative;
}

.review-card::before {
    content: "“";
    position: absolute;
    right: 20px;
    top: 10px;
    color: rgba(185,149,99,0.18);
    font-size: 72px;
    line-height: 1;
    font-family: Georgia, serif;
}

.review-author {
    color: var(--title);
    font-weight: 800;
    margin-top: 12px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    box-shadow: none;
}

.page-hero {
    padding: 56px 0 28px;
}

.page-hero .hero-panel {
    padding: 0;
}

.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--light-text);
    font-weight: 700;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--title);
}

.kv-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.kv-list li {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--soft-3);
    color: var(--muted);
    border: 1px solid var(--border);
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.site-footer {
    background: #2F2A24;
    color: #F7F0E6;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 58px 22px 34px;
    display: grid;
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.4fr);
    gap: 46px;
}

.footer-logo img {
    max-height: 52px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-note {
    color: rgba(247,240,230,0.78);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.footer-links h3 {
    color: #F7F0E6;
    font-size: 17px;
    margin-bottom: 14px;
}

.footer-links a {
    display: block;
    color: rgba(247,240,230,0.76);
    margin: 8px 0;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(247,240,230,0.12);
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 22px 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: rgba(247,240,230,0.70);
    font-size: 14px;
}

.register-card {
    max-width: 780px;
    margin: 60px auto;
    padding: 36px;
    text-align: center;
}

@media (max-width: 1080px) {
    .desktop-nav > a,
    .nav-item > a {
        padding: 0 9px;
        font-size: 14px;
    }
    .header-inner {
        gap: 12px;
    }
}

@media (max-width: 920px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .header-inner {
        min-height: 68px;
        justify-content: space-between;
        padding: 0 14px;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        max-height: 42px;
    }
    .header-register {
        min-width: 74px;
        padding: 9px 16px;
        min-height: 38px;
    }
    .section {
        padding: 54px 0;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .split,
    .split.reverse,
    .footer-inner,
    .footer-links {
        grid-template-columns: 1fr;
    }
    .panel-content {
        padding: 26px;
    }
    .panel-image {
        min-height: 260px;
    }
    .slider-track {
        height: clamp(220px, 58vw, 380px);
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }
    .banner-slider {
        margin: 18px 16px 24px;
        border-radius: 16px;
    }
    .slider-track {
        height: 210px;
    }
    .slider-btn.prev {
        left: 8px;
    }
    .slider-btn.next {
        right: 8px;
    }
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .faq-item,
    .notice-card {
        padding: 20px;
    }
    .step-card {
        padding-left: 20px;
        padding-top: 66px;
    }
    .step-card::before {
        left: 20px;
    }
    .footer-bottom {
        display: grid;
    }
}
