:root {
  --ink: #17211c;
  --muted: #667168;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --line: rgba(23, 33, 28, 0.12);
  --forest: #1f5d44;
  --forest-dark: #113527;
  --mist: #e4ebe4;
  --shadow: 0 28px 80px rgba(23, 33, 28, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Microsoft YaHei UI",
    "Microsoft YaHei",
    "PingFang SC",
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  padding-bottom: 86px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 34px;
  color: #fff;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

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

.site-header .brand {
  position: relative;
  z-index: 1;
  min-width: 300px;
  height: 62px;
  gap: 0;
}

.site-header .brand > * {
  display: none;
}

.site-header .brand::before {
  content: "";
  display: block;
  width: 300px;
  height: 70px;
  background: url("assets/header-brand-logo.png?v=20260615-green-logo") left center / contain no-repeat;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.site-header .brand strong,
.site-header .brand small {
  color: #009b5a;
}

.brand small {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.68;
}

.desktop-nav {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 14px;
}

.desktop-nav a,
.shop-link {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  opacity: 0.84;
}

.desktop-nav a:hover,
.shop-link:hover {
  opacity: 1;
}

.header-actions {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.marketplace-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.marketplace-link {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.marketplace-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.marketplace-link.tmall .marketplace-icon {
  width: 40px;
  height: 40px;
}

.site-header.scrolled .marketplace-link,
.site-header.menu-open .marketplace-link {
  color: var(--ink);
}

.home-page {
  padding-bottom: 0;
}

.home-page .floating-contact {
  display: none;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--forest-dark);
  font-weight: 700;
}

.site-header.scrolled .primary-link,
.site-header.menu-open .primary-link {
  background: var(--forest);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.8s ease,
    transform 2.4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.4)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 132px);
  padding-top: min(28vh, 220px);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .section-kicker,
.appointment .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.about h2,
.section-title h2,
.philosophy h2,
.featured h2,
.news h2,
.appointment h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p:not(.section-kicker) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

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

.button-solid {
  background: var(--forest);
  color: #fff;
}

.hero .button-solid,
.appointment .button-solid {
  background: #fff;
  color: var(--forest-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-pager {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 6vw, 92px);
  bottom: 54px;
  display: flex;
  gap: 10px;
}

.hero-pager button {
  width: 54px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero-pager button.active {
  background: #fff;
  color: var(--forest-dark);
}

.section-pad {
  padding: clamp(76px, 9vw, 132px) 0;
}

.about {
  background: var(--paper);
}

.about-lite {
  background: var(--paper);
}

.about-lite-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
}

.section-count {
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.about-lite h2,
.system-modern h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 1.08;
}

.about-lite-copy h2 {
  display: grid;
  gap: clamp(8px, 1vw, 14px);
  max-width: 620px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.12;
}

.about-lite-copy h2 span:last-child {
  margin-left: 0;
}

.system-modern-copy h2 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.22;
  letter-spacing: 0;
}

.system-modern-lines {
  display: grid;
  gap: 7px;
  max-width: 620px;
  margin-top: 28px !important;
  font-size: clamp(17px, 1.25vw, 20px) !important;
  line-height: 1.72 !important;
}

.system-modern-lines span {
  display: block;
}

.about-lite-lead {
  max-width: 520px;
  color: var(--ink) !important;
  font-size: clamp(19px, 1.55vw, 24px) !important;
  font-weight: 800;
  line-height: 1.38 !important;
}

.about-lite p:not(.section-kicker),
.system-modern p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-lite-copy > p:not(.section-kicker):not(.about-lite-lead) {
  max-width: 620px;
  margin-top: 22px;
  font-size: 17px;
}

.about-lite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-lite-tags span {
  position: relative;
  padding-right: 18px;
}

.about-lite-tags span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.about-lite-image {
  height: clamp(360px, 42vw, 620px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-lite-image-pavilion img {
  object-position: center 36%;
}

.custom-system {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px 0;
  background:
    radial-gradient(circle at 72% 46%, rgba(208, 163, 93, 0.16), transparent 30%),
    radial-gradient(circle at 82% 52%, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 20% 78%, rgba(31, 93, 68, 0.12), transparent 30%),
    linear-gradient(135deg, #050504 0%, #020302 55%, #060503 100%);
  color: #fff;
}

.star-field,
.system-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star-field {
  opacity: 0.96;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(208, 163, 93, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 0.7px, transparent 1.2px),
    radial-gradient(circle, rgba(208, 163, 93, 0.34) 0 0.8px, transparent 1.4px);
  background-position:
    0 0,
    42px 88px,
    180px 120px,
    76px 210px,
    260px 42px,
    18px 32px,
    148px 76px;
  background-size:
    118px 118px,
    190px 190px,
    280px 280px,
    360px 360px,
    520px 520px,
    74px 74px,
    146px 146px;
  animation: starDrift 48s linear infinite;
}

.star-field::before,
.star-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(208, 163, 93, 0.5) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 0.8px, transparent 1.4px);
  background-position:
    36px 64px,
    160px 24px,
    260px 180px;
  background-size:
    220px 220px,
    340px 340px,
    96px 96px;
}

.star-field::before {
  opacity: 0.72;
  animation: starDrift 62s linear infinite reverse;
}

.star-field::after {
  opacity: 0.38;
  filter: blur(0.5px);
  transform: scale(1.08);
}

.system-glow {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 74% 50%, rgba(208, 163, 93, 0.13), transparent 34%),
    radial-gradient(circle at 74% 50%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.custom-system-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.custom-system-copy {
  max-width: 660px;
}

.custom-system .section-kicker {
  color: rgba(208, 163, 93, 0.9);
}

.custom-system h2 {
  margin: 0;
  color: #f4fff8;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.22;
  letter-spacing: 0;
}

.custom-system-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.9;
}

.custom-system-lines {
  display: grid;
  gap: 7px;
  max-width: 700px;
  font-size: clamp(17px, 1.25vw, 20px) !important;
  line-height: 1.72 !important;
}

.custom-system-lines span {
  display: block;
}

.system-detail-link {
  display: inline-block;
  margin-top: 42px;
  color: #fff;
  font-weight: 800;
}

.orbit-stage {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  --orbit-node-size: 64px;
  --orbit-label-width: 94px;
  --orbit-gap: 14px;
  margin: 0 clamp(48px, 4.8vw, 72px) 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 70px rgba(208, 163, 93, 0.16));
}

.orbit-ring,
.axis,
.core-sphere,
.orbit-track,
.orbit-node {
  position: absolute;
}

.orbit-ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(208, 163, 93, 0.18);
}

.orbit-ring-outer {
  inset: -12%;
  opacity: 0.42;
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-ring-mid {
  inset: 7%;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 34px rgba(208, 163, 93, 0.05);
}

.orbit-ring-inner {
  inset: 26%;
  border-color: rgba(255, 255, 255, 0.08);
}

.axis {
  left: 50%;
  top: 50%;
  background: rgba(208, 163, 93, 0.12);
  transform: translate(-50%, -50%);
  display: none;
}

.axis-x {
  width: 116%;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 116%;
}

.core-sphere {
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 226px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 48% 42%, rgba(255, 224, 154, 0.32), transparent 36%),
    radial-gradient(circle at 66% 74%, rgba(23, 7, 4, 0.76), transparent 42%),
    linear-gradient(145deg, #c78b35 0%, #9f5520 34%, #651b12 68%, #170605 100%);
  box-shadow:
    0 0 0 1px rgba(255, 223, 166, 0.32),
    0 0 0 9px rgba(208, 163, 93, 0.08),
    0 0 78px rgba(208, 128, 47, 0.35),
    0 0 150px rgba(116, 36, 16, 0.2),
    inset 20px 16px 34px rgba(255, 234, 177, 0.16),
    inset -38px -30px 58px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.core-sphere::before,
.core-sphere::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.core-sphere::before {
  z-index: 3;
  inset: 0;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.38), transparent 18%),
    radial-gradient(circle at 44% 42%, rgba(255, 246, 220, 0.16), transparent 35%),
    linear-gradient(112deg, rgba(0, 0, 0, 0.22), transparent 34%, transparent 63%, rgba(0, 0, 0, 0.46));
  box-shadow:
    inset 18px 18px 34px rgba(255, 255, 255, 0.08),
    inset -34px -30px 52px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.core-sphere::after {
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 247, 222, 0.75) 0 2px, transparent 2.8px),
    radial-gradient(circle at 48% 31%, rgba(255, 247, 222, 0.66) 0 1.6px, transparent 2.4px),
    radial-gradient(circle at 63% 45%, rgba(255, 247, 222, 0.62) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 38% 65%, rgba(255, 247, 222, 0.58) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 70% 68%, rgba(255, 247, 222, 0.48) 0 1.3px, transparent 2px);
  opacity: 0.68;
  filter: drop-shadow(0 0 8px rgba(255, 238, 199, 0.28));
  animation: earthLights 7s ease-in-out infinite alternate;
}

.core-map {
  position: absolute;
  z-index: 2;
  inset: 12px;
  border-radius: 50%;
  opacity: 0.9;
  background:
    radial-gradient(ellipse at 23% 38%, rgba(255, 237, 199, 0.72) 0 9%, transparent 10%),
    radial-gradient(ellipse at 36% 27%, rgba(255, 237, 199, 0.58) 0 7%, transparent 8%),
    radial-gradient(ellipse at 48% 48%, rgba(255, 237, 199, 0.64) 0 10%, transparent 11%),
    radial-gradient(ellipse at 66% 35%, rgba(255, 237, 199, 0.52) 0 8%, transparent 9%),
    radial-gradient(ellipse at 71% 60%, rgba(255, 237, 199, 0.46) 0 9%, transparent 10%),
    radial-gradient(ellipse at 35% 70%, rgba(255, 237, 199, 0.42) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.07), transparent 58%);
  filter:
    blur(0.15px)
    drop-shadow(0 0 9px rgba(255, 232, 188, 0.28));
  animation: earthRotate 9s ease-in-out infinite alternate;
}

.core-sphere strong {
  position: relative;
  z-index: 4;
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(255, 255, 255, 0.24);
}

.orbit-track {
  inset: 7%;
  border-radius: 50%;
}

.orbit-node {
  left: var(--node-x);
  top: var(--node-y);
  width: 0;
  height: 0;
  color: #fff;
  transform: none;
}

.node-region {
  --node-x: 50%;
  --node-y: 0%;
}

.node-home {
  --node-x: 97.6%;
  --node-y: 34.6%;
}

.node-product {
  --node-x: 79.4%;
  --node-y: 90.5%;
}

.node-scene {
  --node-x: 12.8%;
  --node-y: 83.5%;
}

.node-service {
  --node-x: 6.7%;
  --node-y: 25%;
}

.node-dot {
  position: absolute;
  left: calc(var(--orbit-node-size) / -2);
  top: calc(var(--orbit-node-size) / -2);
  display: grid;
  place-items: center;
  width: var(--orbit-node-size);
  height: var(--orbit-node-size);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 232, 205, 0.84)),
    rgba(255, 255, 255, 0.9);
  color: #5c421d;
  font-size: 27px;
  font-weight: 900;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34),
    0 14px 34px rgba(0, 0, 0, 0.26);
}

.orbit-node strong {
  position: absolute;
  top: 50%;
  right: calc((var(--orbit-node-size) / 2) + var(--orbit-gap));
  display: block;
  width: var(--orbit-label-width);
  min-width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: none;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.2;
  text-align: right;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
  white-space: nowrap;
  transform: translateY(-50%);
}

.node-scene,
.node-service {
  text-align: left;
}

.node-scene strong,
.node-service strong {
  left: calc((var(--orbit-node-size) / 2) + var(--orbit-gap));
  right: auto;
  text-align: left;
}

.node-home strong {
  left: calc((var(--orbit-node-size) / 2) + 20px);
  right: auto;
  text-align: left;
}

.node-product strong {
  top: calc(50% + 26px);
  left: calc(50% + 46px);
  right: auto;
  text-align: center;
  transform: translate(0, 0);
}

.node-scene strong {
  top: calc(50% + 12px);
  left: auto;
  right: calc((var(--orbit-node-size) / 2) + 20px);
  text-align: right;
  transform: translateY(-50%);
}

.node-service strong {
  right: calc((var(--orbit-node-size) / 2) + 20px);
  left: auto;
  text-align: right;
}

.node-region strong {
  left: 50%;
  right: auto;
  top: auto;
  bottom: calc((var(--orbit-node-size) / 2) + 10px);
  text-align: center;
  transform: translateX(-50%);
}

@keyframes starDrift {
  from {
    background-position:
      0 0,
      42px 88px,
      180px 120px,
      76px 210px,
      260px 42px,
      18px 32px,
      148px 76px;
  }
  to {
    background-position:
      118px 180px,
      232px 312px,
      460px 430px,
      436px 570px,
      780px 620px,
      92px 164px,
      294px 272px;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.99);
  }
  50% {
    opacity: 0.56;
    transform: scale(1.02);
  }
}

@keyframes sphereSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 1px rgba(208, 163, 93, 0.25),
      0 0 76px rgba(208, 163, 93, 0.24),
      0 0 128px rgba(31, 93, 68, 0.1),
      inset -26px -24px 48px rgba(0, 0, 0, 0.26);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px)) scale(1.035);
    box-shadow:
      0 0 0 1px rgba(208, 163, 93, 0.34),
      0 0 104px rgba(208, 163, 93, 0.36),
      0 0 160px rgba(31, 93, 68, 0.14),
      inset -26px -24px 48px rgba(0, 0, 0, 0.24);
  }
}

@keyframes mapFloat {
  from {
    transform: translate3d(-4px, 2px, 0) scale(1);
  }
  to {
    transform: translate3d(5px, -3px, 0) scale(1.04);
  }
}

@keyframes earthRotate {
  from {
    transform: translate3d(-8px, 0, 0) scale(1.02) rotate(-3deg);
    opacity: 0.76;
  }
  to {
    transform: translate3d(8px, -2px, 0) scale(1.06) rotate(4deg);
    opacity: 0.95;
  }
}

@keyframes earthLights {
  from {
    transform: translate3d(-3px, 1px, 0);
    opacity: 0.5;
  }
  to {
    transform: translate3d(4px, -1px, 0);
    opacity: 0.78;
  }
}

.system-modern {
  background: var(--paper);
}

.system-modern-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 900px);
  gap: clamp(36px, 5.2vw, 82px);
  align-items: center;
}

.system-modern-image {
  width: min(100%, 900px);
  aspect-ratio: 16 / 9;
  height: auto;
  justify-self: end;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.system-modern-image-contain {
  background: #050606;
}

.system-modern-image-contain img,
.system-modern-image-contain video {
  width: 100%;
  height: 100%;
}

.system-modern-image-contain img {
  object-fit: contain;
  transform: scale(0.96);
}

.system-modern-image-contain video {
  display: block;
  object-fit: cover;
  background: #050606;
}

.text-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--forest);
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(40px, 8vw, 132px);
  align-items: end;
}

.about-copy p,
.section-title p,
.philosophy-content p,
.featured-copy p,
.news-heading p,
.appointment-content p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stats-row div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats-row strong {
  display: block;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.wide-media {
  width: min(1560px, calc(100% - 48px));
  height: clamp(360px, 48vw, 720px);
  margin: 70px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-title {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-title.compact {
  margin-bottom: 34px;
}

.section-title h2,
.philosophy h2,
.featured h2,
.news h2,
.appointment h2 {
  font-size: clamp(34px, 4.7vw, 70px);
}

.section-title p {
  margin-top: 18px;
}

.system {
  background: var(--surface);
}

.system-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.system-menu {
  display: grid;
  gap: 10px;
  align-content: start;
}

.system-menu button {
  height: 62px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.system-menu button.active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.system-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
}

.system-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.system-card span,
.series,
.system-card h3 {
  margin: 20px 0 18px;
  font-size: clamp(28px, 3.3vw, 52px);
  line-height: 1.12;
}

.system-card p {
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.9;
}

.system-card a {
  font-weight: 800;
  color: var(--forest-dark);
}

.philosophy {
  background: var(--paper);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
}

.philosophy-media {
  height: clamp(520px, 58vw, 760px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.philosophy-content p {
  margin-top: 24px;
}

.feature-lines {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.feature-lines div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

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

.products {
  background:
    linear-gradient(180deg, #fbfcf8 0%, #f2f5ef 100%);
}

.home-page .products {
  padding-top: clamp(34px, 4.5vw, 66px);
}

.home-page .products .section-title h2 {
  font-size: 45px;
}

.product-page {
  background: #fbfcf8;
}

.product-page .site-header {
  color: var(--ink);
  background: rgba(246, 247, 242, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.product-page .primary-link {
  background: var(--forest);
  color: #fff;
}

.product-page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 86px;
  background:
    radial-gradient(circle at 82% 22%, rgba(208, 163, 93, 0.16), transparent 26%),
    radial-gradient(circle at 16% 8%, rgba(31, 93, 68, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfcf8 0%, #f2f5ef 100%);
}

.product-page-hero::after {
  content: "PRODUCT";
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  color: rgba(23, 33, 28, 0.035);
  font-size: clamp(96px, 16vw, 260px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.product-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.product-page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 7vw, 112px);
  line-height: 0.95;
}

.product-page-hero p:not(.section-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.9;
}

.product-image-hero {
  height: clamp(420px, 56vw, 680px);
  padding: 0;
  margin-top: 76px;
  background: #101510;
}

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

.product-image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 38%, rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(8, 20, 14, 0.18), transparent 46%);
  pointer-events: none;
}

.product-featured-strip {
  padding: clamp(34px, 5vw, 70px) 0 0;
  background: #fbfcf8;
}

.product-featured-panel {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(420px, 1.04fr);
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f1f2ef 0%, #ecefeb 100%);
  box-shadow:
    0 24px 80px rgba(23, 33, 28, 0.09),
    inset 0 0 0 1px rgba(23, 33, 28, 0.06);
}

.product-featured-image {
  min-height: 430px;
  overflow: hidden;
  background: #dfe3df;
}

.product-featured-image img {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-featured-panel:hover .product-featured-image img {
  transform: scale(1.035);
}

.product-featured-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 84px);
}

.product-featured-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  color: rgba(23, 33, 28, 0.5);
  font-size: 14px;
}

.product-featured-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(23, 33, 28, 0.68);
  font-size: 16px;
  line-height: 2;
}

.featured-controls {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(26px, 4vw, 50px);
  display: flex;
  gap: 18px;
}

.featured-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #b98949;
  background: rgba(255, 255, 255, 0.86);
  font-size: 30px;
  line-height: 1;
  cursor: default;
}

.product-detail-page {
  background: #fbfcf8;
}

.product-detail-page .site-header {
  color: var(--ink);
  background: rgba(246, 247, 242, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.product-detail-page .primary-link {
  background: var(--forest);
  color: #fff;
}

.detail-hero {
  padding: 128px 0 54px;
  background:
    radial-gradient(circle at 88% 12%, rgba(208, 163, 93, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfcf8 0%, #eff3ed 100%);
}

.detail-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(23, 33, 28, 0.52);
  font-size: 13px;
}

.detail-breadcrumb a {
  color: var(--forest);
  font-weight: 800;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: stretch;
}

.detail-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 74px) 0;
}

.detail-summary h1 {
  margin: 0;
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 0.98;
}

.detail-summary p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(23, 33, 28, 0.66);
  font-size: 17px;
  line-height: 1.9;
}

.detail-specs {
  display: grid;
  gap: 0;
  width: min(100%, 560px);
  margin-top: 36px;
  border-top: 1px solid rgba(23, 33, 28, 0.1);
}

.detail-specs div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.1);
}

.detail-specs span {
  color: rgba(23, 33, 28, 0.46);
  font-size: 14px;
}

.detail-specs strong {
  color: var(--ink);
  font-size: 15px;
}

.detail-hero-image {
  min-height: 560px;
  overflow: hidden;
  background: #dfe4df;
  box-shadow:
    0 30px 90px rgba(23, 33, 28, 0.12),
    inset 0 0 0 1px rgba(23, 33, 28, 0.08);
}

.detail-hero-image img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-hero-image:hover img {
  transform: scale(1.035);
}

.detail-section {
  padding: clamp(76px, 8vw, 126px) 0;
  background: #fbfcf8;
}

.detail-section.alt {
  background: #f0f4ef;
}

.detail-section-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.detail-section-head span {
  color: #b98949;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.detail-section-head h2 {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.08;
}

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

.detail-system-card {
  min-height: 230px;
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 243, 238, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(23, 33, 28, 0.07),
    0 20px 54px rgba(23, 33, 28, 0.07);
}

.detail-system-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: 900;
}

.detail-system-card h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 22px;
}

.detail-system-card p {
  margin: 0;
  color: rgba(23, 33, 28, 0.58);
  line-height: 1.8;
}

.detail-craft-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.detail-craft-media {
  height: clamp(420px, 48vw, 680px);
  overflow: hidden;
  box-shadow:
    0 28px 78px rgba(23, 33, 28, 0.12),
    inset 0 0 0 1px rgba(23, 33, 28, 0.08);
}

.detail-craft-copy {
  display: grid;
  gap: 22px;
}

.detail-craft-copy article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
}

.detail-craft-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.detail-craft-copy p {
  margin: 0;
  color: rgba(23, 33, 28, 0.62);
  line-height: 1.9;
}

.detail-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-scenario-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.detail-scenario-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.66));
}

.detail-scenario-card strong {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 26px;
  font-size: 26px;
}

.detail-recommend {
  padding: clamp(70px, 7vw, 110px) 0;
  background: #111912;
  color: #fff;
}

.detail-recommend .section-kicker {
  color: rgba(208, 163, 93, 0.9);
}

.detail-recommend h2 {
  margin: 0 0 34px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.04;
}

.recommend-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.recommend-links a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: #111912;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.recommend-links a::after {
  content: "+";
  color: #d0a35d;
  font-size: 24px;
}

.dx-detail-page {
  background: #f7f8f5;
}

.dx-detail-page .site-header {
  color: var(--ink);
  background: rgba(246, 247, 242, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.dx-detail-page .primary-link {
  background: var(--forest);
  color: #fff;
}

.dx-detail {
  padding-top: 108px;
  background: #f7f8f5;
}

.dx-breadcrumb {
  display: flex;
  gap: 10px;
  padding: 28px 0;
  color: rgba(23, 33, 28, 0.52);
  font-size: 14px;
}

.dx-breadcrumb a {
  color: var(--forest);
  font-weight: 800;
}

.dx-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
  padding-bottom: clamp(70px, 8vw, 120px);
}

.dx-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  min-height: 620px;
}

.product-awning-detail .dx-gallery,
.product-pavilion-detail .dx-gallery {
  min-height: 0;
  height: 560px;
}

.product-awning-detail .dx-main-image,
.product-pavilion-detail .dx-main-image {
  height: 560px;
}

.dx-thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.dx-thumbs span {
  display: block;
  height: 82px;
  overflow: hidden;
  background: #e7e9e4;
  box-shadow: inset 0 0 0 1px rgba(23, 33, 28, 0.08);
}

.dx-main-image {
  overflow: hidden;
  background: #e3e6e0;
  height: 100%;
  box-shadow:
    0 28px 76px rgba(23, 33, 28, 0.1),
    inset 0 0 0 1px rgba(23, 33, 28, 0.08);
}

.dx-main-image img,
.dx-thumbs img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.dx-main-image:hover img {
  transform: scale(1.035);
}

.dx-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 62px);
  background: #eef0ec;
}

.dx-summary h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
}

.dx-summary p {
  margin: 24px 0 0;
  color: rgba(23, 33, 28, 0.62);
  line-height: 1.9;
}

.dx-spec-list {
  display: grid;
  margin: 34px 0 0;
  border-top: 1px solid rgba(23, 33, 28, 0.12);
}

.dx-spec-list div {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
}

.dx-spec-list span {
  color: rgba(23, 33, 28, 0.45);
}

.dx-spec-list strong {
  color: var(--ink);
}

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

.dx-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(23, 33, 28, 0.18);
  color: var(--forest);
  font-weight: 900;
}

.dx-actions a:first-child {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.dx-section {
  padding: clamp(78px, 8vw, 128px) 0;
  background: #f3f3f3;
}

.dx-section.alt {
  background: #eeeeee;
}

.dx-title {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(70px, 7vw, 112px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.26);
}

.dx-title span {
  color: var(--ink);
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
}

.dx-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.dx-title small {
  display: inline;
  margin-left: 10px;
  color: rgba(23, 33, 28, 0.42);
  font-size: 18px;
  font-weight: 500;
}

.dx-six-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  background: transparent;
}

.dx-six-grid article {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 34px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(23, 33, 28, 0.22);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 33, 28, 0.06);
}

.dx-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: #111;
  background: #f0f0f0;
  font-size: 0;
  font-weight: 900;
}

.dx-icon::before {
  content: attr(data-icon);
  font-size: 38px;
  line-height: 1;
}

.dx-six-grid article::before {
  content: "";
  width: 30px;
  height: 6px;
  order: 2;
  background:
    radial-gradient(circle, #9b9b9b 0 3px, transparent 3.5px) 0 0 / 10px 6px,
    radial-gradient(circle, #c49a6c 0 3px, transparent 3.5px) 10px 0 / 10px 6px,
    radial-gradient(circle, #9b9b9b 0 3px, transparent 3.5px) 20px 0 / 10px 6px;
}

.dx-six-grid h3 {
  order: 3;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

.dx-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.dx-quality-card {
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  position: relative;
  overflow: visible;
  text-align: center;
}

.dx-quality-card img {
  position: static;
  height: 440px;
  border: 3px solid #fff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
}

.dx-quality-card h3,
.dx-quality-card p {
  position: relative;
  z-index: 1;
}

.dx-quality-card h3 {
  margin: 28px 0 0;
  color: rgba(23, 33, 28, 0.82);
  font-size: 18px;
  font-weight: 400;
}

.dx-quality-card p {
  display: none;
}

.dx-craft-list {
  display: grid;
  gap: 34px;
}

.dx-craft-item {
  display: grid;
  grid-template-columns: minmax(0, 900px) minmax(280px, 1fr);
  min-height: 500px;
  background: #fff;
}

.dx-craft-item:nth-child(even) {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 900px);
}

.dx-craft-item:nth-child(even) .dx-craft-img {
  grid-column: 2;
}

.dx-craft-item:nth-child(even) .dx-craft-text {
  grid-column: 1;
  grid-row: 1;
}

.dx-craft-img {
  overflow: hidden;
  background: #e0e4df;
  height: 500px;
}

.dx-craft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dx-craft-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
}

.dx-craft-text h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.dx-craft-text p {
  margin: 24px 0 0;
  color: rgba(23, 33, 28, 0.62);
  line-height: 1.9;
}

.dx-colors {
  display: grid;
  gap: 54px;
}

.dx-color-row {
  display: grid;
  grid-template-columns: 150px repeat(4, 142px);
  gap: clamp(34px, 5vw, 62px);
  align-items: center;
}

.dx-color-row > strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
}

.dx-color-card {
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
}

.dx-swatch {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    var(--swatch);
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.18),
    0 12px 28px rgba(23, 33, 28, 0.08);
}

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

.dx-scene {
  position: relative;
  height: 160px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.dx-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.65));
}

.dx-scene strong {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  font-size: 24px;
}

.dx-hot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dx-hot-card {
  background: #f0f2ee;
}

.dx-hot-card img {
  height: 230px;
}

.dx-hot-card strong {
  display: block;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 20px;
}

.join-page {
  background: #f1f2ed;
  overflow-x: hidden;
}

.join-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #10251c;
}

.join-hero > img,
.join-hero-overlay {
  position: absolute;
  inset: 0;
}

.join-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 12, 10, 0.94), rgba(9, 18, 14, 0.62) 52%, rgba(7, 12, 10, 0.34)),
    linear-gradient(180deg, rgba(7, 12, 10, 0.24), rgba(7, 12, 10, 0.78));
}

.join-hero-content {
  position: relative;
  z-index: 1;
  padding: 190px 0 110px;
}

.join-hero-content span {
  display: block;
  color: #c89c63;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.join-hero-content h1 {
  margin: 12px 0 18px;
  font-size: clamp(86px, 10vw, 156px);
  line-height: 0.95;
  letter-spacing: 0;
}

.join-hero-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.9;
}

.join-anchor {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(10, 13, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  font-size: 14px;
}

.join-anchor a:hover {
  color: #d3a56b;
}

.join-block {
  padding: clamp(78px, 8vw, 132px) 0;
  background: #f6f7f2;
}

.join-block.muted {
  background: #eceee8;
}

.join-section-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 78px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.16);
}

.join-section-head > span {
  color: #b98545;
  font-family: "Consolas", monospace;
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
}

.join-section-head p,
.join-split-title p {
  margin: 0 0 8px;
  color: rgba(23, 33, 28, 0.42);
  font-size: 16px;
  text-transform: uppercase;
}

.join-section-head h2,
.join-split-title h2,
.join-promo h2,
.join-cooperate h2,
.join-apply h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

.join-market-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(42px, 6vw, 76px);
  align-items: stretch;
}

.join-market-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.join-market-copy h3 {
  margin: 0;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.08;
}

.join-market-copy p,
.join-promo p,
.join-cooperate p,
.join-apply p {
  margin: 28px auto 0;
  color: rgba(23, 33, 28, 0.62);
  font-size: 18px;
  line-height: 1.9;
}

.join-stat-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 260px;
  overflow: hidden;
  gap: 26px;
  color: #fff;
  background: transparent;
}

.join-stat-panel article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 42px;
  background:
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #c99c61, #b8813f);
  box-shadow: 0 26px 70px rgba(122, 78, 31, 0.18);
}

.join-stat-panel small {
  color: rgba(255, 255, 255, 0.62);
}

.join-stat-panel strong {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1;
}

.join-stat-panel span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.join-market {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 38%, transparent 0 330px, rgba(23, 33, 28, 0.045) 331px, transparent 333px),
    linear-gradient(90deg, rgba(246, 247, 242, 0.98), rgba(246, 247, 242, 0.9)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2200&q=80") right bottom / 58% auto no-repeat;
  padding-top: clamp(76px, 7vw, 112px);
  padding-bottom: clamp(76px, 7vw, 118px);
}

.join-market-title {
  text-align: center;
  margin-bottom: 76px;
}

.join-market-title h2 {
  margin: 0;
  color: #242a28;
  font-size: clamp(40px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1.12;
}

.join-market-title p {
  margin: 18px 0 0;
  color: #242a28;
  font-size: 18px;
  line-height: 1.7;
}

.join-market .join-stat-panel {
  min-height: 0;
  gap: 24px;
  overflow: visible;
}

.join-market .join-stat-panel article {
  position: relative;
  justify-content: center;
  min-height: 276px;
  padding: 46px 66px;
  overflow: hidden;
  background: #c99b63;
  box-shadow: none;
}

.join-market .join-stat-panel article::after {
  content: "￥";
  position: absolute;
  right: 44px;
  bottom: -26px;
  color: rgba(145, 100, 50, 0.22);
  font-size: 170px;
  font-weight: 800;
  line-height: 1;
}

.join-market .join-stat-panel article:nth-child(2)::after {
  content: "↗";
  right: 38px;
  bottom: -18px;
  font-size: 178px;
}

.join-market .join-stat-panel article:nth-child(3)::after {
  content: "↯";
  right: 36px;
  bottom: -24px;
  font-size: 182px;
}

.join-market .join-stat-panel small {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 20px;
}

.join-market .join-stat-panel strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 8px;
  color: #fff;
  line-height: 1;
}

.join-market .join-stat-panel strong span {
  color: #fff;
  font-size: clamp(76px, 8vw, 118px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.join-market .join-stat-panel strong i {
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
}

.join-market .join-stat-panel b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}

.join-market-note {
  margin-top: 74px;
  text-align: center;
  color: #171d1a;
  font-size: 20px;
  line-height: 1.8;
}

.join-market-note p {
  margin: 0;
}

.join-strength-list {
  display: grid;
  gap: 34px;
}

.join-strength-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.join-strength-track {
  display: flex;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.join-strength-stack {
  display: grid;
  background: #fff;
}

.join-strength-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 600px;
  background: #fff;
  overflow: hidden;
}

.join-strength-panel + .join-strength-panel {
  margin-top: 0;
}

.join-strength-panel.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.join-strength-panel.reverse figure {
  grid-column: 2;
  margin-left: -82px;
  margin-right: 0;
}

.join-strength-panel.reverse .join-strength-copy {
  grid-column: 1;
  grid-row: 1;
}

.join-strength-panel figure {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 600px;
  overflow: hidden;
  margin-right: -82px;
}

.join-strength-panel figure img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.join-strength-panel figure[data-reveal] {
  transform: translate3d(0, 26px, 0);
  clip-path: inset(0 18% 0 0);
}

.join-strength-panel.reverse figure[data-reveal] {
  clip-path: inset(0 0 0 18%);
}

.join-strength-panel figure[data-reveal] img {
  transform: scale(1.08);
  transition: transform 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.join-strength-panel figure[data-reveal].is-visible img {
  transform: scale(1);
}

.join-strength-panel figure[data-reveal].is-visible {
  clip-path: inset(0 0 0 0);
}

.join-strength-panel .join-strength-copy em[data-reveal] {
  transform: translate3d(-18px, 18px, 0);
}

.join-strength-panel .join-strength-copy h3[data-reveal] {
  transform: translate3d(0, 42px, 0);
}

.join-strength-panel .join-strength-copy i[data-reveal] {
  transform: scaleX(0);
  transform-origin: left center;
  clip-path: none;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.join-strength-panel .join-strength-copy i[data-reveal].is-visible {
  transform: scaleX(1);
}

.join-strength-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  min-height: 560px;
  background: #fff;
}

.join-strength-slide.reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.join-strength-slide.reverse figure {
  grid-column: 2;
}

.join-strength-slide.reverse .join-strength-copy {
  grid-column: 1;
  grid-row: 1;
}

.join-strength-slide figure {
  margin: 0;
  min-height: 560px;
}

.join-honor-wall {
  position: relative;
  display: block;
  min-height: 560px;
  padding: clamp(42px, 4.8vw, 78px);
  background: #fff;
  isolation: isolate;
}

.join-honor-wall::before {
  content: "";
  position: absolute;
  inset: 32px;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 34%, rgba(201, 155, 99, 0.08), transparent 24%),
    radial-gradient(circle at 76% 68%, rgba(122, 31, 30, 0.05), transparent 28%);
}

.honor-card {
  position: relative;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 14px 16px;
  color: #2d302d;
  background: #fff;
  border: 1px solid rgba(23, 33, 28, 0.08);
  box-shadow: 0 18px 34px rgba(23, 33, 28, 0.1);
  transform-origin: center;
}

.honor-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 155, 99, 0.26);
  pointer-events: none;
}

.honor-card span,
.honor-card small,
.honor-card strong,
.honor-card b {
  position: relative;
  z-index: 1;
}

.honor-card span {
  color: rgba(23, 33, 28, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.honor-card small {
  margin-top: 7px;
  color: rgba(23, 33, 28, 0.48);
  font-size: 11px;
  line-height: 1.35;
}

.honor-card strong {
  margin-bottom: 10px;
  color: #7b1f1e;
  font-size: 17px;
  line-height: 1.2;
}

.honor-logo {
  top: 76px;
  left: 6%;
  width: 18%;
  min-height: 142px;
  align-items: center;
  text-align: center;
  box-shadow: none;
}

.honor-logo b {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(135deg, #d92d27, #9a1818);
  clip-path: polygon(50% 0, 90% 22%, 90% 78%, 50% 100%, 10% 78%, 10% 22%);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.honor-trophy {
  top: 84px;
  left: 25%;
  width: 12%;
  min-height: 132px;
  align-items: center;
  text-align: center;
  border: 0;
  box-shadow: none;
}

.honor-trophy b {
  width: 56px;
  height: 84px;
  margin-bottom: 10px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.35) 19% 27%, transparent 28%),
    linear-gradient(145deg, #d6b170, #8b632f);
  clip-path: polygon(26% 0, 74% 0, 66% 52%, 88% 52%, 88% 68%, 62% 68%, 62% 100%, 38% 100%, 38% 68%, 12% 68%, 12% 52%, 34% 52%);
}

.honor-blue {
  top: 74px;
  left: 39%;
  width: 17%;
  min-height: 146px;
}

.honor-plaque {
  top: 72px;
  left: 58%;
  width: 34%;
  min-height: 152px;
  color: #4a2521;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.65), transparent 20% 80%, rgba(255, 255, 255, 0.48)),
    linear-gradient(135deg, #f4c5a6, #a64539);
}

.honor-plaque::before,
.honor-certificate::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(201, 155, 99, 0.18);
}

.honor-gold {
  top: 314px;
  left: 6%;
  width: 27%;
  min-height: 128px;
}

.honor-red {
  top: 312px;
  left: 35%;
  width: 23%;
  min-height: 132px;
}

.honor-frame {
  top: 316px;
  width: 16%;
  min-height: 120px;
  border-color: rgba(107, 52, 38, 0.18);
  text-align: center;
}

.honor-frame:nth-last-child(2) {
  left: 61%;
}

.honor-frame:nth-last-child(1) {
  left: 78%;
}

.honor-gold {
  background: linear-gradient(180deg, #fffdf8, #f8ebd5);
}

.honor-red {
  background: linear-gradient(180deg, #fff, #f4ded9);
}

.honor-blue {
  background: linear-gradient(180deg, #fff, #e9eef7);
}

.join-honor-image-wall .honor-image {
  padding: 8px;
  border: 1px solid rgba(23, 33, 28, 0.12);
  background: rgba(255, 255, 255, 0.96);
  cursor: zoom-in;
}

.join-honor-image-wall .honor-image::before,
.join-honor-image-wall .honor-image::after {
  display: none;
}

.join-honor-image-wall .honor-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.join-honor-image-wall .honor-logo {
  width: 22%;
  min-height: 152px;
}

.join-honor-image-wall .honor-trophy {
  width: 16%;
  min-height: 172px;
}

.join-honor-image-wall .honor-blue {
  width: 18%;
  min-height: 158px;
}

.join-honor-image-wall .honor-plaque {
  width: 35%;
  min-height: 158px;
}

.join-honor-image-wall .honor-gold {
  top: 300px;
  width: 27%;
  min-height: 178px;
}

.join-strength-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 112px);
  background: #fff;
}

.join-strength-copy em {
  position: absolute;
  top: 42px;
  left: clamp(34px, 5vw, 80px);
  color: rgba(23, 33, 28, 0.06);
  font-family: Georgia, serif;
  font-size: clamp(140px, 12vw, 220px);
  font-style: italic;
  line-height: 0.8;
}

.join-strength-copy h3 {
  position: relative;
  margin: 0;
  color: #343434;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.38;
}

.join-strength-copy i {
  width: 62px;
  height: 3px;
  margin: 30px 0 34px;
  background: #c99b63;
}

.join-strength-copy ul {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
  color: rgba(23, 33, 28, 0.72);
  line-height: 1.9;
}

.join-strength-copy strong {
  color: #252b28;
  font-weight: 800;
}

.join-strength-metrics {
  display: flex;
  gap: 0;
  margin-top: 46px;
}

.join-strength-metrics span {
  min-width: 150px;
  padding: 0 28px;
  text-align: center;
  border-left: 1px solid rgba(23, 33, 28, 0.16);
}

.join-strength-metrics span:first-child {
  border-left: 0;
}

.join-strength-metrics b,
.join-strength-metrics small {
  display: block;
}

.join-strength-metrics b {
  color: #c99b63;
  font-size: 36px;
  line-height: 1;
}

.join-strength-metrics small {
  margin-top: 8px;
  color: rgba(23, 33, 28, 0.58);
  font-size: 14px;
}

.join-strength-controls {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(23, 33, 28, 0.62);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
}

.join-strength-controls button {
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.join-strength-controls button:hover {
  color: #c99b63;
}

.join-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -20px 0 58px;
  border-top: 1px solid rgba(23, 33, 28, 0.12);
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
  background: rgba(255, 255, 255, 0.45);
}

.join-proof-strip article {
  min-height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(23, 33, 28, 0.12);
}

.join-proof-strip article:first-child {
  border-left: 0;
}

.join-proof-strip strong {
  color: #b98545;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
}

.join-proof-strip span {
  color: rgba(23, 33, 28, 0.62);
}

.join-strength-list article {
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(0, 1.05fr);
  min-height: 430px;
  background: #fff;
}

.join-strength-list article:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
}

.join-strength-list article:nth-child(even) img {
  grid-column: 2;
}

.join-strength-list article:nth-child(even) div {
  grid-column: 1;
  grid-row: 1;
}

.join-strength-list div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
}

.join-strength-list div::before {
  content: "&";
  position: absolute;
  top: 24px;
  left: 34px;
  color: rgba(23, 33, 28, 0.05);
  font-size: 150px;
  font-family: Georgia, serif;
  line-height: 1;
}

.join-strength-list h3 {
  position: relative;
  margin: 0;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.08;
}

.join-strength-list p {
  position: relative;
  margin: 22px 0 0;
  color: rgba(23, 33, 28, 0.6);
  font-size: 17px;
  line-height: 1.9;
}

.join-promo {
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(203, 159, 97, 0.22), transparent 30%),
    linear-gradient(135deg, #0d241b, #173f2f 62%, #10291f);
}

.join-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.join-promo h2,
.join-promo p {
  color: #fff;
}

.join-promo p {
  color: rgba(255, 255, 255, 0.72);
}

.join-promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.join-promo-cards span {
  min-height: 154px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 20px;
}

.join-media-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.join-media-wall span {
  min-height: 86px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 22px;
  font-weight: 700;
}

.join-split-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}

.join-two-images {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.join-two-images img {
  height: 430px;
}

.join-advantage {
  padding-bottom: 0;
  background: #fff;
}

.join-advantage-head {
  text-align: center;
  margin-bottom: 66px;
}

.join-advantage-head h2,
.join-policy-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.08;
}

.join-advantage-head p,
.join-policy-title p {
  margin: 14px 0 0;
  color: rgba(23, 33, 28, 0.72);
  font-size: 20px;
  text-transform: uppercase;
}

.join-advantage-tabs {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
  border-right: 1px solid rgba(23, 33, 28, 0.12);
}

.join-advantage-tabs button {
  position: relative;
  min-height: 118px;
  border: 0;
  border-left: 1px solid rgba(23, 33, 28, 0.12);
  padding: 26px 18px;
  color: var(--ink);
  background: #f6f6f4;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.join-advantage-tabs button strong,
.join-advantage-tabs button small {
  display: block;
}

.join-advantage-tabs button span {
  display: none;
}

.join-advantage-tabs button strong {
  font-size: 22px;
  font-weight: 400;
}

.join-advantage-tabs button small {
  margin-top: 10px;
  color: rgba(23, 33, 28, 0.42);
  font-size: 11px;
  text-transform: uppercase;
}

.join-advantage-tabs button.active {
  min-height: 194px;
  margin-bottom: -74px;
  color: #fff;
  background: #c99c61;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 50% 100%, 0 74%);
  z-index: 2;
  transform: none;
}

.join-advantage-tabs button.active::after {
  content: "";
  position: absolute;
  inset: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.join-advantage-tabs button.active small {
  color: rgba(255, 255, 255, 0.82);
}

.join-advantage-showcase {
  margin-top: 74px;
  padding: 128px 0 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 8%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(6, 9, 9, 0.92), rgba(6, 9, 9, 0.54)),
    url("https://images.unsplash.com/photo-1614200179396-2bdb77ebf81b?auto=format&fit=crop&w=2200&q=86") center/cover;
}

.join-advantage-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.join-advantage-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.8fr);
  align-items: end;
  gap: clamp(38px, 7vw, 112px);
}

.join-advantage-copy {
  position: relative;
  min-height: 390px;
  padding: clamp(44px, 6vw, 84px);
  background: rgba(255, 255, 255, 0.96);
}

.join-advantage-copy em {
  position: absolute;
  right: 48px;
  top: 28px;
  color: rgba(23, 33, 28, 0.06);
  font-family: Georgia, serif;
  font-size: clamp(92px, 10vw, 150px);
  font-style: normal;
  line-height: 1;
}

.join-advantage-copy h3 {
  position: relative;
  margin: 70px 0 34px;
  color: var(--ink);
  font-size: clamp(36px, 4.5vw, 66px);
  line-height: 1.08;
}

.join-advantage-copy p {
  position: relative;
  max-width: 720px;
  margin: 0;
  color: rgba(23, 33, 28, 0.62);
  font-size: 18px;
  line-height: 2;
}

.join-advantage-arrows {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.join-advantage-arrows button {
  width: 36px;
  height: 36px;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.24s ease, transform 0.24s ease;
}

.join-advantage-arrows button:hover {
  color: #bd8950;
  transform: translateX(3px);
}

.join-advantage-arrows button:first-child:hover {
  transform: translateX(-3px);
}

.join-advantage-arrows i {
  width: 1px;
  height: 24px;
  background: rgba(23, 33, 28, 0.26);
}

.join-advantage-slide figure {
  height: 390px;
  margin: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(64px);
}

.join-policy {
  background: #f0f0ee;
}

.join-policy-title {
  text-align: center;
  margin-bottom: 56px;
}

.join-policy-title > span {
  display: block;
  width: 86px;
  height: 2px;
  margin: 0 auto 18px;
  background: #bd8950;
}

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

.join-policy-grid article {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 34px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.join-policy-grid article:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 26px 70px rgba(23, 33, 28, 0.12);
}

.join-policy-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #343b37;
  border: 3px solid currentColor;
  border-radius: 18px;
  font-size: 32px;
  font-weight: 800;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s ease;
  transform-style: preserve-3d;
}

.join-policy-grid article:hover .join-policy-icon {
  color: #bd8950;
  transform: rotateY(180deg) rotate(-8deg) scale(1.05);
}

.join-policy-grid h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
}

.join-policy-grid p {
  max-width: 245px;
  margin: 0;
  color: rgba(23, 33, 28, 0.66);
  font-size: 15px;
  line-height: 1.9;
}

.join-cooperate {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 12% 10%, rgba(201, 155, 99, 0.08), transparent 28%);
}

.join-cooperate::before,
.join-cooperate::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 620px;
  border: 1px solid rgba(23, 33, 28, 0.06);
  transform: rotate(28deg);
  pointer-events: none;
}

.join-cooperate::before {
  top: -230px;
  left: -210px;
}

.join-cooperate::after {
  right: -180px;
  bottom: -260px;
}

.join-cooperate-head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(44px, 6vw, 72px);
  text-align: center;
}

.join-cooperate-head h2 {
  margin: 0;
  color: #252b28;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.join-cooperate-head p {
  margin: 18px auto 0;
  color: rgba(23, 33, 28, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.join-cooperate-scene {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 0.7fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.join-cooperate-main {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
}

.join-cooperate-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.join-cooperate-main[data-reveal],
.join-cooperate-side img[data-reveal] {
  overflow: hidden;
  transform: translate3d(0, 30px, 0);
  clip-path: inset(0 0 24% 0);
}

.join-cooperate-main[data-reveal] img,
.join-cooperate-side img[data-reveal] {
  transform: scale(1.08);
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.join-cooperate-main[data-reveal].is-visible img,
.join-cooperate-side img[data-reveal].is-visible {
  transform: scale(1);
}

.join-cooperate-side {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.join-cooperate-side.left {
  text-align: right;
}

.join-cooperate-side.right {
  text-align: left;
}

.join-cooperate-side ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-cooperate-side li {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.16);
  color: rgba(23, 33, 28, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.join-cooperate-side.left li {
  padding-right: 24px;
}

.join-cooperate-side.right li {
  padding-left: 24px;
}

.join-cooperate-side li::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 22px;
  background: #c99b63;
  transform: translateY(-50%);
}

.join-cooperate-side.left li::after {
  right: 0;
}

.join-cooperate-side.right li::after {
  left: 0;
}

.join-cooperate-side img {
  width: clamp(150px, 14vw, 210px);
  height: 142px;
  object-fit: cover;
  display: block;
}

.join-cooperate-side.left img {
  justify-self: end;
}

.join-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(118px, 1fr));
  min-height: 430px;
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
  overflow: visible;
  background: transparent;
}

.join-process-line article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  overflow: visible;
  padding: 20px 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 20, 18, 0.52), rgba(15, 20, 18, 0.72)),
    var(--process-img) center/cover;
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.12);
}

.join-process-line::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(115deg, transparent 0 7%, rgba(23, 33, 28, 0.2) 7% 16%, transparent 16% 18%),
    linear-gradient(245deg, transparent 0 7%, rgba(23, 33, 28, 0.2) 7% 16%, transparent 16% 18%);
  background-size: 25% 100%;
  opacity: 0.72;
}

.join-process-line article:nth-child(odd) {
  align-self: end;
  margin-bottom: 12px;
}

.join-process-line article:nth-child(even) {
  align-self: start;
  margin-top: 12px;
}

.join-process-line article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.join-process-line article::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  transform: translateX(-50%);
}

.join-process-line article:nth-child(odd)::after {
  top: -1px;
  border-top: 12px solid #fff;
}

.join-process-line article:nth-child(even)::after {
  bottom: -1px;
  border-bottom: 12px solid #fff;
}

.join-process-line article.gold {
  background: linear-gradient(135deg, #c99b63, #bd8c4d);
}

.join-process-line article.gold::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(78, 48, 23, 0.12));
}

.join-process-line article.gold::after {
  border-top-color: #c99b63;
  border-bottom-color: #c99b63;
}

.join-process-line em {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c99b63;
  box-shadow: 0 0 0 4px #fff;
  transform: translateX(-50%);
}

.join-process-line article:nth-child(odd) em {
  top: -72px;
}

.join-process-line article:nth-child(even) em {
  bottom: -72px;
}

.join-process-line b {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.join-process-line i {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.86);
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

.join-process-line span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
}

.join-apply {
  color: #fff;
  padding-top: clamp(56px, 6vw, 92px);
  padding-bottom: clamp(56px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(12, 35, 26, 0.94), rgba(12, 35, 26, 0.72)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=2200&q=86") center/cover;
}

.join-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.join-apply h2,
.join-apply p {
  color: #fff;
}

.join-apply p {
  color: rgba(255, 255, 255, 0.72);
}

.join-apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  padding: clamp(24px, 3.2vw, 40px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.join-apply-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.join-apply-form label:nth-child(4) {
  grid-column: 1 / -1;
}

.join-apply-form input,
.join-apply-form textarea {
  width: 100%;
  border: 0;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.join-apply-form textarea {
  min-height: 108px;
  resize: vertical;
}

.join-apply-form button {
  grid-column: 1 / -1;
  border: 0;
  padding: 15px 24px;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

.product-center-main {
  padding-top: clamp(48px, 6vw, 84px);
}

.product-filter {
  display: grid;
  margin: -10px 0 48px;
  border-top: 1px solid rgba(23, 33, 28, 0.08);
  border-bottom: 1px solid rgba(23, 33, 28, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 62px;
  border-bottom: 1px dashed rgba(23, 33, 28, 0.1);
}

.filter-row:last-child {
  border-bottom: 0;
}

.filter-row strong {
  display: flex;
  align-items: center;
  flex: 0 0 116px;
  padding: 0 22px;
  color: rgba(23, 33, 28, 0.72);
  background: rgba(23, 33, 28, 0.045);
  font-size: 14px;
  font-weight: 700;
}

.filter-row a {
  align-self: center;
  display: inline-flex;
  margin: 0 14px;
  color: rgba(23, 33, 28, 0.72);
  font-size: 14px;
  transition:
    color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-row a:hover,
.filter-row a.active {
  color: #b98949;
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 16px;
}

.product-grid.reference-grid {
  grid-template-columns: repeat(2, minmax(0, 500px));
  grid-auto-rows: auto;
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  justify-content: center;
}

.product-tile {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 116px;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: #eef0ec;
  box-shadow:
    0 24px 70px rgba(23, 33, 28, 0.1),
    inset 0 0 0 1px rgba(23, 33, 28, 0.06);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(90deg, rgba(31, 93, 68, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile:hover {
  transform: translateY(-8px);
  box-shadow:
    0 34px 90px rgba(23, 33, 28, 0.16),
    inset 0 0 0 1px rgba(31, 93, 68, 0.12);
}

.product-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.product-tile:hover::after {
  opacity: 1;
}

.product-tile-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-content: center;
  column-gap: 18px;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 241, 236, 0.96));
}

.product-tile span {
  position: static;
  grid-column: 1;
  color: rgba(31, 93, 68, 0.68);
  font-family:
    "Consolas",
    "SFMono-Regular",
    monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tile strong {
  position: static;
  grid-column: 1;
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.product-tile small {
  grid-column: 1;
  margin-top: 9px;
  color: rgba(23, 33, 28, 0.54);
  font-size: 14px;
}

.product-tile i {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 33, 28, 0.26);
  color: var(--forest);
  font-style: normal;
  font-size: 20px;
  transition:
    background 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile:hover i {
  color: #fff;
  background: var(--forest);
  transform: rotate(90deg);
}

.product-tile.tall {
  grid-row: span 2;
}

.product-tile.wide {
  grid-column: span 2;
}

/* Fixed media frames: content images must not resize layouts based on source ratio. */
.hero-slide img,
.about-lite-image img,
.product-featured-image img,
.product-tile img,
.dx-main-image img,
.dx-thumbs img,
.dx-quality-card img,
.dx-craft-img img,
.dx-scene img,
.dx-hot-card img,
.home-scene-card img,
.news-card-image img,
.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid.reference-grid .product-tile {
  width: min(100%, 500px);
  height: 650px;
  justify-self: center;
  grid-template-rows: minmax(0, 1fr) 132px;
}

.product-featured-image {
  height: 430px;
  min-height: 0;
}

.dx-gallery {
  min-height: 0;
  height: 560px;
}

.dx-main-image {
  height: 560px;
}

.product-awning-detail .dx-gallery,
.product-pavilion-detail .dx-gallery,
.product-awning-detail .dx-main-image,
.product-pavilion-detail .dx-main-image {
  height: 560px;
}

.home-scene-card {
  height: 560px;
  min-height: 0;
}

.home-scene-card.large {
  height: 560px;
  min-height: 0;
}

.case-gallery img {
  height: 340px;
}

.dx-hot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dx-hot-card {
  display: grid;
  grid-template-rows: 230px auto;
  overflow: hidden;
  background: #f0f2ee;
}

.dx-hot-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.dx-hot-card strong {
  display: block;
  min-height: 68px;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  background: #f0f2ee;
}

.more-row {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.product-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fbfcf8 0%, #fbfcf8 48%, #eef4ee 48%, #eef4ee 100%);
}

.product-feature.reverse {
  grid-template-columns: minmax(560px, 1.18fr) minmax(360px, 0.82fr);
  background:
    linear-gradient(90deg, #eef4ee 0%, #eef4ee 52%, #fbfcf8 52%, #fbfcf8 100%);
}

.product-feature .product-feature-image {
  grid-column: 2;
  grid-row: 1;
}

.product-feature .product-feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.product-feature.reverse .product-feature-image {
  grid-column: 1;
  grid-row: 1;
}

.product-feature.reverse .product-feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.product-feature-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 96px) clamp(28px, 5vw, 72px);
}

.product-feature-copy::after {
  content: "";
  width: min(100%, 520px);
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(23, 33, 28, 0.18), transparent);
}

.product-feature-copy span {
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid rgba(31, 93, 68, 0.28);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(31, 93, 68, 0.05);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-feature-copy p {
  margin: 24px 0 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.product-feature-copy h2 {
  margin: 0;
  max-width: 540px;
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1.18;
  font-weight: 800;
}

.product-feature-copy ul {
  width: min(100%, 560px);
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.product-feature-copy li {
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}

.product-feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
}

.product-feature-copy a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  min-height: 54px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #245f46, #173b2d);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(31, 93, 68, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.product-feature-copy a::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 50%;
  opacity: 0.9;
}

.product-feature-copy a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.product-feature-copy a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(31, 93, 68, 0.3);
}

.product-feature-copy a:hover::before {
  transform: translateX(120%);
}

.product-feature-image {
  position: relative;
  z-index: 2;
  width: calc(100% - clamp(38px, 5vw, 92px));
  height: min(590px, calc(100% - 124px));
  margin: auto clamp(34px, 5vw, 82px) auto 0;
  isolation: isolate;
  box-shadow: 0 34px 90px rgba(18, 30, 24, 0.18);
}

.product-feature.reverse .product-feature-image {
  margin: auto 0 auto clamp(34px, 5vw, 82px);
}

.product-feature-image::before,
.product-feature-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.product-feature-image::before {
  left: 46%;
  right: -48px;
  top: -34px;
  height: 118px;
  border-radius: 34px 34px 0 34px;
  background:
    linear-gradient(135deg, #2b7656 0%, #1f5d44 48%, #103829 100%),
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.35), transparent 30%);
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    0 26px 70px rgba(31, 93, 68, 0.2);
}

.product-feature-image::after {
  left: 34%;
  right: -48px;
  bottom: -34px;
  height: 64px;
  border-radius: 34px 0 26px 0;
  background:
    linear-gradient(90deg, #d0a35d 0%, #6f865d 28%, #245f46 58%, #10251c 100%);
  opacity: 0.96;
}

.product-feature.reverse .product-feature-image::before {
  left: -48px;
  right: 46%;
  border-radius: 34px 34px 34px 0;
}

.product-feature.reverse .product-feature-image::after {
  left: -48px;
  right: 34%;
  border-radius: 0 34px 0 26px;
}

.product-feature-image img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.series-ribbon {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -58px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.12;
  writing-mode: vertical-rl;
  text-shadow: none;
  transform: translateY(-50%);
}

.series-ribbon::after {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  background: rgba(23, 33, 28, 0.28);
}

.product-feature.reverse .series-ribbon {
  left: -58px;
  right: auto;
}

.featured {
  background: var(--paper);
}

.featured-panel {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 680px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest-dark);
  color: #fff;
}

.featured-copy {
  padding: clamp(38px, 5.5vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-copy .section-kicker,
.featured-copy .series {
  color: rgba(255, 255, 255, 0.72);
}

.featured-copy p,
.featured-copy li {
  color: rgba(255, 255, 255, 0.76);
}

.featured-copy p {
  margin-top: 24px;
}

.featured-copy ul {
  margin: 32px 0 36px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.featured-copy li {
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.featured-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.cases {
  background: var(--surface);
}

.news {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfcf8 0%, #f2f5ef 100%);
}

.news::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--line);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.news-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.98;
}

.home-page .news-heading h2 {
  font-size: 30px;
  line-height: 1.2;
}

.news-controls {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 12px;
  color: var(--forest);
  font-weight: 800;
}

.news-controls span {
  color: rgba(23, 33, 28, 0.48);
  letter-spacing: 0.08em;
}

.news-controls a {
  position: relative;
  color: var(--forest);
}

.news-controls a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.news-controls a:hover::after {
  transform: scaleX(1);
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 30px);
}

.news-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.news-card-image {
  position: relative;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 58px rgba(18, 30, 24, 0.12);
}

.news-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.16)),
    linear-gradient(90deg, rgba(31, 93, 68, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.news-card-image img {
  transition:
    transform 0.75s ease,
    filter 0.75s ease;
}

.news-card:hover .news-card-image::after {
  opacity: 1;
}

.news-card:hover .news-card-image img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.news-card-body {
  padding: 34px 0 0;
}

.news-card time {
  display: block;
  margin-bottom: 18px;
  color: var(--forest);
  font-family:
    "Consolas",
    "SFMono-Regular",
    monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.news-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.35;
}

.news-card.is-featured h3 {
  color: var(--forest);
}

.news-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.news-card-body span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 800;
}

.news-card-body span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 0.22s ease;
}

.news-card:hover .news-card-body span::after {
  width: 52px;
}

.news-index {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 54px;
}

.news-index button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

.news-index button.active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.join {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(208, 163, 93, 0.18), transparent 24%),
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.09), transparent 22%),
    linear-gradient(135deg, #173f2f 0%, #0f2d23 54%, #081713 100%);
  color: #fff;
}

.join::before {
  content: "SHANGPIN FOREST";
  position: absolute;
  left: 50%;
  bottom: -0.14em;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(76px, 12vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.join::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.join .container {
  position: relative;
  z-index: 2;
}

.join .section-title {
  max-width: 660px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.join .section-kicker,
.join .section-title p {
  color: rgba(255, 255, 255, 0.84);
}

.join .section-title h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(860px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.join-grid article {
  position: relative;
  min-height: 138px;
  padding: 28px clamp(20px, 2.4vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.join-grid article::before {
  content: "";
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(208, 163, 93, 0.35), rgba(255, 255, 255, 0.82), rgba(208, 163, 93, 0.35));
}

.join-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.join-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(20px, 1.85vw, 27px);
  line-height: 1.2;
}

.join-grid p {
  margin: 0;
  max-width: 210px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.appointment {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  display: grid;
  align-items: center;
  padding: 110px 0;
}

.appointment-bg,
.appointment-bg::after {
  position: absolute;
  inset: 0;
}

.appointment-bg::after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.28));
}

.appointment-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.appointment-content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.appointment-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.appointment-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.appointment-form input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  outline: none;
}

.appointment-form input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.appointment-form input:focus {
  border-color: #fff;
}

.measure-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 18, 12, 0.68);
}

.measure-modal.is-open {
  display: flex;
}

.measure-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 8px;
  background: #f8f4ea;
  color: #17251b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.measure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  padding: 28px;
}

.measure-main {
  min-width: 0;
}

.measure-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(35, 53, 39, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--forest-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.measure-head {
  padding: 0;
}

.measure-head h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
}

.measure-head p:not(.section-kicker) {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(23, 37, 27, 0.68);
  line-height: 1.75;
}

.measure-form {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.measure-form label {
  color: rgba(23, 37, 27, 0.76);
}

.measure-form input,
.measure-form select,
.measure-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 53, 39, 0.18);
  border-radius: 6px;
  background: #fff;
  color: #17251b;
  outline: none;
}

.measure-form input,
.measure-form select {
  height: 50px;
  padding: 0 15px;
}

.measure-form textarea {
  min-height: 76px;
  resize: vertical;
  padding: 14px 15px;
}

.measure-form input::placeholder,
.measure-form textarea::placeholder {
  color: rgba(23, 37, 27, 0.38);
}

.measure-form input:focus,
.measure-form select:focus,
.measure-form textarea:focus {
  border-color: var(--forest);
}

.measure-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.measure-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.measure-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 12px;
  padding: 22px 18px;
  border: 1px solid rgba(35, 53, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.measure-service span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.measure-service img {
  width: 152px;
  height: 152px;
  object-fit: contain;
  border: 1px solid rgba(35, 53, 39, 0.12);
  background: #fff;
}

.measure-service strong {
  color: #17251b;
  font-size: 24px;
}

.measure-service p {
  margin: 0;
  color: rgba(23, 37, 27, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.measure-service a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

.service-float {
  position: fixed;
  right: 16px;
  bottom: 154px;
  z-index: 85;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.service-float-button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #0f2419;
  box-shadow: 0 16px 38px rgba(17, 53, 39, 0.26);
  cursor: pointer;
  overflow: hidden;
}

.service-float-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-float-card {
  position: absolute;
  right: 64px;
  bottom: 0;
  width: 178px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(23, 33, 28, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.18);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-float:hover .service-float-card,
.service-float:focus-within .service-float-card {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.service-float-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.service-float-card strong {
  color: #17251b;
  font-size: 18px;
}

.service-float-card small {
  color: rgba(23, 37, 27, 0.62);
}

.site-footer {
  padding: 70px 0 26px;
  background: #111912;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(120px, 1fr));
  gap: 34px;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 22px;
  color: #fff !important;
}

.footer-brand img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
}

.site-footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer h4 {
  margin: 0 0 18px;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-phone {
  display: block;
  margin: 0 0 18px;
  font-size: 28px;
}

.site-friend-links {
  width: min(1380px, calc(100% - 48px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-friend-links h4 {
  margin: 0 0 14px;
  font-size: 15px;
  color: #fff;
}

.site-friend-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-friend-link-list a {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.site-friend-link-list a:hover {
  color: #fff;
}

.site-friend-links + .footer-bottom {
  margin-top: 28px;
}

.footer-bottom {
  width: min(1380px, calc(100% - 48px));
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.floating-contact {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}

.floating-contact a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 16px 40px rgba(17, 53, 39, 0.24);
  font-size: 13px;
  font-weight: 800;
}

.lead-bar {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 260px minmax(0, 820px) 34px;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 13px 26px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 18, 14, 0.98), rgba(22, 50, 38, 0.96) 45%, rgba(8, 18, 14, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(208, 163, 93, 0.18), transparent 24%);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.22);
}

.lead-bar.is-hidden {
  display: none;
}

.lead-brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
  white-space: nowrap;
}

.lead-brand img {
  display: block;
  width: 178px;
  height: auto;
  object-fit: contain;
}

.lead-form {
  display: grid;
  gap: 8px;
}

.lead-form p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  text-align: center;
}

.lead-form p strong {
  color: #d0a35d;
}

.lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 8px;
}

.lead-fields input {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  outline: none;
}

.lead-fields input:focus {
  border-color: #d0a35d;
}

.lead-fields button {
  height: 42px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(135deg, #245f46, #123d2b);
  font-weight: 900;
  cursor: pointer;
}

.lead-close {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  clip-path: inset(0 0 24% 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, clip-path;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0);
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

@media (max-width: 1080px) {
  body {
    padding-bottom: 142px;
  }

  .desktop-nav,
  .shop-link {
    display: none;
  }

  .site-header {
    height: 78px;
    grid-template-columns: auto 1fr auto;
  }

  .site-header .brand {
    min-width: 220px;
    height: 56px;
  }

  .site-header .brand::before {
    width: 220px;
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 34px 28px;
    background: rgba(246, 247, 242, 0.96);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
  }

  .site-header.menu-open .mobile-nav {
    display: grid;
    gap: 18px;
  }

  .about-grid,
  .about-lite-grid,
  .custom-system-grid,
  .system-modern-grid,
  .system-layout,
  .philosophy-grid,
  .product-feature,
  .product-feature.reverse,
  .featured-panel,
  .appointment-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .system-menu {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .system-card {
    grid-template-columns: 1fr;
  }

  .system-card img {
    min-height: 360px;
  }

  .featured-panel {
    min-height: 0;
  }

  .featured-image {
    min-height: 460px;
  }

  .product-feature .product-feature-image,
  .product-feature .product-feature-copy,
  .product-feature.reverse .product-feature-image,
  .product-feature.reverse .product-feature-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .product-feature,
  .product-feature.reverse {
    min-height: auto;
    background: #fbfcf8;
  }

  .product-feature-image {
    width: min(100% - 64px, 820px);
    height: 520px;
    min-height: 420px;
    margin: 42px auto 72px;
  }

  .product-feature.reverse .product-feature-image {
    margin: 42px auto 72px;
  }

  .product-feature-image::before,
  .product-feature.reverse .product-feature-image::before {
    left: 42%;
    right: -34px;
    top: -26px;
    height: 92px;
    border-radius: 28px 28px 0 28px;
  }

  .product-feature.reverse .product-feature-image::before {
    left: -34px;
    right: 42%;
    border-radius: 28px 28px 28px 0;
  }

  .product-feature-image::after,
  .product-feature.reverse .product-feature-image::after {
    left: 32%;
    right: -34px;
    bottom: -28px;
    height: 54px;
    border-radius: 28px 0 22px 0;
  }

  .series-ribbon,
  .product-feature.reverse .series-ribbon {
    right: -32px;
    left: auto;
    font-size: 22px;
  }

  .product-feature.reverse .series-ribbon {
    left: -32px;
    right: auto;
  }

  .custom-system {
    min-height: auto;
    padding: 96px 0 108px;
  }

  .custom-system-copy {
    max-width: none;
  }

  .orbit-stage {
    width: min(580px, 100%);
    --orbit-label-width: 88px;
    margin: 22px auto 0;
  }

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

  .lead-bar {
    grid-template-columns: 1fr 32px;
    gap: 14px;
    min-height: 142px;
  }

  .lead-brand {
    grid-column: 1;
  }

  .lead-form {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .lead-close {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 218px;
  }

  .container,
  .wide-media,
  .featured-panel,
  .footer-bottom {
    width: min(100% - 32px, 1380px);
  }

  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .site-header .brand {
    min-width: 170px;
    height: 42px;
  }

  .site-header .brand::before {
    width: 170px;
    height: 40px;
  }

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

  .brand small {
    display: none;
  }

  .about-lite-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .about-lite-copy h2 span:last-child {
    margin-left: 0;
  }

  .about-lite-lead {
    font-size: 20px !important;
  }

  .primary-link {
    display: none;
  }

  .mobile-nav {
    top: 68px;
    padding: 18px 18px 26px;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    margin-left: 16px;
    padding-top: 160px;
  }

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

  .hero-pager {
    left: 16px;
    right: auto;
    bottom: 28px;
  }

  .stats-row,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .join-grid {
    width: min(100%, 420px);
    border-radius: 18px;
  }

  .join-grid article {
    min-height: 108px;
    padding: 24px 20px;
  }

  .join-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

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

  .product-page-hero {
    padding: 126px 0 62px;
  }

  .product-image-hero {
    height: 360px;
    padding: 0;
    margin-top: 68px;
  }

  .product-page-hero h1 {
    font-size: 48px;
  }

  .product-featured-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .detail-hero-grid,
  .detail-craft-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    padding: 112px 0 46px;
  }

  .detail-hero-image {
    min-height: 360px;
  }

  .detail-section-head,
  .detail-system-grid,
  .detail-scenario-grid,
  .recommend-links {
    grid-template-columns: 1fr;
  }

  .detail-section-head {
    align-items: start;
  }

  .dx-detail {
    padding-top: 86px;
  }

  .dx-hero,
  .dx-gallery,
  .dx-craft-item,
  .dx-craft-item:nth-child(even),
  .dx-six-grid,
  .dx-quality-grid,
  .dx-colors,
  .dx-scenes,
  .dx-hot-grid {
    grid-template-columns: 1fr;
  }

  .dx-gallery {
    min-height: auto;
  }

  .dx-thumbs {
    display: none;
  }

  .dx-main-image {
    height: 360px;
  }

  .dx-scenes {
    width: 100%;
  }

  .dx-summary {
    padding: 30px 22px;
  }

  .dx-title {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 46px;
    padding-bottom: 28px;
  }

  .dx-title h2 {
    overflow-wrap: anywhere;
  }

  .dx-title small {
    display: block;
    margin: 8px 0 0;
    font-size: 15px;
   }

  .dx-six-grid article {
    min-height: 132px;
  }

  .dx-quality-card img {
    height: 320px;
  }

  .dx-color-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
    justify-items: center;
  }

  .dx-color-row > strong {
    grid-column: 1 / -1;
    justify-self: start;
    font-size: 22px;
  }

  .dx-swatch {
    width: 92px;
    height: 92px;
  }

  .join-hero {
    min-height: 520px;
  }

  .join-hero-content {
    padding: 142px 0 64px;
  }

  .join-hero-content h1 {
    font-size: clamp(62px, 17vw, 76px);
  }

  .join-hero-content p {
    max-width: 94%;
    font-size: 17px;
    line-height: 1.85;
  }

  .join-anchor {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 14px 18px;
    white-space: nowrap;
  }

  .join-section-head,
  .join-market-grid,
  .join-strength-list article,
  .join-strength-list article:nth-child(even),
  .join-promo-grid,
  .join-two-images,
  .join-policy-grid,
  .join-cooperate-scene,
  .join-cooperate-grid,
  .join-apply-grid,
  .join-apply-form {
    grid-template-columns: 1fr;
  }

  .join-section-head {
    gap: 14px;
  }

  .join-page .container,
  .join-section-head,
  .join-market-grid,
  .join-market-copy,
  .join-stat-panel,
  .join-strength-list,
  .join-promo-grid,
  .join-cooperate-scene,
  .join-cooperate-grid,
  .join-apply-grid {
    min-width: 0;
    max-width: 100%;
  }

  .join-section-head h2,
  .join-market-copy h3,
  .join-hero-content h1,
  .join-promo h2,
  .join-cooperate h2,
  .join-apply h2 {
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: balance;
  }

  .join-page p,
  .join-page li,
  .join-page span,
  .join-page strong,
  .join-page small {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .join-hero-content p,
  .join-market-copy p,
  .join-promo p,
  .join-cooperate p,
  .join-apply p {
    max-width: 100%;
  }

  .join-anchor,
  .join-stat-panel,
  .join-promo-cards,
  .join-process-line {
    max-width: 100vw;
  }

  .join-section-head h2,
  .join-split-title h2,
  .join-promo h2,
  .join-cooperate h2,
  .join-apply h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .join-market-copy h3 {
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
  }

  .join-market-copy {
    text-align: left;
  }

  .join-market-copy p {
    margin-left: 0;
    margin-right: 0;
  }

  .join-strength-list article:nth-child(even) img,
  .join-strength-list article:nth-child(even) div {
    grid-column: auto;
    grid-row: auto;
  }

  .join-strength-slide,
  .join-strength-slide.reverse,
  .join-strength-panel,
  .join-strength-panel.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .join-strength-panel + .join-strength-panel {
    margin-top: 0;
  }

  .join-strength-slide.reverse figure,
  .join-strength-slide.reverse .join-strength-copy,
  .join-strength-panel.reverse figure,
  .join-strength-panel.reverse .join-strength-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .join-strength-slide figure,
  .join-strength-panel figure {
    margin-left: 0;
    margin-right: 0;
    min-height: 260px;
    height: 260px;
  }

  .join-strength-panel figure img {
    min-height: 260px;
  }

  .join-honor-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    min-height: 430px;
    padding: 22px;
    gap: 12px;
  }

  .join-strength-slide .join-honor-wall {
    height: auto;
    min-height: 430px;
  }

  .join-honor-wall .honor-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    grid-column: auto;
    min-height: 112px;
    padding: 14px;
    transform: none;
  }

  .join-honor-wall .honor-logo,
  .join-honor-wall .honor-trophy {
    min-height: 128px;
  }

  .honor-logo b {
    width: 54px;
    height: 54px;
    font-size: 17px;
  }

  .honor-trophy b {
    width: 44px;
    height: 66px;
  }

  .honor-card strong {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .honor-card span {
    font-size: 13px;
  }

  .honor-card small {
    font-size: 11px;
  }

  .join-strength-copy {
    padding: 42px 24px 92px;
  }

  .join-strength-copy em {
    top: 24px;
    left: 18px;
    font-size: 110px;
  }

  .join-strength-copy h3 {
    font-size: 28px;
  }

  .join-strength-metrics {
    flex-wrap: wrap;
    gap: 18px;
  }

  .join-strength-metrics span {
    min-width: 92px;
    padding: 0 12px;
  }

  .join-strength-controls {
    right: 16px;
    bottom: 16px;
  }

  .join-stat-panel {
    grid-template-columns: 1fr;
  }

  .join-stat-panel article {
    min-height: 190px;
    padding: 28px;
  }

  .join-market {
    background:
      linear-gradient(90deg, rgba(246, 247, 242, 0.98), rgba(246, 247, 242, 0.94)),
      url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80") right bottom / 120% auto no-repeat;
  }

  .join-market-title {
    margin-bottom: 42px;
  }

  .join-market-title h2 {
    font-size: 38px;
  }

  .join-market-title p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.8;
  }

  .join-market .join-stat-panel {
    gap: 14px;
  }

  .join-market .join-stat-panel article {
    min-height: 210px;
    padding: 30px 26px;
  }

  .join-market .join-stat-panel small {
    font-size: 16px;
  }

  .join-market .join-stat-panel strong span {
    font-size: 64px;
  }

  .join-market .join-stat-panel strong i {
    font-size: 30px;
  }

  .join-market .join-stat-panel b {
    font-size: 18px;
  }

  .join-market-note {
    margin-top: 42px;
    font-size: 16px;
  }

  .join-proof-strip {
    grid-template-columns: 1fr;
  }

  .join-proof-strip article {
    min-height: 108px;
    border-left: 0;
    border-top: 1px solid rgba(23, 33, 28, 0.1);
  }

  .join-promo-cards,
  .join-process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 12px;
  }

  .join-process-line::before {
    display: none;
  }

  .join-process-line article,
  .join-process-line article:nth-child(odd),
  .join-process-line article:nth-child(even) {
    min-height: 138px;
    margin: 0;
    align-self: stretch;
  }

  .join-process-line article::after {
    display: none;
  }

  .join-process-line em {
    display: none;
  }

  .join-process-line b {
    top: 10px;
    left: 12px;
    font-size: 30px;
  }

  .join-process-line i {
    min-width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .join-process-line span {
    font-size: 17px;
  }

  .join-advantage-head {
    margin-bottom: 34px;
  }

  .join-advantage-tabs {
    width: calc(100% - 28px);
    display: flex;
    overflow-x: auto;
    border-right: 0;
    padding-bottom: 12px;
  }

  .join-advantage-tabs button,
  .join-advantage-tabs button.active {
    flex: 0 0 210px;
    min-height: 116px;
    margin-bottom: 0;
    clip-path: none;
  }

  .join-advantage-tabs button.active::after {
    display: none;
  }

  .join-advantage-showcase {
    margin-top: 24px;
    padding: 52px 0 72px;
  }

  .join-advantage-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .join-advantage-copy {
    min-height: auto;
    padding: 34px 24px;
  }

  .join-advantage-copy h3 {
    margin: 48px 0 20px;
    font-size: 34px;
  }

  .join-advantage-copy p {
    font-size: 16px;
  }

  .join-advantage-arrows {
    margin-top: 30px;
  }

  .join-advantage-slide figure {
    height: 250px;
    transform: none;
  }

  .join-policy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .join-policy-grid article {
    min-height: 220px;
  }

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

  .join-media-wall span {
    min-height: 64px;
    font-size: 16px;
  }

  .join-cooperate-head {
    margin-bottom: 34px;
    text-align: left;
  }

  .join-cooperate-head p {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .join-cooperate-scene {
    gap: 28px;
  }

  .join-cooperate-main {
    min-height: 320px;
  }

  .join-cooperate-main img {
    min-height: 320px;
  }

  .join-cooperate-side,
  .join-cooperate-side.left,
  .join-cooperate-side.right {
    gap: 20px;
    text-align: left;
  }

  .join-cooperate-side.left li {
    padding-left: 24px;
    padding-right: 0;
  }

  .join-cooperate-side.left li::after {
    left: 0;
    right: auto;
  }

  .join-cooperate-side img,
  .join-cooperate-side.left img {
    width: 100%;
    height: 180px;
    justify-self: stretch;
  }

  .join-two-images img {
    height: 280px;
  }

  .join-split-title {
    display: block;
  }

  .join-apply-form label:nth-child(4),
  .join-apply-form button {
    grid-column: auto;
  }

  .dx-craft-item:nth-child(even) .dx-craft-img,
  .dx-craft-item:nth-child(even) .dx-craft-text {
    grid-column: auto;
    grid-row: auto;
  }

  .dx-craft-img {
    height: 280px;
  }

  .product-featured-image {
    min-height: 280px;
  }

  .product-featured-copy {
    padding: 32px 24px 86px;
  }

  .featured-controls {
    left: 24px;
    right: auto;
    bottom: 28px;
  }

  .filter-row {
    min-height: auto;
  }

  .filter-row strong {
    flex: 0 0 100%;
    min-height: 44px;
  }

  .filter-row a {
    margin: 12px 12px 12px 0;
  }

  .custom-system {
    padding: 82px 0 88px;
  }

  .custom-system h2 {
    font-size: 34px;
  }

  .join .section-title h2 {
    font-size: 38px;
  }

  .orbit-stage {
    width: min(100%, 430px);
    --orbit-node-size: 52px;
    --orbit-label-width: 68px;
    --orbit-gap: 8px;
    margin-top: 34px;
  }

  .orbit-ring-outer {
    inset: -2%;
  }

  .core-sphere {
    width: 144px;
  }

  .core-sphere strong {
    font-size: 24px;
  }

  .orbit-track {
    inset: 7%;
  }

  .node-region {
    --node-y: 0%;
  }

  .node-home {
    --node-x: 97.6%;
    --node-y: 34.6%;
  }

  .node-product {
    --node-x: 79.4%;
    --node-y: 90.5%;
  }

  .node-scene {
    --node-x: 12.8%;
    --node-y: 83.5%;
  }

  .node-service {
    --node-x: 6.7%;
    --node-y: 25%;
  }

  .node-dot {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .orbit-node strong {
    min-width: 0;
    padding: 0;
    font-size: 14px;
  }

  .wide-media,
  .philosophy-media {
    height: 390px;
  }

  .system-menu {
    grid-template-columns: repeat(5, 126px);
  }

  .product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .product-grid.reference-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .product-grid.reference-grid .product-tile {
    width: 100%;
    height: min(650px, calc((100vw - 48px) * 1.3));
    min-height: 520px;
  }

  .product-tile.tall,
  .product-tile.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .product-feature-copy {
    padding: 56px 24px 24px;
  }

  .product-feature-copy h2 {
    font-size: 30px;
  }

  .product-feature-copy a {
    width: 164px;
    min-height: 50px;
  }

  .product-feature-image {
    width: calc(100% - 40px);
    height: 360px;
    min-height: 360px;
    margin: 30px auto 58px;
  }

  .product-feature.reverse .product-feature-image {
    margin: 30px auto 58px;
  }

  .product-feature-image::before,
  .product-feature.reverse .product-feature-image::before {
    left: 42%;
    right: -20px;
    top: -18px;
    height: 68px;
    border-radius: 22px 22px 0 22px;
  }

  .product-feature.reverse .product-feature-image::before {
    left: -20px;
    right: 42%;
    border-radius: 22px 22px 22px 0;
  }

  .product-feature-image::after,
  .product-feature.reverse .product-feature-image::after {
    left: 34%;
    right: -20px;
    bottom: -22px;
    height: 42px;
    border-radius: 22px 0 18px 0;
  }

  .series-ribbon,
  .product-feature.reverse .series-ribbon {
    right: -14px;
    left: auto;
    font-size: 16px;
    gap: 12px;
  }

  .product-feature.reverse .series-ribbon {
    left: -14px;
    right: auto;
  }

  .series-ribbon::after {
    height: 42px;
  }

  .feature-lines div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-heading {
    display: grid;
    align-items: start;
  }

  .news-controls {
    justify-content: space-between;
    padding-bottom: 0;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-card-body {
    padding-top: 22px;
  }

  .news-card h3 {
    font-size: 25px;
  }

  .news-index {
    margin-top: 38px;
  }

  .appointment {
    padding: 88px 0;
  }

  .appointment-form {
    padding: 18px;
  }

  .measure-modal {
    align-items: flex-start;
    padding: 18px 14px 150px;
    overflow: auto;
  }

  .measure-dialog {
    max-height: none;
  }

  .measure-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  .measure-head {
    padding: 0;
  }

  .measure-form {
    margin: 18px 0 0;
  }

  .measure-two {
    grid-template-columns: 1fr;
  }

  .measure-service img {
    width: 132px;
    height: 132px;
  }

  .service-float {
    right: 12px;
    bottom: 126px;
  }

  .service-float-card {
    right: 0;
    bottom: 62px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 14px;
    bottom: 228px;
  }

  .lead-bar {
    min-height: 218px;
    padding: 14px 16px;
  }

  .lead-brand {
    font-size: 17px;
  }

  .lead-form p {
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
  }

  .lead-fields {
    grid-template-columns: 1fr;
  }

  .lead-fields input,
  .lead-fields button {
    height: 40px;
  }
}

.news-page {
  background: #f5f5f2;
}

.news-inner-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #101513;
}

.news-inner-hero.detail {
  min-height: 360px;
}

.news-inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.48)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 52%);
}

.news-inner-hero img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.news-inner-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 82px;
}

.news-inner-hero-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-inner-hero-copy h1 {
  margin: 14px 0 0;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

.news-inner-list {
  padding: clamp(72px, 8vw, 118px) 0 clamp(86px, 9vw, 132px);
  background:
    linear-gradient(180deg, #fff, #f6f7f2),
    radial-gradient(circle at 82% 12%, rgba(31, 93, 68, 0.06), transparent 30%);
}

.news-list-featured {
  margin-bottom: 34px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(23, 33, 28, 0.1);
}

.news-list-featured a {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  min-height: 0;
}

.news-list-featured figure,
.news-list article figure {
  margin: 0;
  overflow: hidden;
  background: #dde0db;
}

.news-list-featured figure {
  height: clamp(300px, 34vw, 430px);
}

.news-list-featured figure img,
.news-list article figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-certificate-figure {
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(135deg, rgba(208, 163, 93, 0.18), rgba(255, 255, 255, 0.94)),
    #f0f0ee;
}

.news-certificate {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.42;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), transparent 46%),
    repeating-linear-gradient(45deg, rgba(255, 231, 130, 0.32) 0 14px, rgba(252, 215, 79, 0.16) 14px 28px),
    #f8dc65;
  border: 12px solid #6b3b31;
  box-shadow:
    0 26px 54px rgba(23, 33, 28, 0.16),
    inset 0 0 0 8px rgba(255, 246, 186, 0.72),
    inset 0 0 0 14px rgba(160, 120, 42, 0.22);
}

.news-certificate::before,
.news-certificate::after {
  content: "";
  position: absolute;
  bottom: 34px;
  width: 48px;
  height: 48px;
  border: 3px solid rgba(190, 18, 32, 0.8);
  border-radius: 50%;
}

.news-certificate::before {
  left: 30%;
}

.news-certificate::after {
  right: 30%;
}

.news-certificate small {
  color: #2d241b;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
}

.news-certificate p {
  margin: 26px 0 10px;
  color: #2d1d12;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.news-certificate span {
  color: #2d1d12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.4vw, 22px);
  letter-spacing: 0.22em;
}

.news-list-featured div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
}

.news-list-featured span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-list-featured h2 {
  max-width: 720px;
  margin: 18px 0 22px;
  color: #17211c;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.18;
}

.news-list-featured p,
.news-list article p {
  margin: 0;
  color: #667168;
  font-size: 16px;
  line-height: 1.9;
}

.news-list-featured b,
.news-list article span {
  margin-top: 32px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

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

.news-list.page-two {
  margin-top: 8px;
}

.news-list article {
  background: #fff;
  border-top: 1px solid rgba(23, 33, 28, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.news-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(23, 33, 28, 0.1);
}

.news-list article a {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  min-height: 210px;
}

.news-list article div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(28px, 4vw, 58px);
}

.news-list article h3 {
  margin: 0 0 16px;
  color: #17211c;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
}

.news-list article span {
  margin-top: 22px;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 54px;
}

.news-pagination a,
.news-pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(23, 33, 28, 0.14);
  color: #17211c;
  background: #fff;
  font-size: 14px;
}

.news-pagination a.active {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
}

.news-pagination .disabled {
  color: rgba(23, 33, 28, 0.32);
  background: transparent;
}

@media (max-width: 900px) {
  .news-list-featured a,
  .news-list article a {
    grid-template-columns: 1fr;
  }

  .news-list-featured figure,
  .news-list article figure {
    height: 280px;
  }
}

.news-detail-shell {
  padding: clamp(70px, 8vw, 118px) 0;
  background: #fff;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(44px, 6vw, 92px);
  align-items: start;
}

.news-detail-main {
  min-width: 0;
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: #7a837c;
  font-size: 14px;
}

.news-breadcrumb a:hover {
  color: var(--forest);
}

.news-detail-head {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
}

.news-detail-head p {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail-head h2 {
  max-width: 940px;
  margin: 0;
  color: #17211c;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.18;
}

.news-detail-cover {
  height: clamp(360px, 42vw, 620px);
  margin: 42px 0;
  overflow: hidden;
  background: #e7e9e4;
}

.news-detail-cover:has(.detail-certificate) {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 58px);
  height: auto;
  background: #f2f2ef;
}

.detail-certificate {
  width: min(760px, 100%);
}

.news-list-featured .news-certificate {
  width: min(100%, 470px);
}

.news-detail-content {
  max-width: 920px;
}

.news-detail-content p {
  margin: 0 0 24px;
  color: #4f5d55;
  font-size: 17px;
  line-height: 2.05;
}

.news-detail-faq,
.news-detail-related {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(23, 33, 28, 0.12);
}

.news-detail-faq h3,
.news-detail-related h3 {
  margin: 0 0 20px;
  color: #102f28;
  font-size: 24px;
  line-height: 1.35;
}

.news-detail-faq article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.1);
}

.news-detail-faq h4 {
  margin: 0 0 8px;
  color: #102f28;
  font-size: 18px;
  line-height: 1.45;
}

.news-detail-faq article p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
}

.news-detail-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-detail-related a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #102f28;
  background: #f6f7f2;
  border: 1px solid rgba(23, 33, 28, 0.12);
  font-size: 14px;
}

.news-detail-neighbor {
  display: grid;
  gap: 12px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 33, 28, 0.12);
}

.news-detail-neighbor a {
  color: #17211c;
  font-weight: 800;
}

.news-detail-neighbor a:hover {
  color: var(--forest);
}

.news-detail-neighbor a.disabled {
  color: rgba(23, 33, 28, 0.36);
  pointer-events: none;
}

.news-detail-aside {
  position: sticky;
  top: 112px;
  padding: 32px;
  background: #f6f7f2;
  border-left: 4px solid var(--forest);
}

.news-detail-aside h3 {
  margin: 0 0 22px;
  font-size: 24px;
}

.news-detail-aside div {
  display: grid;
  gap: 16px;
}

.news-detail-aside a {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.1);
  color: #4f5d55;
  font-size: 15px;
  line-height: 1.6;
}

.news-detail-aside a:hover {
  color: var(--forest);
}

@media (max-width: 980px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-aside {
    position: relative;
    top: auto;
  }
}

.home-scenes {
  background: #fff;
}

.home-concept-page .lead-bar {
  display: none;
}

.home-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
  margin-bottom: 48px;
}

.home-section-split h2 {
  margin: 0;
  color: #17211c;
  max-width: 620px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.22;
}

.home-section-split > p {
  margin: 0 0 8px;
  color: #667168;
  font-size: 17px;
  line-height: 1.72;
}

.home-section-split > p span {
  display: block;
}

.home-scene-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.home-scene-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background: #111;
}

.home-scene-card.large {
  min-height: 560px;
}

.home-scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 58%);
}

.home-scene-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.home-scene-card:hover img {
  transform: scale(1.06);
}

.home-scene-card span,
.home-scene-card strong,
.home-scene-card p {
  position: relative;
  z-index: 1;
}

.home-scene-card span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-scene-card strong {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
}

.home-scene-card p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.home-consumer-cta {
  padding: 0 0 clamp(78px, 8vw, 122px);
  background: #fff;
}

.home-consumer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 21, 16, 0.96), rgba(23, 72, 52, 0.94)),
    url("https://images.unsplash.com/photo-1600585154363-67eb9e2e2099?auto=format&fit=crop&w=1800&q=88") center / cover;
}

.home-consumer-panel .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.home-consumer-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1.08;
}

.home-consumer-panel p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.85;
}

.home-consumer-actions {
  display: grid;
  gap: 14px;
  min-width: 190px;
}

.button-ghost.dark {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .home-section-split,
  .home-consumer-panel {
    grid-template-columns: 1fr;
  }

  .home-scene-grid {
    grid-template-columns: 1fr;
  }

  .home-scene-card,
  .home-scene-card.large {
    min-height: 390px;
  }

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

@media (max-width: 640px) {
  .home-consumer-actions {
    grid-template-columns: 1fr;
  }
}

.case-detail-page {
  background: #f6f7f2;
}

.case-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.case-hero > img,
.case-hero-overlay {
  position: absolute;
  inset: 0;
}

.case-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 46%);
}

.case-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(70px, 8vw, 116px);
}

.case-hero-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-hero-copy h1 {
  max-width: min(100%, 820px);
  margin: 18px 0 24px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 1;
}

.case-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.9;
}

.case-detail {
  background: #fff;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
}

.case-facts {
  position: sticky;
  top: 112px;
  padding: 34px;
  background: #f6f7f2;
  border-left: 4px solid var(--forest);
}

.case-facts > p {
  margin: 0 0 28px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-facts dl,
.case-facts dt,
.case-facts dd {
  margin: 0;
}

.case-facts dl {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.case-facts dt {
  color: #7a837c;
  font-size: 13px;
}

.case-facts dd {
  margin-top: 8px;
  color: #17211c;
  font-weight: 800;
  line-height: 1.6;
}

.case-story h2 {
  max-width: 880px;
  margin: 0 0 30px;
  color: #17211c;
  font-size: clamp(36px, 4.4vw, 72px);
  line-height: 1.12;
}

.case-story p {
  max-width: 880px;
  margin: 0 0 24px;
  color: #56645d;
  font-size: 17px;
  line-height: 2;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.case-gallery img {
  height: clamp(260px, 28vw, 430px);
}

.case-gallery img {
  height: 340px;
}

.case-cta {
  padding: 0 0 clamp(82px, 9vw, 132px);
  background: #fff;
}

.case-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  padding: clamp(38px, 5vw, 70px);
  color: #fff;
  background: linear-gradient(135deg, #0b1d15, #1f5d44);
}

.case-cta-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
}

.case-cta-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

@media (max-width: 980px) {
  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .case-facts {
    position: relative;
    top: auto;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-cta-panel {
    display: grid;
  }
}

.about-page {
  background: #f4f4f2;
  padding-bottom: 0;
  overflow-x: hidden;
}

.about-page .lead-bar {
  display: none;
}

.about-inner-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0c1511;
}

.about-inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.4)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 48%);
}

.about-inner-hero img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.about-inner-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 106px;
}

.about-inner-hero-copy span,
.about-label {
  display: block;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-inner-hero-copy span {
  color: rgba(255, 255, 255, 0.74);
}

.about-inner-hero-copy h1 {
  margin: 16px 0 22px;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 1;
  letter-spacing: 0;
}

.about-inner-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.9;
}

.about-inner-nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 92px);
  padding: 22px 24px;
  color: #d8ddd8;
  background: #111514;
  font-size: 14px;
}

.about-inner-nav a:hover {
  color: #d0a35d;
}

.about-section {
  position: relative;
  padding: clamp(92px, 9vw, 150px) 0;
  overflow-x: clip;
}

.about-story {
  background: #f7f7f4;
}

.about-story-grid,
.about-vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.about-story-copy h2,
.about-section-title h2,
.about-vision h2,
.about-honors-head h2 {
  margin: 0;
  color: #17211c;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-story-copy h2 {
  margin-top: 18px;
}

.about-story-copy p:not(.about-label),
.about-vision-list p {
  color: #68736b;
  font-size: 16px;
  line-height: 1.95;
}

.about-story-copy p:not(.about-label) {
  margin: 24px 0 0;
}

.about-story-image {
  height: clamp(420px, 46vw, 680px);
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 26px 80px rgba(23, 33, 28, 0.16);
}

.about-history {
  min-height: 840px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 246, 243, 0.96)),
    radial-gradient(ellipse at 30% 8%, rgba(31, 93, 68, 0.08), transparent 34%);
}

.about-history-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(150deg, transparent 0 32%, rgba(255, 255, 255, 0.82) 32% 62%, transparent 62%),
    linear-gradient(24deg, transparent 0 45%, rgba(23, 33, 28, 0.05) 45% 45.5%, transparent 45.5%);
  pointer-events: none;
}

.about-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.about-section-title p,
.about-honors-head p {
  margin: 18px 0 0;
  color: #17211c;
  font-size: 15px;
}

.about-history-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.82fr);
  gap: clamp(42px, 6.8vw, 118px);
  align-items: center;
  min-height: 430px;
  overflow: hidden;
}

.about-history-image {
  height: clamp(360px, 34vw, 530px);
  margin: 0;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 24px 64px rgba(23, 33, 28, 0.13);
}

.about-history-image img,
.about-history-copy {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.about-history-stage.is-changing .about-history-image img {
  opacity: 0;
  transform: translateX(34px) scale(1.02);
}

.about-history-stage.is-changing .about-history-copy {
  opacity: 0;
  transform: translateX(-28px);
}

.about-history-copy span {
  color: #c18f58;
  font-size: clamp(68px, 5.8vw, 96px);
  font-weight: 800;
  line-height: 1;
}

.about-history-copy h3 {
  margin: 22px 0 22px;
  color: #17211c;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.15;
}

.about-history-copy p {
  margin: 0;
  color: #667168;
  font-size: 18px;
  line-height: 1.9;
}

.about-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(84px, 10vw, 150px);
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 1px;
  background: rgba(23, 33, 28, 0.14);
}

.about-timeline button {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #666d69;
  cursor: pointer;
}

.about-timeline i {
  position: relative;
  z-index: 1;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d8d8d8;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.about-timeline span {
  font-size: 18px;
}

.about-timeline button.active i {
  width: 24px;
  height: 24px;
  margin-top: -6px;
  background: #c9955f;
}

.about-timeline button.active span {
  color: #c9955f;
  font-size: 30px;
}

.about-vision {
  background: #fff;
}

.about-vision-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 4.2vw, 70px);
  align-items: start;
  overflow: hidden;
}

.about-vision-media {
  position: relative;
}

.about-vision-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(138px, 1fr));
  gap: 20px;
  align-items: start;
}

.about-vision-gallery button {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(23, 33, 28, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(23, 33, 28, 0.1);
  cursor: zoom-in;
}

.about-vision-gallery img {
  display: block;
  width: 100%;
  height: clamp(150px, 15vw, 220px);
  object-fit: contain;
  background: #fff;
}

.about-vision-media figure {
  height: clamp(360px, 43vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 28px 76px rgba(23, 33, 28, 0.15);
}

.about-vision-media img {
  transform: scale(1.04);
}

.about-vision h2 {
  margin-top: 18px;
  font-size: clamp(38px, 4.8vw, 72px);
}

.about-vision-list {
  display: grid;
  gap: 18px;
  max-width: 620px;
  justify-self: end;
}

.about-vision-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
}

.about-vision-list span {
  color: #c9955f;
  font-size: 36px;
  font-weight: 800;
}

.about-vision-list h3 {
  grid-column: 2;
  margin: 0 0 10px;
  font-size: 25px;
}

.about-vision-list p {
  grid-column: 2;
  margin: 0;
}

.about-history-image[data-reveal],
.about-vision-media[data-reveal] {
  transform: translate3d(-54px, 0, 0);
  clip-path: inset(0 18% 0 0);
}

.about-history-copy[data-reveal] {
  transform: translate3d(54px, 0, 0);
  clip-path: inset(0 0 0 18%);
}

.about-vision-list article[data-reveal] {
  transform: translate3d(54px, 0, 0);
  clip-path: inset(0 0 0 0);
}

.about-history-image[data-reveal].is-visible,
.about-history-copy[data-reveal].is-visible,
.about-vision-media[data-reveal].is-visible,
.about-vision-list article[data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0);
}

.about-history-image[data-reveal] img,
.about-vision-media[data-reveal] img {
  transform: scale(1.08);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-history-image[data-reveal].is-visible img,
.about-vision-media[data-reveal].is-visible img {
  transform: scale(1.02);
}

.about-honors {
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 242, 0.92)),
    radial-gradient(ellipse at 70% 20%, rgba(23, 33, 28, 0.06), transparent 36%);
}

.about-honors-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  overflow: hidden;
}

.about-honors-head {
  position: sticky;
  top: 112px;
}

.about-honors-head h2 {
  font-size: clamp(40px, 4.5vw, 64px);
}

.about-honor-controls {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 72px;
}

.about-honor-controls button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(23, 33, 28, 0.26);
  border-radius: 50%;
  color: #17211c;
  background: transparent;
  cursor: pointer;
}

.about-honor-controls button:hover {
  color: #fff;
  background: #17211c;
}

.about-honor-controls svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-honor-controls span {
  min-width: 54px;
  color: #17211c;
  font-size: 15px;
}

.about-honor-controls i {
  font-style: normal;
}

.about-honor-window {
  overflow: hidden;
  padding: 14px 0 86px;
}

.about-honor-track {
  display: flex;
  gap: 44px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-honor-card {
  flex: 0 0 clamp(210px, 22vw, 310px);
  height: clamp(280px, 28vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
  background: #fff;
  border: 12px solid #d8c08a;
  box-shadow:
    0 26px 42px rgba(23, 33, 28, 0.12),
    inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.about-honor-card strong {
  display: block;
  color: #b5843f;
  font-size: 24px;
  letter-spacing: 0.06em;
}

.about-honor-card h3 {
  margin: 24px 0 18px;
  font-size: 26px;
  line-height: 1.25;
}

.about-honor-card p {
  margin: 0;
  color: #667168;
  font-size: 15px;
}

.about-honor-card.white {
  border-color: #d8dde0;
  background:
    linear-gradient(135deg, rgba(23, 33, 28, 0.03), transparent 45%),
    #fff;
}

.about-honor-card.red {
  border-color: #b51f2d;
}

.about-honor-card.blue {
  border-color: #244aa6;
  background: linear-gradient(180deg, #f8fbff, #e7eefc);
}

.about-honor-card.dark {
  border-color: #33251f;
  background: linear-gradient(180deg, #fff7d8, #d0a35d);
}

.about-honor-thumb {
  padding: 12px;
  cursor: zoom-in;
}

.about-honor-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.about-honor-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 22px;
  align-items: start;
  transform: none !important;
}

.about-honor-window:has(.about-honor-gallery) {
  overflow: visible;
}

.about-honors:has(.about-honor-gallery) .about-honor-controls {
  display: none;
}

.about-honor-image-card {
  flex: none;
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  padding: 10px;
  border: 1px solid rgba(23, 33, 28, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(23, 33, 28, 0.1);
  cursor: zoom-in;
}

.about-honor-image-card img {
  display: block;
  width: 100%;
  height: clamp(150px, 16vw, 230px);
  object-fit: contain;
  background: #fff;
}

.about-honor-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 15, 12, 0.82);
}

.about-honor-lightbox[hidden] {
  display: none;
}

.about-honor-lightbox img {
  max-width: min(1180px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.about-honor-lightbox button {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.case-detail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(3, 18, 14, 0.88);
}

.case-detail-lightbox.is-open {
  display: flex;
}

.case-detail-lightbox-frame {
  max-width: min(1080px, 92vw);
  max-height: 86vh;
}

.case-detail-lightbox img,
.case-detail-lightbox video {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #081914;
  border-radius: 8px;
}

.case-detail-lightbox-close {
  position: fixed;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #102f28;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .about-story-grid,
  .about-history-stage,
  .about-vision-grid,
  .about-honors-layout {
    grid-template-columns: 1fr;
  }

  .about-honors-head {
    position: relative;
    top: auto;
  }

  .about-honor-controls {
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .about-inner-hero {
    min-height: 520px;
  }

  .about-inner-hero-copy {
    width: min(100% - 32px, 760px);
    padding-bottom: 72px;
  }

  .about-inner-hero-copy h1 {
    font-size: 58px;
  }

  .about-inner-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 28px;
    white-space: nowrap;
  }

  .about-timeline {
    gap: 0;
  }

  .about-timeline button.active span {
    font-size: 24px;
  }

  .about-timeline span {
    font-size: 15px;
  }

  .about-vision-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-vision-list h3,
  .about-vision-list p {
    grid-column: auto;
  }

  .about-vision-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .about-vision-gallery button {
    padding: 8px;
  }

  .about-vision-gallery img {
    height: 180px;
  }

  .about-history-image[data-reveal],
  .about-vision-media[data-reveal] {
    transform: translate3d(-24px, 0, 0);
  }

  .about-history-copy[data-reveal],
  .about-vision-list article[data-reveal] {
    transform: translate3d(24px, 0, 0);
  }

  .about-honor-track {
    gap: 22px;
  }

  .about-honor-card {
    flex-basis: min(74vw, 280px);
    height: 330px;
  }

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

  .about-honor-image-card {
    height: auto;
    padding: 8px;
  }

  .about-honor-image-card img {
    height: 180px;
  }
}

/* 20260612 detail polish: keep the fixed lead bar from swallowing page details. */
.case-detail-hero {
  position: relative;
  min-height: clamp(420px, 54vw, 650px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #143b2b;
}

.case-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 45, 32, 0.86), rgba(12, 45, 32, 0.44) 48%, rgba(12, 45, 32, 0.12));
  z-index: 1;
}

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

.case-detail-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 16vw, 190px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.case-detail-hero-copy span {
  display: block;
  margin-bottom: 14px;
  color: #d7b56d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-detail-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1.04;
}

.case-detail-hero-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.8;
}

.case-detail-page .dx-section:first-of-type {
  padding-top: clamp(52px, 5vw, 82px);
}

.case-detail-page .dx-section:first-of-type .dx-title {
  margin-bottom: clamp(34px, 4vw, 56px);
}

.case-detail-page .case-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  gap: clamp(24px, 3vw, 42px);
  justify-content: center;
}

.case-detail-page .case-story-card,
.case-detail-page .case-story-card:nth-child(even) {
  position: relative;
  display: block;
  width: min(100%, 500px);
  height: 650px;
  overflow: hidden;
  background: #102219;
  box-shadow:
    0 24px 70px rgba(23, 33, 28, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-detail-page .case-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 18, 13, 0.02) 0%, rgba(7, 18, 13, 0.08) 42%, rgba(7, 18, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(31, 93, 68, 0.2), transparent 48%);
  pointer-events: none;
}

.case-detail-page .case-story-card .dx-craft-img,
.case-detail-page .case-story-card:nth-child(even) .dx-craft-img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.case-detail-page .case-story-card .dx-craft-img img,
.case-detail-page .case-story-card .dx-craft-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-detail-page .case-story-card:hover .dx-craft-img img,
.case-detail-page .case-story-card:hover .dx-craft-img video {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.case-detail-page .case-story-card .dx-craft-text,
.case-detail-page .case-story-card:nth-child(even) .dx-craft-text {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  padding: 32px 34px 34px;
  color: #fff;
  background: transparent;
}

.case-detail-page .case-story-card .dx-craft-text h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.25;
}

.case-detail-page .case-story-card .dx-craft-text p {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.case-list-section {
  background: #f7f5ee;
}

.case-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  gap: clamp(24px, 3vw, 42px);
  justify-content: center;
}

.case-list-card {
  position: relative;
  display: block;
  width: min(100%, 500px);
  height: 650px;
  overflow: hidden;
  color: #17271c;
  text-decoration: none;
  background: #102219;
  box-shadow:
    0 24px 70px rgba(23, 33, 28, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-list-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 13, 0.02) 0%, rgba(7, 18, 13, 0.08) 42%, rgba(7, 18, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(31, 93, 68, 0.2), transparent 48%);
  pointer-events: none;
}

.case-list-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.case-list-card-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px 34px 34px;
}

.case-list-card span,
.case-list-card strong,
.case-list-card p {
  display: block;
  margin-right: 0;
  margin-left: 0;
}

.case-list-card span {
  color: rgba(255, 232, 190, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-list-card strong {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.25;
}

.case-list-card p {
  max-width: 390px;
  margin-top: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.dx-title h2 {
  padding-bottom: 0.08em;
  overflow: visible;
}

.home-consumer-cta {
  padding-bottom: clamp(46px, 5vw, 78px);
}

.news.section-pad {
  padding-top: clamp(58px, 6vw, 92px);
}

.lead-bar {
  min-height: 78px;
  grid-template-columns: 220px minmax(0, 760px) 30px;
  gap: 22px;
  padding: 10px 24px;
}

.lead-brand img {
  width: 158px;
}

.lead-form {
  gap: 6px;
}

.lead-form p {
  font-size: 14px;
}

.lead-fields input,
.lead-fields button {
  height: 40px;
}

.home-page .hero-pager {
  bottom: 112px;
}

.dx-detail-page:not(.case-detail-page) .dx-hero {
  padding-bottom: clamp(112px, 9vw, 150px);
}

@media (max-width: 1080px) {
  body {
    padding-bottom: 128px;
  }

  .case-list-grid {
    grid-template-columns: repeat(2, minmax(0, 500px));
  }

  .lead-bar {
    min-height: 128px;
  }
}

@media (max-width: 760px) {
  body,
  .home-page {
    padding-bottom: 140px;
  }

  .case-detail-hero {
    min-height: 520px;
  }

  .case-detail-hero::after {
    background: linear-gradient(180deg, rgba(12, 45, 32, 0.28), rgba(12, 45, 32, 0.88));
  }

  .case-detail-hero-copy {
    padding-top: 150px;
    padding-bottom: 54px;
  }

  .case-detail-page .case-story-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-page .case-story-card,
  .case-detail-page .case-story-card:nth-child(even) {
    width: 100%;
    height: min(650px, calc((100vw - 48px) * 1.3));
    min-height: 520px;
  }

  .case-detail-page .case-story-card .dx-craft-text,
  .case-detail-page .case-story-card:nth-child(even) .dx-craft-text {
    padding: 28px 24px 30px;
  }

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

  .case-list-card {
    width: 100%;
    height: min(650px, calc((100vw - 48px) * 1.3));
    min-height: 520px;
  }

  .case-list-card-body {
    padding: 28px 24px 30px;
  }

  .lead-bar {
    min-height: 134px;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 8px 12px;
    padding: 8px 16px 10px;
  }

  .lead-brand {
    display: none;
  }

  .lead-form {
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
    gap: 6px;
    padding-right: 38px;
  }

  .lead-form p {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .lead-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .lead-fields input,
  .lead-fields button {
    height: 36px;
  }

  .lead-fields input {
    min-width: 0;
    padding: 0 12px;
  }

  .lead-fields button {
    grid-column: 1 / -1;
    height: 38px;
  }

  .lead-close {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .case-detail-page .dx-section:first-of-type {
    padding-top: 44px;
  }

  .case-detail-page .dx-section:first-of-type .dx-title {
    margin-bottom: 34px;
  }

  .case-detail-page .dx-title small {
    display: none;
  }

  .case-detail-page .dx-quality-card img {
    height: 280px;
  }

  .dx-detail-page:not(.case-detail-page) .dx-hero {
    gap: 0;
    padding-bottom: 64px;
  }

  .dx-detail-page:not(.case-detail-page) .dx-gallery,
  .product-awning-detail .dx-gallery,
  .product-pavilion-detail .dx-gallery {
    height: auto;
    min-height: 0;
  }

  .dx-detail-page:not(.case-detail-page) .dx-main-image,
  .product-awning-detail .dx-main-image,
  .product-pavilion-detail .dx-main-image {
    height: 260px;
  }

  .dx-detail-page:not(.case-detail-page) .dx-summary {
    padding: 24px 20px 26px;
  }

  .dx-detail-page:not(.case-detail-page) .dx-summary h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .dx-detail-page:not(.case-detail-page) .dx-summary p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.72;
  }

  .home-consumer-cta {
    padding-bottom: 42px;
  }

  .news.section-pad {
    padding-top: 52px;
  }
}

/* News page refresh */
.news-page {
  background: #f6f1e7;
}

.news-page .news-modern-hero {
  min-height: 520px;
  color: #fff;
  background: #061a15;
}

.news-page .news-modern-hero::after {
  display: none;
}

.news-modern-hero-bg {
  position: absolute;
  inset: 0;
}

.news-modern-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
}

.news-modern-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(215, 193, 138, 0.15), transparent 28%),
    linear-gradient(90deg, rgba(6, 26, 21, 0.96) 0%, rgba(6, 26, 21, 0.78) 44%, rgba(6, 26, 21, 0.4) 76%, rgba(6, 26, 21, 0.62) 100%),
    linear-gradient(180deg, rgba(6, 26, 21, 0.08), rgba(6, 26, 21, 0.82));
}

.news-page .news-modern-hero-copy {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 0 82px;
}

.news-page .news-modern-hero-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #b9995e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.news-page .news-modern-hero-copy > span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #b9995e;
}

.news-page .news-modern-hero-copy h1 {
  max-width: 880px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.news-page .news-modern-hero-copy h1 span {
  display: block;
  margin: 12px 0 0;
  color: #e9dec8;
  font-size: 0.62em;
  letter-spacing: 0;
}

.news-page .news-modern-hero-copy h1 span::before {
  display: none;
}

.news-page .news-modern-hero-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.95;
}

.news-category-section {
  padding: 42px 0 32px;
  background: #f6f1e7;
  border-bottom: 1px solid #d8ccb7;
}

.news-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-category-row a {
  padding: 11px 17px;
  border: 1px solid #d8ccb7;
  background: #fffdf7;
  color: #102f28;
  font-size: 14px;
}

.news-category-row a.active,
.news-category-row a:hover {
  color: #fff;
  border-color: #102f28;
  background: #102f28;
}

.news-modern-list {
  padding: 96px 0;
  background: #f6f1e7;
}

.news-modern-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 46px;
}

.news-modern-head-secondary {
  margin-top: 76px;
}

.news-modern-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #b9995e;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.news-modern-head span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #b9995e;
}

.news-modern-head h2 {
  margin: 0;
  color: #102f28;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.22;
  font-weight: 700;
}

.news-modern-head p {
  max-width: 580px;
  margin: 0;
  color: #686d63;
  font-size: 15px;
  line-height: 1.85;
}

.news-page .news-modern-featured {
  max-width: 1120px;
  margin: 0 auto;
  background: #fffdf7;
  border: 1px solid #d8ccb7;
  box-shadow: none;
}

.news-page .news-modern-featured a {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  min-height: 420px;
}

.news-page .news-modern-featured figure {
  width: 100%;
  max-width: 420px;
  height: 420px;
  min-height: 420px;
  margin: 0;
}

.news-page .news-modern-featured figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .news-modern-featured div {
  min-height: 420px;
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-page .news-modern-featured div > span {
  margin: 0 0 14px;
  color: #b9995e;
  font-size: 12px;
  letter-spacing: 0.22em;
}

.news-page .news-modern-featured small {
  display: block;
  margin-bottom: 18px;
  color: #8a8172;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.news-page .news-modern-featured h2 {
  margin: 0 0 18px;
  color: #102f28;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.36;
}

.news-page .news-modern-featured p {
  margin: 0 0 26px;
  max-width: 620px;
  color: #686d63;
  font-size: 15px;
  line-height: 1.88;
}

.news-page .news-modern-featured b {
  display: inline-flex;
  width: max-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #102f28;
  color: #102f28;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.news-page .news-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
}

.news-page .news-modern-grid article {
  min-height: 250px;
  background: #fffdf7;
  border: 1px solid #d8ccb7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-page .news-modern-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(6, 26, 21, 0.1);
}

.news-page .news-modern-grid article a {
  display: block;
  min-height: 250px;
}

.news-page .news-modern-grid article div {
  min-height: 250px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.news-page .news-modern-grid time {
  display: block;
  margin-bottom: 18px;
  color: #b9995e;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.news-page .news-modern-grid h3 {
  margin: 0 0 14px;
  color: #102f28;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}

.news-page .news-modern-grid p {
  margin: 0;
  color: #686d63;
  font-size: 14px;
  line-height: 1.72;
}

.news-page .news-modern-grid span {
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 4px;
  color: #102f28;
  border-bottom: 1px solid #102f28;
  font-size: 14px;
  font-weight: 700;
}

.news-modern-cta {
  padding: 86px 0;
  color: #fff;
  background: #102f28;
}

.news-modern-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.news-modern-cta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #d7c18a;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.news-modern-cta span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #d7c18a;
}

.news-modern-cta h2 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.28;
}

.news-modern-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.88;
}

.news-modern-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #b9995e;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
}

@media (max-width: 1060px) {
  .news-page .news-modern-hero {
    min-height: auto;
  }

  .news-page .news-modern-hero-copy {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .news-page .news-modern-hero-copy h1 {
    font-size: 40px;
  }

  .news-page .news-modern-hero-copy p {
    font-size: 15px;
  }

  .news-category-section {
    padding: 26px 0 22px;
  }

  .news-category-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .news-category-row a {
    white-space: nowrap;
    font-size: 13px;
  }

  .news-modern-list {
    padding: 72px 0;
  }

  .news-modern-head {
    display: block;
    margin-bottom: 30px;
  }

  .news-modern-head p {
    margin-top: 16px;
  }

  .news-page .news-modern-featured a {
    grid-template-columns: 1fr;
  }

  .news-page .news-modern-featured figure {
    max-width: none;
    height: 300px;
    min-height: 300px;
  }

  .news-page .news-modern-featured div {
    min-height: auto;
    padding: 28px 22px;
  }

  .news-page .news-modern-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-page .news-modern-grid article,
  .news-page .news-modern-grid article a,
  .news-page .news-modern-grid article div {
    min-height: auto;
  }

  .news-modern-cta {
    padding: 64px 0;
  }

  .news-modern-cta-box {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .news-modern-cta a {
    width: 100%;
  }
}
