:root {
  --sidebar: 220px;
  --topbar: 56px;
  --orange: #E8720C;
  --orange-hover: #c85e08;
  --orange-soft: #fdf2e8;
  --brown-heading: #3A1E08;
  --brown-body: #5C3D1E;
  --brown-sub: #7A5C3C;
  --brown-light: #9B7B5A;
  --bg: #fbfaf7;
  --bg-alt: #f7f4ef;
  --jp-ink: #4f3f34;
  --jp-sub: #7c6c61;
  --jp-muted: #9b8d82;
  --jp-accent: #8a6f5b;
  --paper: #ffffff;
  --warm: var(--bg-alt);
  --warm-hero: #fff8ef;
  --ink: var(--jp-ink);
  --main-text: #3A2D27;
  --heading: var(--main-text);
  --body: var(--main-text);
  --muted: var(--jp-muted);
  --line: #eee8e2;
  --line-strong: #e1d9d1;
  --accent: var(--orange);
  --accent-soft: var(--orange-soft);
  --brown: var(--jp-accent);
  --radius: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 42px;
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  background: rgba(255, 255, 255, .96);
  border-right: 1px solid var(--line);
  z-index: 40;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 20px 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  flex: none;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand strong {
  display: block;
  color: var(--jp-ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  margin-top: 1px;
  color: var(--jp-muted);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .05em;
}

.side-nav {
  margin-top: 0;
  display: grid;
  padding: 8px 0;
  gap: 2px;
}

.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 24px 10px 20px;
  color: var(--jp-ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  background: transparent;
  transition: opacity .24s ease, background-color .24s ease;
}

.side-nav a.active {
  color: var(--jp-ink);
  background: rgba(138, 111, 91, .05);
}

.side-nav a:hover {
  color: var(--jp-accent);
  background: rgba(138, 111, 91, .04);
}

.side-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: var(--jp-accent);
  opacity: .32;
}

.side-nav.has-active a:not(.active) {
  opacity: .34;
}

.side-nav.has-active a:not(.active):hover {
  opacity: .72;
}

.side-nav span {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--line);
  transition: background .2s ease;
}
.side-nav a.active span {
  background: var(--jp-accent);
  opacity: .5;
}

.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar);
  right: 0;
  height: var(--topbar);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  z-index: 35;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 16px;
  color: var(--heading);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .05em;
}

.top-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 7px;
  transition: opacity .24s ease, background-color .24s ease;
}

.top-nav a[href="#services"] {
  margin-left: 16px;
}

.top-nav a.active {
  background: #f3f1ef;
}

.top-nav.has-active a:not(.active) {
  opacity: .34;
}

.top-nav.has-active a:not(.active):hover {
  opacity: .72;
}

.language-toggle,
.mobile-language-toggle {
  appearance: none;
  display: inline-grid;
  place-items: center;
  margin-left: 0;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, .82);
  color: var(--jp-accent);
  min-width: 48px;
  height: 34px;
  padding: 0 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: border-color .24s ease, background-color .24s ease, color .24s ease;
}

.language-toggle:hover,
.mobile-language-toggle:hover {
  border-color: #d5cac1;
  background: #f8f6f4;
  color: var(--jp-ink);
}

.mobile-language-toggle {
  display: none;
  margin: 6px 12px 0;
  justify-self: start;
}

.menu-button,
.mobile-drawer { display: none; }

.page-shell {
  margin-left: var(--sidebar);
  padding-top: var(--topbar);
}

.hero {
  min-height: calc(100vh - var(--topbar));
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 14%, rgba(232, 114, 12, .055) 0%, transparent 34%),
    linear-gradient(145deg, #fffcf8 0%, #fdf5ea 60%, #fdf0df 100%);
  display: flex;
  align-items: center;
}

.hero-inner {
  width: min(980px, calc(100% - 120px));
  margin-left: 74px;
  transform: translateY(-12px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 6px 14px;
  margin: 0 0 28px;
  border: 1px solid rgba(232, 114, 12, .24);
  border-radius: 999px;
  background: rgba(255, 250, 244, .88);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--heading);
  font-size: 46px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--accent);
  font-size: 1em;
}

.hero-sub {
  margin: 0;
  color: var(--jp-sub);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.content-section {
  width: min(var(--max), calc(100% - 140px));
  margin: 0 auto;
  padding: 104px 0;
}

.services-section {
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 24px;
  color: var(--brown);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
}

.process-section .kicker,
.about-section .kicker {
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}

.plan-section .kicker,
.scenes-section .kicker {
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}

.contact-section .section-heading h2 {
  color: var(--heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.process-section .section-heading h2 {
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .04em;
}

.process-section .section-heading {
  margin-bottom: 44px;
}

.plan-section .section-heading h2 {
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .04em;
}

.scenes-section .section-heading h2 {
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .04em;
}

.section-heading h2 {
  margin: 0 0 20px;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.35;
  font-weight: 800;
}

.section-heading p:not(.kicker) {
  color: var(--main-text);
  font-size: 17px;
  line-height: 1.9;
}

.service-list {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.service-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--heading);
  padding: 0 4px;
}

.service-row:first-child { border-top: 1px solid var(--line); }
.service-row div { display: flex; align-items: center; gap: 14px; }
.service-row h3 {
  margin: 0;
  color: var(--jp-ink);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-title-icon {
  width: 13.5px;
  height: 13.5px;
  object-fit: contain;
  flex: none;
}

.service-title-link {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.service-title-link:hover {
  background: rgba(232, 114, 12, .08);
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(138, 111, 91, .28);
}

.service-row button {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(138, 111, 91, .22);
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.service-row button::before,
.service-row button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--jp-accent);
  transform: translate(-50%, -50%);
  transition: transform .18s ease, background .18s ease;
}

.service-row button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-row button:hover {
  border-color: rgba(138, 111, 91, .38);
  background: rgba(138, 111, 91, .04);
}

.service-row button.open {
  border-color: rgba(138, 111, 91, .72);
}

.service-row button.open::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.service-row button.open::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 4px;
  opacity: 0;
  transition: max-height .28s ease, padding .28s ease, opacity .18s ease;
}

.service-panel.is-open {
  max-height: 4200px;
  padding: 20px 4px;
  opacity: 1;
}

.service-panel p {
  margin: 0 0 18px;
  color: var(--jp-muted);
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: .015em;
}

.retail-support-panel {
  padding-top: 0;
  padding-bottom: 0;
}

.retail-support-panel.is-open {
  padding-top: 20px;
  padding-bottom: 24px;
}

.retail-support-panel .retail-support-lede {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 400;
}

.retail-support-panel h4 {
  margin: 0;
  color: var(--jp-ink);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .03em;
}

.retail-support-panel h4 a {
  display: inline-flex;
  border-bottom: 1px solid rgba(138, 111, 91, .28);
}

.retail-support-panel h4 a:hover {
  color: var(--orange);
  border-bottom-color: rgba(232, 114, 12, .38);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  color: var(--main-text);
  font-size: 12.5px;
  background: #fff;
}

th {
  text-align: left;
  color: var(--brown);
  background: #f7f5f3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
}

th, td {
  padding: 9px 12px;
  border-bottom: 1px solid #ebe6e1;
}

td {
  color: var(--jp-sub);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
}

.option-name,
.option-cn {
  display: block;
}

.option-cn {
  margin-top: 7px;
  color: var(--brown-sub);
  font-size: 11.5px;
  font-weight: 500;
}

.ior-guide {
  padding-top: 0;
  padding-bottom: 0;
}

.ior-guide.is-open {
  padding-top: 24px;
  padding-bottom: 26px;
}

.guide-head {
  text-align: center;
  margin-bottom: 30px;
}

.guide-head h3 {
  margin: 0 0 22px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .03em;
}

.guide-head p {
  margin: 0;
  color: var(--jp-muted);
  font-size: 11px;
}

.guide-block {
  margin-top: 28px;
}

.guide-block:first-of-type {
  margin-top: 0;
}

.guide-block h4 {
  margin: 0 0 18px;
  color: var(--main-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

.material-list {
  margin: 0;
  padding-left: 28px;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.75;
}

.material-list li {
  margin: 0 0 16px;
  padding-left: 2px;
}

.guide-note {
  margin: 24px 0 0 !important;
  color: #e52121 !important;
  font-size: 11px !important;
  line-height: 1.8 !important;
  font-style: italic;
}

.flow-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.number-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.5;
}

.number-flow li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.number-flow span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f4f4;
  color: #6b6b6b;
  font-size: 12px;
  line-height: 1;
}

.service-panel p.guide-fee {
  margin: 12px 0 0;
  color: var(--orange);
  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 600;
}

.scenes-section,
.about-section {
  width: 100%;
  padding-left: max(70px, calc((100% - var(--max)) / 2));
  padding-right: max(70px, calc((100% - var(--max)) / 2));
  background: #f4f0eb;
}

.scene-cards,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.plan-grid article {
  background: #fff;
  border: 1px solid var(--jp-line-soft);
  border-radius: 12px;
  padding: 28px 22px;
  color: var(--jp-sub);
  box-shadow: none;
}

.scene-cards {
  gap: 20px;
}

.plan-grid {
  gap: 20px;
}

.scene-cards article {
  min-height: 0;
  background: #fff;
  border: 1px solid var(--jp-line-soft);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  color: var(--jp-sub);
  box-shadow: none;
}

.icon-circle {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(138, 111, 91, .18);
  background: var(--jp-accent-soft);
  color: var(--jp-accent);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.plan-grid h3 {
  margin: 0 0 24px;
  color: var(--heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.plan-grid p {
  margin: 0;
  color: var(--main-text);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.scene-cards h3 {
  margin: 0 0 8px;
  color: var(--jp-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.scene-cards p {
  margin: 0;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.72;
  font-weight: 400;
}

.retail-link {
  display: inline-flex;
  margin-top: -2px;
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  border-bottom: 1px solid rgba(138, 111, 91, .22);
}

.retail-steps,
.retail-checklist {
  margin-top: 56px;
}

.retail-steps h3,
.retail-checklist h3 {
  margin: 0 0 28px;
  color: var(--jp-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
}

.retail-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.retail-step-grid article,
.checklist-grid article {
  background: #fff;
  border: 1px solid #f0ece8;
  border-radius: 16px;
  padding: 28px 22px;
}

.retail-step-grid article {
  text-align: center;
  min-height: 210px;
}

.step-circle {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3eee8;
  border: 2px solid #ded6ce;
  color: var(--jp-accent);
  font-size: 15px;
  font-weight: 800;
}

.retail-step-grid h4,
.checklist-grid h4 {
  margin: 0 0 14px;
  color: var(--jp-ink);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .03em;
}

.retail-step-grid p {
  margin: 0;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.5;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.checklist-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist-grid li {
  position: relative;
  padding-left: 16px;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.55;
}

.checklist-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8d0ca;
}

.plan-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.plan-grid article {
  position: relative;
  min-height: 0;
  text-align: center;
}

.plan-option {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--jp-line-soft);
}

.plan-grid .plan-option span {
  display: block;
  margin-bottom: 5px;
  color: var(--jp-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.plan-grid .plan-option small {
  display: block;
  color: var(--jp-sub);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.72;
}

.plan-grid h3 {
  margin: 0 0 5px;
  color: var(--jp-sub);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
}

.plan-grid h4 {
  margin: 0;
  color: var(--jp-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.plan-type {
  margin-bottom: 16px;
}

.plan-price-box {
  margin: 0 0 18px;
  padding: 16px 14px;
  border: 1px solid var(--jp-line-soft);
  border-radius: 12px;
  background: var(--jp-accent-soft);
}

.plan-price-box small {
  display: block;
  margin-bottom: 6px;
  color: var(--jp-sub);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
}

.plan-price-box p {
  margin: 0;
  color: var(--jp-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .02em;
}

.plan-grid .plan-desc-en,
.plan-grid .plan-desc-cn {
  margin: 0 auto;
  max-width: 280px;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.72;
  font-weight: 400;
}

.plan-grid .plan-desc-cn {
  margin-top: 10px;
}

.plan-grid .recommended {
  background: #fffdfa;
  border: 2px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(232, 114, 12, .08);
}

.plan-grid .recommended .plan-option span {
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
}

.plan-grid .recommended .plan-price-box {
  border: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #f5a01a 100%);
}

.plan-grid .recommended .plan-price-box small,
.plan-grid .recommended .plan-price-box p {
  color: #fff;
}

.plan-grid .recommended .plan-price-box small {
  font-size: 12.5px;
  font-weight: 600;
}

.plan-grid .recommended .plan-price-box p {
  font-size: 20px;
  font-weight: 800;
}

.plan-grid em {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 96px;
  padding: 8px 14px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.plan-grid .recommended .plan-option {
  padding-top: 18px;
}

.fee-breakdown {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.fee-breakdown h3 {
  margin: 0 0 24px;
  color: var(--heading);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fee-grid article {
  min-height: 154px;
  padding: 20px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.fee-grid h4 {
  margin: 0 0 7px;
  color: var(--heading);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
}

.fee-grid p {
  margin: 0 0 18px;
  color: var(--jp-muted);
  font-size: 11px;
  line-height: 1.45;
}

.fee-grid strong {
  display: block;
  color: var(--jp-sub);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}

.fee-grid small {
  display: block;
  margin-top: 7px;
  color: var(--jp-muted);
  font-size: 11px;
  line-height: 1.55;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline li {
  min-height: 210px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.timeline span {
  color: var(--jp-sub);
  font-size: 11px;
  font-weight: 600;
}

.timeline strong {
  display: block;
  margin: 30px 0 10px;
  color: var(--jp-sub);
  font-size: 14px;
  font-weight: 600;
}

.timeline p {
  margin: 0;
  color: var(--jp-sub);
  font-size: 12.5px;
  line-height: 1.72;
}

.timeline .lease-note {
  margin-top: 12px;
  color: #d62222;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-form {
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--jp-line);
  border-radius: 12px;
  box-shadow: none;
  padding: 28px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--jp-line);
  border-radius: 8px;
  background: var(--bg);
  min-height: 0;
  padding: 10px 14px;
  color: var(--jp-ink);
  font-size: 13.5px;
  box-shadow: none;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select {
  padding-right: 36px;
  background-position: right 18px center;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--jp-accent);
  box-shadow: 0 0 0 2px rgba(138, 111, 91, .08);
}

.contact-form textarea {
  padding-top: 14px;
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  justify-self: center;
  min-width: 112px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .24s ease;
}

.contact-form button:hover {
  background: var(--orange-hover);
}

.site-footer {
  position: fixed;
  left: var(--sidebar);
  right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #f2ede8;
  padding: 8px 32px;
  color: var(--jp-muted);
  background: #fff;
  box-sizing: border-box;
}

.footer-copy p {
  margin: 0;
}

.footer-copy p:first-child {
  color: var(--jp-muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-copy p:last-child {
  margin-top: 2px;
  color: #c9c9c9;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 0;
  white-space: nowrap;
}

.footer-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--jp-sub);
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.3;
}

.footer-link:hover {
  color: var(--orange);
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  padding: 0;
}

.wechat-modal.is-open {
  display: block;
}

.wechat-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30, 14, 3, .35);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.wechat-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 950;
  width: 240px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(30, 14, 3, .12);
  text-align: center;
  transform: translate(-50%, -50%) scale(.96);
  transition: transform .2s ease;
}

.wechat-modal.is-open .wechat-modal-card {
  transform: translate(-50%, -50%) scale(1);
}

.wechat-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: none;
  padding: 4px;
  color: var(--jp-muted);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease;
}

.wechat-modal-close:hover {
  color: var(--jp-ink);
}

.wechat-modal-title {
  margin: 0 0 16px;
  color: var(--jp-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.wechat-modal-img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 14px;
  border-radius: 8px;
}

.wechat-modal-hint {
  margin: 0;
  color: var(--jp-muted);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  :root { --sidebar: 0px; --topbar: 58px; }
  .sidebar { display: none; }
  .topbar {
    left: 0;
    justify-content: space-between;
    padding: 0 16px;
  }
  .topbar::before {
    content: "Taxlema";
    color: var(--heading);
    font-weight: 800;
  }
  .menu-button {
    order: 2;
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  .menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    margin: 6px auto;
    background: var(--heading);
  }
  .top-nav,
  .language-toggle { display: none; }
  .mobile-drawer {
    position: fixed;
    top: var(--topbar);
    left: 12px;
    right: 12px;
    z-index: 50;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.98);
  }
  .mobile-drawer.is-open { display: grid; }
  .mobile-language-toggle { display: inline-grid; }
  .mobile-drawer a {
    padding: 12px;
    color: var(--heading);
    font-weight: 700;
  }
  .hero-inner {
    width: calc(100% - 32px);
    margin: 0 auto;
    transform: none;
  }
  .content-section,
  .scenes-section,
  .about-section {
    width: min(100% - 28px, var(--max));
    padding: 82px 0;
  }
  .scene-cards,
  .plan-grid,
  .fee-grid,
  .retail-step-grid,
  .checklist-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .site-footer {
    left: 0;
    flex-direction: row;
    align-items: center;
    padding: 8px 18px;
  }
}

@media (max-width: 560px) {
  .table-wrap {
    overflow: visible;
  }
  table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
    background: transparent;
  }
  table thead {
    display: none;
  }
  table,
  table tbody,
  table tr,
  table td {
    display: block;
    width: 100%;
  }
  table tr {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
  }
  table td {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }
  table td:last-child {
    border-bottom: 0;
  }
  table td::before {
    content: attr(data-label);
    color: var(--jp-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
  }
  .hero {
    min-height: 720px;
    align-items: flex-start;
    padding-top: 112px;
  }
  .hero-badge {
    margin-bottom: 28px;
    padding: 6px 14px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .section-heading h2 { font-size: 30px; }
  .service-row h3 { font-size: 19px; }
  .service-row div { gap: 14px; }
  .service-row button { width: 26px; height: 26px; }
  .about-cards article { padding: 38px 24px; }
  .plan-grid article {
    min-height: auto;
    padding: 28px 22px;
  }
  .scene-cards article { padding: 28px 22px; }
}
