﻿:root {
  --sj-ink: #152019;
  --sj-deep: #1e2a24;
  --sj-slate: #2a3830;
  --sj-cedar: #c56a28;
  --sj-cedar-deep: #9a4f1a;
  --sj-cedar-soft: #f3ddc8;
  --sj-muted: #5c6b62;
  --sj-line: #d5dbd6;
  --sj-bg: #eef1ef;
  --sj-paper: #f7f8f6;
  --sj-white: #ffffff;
  --sj-shadow: 0 18px 40px rgba(21, 32, 25, 0.12);
  --sj-radius: 12px;
  --sj-sans: "Noto Sans SC", "Sora", "PingFang SC", "Microsoft YaHei", sans-serif;
  --sj-display: "Sora", "Noto Sans SC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.sj-page {
  margin: 0;
  font-family: var(--sj-sans);
  color: var(--sj-ink);
  background:
    radial-gradient(ellipse 65% 40% at 0% 0%, rgba(197, 106, 40, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 35% at 100% 5%, rgba(42, 56, 48, 0.07), transparent 50%),
    linear-gradient(180deg, #e8ece9 0%, var(--sj-bg) 45%, #e6ebe8 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.sj-page.is-ready .sj-hero-copy [data-sj-enter] {
  opacity: 1;
  transform: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sj-shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.sj-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}
.sj-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sj-deep), var(--sj-cedar));
}

.sj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sj-btn:hover { transform: translateY(-2px); }
.sj-btn:active { transform: translateY(0); }
.sj-btn-sm { min-height: 36px; padding: 0 14px; font-size: 14px; }
.sj-btn-cedar {
  background: linear-gradient(135deg, #d8843f 0%, var(--sj-cedar) 48%, var(--sj-cedar-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(197, 106, 40, 0.32);
}
.sj-btn-cedar:hover {
  background: linear-gradient(135deg, #e39655 0%, #d07432 50%, #a8551c 100%);
}
.sj-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.sj-btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.sj-btn-outline {
  background: transparent;
  color: var(--sj-cedar);
  border-color: rgba(197, 106, 40, 0.45);
}
.sj-btn-outline:hover { background: rgba(197, 106, 40, 0.08); }

.sj-eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sj-cedar);
}
.sj-section-head { margin-bottom: 28px; }
.sj-section-head h2 {
  margin: 0;
  font-family: var(--sj-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.sj-section-sub {
  margin: 10px 0 0;
  color: var(--sj-muted);
  max-width: 42em;
}
.sj-section-head-light .sj-eyebrow { color: #e8b07a; }
.sj-section-head-light h2 { color: #fff; }
.sj-section-head-light .sj-section-sub { color: rgba(255, 255, 255, 0.72); }

.sj-link-more {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--sj-cedar);
  font-weight: 600;
  cursor: pointer;
}
.sj-link-more:hover { text-decoration: underline; }

/* Header */
.sj-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.sj-header.is-solid {
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(21, 32, 25, 0.08);
}
.sj-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}
.sj-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sj-brand-logo {
  width: auto;
  height: 40px;
  max-width: 148px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
}
.sj-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sj-brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  transition: color .2s ease;
}
.sj-header.is-solid .sj-brand-text strong { color: var(--sj-ink); }
.sj-brand-text em {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s ease;
}
.sj-header.is-solid .sj-brand-text em { color: var(--sj-muted); }
.sj-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.sj-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: background .2s ease, color .2s ease;
}
.sj-header.is-solid .sj-nav a { color: var(--sj-ink); }
.sj-nav a:hover { background: rgba(255, 255, 255, 0.12); }
.sj-header.is-solid .sj-nav a:hover { background: rgba(21, 32, 25, 0.06); }
.sj-nav-cta {
  background: rgba(197, 106, 40, 0.2) !important;
  color: #fff !important;
}
.sj-header.is-solid .sj-nav-cta {
  background: rgba(197, 106, 40, 0.12) !important;
  color: var(--sj-cedar) !important;
}
.sj-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sj-header-phone {
  font-family: var(--sj-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.sj-header.is-solid .sj-header-phone { color: var(--sj-cedar); }
.sj-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.sj-header.is-solid .sj-nav-toggle {
  border-color: var(--sj-line);
  background: #fff;
}
.sj-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: background .2s ease;
}
.sj-header.is-solid .sj-nav-toggle span { background: var(--sj-ink); }

/* Hero — 原图完整显示（对齐苏州实景站：width100% + height:auto） */
.sj-hero {
  position: relative;
  min-height: 0;
  display: block;
  color: #fff;
  overflow: hidden;
  background: #121c16;
  line-height: 0;
}
.sj-hero-bg {
  position: relative;
  width: 100%;
  z-index: 0;
  line-height: 0;
}
.sj-hero-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .55s ease;
  background: #121c16;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.sj-hero-slide.is-active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.sj-hero-slide img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}
.sj-hero-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(18, 28, 22, 0.82) 0%, rgba(18, 28, 22, 0.55) 48%, rgba(18, 28, 22, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 28, 22, 0.25) 0%, rgba(18, 28, 22, 0.65) 100%);
  pointer-events: none;
}
.sj-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 120px 0 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.65;
  box-sizing: border-box;
}
.sj-hero-copy {
  width: min(100%, 640px);
  text-align: left;
}
.sj-hero-copy [data-sj-enter] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.sj-hero-copy [data-sj-enter="2"] { transition-delay: .08s; }
.sj-hero-copy [data-sj-enter="3"] { transition-delay: .16s; }
.sj-hero-copy [data-sj-enter="4"] { transition-delay: .24s; }
.sj-hero-copy [data-sj-enter="5"] { transition-delay: .32s; }
.sj-hero-eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(232, 176, 122, 0.45);
  border-radius: 999px;
  background: rgba(197, 106, 40, 0.16);
  color: #f3ddc8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.sj-hero-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 12em;
}
.sj-hero-brand {
  margin: 0 0 14px;
  font-family: var(--sj-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #f3ddc8;
}
.sj-hero-lead {
  margin: 0 0 26px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 34em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sj-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sj-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.sj-hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.sj-hero-dots button.is-active { background: var(--sj-cedar); width: 22px; border-radius: 999px; }

/* About */
.sj-about {
  padding: 72px 0;
}
.sj-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.sj-about-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
}
.sj-about-lead {
  margin: 0;
  color: var(--sj-muted);
  font-size: 15px;
}
.sj-about-lead-panel.is-clamped .sj-about-lead {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sj-about-phone {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
}
.sj-about-phone a { color: var(--sj-cedar); }
.sj-about-meta {
  margin: 8px 0 0;
  color: var(--sj-muted);
  font-size: 14px;
}
.sj-about-meta a { color: var(--sj-ink); text-decoration: underline; text-underline-offset: 3px; }
.sj-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.sj-chip-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(197, 106, 40, 0.1);
  color: var(--sj-cedar-deep);
  font-size: 13px;
  font-weight: 600;
  max-width: 100%;
}
.sj-chip-row[data-sj-chips] span {
  white-space: nowrap;
}
.sj-product-media:empty::after,
.sj-product-media:not(:has(*))::before {
  content: "暂无产品图";
  display: grid;
  place-items: center;
  min-height: 180px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  background: #1a2420;
}
.sj-about-visual { position: relative; }
.sj-about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  border-radius: var(--sj-radius);
  box-shadow: var(--sj-shadow);
}
.sj-about-logo-only {
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  border-radius: var(--sj-radius);
  background:
    linear-gradient(145deg, #1e2a24 0%, #152019 55%, #243029 100%);
  border: 1px solid rgba(232, 176, 122, 0.18);
}
.sj-about-logo-only img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 72px;
  object-fit: contain;
  background: transparent;
}
.sj-about-photo.sj-media-empty,
.sj-media-empty {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--sj-radius);
  box-shadow: var(--sj-shadow);
  background:
    linear-gradient(145deg, #1e2a24 0%, #152019 48%, #243029 100%);
  border: 1px solid rgba(232, 176, 122, 0.12);
}
.sj-about-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(247, 248, 246, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(21, 32, 25, 0.14);
}
.sj-about-card-logo {
  width: auto;
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
}
.sj-about-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sj-about-card-text strong {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sj-about-card-text span { font-size: 12px; color: var(--sj-muted); }

/* Brands */
.sj-brands { padding: 24px 0 64px; }
.sj-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sj-brand-tile {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 16px;
  border-radius: 10px;
  background: var(--sj-white);
  border: 1px solid var(--sj-line);
  text-align: center;
  font-weight: 700;
}

/* Product stage — 第1张通栏 + 下方 lookbook(2～6) */
.sj-gallery {
  padding: 64px 0 72px;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(197, 106, 40, 0.08), transparent 55%),
    var(--sj-paper);
}
.sj-stage {
  border-radius: 18px;
  overflow: hidden;
  background: #121a16;
  box-shadow: 0 22px 48px rgba(21, 32, 25, 0.16);
}
.sj-bento {
  position: relative;
  padding: 12px;
  background: #0d1411;
}
.sj-bento.sj-bento-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
.sj-look-banner {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  background: #0a1c16;
}
.sj-look-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}
.sj-bento-look {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 12px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}
.sj-bento-look.sj-bento-look-solo {
  grid-template-columns: 1fr;
}
.sj-look-stage {
  position: relative;
  min-width: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0a1c16;
  line-height: 0;
  text-align: center;
}
.sj-look-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(197, 106, 40, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
  line-height: 1.2;
}
.sj-look-main {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}
.sj-look-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 96px;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  align-self: stretch;
}
.sj-look-thumb {
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2420;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity .15s ease, border-color .15s ease;
}
.sj-look-thumb.is-on {
  opacity: 1;
  border-color: rgba(197, 106, 40, 0.95);
}
.sj-look-thumb:hover { opacity: 1; }
.sj-look-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #1a2420;
}
.sj-look-stage .sj-bento-hint,
.sj-bento-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18, 28, 22, 0.78);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}
.sj-bento-look-solo .sj-bento-hint { display: none; }

/* 无产品图：纯色底板占位 */
.sj-bento-empty,
.sj-look-banner--empty,
.sj-look-stage--empty {
  display: block;
  width: 100%;
  min-height: clamp(220px, 36vh, 420px);
  border-radius: 12px;
  background:
    linear-gradient(145deg, #1a2420 0%, #121a16 45%, #243029 100%);
  border: 1px solid rgba(232, 176, 122, 0.12);
  box-sizing: border-box;
}
.sj-bento.is-empty {
  min-height: clamp(220px, 36vh, 420px);
  background:
    linear-gradient(145deg, #1a2420 0%, #121a16 45%, #243029 100%);
}

.sj-stage-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 22px 24px 24px;
  background:
    linear-gradient(135deg, #1e2a24 0%, #152019 55%, #243029 100%);
  color: #fff;
}
.sj-stage-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.sj-stage-copy .sj-product-kicker { color: #e8b07a; }
.sj-stage-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
}
.sj-stage-copy .sj-feature-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48em;
}
.sj-stage-copy .sj-feature-rich {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.sj-stage-copy .sj-feature-rich p { margin: 0 0 8px; }
.sj-stage-bar .sj-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.sj-stage-bar .sj-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* end product stage */

/* Keep legacy card gallery rules for any residual markup */
.sj-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sj-product-card {
  display: flex;
  flex-direction: column;
  background: var(--sj-white);
  border: 1px solid var(--sj-line);
  border-radius: var(--sj-radius);
  overflow: hidden;
}
.sj-product-media { background: #1a2420; }
.sj-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.sj-product-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sj-cedar);
}
.sj-product-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}
.sj-product-summary {
  margin: 0;
  color: var(--sj-muted);
  font-size: 14px;
}
.sj-product-link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sj-cedar);
}
.sj-product-link::after { content: " →"; }
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: #152019;
}
.product-gallery-item {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #243029;
}
.product-gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.product-gallery-item:only-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Strength */
.sj-strength { padding: 72px 0; }
.sj-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sj-strength-card,
.sj-strength-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  border-radius: var(--sj-radius);
  background: var(--sj-white);
  border: 1px solid var(--sj-line);
  box-shadow: 0 8px 22px rgba(21, 32, 25, 0.05);
  min-width: 0;
}
.sj-strength-index {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 12px;
  background: var(--sj-cedar);
  border-radius: 999px;
}
.sj-strength-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
}
.sj-strength-body {
  margin: 0;
  color: var(--sj-muted);
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
}
.sj-strength-card.is-clamped .sj-strength-body,
.sj-strength-panel.is-clamped .sj-strength-body {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sj-strength-card .sj-link-more,
.sj-strength-panel .sj-link-more {
  margin-top: 10px;
  align-self: flex-start;
}

/* Essay / proof */
.sj-essay,
.sj-proof,
.sj-assurance,
.sj-coverage { padding: 64px 0; }
.sj-proof-alt { background: rgba(255, 255, 255, 0.45); }
.sj-essay-body,
.sj-proof-card,
.sj-assurance-card {
  padding: 24px 26px;
  border-radius: var(--sj-radius);
  background: var(--sj-white);
  border: 1px solid var(--sj-line);
  color: var(--sj-muted);
}
.sj-essay-body p,
.sj-proof-body p { margin: 0 0 12px; }
.sj-proof-card.is-clamped .sj-proof-body {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sj-section-optional:not(:has(.sj-proof-card)) { display: none; }

.sj-city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sj-city-cloud a {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sj-white);
  border: 1px solid var(--sj-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--sj-muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.sj-city-cloud a:hover {
  color: var(--sj-cedar);
  border-color: rgba(197, 106, 40, 0.4);
  background: rgba(197, 106, 40, 0.06);
}

/* CTA */
.sj-cta {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 40% 70% at 10% 50%, rgba(197, 106, 40, 0.22), transparent 60%),
    linear-gradient(135deg, #1e2a24, #152019 60%, #2a3830);
  color: #fff;
}
.sj-cta-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.sj-cta .sj-eyebrow { color: #e8b07a; }
.sj-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
}
.sj-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
}
.sj-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer — 法律文案居中（对齐森林绿） */
.sj-footer {
  padding: 40px 0 120px;
  background: #121a16;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.sj-footer-legal {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.sj-footer-line {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.sj-footer-line:last-child { margin-bottom: 0; }
.sj-footer-icp {
  margin-top: 14px;
  opacity: 0.72;
  font-size: 12px;
}
.sj-footer a { color: #e8b07a; }
.sj-footer a[href^="tel:"] { color: #e8b07a !important; }
.sj-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sj-link-row a { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.sj-link-row a:hover { color: #fff; }

/* 同城联盟（对齐森林绿结构） */
.sj-alliance {
  padding: 56px 0 72px;
  background: #f4f7f5;
}
.sj-alliance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.sj-alliance-grid a {
  display: block;
  padding: 10px 8px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(21, 32, 25, 0.12);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: #1f3d32;
  text-decoration: none;
}
.sj-alliance-grid a:hover {
  border-color: rgba(197, 106, 40, 0.45);
  color: #152019;
}

/* Inquiry dock */
.sj-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(360px, calc(100vw - 24px));
}
.sj-dock-launch {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--sj-cedar);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(197, 106, 40, 0.35);
}
.sj-dock.is-collapsed .sj-dock-launch { display: inline-flex; }
.sj-dock.is-collapsed .sj-dock-panel { display: none; }
.sj-dock-launch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dffb0;
  box-shadow: 0 0 0 4px rgba(125, 255, 176, 0.25);
}
.sj-dock-panel {
  border-radius: 14px;
  overflow: hidden;
  background: var(--sj-white);
  box-shadow: 0 20px 48px rgba(21, 32, 25, 0.22);
  border: 1px solid var(--sj-line);
}
.sj-dock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  background: linear-gradient(135deg, #1e2a24, #2a3830);
  color: #fff;
}
.sj-dock-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.sj-dock-title { font-size: 16px; }
.sj-dock-close {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
}
.sj-dock-body { padding: 14px 16px 16px; }
.sj-dock-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.sj-dock-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(197, 106, 40, 0.1);
  color: var(--sj-cedar-deep);
  font-size: 12px;
  font-weight: 600;
}
.sj-dock-phone {
  font-weight: 800;
  color: var(--sj-cedar);
  font-family: var(--sj-display);
}
.sj-dock-hint {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--sj-muted);
}
.sj-dock-form .hj-form-row,
.sj-dock-form .sj-form-row,
.zctzq-inquiry-form .hj-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.zctzq-inquiry-form input,
.zctzq-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--sj-line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: var(--sj-paper);
}
.zctzq-inquiry-form textarea { margin-bottom: 8px; resize: vertical; }
.zctzq-inquiry-form button[type="submit"] {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--sj-cedar);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.sj-dock.is-flash .sj-dock-panel {
  animation: sj-flash .9s ease;
}
@keyframes sj-flash {
  0%, 100% { box-shadow: 0 20px 48px rgba(21, 32, 25, 0.22); }
  35% { box-shadow: 0 0 0 5px rgba(197, 106, 40, 0.45), 0 20px 48px rgba(21, 32, 25, 0.22); transform: translateY(-2px); }
  70% { box-shadow: 0 0 0 2px rgba(197, 106, 40, 0.25), 0 20px 48px rgba(21, 32, 25, 0.22); }
}

.sj-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 120;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sj-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.sj-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sj-toast.is-err { background: #9b2c2c; }

/* Reveal motion — 默认可见，避免 JS 异常时整段空白 */
[data-sj-reveal],
[data-sj-stagger] {
  opacity: 1;
  transform: none;
}
html.js-sj-anim [data-sj-reveal],
html.js-sj-anim [data-sj-stagger] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
html.js-sj-anim [data-sj-reveal].is-in,
html.js-sj-anim [data-sj-stagger].is-in {
  opacity: 1;
  transform: none;
}
[data-sj-stagger].is-in > * {
  animation: sj-rise .5s ease both;
}
[data-sj-stagger].is-in > *:nth-child(2) { animation-delay: .05s; }
[data-sj-stagger].is-in > *:nth-child(3) { animation-delay: .1s; }
[data-sj-stagger].is-in > *:nth-child(4) { animation-delay: .15s; }
[data-sj-stagger].is-in > *:nth-child(5) { animation-delay: .2s; }
[data-sj-stagger].is-in > *:nth-child(6) { animation-delay: .25s; }
[data-sj-stagger].is-in > *:nth-child(7) { animation-delay: .3s; }
[data-sj-stagger].is-in > *:nth-child(8) { animation-delay: .35s; }
@keyframes sj-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .sj-about-grid { grid-template-columns: 1fr; }
  .sj-strength-grid { grid-template-columns: repeat(2, 1fr); }
  .sj-brand-grid { grid-template-columns: repeat(3, 1fr); }
  .sj-nav { display: none; }
  .sj-nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 12px;
    border-radius: 12px;
    background: var(--sj-white);
    box-shadow: var(--sj-shadow);
  }
  .sj-nav.open a { color: var(--sj-ink) !important; }
  .sj-nav-toggle { display: inline-flex; margin-left: auto; }
  .sj-header-actions .sj-btn { display: none; }
  .sj-hero { min-height: 0; }
  .sj-hero-stage { padding: 100px 0 56px; }
  .sj-stage-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .sj-stage-bar .sj-feature-actions { justify-content: flex-start; }
  .sj-bento-look {
    grid-template-columns: 1fr;
  }
  .sj-look-stage {
    height: auto;
  }
  .sj-look-main {
    max-height: none;
  }
  .sj-look-rail {
    width: 100%;
    max-height: none;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .sj-look-thumb {
    flex: 0 0 72px;
    width: 72px;
  }
  .sj-bento-hint { display: none; }
  .sj-alliance-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .sj-strength-grid,
  .sj-brand-grid { grid-template-columns: 1fr; }
  .sj-header-phone { font-size: 13px; }
  .sj-dock { right: 12px; bottom: 12px; width: min(100vw - 24px, 360px); }
  .sj-dock:not(.is-collapsed) { max-height: min(70vh, 480px); }
  .sj-dock-panel { max-height: inherit; overflow: auto; }
  .zctzq-inquiry-form .hj-form-row { grid-template-columns: 1fr; }
  .sj-chip-row span { font-size: 12px; white-space: normal; }
  .sj-hero-stage { padding: 96px 0 72px; }
  .sj-footer { padding-bottom: 88px; }
  .sj-bento-hint { display: none; }
  .sj-alliance-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === image fit / empty solid (auto) === */
.sj-hero-shot,
.sj-hero-media,
.sj-about-photo,
.sj-film-media,
.sj-visual-card,
.sj-film-card,
.sj-product-media,
.product-gallery-item {
  background: #e8ece9 !important;
}
.sj-hero-slide {
  background: #121c16 !important;
}
.sj-hero-slide img,
.sj-hero-shot img,
.sj-about-photo,
.sj-film-media img,
.sj-visual-card img,
.sj-film-card img,
.sj-product-media img,
.sj-look-main,
.sj-look-thumb img,
.product-gallery-item img {
  object-position: center center;
  background: transparent;
}
.sj-look-main {
  object-fit: contain !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
}
.sj-hero-slide img {
  object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
}
.sj-look-thumb img {
  object-fit: cover !important;
  max-width: 100%;
}
.sj-hero-slide--empty,
.sj-hero-shot--empty,
.sj-media-empty,
.sj-product-media--empty,
.product-gallery-item--empty,
.sj-bento-empty,
.sj-look-banner--empty,
.sj-look-stage--empty {
  background:
    linear-gradient(145deg, #1e2a24 0%, #121c16 52%, #243029 100%) !important;
}
.sj-hero-slide--empty {
  position: relative;
  min-height: clamp(360px, 56vh, 680px);
  opacity: 1;
  z-index: 1;
}
.sj-hero.is-empty-hero,
.sj-hero:has(.sj-hero-slide--empty.is-active),
.sj-hero:has(.sj-hero-slide--empty:only-of-type) {
  min-height: clamp(360px, 56vh, 680px);
  background:
    linear-gradient(145deg, #1e2a24 0%, #121c16 52%, #243029 100%);
}
.sj-media-empty,
.sj-about-photo.sj-media-empty {
  min-height: 0;
}
.sj-product-media--empty,
.product-gallery-item--empty {
  min-height: 220px;
}
