:root {
  --black: #111310;
  --black-soft: #1a1d19;
  --charcoal: #30332f;
  --yellow: #f2c230;
  --yellow-dark: #d7a817;
  --green: #8dc817;
  --green-deep: #2f542e;
  --paper: #f7f7f3;
  --white: #ffffff;
  --line: #dfe1da;
  --muted: #6d726b;
  --container: 1240px;
  --shadow: 0 20px 50px rgba(17, 19, 16, .12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(17, 19, 16, .86);
  backdrop-filter: blur(14px);
  transition: height .25s ease, background .25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(17, 19, 16, .96);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  flex: 0 0 auto;
  width: auto;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 146px;
  height: auto;
}

.brand-company-name {
  color: var(--white);
  font-family: SimSun, "宋体", serif;
  font-size: 16px;
  letter-spacing: .06em;
  white-space: nowrap;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .brand-company-name {
    display: none;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 26px);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

.main-nav > a:not(.nav-cta),
.nav-parent-row > a {
  position: relative;
  padding: 26px 0;
}

.main-nav > a:not(.nav-cta)::after,
.nav-parent-row > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-parent-row > a:hover::after,
.nav-parent-row > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item {
  position: relative;
}

.nav-parent-row {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  display: none;
}

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  min-width: 220px;
  padding: 24px;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 11, 9, .98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-submenu {
  width: min(520px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 36px;
}

.product-submenu > div,
.compact-submenu {
  display: grid;
  align-content: start;
  gap: 4px;
}

.submenu-label {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.submenu a {
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.35;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 12px 20px;
  color: var(--black);
  font-weight: 700;
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-label {
  font-size: 13px;
}

.menu-lines {
  width: 24px;
  display: grid;
  gap: 5px;
}

.menu-lines i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 13, 10, .94) 0%, rgba(11, 13, 10, .73) 42%, rgba(11, 13, 10, .18) 72%, rgba(11, 13, 10, .32) 100%),
    linear-gradient(0deg, rgba(11, 13, 10, .62), transparent 40%);
}

.hero-grid {
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
}

.eyebrow span {
  width: 42px;
  height: 3px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 7.4vw, 104px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 em {
  display: inline-block;
  margin-top: 16px;
  color: var(--yellow);
  font-style: normal;
  font-size: .56em;
  letter-spacing: -.02em;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.9;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--yellow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd449;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

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

.hero-meta {
  position: absolute;
  bottom: 30px;
  left: 24px;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.hero-meta div {
  min-width: 160px;
  padding: 18px 32px 0 0;
}

.hero-meta strong {
  display: block;
  color: var(--white);
  font-size: 24px;
}

.hero-meta strong small {
  margin-left: 4px;
  color: var(--yellow);
  font-size: 12px;
}

.hero-meta span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: 32px;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  letter-spacing: .14em;
}

.section-dark,
.section-light,
.applications,
.process,
.news-center {
  padding: 110px 0;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  background: var(--paper);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.13;
  letter-spacing: -.04em;
}

.heading-light h2 {
  color: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 60px;
}

.split-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.advantage-card {
  min-height: 280px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  transition: background .25s ease, transform .25s ease;
}

.advantage-card:last-child {
  border-right: 0;
}

.advantage-card:hover {
  background: var(--black-soft);
  transform: translateY(-6px);
}

.card-index {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.advantage-card h3 {
  margin: 70px 0 14px;
  font-size: 22px;
}

.advantage-card p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.85;
}

.featured-products {
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-inline: auto;
}

.featured-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-primary {
  color: var(--white);
  background: var(--green-deep);
}

.featured-copy {
  position: relative;
  z-index: 2;
  padding: 38px 40px 26px;
}

.product-tag {
  color: var(--yellow-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.featured-primary .product-tag {
  color: var(--yellow);
}

.featured-copy h3 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.featured-copy p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.featured-primary .featured-copy p {
  color: rgba(255, 255, 255, .7);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--yellow-dark);
  font-size: 18px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.featured-image {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #eff0ec;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform .5s ease;
}

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

.featured-image > span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 5px 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .82);
  font-size: 10px;
}

.product-row {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.product-row-three {
  grid-template-columns: repeat(3, 1fr);
}

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

.product-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}

.section-more-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--black);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.product-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.product-card img,
.product-placeholder > .placeholder-mark {
  width: 100%;
  height: 240px;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  background: #eceee8;
}

.product-card img {
  mix-blend-mode: multiply;
}

.product-card > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 18px;
}

.product-card h3 {
  min-width: 0;
  margin: 0;
  font-size: 17px;
}

.product-card div > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
}

.placeholder-mark {
  display: grid;
  place-content: center;
  grid-template-columns: repeat(3, 48px);
  gap: 7px;
  background:
    linear-gradient(135deg, rgba(141, 200, 23, .12), transparent 45%),
    #e9ebe5 !important;
}

.placeholder-mark span {
  width: 48px;
  height: 70px;
  border: 1px solid rgba(17, 19, 16, .3);
  background: rgba(255, 255, 255, .45);
  transform: skewY(-8deg);
}

.placeholder-mark.honeycomb span {
  height: 48px;
  border-radius: 50%;
  transform: none;
}

.accessory-strip {
  width: min(100%, 1100px);
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px auto 0;
  color: var(--white);
  background: var(--black);
}

.accessory-image {
  overflow: hidden;
  background: #eceee8;
}

.accessory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.accessory-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 42px;
}

.accessory-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
}

.accessory-copy > p:not(.section-kicker) {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
}

.applications {
  background: var(--white);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 16px;
}

.scene-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.scene-wide {
  grid-column: span 2;
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, opacity .3s ease;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(10, 12, 9, .78));
  pointer-events: none;
}

.scene-card:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.scene-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
}

.scene-card figcaption span {
  font-size: 20px;
  font-weight: 800;
}

.scene-card figcaption small {
  color: rgba(255, 255, 255, .66);
}

.factory {
  width: min(calc(100% - 48px), 1100px);
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  margin: 110px auto;
  background: var(--yellow);
}

.factory-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

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

.photo-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(17, 19, 16, .72);
  font-size: 11px;
}

.factory-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 3.2vw, 42px);
}

.factory-content .section-kicker {
  color: var(--black);
}

.factory-content h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.045em;
}

.factory-content > p:not(.section-kicker) {
  margin: 0;
  color: rgba(17, 19, 16, .68);
  line-height: 1.65;
}

.factory-numbers {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0 16px;
  border-top: 1px solid rgba(17, 19, 16, .3);
  border-bottom: 1px solid rgba(17, 19, 16, .3);
}

.factory-numbers div {
  padding: 12px 0;
}

.factory-numbers div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(17, 19, 16, .3);
}

.factory-numbers strong,
.factory-numbers span {
  display: block;
}

.factory-numbers strong {
  font-size: 36px;
}

.factory-numbers span {
  margin-top: 4px;
  font-size: 12px;
}

.factory-list {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.factory-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
}

.factory-list li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process {
  padding-block: 100px;
}

.process .container {
  width: min(calc(100% - 48px), 1100px);
}

.process-image {
  position: relative;
  margin: 0 0 44px;
  overflow: hidden;
  background: #e8e4dc;
}

.process-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.process-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(17, 19, 16, .72);
  font-size: 11px;
  letter-spacing: .08em;
}

.process-grid li {
  height: 125px;
  min-height: 125px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 800;
}

.process-grid strong {
  display: block;
  font-size: 18px;
}

.process-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.news-center {
  color: var(--white);
  background: var(--black);
}

.news-center .split-heading > p {
  color: rgba(255, 255, 255, .56);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.news-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  transition: background .25s ease, transform .25s ease;
}

.news-card:last-child {
  border-right: 0;
}

.news-card:hover {
  background: var(--black-soft);
  transform: translateY(-5px);
}

.news-index,
.news-status {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.news-type {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.news-card h3 {
  margin: 0 0 16px;
  font-size: clamp(27px, 2.4vw, 36px);
}

.news-card div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 1.8;
}

.news-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.news-note p {
  margin: 0;
}

.news-note span {
  color: rgba(255, 255, 255, .72);
}

.home-news {
  padding: 72px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.home-news .container { width: min(calc(100% - 48px), 1100px); }
.home-news .section-heading { margin-bottom: 38px; }

.home-news-heading { align-items: end; }
.home-news-heading h2 { color: var(--white); }
.home-news-heading-side { display: grid; justify-items: start; gap: 14px; }
.home-news-heading-side p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.8; }
.home-news-heading-side a { color: var(--yellow); font-size: 13px; font-weight: 900; }
.home-news-shell { position: relative; }

.home-news-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-news-track::-webkit-scrollbar { display: none; }

.home-news-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 16px) / 2);
  height: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  background: #151815;
  scroll-snap-align: start;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.home-news-card:hover { border-color: var(--yellow); background: #1b1f1b; transform: translateY(-4px); }
.home-news-number { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.home-news-card > div { margin: 10px 0 8px; min-height: 0; }
.home-news-card small { color: rgba(255,255,255,.48); font-weight: 800; letter-spacing: .14em; }
.home-news-card h3 { max-width: 500px; display: -webkit-box; overflow: hidden; margin: 7px 0 8px; font-size: clamp(21px,1.8vw,25px); line-height: 1.18; letter-spacing: -.035em; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-news-card p { display: -webkit-box; overflow: hidden; margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-news-card b { color: var(--yellow); font-size: 13px; }

.home-news-controls { display: flex; justify-content: flex-end; align-items: center; gap: 8px; margin-top: 14px; }
.home-news-controls button { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.22); color: var(--white); background: transparent; font-size: 20px; cursor: pointer; }
.home-news-controls button:hover { border-color: var(--yellow); color: var(--black); background: var(--yellow); }
.home-news-progress { min-width: 190px; display: flex; align-items: center; gap: 12px; margin-right: auto; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.home-news-progress i { position: relative; width: 120px; height: 2px; overflow: hidden; background: rgba(255,255,255,.18); }
.home-news-progress em { position: absolute; inset: 0 auto 0 0; width: 33.333%; background: var(--yellow); transition: width .3s ease; }

.inquiry {
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(141, 200, 23, .09), transparent 38%),
    var(--black);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
}

.inquiry-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.inquiry-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 42px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.contact-list span {
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.contact-list strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.inquiry-form {
  padding: 42px;
  color: var(--black);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 13px 0;
  color: var(--black);
  border: 0;
  border-bottom: 1px solid #bfc2bb;
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color .2s ease;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--yellow-dark);
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.form-status {
  color: var(--green-deep);
  font-weight: 700;
}

.site-footer {
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, .65);
  background: #090a08;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(130px, .75fr));
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
  padding-bottom: 52px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.footer-intro strong {
  display: block;
  margin-top: 22px;
  color: var(--white);
  font-family: SimSun, "宋体", serif;
  font-size: 15px;
  font-weight: 400;
}

.footer-intro p {
  max-width: 330px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-contact address {
  max-width: 230px;
  font-style: normal;
  line-height: 1.7;
}

.footer-quote {
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 5px;
  color: var(--yellow);
  border-bottom: 1px solid rgba(250, 197, 38, .5);
  font-weight: 800;
}

.footer-secondary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
}

.footer-reserved,
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-reserved span:first-child {
  color: rgba(255, 255, 255, .38);
}

.footer-policy {
  color: rgba(255, 255, 255, .4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
}

.floating-inquiry {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  min-width: 132px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  font-size: 13px;
  font-weight: 800;
}

.floating-inquiry i {
  font-style: normal;
  font-size: 18px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - 72px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 40px;
    overflow-y: auto;
    color: var(--white);
    background: rgba(17, 19, 16, .99);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav > a:not(.nav-cta),
  .nav-parent-row {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: 18px;
  }

  .main-nav > a:not(.nav-cta)::after,
  .nav-parent-row > a::after {
    display: none;
  }

  .nav-item {
    width: 100%;
  }

  .nav-parent-row {
    justify-content: space-between;
  }

  .nav-parent-row > a {
    flex: 1;
    padding: 0;
  }

  .submenu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--yellow);
    border: 1px solid rgba(255, 255, 255, .16);
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transform: rotate(90deg);
    transition: transform .2s ease, background .2s ease;
  }

  .submenu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, .08);
    transform: rotate(-90deg);
  }

  .submenu {
    position: static;
    width: 100%;
    min-width: 0;
    display: none;
    padding: 18px 18px 22px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .035);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    transform: none;
  }

  .has-submenu.submenu-open > .submenu {
    display: grid;
  }

  .product-submenu {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compact-submenu {
    gap: 2px;
  }

  .submenu a {
    padding: 8px 0;
    font-size: 14px;
  }

  .nav-cta {
    margin-top: 24px;
    padding: 18px 20px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-meta {
    left: 0;
  }

  .hero-meta div {
    min-width: 140px;
  }

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

  .advantage-card:nth-child(2) {
    border-right: 0;
  }

  .advantage-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .featured-products {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: 1fr;
    min-height: 360px;
  }

  .product-row-three,
  .product-row-four {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card img,
  .product-placeholder > .placeholder-mark {
    height: 190px;
  }

  .product-row-four .product-card:last-child {
    grid-column: auto;
  }

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

  .scene-wide {
    grid-column: span 2;
  }

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

  .factory-image {
    min-height: 520px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-top {
    grid-template-columns: 170px 1fr;
  }

  .footer-top nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 68px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header,
  .site-header.scrolled {
    height: 68px;
  }

  .brand {
    width: auto;
    height: 46px;
    gap: 10px;
  }

  .brand img {
    width: 84px;
  }

  .brand-company-name {
    font-size: 11px;
    letter-spacing: 0;
  }

  .main-nav {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .hero {
    min-height: 700px;
    height: 100svh;
    max-height: 820px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 13, 10, .9), rgba(11, 13, 10, .38)),
      linear-gradient(0deg, rgba(11, 13, 10, .85), rgba(11, 13, 10, .25) 72%);
  }

  .hero-grid {
    background-size: 54px 54px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 138px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
    line-height: 1.04;
  }

  .hero h1 em {
    margin-top: 12px;
    font-size: .48em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-meta {
    right: 0;
    bottom: 28px;
    left: 0;
  }

  .hero-meta div {
    min-width: 0;
    flex: 1;
    padding: 14px 10px 0 0;
  }

  .hero-meta strong {
    font-size: 18px;
  }

  .hero-meta span {
    font-size: 10px;
  }

  .visual-note {
    display: none;
  }

  .section-dark,
  .section-light,
  .applications,
  .process,
  .news-center,
  .inquiry {
    padding: 76px 0;
  }

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

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split-heading > p {
    font-size: 13px;
  }

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

  .advantage-card,
  .advantage-card:nth-child(2) {
    min-height: auto;
    padding: 26px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .advantage-card:last-child {
    border-bottom: 0;
  }

  .advantage-card h3 {
    margin: 22px 0 8px;
  }

  .featured-card {
    min-height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .featured-copy {
    padding: 28px 24px 20px;
  }

  .featured-copy h3 {
    font-size: 34px;
  }

  .featured-copy p {
    font-size: 13px;
  }

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

  .product-row-three,
  .product-row-four {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card img,
  .product-placeholder > .placeholder-mark {
    height: 132px;
  }

  .product-card > div:last-child {
    display: block;
    padding: 14px 12px;
  }

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

  .product-card div > span {
    display: block;
    margin-top: 5px;
  }

  .placeholder-mark {
    grid-template-columns: repeat(3, 30px);
  }

  .placeholder-mark span {
    width: 30px;
    height: 46px;
  }

  .placeholder-mark.honeycomb span {
    height: 30px;
  }

  .accessory-strip {
    grid-template-columns: 1fr;
  }

  .accessory-image {
    min-height: 260px;
  }

  .accessory-copy {
    padding: 36px 24px;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .scene-wide {
    grid-column: auto;
  }

  .factory-image {
    min-height: 340px;
  }

  .factory {
    width: calc(100% - 32px);
    margin: 76px auto;
  }

  .factory-content {
    padding: 64px 24px;
  }

  .factory-content h2 {
    font-size: 36px;
  }

  .factory-numbers strong {
    font-size: 28px;
  }

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

  .process {
    padding-block: 72px;
  }

  .process .container {
    width: calc(100% - 32px);
  }

  .process-image {
    margin-bottom: 30px;
  }

  .process-grid li,
  .process-grid li:nth-child(2) {
    height: auto;
    min-height: auto;
    padding: 24px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid span {
    margin-bottom: 20px;
  }

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

  .news-card {
    min-height: 270px;
    padding: 26px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .news-card:last-child {
    border-bottom: 0;
  }

  .news-note {
    flex-direction: column;
    gap: 10px;
  }

  .inquiry-grid {
    gap: 44px;
  }

  .inquiry-copy h2 {
    font-size: 40px;
  }

  .inquiry-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-intro,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-secondary {
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-inquiry {
    right: 12px;
    bottom: 12px;
    min-width: 116px;
    height: 44px;
  }
}

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

/* Homepage featured products: compact vertical proportion */
@media (min-width: 981px) {
  .featured-card {
    height: 620px;
    min-height: 0;
    grid-template-rows: auto minmax(0,1fr);
  }

  .featured-copy { padding: 30px 34px 22px; }
  .featured-copy h3 { margin-top: 8px; }
  .featured-copy p { margin-bottom: 16px; line-height: 1.65; }
  .featured-image { min-height: 0; }
  .featured-image img { object-fit: contain; }
}

@media (max-width: 980px) {
  .featured-card { min-height: 330px; }
  .featured-image { min-height: 0; }
  .featured-image img { object-fit: contain; }
}

@media (max-width: 600px) {
  .featured-card { min-height: 430px; }
  .featured-image { min-height: 220px; }
}

/* Shared content pages */
.content-page {
  background: #f3f3ef;
  color: var(--black);
}

.content-hero {
  padding: 176px 0 88px;
  background: #101310;
  color: #fff;
}

.content-hero .eyebrow,
.content-section .eyebrow {
  color: var(--yellow);
}

.content-hero h1 {
  max-width: 900px;
  margin: 18px 0 26px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .98;
  letter-spacing: -.055em;
}

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

.content-section {
  padding: 92px 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-heading {
  display: grid;
  grid-template-columns: minmax(260px,.8fr) 1.2fr;
  gap: 80px;
  margin-bottom: 52px;
}

.content-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(38px,5vw,68px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.content-heading p,
.prose p,
.prose li {
  color: #626861;
  line-height: 1.95;
}

.fact-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact-card,
.article-card {
  min-height: 260px;
  padding: 34px;
  background: #fff;
}

.fact-card span,
.article-card time {
  color: #999f98;
  font-size: 12px;
  letter-spacing: .12em;
}

.fact-card h3,
.article-card h2 {
  margin: 54px 0 14px;
  font-size: 25px;
  line-height: 1.35;
}

.article-card p {
  color: #747a73;
  line-height: 1.7;
}

.article-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--black);
  font-weight: 800;
}

.split-media {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--yellow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  padding: 70px 58px;
}

.split-copy h2 {
  margin: 12px 0 26px;
  font-size: clamp(40px,5vw,72px);
  line-height: 1;
  letter-spacing: -.05em;
}

.split-copy p { line-height: 1.9; }

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0,760px);
  justify-content: center;
  gap: 70px;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: 13px;
  line-height: 1.8;
  color: #777d76;
}

.prose h2 {
  margin: 54px 0 18px;
  font-size: 34px;
}

.prose h3 { margin: 34px 0 12px; font-size: 22px; }
.prose table { width: 100%; border-collapse: collapse; margin: 28px 0; background: #fff; }
.prose th,.prose td { padding: 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: #171a17; color: #fff; }
.source-note { margin-top: 58px; padding: 24px; background: #ecece6; font-size: 13px; color: #6f756e; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-bottom: 54px;
}
.contact-card { padding: 30px; background:#fff; border:1px solid var(--line); }
.contact-card span { display:block; margin-bottom:22px; color:#8b918a; font-size:12px; letter-spacing:.12em; }
.contact-card strong,.contact-card a { color:var(--black); font-size:20px; line-height:1.5; }
.contact-location { display:grid; grid-template-columns:1fr auto; align-items:end; gap:40px; margin-bottom:72px; padding:42px; color:#fff; background:var(--green-deep); }
.contact-location h2 { margin:12px 0 18px; font-size:clamp(34px,4vw,54px); }
.contact-location p { margin:0; color:rgba(255,255,255,.68); line-height:1.85; }
.contact-location a { padding:18px 22px; color:var(--black); background:var(--yellow); font-weight:900; }
.contact-inquiry-form select { width:100%; min-height:58px; margin-top:9px; padding:0 16px; border:1px solid #bfc2bb; border-radius:0; color:var(--black); background:#fff; font:inherit; }
.contact-inquiry-form select option { color:#111310; background:#fff; }
.contact-inquiry-form input[type="file"] { min-height:auto; padding:14px; border:1px solid #bfc2bb; color:#626861; background:#f4f4ef; }
.contact-inquiry-form input[type="file"]::file-selector-button { margin-right:14px; padding:10px 14px; border:0; color:#111310; background:var(--yellow); font-weight:800; cursor:pointer; }
.contact-inquiry-form .required-mark,.contact-inquiry-form .optional-mark { float:right; font-size:10px; font-weight:800; letter-spacing:.08em; }
.contact-inquiry-form .required-mark { color:var(--yellow-dark); }
.contact-inquiry-form .optional-mark { color:#8a9089; }
.contact-inquiry-form .file-field small { display:block; margin-top:10px; color:#777d75; font-size:11px; line-height:1.65; }
.contact-inquiry-form .submit-button { min-height:58px; color:var(--black); background:var(--yellow); font-size:15px; font-weight:900; }
.contact-inquiry-form .form-note { margin:12px 0 0; color:#777d75; font-size:11px; line-height:1.7; }

.footer-reserved a {
  color: rgba(255,255,255,.72);
}

.footer-reserved a:hover {
  color: var(--yellow);
}

.faq-list {
  max-width: 980px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  background: #fff;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 30px 64px 30px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position:absolute; right:28px; color:var(--yellow-dark); font-size:28px; font-weight:400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin:0; padding:0 80px 30px 28px; color:#696f68; line-height:1.9; }

.download-panel {
  display:grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items:center;
}

.download-copy h2 { margin:14px 0 26px; font-size:clamp(38px,5vw,68px); line-height:1.05; letter-spacing:-.045em; }
.download-copy p,.download-copy li { color:#666c65; line-height:1.85; }
.download-button { display:inline-flex; margin-top:24px; padding:18px 24px; background:var(--yellow); color:var(--black); font-weight:900; box-shadow:var(--shadow); }
.download-cover { min-height:570px; padding:48px; display:flex; flex-direction:column; background:#111310; color:#fff; box-shadow:var(--shadow); }
.download-cover img { width:180px; height:auto; }
.download-cover span { margin-top:100px; color:var(--yellow); font-size:11px; letter-spacing:.18em; }
.download-cover strong { margin-top:18px; font-size:44px; line-height:1.08; }
.download-cover small { margin-top:auto; color:rgba(255,255,255,.5); letter-spacing:.12em; }

@media (max-width: 980px) {
  .download-panel { grid-template-columns:1fr; }
  .download-cover { min-height:460px; }
}

@media (max-width: 600px) {
  .faq-list summary { padding:24px 54px 24px 18px; font-size:17px; }
  .faq-list summary::after { right:18px; }
  .faq-list details p { padding:0 28px 24px 18px; }
  .download-cover { min-height:410px; padding:30px; }
  .download-cover span { margin-top:72px; }
  .download-cover strong { font-size:36px; }
}

/* Shared content navigation */
.page-breadcrumb {
  position: relative;
  z-index: 2;
  padding: 112px 0 0;
  background: #111310;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.page-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.page-breadcrumb a { color: rgba(255,255,255,.64); }
.page-breadcrumb a:hover { color: var(--yellow); }
.page-breadcrumb i { font-style: normal; opacity: .45; }
.page-breadcrumb span { color: #fff; }
.page-breadcrumb + .content-hero { padding-top: 58px; }
.page-breadcrumb + .product-detail-hero { padding-top: 28px; }

.product-page-nav {
  position: sticky;
  top: 74px;
  z-index: 8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}

.product-page-nav .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-page-nav strong { font-size: 14px; }
.product-page-nav .container > div { display: flex; align-items: center; gap: 24px; }
.product-page-nav a { color: #636a62; font-size: 12px; font-weight: 800; }
.product-page-nav a:hover { color: var(--green-deep); }
.product-page-nav .product-page-nav-cta { padding: 10px 14px; background: var(--yellow); color: var(--black); }
.form-note-active { padding: 13px 15px; border-left: 3px solid var(--yellow-dark); background: #fff7d8; color: #514714 !important; }

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible,[contenteditable="true"]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

section[id="specifications"],section[id="product-applications"],section[id="related-products"] { scroll-margin-top: 150px; }

@media (max-width: 980px) {
  .page-breadcrumb { padding-top: 84px; }
  .product-page-nav { top: 70px; }
  .product-page-nav strong { display: none; }
  .product-page-nav .container { overflow-x: auto; }
  .product-page-nav .container > div { min-width: max-content; width: 100%; justify-content: space-between; }
}

@media (max-width: 600px) {
  .page-breadcrumb { padding-top: 72px; }
  .page-breadcrumb .container { width: min(calc(100% - 32px),1100px); overflow-x: auto; white-space: nowrap; }
  .page-breadcrumb + .content-hero { padding-top: 42px; }
  .page-breadcrumb + .product-detail-hero { padding-top: 18px; }
  .product-page-nav { top: 62px; }
  .product-page-nav .container { width: 100%; padding: 0 16px; }
  .product-page-nav .container > div { gap: 18px; }
}

/* Product detail pages */
.product-detail-hero {
  padding: 150px 0 72px;
  background: #f4f4ef;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  min-height: 320px;
  background: #fff;
  border: 1px solid var(--line);
}

.product-detail-copy {
  padding: 10px 42px;
  background: var(--green-deep);
  color: #fff;
}

.product-detail-copy .eyebrow { color: var(--yellow); }
.product-back-link { display:inline-block; margin-bottom:12px; color:rgba(255,255,255,.72); font-size:12px; font-weight:800; letter-spacing:.08em; }
.product-back-link:hover { color:#fff; }
.main-nav > a[aria-current="page"],
.nav-parent-row > a[aria-current="page"] { color: var(--yellow); }
.submenu a[aria-current="page"] { color: var(--yellow); }
.product-detail-copy h1 { margin: 8px 0 12px; font-size: clamp(42px,4.5vw,62px); line-height: .98; letter-spacing: -.05em; }
.product-detail-copy p { color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.65; }
.product-detail-copy .text-link { display:inline-block; margin-top:10px; color:#fff; font-weight:900; }

.product-detail-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.product-detail-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; transform:scale(1.18); transform-origin:center; }
.product-detail-media img.product-media-image--stone { transform:scale(1.35); }
.product-detail-media .media-label { position:absolute; right:22px; bottom:18px; color:#858b84; font-size:12px; }

.product-image-placeholder {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  min-height: 420px;
  display:grid;
  place-items:center;
  border:1px dashed #bfc3bc;
  background:linear-gradient(135deg,#fafaf7,#eceee8);
  color:#8a9089;
  text-align:center;
}

.product-image-placeholder strong { display:block; margin-bottom:10px; color:#333832; font-size:24px; }

.spec-table-wrap { overflow-x:auto; border:1px solid var(--line); }
.spec-table { width:100%; border-collapse:collapse; background:#fff; }
.spec-table th,.spec-table td { padding:24px 26px; border-right:1px solid var(--line); text-align:left; vertical-align:top; }
.spec-table th:last-child,.spec-table td:last-child { border-right:0; }
.spec-table th { background:#151815; color:#fff; font-size:12px; letter-spacing:.12em; }
.spec-table td { font-size:18px; font-weight:700; }

.joint-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; }
.joint-card { background:#fff; border:1px solid var(--line); }
.joint-image { width:100%; height:320px; overflow:hidden; background:#f5f5f2; }
.joint-image img { display:block; width:100%; height:100%; object-fit:contain; }
.joint-placeholder { width:100%; height:320px; min-height:0; display:grid; place-items:center; background:linear-gradient(135deg,#f8f8f4,#e9ebe5); color:#9aa098; text-align:center; }
.joint-placeholder span { display:block; margin-top:8px; font-size:12px; }
.joint-card h3 { margin:0; padding:24px; font-size:20px; }

.product-application-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.product-application-grid--two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.product-application-grid div { padding:34px; background:#fff; }
.product-application-image { display:block; width:calc(100% + 68px); height:220px; margin:-34px -34px 28px; object-fit:cover; }
.product-application-image--centered { object-fit:contain; object-position:center center; background:#f5f5f2; }
.product-application-grid .product-application-card--centered { text-align:center; }
.product-application-grid strong { display:block; margin-bottom:10px; font-size:21px; }
.product-application-grid p { margin:0; color:#717770; line-height:1.8; }

.product-cta { padding:70px 0; background:var(--yellow); }
.product-cta .container { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.product-cta h2 { margin:0; font-size:clamp(34px,4vw,58px); letter-spacing:-.04em; }
.product-cta a { padding:18px 24px; background:#111310; color:#fff; font-weight:900; }

@media (max-width:980px) {
  .product-detail-grid { grid-template-columns:1fr; }
  .product-detail-copy { padding:46px 28px; }
  .product-detail-media { min-height:430px; }
  .product-detail-media img { transform:none; }
  .product-detail-media img.product-media-image--stone { transform:scale(1.18); }
  .joint-grid,.product-application-grid { grid-template-columns:1fr; }
  .product-cta .container { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 600px) {
  .home-news { padding: 58px 0; }
  .home-news .container { width: min(calc(100% - 32px), 1100px); }
  .home-news .section-heading { margin-bottom: 28px; }
  .home-news-card { flex-basis: 88%; height: 200px; min-height: 200px; padding: 16px 18px; }
  .home-news-card h3 { font-size: 21px; }
  .home-news-controls { justify-content: flex-start; }
}

@media (max-width:600px) {
  .product-detail-hero { padding:108px 0 48px; }
  .product-detail-copy h1 { font-size:48px; }
  .product-detail-media { min-height:330px; }
  .product-image-placeholder { width:calc(100% - 32px); height:calc(100% - 32px); min-height:280px; }
  .spec-table th,.spec-table td { padding:18px 16px; min-width:150px; }
  .joint-image,.joint-placeholder { height:280px; min-height:0; }
}

@media (max-width: 980px) {
  .content-hero { padding: 132px 0 66px; }
  .content-heading,.split-media,.article-layout { grid-template-columns:1fr; gap:34px; }
  .fact-grid,.article-grid,.contact-cards { grid-template-columns:1fr; }
  .contact-location { grid-template-columns:1fr; align-items:start; padding:30px 26px; }
  .contact-location a { justify-self:start; }
  .article-aside { position:static; }
  .split-media img { min-height:340px; }
  .split-copy { padding:48px 26px; }
}

@media (max-width: 600px) {
  .content-hero h1 { font-size:46px; }
  .content-hero p { font-size:16px; }
  .content-section { padding:66px 0; }
  .fact-card,.article-card { min-height:auto; padding:26px 22px; }
  .fact-card h3,.article-card h2 { margin-top:30px; }
  .prose table { display:block; overflow-x:auto; }
}

/* Product center, grille and metal trim pages */
.catalog-hero p { max-width: 720px; }

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

.catalog-card {
  grid-column: span 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  transition: transform .25s ease, box-shadow .25s ease;
}

.catalog-card-wide { grid-column: span 3; }
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.catalog-card img { width: 100%; height: 310px; object-fit: contain; background: #fff; }
.catalog-card-wide img { height: 410px; }
.catalog-card > div:last-child { padding: 24px 26px 28px; }
.catalog-card span { color: #9a7900; font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.catalog-card h3 { margin: 8px 0 0; font-size: 28px; }
.catalog-card p { margin: 12px 0 0; color: #72786f; line-height: 1.75; }
.catalog-card b { display: inline-block; margin-top: 18px; color: #8d7000; font-size: 12px; }
.catalog-placeholder { height: 310px; display: grid; place-content: center; gap: 8px; text-align: center; background: linear-gradient(135deg,#fafaf7,#eceee8); color: #8b918a; }
.catalog-placeholder strong { color: #41463f; font-size: 21px; }

.catalog-support { background: #111310; color: #fff; }
.catalog-support .content-heading p { color: rgba(255,255,255,.58); }
.catalog-entry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #3b3e39; border: 1px solid #3b3e39; }
.catalog-entry-grid a { min-height: 360px; padding: 44px; display: flex; flex-direction: column; background: #171a17; color: #fff; }
.catalog-entry-grid a:last-child { background: var(--green-deep); }
.catalog-entry-grid span { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.catalog-entry-grid h3 { margin: auto 0 10px; font-size: clamp(42px,5vw,70px); }
.catalog-entry-grid p { margin: 0 0 28px; color: rgba(255,255,255,.62); }
.catalog-entry-grid b { color: #fff; }

.grille-featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grille-more { background: #f4f4ef; }
.grille-row { display: grid; gap: 14px; margin-top: 14px; }
.grille-row-four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.grille-row-three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grille-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.grille-card img { width: 100%; height: 210px; object-fit: cover; background: #fff; }
.grille-card img.grille-card-image-contain { object-fit: contain; object-position: center; }
.grille-card-featured img { height: 430px; object-fit: contain; }
.grille-card > div { padding: 24px; }
.grille-card span { color: #987800; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.grille-card h3 { margin: 10px 0 12px; font-size: 25px; }
.grille-card p { margin: 0; color: #747a73; line-height: 1.65; }

.trim-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.trim-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.trim-card img { width: 100%; height: 300px; object-fit: contain; background: #fff; }
.trim-card h3 { margin: 0; padding: 22px 22px 5px; font-size: 19px; }
.trim-card p { margin: 0; padding: 0 22px 24px; color: #777d75; }

.category-note { padding: 52px 0; background: var(--yellow); }
.category-note .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.category-note span { font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.category-note p { margin: 0; line-height: 1.7; }
.category-note a { padding: 16px 20px; color: #fff; background: var(--black); font-weight: 900; }

.product-feature-section { padding: 84px 0; background: #f4f4ef; }
.product-feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.product-feature-grid article { min-height: 250px; padding: 30px; background: #fff; }
.product-feature-grid span { color: var(--yellow-dark); font-size: 12px; font-weight: 900; }
.product-feature-grid h3 { margin: 55px 0 12px; font-size: 24px; }
.product-feature-grid p { margin: 0; color: #747a73; line-height: 1.75; }

.related-products { padding: 90px 0; background: #f4f4ef; }
.related-product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.related-product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); color: var(--black); background: #fff; }
.related-product-card img,.related-product-placeholder { width: 100%; height: 260px; object-fit: contain; background: #fff; }
.related-product-placeholder { display: grid; place-items: center; color: #8a9089; background: linear-gradient(135deg,#fafaf7,#eceee8); }
.related-product-card > div:last-child { padding: 22px 24px; }
.related-product-card h3 { margin: 0 0 10px; font-size: 23px; }
.related-product-card span { color: #927300; font-size: 12px; font-weight: 900; }

/* Applications summary page */
.application-hero p { max-width:760px; }
.application-overview { background:#f4f4ef; }
.application-index-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; border:1px solid var(--line); background:var(--line); }
.application-index-grid a { min-height:250px; display:flex; flex-direction:column; padding:28px; color:var(--black); background:#fff; }
.application-index-grid span { color:var(--yellow-dark); font-size:12px; font-weight:900; }
.application-index-grid h3 { margin:auto 0 10px; font-size:26px; }
.application-index-grid p { margin:0; color:#747a73; font-size:13px; line-height:1.7; }

.application-band { padding:82px 0; background:#fff; scroll-margin-top:100px; }
.application-band-alt { background:#111310; color:#fff; }
.application-band-grid { width:min(calc(100% - 48px),1100px); display:grid; grid-template-columns:1.15fr .85fr; align-items:stretch; gap:0; }
.application-media-pair { min-width:0; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.application-single-media { min-width:0; }
.application-media-pair figure,.application-single-media figure { position:relative; min-height:470px; margin:0; overflow:hidden; background:#e9ebe5; }
.application-media-pair img,.application-single-media img { width:100%; height:100%; object-fit:cover; }
.application-media-pair figcaption,.application-single-media figcaption { position:absolute; right:14px; bottom:14px; padding:7px 10px; color:#fff; background:rgba(17,19,16,.72); font-size:11px; }
.application-copy { display:flex; flex-direction:column; justify-content:center; padding:48px; background:var(--yellow); color:var(--black); }
.application-band-alt .application-copy { background:var(--green-deep); color:#fff; }
.application-band-alt .application-media-pair,.application-band-alt .application-single-media { order:2; }
.application-copy .eyebrow { color:inherit; opacity:.7; }
.application-copy h2 { margin:14px 0 22px; font-size:clamp(38px,4.5vw,58px); line-height:1.05; letter-spacing:-.045em; }
.application-copy > p { margin:0; color:inherit; opacity:.7; line-height:1.85; }
.application-products { display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:34px; padding-top:24px; border-top:1px solid currentColor; }
.application-products span { width:100%; font-size:11px; font-weight:900; letter-spacing:.12em; opacity:.6; }
.application-products a { color:inherit; font-size:13px; font-weight:900; }
.application-disclaimer { padding:58px 0; background:#f4f4ef; }
.application-disclaimer .container { width:min(calc(100% - 48px),1100px); display:grid; grid-template-columns:auto 1fr; gap:34px; align-items:start; }
.application-disclaimer strong { color:#8d7000; font-size:12px; letter-spacing:.14em; }
.application-disclaimer p { margin:0; color:#6f756e; line-height:1.85; }

@media (max-width: 980px) {
  .catalog-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-card,.catalog-card-wide { grid-column: span 1; }
  .catalog-card img,.catalog-card-wide img { height: 300px; }
  .grille-row-four,.trim-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grille-row-three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-feature-grid,.related-product-grid { grid-template-columns: 1fr; }
  .category-note .container { grid-template-columns: 1fr; justify-items: start; }
  .application-index-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .application-band-grid { grid-template-columns:1fr; }
  .application-band-alt .application-media-pair,.application-band-alt .application-single-media { order:0; }
}

@media (max-width: 600px) {
  .catalog-product-grid,.catalog-entry-grid,.grille-featured-grid,.grille-row-four,.grille-row-three,.trim-grid { grid-template-columns: 1fr; }
  .catalog-card img,.catalog-card-wide img { height: 270px; }
  .catalog-entry-grid a { min-height: 280px; padding: 30px 24px; }
  .grille-card-featured img { height: 310px; }
  .grille-card img { height: 220px; }
  .trim-card img { height: 280px; }
  .application-index-grid { grid-template-columns:1fr; }
  .application-index-grid a { min-height:190px; }
  .application-band { padding:54px 0; }
  .application-band-grid { width:min(calc(100% - 32px),1100px); }
  .application-media-pair { grid-template-columns:1fr; }
  .application-media-pair figure,.application-single-media figure { min-height:300px; }
  .application-copy { padding:34px 24px; }
  .application-copy h2 { font-size:38px; }
  .application-disclaimer .container { width:min(calc(100% - 32px),1100px); grid-template-columns:1fr; gap:14px; }
}
/* Site-wide inquiry dialog */
.site-inquiry-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink, #101410);
  overflow: visible;
}

.site-inquiry-dialog::backdrop {
  background: rgba(6, 10, 7, 0.76);
  backdrop-filter: blur(4px);
}

.site-inquiry-panel {
  position: relative;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: #f6f6f2;
  border-top: 5px solid #f5c226;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  padding: 38px;
}

.site-inquiry-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid #c9ccc5;
  border-radius: 50%;
  background: #fff;
  color: #101410;
  font: 400 30px/1 sans-serif;
  cursor: pointer;
}

.site-inquiry-close:hover,
.site-inquiry-close:focus-visible { background: #f5c226; }

.site-inquiry-heading { padding-right: 48px; margin-bottom: 24px; }
.site-inquiry-heading h2 { margin: 8px 0 10px; font-size: clamp(30px, 5vw, 48px); line-height: 1.05; }
.site-inquiry-heading p { margin: 0; color: #676d67; line-height: 1.7; }

.site-inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-inquiry-form label { display: grid; gap: 8px; font-weight: 700; }
.site-inquiry-form input,
.site-inquiry-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd2cb;
  border-radius: 0;
  background: #fff;
  color: #101410;
  padding: 10px 12px;
  font: inherit;
}
.site-inquiry-form input:focus,
.site-inquiry-form select:focus { outline: 3px solid rgba(245, 194, 38, 0.35); border-color: #a77d00; }
.site-inquiry-form .site-inquiry-file,
.site-inquiry-form .submit-button,
.site-inquiry-note { grid-column: 1 / -1; }
.site-inquiry-form small,
.site-inquiry-note { color: #676d67; font-weight: 400; line-height: 1.55; }
.site-inquiry-note { margin: 0; font-size: 13px; }

.thank-you-main { min-height: 72vh; display: grid; align-items: center; background: #f2f2ee; }
.thank-you-card { max-width: 900px; margin: 56px auto; padding: clamp(40px, 8vw, 88px); background: #111612; color: #fff; border-top: 6px solid #f5c226; }
.thank-you-card h1 { margin: 14px 0 18px; font-size: clamp(48px, 8vw, 92px); line-height: .98; }
.thank-you-card > p { max-width: 680px; color: #c4c8c3; font-size: 18px; line-height: 1.8; }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.thank-you-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid #fff; color: #fff; text-decoration: none; font-weight: 800; }
.thank-you-actions a:first-child { background: #f5c226; border-color: #f5c226; color: #101410; }

@media (max-width: 640px) {
  .site-inquiry-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .site-inquiry-panel { max-height: calc(100dvh - 20px); padding: 28px 18px 22px; }
  .site-inquiry-heading { padding-right: 42px; margin-bottom: 18px; }
  .site-inquiry-form { grid-template-columns: 1fr; gap: 13px; }
  .site-inquiry-form .site-inquiry-file,
  .site-inquiry-form .submit-button,
  .site-inquiry-note { grid-column: auto; }
  .site-inquiry-close { top: 10px; right: 10px; }
  .thank-you-main { min-height: 65vh; }
  .thank-you-card { margin: 24px auto; }
  .thank-you-actions { flex-direction: column; }
}

.privacy-main { background: #f2f2ee; }
.privacy-hero { padding: clamp(70px, 10vw, 130px) 0 48px; background: #101410; color: #fff; }
.privacy-hero h1 { margin: 12px 0 20px; font-size: clamp(48px, 8vw, 92px); line-height: .98; }
.privacy-hero p { max-width: 760px; margin: 0; color: #c4c8c3; line-height: 1.8; }
.privacy-content { padding: clamp(48px, 8vw, 100px) 0; }
.privacy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: clamp(32px, 7vw, 100px); align-items: start; }
.privacy-article { max-width: 900px; }
.privacy-article section { padding: 30px 0; border-top: 1px solid #d5d8d1; }
.privacy-article section:first-child { padding-top: 0; border-top: 0; }
.privacy-article h2 { margin: 0 0 14px; font-size: clamp(25px, 3vw, 36px); }
.privacy-article p, .privacy-article li { color: #626963; line-height: 1.85; }
.privacy-article ul { padding-left: 1.25em; }
.privacy-meta { position: sticky; top: 110px; padding: 24px; background: #f5c226; color: #101410; }
.privacy-meta strong, .privacy-meta span, .privacy-meta a { display: block; }
.privacy-meta span { margin-top: 12px; font-size: 13px; opacity: .7; }
.privacy-meta a { margin-top: 5px; color: inherit; overflow-wrap: anywhere; }

.cookie-notice { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1200; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1180px; margin: auto; padding: 18px 20px; background: #101410; color: #fff; border-top: 4px solid #f5c226; box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; color: #d5d9d4; line-height: 1.65; }
.cookie-notice a { color: #f5c226; font-weight: 800; }
.cookie-notice button { flex: 0 0 auto; min-height: 44px; padding: 0 22px; border: 0; background: #f5c226; color: #101410; font: inherit; font-weight: 800; cursor: pointer; }

@media (max-width: 720px) {
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-meta { position: static; }
  .cookie-notice { left: 10px; right: 10px; bottom: 10px; display: grid; gap: 14px; padding: 16px; }
  .cookie-notice button { width: 100%; }
}

/* Restrained site-wide motion and interaction states */
:root { --motion-fast: 180ms; --motion-base: 320ms; --motion-ease: cubic-bezier(.22, 1, .36, 1); }

.motion-enabled .motion-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--motion-base) var(--motion-ease), transform var(--motion-base) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-enabled .motion-reveal.is-visible { opacity: 1; transform: translateY(0); }

.button,
.submit-button,
.nav-cta,
.footer-quote,
.floating-inquiry,
.product-page-nav-cta,
.cookie-notice button,
.thank-you-actions a {
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) ease;
}

.product-card,
.featured-card,
.scene-card,
.news-card,
.home-news-card,
.related-product-card,
.catalog-card,
.contact-card,
.product-feature-grid > article,
.product-application-grid > * {
  transition: transform var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.product-card img,
.featured-card img,
.scene-card img,
.related-product-card img,
.catalog-card img,
.product-application-grid img {
  transition: transform 420ms var(--motion-ease);
  transform-origin: center;
}

input,
select,
textarea,
[contenteditable="true"] {
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background-color var(--motion-fast) ease;
}
input:focus,
select:focus,
textarea:focus,
[contenteditable="true"]:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(245, 194, 38, .18);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .submit-button:hover,
  .nav-cta:hover,
  .footer-quote:hover,
  .floating-inquiry:hover,
  .product-page-nav-cta:hover,
  .cookie-notice button:hover,
  .thank-you-actions a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.14); }

  .product-card:hover,
  .featured-card:hover,
  .scene-card:hover,
  .news-card:hover,
  .home-news-card:hover,
  .related-product-card:hover,
  .catalog-card:hover,
  .contact-card:hover,
  .product-feature-grid > article:hover,
  .product-application-grid > *:hover { transform: translateY(-4px); }

  .product-card:hover img,
  .featured-card:hover img,
  .scene-card:hover img,
  .related-product-card:hover img,
  .catalog-card:hover img,
  .product-application-grid > *:hover img { transform: scale(1.025); }
}

@media (max-width: 980px) {
  .motion-enabled .motion-reveal { transform: translateY(8px); }
  .motion-enabled .motion-reveal.is-visible { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .motion-enabled .motion-reveal { opacity: 1 !important; transform: none !important; }
  .product-card img,
  .featured-card img,
  .scene-card img,
  .related-product-card img,
  .catalog-card img,
  .product-application-grid img { transform: none !important; }
}
