:root {
  --bg: #FFF8F0;
  --ink: #2A1F1A;
  --title: #24130C;
  --muted: #75645A;
  --soft: #A9978C;
  --brand: #FF6B35;
  --brand-deep: #B8336A;
  --purple: #2B1A3F;
  --teal: #00E5B0;
  --gold: #FFD166;
  --pale-teal: #EFFFFA;
  --pale-gold: #FFF1C7;
  --card: #FFFFFF;
  --border: rgba(255,107,53,.18);
  --shadow: 0 20px 46px rgba(97,45,16,.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; 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; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 12000; padding: 10px 16px; background: #fff; color: var(--title); 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 20px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.site-logo, .drawer-brand, .footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: .04em; }
.site-logo { color: #FFF3E8; min-width: 176px; }
.site-logo img { width: 44px; max-height: 44px; object-fit: contain; }
.site-logo span { font-size: 20px; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 6px; }
.nav-core a { color: #FFF3E8; text-decoration: none; border-radius: 999px; padding: 8px 12px; white-space: nowrap; font-size: 15px; }
.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; min-width: 184px; justify-content: flex-end; }
.main-btn, .secondary-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 22px; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.main-btn { color: #fff; background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%); box-shadow: 0 14px 32px rgba(255,107,53,.22); }
.secondary-btn { color: var(--title); background: #fff; border: 1px solid var(--border); }
.main-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }
.menu-toggle { width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: #fff; }
.mobile-menu-toggle { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(26,15,10,.54); backdrop-filter: blur(3px); }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 10001; width: min(390px, 88vw); height: 100dvh; overflow-y: auto; padding: 22px; background: #fffaf5; box-shadow: -20px 0 50px rgba(36,19,12,.2); transform: translateX(105%); transition: transform .26s ease; }
.site-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer-brand { color: var(--title); }
.drawer-brand img { width: 42px; height: 42px; object-fit: contain; }
.drawer-close { border: 0; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--title); box-shadow: 0 8px 20px rgba(97,45,16,.12); font-size: 28px; line-height: 1; cursor: pointer; }
.drawer-intro { margin: 20px 0; color: var(--muted); }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer-nav a { padding: 11px 14px; border: 1px solid var(--border); border-radius: 14px; background: #fff; color: var(--title); text-decoration: none; }
.drawer-nav a:hover { border-color: var(--brand); color: var(--brand); }
.drawer-note { margin-top: 22px; padding: 16px; border-radius: 16px; background: var(--pale-gold); color: #654516; font-size: 14px; }
main { display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: #9A5D00; font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 28px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--brand), var(--teal)); }
h1, h2, h3, .section-title { margin-top: 0; color: var(--title); line-height: 1.22; }
h1 { font-size: clamp(42px, 7vw, 82px); letter-spacing: -.04em; }
h2 { font-size: clamp(28px, 4.3vw, 46px); }
h3 { font-size: 21px; }
p { margin-top: 0; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; }
.hero { position: relative; overflow: hidden; padding: 82px 0 64px; background: radial-gradient(circle at 12% 18%, rgba(255,209,102,.42), transparent 28%), radial-gradient(circle at 86% 14%, rgba(0,229,176,.22), transparent 26%), linear-gradient(135deg, #fff1f4 0%, #f7f0ff 44%, #e9fff8 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero::before { width: 320px; height: 320px; right: -90px; bottom: -170px; background: rgba(184,51,106,.15); }
.hero::after { width: 220px; height: 220px; left: 32%; top: -120px; background: rgba(255,107,53,.12); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 62px; align-items: center; }
.hero-copy .eyebrow { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--brand-deep); font-size: 14px; font-weight: 900; box-shadow: 0 8px 24px rgba(97,45,16,.08); }
.hero-copy h1 { margin: 20px 0 12px; }
.hero-subtitle { margin-bottom: 18px; color: var(--purple); font-size: clamp(24px, 3vw, 36px); font-weight: 900; }
.hero-copy p { color: #5f5149; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none; }
.hero-points li { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.78); color: var(--title); font-weight: 700; font-size: 14px; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 8% 5%; border-radius: 44% 56% 54% 46%; background: linear-gradient(135deg, rgba(255,107,53,.23), rgba(0,229,176,.2)); transform: rotate(-5deg); }
.hero-visual img { position: relative; z-index: 1; width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 30px 38px rgba(43,26,63,.22)); }
.highlight-strip { margin-top: -20px; position: relative; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--border); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; }
.highlight-item { padding: 24px; }
.highlight-item + .highlight-item { border-left: 1px solid var(--border); }
.highlight-item strong { display: block; color: var(--title); font-size: 18px; }
.highlight-item p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.channel-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.channel-pill { flex: 1 1 210px; padding: 16px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); text-decoration: none; box-shadow: 0 12px 30px rgba(97,45,16,.08); }
.channel-pill strong { display: block; color: var(--title); }
.channel-pill span { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.split.reverse .media { order: 2; }
.media { position: relative; }
.media img, .content-img { width: 100%; max-height: 560px; object-fit: contain; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.media .floating-label { position: absolute; right: 18px; bottom: 18px; padding: 10px 14px; border-radius: 999px; background: rgba(36,19,12,.88); color: #fff; font-size: 13px; font-weight: 800; }
.copy p { color: var(--muted); }
.feature-list { display: grid; gap: 12px; padding: 0; margin: 24px 0; list-style: none; }
.feature-list li { position: relative; padding: 14px 16px 14px 46px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.76); }
.feature-list li::before { content: "✓"; position: absolute; left: 16px; top: 13px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--pale-teal); color: #08745d; font-weight: 900; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .zone-card, .info-card, .review-card { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: var(--radius-md); }
.card, .info-card, .review-card { padding: 28px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; height: 260px; object-fit: contain; background: linear-gradient(135deg, #fff6ec, #effffb); }
.zone-card .zone-content { padding: 28px; }
.zone-card p, .card p, .info-card p, .review-card p { color: var(--muted); }
.soft-section { background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.72)); }
.dark-section { position: relative; overflow: hidden; background: var(--purple); color: #fff; }
.dark-section::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; right: -120px; top: -150px; background: rgba(0,229,176,.16); }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: #e9ddf1; }
.dark-section .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.dark-section .card p { color: #eadff2; }
.security-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.security-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.security-images img { width: 100%; height: 100%; min-height: 260px; object-fit: contain; border-radius: 24px; background: #fff; }
.review-card { position: relative; padding-top: 52px; }
.review-card::before { content: "“"; position: absolute; left: 24px; top: 6px; color: var(--gold); font-size: 64px; line-height: 1; font-family: Georgia, serif; }
.review-card strong { color: var(--title); }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; color: var(--title); font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--brand); font-size: 22px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 24px 22px; color: var(--muted); }
.notice { padding: 26px; border-radius: 22px; border: 1px solid rgba(255,209,102,.5); background: linear-gradient(135deg, #fff7de, #effffb); }
.notice h2, .notice h3 { margin-bottom: 10px; }
.notice p:last-child { margin-bottom: 0; }
.cta-band { padding: 42px; border-radius: 30px; background: linear-gradient(135deg, #24130C, #2B1A3F 58%, #204e49); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { margin-bottom: 0; color: #eadff2; }
.inner-hero { position: relative; overflow: hidden; padding: 72px 0; background: radial-gradient(circle at 80% 0%, rgba(0,229,176,.2), transparent 30%), linear-gradient(135deg, #fff0ef, #f6efff 55%, #edfff9); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.72fr); gap: 48px; align-items: center; }
.inner-hero h1 { margin: 12px 0 18px; font-size: clamp(40px, 5.4vw, 68px); }
.inner-hero img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(43,26,63,.16)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--brand); text-decoration: none; }
.prose { max-width: 900px; }
.prose p { color: var(--muted); }
.prose h2 { margin-top: 42px; font-size: clamp(27px, 3.5vw, 38px); }
.prose h3 { margin-top: 28px; }
.service-points { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 30px; }
.service-point { padding: 22px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.service-point b { display: block; margin-bottom: 8px; color: var(--title); }
.step-list { counter-reset: step; display: grid; gap: 16px; padding: 0; margin: 26px 0; list-style: none; }
.step-list li { counter-increment: step; position: relative; padding: 20px 20px 20px 68px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.step-list li::before { content: counter(step); position: absolute; left: 20px; top: 18px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--gold)); color: #fff; font-weight: 900; }
.quote-box { margin: 32px 0; padding: 28px; border-left: 5px solid var(--teal); border-radius: 0 18px 18px 0; background: var(--pale-teal); color: #28534a; }
.page-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.page-nav a { padding: 9px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--brand); text-decoration: none; font-weight: 700; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 64px 0 100px; }
.footer-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.footer-logo { color: #fff; font-size: 22px; }
.footer-logo img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand p { margin-top: 18px; color: #cfbeb4; }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.footer-links h2 { color: #fff; font-size: 16px; }
.footer-links a { display: block; margin: 9px 0; color: #cfbeb4; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--teal); }
.footer-reminder { width: min(calc(100% - 40px), var(--max)); margin: 44px auto 0; padding: 22px; border-radius: 18px; background: rgba(255,255,255,.06); color: #d8c8bf; font-size: 14px; }
.footer-reminder p { margin: 0; }
.footer-bottom { width: min(calc(100% - 40px), var(--max)); margin: 24px auto 0; display: flex; justify-content: space-between; gap: 20px; color: #a9978c; font-size: 13px; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1080px) {
  .nav-core a:nth-child(4), .nav-core a:nth-child(6) { display: none; }
  .hero-grid { grid-template-columns: 1fr 440px; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .header-inner { min-height: 66px; padding: 0 12px; gap: 8px; }
  .nav-core, .desktop-menu-toggle { display: none; }
  .mobile-menu-toggle { display: block; flex: 0 0 42px; }
  .site-logo { min-width: 0; justify-content: center; flex: 1; }
  .site-logo img { width: 38px; max-height: 38px; }
  .site-logo span { display: none; }
  .header-actions { min-width: auto; flex: 0 0 auto; }
  .header-cta { min-height: 40px; padding: 8px 14px; font-size: 13px; }
  .hero { padding-top: 56px; }
  .hero-grid, .inner-hero-grid, .split, .security-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; }
  .hero-visual img { max-height: 420px; }
  .split.reverse .media { order: 0; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .highlight-item:nth-child(4) { border-top: 1px solid var(--border); }
  .grid-3, .grid-4, .service-points { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .mobile-bottom-nav { position: fixed; left: 12px; right: 12px; bottom: 10px; z-index: 9000; display: grid; grid-template-columns: repeat(4,1fr); padding: 8px; border: 1px solid rgba(255,107,53,.15); border-radius: 22px; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: 0 16px 46px rgba(36,19,12,.2); }
  .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--muted); text-decoration: none; font-size: 12px; }
  .mobile-bottom-nav span { color: var(--brand); font-size: 18px; line-height: 1.2; }
  .site-footer { padding-bottom: 130px; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .hero { padding: 44px 0 52px; }
  .hero-copy h1 { font-size: 52px; }
  .hero-subtitle { font-size: 25px; }
  .hero-actions { align-items: stretch; }
  .hero-actions a { flex: 1 1 100%; }
  .hero-visual { min-height: 310px; }
  .highlight-strip { margin-top: -10px; }
  .highlight-grid, .grid-2, .grid-3, .grid-4, .service-points, .security-images { grid-template-columns: 1fr; }
  .highlight-item + .highlight-item { border-left: 0; border-top: 1px solid var(--border); }
  .zone-card img { height: 220px; }
  .cta-band { padding: 28px; align-items: flex-start; flex-direction: column; }
  .inner-hero { padding: 50px 0; }
  .inner-hero img { max-height: 300px; }
  .drawer-nav { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
