* {
    box-sizing: border-box;
}
:root {
    --bg: #F7F6F2;
    --nav-bg: #FFFFFF;
    --soft-1: #FFFFFF;
    --soft-2: #F3EFE8;
    --soft-3: #EFE8DD;
    --soft-4: #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);
    --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.78;
    padding-top: 88px;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
h1, h2, h3, .section-title {
    color: var(--title);
    margin: 0 0 14px;
    line-height: 1.28;
    font-weight: 800;
}
p {
    margin: 0 0 14px;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(92,73,50,0.10);
}
.nav-shell {
    width: min(1200px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}
.logo,
.drawer-logo,
.footer-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}
.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;
}
.desktop-nav > a,
.nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 24px 11px 23px;
    color: #3D352B;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}
.desktop-nav a.active,
.desktop-nav > a:hover,
.nav-item:hover > a,
.text-link,
.highlight {
    color: #B99563;
}
.desktop-nav a.active::after,
.nav-item > a.active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 16px;
    height: 3px;
    border-radius: 999px;
    background: #B99563;
}
.nav-item {
    position: relative;
}
.drop-mark {
    font-size: 12px;
    color: #B99563;
}
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 172px;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(92,73,50,0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 3000;
}
.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #3D352B;
    font-size: 14px;
    font-weight: 700;
}
.dropdown-panel a:hover {
    background: #F3EFE8;
    color: #B99563;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #E0C8A2 0%, #C9A978 55%, #A98152 100%);
    color: #FFFFFF;
    font-weight: 800;
    border: 0;
    box-shadow: 0 12px 24px rgba(169,129,82,0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(169,129,82,0.30);
}
.header-register {
    flex: 0 0 auto;
    min-width: 86px;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #FFFFFF;
    padding: 9px;
    flex: 0 0 auto;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #3D352B;
    border-radius: 99px;
}
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0,0,0,0.42);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2200;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: 16px 0 36px rgba(0,0,0,0.18);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}
.drawer-open {
    overflow: hidden;
}
.drawer-open .drawer-overlay {
    opacity: 1;
    visibility: visible;
}
.drawer-open .mobile-drawer {
    transform: translateX(0);
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: #F3EFE8;
}
.drawer-logo img {
    max-height: 46px;
    width: auto;
}
.drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #FFFFFF;
    color: #3D352B;
    font-size: 28px;
    line-height: 1;
}
.drawer-nav {
    display: grid;
    padding: 12px 14px 24px;
}
.drawer-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(185,149,99,0.12);
    color: #3D352B;
    font-weight: 700;
}
.drawer-nav a:hover {
    color: #B99563;
}
.section-wrap,
.page-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}
.section-block {
    margin: 64px auto;
}
.section-head {
    max-width: 800px;
    margin: 0 auto 28px;
    text-align: center;
}
.section-kicker,
.tag,
.number-badge {
    color: #D2B17D;
    font-weight: 800;
    letter-spacing: 0.03em;
}
.section-head p,
.muted {
    color: #6B6256;
}
.banner-slider {
    width: min(1200px, calc(100% - 32px));
    height: clamp(260px, 42vw, 540px);
    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 0.55s ease;
    pointer-events: none;
}
.banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}
.banner-copy {
    position: absolute;
    left: clamp(18px, 5vw, 58px);
    bottom: clamp(18px, 4vw, 48px);
    max-width: 480px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(92,73,50,0.12);
}
.banner-copy strong {
    display: block;
    color: #B99563;
    font-size: clamp(22px, 3.5vw, 42px);
    line-height: 1.2;
    margin-bottom: 8px;
}
.banner-copy span {
    color: #6B6256;
    font-weight: 700;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    color: #B99563;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(92,73,50,0.12);
}
.slider-arrow.prev {
    left: 18px;
}
.slider-arrow.next {
    right: 18px;
}
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(185,149,99,0.34);
    cursor: pointer;
}
.slider-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #B99563;
}
.split-section,
.inner-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
}
.welcome-card,
.hero-copy,
.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.notice-card,
.step-card,
.feature-tile,
.contact-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: 24px;
}
.welcome-card,
.hero-copy {
    padding: clamp(24px, 4vw, 44px);
}
.hero-copy h1,
.welcome-card h1 {
    font-size: clamp(30px, 4.3vw, 52px);
}
.hero-copy p,
.welcome-card p {
    color: #6B6256;
    font-size: 17px;
}
.media-card,
.hero-figure {
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.media-card img,
.hero-figure img,
.card-media img,
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}
.media-card {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-card img {
    max-height: 440px;
}
.hero-figure {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-figure img {
    max-height: 460px;
}
.card-grid,
.zone-grid,
.review-grid,
.faq-grid,
.step-grid,
.service-grid,
.feature-grid {
    display: grid;
    gap: 20px;
}
.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.zone-grid,
.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.notice-card,
.step-card,
.feature-tile,
.contact-box {
    padding: 22px;
}
.card h3,
.zone-card h3,
.info-card h3,
.review-card h3,
.faq-card h3,
.step-card h3,
.feature-tile h3,
.contact-box h3 {
    font-size: 20px;
}
.card p,
.zone-card p,
.info-card p,
.review-card p,
.faq-card p,
.step-card p,
.feature-tile p,
.contact-box p {
    color: #6B6256;
}
.card-media {
    height: 170px;
    margin: -6px -6px 16px;
    border-radius: 18px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(185,149,99,0.12);
}
.text-link {
    display: inline-flex;
    margin-top: 8px;
    font-weight: 800;
}
.soft-panel {
    background: #F3EFE8;
    border-radius: 28px;
    padding: clamp(26px, 5vw, 52px);
    border: 1px solid rgba(185,149,99,0.18);
}
.alt-panel {
    background: #FAF8F4;
    border-radius: 28px;
    padding: clamp(26px, 5vw, 52px);
    border: 1px solid rgba(185,149,99,0.18);
}
.notice-card {
    background: #EFE8DD;
}
.notice-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}
.notice-list li {
    position: relative;
    padding-left: 24px;
    color: #6B6256;
}
.notice-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.74em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D2B17D;
}
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F3EFE8;
    margin-bottom: 12px;
}
.inner-hero {
    margin: 28px auto 52px;
}
.page-main {
    padding-bottom: 32px;
}
.breadcrumb {
    margin-bottom: 12px;
    color: #8E8579;
    font-size: 14px;
}
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(185,149,99,0.32);
    color: #B99563;
    background: #FFFFFF;
    font-weight: 800;
}
.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}
.check-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.74);
    color: #6B6256;
    border: 1px solid rgba(185,149,99,0.14);
}
.contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.site-footer {
    margin-top: 72px;
    background: #2F2A24;
    color: #F7F0E6;
}
.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 34px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}
.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 18px;
}
.footer-brand p,
.footer-bottom p {
    color: rgba(247,240,230,0.82);
}
.footer-col {
    display: grid;
    align-content: start;
    gap: 9px;
}
.footer-col h3 {
    color: #F7F0E6;
    font-size: 18px;
    margin-bottom: 8px;
}
.footer-col a {
    color: rgba(247,240,230,0.82);
}
.footer-col a:hover {
    color: #E0C8A2;
}
.footer-btn {
    margin-top: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(247,240,230,0.14);
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
}
@media (max-width: 1120px) {
    .desktop-nav > a,
    .nav-item > a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }
    .nav-shell {
        gap: 14px;
    }
}
@media (max-width: 980px) {
    body {
        padding-top: 76px;
    }
    .nav-shell {
        min-height: 70px;
        width: min(100% - 22px, 1200px);
        justify-content: space-between;
    }
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        max-height: 44px;
    }
    .header-register {
        min-width: 72px;
        padding: 0 18px;
        min-height: 40px;
    }
    .split-section,
    .inner-hero,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .card-grid,
    .zone-grid,
    .feature-grid,
    .review-grid,
    .faq-grid,
    .step-grid,
    .service-grid,
    .contact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .banner-copy {
        max-width: min(420px, calc(100% - 36px));
    }
}
@media (max-width: 640px) {
    body {
        padding-top: 72px;
    }
    .section-block {
        margin: 44px auto;
    }
    .banner-slider {
        width: min(100% - 20px, 1200px);
        height: clamp(230px, 62vw, 360px);
        margin-top: 18px;
        border-radius: 18px;
    }
    .banner-copy {
        left: 12px;
        right: 12px;
        bottom: 42px;
        padding: 13px 14px;
    }
    .banner-copy strong {
        font-size: 22px;
    }
    .banner-copy span {
        display: none;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .slider-arrow.prev {
        left: 10px;
    }
    .slider-arrow.next {
        right: 10px;
    }
    .card-grid,
    .zone-grid,
    .feature-grid,
    .review-grid,
    .faq-grid,
    .step-grid,
    .service-grid,
    .contact-list {
        grid-template-columns: 1fr;
    }
    .welcome-card,
    .hero-copy,
    .soft-panel,
    .alt-panel,
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .faq-card,
    .notice-card,
    .step-card,
    .feature-tile,
    .contact-box {
        border-radius: 18px;
    }
    .media-card,
    .hero-figure {
        min-height: 240px;
        border-radius: 18px;
    }
    .card-media {
        height: 150px;
    }
    .section-wrap,
    .page-wrap {
        width: min(100% - 22px, 1200px);
    }
    .footer-inner {
        gap: 24px;
    }
}
