@charset "UTF-8";
:root {
    --bg: #FFF8F0;
    --surface: #FFFFFF;
    --surface-soft: #EFFFFA;
    --surface-gold: #FFF1C7;
    --ink: #2A1F1A;
    --ink-strong: #24130C;
    --muted: #75645A;
    --quiet: #A9978C;
    --orange: #FF6B35;
    --orange-deep: #FF7A00;
    --blue-deep: #2B1A3F;
    --mint: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --border: rgba(255,107,53,0.18);
    --shadow: 0 20px 46px rgba(97,45,16,0.14);
    --shadow-soft: 0 10px 28px rgba(97,45,16,0.10);
    --radius: 24px;
    --radius-sm: 16px;
    --max: 1240px;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 9% 8%, rgba(255, 209, 102, .28), transparent 27rem),
        radial-gradient(circle at 89% 18%, rgba(0, 229, 176, .16), transparent 30rem),
        var(--bg);
    color: var(--ink);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
    position: fixed; left: 12px; top: -80px; z-index: 20000;
    padding: 10px 16px; background: #fff; border-radius: 12px; color: var(--ink-strong);
}
.skip-link:focus { top: 12px; }
.site-header {
    position: sticky; top: 0; width: 100%; z-index: 9999;
    background: rgba(38,20,12,0.94); backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(97,45,16,0.16);
}
.header-inner {
    width: min(calc(100% - 32px), 1280px); min-height: 72px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
}
.site-logo, .footer-logo, .drawer-brand {
    display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900;
}
.site-logo { color: #FFF3E8; white-space: nowrap; }
.site-logo img { width: 44px; height: 44px; object-fit: contain; display: block; }
.site-logo span { font-size: 1.12rem; letter-spacing: .04em; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 0; }
.nav-core a {
    color: #FFF3E8; text-decoration: none; border-radius: 999px; padding: 8px 12px;
    font-size: .94rem; white-space: nowrap; transition: .2s ease;
}
.nav-core a:hover, .nav-core a.active { color: #fff; background: rgba(0,229,176,0.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;
    color: #fff; text-decoration: none; font-weight: 800; border-radius: 999px; background: var(--gradient);
    box-shadow: 0 14px 32px rgba(255,107,53,0.22); border: 0; transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255,107,53,0.28); }
.compact-btn { min-height: 42px; padding: 0 18px; font-size: .92rem; white-space: nowrap; }
.secondary-btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
    border-radius: 999px; border: 1px solid rgba(43,26,63,.22); color: var(--blue-deep); text-decoration: none;
    background: rgba(255,255,255,.72); font-weight: 800;
}
.menu-button {
    width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
    background: rgba(255,255,255,.08); display: inline-flex; flex-direction: column; justify-content: center;
    align-items: center; gap: 4px; cursor: pointer;
}
.menu-button span { width: 17px; height: 2px; border-radius: 9px; background: #fff; }
.mobile-menu-button { display: none; }
.drawer-overlay {
    position: fixed; inset: 0; z-index: 10000; background: rgba(18,10,7,.55); opacity: 0; transition: opacity .22s ease;
}
.drawer-overlay.is-visible { opacity: 1; }
.site-drawer {
    position: fixed; top: 0; right: 0; z-index: 10001; width: min(420px, 92vw); height: 100dvh;
    padding: 24px; background: #fffaf4; box-shadow: -30px 0 70px rgba(36,19,12,.24);
    transform: translateX(104%); transition: transform .25s ease; overflow-y: auto;
}
.site-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.drawer-brand { color: var(--ink-strong); }
.drawer-brand img { width: 42px; height: 42px; object-fit: contain; }
.drawer-close { width: 42px; height: 42px; border: 0; border-radius: 50%; background: #24130C; color: #fff; font-size: 1.75rem; cursor: pointer; line-height: 1; }
.drawer-intro { color: var(--muted); margin: 20px 0; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer-nav a, .drawer-links a {
    text-decoration: none; padding: 11px 13px; border-radius: 14px; background: #fff; border: 1px solid var(--border); color: var(--ink-strong); font-weight: 700;
}
.drawer-nav a:hover, .drawer-nav a.active { background: #EFFFFA; color: #8B325E; }
.drawer-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.drawer-links a { font-weight: 600; font-size: .9rem; background: #FFF1C7; }
main { display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-tight { padding: 48px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-kicker { display: inline-block; color: #8C5D00; font-weight: 900; letter-spacing: .12em; font-size: .82rem; text-transform: uppercase; }
.section-title { color: var(--ink-strong); font-size: clamp(1.8rem, 3.4vw, 3.1rem); line-height: 1.18; margin: 8px 0 16px; letter-spacing: -.03em; }
.section-desc { color: var(--muted); font-size: 1.04rem; margin: 0; }
.hero { position: relative; padding: 72px 0 58px; overflow: clip; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero::before { width: 320px; height: 320px; background: rgba(184,51,106,.13); left: -130px; top: 80px; }
.hero::after { width: 360px; height: 360px; background: rgba(0,229,176,.13); right: -150px; bottom: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid var(--border); color: #7F4B1C; font-weight: 800; font-size: .88rem; }
.eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,229,176,.13); }
.hero h1 { color: var(--ink-strong); font-size: clamp(3rem, 7vw, 6.2rem); line-height: .98; letter-spacing: -.065em; margin: 24px 0 18px; }
.hero-subtitle { font-size: clamp(1.35rem, 2.4vw, 2rem); color: var(--rose); font-weight: 900; margin: 0 0 18px; }
.hero-copy { color: var(--muted); font-size: 1.06rem; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-points li { padding: 7px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: #6F4932; font-size: .9rem; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 9% 3%; border-radius: 40% 60% 58% 42%; background: linear-gradient(135deg, rgba(255,107,53,.17), rgba(0,229,176,.18)); transform: rotate(-5deg); }
.hero-visual img { position: relative; z-index: 1; width: min(100%, 600px); max-height: 560px; object-fit: contain; filter: drop-shadow(0 28px 35px rgba(70,38,22,.18)); }
.floating-card { position: absolute; z-index: 2; width: 190px; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.floating-card strong { display: block; color: var(--ink-strong); }
.floating-card span { color: var(--muted); font-size: .82rem; }
.floating-card.one { left: 0; bottom: 70px; }
.floating-card.two { right: 0; top: 65px; }
.highlight-strip { margin-top: 24px; display: grid; grid-template-columns: repeat(4,1fr); border-radius: 24px; overflow: hidden; background: #24130C; box-shadow: var(--shadow); }
.highlight-item { padding: 24px; color: #FFF3E8; border-right: 1px solid rgba(255,255,255,.11); }
.highlight-item:last-child { border-right: 0; }
.highlight-item h2 { color: #fff; font-size: 1rem; margin: 0 0 7px; }
.highlight-item p { margin: 0; color: rgba(255,243,232,.72); font-size: .9rem; line-height: 1.65; }
.channel-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.channel-pill { flex: 1 1 205px; min-height: 100px; padding: 17px 18px; border-radius: 20px; background: rgba(255,255,255,.78); border: 1px solid var(--border); text-decoration: none; transition: .2s ease; }
.channel-pill:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow-soft); }
.channel-pill strong { display: block; color: var(--ink-strong); margin-bottom: 4px; }
.channel-pill span { color: var(--muted); font-size: .88rem; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.split-layout.reverse .media-box { order: 2; }
.media-box { min-width: 0; }
.media-box img, .content-img { width: 100%; max-height: 540px; object-fit: contain; border-radius: var(--radius); filter: drop-shadow(0 24px 28px rgba(97,45,16,.13)); }
.copy-box h2 { color: var(--ink-strong); font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.2; margin: 8px 0 18px; }
.copy-box p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.feature-list li { position: relative; padding: 13px 15px 13px 45px; border-radius: 16px; background: rgba(255,255,255,.76); border: 1px solid var(--border); }
.feature-list li::before { content: "✓"; position: absolute; left: 15px; top: 12px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: #EFFFFA; color: #08735D; font-weight: 900; }
.text-link { color: var(--orange); text-decoration: none; font-weight: 900; }
.text-link:hover { text-decoration: underline; }
.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); }
.card, .zone-card, .info-card, .review-card, .faq-card {
    background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 22px;
}
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; height: 250px; object-fit: contain; background: linear-gradient(135deg,#fff4e9,#effffa); padding: 18px; }
.zone-card-body { padding: 25px; }
.zone-card h2, .zone-card h3, .card h3, .info-card h3 { color: var(--ink-strong); margin: 0 0 12px; line-height: 1.3; }
.zone-card p, .card p, .info-card p { color: var(--muted); margin: 0 0 14px; }
.card { padding: 26px; }
.card-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: #EFFFFA; color: #08735D; font-size: 1.3rem; font-weight: 900; margin-bottom: 18px; }
.card:nth-child(2n) .card-icon { background: #FFF1C7; color: #8C5D00; }
.card:nth-child(3n) .card-icon { background: #F9E8F1; color: #8C2F5D; }
.dark-band { background: #24130C; color: #FFF3E8; border-radius: 36px; padding: clamp(32px, 6vw, 68px); position: relative; overflow: hidden; }
.dark-band::after { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; top: -130px; border-radius: 50%; background: rgba(0,229,176,.15); }
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band p { color: rgba(255,243,232,.76); }
.safety-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.safety-card { padding: 28px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.safety-card img { width: 100%; max-height: 250px; object-fit: contain; margin-bottom: 18px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { padding: 24px; }
.review-card p { color: var(--muted); margin: 0 0 18px; }
.review-meta { display: flex; align-items: center; gap: 10px; color: var(--ink-strong); font-weight: 800; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--gradient); color: #fff; }
.faq-list { display: grid; gap: 14px; }
.faq-card { overflow: hidden; }
.faq-card details { padding: 0 22px; }
.faq-card summary { cursor: pointer; padding: 20px 0; color: var(--ink-strong); font-weight: 900; list-style: none; }
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after { content: "+"; float: right; font-size: 1.25rem; color: var(--orange); }
.faq-card details[open] summary::after { content: "−"; }
.faq-card p { color: var(--muted); padding: 0 0 20px; margin: 0; }
.notice-box { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 28px; border-radius: 24px; background: #FFF1C7; border: 1px solid rgba(255,183,3,.25); }
.notice-symbol { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: #24130C; color: #FFD166; font-size: 1.4rem; font-weight: 900; }
.notice-box h2 { margin: 0 0 5px; color: var(--ink-strong); font-size: 1.22rem; }
.notice-box p { margin: 0; color: #6B5439; }
.page-hero { padding: 64px 0 46px; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); line-height: 1.05; margin: 15px 0 20px; color: var(--ink-strong); letter-spacing: -.045em; }
.page-hero p { color: var(--muted); font-size: 1.06rem; }
.page-hero img { width: 100%; max-height: 440px; object-fit: contain; border-radius: 30px; filter: drop-shadow(0 24px 30px rgba(97,45,16,.15)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--quiet); font-size: .9rem; }
.breadcrumb a { color: var(--orange); text-decoration: none; }
.prose-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); gap: 28px; align-items: start; }
.prose-panel { padding: clamp(26px,4vw,46px); border-radius: 28px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.prose-panel h2 { color: var(--ink-strong); font-size: 1.7rem; margin: 32px 0 12px; line-height: 1.3; }
.prose-panel h2:first-child { margin-top: 0; }
.prose-panel p { color: var(--muted); margin: 0 0 16px; }
.prose-panel ul, .prose-panel ol { color: var(--muted); padding-left: 1.25rem; }
.prose-panel li { margin: 8px 0; }
.side-stack { display: grid; gap: 18px; position: sticky; top: 96px; }
.info-card { padding: 24px; }
.info-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.info-card a { color: var(--orange); font-weight: 800; text-decoration: none; }
.quote-card { padding: 28px; border-radius: 24px; background: #24130C; color: #FFF3E8; }
.quote-card p { color: rgba(255,243,232,.8); font-size: 1.05rem; margin: 0 0 16px; }
.quote-card strong { color: #FFD166; }
.steps { counter-reset: step; display: grid; gap: 14px; margin: 22px 0; }
.step { counter-increment: step; position: relative; padding: 18px 18px 18px 64px; border-radius: 18px; background: #EFFFFA; color: var(--muted); }
.step::before { content: counter(step); position: absolute; left: 17px; top: 17px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: #24130C; color: #fff; font-weight: 900; }
.mini-faq { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.mini-faq article { padding: 22px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.mini-faq h3 { margin: 0 0 10px; color: var(--ink-strong); font-size: 1.05rem; }
.mini-faq p { margin: 0; color: var(--muted); font-size: .93rem; }
.service-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 34px; border-radius: 28px; background: linear-gradient(135deg, #F9E8F1, #EFFFFA 60%, #FFF1C7); border: 1px solid var(--border); }
.service-cta h2 { margin: 0 0 8px; color: var(--ink-strong); }
.service-cta p { margin: 0; color: var(--muted); }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 62px 0 24px; margin-top: 72px; }
.footer-inner { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 36px; }
.footer-logo { color: #fff; font-size: 1.2rem; }
.footer-logo img { width: 46px; height: 46px; object-fit: contain; }
.footer-brand p { color: rgba(255,243,232,.68); max-width: 440px; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h2 { color: #fff; font-size: 1rem; margin: 0 0 8px; }
.footer-column a { color: rgba(255,243,232,.72); text-decoration: none; font-size: .92rem; }
.footer-column a:hover { color: #00E5B0; }
.footer-bottom { width: min(calc(100% - 32px), var(--max)); margin: 38px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,243,232,.55); font-size: .86rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 16px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.mobile-tabbar { display: none; }
@media (max-width: 1080px) {
    .nav-core { display: none; }
    .header-inner { grid-template-columns: auto 1fr auto; }
    .site-logo { justify-self: start; }
    .card-grid.four { grid-template-columns: repeat(2,1fr); }
    .highlight-strip { grid-template-columns: repeat(2,1fr); }
    .highlight-item:nth-child(2) { border-right: 0; }
    .highlight-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
    .footer-inner { grid-template-columns: 1.4fr repeat(2,1fr); }
    .footer-column:last-child { grid-column: 2 / 4; grid-template-columns: repeat(4,auto); align-items: center; }
    .footer-column:last-child h2 { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
    body { padding-bottom: 76px; }
    .section { padding: 62px 0; }
    .desktop-menu-button { display: none; }
    .mobile-menu-button { display: inline-flex; }
    .header-inner { width: min(calc(100% - 20px),1280px); grid-template-columns: auto 1fr auto; gap: 10px; min-height: 64px; }
    .site-logo { justify-self: center; }
    .site-logo span { display: none; }
    .site-logo img { width: 40px; height: 40px; }
    .compact-btn { min-height: 38px; padding: 0 14px; font-size: .82rem; }
    .hero { padding-top: 48px; }
    .hero-grid, .page-hero-grid, .split-layout, .prose-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 380px; }
    .floating-card { width: 160px; padding: 12px; }
    .floating-card.one { left: 5px; bottom: 30px; }
    .floating-card.two { right: 5px; top: 35px; }
    .split-layout.reverse .media-box { order: initial; }
    .card-grid, .review-grid { grid-template-columns: repeat(2,1fr); }
    .safety-grid { grid-template-columns: 1fr; }
    .notice-box { grid-template-columns: auto 1fr; }
    .notice-box .main-btn { grid-column: 1 / -1; justify-self: start; }
    .side-stack { position: static; grid-template-columns: repeat(2,1fr); }
    .mini-faq { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2,1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .footer-column:last-child { grid-column: auto; grid-template-columns: 1fr; }
    .footer-column:last-child h2 { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .mobile-tabbar { position: fixed; left: 12px; right: 12px; bottom: 10px; z-index: 9000; display: grid; grid-template-columns: repeat(4,1fr); padding: 8px; border-radius: 20px; background: rgba(36,19,12,.94); backdrop-filter: blur(12px); box-shadow: 0 12px 34px rgba(36,19,12,.28); }
    .mobile-tabbar a { display: grid; place-items: center; gap: 1px; color: rgba(255,243,232,.72); text-decoration: none; font-size: .72rem; border-radius: 14px; padding: 6px 4px; }
    .mobile-tabbar a span { font-size: 1.15rem; }
    .mobile-tabbar a.active { background: rgba(0,229,176,.15); color: #fff; }
}
@media (max-width: 560px) {
    .container { width: min(calc(100% - 22px), var(--max)); }
    .hero h1 { font-size: clamp(3rem,18vw,4.3rem); }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-copy, .page-hero p { font-size: .96rem; }
    .hero-visual { min-height: 320px; }
    .floating-card { display: none; }
    .highlight-strip, .card-grid, .card-grid.two, .card-grid.four, .review-grid, .side-stack, .footer-inner { grid-template-columns: 1fr; }
    .highlight-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
    .highlight-item:last-child { border-bottom: 0; }
    .zone-card img { height: 220px; }
    .service-cta { grid-template-columns: 1fr; }
    .service-cta .main-btn { justify-self: start; }
    .notice-box { grid-template-columns: 1fr; }
    .drawer-nav { grid-template-columns: 1fr; }
    .site-drawer { padding: 18px; }
    .footer-column:last-child { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
