:root {
  --ink: #17211d;
  --ink-soft: #405048;
  --forest: #174c3a;
  --forest-dark: #0f3328;
  --gold: #c79642;
  --gold-light: #f2e6ce;
  --brick: #a64d3a;
  --paper: #f6f7f3;
  --white: #ffffff;
  --mist: #e7ebe6;
  --line: #d9dfd9;
  --shadow: 0 18px 45px rgba(20, 40, 31, 0.1);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--forest-dark);
  background: rgba(250, 251, 248, 0.94);
  border-bottom: 1px solid rgba(23, 76, 58, 0.12);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(9, 25, 19, 0.09);
}

.header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(17%) sepia(14%) saturate(1560%) hue-rotate(111deg) brightness(91%);
}

.brand span {
  padding-left: 14px;
  color: rgba(15, 51, 40, 0.64);
  border-left: 1px solid rgba(15, 51, 40, 0.22);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.main-nav > a {
  position: relative;
  padding: 28px 0 25px;
  white-space: nowrap;
}

.main-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  padding: 10px 16px !important;
  color: var(--forest-dark);
  background: var(--gold-light);
  border-radius: 4px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(15, 51, 40, 0.3);
  border-radius: 4px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: block;
  min-height: 0;
  color: var(--forest-dark);
  background: #eef3ed;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 34px;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: auto auto auto;
  column-gap: 76px;
}

.hero-media {
  overflow: hidden;
  width: 100%;
  background: var(--white);
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 672;
  object-fit: cover;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 12px;
  color: var(--brick);
}

.hero h1 {
  max-width: 500px;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: var(--forest-dark);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
  color: #294c3e;
  font-size: 17px;
  font-weight: 560;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 22px;
  grid-column: 2;
  grid-row: 3;
}

.hero .button-primary {
  color: var(--white);
  background: var(--forest);
}

.hero .button-primary:hover {
  background: var(--forest-dark);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease, border 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-dark);
}

.button-ghost {
  color: var(--forest-dark);
  background: transparent;
  border-color: rgba(15, 51, 40, 0.35);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
}

.button-dark {
  color: var(--white);
  background: var(--forest-dark);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  max-width: 500px;
  margin-top: 22px;
  grid-column: 1;
  grid-row: 3;
  color: #37594c;
  font-weight: 650;
  font-size: 13px;
}

.hero-proof span {
  position: relative;
  padding-left: 16px;
}

.hero-proof span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
  font-size: 11px;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(15, 51, 40, 0.45);
}

.trust-band {
  color: var(--white);
  background: var(--forest-dark);
}

.trust-inner {
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  min-height: 170px;
  margin: 0 auto;
  grid-template-columns: 0.8fr 2fr;
  align-items: center;
  gap: 54px;
}

.trust-intro {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.trust-intro span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
}

.trust-intro strong {
  font-size: 18px;
  line-height: 1.5;
}

.trust-stats {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-stats div {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-stats dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-stats dt small {
  margin-left: 3px;
  color: var(--gold);
  font-family: inherit;
  font-size: 13px;
}

.trust-stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.section {
  padding: 100px 0;
}

.section-inner,
.contact-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading h2,
.custom-copy h2,
.manufacturing-content h2,
.about-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.25;
}

.heading-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
}

.heading-row > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.product-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 42px 0 24px;
  padding: 4px;
  background: var(--mist);
  border-radius: 6px;
}

.product-tab {
  min-height: 38px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.product-tab.active {
  color: var(--white);
  background: var(--forest);
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.section-more {
  display: flex;
  margin-top: 32px;
  justify-content: center;
}

.button-outline {
  color: var(--forest-dark);
  background: transparent;
  border-color: rgba(15, 51, 40, 0.32);
}

.button-outline:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

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

.product-card-body p {
  margin: 0 0 7px;
  color: var(--brick);
  font-size: 11px;
  font-weight: 800;
}

.product-card-body h3 {
  margin: 0;
  font-size: 21px;
}

.product-card-body span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.custom-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.custom-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 84px;
}

.custom-copy > p:not(.section-kicker),
.manufacturing-content > p:not(.section-kicker),
.about-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  min-height: 100px;
  padding: 22px 0;
  grid-template-columns: 70px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.process-list strong {
  font-size: 17px;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.manufacturing {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.1fr 0.9fr;
  color: #173640;
  background: #dce8eb;
}

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

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

.manufacturing-content {
  display: flex;
  max-width: 600px;
  padding: 72px 56px;
  flex-direction: column;
  justify-content: center;
}

.manufacturing-content > p:not(.section-kicker) {
  color: #4a646b;
}

.capability-list {
  display: grid;
  margin: 34px 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(23, 54, 64, 0.18);
}

.capability-list div {
  display: flex;
  padding: 19px 12px 19px 0;
  flex-direction: column;
  border-bottom: 1px solid rgba(23, 54, 64, 0.18);
}

.capability-list div:nth-child(odd) {
  border-right: 1px solid rgba(23, 54, 64, 0.18);
}

.capability-list div:nth-child(even) {
  padding-left: 24px;
}

.capability-list strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.capability-list span {
  margin-top: 6px;
  color: #587078;
  font-size: 12px;
}

.manufacturing-content .button {
  align-self: flex-start;
  border-color: transparent;
}

.partners-section {
  background: var(--white);
}

.centered-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered-heading > p:last-child {
  margin: 17px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

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

.partner-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.partner-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.partner-card strong {
  display: block;
  padding: 17px;
  font-size: 14px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 6px;
}

.about-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(15, 51, 40, 0.9);
  border-radius: 4px;
  font-size: 11px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-values span {
  min-width: 68px;
  padding: 8px 14px;
  color: var(--forest);
  background: var(--gold-light);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.contact-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 70px;
}

.contact-inner .section-kicker {
  color: #f2cf96;
}

.contact-inner h2 {
  max-width: 700px;
}

.contact-inner p:last-child {
  max-width: 720px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.8;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 48px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  background: #101813;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 40px;
}

.footer-brand img {
  width: 130px;
}

.footer-brand p,
.footer-contact p,
.footer-meta p {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.7;
}

.footer-contact {
  text-align: center;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 11px;
}

/* Inner pages */
.inner-page {
  background: #fafbf8;
}

.inner-page main {
  padding-top: 76px;
}

.solid-header {
  background: rgba(255, 255, 255, 0.98);
}

.page-intro {
  padding: 92px 0 78px;
  background: #eef3ed;
  border-bottom: 1px solid var(--line);
}

.page-intro-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.page-intro h1,
.detail-page-hero h1 {
  margin: 0;
  color: var(--forest-dark);
  font-size: 54px;
  line-height: 1.18;
}

.page-intro-layout > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.catalog-section {
  padding: 74px 0 110px;
}

.catalog-toolbar {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar .product-tabs {
  margin: 0 0 18px;
}

.catalog-toolbar > p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.catalog-toolbar > p strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

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

.catalog-card img {
  aspect-ratio: 1.42;
}

.catalog-card-body {
  padding: 22px;
}

.catalog-card-body p {
  margin: 0 0 9px;
  color: var(--brick);
  font-size: 11px;
  font-weight: 800;
}

.catalog-card-body h2 {
  margin: 0;
  font-size: 22px;
}

.catalog-card-body span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.catalog-card-body i {
  display: block;
  margin-top: 20px;
  color: var(--forest);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.compact-contact {
  padding: 62px 0;
}

.breadcrumb {
  padding: 22px 0;
  color: #718078;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.breadcrumb .section-inner {
  display: flex;
  gap: 10px;
}

.breadcrumb strong {
  color: var(--forest-dark);
}

.product-detail-hero {
  padding: 62px 0 80px;
  background: var(--white);
}

.detail-hero-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 66px;
}

.detail-image {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.detail-summary h1 {
  margin: 0;
  color: var(--forest-dark);
  font-size: 40px;
  line-height: 1.3;
}

.detail-tagline {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.detail-meta {
  display: grid;
  margin: 30px 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.detail-meta div {
  padding: 17px 12px 17px 0;
  border-bottom: 1px solid var(--line);
}

.detail-meta dt {
  color: #79877f;
  font-size: 11px;
}

.detail-meta dd {
  margin: 7px 0 0;
  color: var(--forest-dark);
  font-size: 13px;
  font-weight: 750;
}

.detail-content-section {
  padding: 92px 0;
  background: #eef3ed;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.detail-content-grid h2 {
  margin: 0;
  font-size: 36px;
}

.detail-content-grid > div > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.set-list {
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--gold);
}

.set-list h3 {
  margin: 0 0 20px;
  font-size: 20px;
}

.set-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.set-list li {
  position: relative;
  padding: 12px 0 12px 20px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}

.set-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.set-list > p {
  margin: 18px 0 0;
  color: #7d8983;
  font-size: 11px;
  line-height: 1.7;
}

.detail-service-band {
  padding: 42px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.detail-service-band .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.detail-service-band .section-inner > div {
  display: grid;
  padding: 4px 26px;
  grid-template-columns: 38px 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-service-band .section-inner > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.detail-service-band span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.detail-service-band strong {
  font-size: 14px;
}

.detail-service-band p {
  margin: 5px 0 0;
  grid-column: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.related-products .heading-row {
  align-items: center;
}

.related-grid {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.related-card div {
  display: flex;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
}

.related-card span {
  color: var(--brick);
  font-size: 11px;
}

.related-card strong {
  font-size: 16px;
}

.detail-page-hero {
  display: flex;
  min-height: 470px;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.detail-page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.detail-page-hero h1 {
  max-width: 700px;
  color: var(--white);
}

.detail-page-hero p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.8;
}

.manufacturing-page-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 1920 / 995;
  background: #dce8eb;
}

.manufacturing-page-hero > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manufacturing-page-hero::before,
.about-page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(13, 44, 34, 0.45);
  content: "";
}

.manufacturing-page-hero::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 40, 48, 0.54) 0%, rgba(9, 40, 48, 0.2) 52%, rgba(9, 40, 48, 0.04) 100%);
}

.manufacturing-page-hero .section-inner {
  z-index: 2;
}

.manufacturing-hero-facts {
  position: absolute;
  z-index: 2;
  top: 31%;
  right: max(24px, calc((100% - var(--container)) / 2));
  width: min(420px, 34vw);
  padding: 4px 0 6px 28px;
  color: var(--white);
  background: transparent;
  border-left: 2px solid var(--gold);
  text-shadow: 0 2px 14px rgba(4, 25, 28, 0.72);
  pointer-events: none;
}

.manufacturing-hero-facts::before {
  position: absolute;
  z-index: -1;
  top: -54px;
  right: 0;
  color: rgba(255, 255, 255, 0.13);
  content: "FACTORY";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.manufacturing-hero-facts > p {
  margin: 0 0 13px;
  padding: 0;
  color: #f6d18c;
  font-size: 12px;
  font-weight: 800;
}

.manufacturing-hero-facts strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

.manufacturing-hero-facts span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.capacity-strip {
  padding: 38px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.capacity-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.capacity-strip .section-inner > div {
  display: flex;
  padding: 0 34px;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.capacity-strip .section-inner > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.capacity-strip strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.capacity-strip span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.factory-story {
  padding: 84px 0;
  background: var(--white);
}

.factory-story.alternate {
  background: #eef3ed;
}

.factory-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 72px;
}

.factory-story.alternate .factory-row > img {
  order: 2;
}

.factory-row > img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 6px;
}

.factory-photo {
  overflow: hidden;
  aspect-ratio: 1.55;
  border-radius: 6px;
}

.factory-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.warehouse-photo {
  order: 2;
  aspect-ratio: 16 / 9;
}

.warehouse-photo > img {
  object-fit: cover;
  transform: none;
}

.warehouse-row {
  grid-template-columns: 1fr;
  gap: 38px;
}

.warehouse-row > div:last-child {
  max-width: 820px;
}

.logistics-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.logistics-modes span {
  padding: 8px 12px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 750;
}

.factory-index {
  display: block;
  margin-bottom: 22px;
  color: #cbd6cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
}

.factory-row h2 {
  margin: 0;
  font-size: 36px;
}

.factory-row p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.factory-row ul {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
}

.factory-row li {
  padding: 10px 0;
  color: var(--forest-dark);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.about-page-hero {
  position: relative;
  background-image: url("assets/hero-room.jpg");
}

.overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.overview-grid h2,
.culture-grid h2,
.team-grid h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
}

.overview-grid > div:last-child p,
.team-grid > div > p:not(.section-kicker) {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.about-photo-band {
  position: relative;
  overflow: hidden;
}

.about-photo-band > img {
  width: 100%;
  min-height: 330px;
  max-height: 540px;
  object-fit: cover;
}

.about-photo-band > div {
  position: absolute;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: 24px;
  display: flex;
  width: auto;
  padding: 15px 20px;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.92);
  align-items: baseline;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(15, 51, 40, 0.14);
  backdrop-filter: blur(8px);
}

.about-photo-band strong {
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.about-photo-band span {
  margin-left: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.milestone-section {
  background: var(--white);
}

.pillar-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-grid article {
  padding: 30px 24px;
  border-left: 1px solid var(--line);
}

.pillar-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.pillar-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.pillar-grid h3 {
  margin: 34px 0 12px;
  font-size: 19px;
}

.pillar-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.culture-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.culture-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.culture-grid h2 {
  color: var(--white);
}

.culture-grid > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

.culture-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.culture-values div {
  display: flex;
  padding: 24px 0;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.culture-values div:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.culture-values strong {
  color: var(--gold);
  font-size: 20px;
}

.culture-values span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 74px;
}

.team-grid > img {
  width: 100%;
  border-radius: 6px;
}

.team-grid .button {
  margin-top: 12px;
}

.employee-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 130px 0 70px;
  overflow: hidden;
  align-items: flex-end;
}

.employee-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 40, 48, 0.8) 0%, rgba(8, 40, 48, 0.34) 48%, rgba(8, 40, 48, 0.08) 100%);
  content: "";
}

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

.employee-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.employee-hero-content h1 {
  margin: 0;
  color: var(--white);
  font-size: 58px;
  line-height: 1.15;
}

.employee-hero-content > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.85;
}

.employee-shortcuts {
  color: var(--white);
  background: var(--forest-dark);
}

.employee-shortcuts .section-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.employee-shortcuts a {
  display: grid;
  min-height: 128px;
  padding: 25px 28px;
  grid-template-columns: 34px 1fr;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.employee-shortcuts a:first-child {
  border-left: 0;
}

.employee-shortcuts span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.employee-shortcuts strong {
  font-size: 15px;
}

.employee-shortcuts small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.employee-services {
  background: var(--white);
}

.employee-services .heading-row > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.employee-services h2,
.employee-growth h2,
.employee-care h2,
.employee-feedback h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.25;
}

.employee-service-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.employee-service-grid article {
  min-height: 240px;
  padding: 30px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.employee-service-grid article > span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 800;
}

.employee-service-grid h3 {
  margin: 48px 0 14px;
  font-size: 20px;
}

.employee-service-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.employee-growth {
  padding: 88px 0;
  background: #dce8eb;
}

.employee-growth-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.employee-growth-grid > div:first-child > p:last-child,
.employee-care-grid > div > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.employee-growth-list {
  border-top: 1px solid rgba(23, 54, 64, 0.2);
}

.employee-growth-list div {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid rgba(23, 54, 64, 0.2);
}

.employee-growth-list strong {
  color: var(--forest);
}

.employee-growth-list span {
  color: var(--ink-soft);
  font-size: 13px;
}

.employee-care {
  background: var(--white);
}

.employee-care-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
}

.employee-care-grid > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 6px;
}

.employee-care-grid ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: 1fr;
  list-style: none;
}

.employee-care-grid li {
  padding: 13px 0;
  color: var(--forest-dark);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.employee-feedback {
  padding: 72px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.employee-feedback > .section-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.employee-feedback h2 {
  color: var(--white);
}

.employee-feedback p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.employee-feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

:focus-visible {
  outline: 3px solid rgba(199, 150, 66, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .brand span {
    display: none;
  }

  .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  .trust-stats div:first-child {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .factory-row,
  .team-grid {
    gap: 44px;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pillar-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .custom-layout {
    gap: 50px;
  }

  .manufacturing-content {
    padding: 56px 38px;
  }

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

  .employee-growth-grid,
  .employee-care-grid {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .header-inner,
  .hero-content,
  .trust-inner,
  .section-inner,
  .contact-inner,
  .footer-inner {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    height: 66px;
  }

  .brand img {
    width: 128px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 66px);
    padding: 12px 16px 22px;
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: var(--forest-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 10px;
    padding: 13px 15px !important;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    margin-top: 0;
    padding: 96px 0 30px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-proof {
    grid-column: 1;
    grid-row: auto;
  }

  .hero h1 {
    max-width: 600px;
    font-size: 45px;
  }

  .hero-lead {
    max-width: 600px;
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 26px;
  }

  .trust-stats div,
  .trust-stats div:first-child {
    padding: 0 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-stats div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .custom-copy h2,
  .manufacturing-content h2,
  .about-copy h2,
  .contact-inner h2 {
    font-size: 34px;
  }

  .heading-row,
  .custom-layout,
  .about-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .manufacturing-media {
    min-height: 360px;
  }

  .manufacturing-content {
    max-width: none;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-contact {
    text-align: right;
  }

  .inner-page main {
    padding-top: 66px;
  }

  .page-intro {
    padding: 68px 0 58px;
  }

  .page-intro-layout,
  .detail-hero-layout,
  .detail-content-grid,
  .factory-row,
  .overview-grid,
  .culture-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-intro h1,
  .detail-page-hero h1 {
    font-size: 42px;
  }

  .catalog-section {
    padding: 58px 0 80px;
  }

  .detail-summary h1 {
    font-size: 34px;
  }

  .detail-content-section {
    padding: 72px 0;
  }

  .detail-service-band .section-inner,
  .capacity-strip .section-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .detail-service-band .section-inner > div:nth-child(3),
  .capacity-strip .section-inner > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .detail-page-hero {
    min-height: 410px;
  }

  .manufacturing-page-hero {
    min-height: 0;
    aspect-ratio: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .manufacturing-page-hero::before {
    display: none;
  }

  .manufacturing-page-hero > img {
    position: static;
    width: 100%;
    height: auto;
    order: 3;
    object-fit: contain;
  }

  .manufacturing-page-hero .section-inner {
    padding: 42px 0;
    order: 1;
  }

  .manufacturing-page-hero h1 {
    color: var(--forest-dark);
  }

  .manufacturing-page-hero p:last-child {
    color: var(--ink-soft);
  }

  .manufacturing-hero-facts {
    position: static;
    display: block;
    width: 100%;
    padding: 24px 16px 26px;
    color: var(--white);
    background: var(--forest-dark);
    border-left: 0;
    order: 2;
    text-align: left;
    text-shadow: none;
  }

  .manufacturing-hero-facts::before {
    display: none;
  }

  .manufacturing-hero-facts > p {
    margin-bottom: 10px;
  }

  .manufacturing-hero-facts strong {
    font-size: 28px;
  }

  .manufacturing-hero-facts span {
    margin-top: 10px;
    font-size: 13px;
  }

  .factory-story {
    padding: 68px 0;
  }

  .factory-story.alternate .factory-row > img {
    order: initial;
  }

  .warehouse-photo {
    order: initial;
  }

  .factory-row > img {
    aspect-ratio: 1.55;
  }

  .about-photo-band > div {
    right: 16px;
  }

  .overview-grid,
  .culture-grid {
    gap: 48px;
  }

  .employee-hero {
    min-height: 440px;
    padding: 100px 0 54px;
  }

  .employee-hero-content h1 {
    font-size: 46px;
  }

  .employee-shortcuts .section-inner {
    grid-template-columns: 1fr 1fr;
  }

  .employee-shortcuts a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .employee-shortcuts a:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .employee-growth-grid,
  .employee-care-grid,
  .employee-feedback > .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .employee-care-grid > img {
    aspect-ratio: 1.45;
  }

  .employee-feedback-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero::after {
    display: none;
  }

  .eyebrow {
    max-width: 280px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-proof {
    display: flex;
    gap: 12px 20px;
    margin-top: 25px;
  }

  .button {
    width: 100%;
  }

  .trust-stats dt {
    font-size: 25px;
  }

  .product-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-tab {
    padding: 0 8px;
  }

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

  .section-heading h2,
  .custom-copy h2,
  .manufacturing-content h2,
  .about-copy h2,
  .contact-inner h2 {
    font-size: 29px;
  }

  .manufacturing-media {
    min-height: 260px;
  }

  .manufacturing-content {
    padding: 48px 20px;
  }

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

  .capability-list div:nth-child(odd) {
    border-right: 0;
  }

  .capability-list div:nth-child(even) {
    padding-left: 0;
  }

  .about-image img {
    aspect-ratio: 1 / 0.8;
  }

  .contact-band {
    padding: 58px 0;
  }

  .employee-hero {
    min-height: 400px;
  }

  .employee-hero-content h1 {
    font-size: 40px;
  }

  .employee-shortcuts .section-inner,
  .employee-service-grid {
    grid-template-columns: 1fr;
  }

  .employee-shortcuts a,
  .employee-shortcuts a:nth-child(4) {
    min-height: 102px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .employee-shortcuts a:first-child {
    border-top: 0;
  }

  .employee-services h2,
  .employee-growth h2,
  .employee-care h2,
  .employee-feedback h2 {
    font-size: 29px;
  }

  .employee-growth-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .employee-feedback-actions {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact,
  .footer-meta {
    text-align: left;
  }

  .footer-meta {
    grid-column: auto;
  }

  .page-intro h1,
  .detail-page-hero h1 {
    font-size: 34px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar .product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    padding: 38px 0 58px;
  }

  .detail-summary h1,
  .detail-content-grid h2,
  .factory-row h2,
  .overview-grid h2,
  .culture-grid h2,
  .team-grid h2 {
    font-size: 29px;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .set-list {
    padding: 24px 20px;
  }

  .detail-service-band .section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-service-band .section-inner > div,
  .detail-service-band .section-inner > div:nth-child(3) {
    padding: 5px 0;
    border-left: 0;
  }

  .capacity-strip .section-inner > div {
    padding: 0 14px;
  }

  .capacity-strip .section-inner > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

  .about-photo-band > img {
    min-height: 260px;
  }

  .about-photo-band > div {
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: calc(100% - 32px);
    padding: 12px 15px;
  }

  .about-photo-band strong {
    font-size: 30px;
  }

  .about-photo-band span {
    margin-left: 10px;
    font-size: 12px;
  }

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

  .pillar-grid article,
  .pillar-grid article:first-child,
  .pillar-grid article:nth-child(3) {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pillar-grid article:first-child {
    border-top: 0;
  }
}

.cooperation-page {
  background: #f5f7f4;
}

.cooperation-entry-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: #174f42;
}

.cooperation-entry-hero > img,
.cooperation-entry-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cooperation-entry-hero > img {
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) saturate(1.08);
}

.cooperation-entry-overlay {
  background: rgba(8, 40, 32, 0.36);
}

.cooperation-entry-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding-top: 88px;
  padding-bottom: 28px;
}

.cooperation-entry-copy {
  max-width: 720px;
}

.cooperation-entry-copy .section-kicker {
  color: #f4ce7d;
}

.cooperation-entry-copy h1 {
  max-width: 680px;
  margin: 12px 0 22px;
  color: var(--white);
  font-size: 58px;
  line-height: 1.12;
}

.cooperation-entry-copy > p:not(.section-kicker) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.9;
}

.cooperation-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cooperation-scan-band {
  padding: 54px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.cooperation-scan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 210px minmax(260px, 0.8fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}

.cooperation-scan-copy h2 {
  max-width: 520px;
  margin: 8px 0 14px;
  color: var(--forest-dark);
  font-size: 34px;
  line-height: 1.25;
}

.cooperation-scan-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.cooperation-scan-qr {
  text-align: center;
}

.cooperation-scan-qr img {
  display: block;
  width: 190px;
  aspect-ratio: 1;
  margin: 0 auto 10px;
  border: 1px solid var(--line);
}

.cooperation-scan-qr span {
  color: var(--forest-dark);
  font-size: 13px;
  font-weight: 800;
}

.cooperation-scan-scope {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.cooperation-scan-scope > span {
  color: #9f6c16;
  font-size: 12px;
  font-weight: 800;
}

.cooperation-scan-scope ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 17px 0 22px;
  padding: 0;
  color: var(--forest-dark);
  font-weight: 700;
  list-style: none;
}

.cooperation-scan-scope li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  vertical-align: 2px;
  background: #c48a2c;
  border-radius: 50%;
  content: "";
}

.cooperation-scan-scope a {
  color: var(--forest);
  font-weight: 800;
}

.cooperation-entry-guide {
  padding: 64px 0 72px;
  background: var(--white);
}

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

.cooperation-entry-heading h2 {
  margin: 7px 0 0;
  font-size: 34px;
}

.cooperation-entry-heading > a {
  color: var(--forest);
  font-weight: 800;
}

.cooperation-entry-guide ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.cooperation-entry-guide li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 26px 28px;
}

.cooperation-entry-guide li + li {
  border-left: 1px solid var(--line);
}

.cooperation-entry-guide li > span {
  color: #bc8529;
  font: 700 24px/1.25 Georgia, serif;
}

.cooperation-entry-guide strong {
  display: block;
  color: var(--forest-dark);
  font-size: 18px;
}

.cooperation-entry-guide li p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cooperation-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.cooperation-hero > img,
.cooperation-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cooperation-hero > img {
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(1.1) saturate(1.08);
}

.cooperation-hero-overlay {
  background: linear-gradient(90deg, rgba(8, 35, 29, 0.66) 0%, rgba(8, 35, 29, 0.34) 54%, rgba(8, 35, 29, 0.07) 100%);
}

.cooperation-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 166px;
  padding-bottom: 76px;
}

.cooperation-hero .section-kicker {
  color: #f2c66e;
}

.cooperation-hero h1 {
  margin: 12px 0 18px;
  font-size: 58px;
  line-height: 1.08;
}

.cooperation-hero-content > p:not(.section-kicker) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

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

.cooperation-role-band {
  padding: 68px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.cooperation-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.cooperation-heading h2,
.application-title h2,
.process-panel h2,
.query-panel h2 {
  margin: 8px 0 0;
  font-size: 32px;
}

.cooperation-heading > p,
.application-title > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.role-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-option {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 28px 25px;
  cursor: pointer;
  border-left: 1px solid var(--line);
  transition: color 160ms ease, background 160ms ease;
}

.role-option:last-child {
  border-right: 1px solid var(--line);
}

.role-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.role-option::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 18px;
  height: 18px;
  border: 1px solid #aeb9b3;
  border-radius: 50%;
  content: "";
}

.role-option.active {
  color: var(--white);
  background: var(--forest);
}

.role-option.active::after {
  border: 5px solid var(--gold-light);
  background: var(--gold);
}

.role-option:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.role-index {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.role-option strong {
  margin-top: 22px;
  font-size: 22px;
}

.role-option small {
  max-width: 215px;
  margin-top: 8px;
  color: #6b7872;
  line-height: 1.6;
}

.role-option.active small {
  color: rgba(255, 255, 255, 0.72);
}

.cooperation-application {
  padding: 78px 0 92px;
}

.cooperation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: 62px;
  align-items: start;
}

.application-title {
  margin-bottom: 35px;
}

.application-title > p:last-child {
  margin-top: 15px;
}

.partner-form fieldset {
  margin: 0;
  padding: 30px 0 34px;
  border: 0;
  border-top: 1px solid var(--line);
}

.partner-form legend {
  padding: 0 16px 0 0;
  color: var(--forest-dark);
  font-size: 17px;
  font-weight: 700;
}

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

.form-field,
.query-panel label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.form-field > span,
.query-panel label > span {
  color: #39473f;
  font-size: 13px;
  font-weight: 650;
}

.form-field b {
  color: #a44132;
}

.form-field input,
.form-field textarea,
.query-panel input {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd7d1;
  border-radius: 4px;
  font: inherit;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.query-panel input {
  height: 48px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
  line-height: 1.7;
}

.form-field input:focus,
.form-field textarea:focus,
.query-panel input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 76, 58, 0.1);
}

.form-field > small {
  margin-top: -3px;
  color: #758078;
  font-size: 11px;
  text-align: right;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #56635c;
  font-size: 12px;
  line-height: 1.7;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.form-message {
  display: none;
  margin: 16px 0 0;
  padding: 11px 13px;
  color: #9e3e31;
  background: #fff0ed;
  border-left: 3px solid #b34c3b;
  font-size: 12px;
}

.form-message.show {
  display: block;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.form-actions > a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.cooperation-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}

.process-panel,
.query-panel {
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-panel h2,
.query-panel h2 {
  font-size: 23px;
}

.process-panel ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-panel li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 0 0 22px;
}

.process-panel li:not(:last-child)::after {
  position: absolute;
  top: 30px;
  bottom: 2px;
  left: 15px;
  width: 1px;
  background: var(--line);
  content: "";
}

.process-panel li > span {
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--forest);
  background: #edf3ef;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.process-panel li strong {
  font-size: 14px;
}

.process-panel li p {
  margin: 4px 0 0;
  color: #6c7871;
  font-size: 12px;
}

.query-panel form {
  display: grid;
  gap: 15px;
  margin-top: 22px;
}

.query-result {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  padding: 16px;
  background: #edf5f0;
  border-left: 3px solid var(--forest);
}

.query-result.not-found {
  background: #fff4e7;
  border-color: var(--gold);
}

.query-result strong {
  color: var(--forest);
  font-size: 18px;
}

.query-result span,
.query-result small {
  margin-top: 5px;
  color: #748078;
  font-size: 11px;
}

.query-result p {
  margin: 9px 0 0;
  font-size: 12px;
}

.phone-panel {
  display: flex;
  min-height: 126px;
  justify-content: center;
  flex-direction: column;
  padding: 24px 27px;
  color: var(--white);
  background: var(--forest-dark);
}

.phone-panel span,
.phone-panel small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.phone-panel strong {
  margin: 8px 0 4px;
  color: #f4ca78;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.application-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 36px;
  background: var(--white);
  border-top: 4px solid var(--forest);
  box-shadow: var(--shadow);
}

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

.result-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 24px;
}

.application-result p:first-child {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.application-result h2 {
  margin: 6px 0 24px;
}

.application-result dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-result dl > div {
  padding: 16px 14px 16px 0;
}

.application-result dt {
  color: #748078;
  font-size: 11px;
}

.application-result dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.application-result > div > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .cooperation-scan-layout {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .cooperation-scan-scope {
    grid-column: 1 / -1;
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .role-option:nth-child(3),
  .role-option:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .cooperation-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .cooperation-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .phone-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .cooperation-entry-hero,
  .cooperation-entry-content {
    min-height: auto;
  }

  .cooperation-entry-hero > img {
    object-position: 47% center;
  }

  .cooperation-entry-overlay {
    background: rgba(8, 40, 32, 0.45);
  }

  .cooperation-entry-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .cooperation-entry-copy h1 {
    font-size: 40px;
  }

  .cooperation-entry-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .cooperation-entry-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cooperation-entry-actions .button {
    justify-content: center;
  }

  .cooperation-scan-band {
    padding: 42px 0 46px;
  }

  .cooperation-scan-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cooperation-scan-copy h2 {
    font-size: 28px;
  }

  .cooperation-scan-qr {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .cooperation-scan-qr img {
    width: min(220px, 68vw);
  }

  .cooperation-scan-scope {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .cooperation-entry-guide {
    padding: 46px 0 52px;
  }

  .cooperation-entry-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .cooperation-entry-heading h2 {
    font-size: 28px;
  }

  .cooperation-entry-guide ol {
    grid-template-columns: 1fr;
  }

  .cooperation-entry-guide li {
    min-height: 0;
    padding: 22px 4px;
  }

  .cooperation-entry-guide li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cooperation-hero {
    min-height: 480px;
  }

  .cooperation-hero > img {
    object-position: 52% center;
  }

  .cooperation-hero-content {
    padding-top: 142px;
    padding-bottom: 52px;
  }

  .cooperation-hero h1 {
    font-size: 42px;
  }

  .cooperation-hero-content > p:not(.section-kicker) {
    font-size: 15px;
  }

  .cooperation-role-band,
  .cooperation-application {
    padding: 48px 0;
  }

  .cooperation-heading {
    display: block;
  }

  .cooperation-heading > p {
    margin-top: 12px;
  }

  .cooperation-heading h2,
  .application-title h2 {
    font-size: 27px;
  }

  .role-option {
    min-height: 158px;
    padding: 21px 18px;
  }

  .role-option strong {
    margin-top: 15px;
    font-size: 19px;
  }

  .form-grid,
  .cooperation-aside {
    grid-template-columns: 1fr;
  }

  .form-field.full,
  .phone-panel {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .application-result {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .application-result dl {
    grid-template-columns: 1fr;
  }

  .application-result dl > div + div {
    border-top: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
