:root {
  --bg: #fff8f0;
  --ink: #2a1f1a;
  --muted: #75645a;
  --soft: #a9978c;
  --brand: #ff6b35;
  --purple: #2b1a3f;
  --aqua: #00e5b0;
  --gold: #ffd166;
  --rose: #b8336a;
  --card: #ffffff;
  --line: rgba(255, 107, 53, .18);
  --shadow: 0 20px 46px rgba(97, 45, 16, .14);
  --radius: 24px;
  --max: 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, sans-serif; line-height: 1.75; overflow-x: hidden; }
body.drawer-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
.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(var(--max), calc(100% - 40px)); min-height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.site-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff3e8; text-decoration: none; white-space: nowrap; }
.site-logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 14px; }
.site-logo strong { font-size: 19px; letter-spacing: .06em; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 7px; }
.nav-core a { color: #fff3e8; text-decoration: none; border-radius: 999px; padding: 8px 12px; font-size: 14px; 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; }
.main-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 999px; background: linear-gradient(135deg,#ff6b35 0%,#ffb703 48%,#00e5b0 100%); color: #fff; text-decoration: none; font-weight: 700; 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 38px rgba(255,107,53,.28); }
.main-btn.compact { min-height: 40px; padding: 0 18px; font-size: 14px; }
.menu-toggle { width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 14px; background: rgba(255,255,255,.1); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; border-radius: 9px; }
.mobile-menu-toggle { display: none; }
.drawer-mask { position: fixed; inset: 0; z-index: 10000; background: rgba(26,15,10,.54); opacity: 0; visibility: hidden; transition: .25s ease; }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 10001; width: min(390px, 88vw); height: 100dvh; padding: 26px; overflow-y: auto; background: #fffaf5; box-shadow: -18px 0 50px rgba(36,19,12,.22); transform: translateX(105%); transition: transform .28s ease; }
.drawer-open .drawer-mask { opacity: 1; visibility: visible; }
.drawer-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; color: var(--purple); text-decoration: none; font-weight: 800; }
.drawer-brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 14px; }
.drawer-close { width: 42px; height: 42px; border: 0; border-radius: 14px; color: var(--purple); background: #f2e9ff; font-size: 28px; cursor: pointer; }
.drawer-intro { margin: 22px 0 16px; color: var(--muted); font-size: 14px; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer-nav a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 15px; background: #fff; text-decoration: none; color: var(--ink); }
.drawer-nav a:hover { color: var(--brand); border-color: rgba(255,107,53,.42); }
.drawer-note { margin-top: 20px; padding: 14px; border-radius: 16px; background: #effffa; color: #315d53; font-size: 13px; }
main { min-height: 60vh; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 86px 0; }
.section.tight { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-head > div { max-width: 760px; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: #8c5c00; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker:before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: linear-gradient(90deg,var(--brand),var(--aqua)); }
h1,h2,h3,.section-title { margin-top: 0; color: #24130c; line-height: 1.25; }
h1 { font-size: clamp(42px,7vw,78px); margin-bottom: 18px; }
h2 { font-size: clamp(29px,4vw,44px); margin-bottom: 14px; }
h3 { font-size: 20px; margin-bottom: 10px; }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: 18px; }
.text-link { color: var(--brand); text-decoration: none; font-weight: 700; }
.text-link:hover { text-decoration: underline; }
.hero { position: relative; overflow: hidden; padding: 86px 0 72px; background: radial-gradient(circle at 12% 14%,rgba(255,209,102,.36),transparent 30%), radial-gradient(circle at 88% 22%,rgba(0,229,176,.2),transparent 30%), linear-gradient(135deg,#fff2ea 0%,#f5ecff 45%,#e9fff8 100%); }
.hero:before,.hero:after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
.hero:before { width: 250px; height: 250px; right: -90px; top: 90px; background: rgba(184,51,106,.08); }
.hero:after { width: 180px; height: 180px; left: -60px; bottom: -30px; background: rgba(0,229,176,.11); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy .eyebrow { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(43,26,63,.08); color: var(--purple); font-weight: 800; font-size: 13px; }
.hero-copy h1 span { display: block; margin-top: 10px; color: var(--rose); font-size: .38em; font-weight: 800; letter-spacing: .04em; }
.hero-copy p { max-width: 700px; color: #5f4d43; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 28px 0 24px; }
.secondary-link { display: inline-flex; min-height: 48px; align-items: center; padding: 0 20px; border: 1px solid rgba(43,26,63,.16); border-radius: 999px; color: var(--purple); text-decoration: none; font-weight: 700; background: rgba(255,255,255,.7); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-points li { padding: 8px 12px; border-radius: 999px; background: #fff; box-shadow: 0 10px 24px rgba(43,26,63,.08); color: var(--purple); font-size: 13px; }
.hero-visual { position: relative; }
.hero-visual:before { content: ""; position: absolute; inset: 7% 4% -4% 10%; border-radius: 36px; transform: rotate(4deg); background: linear-gradient(135deg,rgba(255,107,53,.22),rgba(0,229,176,.2)); }
.hero-visual img { position: relative; width: 100%; max-height: 590px; object-fit: contain; filter: drop-shadow(0 28px 30px rgba(43,26,63,.18)); }
.floating-note { position: absolute; max-width: 220px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px); box-shadow: var(--shadow); font-size: 13px; }
.floating-note.one { left: -30px; bottom: 10%; }
.floating-note.two { right: -12px; top: 10%; }
.highlight-strip { position: relative; margin-top: -20px; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid rgba(255,107,53,.16); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.highlight-item { padding: 24px; }
.highlight-item + .highlight-item { border-left: 1px solid var(--line); }
.highlight-item strong { display: block; margin-bottom: 6px; color: var(--purple); }
.highlight-item p { margin: 0; color: var(--muted); font-size: 14px; }
.channel-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.channel-pill { flex: 1 1 210px; padding: 15px 17px; border: 1px solid rgba(43,26,63,.1); border-radius: 999px; background: rgba(255,255,255,.8); text-decoration: none; transition: .2s ease; }
.channel-pill:hover { transform: translateY(-2px); border-color: var(--aqua); }
.channel-pill strong { color: var(--purple); }
.channel-pill span { color: var(--muted); font-size: 13px; }
.card,.zone-card,.info-card,.review-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); }
.split { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.triple { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.four { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card { overflow: hidden; }
.feature-card img { width: 100%; aspect-ratio: 16/10; object-fit: contain; background: linear-gradient(135deg,#fff1c7,#effffa); }
.feature-body { padding: 28px; }
.feature-body p { color: var(--muted); }
.mini-list { padding: 0; margin: 18px 0; list-style: none; }
.mini-list li { position: relative; padding-left: 22px; margin: 8px 0; color: #5f4d43; }
.mini-list li:before { content: ""; position: absolute; left: 0; top: .72em; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--aqua)); }
.brand-panel { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 46px; padding: 42px; background: linear-gradient(135deg,#fff 0%,#fff7f0 48%,#effffa 100%); }
.brand-panel img { width: 100%; max-height: 500px; object-fit: contain; border-radius: 22px; }
.dark-zone { background: linear-gradient(135deg,#24130c,#2b1a3f); color: #fff3e8; }
.dark-zone h2,.dark-zone h3 { color: #fff; }
.dark-zone p { color: #dccdc3; }
.security-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; }
.security-copy { padding: 36px; }
.security-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.security-images img { width: 100%; height: 100%; min-height: 280px; object-fit: contain; border-radius: 22px; background: rgba(255,255,255,.06); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { padding: 24px; }
.review-card p { color: #5e4e46; }
.review-card footer { display: flex; align-items: center; justify-content: space-between; background: transparent; color: var(--muted); font-size: 13px; }
.review-card .stars { color: #b56c00; letter-spacing: .12em; }
.faq-list { display: grid; gap: 14px; }
details { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(97,45,16,.07); }
summary { padding: 20px 22px; cursor: pointer; color: var(--purple); font-weight: 800; }
details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }
.notice { padding: 30px; border-radius: 24px; background: linear-gradient(135deg,#fff1c7,#effffa); border: 1px solid rgba(255,209,102,.5); }
.notice strong { color: var(--purple); }
.page-hero { padding: 76px 0 58px; background: radial-gradient(circle at 15% 5%,rgba(255,209,102,.26),transparent 30%),linear-gradient(135deg,#fff5ee,#f2ecff 48%,#e9fff8); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 50px; align-items: center; }
.page-hero h1 { font-size: clamp(38px,6vw,64px); }
.page-hero img { width: 100%; max-height: 460px; object-fit: contain; filter: drop-shadow(0 24px 28px rgba(43,26,63,.15)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--brand); text-decoration: none; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
.prose-card { padding: 38px; }
.prose-card p { color: #5c4b43; }
.prose-card h2 { margin-top: 38px; font-size: 30px; }
.prose-card h3 { margin-top: 26px; }
.sidebar { display: grid; gap: 18px; position: sticky; top: 96px; }
.sidebar-card { padding: 24px; }
.sidebar-card ul { padding: 0; margin: 0; list-style: none; }
.sidebar-card li + li { margin-top: 9px; }
.sidebar-card a { color: var(--brand); text-decoration: none; }
.info-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { padding: 24px; }
.info-card p { color: var(--muted); margin-bottom: 0; }
.quote-card { padding: 28px; border-radius: 24px; background: #24130c; color: #fff3e8; }
.quote-card p { font-size: 17px; color: #fff3e8; }
.service-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; background: #fff; }
.service-table th,.service-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.service-table th { color: var(--purple); background: #fff6ef; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--purple); font-weight: 700; }
.contact-form input,.contact-form textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.site-footer { background: #1a0f0a; color: #fff3e8; padding: 58px 0 18px; }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 34px; }
.footer-brand p { max-width: 420px; color: #d7c4b8; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-links h3 { color: #fff; margin-bottom: 8px; }
.footer-links a { color: #d7c4b8; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--aqua); }
.footer-logo { margin-bottom: 18px; }
.footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 36px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #bda99c; font-size: 13px; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1050px) {
  .nav-core { display: none; }
  .hero-grid,.page-hero-grid,.brand-panel,.security-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; margin: 0 auto; }
  .floating-note.one { left: 0; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2 / 4; }
}
@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .header-inner { width: min(100% - 20px,var(--max)); min-height: 64px; gap: 8px; }
  .mobile-menu-toggle { display: block; }
  .desktop-menu-toggle { display: none; }
  .site-logo strong { display: none; }
  .site-logo img { width: 40px; height: 40px; }
  .main-btn.compact { min-height: 38px; padding: 0 14px; font-size: 13px; }
  .container { width: min(100% - 24px,var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding: 54px 0 48px; }
  .hero-grid { gap: 32px; }
  h1 { font-size: 46px; }
  .hero-copy h1 span { font-size: .42em; }
  .floating-note { display: none; }
  .highlight-strip { margin-top: 14px; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .highlight-item:nth-child(4) { border-top: 1px solid var(--line); }
  .split,.triple,.four,.review-grid,.info-row,.sidebar { grid-template-columns: 1fr; }
  .brand-panel,.prose-card { padding: 26px; }
  .security-images { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-links:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-bottom-nav { position: fixed; left: 10px; right: 10px; bottom: 8px; z-index: 9000; display: grid; grid-template-columns: repeat(4,1fr); padding: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(36,19,12,.94); backdrop-filter: blur(12px); box-shadow: 0 18px 36px rgba(26,15,10,.25); }
  .mobile-bottom-nav a { display: grid; justify-items: center; gap: 1px; color: #fff3e8; text-decoration: none; font-size: 11px; }
  .mobile-bottom-nav span { color: var(--aqua); font-size: 18px; line-height: 1; }
  .page-hero { padding: 54px 0 42px; }
  .page-hero-grid { gap: 28px; }
  .page-hero h1 { font-size: 42px; }
}
@media (max-width: 470px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-item + .highlight-item { border-left: 0; border-top: 1px solid var(--line); }
  .drawer-nav { grid-template-columns: 1fr; }
  .hero-actions { align-items: stretch; }
  .hero-actions a { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
