:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #faf8f3;
  --surface-muted: #f2efe7;
  --text: #222222;
  --text-soft: #666666;
  --text-muted: #8a8a8a;
  --line: #e8e3d8;
  --line-strong: #d6cfbf;
  --topbar: #2b2b2b;
  --gold: #d7b56d;
  --gold-deep: #bc9653;
  --black: #111111;
  --shadow-soft: 0 8px 24px rgba(17, 17, 17, 0.06);
  --shadow-card: 0 10px 30px rgba(17, 17, 17, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-width: 1440px;
  --transition: 180ms ease;
  --transition-slow: 320ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

body.js-motion-ready {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
.button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.site-shell {
  background: var(--bg);
}

.page-shell {
  max-width: 100%;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: var(--topbar);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 40px;
}

.top-strip a {
  transition: color var(--transition), opacity var(--transition);
}

.top-strip a:hover,
.top-strip a.active {
  color: var(--gold);
}

.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #eee8dd;
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 106px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-copy span {
  font-size: 13px;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 17px;
  color: #333333;
  transition: color var(--transition), transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--black);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 3px;
  margin-left: -19px;
  background: var(--gold);
  transform-origin: center;
  animation: navUnderlineIn 0.35s ease both;
}

.main-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  margin-left: 0;
  background: rgba(215, 181, 109, 0.5);
  transition: width var(--transition-slow), left var(--transition-slow), margin-left var(--transition-slow);
}

.main-nav a:hover::before {
  left: 50%;
  width: 28px;
  margin-left: -14px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: 50%;
  right: max(52px, calc((100vw - 1920px) / 2) + 36px);
  transform: translateY(-50%);
  justify-self: auto;
}

.header-consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  min-width: 158px;
  padding: 0 34px;
  border-radius: 18px;
  border: 1px solid rgba(207, 176, 114, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #5f5647, #796b55 52%, #4d4439);
  color: #fff6e4;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(17, 17, 17, 0.12);
  transition:
    box-shadow var(--transition-slow),
    transform var(--transition),
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.header-consult-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 90%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 244, 214, 0.42), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.header-consult-button:hover,
.header-consult-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  color: #fff7e8;
  border-color: rgba(223, 192, 128, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #887556, #a58a61 50%, #756349);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 32px rgba(110, 89, 50, 0.2);
}

.header-consult-button:hover::before,
.header-consult-button:focus-visible::before {
  left: 130%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition-slow);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

.button-primary {
  color: #111111;
  background: var(--gold);
  font-weight: 700;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-deep);
}

.button-secondary {
  color: var(--black);
  border: 1px solid var(--line-strong);
  background: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--gold-deep);
  border-color: rgba(188, 150, 83, 0.4);
}

.button-ghost {
  color: #7d6330;
  border: 1px dashed rgba(188, 150, 83, 0.55);
  background: rgba(255, 250, 241, 0.92);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--gold-deep);
  border-color: rgba(188, 150, 83, 0.8);
  background: #fff6e5;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #f4f1ea;
  color: var(--black);
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.mobile-panel {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 0;
  padding: 12px 0;
}

.mobile-nav a {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.hero-banner {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #f0eadf;
}

.hero-banner-inner {
  width: 100%;
  padding: 0;
}

.hero-copy h1,
.page-banner-copy h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-copy p,
.page-banner-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-banner-figure {
  position: relative;
  width: min(100%, 1920px);
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 8 / 3;
  overflow: hidden;
  background: #ffffff;
}

.hero-banner-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.access-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.panel-head {
  padding: 28px 28px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.panel-head h3 {
  margin: 0 0 10px;
  font-size: 32px;
}

.panel-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.panel-body {
  padding: 22px 28px 28px;
}

.quick-links {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.quick-links li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 15px;
}

.quick-links li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.notice-bar {
  background: rgba(28, 28, 28, 0.9);
  color: rgba(255, 255, 255, 0.88);
}

.notice-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 58px;
}

.notice-list {
  position: relative;
  overflow: hidden;
  min-height: 22px;
  width: 100%;
}

.notice-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.notice-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section {
  padding: 56px 0;
  background: transparent;
}

.section.alt {
  background: var(--surface-soft);
  border-top: 1px solid #efebe3;
  border-bottom: 1px solid #efebe3;
}

.section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
}

.section-header p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-soft);
  font-size: 16px;
}

.section-header.left p {
  margin-left: 0;
  margin-right: 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-divider {
  width: 46px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--gold);
}

.section-header.left .section-divider {
  margin-left: 0;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ability-card,
.product-card,
.solution-card,
.info-card,
.faq-card,
.contact-card,
.process-card,
.stat-card,
.summary-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.ability-card,
.product-card,
.solution-card,
.info-card,
.faq-card,
.contact-card,
.process-card,
.summary-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
  will-change: transform, box-shadow;
}

.ability-card::before,
.product-card::before,
.solution-card::before,
.info-card::before,
.faq-card::before,
.contact-card::before,
.process-card::before,
.summary-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, rgba(215, 181, 109, 0.16), rgba(255, 255, 255, 0) 44%);
  transition: opacity 0.34s ease, transform 0.34s ease;
  pointer-events: none;
}

.ability-card::after,
.product-card::after,
.solution-card::after,
.info-card::after,
.faq-card::after,
.contact-card::after,
.process-card::after,
.summary-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  border: 1px solid rgba(215, 181, 109, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: opacity 0.34s ease, border-color 0.34s ease;
  pointer-events: none;
}

.ability-card > *,
.product-card > *,
.solution-card > *,
.info-card > *,
.faq-card > *,
.contact-card > *,
.process-card > *,
.summary-card > * {
  position: relative;
  z-index: 1;
}

.ability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--gold-deep);
  font-size: 28px;
  font-weight: 700;
  border: 1px solid #eee6d7;
  transition:
    transform 0.34s ease,
    background 0.34s ease,
    border-color 0.34s ease,
    color 0.34s ease,
    box-shadow 0.34s ease;
}

.partner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 144px;
  margin: 0 auto 18px;
  background: transparent !important;
  box-shadow: none !important;
}

.partner-icon + h3 {
  text-align: center;
}

.partner-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.partner-card::before,
.partner-card::after {
  display: none;
}

.partner-card:hover,
.partner-card:focus-within {
  background: #fff;
  border-color: rgba(215, 181, 109, 0.4);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.1);
}

.ability-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ability-card h3,
.product-card h3,
.solution-card h3,
.info-card h3,
.faq-card h3,
.contact-card h3,
.process-card h3,
.summary-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
  transition: color var(--transition);
}

.ability-card p,
.product-card p,
.solution-card p,
.info-card p,
.faq-card p,
.contact-card p,
.process-card p,
.summary-card p,
.eyebrow-copy,
.item-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.ability-card:hover,
.product-card:hover,
.solution-card:hover,
.info-card:hover,
.faq-card:hover,
.contact-card:hover,
.process-card:hover,
.summary-card:hover,
.image-panel:hover,
.access-panel:hover {
  transform: translateY(-9px) scale(1.012);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
  border-color: rgba(215, 181, 109, 0.55);
}

.ability-card:hover::before,
.product-card:hover::before,
.solution-card:hover::before,
.info-card:hover::before,
.faq-card:hover::before,
.contact-card:hover::before,
.process-card:hover::before,
.summary-card:hover::before,
.ability-card:focus-within::before,
.product-card:focus-within::before,
.solution-card:focus-within::before,
.info-card:focus-within::before,
.faq-card:focus-within::before,
.contact-card:focus-within::before,
.process-card:focus-within::before,
.summary-card:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.ability-card:hover::after,
.product-card:hover::after,
.solution-card:hover::after,
.info-card:hover::after,
.faq-card:hover::after,
.contact-card:hover::after,
.process-card:hover::after,
.summary-card:hover::after,
.ability-card:focus-within::after,
.product-card:focus-within::after,
.solution-card:focus-within::after,
.info-card:focus-within::after,
.faq-card:focus-within::after,
.contact-card:focus-within::after,
.process-card:focus-within::after,
.summary-card:focus-within::after {
  opacity: 1;
}

.ability-card:hover h3,
.product-card:hover h3,
.solution-card:hover h3,
.info-card:hover h3,
.faq-card:hover h3,
.contact-card:hover h3,
.process-card:hover h3,
.summary-card:hover h3 {
  color: var(--gold-deep);
}

.ability-card:hover p,
.product-card:hover p,
.solution-card:hover p,
.info-card:hover p,
.faq-card:hover p,
.contact-card:hover p,
.process-card:hover p,
.summary-card:hover p,
.ability-card:hover .item-meta,
.product-card:hover .item-meta,
.solution-card:hover .item-meta,
.info-card:hover .item-meta,
.faq-card:hover .item-meta,
.contact-card:hover .item-meta,
.process-card:hover .item-meta,
.summary-card:hover .item-meta {
  color: #515151;
}

.ability-card:hover .ability-icon,
.product-card:hover .ability-icon,
.solution-card:hover .ability-icon,
.info-card:hover .ability-icon,
.faq-card:hover .ability-icon,
.contact-card:hover .ability-icon,
.process-card:hover .ability-icon,
.summary-card:hover .ability-icon {
  transform: translateY(-2px) scale(1.06);
  background: linear-gradient(180deg, #fff8ea, #f7efe0);
  border-color: rgba(215, 181, 109, 0.45);
  box-shadow: 0 10px 20px rgba(215, 181, 109, 0.16);
}

.solution-card:hover .partner-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 24px rgba(215, 181, 109, 0.18);
}

.list,
.meta-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li,
.meta-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-soft);
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.list li::before,
.meta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ability-card:hover .list li,
.product-card:hover .list li,
.solution-card:hover .list li,
.info-card:hover .list li,
.faq-card:hover .list li,
.contact-card:hover .list li,
.process-card:hover .list li,
.summary-card:hover .list li,
.ability-card:hover .meta-list li,
.product-card:hover .meta-list li,
.solution-card:hover .meta-list li,
.info-card:hover .meta-list li,
.faq-card:hover .meta-list li,
.contact-card:hover .meta-list li,
.process-card:hover .meta-list li,
.summary-card:hover .meta-list li {
  color: #575757;
  transform: translateX(2px);
}

.ability-card:hover .list li::before,
.product-card:hover .list li::before,
.solution-card:hover .list li::before,
.info-card:hover .list li::before,
.faq-card:hover .list li::before,
.contact-card:hover .list li::before,
.process-card:hover .list li::before,
.summary-card:hover .list li::before,
.ability-card:hover .meta-list li::before,
.product-card:hover .meta-list li::before,
.solution-card:hover .meta-list li::before,
.info-card:hover .meta-list li::before,
.faq-card:hover .meta-list li::before,
.contact-card:hover .meta-list li::before,
.process-card:hover .meta-list li::before,
.summary-card:hover .meta-list li::before {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(215, 181, 109, 0.12);
  background: #d3ab5d;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.product-card-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: stretch;
}

.product-card-item {
  justify-self: center;
  width: 85%;
}

.product-card-item > .image-panel-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 700 / 400;
}

.product-card-item:last-child > .image-panel-card {
  aspect-ratio: 700 / 400;
}

.product-card-item:last-child > .image-panel-card {
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

.product-card-label {
  margin: 14px 0 0;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-strong);
}

.image-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.image-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-panel:hover img {
  transform: scale(1.02);
}

.image-panel-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 26px;
  box-shadow: none;
  overflow: hidden;
  transition: transform var(--transition-slow), filter var(--transition-slow);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.image-panel-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 26px;
  object-fit: contain;
  transition: transform 0.55s ease;
}

.image-panel-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 30px rgba(17, 17, 17, 0.12));
}

.image-panel-card:hover img {
  transform: scale(1.02);
}

.brand-album {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: stretch;
}

.brand-album-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8f5ee 0%, #ffffff 100%);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.brand-album-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 68%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.brand-album-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(215, 181, 109, 0.16);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.brand-album-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.brand-album-card-featured {
  grid-row: 1 / span 2;
  min-height: 720px;
}

.brand-album-card-single {
  min-height: 720px;
}

.brand-album-card-tall {
  min-height: 348px;
}

.brand-album-card-wide {
  min-height: 348px;
}

.brand-album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.13);
  filter: saturate(1.02);
}

.brand-album-card:hover::before {
  transform: translateX(120%);
}

.brand-album-card:hover img {
  transform: scale(1.03);
}

.company-showcase {
  position: relative;
  min-height: 760px;
}

.company-showcase .brand-album-card-single {
  min-height: 760px;
  border-radius: 34px;
}

.company-showcase-panel {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(620px, calc(100% - 64px));
  padding: 30px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.company-showcase-panel h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.25;
  color: var(--black);
}

.company-showcase-panel p {
  margin: 0;
  color: #454545;
  font-size: 16px;
  line-height: 1.9;
}

.company-showcase-panel p + p {
  margin-top: 14px;
}

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

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: var(--gold);
  color: #111111;
  font-weight: 700;
  transition: transform var(--transition-slow), background var(--transition-slow);
}

.process-card:hover .process-step {
  transform: translateY(-2px);
  background: #e0bf77;
}

.page-banner {
  padding: 42px 0;
  background: linear-gradient(180deg, #fff 0%, #faf8f4 100%);
  border-bottom: 1px solid #eee8dd;
}

.page-banner-image {
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid #eee8dd;
}

.page-banner-image-figure {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 318px;
  overflow: hidden;
  background: #ffffff;
}

.page-banner-image-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.page-banner-copy h1 {
  font-size: 42px;
}

.page-summary {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.table-list {
  display: grid;
  gap: 14px;
}

.table-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.table-row strong {
  font-size: 15px;
}

.table-row span {
  color: var(--text-soft);
}

.query-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.query-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.query-panel-wide {
  padding: 32px;
}

.query-form {
  display: grid;
  gap: 18px;
}

.query-form-inline {
  gap: 16px;
}

.query-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.query-inline-grid-dual {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}

.query-field-half {
  min-width: 0;
}

.query-inline-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.query-field-captcha {
  margin: 0;
}

.query-panel-wide .query-inline-actions {
  grid-template-columns: minmax(0, 440px) auto;
  justify-content: space-between;
  align-items: end;
}

.query-panel-wide .query-field-captcha {
  width: 100%;
  max-width: 440px;
}

.query-panel-wide .query-captcha-row {
  grid-template-columns: minmax(0, 1fr) 120px;
}

.query-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.query-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.query-field input:focus {
  outline: none;
  border-color: rgba(188, 150, 83, 0.7);
  box-shadow: 0 0 0 4px rgba(215, 181, 109, 0.14);
}

.query-captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
}

.captcha-button {
  padding: 0;
  border: 1px solid var(--line-strong);
  background: #fbf8f1;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.captcha-button:hover,
.captcha-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(188, 150, 83, 0.6);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
}

.captcha-button img {
  width: 100%;
  height: 48px;
  object-fit: cover;
}

.query-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.query-actions-inline {
  align-self: end;
  justify-self: end;
}

.query-actions-inline .query-submit {
  min-height: 48px;
  min-width: 140px;
}

.query-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.query-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

.query-feedback.is-error {
  color: #a34726;
}

.query-feedback.is-success {
  color: #7d6330;
}

.query-result {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.query-result[hidden] {
  display: none;
}

body.js-motion-ready .query-result.is-visible {
  animation: queryResultIn 0.38s ease both;
}

.query-result h3 {
  margin: 0;
  font-size: 24px;
}

.query-result-no-media {
  margin-top: 22px;
}

.query-card-media {
  width: min(340px, 100%);
  margin: 0 auto 4px;
}

.query-card-media img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.08);
}

.query-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.query-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.query-table th,
.query-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
}

.query-table th {
  background: #faf7f0;
  color: var(--black);
  font-weight: 700;
}

.query-table td {
  color: var(--text-soft);
}

.query-table tbody tr:last-child td {
  border-bottom: 0;
}

.query-aside {
  display: grid;
  gap: 18px;
}

.query-empty-row td {
  color: var(--text-muted);
}

.brand-showcase {
  display: grid;
  gap: 28px;
}

.brand-image-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #efe7db;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.04);
}

.brand-image-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-strip {
  padding: 38px 0 54px;
  background: var(--surface-soft);
  border-top: 1px solid #eee8dd;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.cta-strip-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  border-color: rgba(215, 181, 109, 0.32);
}

.cta-strip-inner h3 {
  margin: 0 0 6px;
  font-size: 28px;
}

.cta-strip-inner p {
  margin: 0;
  color: var(--text-soft);
}

.site-footer {
  background: linear-gradient(180deg, #0b0b0b, #111111 58%, #141414);
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  padding: 34px 0 20px;
}

.footer-panel {
  position: relative;
  padding: 22px 34px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(14, 14, 14, 0.96));
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.78fr) minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 22px;
  align-items: center;
}

.footer-brand-block {
  max-width: 100%;
  padding-right: 26px;
}

.footer-brand-block h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-brand-cn {
  color: #ffffff;
  font-size: clamp(28px, 2.3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-brand-en {
  color: #e5ce5c;
  font-size: clamp(24px, 1.95vw, 32px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-brand-tags {
  display: block;
  margin: 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.01em;
}

.footer-info-block {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 4px 0 4px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #d6a23a;
}

.footer-support-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-support-icon svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.footer-support-icon-muted {
  color: rgba(255, 255, 255, 0.42);
}

.footer-support-content {
  display: grid;
  gap: 2px;
}

.footer-support-meta {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.footer-support-value {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.footer-support-value-main {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-qr-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  justify-self: end;
  width: 100%;
  max-width: 232px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-qr-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.footer-qr-frame {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  padding: 7px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 6px 14px rgba(0, 0, 0, 0.16);
}

.footer-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.footer-qr-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.footer-record {
  color: rgba(255, 255, 255, 0.56);
  white-space: nowrap;
}

.footer-record-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-record-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-record-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

.footer-record-badge-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.fade-in {
  animation: fadeUp 0.45s ease both;
}

.fade-delay-1 {
  animation-delay: 0.06s;
}

.fade-delay-2 {
  animation-delay: 0.12s;
}

.fade-delay-3 {
  animation-delay: 0.18s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.js-motion-ready [data-motion='hero-copy'] > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroLayerIn 0.58s ease forwards;
}

body.js-motion-ready [data-motion='hero-copy'] > *:nth-child(1) {
  animation-delay: 0.05s;
}

body.js-motion-ready [data-motion='hero-copy'] > *:nth-child(2) {
  animation-delay: 0.14s;
}

body.js-motion-ready [data-motion='hero-copy'] > *:nth-child(3) {
  animation-delay: 0.24s;
}

body.js-motion-ready [data-motion='hero-copy'] > *:nth-child(4) {
  animation-delay: 0.34s;
}

body.js-motion-ready [data-motion='hero-banner-image'],
body.js-motion-ready [data-motion='page-banner'] {
  opacity: 0;
  transform: translateY(20px);
  animation: heroLayerIn 0.62s ease forwards;
}

body.js-motion-ready [data-motion='hero-banner-image'] {
  animation-delay: 0.28s;
}

body.js-motion-ready [data-motion='page-banner'] {
  animation-delay: 0.08s;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

body.js-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

body.js-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > * {
  opacity: 1;
  transform: none;
}

body.js-motion-ready [data-stagger] > * {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.58s ease,
    transform 0.58s ease,
    border-color 0.58s ease,
    box-shadow 0.58s ease;
}

body.js-motion-ready [data-reveal].is-visible [data-stagger] > *,
body.js-motion-ready [data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.js-motion-ready [data-reveal].is-visible [data-stagger] > *:nth-child(1),
body.js-motion-ready [data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.04s; }
body.js-motion-ready [data-reveal].is-visible [data-stagger] > *:nth-child(2),
body.js-motion-ready [data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
body.js-motion-ready [data-reveal].is-visible [data-stagger] > *:nth-child(3),
body.js-motion-ready [data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.12s; }
body.js-motion-ready [data-reveal].is-visible [data-stagger] > *:nth-child(4),
body.js-motion-ready [data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.16s; }
body.js-motion-ready [data-reveal].is-visible [data-stagger] > *:nth-child(5),
body.js-motion-ready [data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.2s; }
body.js-motion-ready [data-reveal].is-visible [data-stagger] > *:nth-child(6),
body.js-motion-ready [data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.24s; }

@keyframes heroLayerIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes navUnderlineIn {
  from {
    opacity: 0;
    transform: scaleX(0.4);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes queryResultIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  body.js-motion-ready [data-reveal],
  body.js-motion-ready [data-stagger] > *,
  body.js-motion-ready [data-motion='hero-copy'] > *,
  body.js-motion-ready [data-motion='hero-banner-image'],
  body.js-motion-ready [data-motion='page-banner'] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .site-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions .button-primary {
    display: none;
  }

  .page-banner-inner,
  .split-block,
  .query-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-album {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .brand-album-card-featured,
  .brand-album-card-tall,
  .brand-album-card-wide {
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .company-showcase {
    min-height: auto;
  }

  .company-showcase .brand-album-card-single {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .company-showcase-panel {
    position: static;
    width: 100%;
    margin-top: 20px;
    padding: 24px 22px;
  }

  .footer-panel {
    padding: 24px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .footer-brand-block {
    max-width: none;
    padding-right: 18px;
  }

  .footer-info-block,
  .footer-qr-group {
    justify-self: start;
  }

  .footer-qr-group {
    padding-left: 18px;
  }

  .query-inline-grid,
  .query-inline-actions {
    grid-template-columns: 1fr;
  }

  .hero-banner-inner {
    padding: 0;
  }

  .card-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.cols-3,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .notice-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .header-consult-button {
    display: none;
  }

  .top-strip {
    display: none;
  }

  .site-header-inner {
    min-height: 82px;
    gap: 16px;
  }

  .header-actions {
    position: static;
    top: auto;
    right: auto;
    transform: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .hero-copy h1,
  .page-banner-copy h1 {
    font-size: 34px;
  }

  .hero-copy p,
  .page-banner-copy p {
    font-size: 16px;
  }

  .hero-banner-inner {
    min-height: auto;
  }

  .hero-banner-figure {
    aspect-ratio: 16 / 9;
  }

  .page-banner-image-figure {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .notice-bar-inner,
  .cta-strip-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid.cols-4,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .brand-image-panel {
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.04);
  }

  .footer-inner {
    padding-top: 30px;
  }

  .footer-panel {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand-block h3 {
    gap: 8px 12px;
    margin-bottom: 12px;
  }

  .footer-brand-cn,
  .footer-brand-en {
    font-size: 26px;
  }

  .footer-brand-block,
  .footer-info-block,
  .footer-qr-group {
    padding-left: 0;
    padding-right: 0;
    border: 0;
  }

  .footer-brand-tags {
    font-size: 13px;
    line-height: 1.9;
  }

  .footer-info-block {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .footer-support-icon {
    width: 30px;
    height: 30px;
  }

  .footer-support-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-support-meta {
    font-size: 14px;
  }

  .footer-support-value {
    font-size: 15px;
    white-space: normal;
  }

  .footer-support-value-main {
    font-size: 20px;
  }

  .footer-qr-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 232px;
  }

  .footer-qr-frame {
    max-width: 100px;
    padding: 9px;
    border-radius: 14px;
  }

  .footer-qr-label {
    font-size: 13px;
  }

  .section {
    padding: 42px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .query-panel {
    padding: 22px 18px;
  }

  .query-captcha-row {
    grid-template-columns: 1fr;
  }

  .query-card-media {
    margin-left: 0;
  }

  .query-table th,
  .query-table td {
    white-space: nowrap;
  }
}
