:root {
  --forest: #00523f;
  --forest-deep: #004131;
  --forest-dark: #003326;
  --wood: #b7926d;
  --wood-dark: #9a7757;
  --ink-strong: #151515;
  --header-height: 142px;
}

body {
  color: var(--ink-strong);
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 10px 36px rgba(24, 24, 24, 0.08);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.topbar {
  background: linear-gradient(90deg, var(--forest-deep), var(--forest-dark));
  color: #fff;
  font-size: 14px;
  max-height: 52px;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(14, 61, 47, 0.12);
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
}

.site-header.is-scrolled .navbar__inner {
  min-height: 74px;
  padding: 6px 0;
}

.site-header.is-scrolled .brand__logo {
  width: 96px;
}

.topbar__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar a {
  color: #fff;
}

.topbar__contacts,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.topbar__contacts a,
.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.topbar__contacts i {
  font-size: 15px;
}

.topbar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.topbar__social span {
  margin-right: 6px;
}

.topbar__social a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--forest-deep);
  font-size: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.topbar__social a:hover {
  transform: translateY(-2px);
  background: #fff;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
}

.navbar__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 0;
  transition: min-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 112px;
  height: auto;
  object-fit: contain;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__toggle,
.navbar__backdrop,
.navbar__drawer-header,
.navbar__drawer-footer {
  display: none;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-link-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-toggle-sub {
  display: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

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

.nav-link.is-active {
  color: var(--forest);
}

/* Desktop Submenu Dropdown Level 2 */
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-menu--lvl2 {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(14, 61, 47, 0.16);
  border: 1px solid rgba(14, 61, 47, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

.nav-item--has-sub:hover > .sub-menu--lvl2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-item {
  position: relative;
  list-style: none;
}

.sub-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  color: #22262a;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.sub-item:hover > .sub-link-row > .sub-link,
.sub-link:hover {
  background: rgba(14, 61, 47, 0.06);
  color: var(--forest-dark);
}

/* Desktop Submenu Dropdown Level 3 */
.sub-menu--lvl3 {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 220px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(14, 61, 47, 0.16);
  border: 1px solid rgba(14, 61, 47, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 101;
}

.sub-item--has-sub:hover > .sub-menu--lvl3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-link--lvl3 {
  display: block;
  width: 100%;
  padding: 9px 20px;
  color: #444b52;
  font-size: 13.5px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.sub-link--lvl3:hover {
  background: rgba(14, 61, 47, 0.06);
  color: var(--forest-dark);
}

.quote-btn {
  min-width: 176px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 3px;
  background: var(--wood);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  background: var(--wood-dark);
}

.navbar__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: var(--forest);
  color: #fff;
}

.hero-slider {
  position: relative;
  background: #f7f2ea;
}

.hero-swiper {
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  max-height: 800px;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
}

.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 18px;
  transform: translateY(-50%);
  box-shadow: 0 16px 30px rgba(0, 63, 48, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: var(--forest-dark);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow--prev {
  left: 46px;
}

.hero-arrow--next {
  right: 46px;
}

.hero-pagination {
  position: absolute;
  left: 50% !important;
  bottom: 32px !important;
  z-index: 6;
  width: auto !important;
  min-width: 380px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(247, 247, 244, 0.78);
  box-shadow: 0 12px 34px rgba(54, 45, 33, 0.16);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.hero-pagination .swiper-pagination-bullet {
  width: 78px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.62;
  color: #8f918c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: width 0.28s ease, color 0.28s ease, opacity 0.28s ease;
}

.hero-pagination .swiper-pagination-bullet::before {
  content: attr(data-index);
  min-width: 20px;
  text-align: center;
}

.hero-pagination .swiper-pagination-bullet::after {
  content: "";
  flex: 1;
  height: 2.5px;
  border-radius: 999px;
  background: rgba(93, 97, 94, 0.22);
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease, height 0.28s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 96px;
  color: var(--forest);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active::after {
  height: 3px;
  background-color: rgba(93, 97, 94, 0.22);
  background-image: linear-gradient(90deg, var(--forest) 0%, var(--forest) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: heroLineFill 5s linear forwards;
}

@keyframes heroLineFill {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

.products-section {
  position: relative;
  overflow: hidden;
  min-height: 880px;
  padding: 100px 0 68px;
  background: url("../images/index-pro.png") center top / cover no-repeat;
}

.products-section__inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading__leaf {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 13px;
  color: var(--forest-dark);
  overflow: visible;
}

.section-heading__leaf path {
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.section-heading__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading__eyebrow span {
  width: 44px;
  height: 1px;
  background: var(--wood);
  opacity: 0.85;
}

.section-heading__eyebrow p {
  margin: 0;
  color: var(--wood);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #111217;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.12;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: var(--forest-dark);
}

.section-heading__mark {
  width: 52px;
  height: 3.5px;
  border-radius: 2px;
  margin: 18px auto 18px;
  background: linear-gradient(90deg, var(--forest-dark) 0 50%, var(--wood) 50% 100%);
}

.section-heading__copy {
  margin: 0 auto;
  max-width: 660px;
  color: #585e5a;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 500;
}

.products-carousel {
  position: relative;
}

.products-swiper {
  width: min(1260px, calc(100% - 130px));
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 4px 20px;
}

.product-card {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  overflow: hidden;
  background: #f1ede7;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 154px; */
  padding: 24px 26px 26px;
  background: #ffffff;
}

.product-card h3 {
  margin: 0;
  max-width: 100%;
  color: var(--forest-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* min-height: 48px; */
}

.product-card__line {
  display: block;
  width: 28px;
  height: 2.5px;
  margin: 10px 0 0;
  background: var(--wood);
  border-radius: 2px;
}

.product-card__link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-dark);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.product-card__link i {
  font-size: 14px;
  transition: transform 0.22s ease;
}

.product-card:hover .product-card__link i {
  transform: translateX(6px);
}

.product-card__link:hover {
  color: var(--wood);
}

.products-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--forest-dark);
  font-size: 18px;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(32, 28, 22, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.products-arrow:hover {
  background: #fff;
  color: var(--wood);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(32, 28, 22, 0.18);
}

.products-arrow--prev {
  left: 0;
}

.products-arrow--next {
  right: 0;
}

.products-pagination {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.products-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: #c6c6c6;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.products-pagination .swiper-pagination-bullet-active {
  background: var(--forest-dark);
  transform: scale(1.2);
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background: #fff;
}

.why-section__inner {
  text-align: center;
}

.why-heading {
  margin-bottom: 48px;
}

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

.why-card {
  position: relative;
  min-height: 380px;
  padding: 38px 24px 34px;
  border: 1px solid rgba(14, 61, 47, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(32, 28, 22, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--forest-dark) 0 50%, var(--wood) 50% 100%);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 61, 47, 0.22);
  box-shadow: 0 22px 48px rgba(14, 61, 47, 0.12);
}

.why-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.why-card__icon {
  width: 96px;
  height: 96px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f5f0 0%, #ede5da 100%);
  box-shadow: 0 6px 18px rgba(183, 138, 72, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover .why-card__icon {
  background: linear-gradient(135deg, #fbf9f6 0%, #e6d9cb 100%);
  box-shadow: 0 10px 24px rgba(183, 138, 72, 0.2);
  transform: scale(1.08);
}

.why-icon {
  width: 52px;
  height: 52px;
  overflow: visible;
}

.why-icon path {
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.why-icon__primary {
  stroke: var(--wood);
}

.why-icon__accent {
  stroke: var(--forest-dark);
}

.why-card h3 {
  margin: 0;
  color: #111217;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: var(--forest-dark);
}

.why-card > span {
  display: block;
  width: 36px;
  height: 2px;
  margin: 16px auto 18px;
  background: var(--wood);
  border-radius: 999px;
  transition: width 0.35s ease, background 0.35s ease;
}

.why-card:hover > span {
  width: 48px;
  background: var(--forest-dark);
}

.why-card p {
  margin: 0;
  color: #585e63;
  font-size: 14.5px;
  line-height: 1.65;
}

.why-cta {
  position: relative;
  z-index: 1;
  min-width: 210px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  border: 1.5px solid var(--forest-dark);
  border-radius: 4px;
  background: transparent;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(14, 61, 47, 0.08);
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.why-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--forest-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-cta span,
.why-cta i {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, color 0.35s ease;
}

.why-cta i {
  font-size: 13px;
}

.why-cta:hover {
  color: #fff;
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 61, 47, 0.22);
}

.why-cta:hover::before {
  transform: scaleX(1);
}

.why-cta:hover i {
  transform: translateX(4px);
}

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 100px 0 84px;
  background: url("../images/index-about.png") center top / cover no-repeat;
}

.about-section__inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(500px, 1.15fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(36px, 3.8vw, 64px);
}

.about-visual {
  position: relative;
  width: 100%;
}

.about-visual__image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(32, 28, 22, 0.13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-visual__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(32, 28, 22, 0.2);
}

.about-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  max-width: 680px;
  text-align: left;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.about-eyebrow > span {
  width: 36px;
  height: 1.5px;
  background: var(--wood);
}

.about-eyebrow p {
  margin: 0;
  color: var(--wood);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3.5px;
  line-height: 1;
  text-transform: uppercase;
}

.about-eyebrow__leaf {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--forest-dark);
  overflow: visible;
}

.about-eyebrow__leaf path {
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.about-content h2 {
  margin: 0;
  color: #111217;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.12;
  text-transform: uppercase;
}

.about-content h2 span {
  color: var(--forest-dark);
}

.about-mark {
  width: 52px;
  height: 3.5px;
  margin: 18px 0 22px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest-dark) 0 50%, var(--wood) 50% 100%);
}

.about-copy {
  max-width: 620px;
  margin: 0 0 34px;
  color: #555b57;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 34px 0 38px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  text-align: center;
}

.about-stat + .about-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.about-stat svg {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.about-stat svg path {
  stroke: var(--wood);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.about-stat strong {
  display: block;
  color: var(--forest-dark);
  font-size: clamp(32px, 2.5vw, 42px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat p {
  margin: 0;
  color: #1a1a1a;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.about-cta {
  position: relative;
  z-index: 1;
  height: 48px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1.5px solid var(--forest-dark);
  border-radius: 4px;
  background: var(--forest-dark);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(14, 61, 47, 0.2);
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wood);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-cta span,
.about-cta i {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, color 0.35s ease;
}

.about-cta i {
  font-size: 13px;
}

.about-cta:hover {
  color: #fff;
  border-color: var(--wood);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(183, 138, 72, 0.28);
}

.about-cta:hover::before {
  transform: scaleX(1);
}

.about-cta:hover i {
  transform: translateX(4px);
}

.factory-section {
  position: relative;
  overflow: hidden;
  padding: 98px 0 92px;
  background: #fff;
}

.factory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 42%, rgba(0, 82, 63, 0.04), transparent 28%),
    radial-gradient(circle at 82% 58%, rgba(183, 146, 109, 0.08), transparent 30%);
}

.factory-section__inner {
  position: relative;
  z-index: 1;
}

.factory-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.factory-heading h2 span {
  color: var(--forest-dark);
}

.factory-carousel {
  position: relative;
}

.factory-swiper {
  width: calc(100% - 92px);
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 4px 18px;
}

.factory-card {
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.factory-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 146, 109, 0.34);
}

.factory-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef0ed;
}

.factory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.factory-card:hover .factory-card__image img {
  transform: scale(1.045);
}

.factory-card__body {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 24px;
  text-align: center;
}

.factory-card h3 {
  margin: 0;
  color: #14171c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.factory-card__body span {
  width: 48px;
  height: 2px;
  margin-top: 17px;
  background: var(--wood);
}

.factory-arrow {
  position: absolute;
  top: 46%;
  z-index: 5;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--forest-dark);
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.11);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.factory-arrow:hover {
  transform: translateY(-2px);
  background: var(--forest);
  color: #fff;
}

.factory-arrow--prev {
  left: -28px;
}

.factory-arrow--next {
  right: -28px;
}

.factory-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.factory-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  background: rgba(20, 23, 28, 0.22);
  opacity: 1;
  transition: background 0.22s ease, transform 0.22s ease;
}

.factory-pagination .swiper-pagination-bullet-active {
  background: var(--forest);
  transform: scale(1.08);
}

.applications-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 86px;
  background: url("../images/index-app.png") center top / cover no-repeat;
}

.applications-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.applications-heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.applications-heading h2 span {
  color: var(--forest-dark);
}

.applications-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) repeat(2, minmax(250px, 0.54fr));
  grid-template-rows: repeat(2, minmax(248px, 1fr));
  gap: 18px;
  text-align: left;
}

.application-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  border-radius: 8px;
  background: #dde1dc;
  box-shadow: 0 14px 30px rgba(30, 34, 37, 0.1);
}

.application-card--large {
  grid-row: span 2;
  min-height: 514px;
}

.application-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 17, 0.04) 0%, rgba(7, 19, 16, 0.2) 42%, rgba(5, 24, 18, 0.78) 100%);
  pointer-events: none;
}

.application-card:hover img {
  transform: scale(1.045);
}

.application-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
}

.application-card__content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}

.application-card--large .application-card__content h3 {
  font-size: 24px;
}

.application-card__content span {
  display: block;
  width: 44px;
  height: 2px;
  margin: 10px 0 9px;
  background: var(--wood);
}

.applications-cta {
  min-width: 336px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
  border-radius: 5px;
  background: var(--forest-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 63, 48, 0.2);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.applications-cta:hover {
  transform: translateY(-2px);
  background: #15523f;
  box-shadow: 0 14px 28px rgba(0, 63, 48, 0.26);
}

.news-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background: #fff;
}

.news-section__inner {
  text-align: center;
}

.news-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.news-heading h2 span {
  color: var(--forest-dark);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(440px, 1fr);
  gap: 20px;
  text-align: left;
}

.news-feature,
.news-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 20, 15, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.news-feature:hover,
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(25, 20, 15, 0.1);
}

.news-feature {
  height: 100%;
  min-height: 494px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.news-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.1) 0%, rgba(8, 18, 14, 0.55) 45%, rgba(8, 18, 14, 0.88) 100%);
}

.news-feature:hover > img {
  transform: scale(1.04);
}

.news-feature__content {
  position: relative;
  z-index: 1;
  padding: 34px 34px 34px;
  color: #fff;
}

.news-category {
  margin: 0 0 6px;
  color: #d4a265;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}

.news-feature time,
.news-item time {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1;
}

.news-feature h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.3;
}

.news-feature__content > span {
  display: block;
  width: 48px;
  height: 2px;
  margin: 15px 0 13px;
  background: linear-gradient(90deg, #fff 0 50%, var(--wood) 50% 100%);
}

.news-feature__content > p:not(.news-category) {
  margin: 0;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.55;
}

.news-feature__content a {
  width: 144px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.news-feature__content a:hover {
  background: #fff;
  color: var(--forest-dark);
}

.news-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.news-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 154px;
}

.news-item__image {
  position: relative;
  overflow: hidden;
  background: #eef0ed;
}

.news-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.news-item:hover .news-item__image img {
  transform: scale(1.045);
}

.news-item__body {
  position: relative;
  min-width: 0;
  padding: 18px 54px 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item__body .news-category {
  margin-bottom: 4px;
}

.news-item__body time {
  color: #6b7280;
  font-size: 12.5px;
}

.news-item h3 {
  margin: 7px 0 6px;
  color: #111217;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item__body > p:not(.news-category) {
  margin: 0;
  color: #555d64;
  font-size: 13px;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item__body a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #c18b45;
  border-radius: 50%;
  color: #a66f2f;
  font-size: 13px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.news-item__body a:hover {
  transform: translateX(3px);
  background: #c18b45;
  color: #fff;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background: url("../images/index-cta.png") center right / cover no-repeat;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 720px;
  text-align: left;
}

.cta-eyebrow {
  margin: 0;
  color: #b78a48;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.cta-line {
  display: block;
  width: 48px;
  height: 2px;
  margin: 12px 0 24px;
  background: #b78a48;
  border-radius: 1px;
}

.cta-content h2 {
  margin: 0;
  color: #111217;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.12;
}

.cta-content h2 span {
  color: var(--forest-dark);
}

.cta-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: #555b62;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 44px;
}

.cta-btn {
  min-width: 172px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-btn i {
  font-size: 13px;
  transition: transform 0.22s ease;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

.cta-btn--primary {
  background: var(--forest-dark);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 61, 47, 0.2);
}

.cta-btn--primary:hover {
  background: #144e3d;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(14, 61, 47, 0.28);
}

.cta-btn--outline {
  border: 1px solid #8e887d;
  background: rgba(255, 255, 255, 0.55);
  color: #2c3236;
}

.cta-btn--outline:hover {
  border-color: var(--forest-dark);
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Unified Floating Contact Capsule */
.cta-contact-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: 0 10px 30px rgba(14, 61, 47, 0.08);
}

.cta-contact {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 22px;
  color: #111217;
  transition: opacity 0.2s ease;
}

.cta-contact:first-child {
  padding-left: 6px;
}

.cta-contact:last-child {
  padding-right: 12px;
}

.cta-contact + .cta-contact {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.cta-contact:hover {
  opacity: 0.82;
}

.cta-contact__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #b78a48;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(65, 46, 28, 0.1);
  border: 1px solid rgba(183, 138, 72, 0.2);
}

.cta-contact em,
.cta-contact strong {
  display: block;
  font-style: normal;
}

.cta-contact em {
  margin-bottom: 2px;
  color: #646a72;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-contact strong {
  color: #111217;
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
}
  font-weight: 500;
}

.cta-contact strong {
  color: #111217;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 1280px) {
  .navbar__inner {
    gap: 22px;
  }

  .brand__logo {
    width: 102px;
  }

  .navbar__menu {
    gap: 22px;
  }

  .nav-link {
    font-size: 14px;
  }

  .quote-btn {
    min-width: 152px;
    min-height: 46px;
    font-size: 13px;
  }

  .about-section {
    min-height: 720px;
    padding: 84px 0 70px;
  }

  .about-section__inner {
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(500px, 1.2fr) minmax(440px, 1fr);
    gap: 40px;
  }

  .about-visual {
    width: 100%;
  }

  .about-visual__image {
    width: 100%;
    height: 480px;
    min-height: 0;
  }

  .about-content h2 {
    font-size: clamp(34px, 3.6vw, 48px);
  }

  .about-copy {
    font-size: 15px;
  }

  .about-stats {
    margin: 36px 0 32px;
  }

  .about-stat {
    padding: 0 10px;
  }

  .about-stat strong {
    font-size: 32px;
  }

  .factory-section {
    padding: 82px 0 78px;
  }

  .factory-swiper {
    width: calc(100% - 76px);
  }

  .factory-arrow {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .factory-arrow--prev {
    left: -18px;
  }

  .factory-arrow--next {
    right: -18px;
  }

  .applications-section {
    padding: 78px 0 74px;
  }

  .applications-grid {
    grid-template-columns: minmax(330px, 1fr) repeat(2, minmax(220px, 0.55fr));
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 16px;
  }

  .application-card {
    min-height: 220px;
  }

  .application-card--large {
    min-height: 456px;
  }

  .application-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .application-card__content h3 {
    font-size: 19px;
  }

  .application-card--large .application-card__content h3 {
    font-size: 22px;
  }

  .news-section {
    padding: 76px 0 68px;
  }

  .news-layout {
    grid-template-columns: minmax(390px, 1fr) minmax(430px, 1fr);
  }

  .news-feature {
    min-height: 540px;
  }

  .news-feature__content {
    left: 32px;
    bottom: 34px;
  }

  .news-feature h3 {
    font-size: 26px;
  }

  .news-item {
    min-height: 170px;
  }

  .news-item__body {
    padding: 24px 58px 22px 28px;
  }

  .news-item h3 {
    font-size: 17px;
  }

  .cta-section {
    min-height: 610px;
    padding: 82px 0 44px;
  }

  .cta-section__inner {
    min-height: 484px;
  }

  .cta-content h2 {
    font-size: clamp(46px, 5vw, 70px);
  }

  .cta-copy {
    font-size: 19px;
  }

  .cta-actions {
    gap: 28px;
    margin-top: 38px;
  }

  .cta-btn {
    min-width: 220px;
    height: 56px;
    font-size: 15px;
  }

  .cta-contact-bar {
    width: min(760px, 100%);
  }

  .cta-contact {
    gap: 14px;
    padding: 0 20px;
  }

  .cta-contact__icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 21px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 126px;
  }

  .topbar__inner {
    min-height: 42px;
  }

  .topbar__social {
    display: none;
  }

  .navbar__inner {
    min-height: 84px;
    position: relative;
    padding: 10px 0;
  }

  body.drawer-open {
    overflow: hidden;
  }

  .navbar__toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(14, 61, 47, 0.15);
    border-radius: 6px;
    background: #fbfbf9;
    color: var(--forest-dark);
    font-size: 17px;
    transition: all 0.25s ease;
  }

  .navbar__toggle:hover {
    background: var(--forest-dark);
    color: #ffffff;
  }

  /* Backdrop Overlay */
  .navbar__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(14, 28, 22, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .navbar.is-open .navbar__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Left-Side Drawer Menu */
  .navbar__menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    width: min(290px, 80vw);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 14px 0 45px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .navbar.is-open .navbar__menu {
    transform: translateX(0);
  }

  .navbar__drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 24px 18px;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f0;
  }

  .navbar__drawer-header .brand__logo {
    width: 114px;
  }

  /* Mobile Left-Side Drawer Menu Links & Multi-Level Submenus */
  .navbar__links {
    display: block;
    padding: 10px 0 20px;
    flex: 1 1 auto;
    width: 100%;
    text-align: left;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #f2f2f0;
  }

  .nav-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 16px 0 24px;
  }

  .nav-link {
    display: flex;
    align-items: center;
    font-size: 14.5px;
    font-weight: 800;
    color: #111217;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
    padding: 12px 0;
    flex: 1;
    min-height: auto;
    border: none;
    transition: color 0.2s ease;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: var(--forest-dark);
  }

  .nav-link.is-active {
    color: #063b2c;
    font-weight: 900;
  }

  .nav-toggle-sub {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #71767d;
    font-size: 11px;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  }

  .nav-item--has-sub.is-open > .nav-link-row .nav-toggle-sub {
    transform: rotate(180deg);
    color: var(--forest-dark);
  }

  /* Level 2 Submenu (Mobile Accordion) */
  .sub-menu--lvl2 {
    position: static;
    display: none;
    width: 100%;
    background: #f9faf8;
    border-top: 1px solid #eef1ec;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .sub-item {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #f0f2ee;
  }

  .sub-item:last-child {
    border-bottom: none;
  }

  .sub-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 16px 0 36px;
  }

  .sub-link {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #33383f;
    text-align: left;
    padding: 10px 0;
    flex: 1;
    transition: color 0.2s ease;
  }

  .sub-link:hover {
    background: transparent;
    color: var(--forest-dark);
  }

  .sub-item--has-sub.is-open > .sub-link-row .nav-toggle-sub {
    transform: rotate(180deg);
    color: var(--forest-dark);
  }

  /* Level 3 Submenu (Mobile Accordion) */
  .sub-menu--lvl3 {
    position: static;
    display: none;
    width: 100%;
    background: #f1f4f0;
    border-top: 1px solid #e6ebe4;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 4px 0 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .sub-link--lvl3 {
    display: block;
    width: 100%;
    padding: 10px 20px 10px 48px;
    font-size: 13px;
    font-weight: 600;
    color: #586068;
    text-align: left;
    border-bottom: 1px solid #e8ede6;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .sub-link--lvl3:last-child {
    border-bottom: none;
  }

  .sub-link--lvl3:hover {
    background: transparent;
    color: var(--forest-dark);
    padding-left: 52px;
  }

  .navbar__drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px 24px;
    border-top: 1px solid #f0f0ec;
    background: #fbfbf9;
    width: 100%;
  }

  .navbar__drawer-quote {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    background: #063b2c;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(6, 59, 44, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .navbar__drawer-quote i {
    font-size: 14px;
  }

  .navbar__drawer-quote:hover {
    background: #04291f;
    transform: translateY(-1px);
  }

  .navbar__drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-left: 4px;
  }

  .navbar__drawer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #646a70;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .navbar__drawer-contact a:hover {
    color: #063b2c;
  }

  .navbar__drawer-contact i {
    color: #b78a48;
    font-size: 14px;
    width: 16px;
    text-align: center;
  }

  .quote-btn {
    display: none;
  }

  .hero-swiper {
    height: calc(100vh - var(--header-height));
    min-height: 520px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .hero-arrow--prev {
    left: 24px;
  }

  .hero-arrow--next {
    right: 24px;
  }

  .hero-pagination {
    min-width: min(340px, calc(100% - 48px));
    height: 42px;
    gap: 12px;
    padding: 0 18px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 64px;
    font-size: 13px;
  }

  .hero-pagination .swiper-pagination-bullet-active {
    width: 78px;
  }

  .products-section {
    min-height: 720px;
    padding: 70px 0 50px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: clamp(30px, 3.8vw, 42px);
  }

  .section-heading__copy {
    font-size: 15px;
  }

  .products-swiper {
    width: min(920px, calc(100% - 90px));
  }

  .product-card h3 {
    font-size: 19px;
  }

  .why-section {
    padding: 72px 0 66px;
  }

  .why-heading {
    margin-bottom: 38px;
  }

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

  .why-card {
    min-height: 340px;
    padding: 32px 20px 28px;
  }

  .why-card__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
  }

  .why-card h3 {
    font-size: 17.5px;
  }

  .why-card p {
    font-size: 14px;
  }

  .about-section {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .about-section__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }

  .about-visual__image {
    width: 100%;
    height: 380px;
  }

  .about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .about-eyebrow {
    justify-content: center;
    margin-bottom: 16px;
  }

  .about-mark {
    margin: 16px auto 20px;
  }

  .about-copy {
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
    margin: 34px 0 30px;
  }

  .about-stat:nth-child(3) {
    border-left: 0;
  }

  .factory-section {
    padding: 70px 0 64px;
  }

  .factory-heading {
    margin-bottom: 38px;
  }

  .factory-swiper {
    width: calc(100% - 82px);
  }

  .factory-card__body {
    min-height: 90px;
    padding: 20px 14px 22px;
  }

  .factory-card h3 {
    font-size: 16px;
  }

  .factory-arrow {
    top: 48%;
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .factory-arrow--prev {
    left: 0;
  }

  .factory-arrow--next {
    right: 0;
  }

  .factory-pagination {
    margin-top: 24px;
  }

  .applications-section {
    padding: 66px 0 60px;
  }

  .applications-heading {
    margin-bottom: 34px;
  }

  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 16px;
  }

  .application-card,
  .application-card--large {
    grid-row: auto;
    min-height: 260px;
  }

  .application-card--large {
    grid-column: span 2;
    min-height: 390px;
  }

  .application-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .application-card__content h3,
  .application-card--large .application-card__content h3 {
    font-size: 20px;
  }

  .applications-cta {
    min-width: 290px;
    height: 50px;
    margin-top: 24px;
    font-size: 13.5px;
  }

  .news-section {
    padding: 52px 0 46px;
  }

  .news-heading {
    margin-bottom: 28px;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-feature {
    min-height: 380px;
  }

  .news-feature__content {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 0;
  }

  .news-feature h3 {
    font-size: 22px;
    margin-top: 10px;
  }

  .news-list {
    grid-template-rows: auto;
    gap: 12px;
  }

  .news-item {
    grid-template-columns: 160px 1fr;
    min-height: 130px;
  }

  .news-item__body {
    padding: 14px 48px 14px 18px;
  }

  .cta-section {
    padding: 68px 0 54px;
    background-position: 70% center;
  }

  .cta-section__inner {
    min-height: 0;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-eyebrow {
    font-size: 14px;
  }

  .cta-line {
    width: 40px;
    margin: 8px 0 18px;
  }

  .cta-content h2 {
    font-size: clamp(30px, 4.4vw, 42px);
  }

  .cta-copy {
    font-size: 14.5px;
    margin-top: 14px;
  }

  .cta-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin: 24px 0 32px;
  }

  .cta-btn {
    min-width: 156px;
    height: 44px;
    font-size: 13px;
  }

  .cta-contact-bar {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    padding: 12px 14px;
    gap: 12px;
  }

  .cta-contact {
    padding: 4px 12px;
  }

  .cta-contact + .cta-contact {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 12px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 108px;
  }

  .topbar {
    font-size: 11px;
  }

  .topbar__contacts {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .topbar__contacts a {
    gap: 7px;
  }

  .topbar__divider {
    height: 18px;
  }

  .navbar__inner {
    min-height: 66px;
    padding: 9px 0;
  }

  .brand__logo {
    width: 82px;
  }

  .hero-swiper {
    min-height: 460px;
  }

  .hero-swiper img {
    object-position: 44% center;
  }

  .hero-arrow {
    top: auto;
    bottom: 31px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .hero-arrow,
  .hero-arrow:hover {
    transform: none;
  }

  .hero-arrow--prev {
    left: 16px;
  }

  .hero-arrow--next {
    right: 16px;
  }

  .hero-pagination {
    min-width: 206px;
    height: 34px;
    bottom: 31px;
    gap: 7px;
    padding: 0 12px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 43px;
    height: 14px;
    gap: 5px;
    font-size: 10px;
  }

  .hero-pagination .swiper-pagination-bullet::before {
    min-width: 15px;
  }

  .hero-pagination .swiper-pagination-bullet-active {
    width: 54px;
  }

  .products-section {
    min-height: auto;
    padding: 48px 0 36px;
    background-position: center top;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading__leaf {
    width: 27px;
    height: 27px;
    margin-bottom: 9px;
  }

  .section-heading__eyebrow {
    gap: 10px;
    margin-bottom: 10px;
  }

  .section-heading__eyebrow span {
    width: 28px;
  }

  .section-heading__eyebrow p {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading__mark {
    width: 44px;
    height: 3px;
    margin: 14px auto 12px;
  }

  .section-heading__copy {
    font-size: 13px;
    line-height: 1.5;
  }

  .products-swiper {
    width: calc(100% - 64px);
    padding-bottom: 12px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card__body {
    min-height: 120px;
    padding: 18px 20px 20px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card__line {
    width: 24px;
    height: 2px;
    margin-top: 8px;
  }

  .product-card__link {
    gap: 10px;
    font-size: 12px;
    margin-top: 18px;
  }

  .product-card__link i {
    font-size: 12px;
  }

  .products-arrow {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .products-pagination {
    gap: 8px;
    margin-top: 18px;
  }

  .products-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .why-section {
    padding: 48px 0 44px;
  }

  .why-heading {
    margin-bottom: 26px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    min-height: auto;
    padding: 28px 20px 26px;
  }

  .why-card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
  }

  .why-card h3 {
    font-size: 16.5px;
  }

  .why-card > span {
    width: 32px;
    margin: 12px auto 14px;
  }

  .why-card p {
    font-size: 13.5px;
  }

  .why-cta {
    min-width: 190px;
    height: 44px;
    gap: 12px;
    margin-top: 28px;
    font-size: 13px;
  }

  .about-section {
    padding: 48px 0 40px;
    background-position: center top;
  }

  .about-section__inner {
    gap: 24px;
  }

  .about-visual {
    width: 100%;
    max-width: 100%;
  }

  .about-visual__image {
    width: 100%;
    height: 250px;
    border-radius: 6px;
  }

  .about-eyebrow {
    gap: 10px;
    margin-bottom: 12px;
  }

  .about-eyebrow > span {
    width: 26px;
  }

  .about-eyebrow p {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .about-eyebrow__leaf {
    width: 18px;
    height: 18px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-mark {
    width: 44px;
    height: 3px;
    margin: 14px auto 16px;
  }

  .about-copy {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0 24px;
    row-gap: 20px;
    column-gap: 10px;
  }

  .about-stat {
    padding: 0 6px;
  }

  .about-stat:nth-child(odd) {
    border-left: 0;
  }

  .about-stat svg {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .about-stat strong {
    font-size: 26px;
    margin-bottom: 4px;
  }

  .about-stat p {
    font-size: 11px;
    line-height: 1.3;
  }

  .about-cta {
    height: 44px;
    padding: 0 24px;
    font-size: 12.5px;
  }

  .factory-section {
    padding: 52px 0 48px;
  }

  .factory-heading {
    margin-bottom: 28px;
  }

  .factory-swiper {
    width: calc(100% - 54px);
    padding: 6px 2px 14px;
  }

  .factory-card {
    border-radius: 7px;
  }

  .factory-card__image {
    aspect-ratio: 1 / 1;
  }

  .factory-card__body {
    min-height: 76px;
    padding: 17px 12px 18px;
  }

  .factory-card h3 {
    font-size: 15px;
  }

  .factory-card__body span {
    width: 38px;
    margin-top: 12px;
  }

  .factory-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  }

  .factory-arrow--prev {
    left: 0;
  }

  .factory-arrow--next {
    right: 0;
  }

  .factory-pagination {
    gap: 10px;
    margin-top: 18px;
  }

  .factory-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .applications-section {
    padding: 50px 0 46px;
    background-position: center top;
  }

  .applications-heading {
    margin-bottom: 26px;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .application-card,
  .application-card--large {
    grid-column: auto;
    min-height: 250px;
    border-radius: 7px;
  }

  .application-card--large {
    min-height: 320px;
  }

  .application-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .application-card__content h3,
  .application-card--large .application-card__content h3 {
    font-size: 18px;
  }

  .application-card__content span {
    width: 36px;
    margin: 8px 0;
  }

  .applications-cta {
    min-width: min(100%, 260px);
    height: 46px;
    gap: 16px;
    margin-top: 22px;
    font-size: 12.5px;
    letter-spacing: 1px;
  }

  .news-section {
    padding: 44px 0 38px;
  }

  .news-heading {
    margin-bottom: 22px;
  }

  .news-layout {
    gap: 12px;
  }

  .news-feature {
    min-height: 320px;
    border-radius: 7px;
  }

  .news-feature::after {
    background: linear-gradient(180deg, rgba(8, 18, 14, 0.08) 0%, rgba(8, 18, 14, 0.48) 45%, rgba(8, 18, 14, 0.88) 100%);
  }

  .news-feature__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 0;
  }

  .news-category {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .news-feature time,
  .news-item time {
    font-size: 11.5px;
  }

  .news-feature h3 {
    margin-top: 8px;
    font-size: 19px;
  }

  .news-feature__content > span {
    width: 36px;
    margin: 10px 0 8px;
  }

  .news-feature__content > p:not(.news-category) {
    font-size: 13px;
    line-height: 1.45;
  }

  .news-feature__content a {
    width: 132px;
    height: 36px;
    gap: 10px;
    margin-top: 14px;
    font-size: 12px;
  }

  .news-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-item__image {
    aspect-ratio: 16 / 9;
    height: 140px;
  }

  .news-item__body {
    padding: 14px 44px 14px 14px;
  }

  .news-item h3 {
    margin: 4px 0 4px;
    font-size: 15px;
  }

  .news-item__body > p:not(.news-category) {
    font-size: 12px;
  }

  .news-item__body a {
    right: 14px;
    bottom: 14px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .cta-section {
    padding: 44px 0 36px;
    background-position: 72% center;
  }

  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 248, 237, 0.88), rgba(255, 248, 237, 0.6));
    pointer-events: none;
  }

  .cta-section__inner {
    position: relative;
    z-index: 1;
    min-height: 0;
  }

  .cta-eyebrow {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .cta-line {
    width: 36px;
    margin: 8px 0 16px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-copy {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .cta-copy br {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 22px 0 30px;
  }

  .cta-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
    gap: 12px;
    font-size: 12.5px;
  }

  .cta-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-contact {
    padding: 0;
    gap: 12px;
  }

  .cta-contact + .cta-contact {
    border-left: none;
  }

  .cta-contact__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 15px;
  }

  .cta-contact em {
    font-size: 11px;
  }

  .cta-contact strong {
    font-size: 12.5px;
  }
}

/* ==========================================
   Page Scroll Reveal & Animation System
   ========================================== */
.reveal-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Specific directional reveals */
.about-visual.reveal-item,
.news-feature.reveal-item {
  transform: translateX(-42px);
  transition: opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-content.reveal-item {
  transform: translateX(42px);
  transition: opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual.reveal-item.is-revealed,
.about-content.reveal-item.is-revealed,
.news-feature.reveal-item.is-revealed {
  transform: translateX(0);
}

/* Section Heading Decorative Mark Expansion */
.section-heading__mark,
.about-mark {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.section-heading.is-revealed .section-heading__mark,
.about-content.is-revealed .about-mark {
  transform: scaleX(1);
}

.about-mark {
  transform-origin: left;
}

/* Section Heading Leaf Gentle Fall */
.section-heading__leaf {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.95s ease 0.2s, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.section-heading.is-revealed .section-heading__leaf {
  opacity: 1;
  transform: translateY(0);
}

/* Section Heading Eyebrow Line Growth */
.section-heading__eyebrow span {
  transform: scaleX(0);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.section-heading.is-revealed .section-heading__eyebrow span {
  transform: scaleX(1);
}

/* Hero Slider Ken Burns Subtle Zoom */
.hero-swiper .swiper-slide img {
  transform: scale(1.05);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Sticky Header Scroll State */
.site-header {
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

/* Floating Back To Top Button */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 32px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(14, 61, 47, 0.15);
  background: #ffffff;
  color: var(--forest-dark);
  font-size: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(14, 61, 47, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--forest-dark);
  color: #ffffff;
  transform: translateY(0) scale(1.06);
  box-shadow: 0 12px 28px rgba(14, 61, 47, 0.25);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Card & Interactive Micro-Interactions */
.about-stat {
  transition: transform 0.35s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
}

.about-stat svg {
  transition: transform 0.35s ease;
}

.about-stat:hover svg {
  transform: scale(1.1);
}

.cta-contact {
  transition: transform 0.35s ease, opacity 0.25s ease;
}

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

.cta-contact:hover .cta-contact__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(183, 138, 72, 0.22);
}

.cta-contact__icon {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ==========================================
   Continuous Ambient Embellishment Animations
   (点缀常驻微动效)
   ========================================== */

/* 1. Leaf Gentle Ambient Sway & Float */
@keyframes leafFloatAmbient {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(2.5deg);
  }
}

.section-heading.is-revealed .section-heading__leaf,
.about-content.is-revealed .about-eyebrow__leaf {
  animation: leafFloatAmbient 4.6s ease-in-out infinite;
}

/* 2. Action Button Subtle Sheen Wave */
.cta-btn--primary,
.quote-btn {
  position: relative;
  overflow: hidden;
}

.cta-btn--primary::before,
.quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-22deg);
  animation: buttonSheenAmbient 6.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonSheenAmbient {
  0%, 65% {
    left: -120%;
  }
  85%, 100% {
    left: 170%;
  }
}

/* 3. Why Icon Subtle Ring Ambient Rotation */
.why-card__icon {
  position: relative;
}

.why-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(183, 138, 72, 0.32);
  animation: ringRotateAmbient 24s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes ringRotateAmbient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 4. Floating Back to Top & Contact Badges Ambient Hovering */
@keyframes floatSubtleAmbient {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3.5px);
  }
}

.back-to-top.is-visible {
  animation: floatSubtleAmbient 4.2s ease-in-out infinite;
}

.cta-contact__icon {
  animation: floatSubtleAmbient 4.5s ease-in-out infinite;
}

.cta-contact:nth-child(2) .cta-contact__icon {
  animation-delay: 0.8s;
}

.cta-contact:nth-child(3) .cta-contact__icon {
  animation-delay: 1.6s;
}

/* 5. Natural Ambient Glow Drift on Product & About Sections */
.products-section::before,
.about-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 138, 72, 0.08) 0%, rgba(14, 61, 47, 0.035) 55%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  animation: ambientOrbDrift 20s ease-in-out infinite alternate;
  z-index: 0;
}

.products-section::before {
  top: 8%;
  right: -120px;
}

.about-section::before {
  bottom: 8%;
  left: -120px;
  animation-duration: 24s;
  animation-direction: alternate-reverse;
}

@keyframes ambientOrbDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35px, -30px) scale(1.15);
  }
  100% {
    transform: translate(-25px, 40px) scale(0.92);
  }
}

/* 6. Section Mark Shimmer Glint */
.section-heading__mark,
.about-mark {
  position: relative;
  overflow: hidden;
}

.section-heading__mark::after,
.about-mark::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 28px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  animation: markShimmerAmbient 6s ease-in-out infinite 2.5s;
}

@keyframes markShimmerAmbient {
  0%, 75% {
    left: -50px;
  }
  92%, 100% {
    left: 90px;
  }
}

/* Reduced Motion Support for Accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .section-heading__mark,
  .about-mark,
  .section-heading__leaf,
  .about-eyebrow__leaf,
  .hero-swiper .swiper-slide img,
  .why-card__icon::after,
  .cta-btn--primary::before,
  .quote-btn::before,
  .back-to-top,
  .cta-contact__icon,
  .products-section::before,
  .about-section::before {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================
   Quote Inquiry Modal (留言弹窗)
   ========================================== */
body.modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.quote-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 22, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quote-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 42px 40px 38px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(14, 61, 47, 0.28);
  border: 1px solid rgba(183, 138, 72, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-modal.is-active .quote-modal__dialog {
  transform: scale(1) translateY(0);
}

.quote-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f5f3;
  color: #555;
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.quote-modal__close:hover {
  background: var(--forest-dark);
  color: #ffffff;
  transform: rotate(90deg);
}

.quote-modal__header {
  text-align: center;
  margin-bottom: 26px;
}

.quote-modal__leaf {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 8px;
  color: var(--forest-dark);
}

.quote-modal__leaf path {
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.quote-modal__eyebrow {
  margin: 0 0 6px;
  color: var(--wood);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.quote-modal__title {
  margin: 0;
  color: #111217;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.quote-modal__title span {
  color: var(--forest-dark);
}

.quote-modal__subtitle {
  margin: 8px auto 0;
  color: #666a70;
  font-size: 14px;
  line-height: 1.5;
  max-width: 480px;
}

.quote-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.quote-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.quote-modal__field--full {
  margin-bottom: 22px;
}

.quote-modal__field label {
  font-size: 13px;
  font-weight: 700;
  color: #22262a;
}

.quote-modal__field label span {
  color: #d9534f;
}

.quote-modal__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid #dcdedc;
  border-radius: 6px;
  background: #fafaf8;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.quote-modal__input-wrap:focus-within {
  border-color: var(--forest-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 61, 47, 0.12);
}

.quote-modal__input-wrap i {
  position: absolute;
  left: 14px;
  color: #8c9095;
  font-size: 14px;
  pointer-events: none;
}

.quote-modal__input-wrap input,
.quote-modal__input-wrap select,
.quote-modal__input-wrap textarea {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 14px 12px 40px;
  font-size: 14px;
  color: #111217;
  font-family: inherit;
  outline: none;
}

.quote-modal__input-wrap select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e3d2f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.quote-modal__input-wrap--textarea {
  align-items: flex-start;
}

.quote-modal__input-wrap--textarea i {
  top: 14px;
}

.quote-modal__input-wrap textarea {
  resize: vertical;
  min-height: 86px;
  padding-top: 12px;
}

.quote-modal__submit {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 1.5px solid var(--forest-dark);
  background: var(--forest-dark);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(14, 61, 47, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quote-modal__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wood);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-modal__submit span,
.quote-modal__submit i {
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

.quote-modal__submit i {
  font-size: 13px;
}

.quote-modal__submit:hover {
  border-color: var(--wood);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(183, 138, 72, 0.28);
}

.quote-modal__submit:hover::before {
  transform: scaleX(1);
}

.quote-modal__submit:hover i {
  transform: translateX(4px);
}

.quote-modal__submit.is-submitting {
  opacity: 0.7;
  cursor: not-allowed;
}

.quote-modal__success {
  padding: 16px 20px;
  border-radius: 6px;
  background: rgba(14, 61, 47, 0.08);
  border: 1px solid rgba(14, 61, 47, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--forest-dark);
  margin-top: 16px;
}

.quote-modal__success i {
  font-size: 22px;
  flex-shrink: 0;
}

.quote-modal__success p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .quote-modal {
    padding: 12px;
  }

  .quote-modal__dialog {
    padding: 32px 20px 26px;
    border-radius: 12px;
  }

  .quote-modal__close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .quote-modal__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .quote-modal__field--full {
    margin-bottom: 18px;
  }

  .quote-modal__subtitle {
    font-size: 13px;
  }

  .quote-modal__submit {
    height: 46px;
    font-size: 13.5px;
  }
}
