:root {
  --bg: #f6efe4;
  --bg-soft: #fff9f0;
  --paper: rgba(255, 250, 243, 0.82);
  --paper-strong: rgba(255, 247, 235, 0.95);
  --line: rgba(121, 37, 23, 0.12);
  --text: #24130f;
  --text-soft: rgba(36, 19, 15, 0.72);
  --brand: #b1311f;
  --brand-deep: #7f1a14;
  --brand-bright: #de350b;
  --gold: #d8ae63;
  --gold-soft: #f3d8a0;
  --shadow: 0 22px 80px rgba(95, 28, 17, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Outfit", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(205, 57, 28, 0.16), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(216, 174, 99, 0.18), transparent 18%),
    linear-gradient(180deg, #fcf6ed 0%, #f7efe4 36%, #f4ebdf 100%);
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  inset: auto;
  z-index: 0;
  border-radius: 50%;
  filter: blur(24px);
}

.site-shell::before {
  top: 100px;
  left: -140px;
  width: 300px;
  height: 300px;
  background: rgba(177, 49, 31, 0.12);
}

.site-shell::after {
  right: -120px;
  bottom: 80px;
  width: 260px;
  height: 260px;
  background: rgba(216, 174, 99, 0.14);
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(250, 242, 231, 0.76);
  border-bottom: 1px solid rgba(121, 37, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(105, 34, 18, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-copy span {
  font-size: 0.76rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  transition: color 0.24s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.ghost-button,
.filter-chip,
.text-link {
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-button {
  color: #fff8ed;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  box-shadow: 0 14px 30px rgba(177, 49, 31, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.filter-chip:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.ghost-button {
  border: 1px solid rgba(127, 26, 20, 0.16);
  color: var(--brand-deep);
  background: rgba(255, 251, 245, 0.72);
}

.primary-button.large,
.ghost-button.large {
  min-height: 56px;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 251, 245, 0.86);
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 28px rgba(74, 24, 14, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-deep);
}

.hero-section {
  position: relative;
  padding: 54px 0 32px;
}

.hero-backdrop {
  position: absolute;
  inset: 24px 0 auto;
  height: 560px;
  background:
    linear-gradient(135deg, rgba(121, 26, 20, 0.94), rgba(177, 49, 31, 0.84)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 30%);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 54% 100%, 0 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 36px 0;
  color: #fff7ef;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 235, 214, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  line-height: 1.14;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.6rem, 4.72vw, 4.72rem);
}

.hero-title-line {
  display: block;
}

.hero-title-line-second {
  margin-top: 0.08em;
  white-space: nowrap;
}

.hero-title-brand {
  color: var(--gold-soft);
}

.hero-title-qiyu {
  display: inline-block;
  margin-right: 0.18em;
}

.hero-title-yu {
  position: relative;
  display: inline-block;
}

.hero-title-badge {
  position: absolute;
  top: 0em;
  right: -1.3em;
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.32em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-text,
.section-intro,
.about-copy p,
.honor-lead,
.contact-card p {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.9;
}

.hero-text {
  max-width: 58ch;
  color: rgba(255, 239, 221, 0.84);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  padding: 20px 18px;
  border: 1px solid rgba(121, 37, 23, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.96), rgba(251, 239, 223, 0.94));
  box-shadow: 0 16px 30px rgba(63, 18, 11, 0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-deep);
  text-shadow: none;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(73, 28, 19, 0.76);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(154, 63, 36, 0.12);
  border-radius: calc(var(--radius-xl) + 8px);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow);
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.hero-slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 234, 204, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(39, 13, 8, 0.72), rgba(127, 26, 20, 0.86));
  color: #fff8ee;
  backdrop-filter: blur(12px);
}

.slide-caption span,
.news-tag,
.honor-item span,
.faq-panel span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 226, 187, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-caption span::before,
.news-tag::before,
.honor-item span::before,
.faq-panel span::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.floating-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(177, 49, 31, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card span::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.slide-caption strong {
  display: block;
  font-size: 1.36rem;
  font-weight: 700;
}

.slide-caption p {
  margin: 10px 0 0;
  color: rgba(255, 241, 225, 0.82);
  line-height: 1.75;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(127, 26, 20, 0.18);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--brand-bright), var(--gold));
}

.floating-card {
  position: absolute;
  max-width: 240px;
  padding: 16px 18px;
  border: 1px solid rgba(127, 26, 20, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(251, 241, 230, 0.94));
  box-shadow: 0 20px 44px rgba(81, 26, 17, 0.16);
  color: var(--brand-deep);
  line-height: 1.7;
}

.floating-card strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-deep);
}

.floating-card-a {
  left: -34px;
  bottom: 76px;
  animation: floatY 6.8s ease-in-out infinite;
}

.floating-card-b {
  right: -28px;
  top: 48px;
  animation: floatY 7.4s ease-in-out infinite reverse;
}

.marquee-panel {
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(121, 37, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--brand-deep);
  font-weight: 600;
}

.marquee-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-bright), var(--gold));
}

.overview-section,
.overview-band,
.page-section {
  padding: 86px 0;
}

.homepage-hero .hero-backdrop {
  height: 600px;
}

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

.page-entry-card,
.feature-panel,
.overview-band-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(252, 245, 235, 0.9));
  box-shadow: 0 18px 40px rgba(87, 27, 18, 0.08);
}

.page-entry-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.page-entry-body {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-entry-card-feature {
  grid-column: span 2;
  grid-template-columns: minmax(300px, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  min-height: 460px;
}

.page-entry-card-feature .page-entry-media {
  min-height: 100%;
  height: 100%;
}

.page-entry-card-feature .page-entry-media img {
  height: 100%;
  object-position: center;
}

.page-entry-card-feature .page-entry-body {
  align-content: center;
  max-width: 420px;
}

.page-entry-card-visual {
  align-content: start;
  min-height: 280px;
}

.page-entry-card-news {
  min-height: 280px;
}

.page-entry-card-honor {
  min-height: 280px;
}

.page-entry-card-news .page-entry-media {
  min-height: 217px;
  height: 217px;
}

.page-entry-card-honor .page-entry-media {
  min-height: 217px;
  height: 217px;
}

.page-entry-card-visual .page-entry-media {
  min-height: 176px;
  padding: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 244, 234, 0.92));
}

.page-entry-card-visual .page-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-entry-card-news .page-entry-media img {
  object-position: center top;
}

.page-entry-card-honor .page-entry-media img {
  object-position: center 38%;
}

.page-entry-card-contact {
  align-content: start;
  min-height: 280px;
}

.page-entry-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 14px;
  align-items: center;
}

.page-entry-contact-copy {
  display: grid;
  gap: 10px;
}

.page-entry-contact-copy label {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.page-entry-contact-copy strong {
  font-family: "Noto Serif SC", serif;
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--brand-deep);
  word-break: break-all;
}

.page-entry-contact-qr {
  max-width: 116px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(177, 49, 31, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.page-entry-contact-qr img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-entry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.page-entry-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(177, 49, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.9);
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.page-entry-card span,
.feature-panel span,
.overview-band-card span,
.inner-hero-copy .crumbs,
.crumbs a,
.crumbs strong {
  font-size: 0.88rem;
}

.page-entry-card span,
.feature-panel span,
.overview-band-card span {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-entry-card .page-entry-points span {
  color: var(--brand-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.page-entry-card h3,
.feature-panel strong,
.overview-band-card strong,
.inner-hero-copy h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
}

.page-entry-card p,
.feature-panel p,
.overview-band-card p,
.inner-hero-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.page-entry-media {
  overflow: hidden;
  border-radius: 20px;
  min-height: 260px;
}

.page-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-preview-section {
  padding-top: 0;
}

.overview-band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.overview-band-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  align-items: center;
}

.overview-band-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
}

.inner-hero {
  position: relative;
  padding: 40px 0 30px;
}

.inner-hero-backdrop {
  position: absolute;
  inset: 14px 0 auto;
  height: 300px;
  background:
    linear-gradient(135deg, rgba(121, 26, 20, 0.94), rgba(177, 49, 31, 0.84)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.1), transparent 24%);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 58% 100%, 0 92%);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
  align-items: center;
}

.hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.inner-hero-copy {
  color: #fff7ef;
  padding: 14px 0 18px;
}

.inner-hero-copy h1 {
  font-size: clamp(2.05rem, 3.45vw, 3.36rem);
  line-height: 1.12;
}

.inner-hero-copy p {
  margin-top: 14px;
  max-width: 50ch;
  color: rgba(255, 239, 221, 0.84);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 233, 205, 0.78);
}

.inner-hero-visual {
  border: 1px solid rgba(255, 240, 222, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.inner-hero-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.soft-section {
  padding-top: 0;
}

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

.feature-panel {
  padding: 22px;
}

.consult-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.consult-info-card,
.message-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(252, 245, 235, 0.9));
  box-shadow: 0 18px 40px rgba(87, 27, 18, 0.08);
}

.consult-info-card {
  padding: 24px;
}

.consult-info-card span,
.form-field span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-info-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.32rem;
  line-height: 1.5;
}

.consult-info-card p,
.form-actions p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.message-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
}

.message-panel-copy h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.form-field {
  display: block;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(127, 26, 20, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(177, 49, 31, 0.46);
  box-shadow: 0 0 0 4px rgba(177, 49, 31, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  min-height: 24px;
}

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

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

.products-section,
.about-section,
.news-section,
.honors-section,
.insights-section,
.contact-section {
  padding: 86px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading.split {
  align-items: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  font-size: clamp(1.88rem, 2.7vw, 2.8rem);
}

.section-intro,
.about-copy p,
.honor-lead,
.contact-card p {
  max-width: 58ch;
  color: var(--text-soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(127, 26, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.84);
  color: var(--brand-deep);
  cursor: pointer;
}

.filter-chip.active {
  color: #fff7ee;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
  box-shadow: 0 14px 28px rgba(177, 49, 31, 0.18);
}

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

.product-card,
.insight-card,
.news-card,
.honor-item,
.faq-panel article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(252, 245, 235, 0.9));
  box-shadow: 0 18px 40px rgba(87, 27, 18, 0.08);
}

.product-card::before,
.insight-card::before,
.news-card::before,
.honor-item::before,
.faq-panel article::before {
  content: "";
  position: absolute;
  inset: auto -40px -58px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 174, 99, 0.18), transparent 68%);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img,
.news-card:hover img,
.news-feature:hover img,
.media-card:hover img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(39, 12, 8, 0.68);
  color: #fff3dd;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.product-body {
  padding: 22px 20px 20px;
}

.product-body h3,
.news-card h3,
.news-feature h3,
.honor-item strong,
.insight-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  line-height: 1.4;
}

.product-subtitle,
.product-meta,
.news-card p,
.insight-card p,
.honor-item p {
  color: var(--text-soft);
}

.product-subtitle {
  margin: 10px 0 0;
  min-height: 56px;
  line-height: 1.75;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.price-block strong {
  display: block;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 800;
}

.price-block span,
.product-meta,
.news-meta,
.insight-card ul {
  font-size: 0.92rem;
}

.product-meta {
  color: var(--text-soft);
}

.about-grid,
.honors-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 38px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 620px;
}

.about-media-single {
  min-height: 460px;
}

.media-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(121, 37, 23, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.88);
  box-shadow: var(--shadow);
}

.media-card img,
.news-card img,
.news-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.media-large {
  inset: 40px 70px 0 0;
}

.media-small {
  width: 44%;
  height: 240px;
}

.media-small-top {
  top: 0;
  right: 0;
}

.media-small-bottom {
  right: 18px;
  bottom: 28px;
}

.media-fill {
  inset: 0;
}

.about-copy {
  padding: 12px 0;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-points article,
.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.about-points article {
  grid-template-columns: 1fr;
}

.about-points strong,
.timeline-item strong {
  display: block;
  margin-bottom: 6px;
}

.about-points span,
.timeline-item p {
  color: var(--text-soft);
  line-height: 1.75;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  color: #fff6ec;
  font-weight: 700;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 24px;
}

.news-feature,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.86fr);
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(125, 27, 20, 0.95), rgba(177, 49, 31, 0.86)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%);
  color: #fff9f0;
  box-shadow: var(--shadow);
}

.news-feature-copy {
  padding: 12px 6px 12px 2px;
}

.news-feature p,
.contact-card p {
  color: rgba(255, 241, 225, 0.82);
}

.news-feature-visual {
  overflow: hidden;
  border-radius: 24px;
}

.news-feature-visual img {
  min-height: 320px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  padding: 0;
}

.news-card time {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-weight: 700;
}

.news-card p {
  margin: 12px 0 0;
  line-height: 1.8;
}

.news-card-media {
  overflow: hidden;
  border-bottom: 1px solid rgba(121, 37, 23, 0.08);
}

.news-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-copy {
  padding: 22px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: rgba(255, 241, 225, 0.72);
}

.text-link {
  color: var(--brand);
  font-weight: 600;
}

.honor-image-card {
  overflow: hidden;
  border: 1px solid rgba(121, 37, 23, 0.08);
  border-radius: 30px;
  background: rgba(255, 251, 245, 0.86);
  box-shadow: var(--shadow);
}

.honor-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honors-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.honor-item {
  padding: 22px;
}

.honor-item p,
.insight-card p {
  margin: 10px 0 0;
  line-height: 1.8;
}

.honor-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.honor-stats div {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.8);
}

.honor-stats strong {
  display: block;
  margin-bottom: 6px;
}

.honor-stats span {
  color: var(--text-soft);
}

.news-image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.honor-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.honor-certificate {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(252, 245, 235, 0.92));
  box-shadow: 0 18px 40px rgba(87, 27, 18, 0.08);
}

.honor-certificate-media {
  padding: 18px;
  background: linear-gradient(180deg, rgba(250, 242, 228, 0.9), rgba(245, 234, 214, 0.86));
}

.honor-certificate-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(84, 27, 16, 0.1);
}

.honor-certificate-copy {
  padding: 0 20px 20px;
}

.honor-certificate-copy strong {
  display: block;
  font-family: "Noto Serif SC", serif;
  font-size: 1.12rem;
  line-height: 1.5;
}

.honor-certificate-copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.service-qr-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(252, 245, 235, 0.92));
  box-shadow: 0 18px 40px rgba(87, 27, 18, 0.08);
}

.service-qr-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 560px;
}

.service-qr-copy h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.service-qr-copy .section-intro {
  margin: 0;
  max-width: 36ch;
}

.service-qr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-qr-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(177, 49, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.9);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-qr-side {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.service-qr-card {
  width: 100%;
  max-width: 320px;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(84, 27, 16, 0.08);
}

.service-qr-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.service-qr-caption {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.insight-card {
  padding: 24px;
}

.insight-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq-panel article {
  padding: 22px;
}

.faq-panel strong {
  display: block;
  font-family: "Noto Serif SC", serif;
  line-height: 1.6;
}

.contact-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 22px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(121, 37, 23, 0.1);
  color: var(--text-soft);
}

.footer-inner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .inner-hero-grid,
  .about-grid,
  .honors-grid,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-stage {
    margin-top: 10px;
  }

  .about-media {
    min-height: 520px;
  }

  .product-grid,
  .insight-grid,
  .page-entry-grid,
  .feature-three-grid,
  .consult-layout,
  .news-image-grid,
  .honor-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-entry-card-feature,
  .overview-band-card,
  .message-panel,
  .service-qr-panel {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .page-entry-card-feature {
    min-height: 0;
  }

  .page-entry-contact {
    grid-template-columns: 1fr;
  }

  .overview-band-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 84px;
  }

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

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 18px;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
    width: 100%;
  }

  .site-header.is-open .site-nav {
    gap: 8px;
    padding-top: 6px;
  }

  .site-header.is-open .nav-link {
    padding: 12px 0;
  }

  .site-header.is-open .header-actions {
    gap: 12px;
  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-backdrop {
    height: 620px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 48% 100%, 0 92%);
  }

  .hero-grid {
    gap: 28px;
  }

  .inner-hero {
    padding: 30px 0 22px;
  }

  .inner-hero-backdrop {
    height: 270px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-metrics,
  .honor-stats,
  .faq-panel {
    grid-template-columns: 1fr;
  }

  .news-feature,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .product-grid-wide,
  .insight-grid-wide {
    grid-template-columns: 1fr;
  }

  .news-image-grid,
  .honor-gallery {
    grid-template-columns: 1fr;
  }

  .message-form {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-title-line-second {
    white-space: nowrap;
  }

  .hero-title-badge {
    top: -0.16em;
    right: -0.46em;
    font-size: 0.28em;
  }

  .hero-text,
  .section-intro,
  .about-copy p,
  .honor-lead,
  .contact-card p {
    font-size: 0.96rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding: 14px;
  }

  .hero-slider {
    min-height: 440px;
  }

  .hero-slide img {
    height: 440px;
  }

  .slide-caption {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
    animation: none;
  }

  .marquee-panel {
    margin-top: 28px;
  }

  .products-section,
  .about-section,
  .news-section,
  .honors-section,
  .insights-section,
  .contact-section {
    padding: 64px 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .product-grid,
  .insight-grid,
  .page-entry-grid,
  .feature-three-grid,
  .overview-band-grid,
  .consult-layout,
  .news-image-grid,
  .honor-gallery {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .media-card {
    position: static;
    width: 100%;
    height: auto;
  }

  .media-card img {
    aspect-ratio: 4 / 3;
  }

  .news-feature,
  .contact-card {
    padding: 18px;
  }

  .news-card,
  .honor-item,
  .insight-card,
  .faq-panel article {
    padding: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
