:root {
  --bg: #FFF8F0;
  --ink: #2A1F1A;
  --heading: #24130C;
  --muted: #75645A;
  --soft: #A9978C;
  --brand: #FF6B35;
  --brand-deep: #E44E1E;
  --purple: #2B1A3F;
  --teal: #00E5B0;
  --gold: #FFD166;
  --rose: #B8336A;
  --pale-teal: #EFFFFA;
  --pale-gold: #FFF1C7;
  --card: #FFFFFF;
  --line: rgba(255, 107, 53, .18);
  --shadow: 0 20px 46px rgba(97, 45, 16, .14);
  --shadow-small: 0 12px 30px rgba(97, 45, 16, .11);
  --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
  --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, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 12000;
  background: #fff;
  color: var(--heading);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-small);
}
.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;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFF3E8;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .02em;
}
.site-logo img { width: auto; max-height: 44px; }
.site-logo span { font-size: 20px; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; }
.nav-core a {
  color: #FFF3E8;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 15px;
  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: 46px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  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, .28); }
.menu-trigger {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-trigger span { width: 19px; height: 2px; background: #fff; border-radius: 3px; }
.mobile-menu-trigger { display: none; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  background: rgba(26, 15, 10, .56);
  opacity: 0;
  transition: opacity .22s ease;
}
.drawer-overlay.is-visible { opacity: 1; }
.site-drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10030;
  width: min(420px, 92vw);
  height: 100dvh;
  overflow-y: auto;
  padding: 24px;
  background: #fffaf5;
  box-shadow: -20px 0 60px rgba(36, 19, 12, .22);
  transform: translateX(104%);
  transition: transform .24s ease;
}
.site-drawer.is-open { 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(--heading); font-weight: 900; text-decoration: none; }
.drawer-brand img { width: 44px; max-height: 44px; object-fit: contain; }
.drawer-close { width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; box-shadow: var(--shadow-small); font-size: 28px; color: var(--heading); cursor: pointer; }
.drawer-intro { color: var(--muted); margin: 24px 0 18px; padding: 16px; background: var(--pale-teal); border-radius: 18px; }
.drawer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.drawer-nav a { padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; font-weight: 700; }
.drawer-nav a:hover { color: var(--brand); border-color: rgba(255,107,53,.45); }
.drawer-actions { margin-top: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.text-link { color: var(--brand); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--brand-deep); text-decoration: underline; }

main { min-height: 60vh; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 86px 0; }
.section.compact { padding: 56px 0; }
.section-tint { background: linear-gradient(180deg, rgba(233,255,248,.72), rgba(255,241,199,.44)); }
.section-dark { background: var(--purple); color: #fff8f2; }
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-kicker { display: inline-block; margin-bottom: 8px; color: var(--brand); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, .section-title { color: var(--heading); line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -.04em; }
h2 { font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -.025em; }
h3 { font-size: 21px; }
p { margin-top: 0; }
.lead { font-size: 18px; color: var(--muted); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead, .section-dark p { color: rgba(255,248,242,.78); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 62px;
  background:
    radial-gradient(circle at 15% 8%, rgba(255,107,53,.23), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(0,229,176,.25), transparent 30%),
    linear-gradient(135deg, #fff4ea 0%, #f4f0ff 46%, #e9fff8 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.hero::before { width: 260px; height: 260px; background: rgba(255,209,102,.42); left: -90px; bottom: -100px; }
.hero::after { width: 210px; height: 210px; background: rgba(184,51,106,.18); right: 8%; top: -90px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.hero-copy { max-width: 670px; }
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.78); color: var(--brand); font-weight: 900; box-shadow: var(--shadow-small); }
.hero-copy h1 { margin: 22px 0 8px; }
.hero-subtitle { font-size: clamp(22px, 3vw, 34px); color: var(--purple); font-weight: 900; margin-bottom: 18px; }
.hero-copy .hero-description { color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin: 28px 0; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-features li { padding: 8px 13px; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 999px; font-weight: 700; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 8% -5% -5% 10%; border-radius: 42px; background: linear-gradient(135deg, rgba(255,107,53,.22), rgba(0,229,176,.22)); transform: rotate(4deg); }
.hero-visual img { position: relative; width: 100%; max-height: 600px; object-fit: contain; border-radius: 34px; box-shadow: 0 34px 80px rgba(43,26,63,.22); }

.highlight-strip { position: relative; z-index: 2; margin-top: -18px; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.highlight-card { background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: var(--shadow-small); }
.highlight-card strong { display: block; color: var(--heading); font-size: 18px; margin-bottom: 6px; }
.highlight-card p { color: var(--muted); margin: 0; font-size: 14px; }

.pill-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill-nav a { padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--heading); font-weight: 800; text-decoration: none; box-shadow: 0 8px 22px rgba(97,45,16,.07); }
.pill-nav a:hover { color: #fff; background: var(--purple); border-color: var(--purple); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.split.reverse .media { order: 2; }
.media img { width: 100%; max-height: 560px; object-fit: contain; border-radius: 28px; box-shadow: var(--shadow); background: #fff; }
.card, .zone-card, .info-card, .review-card, .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
}
.copy-card { padding: clamp(24px, 4vw, 44px); }
.check-list, .service-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.check-list li, .service-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before, .service-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 900; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; height: 260px; object-fit: contain; background: linear-gradient(145deg, #fff4ea, #effffb); }
.zone-card-body { padding: 26px; }
.zone-card p { color: var(--muted); }
.meta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.tag, .badge, .label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--pale-gold); color: #8a5d00; font-size: 13px; font-weight: 800; }
.badge.teal { background: var(--pale-teal); color: #007f65; }

.feature-card { padding: 26px; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, rgba(255,107,53,.16), rgba(0,229,176,.2)); font-size: 22px; margin-bottom: 18px; }
.feature-card p { color: var(--muted); }

.review-card { padding: 25px; }
.review-card p { color: var(--muted); }
.review-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--gradient); color: #fff; font-weight: 900; }
.review-person strong { display: block; color: var(--heading); }
.review-person span { color: var(--soft); font-size: 13px; }

.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 22px 24px; box-shadow: var(--shadow-small); }
.faq-item summary { cursor: pointer; color: var(--heading); font-weight: 900; list-style: none; padding-right: 24px; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: -3px; color: var(--brand); font-size: 24px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin: 14px 0 0; }

.notice-panel { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 30px; border-radius: 26px; background: linear-gradient(135deg, #24130c, #2b1a3f); color: #fff; box-shadow: var(--shadow); }
.notice-panel .notice-mark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,209,102,.18); color: var(--gold); font-size: 26px; }
.notice-panel h2, .notice-panel h3 { color: #fff; }
.notice-panel p { color: rgba(255,255,255,.78); margin-bottom: 0; }

.page-hero { padding: 74px 0 52px; background: linear-gradient(135deg, #fff4ea 0%, #f2efff 52%, #eafff8 100%); overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 17px; }
.page-hero img { width: 100%; max-height: 470px; object-fit: contain; border-radius: 30px; box-shadow: var(--shadow); background: #fff; }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; color: var(--soft); font-size: 14px; }
.breadcrumbs a { color: var(--brand); text-decoration: none; }
.page-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 24px; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 32px; align-items: start; }
.article-content { min-width: 0; }
.article-section { margin-bottom: 26px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-small); }
.article-section h2 { font-size: clamp(25px, 3vw, 34px); }
.article-section p { color: var(--muted); }
.article-section:last-child { margin-bottom: 0; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 18px; }
.sidebar-card { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-small); }
.sidebar-card h2, .sidebar-card h3 { font-size: 20px; }
.sidebar-card a { display: block; padding: 7px 0; color: var(--brand); font-weight: 700; text-decoration: none; }
.sidebar-card img { width: 100%; max-height: 230px; object-fit: contain; border-radius: 16px; background: var(--pale-teal); }

.steps { counter-reset: item; display: grid; gap: 14px; }
.step { counter-increment: item; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 18px; background: #fffaf5; border-radius: 18px; }
.step::before { content: counter(item); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--gradient); color: #fff; font-weight: 900; }
.step h3 { margin-bottom: 4px; }
.step p { margin-bottom: 0; }

.cta-band { padding: 38px; border-radius: 30px; background: linear-gradient(135deg, #2b1a3f 0%, #4c245e 52%, #8f3767 100%); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 28px; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 0; }

.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 62px 0 28px; }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.6fr; gap: 58px; }
.footer-brand p { color: rgba(255,243,232,.72); max-width: 440px; }
.footer-logo { margin-bottom: 18px; }
.footer-btn { margin-top: 8px; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.footer-links h2 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.footer-links a { display: block; color: rgba(255,243,232,.72); text-decoration: none; padding: 5px 0; }
.footer-links a:hover { color: var(--teal); }
.footer-notice { width: min(var(--max), calc(100% - 40px)); margin: 34px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 28px; color: rgba(255,243,232,.58); font-size: 13px; }
.footer-notice p { margin: 0; max-width: 820px; }
.mobile-bottom-nav { display: none; }

@media (max-width: 1060px) {
  .nav-core { display: none; }
  .header-inner { justify-content: space-between; }
  .hero-grid, .page-hero-grid, .split { gap: 34px; }
  .highlight-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .header-inner { min-height: 64px; padding: 0 12px; gap: 10px; }
  .mobile-menu-trigger { display: inline-flex; }
  .desktop-menu-trigger { display: none; }
  .site-logo span { font-size: 17px; }
  .site-logo img { max-height: 36px; }
  .header-cta { min-height: 38px; padding: 8px 13px; font-size: 13px; }
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .section.compact { padding: 44px 0; }
  .hero { padding: 60px 0 44px; }
  .hero-grid, .page-hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-copy h1 { font-size: 46px; }
  .hero-subtitle { font-size: 24px; }
  .highlight-strip { margin-top: 0; padding-top: 20px; }
  .highlight-grid, .grid-2, .grid-3, .grid-4, .sidebar { grid-template-columns: 1fr; }
  .split.reverse .media { order: 0; }
  .zone-card img { height: auto; max-height: 360px; }
  .page-hero { padding: 52px 0 38px; }
  .article-section { padding: 23px; }
  .notice-panel { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-notice { flex-direction: column; gap: 12px; }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9980;
    height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 26px rgba(97,45,16,.12);
    backdrop-filter: blur(12px);
  }
  .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; color: var(--muted); text-decoration: none; font-size: 12px; }
  .mobile-bottom-nav a span { font-size: 18px; line-height: 1; }
  .mobile-bottom-nav a.active { color: var(--brand); font-weight: 900; }
}

@media (max-width: 420px) {
  .site-logo span { display: none; }
  .hero-copy h1 { font-size: 40px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .main-btn { width: 100%; }
  .drawer-nav { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 16px; }
}
