:root {
    --bg: #FFF8F0;
    --ink: #2A1F1A;
    --title: #24130C;
    --muted: #75645A;
    --soft: #A9978C;
    --brand: #FF6B35;
    --deep: #2B1A3F;
    --cyan: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --card: #FFFFFF;
    --blue-soft: #EFFFFA;
    --gold-soft: #FFF1C7;
    --line: rgba(255,107,53,.18);
    --shadow: 0 20px 46px rgba(97,45,16,.14);
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; line-height: 1.75; overflow-x: hidden; }
body.drawer-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-main { min-height: 65vh; }
.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 { width: min(1280px, calc(100% - 36px)); margin: 0 auto; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.site-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #FFF3E8; flex: 0 0 auto; }
.site-logo img { width: 44px; height: 44px; object-fit: contain; }
.site-logo strong { font-size: 20px; letter-spacing: .04em; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.nav-core a { color: #FFF3E8; text-decoration: none; border-radius: 999px; padding: 8px 12px; font-size: 15px; white-space: nowrap; }
.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; flex: 0 0 auto; }
.main-btn, .ghost-btn, .menu-text-button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.main-btn { background: var(--gradient); color: #FFF; box-shadow: 0 14px 32px rgba(255,107,53,.22); }
.main-btn:hover, .ghost-btn:hover, .menu-text-button:hover { transform: translateY(-2px); }
.ghost-btn { background: rgba(255,255,255,.82); color: var(--title); border: 1px solid var(--line); }
.menu-text-button { min-height: 40px; padding: 0 16px; background: rgba(255,255,255,.09); color: #FFF3E8; border: 1px solid rgba(255,255,255,.15); }
.icon-button { border: 0; background: transparent; padding: 8px; cursor: pointer; }
.mobile-menu-button { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.mobile-menu-button span { width: 20px; height: 2px; border-radius: 2px; background: #FFF3E8; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(20,10,7,.48); opacity: 0; transition: opacity .24s ease; }
.site-drawer { position: fixed; z-index: 10001; top: 0; right: 0; width: min(390px, 88vw); height: 100dvh; padding: 22px; background: #FFFDF9; box-shadow: -24px 0 60px rgba(35,16,8,.2); transform: translateX(104%); transition: transform .24s ease; overflow-y: auto; }
.drawer-is-open .drawer-overlay { opacity: 1; }
.drawer-is-open .site-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--title); font-weight: 800; font-size: 20px; }
.drawer-brand img { width: 44px; height: 44px; object-fit: contain; }
.drawer-close { border: 0; background: #FFF1E8; color: var(--title); width: 42px; height: 42px; border-radius: 50%; font-size: 27px; cursor: pointer; }
.drawer-intro { color: var(--muted); margin: 18px 0; }
.drawer-nav { display: grid; gap: 7px; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; min-height: 46px; padding: 0 14px; border-radius: 14px; text-decoration: none; color: var(--ink); background: #FFF8F0; }
.drawer-nav a:hover, .drawer-nav a.active { background: #EFFFFA; color: #8A3B20; }
.drawer-note { margin-top: 18px; padding: 15px; border-radius: 16px; color: #6E563F; background: var(--gold-soft); font-size: 13px; }
.hero { position: relative; overflow: hidden; padding: 76px 0 66px; background: radial-gradient(circle at 14% 18%, rgba(255,107,53,.20), transparent 34%), radial-gradient(circle at 82% 24%, rgba(0,229,176,.20), transparent 30%), linear-gradient(145deg, #FFF4EA 0%, #F2FFFB 52%, #FFF0FA 100%); }
.hero::after { content: ""; position: absolute; width: 320px; height: 320px; right: -140px; bottom: -180px; border-radius: 50%; background: rgba(255,209,102,.26); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 50px; }
.hero-copy h1, .inner-hero h1 { color: var(--title); font-size: clamp(42px, 7vw, 78px); line-height: 1.05; margin: 12px 0 18px; letter-spacing: -.04em; }
.hero-copy .subtitle { font-size: clamp(22px, 3vw, 34px); color: var(--deep); font-weight: 800; margin: 0 0 20px; }
.hero-copy p { color: #5D4A3F; font-size: 17px; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.hero-points li { padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,107,53,.15); color: #6F3B26; font-size: 14px; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 28px 36px rgba(43,26,63,.18)); }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: #9D5C00; background: rgba(255,209,102,.20); border-radius: 999px; padding: 5px 11px; font-weight: 800; font-size: 13px; letter-spacing: .08em; }
.section { padding: 78px 0; }
.section.soft { background: #FFFDF9; }
.section.blue { background: #EFFFFA; }
.section.dark { background: var(--deep); color: #FFF6EE; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-head h2, .section h2, .footer-cta h2 { color: var(--title); font-size: clamp(28px, 4vw, 45px); line-height: 1.2; margin: 10px 0; letter-spacing: -.025em; }
.section.dark h2 { color: #FFF; }
.section-head p { max-width: 650px; color: var(--muted); margin: 0; }
.highlight-strip { margin-top: -22px; position: relative; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 20px; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.highlight-item { padding: 12px 14px; border-right: 1px dashed rgba(255,107,53,.2); }
.highlight-item:last-child { border-right: 0; }
.highlight-item h3 { margin: 0 0 5px; color: var(--title); font-size: 17px; }
.highlight-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.channel-pill { width: calc(20% - 10px); min-width: 180px; flex: 1; padding: 17px; border-radius: 18px; background: #FFF; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(97,45,16,.08); text-decoration: none; }
.channel-pill strong { color: var(--title); display: block; margin-bottom: 4px; }
.channel-pill span { display: block; color: var(--muted); font-size: 13px; line-height: 1.6; }
.channel-pill em { display: inline-block; color: var(--brand); font-style: normal; margin-top: 8px; font-weight: 700; font-size: 13px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.split.reverse .media-box { order: -1; }
.media-box { border-radius: 28px; padding: 22px; background: #FFF; border: 1px solid var(--line); box-shadow: var(--shadow); }
.media-box img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 20px; }
.media-stack > img { margin-bottom: 14px; }
.mini-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-media-grid img { width: 100%; height: 108px; object-fit: contain; padding: 6px; border-radius: 14px; background: linear-gradient(145deg,#FFF3E9,#EDFFFA); }
.copy-block p { color: var(--muted); }
.text-link { color: var(--brand); text-decoration: none; font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.feature-list { display: grid; gap: 12px; margin-top: 24px; }
.feature-line { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,107,53,.12); }
.feature-line b { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 12px; color: #FFF; background: var(--brand); }
.feature-line strong { display: block; color: var(--title); }
.feature-line span { color: var(--muted); font-size: 14px; }
.dual-grid, .three-grid, .card-grid, .review-grid { display: grid; gap: 22px; }
.dual-grid { grid-template-columns: repeat(2, 1fr); }
.three-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.card, .zone-card, .info-card, .review-card { background: #FFF; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 22px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; height: 250px; object-fit: contain; background: linear-gradient(140deg,#FFF0E6,#ECFFFA); padding: 14px; }
.zone-body { padding: 24px; }
.zone-body h3, .info-card h3 { margin: 0 0 10px; color: var(--title); font-size: 24px; }
.zone-body p, .info-card p { margin: 0 0 14px; color: var(--muted); }
.zone-body ul { margin: 0 0 14px; padding-left: 20px; color: var(--muted); }
.info-card { padding: 24px; }
.info-card .number { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--gold-soft); color: #9B5500; font-weight: 900; margin-bottom: 16px; }
.review-card { padding: 22px; position: relative; }
.review-card::before { content: "“"; position: absolute; top: 2px; right: 16px; color: rgba(255,107,53,.15); font-size: 70px; line-height: 1; font-family: Georgia, serif; }
.review-card p { color: var(--muted); margin: 0 0 14px; }
.review-card strong { color: var(--title); }
.faq-list { display: grid; gap: 12px; }
details { background: #FFF; border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 10px 26px rgba(97,45,16,.07); padding: 0 18px; }
summary { cursor: pointer; color: var(--title); font-weight: 800; padding: 17px 32px 17px 0; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 14px; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #FFF1E8; color: var(--brand); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 0; padding: 0 0 18px; }
.notice-box { padding: 24px; border-radius: 22px; background: linear-gradient(135deg, #FFF1C7, #EFFFFA); border: 1px solid rgba(255,107,53,.14); }
.notice-box h3 { color: var(--title); margin: 0 0 8px; }
.notice-box p { color: #6D594E; margin: 0; }
.inner-hero { padding: 66px 0 54px; background: radial-gradient(circle at 12% 20%, rgba(255,107,53,.18), transparent 32%), radial-gradient(circle at 86% 20%, rgba(0,229,176,.22), transparent 30%), linear-gradient(145deg,#FFF6ED,#F2FFFC); }
.inner-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.inner-hero h1 { font-size: clamp(38px, 6vw, 64px); }
.inner-hero p { color: var(--muted); font-size: 17px; }
.inner-hero img { max-height: 420px; width: 100%; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(43,26,63,.16)); }
.breadcrumb { color: #8B7669; font-size: 13px; margin-bottom: 8px; }
.breadcrumb a { color: var(--brand); text-decoration: none; }
.service-points { margin-top: -20px; position: relative; z-index: 2; }
.service-point-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-point { padding: 21px; background: #FFF; border-radius: 19px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.service-point h3 { color: var(--title); margin: 0 0 7px; font-size: 19px; }
.service-point p { color: var(--muted); margin: 0; font-size: 14px; }
.article-section { padding: 66px 0; }
.article-section.alt { background: #FFFDF9; }
.article-copy { max-width: 850px; margin: 0 auto; }
.article-copy h2 { color: var(--title); font-size: clamp(27px, 4vw, 40px); margin: 0 0 14px; }
.article-copy p { color: var(--muted); font-size: 16px; }
.article-copy .inline-link { color: var(--brand); font-weight: 800; text-decoration: none; }
.experience-card { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; padding: 28px; border-radius: 24px; background: var(--deep); color: #FFF; box-shadow: var(--shadow); }
.experience-avatar { width: 62px; height: 62px; border-radius: 20px; display: flex; align-items: center; justify-content: center; background: var(--gradient); font-weight: 900; }
.experience-card p { color: #EDE2FF; margin: 0 0 8px; }
.experience-card strong { color: #FFF; }
.footer-cta { padding: 56px 0; background: linear-gradient(135deg,#FFF1C7,#EFFFFA); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-cta p { color: var(--muted); max-width: 760px; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; }
.footer-grid h3 { margin: 4px 0 12px; color: #FFF; font-size: 16px; }
.footer-grid a { display: block; text-decoration: none; color: #DCCABF; padding: 4px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-brand p { max-width: 390px; color: #DCCABF; }
.footer-logo { margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #BFAEA3; font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 14px; }
.footer-bottom a { color: #DCCABF; text-decoration: none; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1020px) {
    .nav-core { display: none; }
    .hero-grid, .inner-hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy p { margin-inline: auto; }
    .hero-actions, .hero-points { justify-content: center; }
    .hero-visual img { max-height: 460px; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:nth-child(2) { border-right: 0; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .media-box { order: initial; }
    .three-grid, .card-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .container { width: min(100% - 28px, 1180px); }
    .header-inner { width: calc(100% - 20px); min-height: 64px; gap: 8px; }
    .mobile-menu-button { display: flex; order: 1; }
    .site-logo { order: 2; flex: 1; justify-content: center; }
    .site-logo img { width: 38px; height: 38px; }
    .site-logo strong { font-size: 17px; }
    .header-actions { order: 3; }
    .header-actions .menu-text-button { display: none; }
    .header-cta { min-height: 38px; padding: 0 13px; font-size: 13px; }
    .hero { padding: 50px 0 50px; }
    .hero-grid { gap: 28px; }
    .hero-copy h1 { font-size: 48px; }
    .hero-copy .subtitle { font-size: 23px; }
    .hero-copy p, .inner-hero p { font-size: 15px; }
    .main-btn, .ghost-btn { padding-inline: 18px; }
    .highlight-strip { margin-top: -14px; }
    .highlight-grid { grid-template-columns: 1fr; padding: 14px; }
    .highlight-item { border-right: 0; border-bottom: 1px dashed rgba(255,107,53,.2); }
    .highlight-item:last-child { border-bottom: 0; }
    .section, .article-section { padding: 54px 0; }
    .section-head { display: block; }
    .section-head h2, .section h2, .footer-cta h2 { font-size: 31px; }
    .channel-pill { min-width: 100%; width: 100%; }
    .dual-grid, .three-grid, .card-grid, .review-grid, .service-point-grid { grid-template-columns: 1fr; }
    .zone-card img { height: 220px; }
    .mini-media-grid { grid-template-columns: 1fr; }
    .mini-media-grid img { height: 150px; }
    .inner-hero { padding: 45px 0 42px; }
    .inner-hero h1 { font-size: 42px; }
    .inner-hero-grid { gap: 20px; }
    .service-points { margin-top: 0; padding-top: 18px; }
    .experience-card { grid-template-columns: 1fr; }
    .footer-cta-inner, .footer-bottom { display: block; }
    .footer-cta-actions { margin-top: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom div { margin-top: 10px; flex-wrap: wrap; }
    .site-footer { padding-bottom: 98px; }
    .mobile-bottom-nav { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 8000; min-height: 62px; padding: 7px 10px calc(7px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(36,19,12,.94); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 14px 34px rgba(36,19,12,.25); border-radius: 22px; }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #FFF3E8; text-decoration: none; font-size: 12px; line-height: 1.2; }
    .mobile-bottom-nav span { color: var(--cyan); font-size: 18px; }
    .mobile-bottom-nav b { font-weight: 600; }
}
@media (max-width: 390px) {
    .site-logo strong { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
