:root {
  --ink: #18201d;
  --muted: #66736d;
  --line: #dfe7df;
  --paper: #fbfbf7;
  --sage: #557465;
  --leaf: #8ba35b;
  --clay: #ba6f44;
  --mint: #e5efe7;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(28, 40, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(251, 251, 247, 0.9);
  border-bottom: 1px solid rgba(223, 231, 223, 0.75);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 10px 30px rgba(24, 32, 29, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #34433d;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 82px) 64px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 251, 247, 0.94) 0%, rgba(251, 251, 247, 0.82) 38%, rgba(251, 251, 247, 0.16) 72%);
}

.hero-content {
  position: relative;
  width: min(650px, 100%);
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 12ch;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: #384942;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-copy.english {
  margin-top: 14px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #52615c;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(85, 116, 101, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.section,
.intro,
.metrics,
.quality-band,
.contact {
  padding-left: clamp(20px, 6vw, 82px);
  padding-right: clamp(20px, 6vw, 82px);
}

.intro {
  padding-top: 68px;
  padding-bottom: 42px;
}

.section-grid,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.quality-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child,
.quality-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 26px;
  padding-bottom: 74px;
}

.metrics div {
  min-height: 142px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.metrics span {
  color: var(--muted);
}

.section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(24, 32, 29, 0.06);
}

.product-image {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  background: var(--mint);
}

.product-card h3,
.service-steps h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.product-card p,
.service-steps p {
  margin: 0;
  color: var(--muted);
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-top: 78px;
  padding-bottom: 78px;
  background: #eef4ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-copy p {
  margin-top: 18px;
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(24, 32, 29, 0.06);
  font-weight: 800;
}

.quality-list span {
  color: var(--leaf);
  font-size: 24px;
}

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

.service-steps article {
  padding: 24px;
  border-top: 4px solid var(--sage);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-weight: 800;
}

.contact {
  padding-top: 78px;
  padding-bottom: 78px;
  background: var(--ink);
  color: var(--white);
}

.contact .section-kicker {
  color: #f0bd8a;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.contact-details a,
.contact-details span {
  display: block;
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  color: #f0bd8a;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 6vw, 82px);
  background: #111714;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .product-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .split,
  .quality-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

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

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 10px;
  }

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

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
    padding-top: 104px;
    padding-bottom: 44px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(251, 251, 247, 0.97) 0%, rgba(251, 251, 247, 0.82) 46%, rgba(251, 251, 247, 0.12) 100%);
  }

  .hero-content {
    padding-top: 36vh;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

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

  .metrics div {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
