:root {
    --bg: #FFF8F0;
    --ink: #2A1F1A;
    --heading: #24130C;
    --muted: #75645A;
    --soft: #A9978C;
    --brand: #FF6B35;
    --purple: #2B1A3F;
    --teal: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --pale-teal: #EFFFFA;
    --pale-gold: #FFF1C7;
    --card: #FFFFFF;
    --border: rgba(255, 107, 53, .18);
    --shadow: 0 20px 46px rgba(97, 45, 16, .14);
    --radius: 24px;
    --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 12000; background: #fff; color: #111; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(38, 20, 12, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(97, 45, 16, .16);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-logo { display: inline-flex; align-items: center; gap: 10px; color: #FFF3E8; min-width: 132px; }
.site-logo img { width: auto; max-width: 84px; max-height: 44px; object-fit: contain; }
.site-logo strong { font-size: 1.18rem; letter-spacing: .08em; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; }
.nav-core a { color: #FFF3E8; border-radius: 999px; padding: 8px 12px; white-space: nowrap; transition: .2s ease; }
.nav-core a:hover, .nav-core a.active { color: #fff; background: rgba(0, 229, 176, .16); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    box-shadow: 0 14px 32px rgba(255, 107, 53, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255, 107, 53, .3); }
.main-btn.secondary { background: var(--purple); box-shadow: none; }
.main-btn.compact { min-height: 42px; padding: 0 18px; font-size: .94rem; }
.menu-toggle { width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.09); display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 3px; }
.mobile-menu-toggle { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(18, 9, 5, .55); opacity: 0; transition: opacity .25s ease; }
.drawer-overlay.show { opacity: 1; }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 10001; width: min(390px, 90vw); height: 100dvh; background: #fffaf5; box-shadow: -24px 0 60px rgba(32, 16, 8, .28); transform: translateX(105%); transition: transform .28s ease; padding: 22px; overflow-y: auto; }
.site-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; font-size: 1.25rem; font-weight: 800; color: var(--heading); padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.drawer-close { border: 0; background: var(--purple); color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 20px 0; }
.drawer-nav a { padding: 11px 13px; border-radius: 14px; color: var(--ink); background: #fff; border: 1px solid var(--border); }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--pale-teal); color: var(--purple); border-color: rgba(0, 229, 176, .3); }
.drawer-note { margin-top: 10px; background: var(--pale-gold); border-radius: 18px; padding: 17px; color: #5a3e16; }
.drawer-note p { margin: 6px 0 0; font-size: .92rem; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 82px 0; }
.section.tight { padding: 56px 0; }
.section-alt { background: linear-gradient(180deg, rgba(239,255,250,.72), rgba(255,248,240,.85)); }
.section-dark { background: var(--purple); color: #f8f1ff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--rose); font-size: .86rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.section-kicker::before { content: ''; width: 28px; height: 3px; border-radius: 4px; background: linear-gradient(90deg, var(--brand), var(--teal)); }
h1, h2, h3, .section-title { color: var(--heading); line-height: 1.24; margin-top: 0; }
h1 { font-size: clamp(2.4rem, 6vw, 5.6rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.8rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); max-width: 800px; }
.muted { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 5px; color: var(--brand); font-weight: 700; }
.text-link::after { content: '→'; }
.hero { position: relative; overflow: hidden; padding: 88px 0 72px; background: radial-gradient(circle at 12% 18%, rgba(255,209,102,.55), transparent 28%), radial-gradient(circle at 88% 14%, rgba(0,229,176,.25), transparent 30%), linear-gradient(135deg, #FFF4EA 0%, #F1FFF9 45%, #F8EEFF 100%); }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(2px); opacity: .6; }
.hero::before { width: 220px; height: 220px; background: rgba(184,51,106,.12); right: -60px; bottom: -50px; }
.hero::after { width: 130px; height: 130px; border: 24px solid rgba(255,107,53,.12); left: 45%; top: 28px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero h1 { margin-bottom: 14px; }
.hero-subtitle { font-size: clamp(1.35rem, 2.4vw, 2rem); color: var(--purple); font-weight: 800; margin-bottom: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-points span { background: rgba(255,255,255,.76); border: 1px solid rgba(43,26,63,.1); border-radius: 999px; padding: 8px 13px; font-size: .92rem; color: var(--purple); box-shadow: 0 9px 26px rgba(43,26,63,.08); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 28px 40px rgba(43,26,63,.18)); }
.floating-note { position: absolute; background: rgba(255,255,255,.92); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 18px; padding: 13px 16px; font-size: .88rem; color: var(--purple); }
.floating-note.one { left: -18px; bottom: 15%; }
.floating-note.two { right: -8px; top: 12%; }
.highlight-strip { margin-top: -28px; position: relative; z-index: 2; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 24px; overflow: hidden; }
.highlight-item { padding: 24px; position: relative; }
.highlight-item + .highlight-item::before { content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: var(--border); }
.highlight-item h3 { margin-bottom: 7px; }
.highlight-item p { color: var(--muted); font-size: .93rem; margin: 0; }
.pill-nav { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-link { flex: 1 1 180px; min-height: 96px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 15px 17px; color: var(--ink); transition: .2s ease; }
.pill-link:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(97,45,16,.1); border-color: rgba(0,229,176,.35); }
.pill-link strong { display: block; color: var(--purple); margin-bottom: 4px; }
.pill-link span { color: var(--muted); font-size: .88rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.split.reverse .media { order: 2; }
.media img, .content-img { width: 100%; max-height: 520px; object-fit: contain; border-radius: var(--radius); }
.media-frame { padding: 20px; background: linear-gradient(135deg, rgba(255,209,102,.3), rgba(0,229,176,.18), rgba(184,51,106,.12)); border-radius: 30px; }
.card, .zone-card, .info-card, .review-card { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 22px; }
.card { padding: 27px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; height: 245px; object-fit: contain; background: linear-gradient(135deg, #fff4e9, #effffa); padding: 14px; }
.zone-card-body { padding: 24px; }
.zone-card-body p { color: var(--muted); }
.feature-list { display: grid; gap: 13px; margin: 22px 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 29px; color: var(--muted); }
.feature-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--pale-teal); color: #047e68; font-weight: 900; font-size: .78rem; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 26px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 15px; }
.stat strong { display: block; color: var(--purple); font-size: 1.28rem; }
.stat span { color: var(--muted); font-size: .86rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 24px; }
.review-card p { color: var(--muted); }
.reviewer { display: flex; align-items: center; justify-content: space-between; color: var(--purple); font-size: .9rem; font-weight: 700; }
.faq-list { display: grid; gap: 13px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 0 20px; }
summary { cursor: pointer; list-style: none; font-weight: 800; color: var(--heading); padding: 17px 0; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; float: right; color: var(--brand); font-size: 1.25rem; }
details[open] summary::after { content: '−'; }
details p { color: var(--muted); padding-bottom: 17px; margin: 0; }
.notice { background: linear-gradient(135deg, #FFF1C7, #EFFFFA); border: 1px solid rgba(255,107,53,.16); border-radius: 26px; padding: 30px; }
.notice h2, .notice h3 { margin-bottom: 10px; }
.page-hero { padding: 74px 0 58px; background: radial-gradient(circle at 84% 15%, rgba(0,229,176,.24), transparent 30%), radial-gradient(circle at 12% 40%, rgba(255,209,102,.34), transparent 28%), linear-gradient(135deg, #fff5ed, #f1fff9 55%, #f8efff); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); margin-bottom: 14px; }
.page-hero img { width: 100%; max-height: 460px; object-fit: contain; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--brand); }
.content-prose { max-width: 900px; }
.content-prose p { color: var(--muted); font-size: 1.02rem; }
.service-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.service-point { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px; }
.service-point strong { display: block; color: var(--purple); margin-bottom: 6px; }
.service-point p { margin: 0; color: var(--muted); font-size: .92rem; }
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 15px; align-items: start; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; }
.step::before { content: counter(step, decimal-leading-zero); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--brand), var(--rose)); }
.quote { position: relative; background: var(--purple); color: #fff; border-radius: 24px; padding: 32px; overflow: hidden; }
.quote::after { content: '“'; position: absolute; right: 20px; top: -20px; font-size: 8rem; line-height: 1; color: rgba(255,255,255,.08); }
.quote p { font-size: 1.08rem; position: relative; z-index: 1; }
.quote span { color: var(--gold); font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 26px; }
.contact-card label { display: block; font-weight: 700; margin-bottom: 7px; }
.contact-card input, .contact-card textarea, .contact-card select { width: 100%; border: 1px solid rgba(42,31,26,.16); border-radius: 13px; background: #fffdfb; padding: 12px 14px; margin-bottom: 16px; color: var(--ink); }
.contact-card textarea { min-height: 140px; resize: vertical; }
.contact-card button { border: 0; cursor: pointer; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 62px 0 90px; }
.footer-inner { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.4fr; gap: 70px; }
.footer-brand p { color: rgba(255,243,232,.72); max-width: 430px; }
.footer-logo { margin-bottom: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer-links h2 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-links a { color: rgba(255,243,232,.72); display: block; margin: 8px 0; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { width: min(var(--container), calc(100% - 40px)); margin: 36px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,243,232,.58); font-size: .9rem; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1080px) {
    .nav-core { gap: 0; }
    .nav-core a { padding: 8px 8px; font-size: .92rem; }
    .card-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .nav-core, .desktop-menu-toggle { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .header-inner { min-height: 66px; }
    .site-logo { justify-content: center; min-width: auto; }
    .site-logo img { max-width: 68px; max-height: 38px; }
    .site-logo strong { display: none; }
    .header-actions { margin-left: auto; }
    .hero, .page-hero { padding-top: 58px; }
    .hero-grid, .page-hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
    .split.reverse .media { order: 0; }
    .hero-visual { max-width: 650px; margin: 0 auto; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:nth-child(3)::before { display: none; }
    .card-grid, .review-grid, .service-points { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    body { padding-bottom: 68px; }
    .container { width: min(100% - 28px, var(--container)); }
    .header-inner { padding: 0 12px; gap: 8px; }
    .main-btn.compact { min-height: 38px; padding: 0 14px; font-size: .86rem; }
    .hero { padding: 46px 0 56px; }
    .hero h1 { font-size: 3.4rem; }
    .floating-note { position: static; display: inline-block; margin: 7px 6px 0 0; }
    .highlight-strip { margin-top: -18px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-item + .highlight-item::before { left: 20px; right: 20px; top: 0; bottom: auto; width: auto; height: 1px; }
    .section { padding: 60px 0; }
    .section.tight { padding: 42px 0; }
    .card-grid, .card-grid.two, .card-grid.four, .review-grid, .service-points, .stats-row { grid-template-columns: 1fr; }
    .zone-card img { height: auto; max-height: 310px; }
    .drawer-nav { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(26,15,10,.96); backdrop-filter: blur(12px); padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)); box-shadow: 0 -8px 24px rgba(26,15,10,.2); }
    .mobile-bottom-nav a { display: grid; place-items: center; color: rgba(255,243,232,.72); padding: 6px; border-radius: 12px; font-size: .82rem; }
    .mobile-bottom-nav a.active { color: #fff; background: rgba(0,229,176,.13); }
    .site-footer { padding-bottom: 45px; }
}
