:root {
  --ink: #252426;
  --muted: #666b63;
  --line: #dadbd2;
  --paper: #ffffff;
  --soft: #f7f7f2;
  --brand: #d8d64f;
  --brand-dark: #8a8d16;
  --accent: #667d73;
  --accent-dark: #435a50;
  --surface: #fbfbf7;
  --surface-cool: #edf2ef;
  --line-strong: #c4c8bc;
  --shadow: 0 18px 40px rgba(37, 36, 38, 0.1);
  --shadow-card: 0 14px 34px rgba(37, 36, 38, 0.08);
  --shadow-lift: 0 22px 46px rgba(37, 36, 38, 0.14);
  --font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  color: var(--ink);
  background: rgba(216, 214, 79, 0.42);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf7 0, #f2f5f0 44%, #f7f7f2 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li {
  letter-spacing: 0;
  text-wrap: pretty;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(111, 139, 125, 0.6);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background:
    linear-gradient(180deg, #fbfbf4 0, #f1f1df 100%);
  border-bottom: 1px solid rgba(37, 36, 38, 0.08);
  box-shadow: 0 8px 24px rgba(37, 36, 38, 0.05);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 20px 0 18px;
}

.brand-logo {
  justify-self: center;
  width: min(100%, 300px);
  filter: drop-shadow(0 10px 18px rgba(37, 36, 38, 0.08));
}

.brand-tagline {
  margin: 8px 0 0;
  color: #5f5d3b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.brand-culture {
  margin: 0;
  padding: 16px 20px 16px 24px;
  color: #555647;
  border-left: 4px solid var(--brand-dark);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 0 6px 6px 0;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}

.nav-shell {
  background:
    linear-gradient(180deg, #2f2e30 0, #222123 100%);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 10px 26px rgba(37, 36, 38, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 214, 79, 0.6), transparent);
  content: "";
  pointer-events: none;
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  top: -7px;
}

.menu-toggle-icon::after {
  top: 7px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 3px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: var(--brand);
}

.language-switcher {
  flex: 0 0 auto;
}

.language-switcher select {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 0 34px 0 12px;
  color: var(--paper);
  background: #1f1e20;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-switcher select:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: #282729;
}

.language-switcher option {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  background: var(--ink);
}

.hero .wrap {
  width: 100%;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: relative;
  aspect-ratio: 16 / 6;
  min-height: 440px;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.9), rgba(24, 38, 32, 0.72) 42%, rgba(24, 38, 32, 0.2) 72%, rgba(24, 38, 32, 0.06)),
    linear-gradient(0deg, rgba(12, 18, 16, 0.5), rgba(12, 18, 16, 0.08) 58%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-slide.is-active img {
    animation: hero-image-depth 8s ease-out both;
  }
}

@keyframes hero-image-depth {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.025);
  }
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(40px, calc((100vw - 1120px) / 2));
  bottom: clamp(42px, 8vw, 90px);
  max-width: 650px;
  padding: clamp(16px, 2.4vw, 26px) clamp(18px, 3vw, 32px);
  color: #fff8df;
  isolation: isolate;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.86),
    0 16px 34px rgba(0, 0, 0, 0.62);
}

.hero-copy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-left: 4px solid rgba(232, 218, 93, 0.96);
  background:
    linear-gradient(90deg, rgba(13, 22, 19, 0.86), rgba(31, 50, 42, 0.62) 68%, rgba(31, 50, 42, 0.1));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(2px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 14px;
  color: #fff5d2;
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 12px 30px rgba(0, 0, 0, 0.72),
    0 0 1px rgba(232, 218, 93, 0.9);
}

.hero-copy p {
  margin: 0;
  max-width: 56ch;
  color: #fffbed;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.slider-dots {
  position: absolute;
  z-index: 2;
  left: max(40px, calc((100vw - 1120px) / 2));
  bottom: 28px;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slider-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.slider-dot[aria-current="true"] {
  background: var(--brand);
}

.slider-dot:hover {
  background: #fff;
  transform: translateY(-1px);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(37, 36, 38, 0.96), rgba(37, 36, 38, 0.84)),
    url("../images/banner2.jpg") center / cover;
  color: var(--paper);
  border-bottom: 4px solid var(--brand-dark);
  box-shadow: inset 0 -36px 54px rgba(0, 0, 0, 0.16);
}

.page-hero .wrap {
  padding: 56px 0;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 3.6rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: #dddccd;
  font-size: 1.08rem;
  line-height: 1.65;
}

.error-hero h1 {
  font-size: 5rem;
}

.error-label {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.main {
  background:
    linear-gradient(180deg, var(--surface) 0, var(--soft) 100%);
  padding: clamp(42px, 7vw, 82px) 0;
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 30px;
  align-items: stretch;
}

.error-panel,
.error-aside {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #fbfbf7 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.error-panel {
  padding: 34px;
  border-top: 4px solid var(--accent);
}

.error-aside {
  padding: 30px;
  border-top: 4px solid var(--brand-dark);
}

.error-code {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 6rem;
  font-weight: 700;
  line-height: 0.9;
}

.error-panel h2,
.error-aside h2 {
  margin: 0 0 14px;
  color: #343316;
  font-size: 2rem;
  line-height: 1.18;
}

.error-panel p,
.error-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn-secondary {
  color: var(--ink);
  background: #f7f7ee;
  border: 1px solid var(--line-strong);
  border-bottom: 3px solid var(--line-strong);
  box-shadow: 0 8px 18px rgba(37, 36, 38, 0.08);
}

.btn-secondary:hover {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  border-bottom-color: #2f4139;
}

.help-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-sans);
}

.help-greeting {
  position: relative;
  max-width: min(300px, calc(100vw - 48px));
  padding: 13px 16px;
  color: #252b26;
  background:
    linear-gradient(180deg, #ffffff 0, #fbfbf7 100%);
  border: 1px solid rgba(196, 200, 188, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(37, 36, 38, 0.18);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  animation: help-greeting-pulse 3.8s ease-in-out infinite;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.help-greeting::after {
  position: absolute;
  right: 28px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #fbfbf7;
  border-right: 1px solid rgba(196, 200, 188, 0.86);
  border-bottom: 1px solid rgba(196, 200, 188, 0.86);
  content: "";
  transform: rotate(45deg);
}

.help-greeting:hover,
.help-greeting:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 36, 38, 0.22);
}

.help-widget.is-open .help-greeting {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

@keyframes help-greeting-pulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(37, 36, 38, 0.18);
  }

  50% {
    box-shadow: 0 22px 46px rgba(37, 36, 38, 0.24);
  }
}

.help-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px 8px 10px;
  color: #fff;
  background:
    linear-gradient(180deg, var(--accent-dark) 0, #2f4139 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(37, 36, 38, 0.22);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.help-launcher:hover,
.help-widget.is-open .help-launcher {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37, 36, 38, 0.28);
}

.help-wood-mascot {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, #8d552d 0, #a76634 48%, #6f4325 100%);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px 13px 12px 10px;
  box-shadow:
    inset -5px 0 0 rgba(70, 38, 20, 0.2),
    0 8px 14px rgba(37, 36, 38, 0.18);
  transform: rotate(-4deg);
}

.help-wood-mascot::before,
.help-wood-mascot::after {
  position: absolute;
  z-index: 2;
  top: 13px;
  width: 4px;
  height: 4px;
  background: #3b2416;
  border-radius: 50%;
  content: "";
}

.help-wood-mascot::before {
  left: 12px;
}

.help-wood-mascot::after {
  left: 21px;
}

.wood-cut {
  position: absolute;
  left: 4px;
  width: 27px;
  height: 27px;
  background:
    radial-gradient(circle at 46% 48%, transparent 0 24%, rgba(139, 86, 40, 0.45) 25% 28%, transparent 29% 43%, rgba(139, 86, 40, 0.42) 44% 48%, transparent 49%),
    #f4ca88;
  border: 2px solid #7b4725;
  border-radius: 50%;
  box-shadow: inset -3px -2px 0 rgba(139, 86, 40, 0.18);
}

.wood-smile {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 14px;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #3b2416;
  border-radius: 0 0 999px 999px;
}

.wood-leaf {
  position: absolute;
  top: -7px;
  right: -4px;
  width: 14px;
  height: 10px;
  background:
    linear-gradient(135deg, #7ea652 0, #4f7f3f 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px 0 12px 0;
  transform: rotate(18deg);
  box-shadow: 0 2px 5px rgba(37, 36, 38, 0.16);
}

.help-wood-mascot.is-small {
  width: 34px;
  height: 32px;
  border-color: rgba(37, 36, 38, 0.08);
}

.help-wood-mascot.is-small .wood-cut {
  left: 3px;
  width: 24px;
  height: 24px;
}

.help-wood-mascot.is-small::before {
  top: 12px;
  left: 10px;
}

.help-wood-mascot.is-small::after {
  top: 12px;
  left: 18px;
}

.help-wood-mascot.is-small .wood-smile {
  top: 18px;
  left: 12px;
}

.help-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0, #fbfbf7 100%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(37, 36, 38, 0.24);
}

.help-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: var(--paper);
  background:
    linear-gradient(180deg, #2f2e30 0, #222123 100%);
}

.help-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.help-panel-title strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.help-panel-title p {
  margin: 2px 0 0;
  color: #d8d8c8;
  font-size: 0.86rem;
  line-height: 1.35;
}

.help-close {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.help-close::before,
.help-close::after {
  position: absolute;
  top: 16px;
  left: 9px;
  width: 14px;
  height: 2px;
  background: #fff;
  content: "";
}

.help-close::before {
  transform: rotate(45deg);
}

.help-close::after {
  transform: rotate(-45deg);
}

.help-messages {
  display: grid;
  gap: 12px;
  max-height: 250px;
  padding: 16px;
  overflow-y: auto;
  background: #f4f6f1;
}

.help-message {
  width: min(92%, 280px);
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(37, 36, 38, 0.08);
}

.help-message strong {
  display: block;
  margin-bottom: 4px;
  color: #343316;
  font-size: 0.84rem;
  line-height: 1.3;
}

.help-message p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.help-message.is-bot {
  justify-self: start;
  background: #fff;
  border: 1px solid rgba(196, 200, 188, 0.78);
}

.help-message.is-user {
  justify-self: end;
  color: #fff;
  background: var(--accent-dark);
}

.help-message.is-user p {
  color: #fff;
}

.help-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px 16px 0;
}

.help-options button,
.help-options a {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.help-options button:hover,
.help-options a:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(37, 36, 38, 0.08);
  transform: translateY(-1px);
}

.help-options .help-human-button {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.help-options .help-human-button:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.help-widget.has-live-chat .help-panel {
  width: min(430px, calc(100vw - 32px));
}

.help-widget.has-live-chat .help-messages {
  max-height: 150px;
}

.help-live-chat {
  margin: 12px 16px 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.help-live-chat-header {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 8px 0 12px;
  color: var(--ink);
  background: #eef2ea;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.help-live-chat-header span {
  min-width: 0;
}

.help-live-chat-close {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: rgba(37, 36, 38, 0.06);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.help-live-chat-close::before,
.help-live-chat-close::after {
  position: absolute;
  top: 14px;
  left: 8px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  content: "";
}

.help-live-chat-close::before {
  transform: rotate(45deg);
}

.help-live-chat-close::after {
  transform: rotate(-45deg);
}

.help-live-chat-close:hover {
  background: rgba(37, 36, 38, 0.12);
}

.help-live-chat iframe {
  display: block;
  width: 100%;
  height: min(52vh, 480px);
  min-height: 340px;
  background: #fff;
  border: 0;
}

.help-contact {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 14px 16px 16px;
  color: #fff;
  background: var(--brand-dark);
  border-bottom: 3px solid #686a11;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  transition: background-color 180ms ease, transform 180ms ease;
}

.help-contact:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.capability-band {
  background: var(--surface-cool);
  border-top: 1px solid rgba(37, 36, 38, 0.08);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.capability-item {
  min-width: 0;
  padding: 28px 30px;
  background: var(--paper);
  box-shadow: inset 0 3px 0 transparent;
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.capability-item:hover {
  background: #fdfdf9;
  box-shadow: inset 0 3px 0 var(--brand-dark);
}

.capability-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.capability-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.34;
}

.capability-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.section-heading {
  position: relative;
  margin-bottom: 38px;
  text-align: left;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.rule {
  width: 88px;
  height: 2px;
  margin: 0 0 18px;
  background:
    linear-gradient(90deg, var(--brand-dark), var(--accent));
}

.section-heading p {
  width: min(720px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.product-grid,
.service-grid,
.detail-grid {
  display: grid;
  gap: 30px;
}

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

.product-marquee {
  --product-card-width: clamp(260px, 27vw, 330px);
  --product-gap: 24px;
  position: relative;
  overflow: hidden;
  padding: 6px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.product-marquee::before,
.product-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(84px, 9vw);
  content: "";
  pointer-events: none;
}

.product-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), rgba(251, 251, 247, 0));
}

.product-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), rgba(251, 251, 247, 0));
}

.product-track {
  display: flex;
  width: max-content;
  gap: var(--product-gap);
  animation: product-marquee 28s linear infinite;
  will-change: transform;
}

.product-marquee:hover .product-track,
.product-marquee:focus-within .product-track {
  animation-play-state: paused;
}

.product-marquee-card {
  flex: 0 0 var(--product-card-width);
}

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

  to {
    transform: translateX(calc(-4 * (var(--product-card-width) + var(--product-gap))));
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-marquee {
    overflow-x: auto;
    padding-bottom: 18px;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .product-marquee::before,
  .product-marquee::after {
    display: none;
  }

  .product-track {
    animation: none;
  }

  .product-card--clone {
    display: none;
  }

  .help-greeting {
    animation: none;
  }
}

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

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

.product-card,
.service-card,
.detail-card,
.contact-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.service-card:hover,
.detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
}

.product-card img,
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  filter: saturate(0.94) contrast(1.03);
  transition: filter 180ms ease, transform 220ms ease;
}

.product-card:hover img,
.service-card:hover img {
  filter: saturate(1.02) contrast(1.05);
  transform: scale(1.025);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card h3,
.product-card p,
.product-card .btn {
  margin-left: 20px;
  margin-right: 20px;
}

.product-card h3,
.service-card h3,
.detail-card h2 {
  margin-top: 18px;
  margin-bottom: 10px;
  color: #343316;
  font-size: 1.2rem;
  line-height: 1.34;
}

.product-card p,
.service-card p,
.detail-card p,
.about-copy p,
.company-address p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.product-card p {
  margin-top: 0;
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  margin-top: 12px;
  margin-bottom: 20px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-dark);
  border: 0;
  border-bottom: 3px solid #686a11;
  border-radius: 2px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(102, 105, 17, 0.18);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.btn:hover {
  background: var(--ink);
  border-bottom-color: #171512;
  box-shadow: 0 12px 22px rgba(37, 36, 38, 0.18);
  transform: translateY(-1px);
}

.btn:hover::after {
  transform: translateX(2px) rotate(-45deg);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  gap: 34px;
  align-items: start;
}

.about-layout img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  filter: saturate(0.94) contrast(1.03);
}

.about-copy h2,
.contact-form h2,
.company-address h2 {
  margin: 0 0 16px;
  color: #343316;
  font-size: 2.25rem;
  line-height: 1.18;
}

.about-copy p {
  margin: 0 0 14px;
  line-height: 1.74;
}

.about-lines {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 16px 18px 16px 22px;
  color: #35362b;
  background: rgba(251, 251, 247, 0.84);
  border: 1px solid rgba(196, 200, 188, 0.68);
  border-radius: 8px;
  line-height: 1.58;
}

.about-lines li::marker {
  color: var(--accent);
}

.about-copy p:first-of-type {
  color: #3c3b2f;
  font-size: 1rem;
  font-weight: 700;
}

.about-copy p + p,
.about-lines + p {
  padding-top: 12px;
  border-top: 1px solid rgba(196, 200, 188, 0.55);
}

.detail-card {
  padding: 24px;
  border-top: 4px solid rgba(138, 141, 22, 0.72);
}

.detail-number {
  display: block;
  margin-bottom: 10px;
  color: #8a8d16;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
}

.detail-card h2 {
  margin-top: 0;
  text-transform: none;
}

.detail-card ul {
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.detail-card li {
  margin-bottom: 6px;
}

.detail-card li::marker {
  color: var(--brand-dark);
  font-weight: 700;
}

.service-card a {
  display: block;
}

.service-card h3,
.service-card p,
.service-card .btn {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card p {
  margin-top: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .btn {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 46px;
  align-items: start;
}

.contact-form form {
  display: grid;
  gap: 14px;
}

.contact-form {
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff 0, #fbfbf7 100%);
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--accent);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #3b3537;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.35;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfcfc2;
  border-radius: 3px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  line-height: 1.45;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fffffc;
  box-shadow: 0 0 0 3px rgba(102, 125, 115, 0.14);
  outline: 0;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #b44b3f;
  background: #fffafa;
}

.field-error {
  min-height: 1.25rem;
  margin: 6px 0 0;
  color: #9a342b;
  font-size: 0.85rem;
  line-height: 1.4;
}

.form-status {
  min-height: 1.4rem;
  margin: -6px 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-pending {
  color: var(--muted);
}

.form-status.is-success {
  color: #2f754b;
}

.form-status.is-error {
  color: #9a342b;
}

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

.company-address {
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff 0, #f9faf6 100%);
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--brand-dark);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.company-address h2 {
  margin-bottom: 20px;
  color: #20342e;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
}

.company-address h2::after {
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--brand-dark), var(--accent));
  content: "";
}

.company-address h3 {
  margin: 18px 0 4px;
  color: #252b26;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.22;
}

.company-address h4 {
  margin: 0 0 18px;
  padding-left: 12px;
  color: #5e756b;
  border-left: 3px solid rgba(216, 214, 79, 0.92);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.supply-chain-illustration {
  box-sizing: border-box;
  width: min(100%, 210px);
  margin-top: 22px;
  padding: 12px;
  background:
    linear-gradient(180deg, #ffffff 0, #f6f8f2 100%);
  border: 1px solid rgba(196, 200, 188, 0.72);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 26px rgba(37, 36, 38, 0.08);
}

.supply-chain-illustration svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.company-address p + p {
  padding-top: 12px;
  border-top: 1px solid rgba(196, 200, 188, 0.58);
}

.company-address a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.company-address a:hover {
  color: var(--accent-dark);
}

.inline-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: -3px;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background:
    linear-gradient(180deg, #29282a 0, #1f1e20 100%);
  text-align: center;
  border-top: 4px solid var(--brand-dark);
}

.site-footer p {
  margin: 6px 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: #eeeeaa;
}

.beian {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.beian img {
  display: inline-block;
  width: 18px;
  height: 18px;
}

@media (max-width: 920px) {
  .brand-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .brand-culture {
    padding-left: 0;
    border-left: 0;
    border-top: 3px solid var(--brand-dark);
    padding-top: 14px;
    max-width: 620px;
    margin: 0 auto;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

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

  .about-layout,
  .contact-layout,
  .error-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.85rem;
  }

  .error-hero h1,
  .error-code {
    font-size: 4.5rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-form h2,
  .company-address h2,
  .error-panel h2,
  .error-aside h2 {
    font-size: 2.15rem;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav-bar {
    min-height: 58px;
    justify-content: space-between;
  }

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

  .site-nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 50px;
    padding: 0 22px;
    justify-content: flex-start;
  }

  .language-switcher select {
    min-height: 38px;
    max-width: 128px;
  }

  .hero-slide {
    aspect-ratio: 4 / 3;
    min-height: 330px;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    bottom: 52px;
    max-width: none;
  }

  .hero-copy p {
    max-width: 34ch;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .slider-dots {
    left: 20px;
    bottom: 20px;
  }

  .main {
    padding: 42px 0;
  }

  .capability-item {
    padding: 24px 20px;
  }

  .product-marquee {
    --product-card-width: min(78vw, 320px);
    --product-gap: 18px;
  }

  .product-track {
    animation-duration: 32s;
  }

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

  .page-hero .wrap {
    padding: 42px 0;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .error-hero h1,
  .error-code {
    font-size: 3.75rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-form h2,
  .company-address h2,
  .error-panel h2,
  .error-aside h2 {
    font-size: 1.85rem;
  }

  .error-panel,
  .error-aside {
    padding: 24px 20px;
  }

  .help-widget {
    right: 14px;
    bottom: 14px;
  }

  .help-launcher {
    min-height: 50px;
    padding-right: 13px;
  }

  .help-panel {
    right: 0;
    bottom: 64px;
    width: calc(100vw - 28px);
  }

  .help-widget.has-live-chat .help-panel {
    width: calc(100vw - 28px);
  }

  .help-live-chat {
    margin-right: 12px;
    margin-left: 12px;
  }

  .help-live-chat iframe {
    height: min(50vh, 430px);
    min-height: 330px;
  }

  .help-messages {
    max-height: 220px;
  }
}

@media (max-width: 420px) {
  .brand-panel {
    padding-top: 18px;
  }

  .brand-tagline,
  .brand-culture,
  .section-heading p {
    font-size: 0.92rem;
  }

  .product-marquee {
    --product-card-width: min(84vw, 300px);
  }

  .hero-slide {
    min-height: 360px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 2rem;
  }

  .product-card h3,
  .service-card h3,
  .detail-card h2 {
    font-size: 1.12rem;
  }
}
