:root {
  --ink: #0d171d;
  --graphite: #172631;
  --slate: #30404a;
  --paper: #f8f6f0;
  --porcelain: #fffdf8;
  --mist: #e9efeb;
  --steel: #5d7378;
  --teal: #246964;
  --moss: #7b8e70;
  --gold: #cf9d4a;
  --copper: #ad6e38;
  --line: rgba(18, 23, 25, 0.13);
  --line-dark: rgba(255, 253, 248, 0.17);
  --muted: #66706c;
  --shadow: 0 24px 70px rgba(18, 23, 25, 0.14);
  --max: 1220px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--porcelain);
  background: var(--teal);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  padding: 6px max(18px, calc((100% - var(--max)) / 2));
  color: rgba(255, 253, 248, 0.82);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 0.78rem;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.utility-bar a {
  color: rgba(255, 253, 248, 0.82);
  transition: color 180ms ease;
}

.utility-bar a:hover {
  color: var(--gold);
}

.utility-bar span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.market-badge {
  min-height: 24px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 800;
}

.market-badge::before {
  display: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section[id] {
  scroll-margin-top: 126px;
}

.site-header {
  position: fixed;
  inset: 38px 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) 152px;
  align-items: center;
  gap: 0;
  min-height: 86px;
  padding: 0 30px;
  color: #161a1c;
  background: #d0d3d2;
  border-bottom: 1px solid rgba(54, 58, 60, 0.24);
  box-shadow: 0 10px 28px rgba(18, 23, 25, 0.12);
  backdrop-filter: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: #161a1c;
  background: #d0d3d2;
  border-bottom-color: rgba(54, 58, 60, 0.24);
  box-shadow: 0 10px 28px rgba(18, 23, 25, 0.12);
  backdrop-filter: none;
}

.brand {
  display: inline-grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  width: fit-content;
  min-height: 48px;
}

.brand img {
  grid-row: 1 / 3;
  border-radius: 50%;
}

.brand span {
  font-weight: 760;
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.72rem;
}

.nav-links {
  align-self: stretch;
  display: grid;
  grid-template-columns: 0.76fr 1.18fr 2.18fr 1.72fr 1.82fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  height: 100%;
  border-left: 1px solid rgba(54, 58, 60, 0.2);
}

.nav-links a,
.mobile-nav a,
.site-footer a {
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links > a,
.nav-dropdown > a,
.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
  min-height: 86px;
  padding: 0 14px;
  color: #15191b;
  border-right: 1px solid rgba(54, 58, 60, 0.2);
  font-size: clamp(0.72rem, 0.86vw, 0.94rem);
  font-weight: 820;
  line-height: 1.14;
  text-align: center;
  opacity: 1;
  cursor: default;
  background: transparent;
}

.nav-links > a::after,
.nav-dropdown > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  min-width: 0;
}

.nav-dropdown > a,
.nav-dropdown > button {
  width: 100%;
  height: 100%;
}

.nav-dropdown > button {
  appearance: none;
  font: inherit;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
}

.nav-with-caret {
  gap: 8px;
}

.nav-with-caret span {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #f08300;
}

.nav-links > a:hover::after,
.nav-dropdown:hover > button::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > button::after,
.nav-dropdown:focus-within > a::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 60;
  width: min(560px, 42vw);
  min-width: 430px;
  padding: 0;
  color: #2f8299;
  background: #fff;
  border: 1px solid rgba(22, 28, 31, 0.12);
  box-shadow: 0 28px 55px rgba(18, 23, 25, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(18, 23, 25, 0.08);
  color: #2f8299;
  font-size: clamp(1.18rem, 1.72vw, 1.92rem);
  font-weight: 780;
  line-height: 1.16;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.nav-submenu a:last-child {
  border-bottom: 0;
}

.nav-submenu a:hover {
  color: #f08300;
  background: #f8f8f5;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta,
.button,
.doc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 0 16px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.header-cta:hover,
.button:hover,
.doc-button:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  inset: 108px 16px auto 16px;
  display: none;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.mobile-nav > a:last-child {
  border-bottom: 0;
  color: var(--teal);
  font-weight: 760;
}

.mobile-nav-section {
  color: #fff;
  background: #181818;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 10px;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 820;
  text-align: left;
}

.mobile-nav-toggle span:last-child {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.mobile-nav-toggle span:last-child::before,
.mobile-nav-toggle span:last-child::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 10px;
  height: 2px;
  background: currentColor;
}

.mobile-nav-toggle span:last-child::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:last-child::after {
  transform: rotate(0deg);
}

.mobile-submenu {
  display: none;
  background: #fff;
}

.mobile-nav-section.is-open .mobile-submenu {
  display: grid;
}

.mobile-submenu a {
  min-height: 66px;
  padding: 0 18px;
  color: #2f8299;
  border-bottom: 1px solid rgba(18, 23, 25, 0.08);
  font-size: clamp(1.05rem, 5vw, 1.44rem);
  font-weight: 780;
  line-height: 1.14;
}

.mobile-submenu a:last-child {
  border-bottom: 0;
}

.home-page .utility-bar {
  display: none;
}

.home-page .site-header {
  inset: 0 0 auto 0;
  grid-template-columns: 200px minmax(0, 1fr) 190px;
  gap: 0;
  min-height: 100px;
  padding: 0;
  color: #15191b;
  background: #d0d3d2;
  border-top: 0;
  border-bottom: 1px solid rgba(54, 58, 60, 0.24);
  box-shadow: 0 10px 28px rgba(18, 23, 25, 0.12);
  backdrop-filter: none;
}

.home-page .site-header.is-scrolled,
.home-page .site-header.menu-open {
  color: #15191b;
  background: #d0d3d2;
  border-bottom-color: rgba(54, 58, 60, 0.24);
}

.home-page .brand {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, auto);
  grid-template-rows: auto auto;
  column-gap: 11px;
  justify-self: stretch;
  align-self: stretch;
  align-content: center;
  justify-content: center;
  width: auto;
  min-height: 100px;
  padding: 0 18px;
  color: #15191b;
  border-right: 1px solid rgba(54, 58, 60, 0.2);
}

.home-page .brand img,
.home-page .brand span,
.home-page .brand small {
  display: block;
}

.home-page .nav-links {
  align-self: stretch;
  display: grid;
  grid-template-columns: 0.76fr 1.38fr 2.9fr 2.14fr 2.22fr 1.08fr;
  gap: 0;
  height: 100%;
}

.home-page .nav-links > a,
.home-page .nav-dropdown > a,
.home-page .nav-dropdown > button {
  justify-content: center;
  min-height: 100px;
  padding: 0 18px;
  color: #15191b;
  border-right: 1px solid rgba(54, 58, 60, 0.2);
  font-size: clamp(0.84rem, 1.08vw, 1.08rem);
  font-weight: 860;
  line-height: 1.1;
  text-align: center;
  opacity: 1;
  text-shadow: none;
}

.home-page .nav-links > a::after,
.home-page .nav-dropdown > a::after,
.home-page .nav-dropdown > button::after {
  bottom: 0;
  height: 3px;
  background: #f08300;
}

.home-page .nav-links > a:hover,
.home-page .nav-dropdown:hover > button,
.home-page .nav-dropdown:hover > a,
.home-page .nav-dropdown:focus-within > button,
.home-page .nav-dropdown:focus-within > a {
  color: #f08300;
  background: #c5c8c7;
}

.home-page .header-actions {
  justify-self: stretch;
  align-self: stretch;
  justify-content: center;
  padding: 0 24px;
  border-left: 1px solid rgba(54, 58, 60, 0.2);
}

.language-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #111315;
  background: #fff;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: none;
}

.flag-us {
  width: 28px;
  height: 18px;
  display: inline-block;
  background:
    linear-gradient(90deg, #2b4b8d 0 40%, transparent 40%),
    repeating-linear-gradient(180deg, #b22234 0 2px, #fff 2px 4px);
  border: 1px solid rgba(17, 19, 21, 0.18);
}

.home-page .mobile-nav {
  inset: 100px 16px auto 16px;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--porcelain);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 16, 17, 0.82), rgba(12, 16, 17, 0.55) 48%, rgba(12, 16, 17, 0.28)),
    linear-gradient(0deg, rgba(12, 16, 17, 0.78), rgba(12, 16, 17, 0.08) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--max)) / 2));
  padding: 168px 0 192px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 760;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 4.35rem;
  line-height: 0.98;
  font-weight: 760;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.16rem;
}

.hero-buyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-buyer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  color: rgba(255, 253, 248, 0.86);
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  padding: 0 18px;
  font-weight: 760;
}

.button-light {
  color: var(--ink);
  background: var(--porcelain);
}

.button-ghost {
  color: var(--porcelain);
  border-color: rgba(255, 253, 248, 0.52);
  background: rgba(255, 253, 248, 0.06);
  backdrop-filter: blur(14px);
}

.button-dark {
  width: fit-content;
  color: var(--porcelain);
  background: var(--graphite);
}

.hero-procurement-panel {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - var(--max)) / 2));
  top: 50%;
  width: min(390px, calc(100% - 48px));
  transform: translateY(-42%);
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-procurement-panel p {
  margin: 0 0 18px;
  color: var(--teal);
  font-weight: 800;
}

.hero-procurement-panel dl {
  margin: 0;
}

.hero-procurement-panel div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hero-procurement-panel dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-procurement-panel dd {
  margin: 4px 0 0;
  font-weight: 760;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  color: var(--porcelain);
  background: var(--teal);
  border-radius: var(--radius);
  font-weight: 760;
}

.hero-metrics {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--porcelain);
  border-top: 1px solid var(--line-dark);
  background: rgba(12, 16, 17, 0.5);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid var(--line-dark);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1.05rem;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
}

.procurement-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
}

.procurement-strip a {
  min-height: 124px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.procurement-strip a:hover {
  background: var(--mist);
}

.procurement-strip a:last-child {
  border-right: 0;
}

.procurement-strip span,
.material-card span,
.tab-panel span,
.application-grid span,
.evidence-list span,
.supply-steps span {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 760;
}

.procurement-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.06rem;
}

.procurement-strip small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.buyer-strip {
  padding: 22px 0;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.buyer-grid article {
  min-height: 126px;
  padding: 18px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.buyer-grid strong,
.buyer-grid span {
  display: block;
}

.buyer-grid strong {
  font-size: 1rem;
}

.buyer-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.corporate-section {
  padding: 86px 0;
  background: var(--porcelain);
}

.corporate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: stretch;
}

.corporate-copy h2,
.service-header h2,
.news-header h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.12;
}

.corporate-copy > p,
.service-header p,
.news-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.corporate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.corporate-actions .button-ghost {
  color: var(--ink);
  border-color: rgba(18, 23, 25, 0.26);
  background: transparent;
  backdrop-filter: none;
}

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.corporate-stats div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.corporate-stats div:last-child {
  border-right: 0;
}

.corporate-stats strong,
.corporate-stats span {
  display: block;
}

.corporate-stats strong {
  color: var(--teal);
  font-size: 1.28rem;
}

.corporate-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.corporate-visual {
  display: grid;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.corporate-visual img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.corporate-panel {
  grid-area: 1 / 1;
  align-self: end;
  margin: 24px;
  padding: 24px;
  color: var(--porcelain);
  background: rgba(13, 23, 29, 0.76);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.corporate-panel span,
.service-card span,
.news-feature span,
.news-empty span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.corporate-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.corporate-panel p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.service-showcase {
  padding: 86px 0;
  color: var(--porcelain);
  background: var(--graphite);
}

.service-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.service-header p {
  color: rgba(255, 253, 248, 0.68);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 420px;
  background: rgba(255, 253, 248, 0.06);
  border-right: 1px solid var(--line-dark);
}

.service-card:last-child {
  border-right: 0;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.service-card div {
  padding: 22px;
}

.service-card h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.24;
}

.service-card p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.68);
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

.more-link::after {
  content: ">";
}

.news-preview-section {
  padding: 86px 0;
  background: var(--paper);
}

.news-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.news-board {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.news-feature,
.news-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.news-feature {
  display: grid;
  grid-template-rows: 300px auto;
  overflow: hidden;
}

.news-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature div {
  padding: 26px;
}

.news-feature h3 {
  margin: 12px 0 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.news-feature p {
  margin: 12px 0 0;
  color: var(--muted);
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-empty {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  min-height: 128px;
  overflow: hidden;
}

.news-empty time {
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--porcelain);
  background: var(--slate);
  font-weight: 800;
}

.news-empty div {
  padding: 18px 22px;
}

.news-empty strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.03rem;
}

.content-slot {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.content-slot i {
  display: block;
  width: 100%;
  height: 12px;
  background: rgba(18, 23, 25, 0.12);
  border-radius: 999px;
}

.content-slot i:nth-child(2) {
  width: 74%;
}

.content-slot i:nth-child(3) {
  width: 48%;
}

.content-slot.compact {
  gap: 9px;
  margin-top: 10px;
}

.premium-section {
  color: var(--porcelain);
  background: var(--graphite);
}

.premium-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.premium-copy h2 {
  margin: 0;
  max-width: 590px;
  font-size: 2.9rem;
  line-height: 1.08;
}

.premium-copy > p {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.05rem;
}

.premium-note {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.premium-note strong {
  color: var(--gold);
}

.premium-note span {
  color: rgba(255, 253, 248, 0.76);
}

.brand-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.brand-standard-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--porcelain);
  border-radius: var(--radius);
  color: var(--ink);
}

.brand-standard-grid span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-standard-grid h3 {
  margin: 12px 0 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.brand-standard-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.intro-section,
.processing-section,
.supply-section {
  background: var(--paper);
}

.intro-grid,
.applications-layout,
.evidence-grid,
.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.evidence-copy h2,
.rfq-copy h2 {
  margin: 0;
  font-size: 2.42rem;
  line-height: 1.12;
}

.section-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.evidence-copy > p,
.rfq-copy > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.material-definition {
  padding: 30px;
  color: var(--porcelain);
  background: var(--graphite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.definition-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 760;
}

.material-definition p:not(.definition-label) {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.45;
}

.material-definition ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(255, 253, 248, 0.78);
}

.material-definition li + li {
  margin-top: 10px;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.material-card {
  display: grid;
  grid-template-rows: 220px auto;
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--mist);
}

.material-card div {
  padding: 22px;
}

.material-card h3 {
  margin: 8px 0 0;
  font-size: 1.18rem;
  line-height: 1.24;
}

.material-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.catalog-section,
.specs-section,
.applications-section,
.rfq-section {
  background: var(--porcelain);
}

.catalog-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--porcelain);
}

.catalog-head,
.catalog-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.25fr 150px;
  align-items: stretch;
}

.catalog-head {
  color: var(--porcelain);
  background: var(--graphite);
  font-size: 0.82rem;
  font-weight: 760;
}

.catalog-head span,
.catalog-row > * {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.catalog-head span:last-child,
.catalog-row > *:last-child {
  border-right: 0;
}

.catalog-row {
  border-top: 1px solid var(--line);
}

.catalog-row:hover {
  background: rgba(36, 105, 100, 0.045);
}

.catalog-row small {
  display: block;
  color: var(--teal);
  font-weight: 800;
}

.catalog-row strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.catalog-row p {
  margin: 0;
  color: var(--muted);
}

.row-action {
  align-self: center;
  justify-self: stretch;
  min-height: 42px;
  color: var(--teal);
  background: var(--porcelain);
  border: 1px solid rgba(36, 105, 100, 0.32);
  border-radius: var(--radius);
  font-weight: 760;
}

.row-action:hover {
  color: var(--porcelain);
  background: var(--teal);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.spec-table {
  border-top: 1px solid var(--line);
  background: var(--porcelain);
}

.spec-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  min-height: 68px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row span {
  color: var(--muted);
}

.spec-row strong {
  font-size: 1rem;
}

.spec-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.spec-aside h3 {
  margin: 0;
  font-size: 1.34rem;
}

.spec-aside p {
  margin: 0;
  color: var(--muted);
}

.doc-button {
  justify-content: space-between;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--line);
  font-weight: 720;
}

.doc-button::after {
  content: "+";
  color: var(--teal);
  font-weight: 800;
}

.aside-note {
  min-height: 44px;
  font-size: 0.86rem;
}

.process-tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
}

.tab-list {
  display: grid;
  gap: 10px;
  align-self: start;
}

.tab-list button {
  min-height: 54px;
  padding: 0 16px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tab-list button[aria-selected="true"] {
  color: var(--porcelain);
  background: var(--teal);
  border-color: var(--teal);
}

.tab-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel article,
.application-grid article,
.supply-steps article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.tab-panel h3,
.application-grid h3,
.supply-steps h3 {
  margin: 10px 0 0;
  font-size: 1.28rem;
  line-height: 1.22;
}

.tab-panel p,
.application-grid p,
.supply-steps p {
  margin: 14px 0 0;
  color: var(--muted);
}

.terms-section {
  background: var(--mist);
}

.terms-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: start;
}

.terms-layout .button {
  margin-top: 26px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.terms-grid article {
  min-height: 204px;
  padding: 22px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.terms-grid span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.terms-grid h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

.terms-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.application-grid article {
  min-height: 210px;
  background: var(--paper);
}

.evidence-section {
  color: var(--porcelain);
  background: var(--graphite);
}

.evidence-grid {
  align-items: center;
}

.evidence-visual {
  margin: 0;
}

.evidence-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.evidence-visual figcaption {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.86rem;
}

.evidence-copy > p {
  color: rgba(255, 253, 248, 0.72);
}

.evidence-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.evidence-list article {
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.evidence-list article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.evidence-list p {
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.supply-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.supply-steps article {
  min-height: 230px;
}

.rfq-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.rfq-summary {
  margin-top: 30px;
  padding: 24px;
  color: var(--porcelain);
  background: var(--slate);
  border-radius: var(--radius);
}

.rfq-summary h3 {
  margin: 0 0 18px;
  font-size: 1.22rem;
}

.rfq-summary dl {
  margin: 0;
}

.rfq-summary div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
}

.rfq-summary dt {
  color: rgba(255, 253, 248, 0.62);
}

.rfq-summary dd {
  margin: 0;
  font-weight: 720;
}

.rfq-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid rgba(18, 23, 25, 0.18);
  border-radius: var(--radius);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(36, 105, 100, 0.14);
}

fieldset {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

legend {
  padding: 0 6px;
  color: var(--slate);
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 520;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 720;
}

.contact-page {
  background: #f5f5f5;
}

.contact-hero .page-hero-content h1 {
  max-width: 840px;
}

.source-contact-section {
  padding: 46px 0 78px;
}

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

.source-contact-sidebar {
  display: grid;
  gap: 18px;
}

.source-contact-main {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.contact-info-card,
.contact-message-panel {
  border: 1px solid #dedede;
  background: #fff;
}

.contact-info-card {
  padding: 28px;
}

.contact-info-card h2,
.contact-message-heading h2 {
  margin: 0;
  color: #15191b;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.18;
}

.contact-info-table {
  margin: 24px 0 0;
  border-top: 1px solid #e5e5e5;
}

.contact-info-table div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.contact-info-table dt {
  color: #566065;
  font-weight: 760;
}

.contact-info-table dd {
  margin: 0;
  color: #1f2528;
  line-height: 1.55;
}

.contact-info-table a {
  color: #2b82a0;
  font-weight: 720;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #2b82a0;
  border: 1px solid #d6dada;
  background: #f7f7f7;
  font-size: 0.9rem;
  font-weight: 720;
}

.contact-message-heading {
  padding: 28px 28px 0;
}

.source-contact-form {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f6f6f6;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--porcelain);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 20px;
  color: rgba(255, 253, 248, 0.58);
  border-top: 1px solid var(--line-dark);
  font-size: 0.86rem;
}

.page-main {
  background: var(--paper);
}

.source-inside-page {
  background: #f5f5f5;
}

.inside-products-page {
  background: #d8dcdb url("../assets/images/category-light-line-texture.png") center top / 340px auto repeat;
}

.source-breadcrumb {
  padding: 28px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid #dedede;
  background: #f7f7f7;
  font-size: 0.9rem;
}

.source-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.source-breadcrumb a {
  color: #2b82a0;
  font-weight: 700;
}

.source-breadcrumb span {
  color: #747b80;
}

.source-inside-wrap {
  padding: 42px 0 70px;
}

.inside-category-products {
  padding: 74px 0 88px;
}

.inside-category-products .container {
  display: grid;
  justify-items: center;
}

.category-products-title {
  width: min(calc(100% - 24px), 1710px);
  background: rgba(255, 255, 255, 0.92);
}

.category-products-title h1 {
  margin: 0;
  padding: 8px 14px 11px;
  color: #060b11;
  font-size: clamp(1.82rem, 2.2vw, 2.42rem);
  font-weight: 860;
  line-height: 1.18;
}

.source-inside-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.source-sidebar {
  display: grid;
  gap: 18px;
}

.source-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  background: #171717;
  font-weight: 800;
  text-transform: lowercase;
}

.source-sidebar-toggle button {
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: #0d0d0d;
  font-size: 1.35rem;
  line-height: 1;
}

.source-sidebar-box {
  border: 1px solid #dcdcdc;
  background: #fff;
}

.source-sidebar-box h2 {
  margin: 0;
  padding: 15px 17px;
  color: #fff;
  background: #171717;
  font-size: 1rem;
  line-height: 1.25;
}

.source-sidebar-box nav {
  display: grid;
}

.source-sidebar-box nav a {
  display: block;
  padding: 15px 17px;
  border-bottom: 1px solid #e8e8e8;
  color: #2d83a0;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.35;
}

.source-sidebar-box nav a:last-child {
  border-bottom: 0;
}

.source-sidebar-box nav a:hover,
.source-sidebar-box nav a.is-current {
  color: #f08300;
  background: #f8f8f5;
}

.source-contact-lines {
  display: grid;
  gap: 8px;
  padding: 16px 17px 18px;
  color: #4e585f;
  line-height: 1.5;
}

.source-contact-lines strong {
  color: #202426;
}

.source-contact-lines a {
  color: #2d83a0;
  overflow-wrap: anywhere;
}

.source-inside-content {
  min-width: 0;
  padding: 30px;
  border: 1px solid #dedede;
  background: #fff;
}

.source-copy {
  color: #24292c;
  font-size: 1.35rem;
  line-height: 1.65;
}

.source-copy + .source-copy {
  margin-top: 38px;
}

.source-copy h1,
.source-copy h2,
.source-copy p {
  margin: 0;
}

.source-copy h1 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.45;
  font-weight: 760;
}

.source-copy h1 span,
.source-copy p strong:first-child {
  color: #0070c0;
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
}

.source-copy h1 strong {
  font-family: inherit;
  color: #171a1c;
}

.source-copy h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  color: #171a1c;
}

.source-copy p {
  margin-top: 10px;
}

.source-copy sup {
  font-size: 0.58em;
}

.source-detail-image {
  display: block;
  width: min(100%, 843px);
  height: auto;
  margin: 28px 0 36px;
  border: 0;
}

.source-inquiry {
  margin-top: 38px;
  padding: 24px;
  background: #f6f6f6;
}

.source-inquiry h2 {
  margin: 0 0 16px;
  color: #23272a;
  font-size: 1.05rem;
  line-height: 1.4;
}

.source-inquiry-form {
  display: grid;
  gap: 12px;
}

.source-inquiry-form input,
.source-inquiry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 12px 14px;
  background: #fff;
  color: #252a2d;
  font: inherit;
  font-size: 0.95rem;
}

.source-inquiry-form textarea {
  resize: vertical;
}

.source-inquiry-form button {
  justify-self: start;
  min-height: 42px;
  border: 0;
  padding: 0 24px;
  color: #fff;
  background: #1a1a1a;
  font-weight: 760;
  cursor: pointer;
}

.source-product-page {
  background: #f5f5f5;
}

.source-product-content {
  min-width: 0;
}

.source-product-heading {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dedede;
}

.source-product-heading p {
  margin: 0 0 8px;
  color: #2d83a0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.source-product-heading h1 {
  margin: 0;
  color: #15191b;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.1;
}

.source-product-listing {
  padding-bottom: 30px;
}

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

.source-product-card {
  display: grid;
  grid-template-rows: auto minmax(58px, auto);
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #1f2528;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.source-product-card:hover {
  border-color: rgba(240, 131, 0, 0.65);
  box-shadow: 0 18px 36px rgba(18, 23, 25, 0.12);
  transform: translateY(-2px);
}

.source-product-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.source-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.source-product-name {
  display: flex;
  align-items: center;
  padding: 15px 16px;
  color: #22282b;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.35;
}

.source-detail-content {
  min-width: 0;
  display: grid;
  gap: 28px;
}

.source-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid #dedede;
  background: #fff;
}

.source-detail-main-image {
  border: 1px solid #e2e2e2;
  background: #fff;
}

.source-detail-main-image a,
.source-detail-main-image img {
  display: block;
  width: 100%;
}

.source-detail-main-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.source-detail-summary {
  display: grid;
  gap: 16px;
}

.source-detail-summary > p:first-child {
  margin: 0;
  color: #2d83a0;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-detail-summary h1 {
  margin: 0;
  color: #15191b;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
}

.source-detail-summary p {
  margin: 0;
  color: #4e585f;
  font-size: 1.04rem;
  line-height: 1.72;
}

.source-detail-email {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  background: #1a1a1a;
  font-weight: 760;
}

.source-detail-gallery,
.source-detail-info,
.source-related-products {
  padding: 28px;
  border: 1px solid #dedede;
  background: #fff;
}

.source-detail-gallery h2,
.source-detail-info h2,
.source-related-products h2 {
  margin: 0 0 18px;
  color: #15191b;
  font-size: 1.35rem;
}

.source-detail-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.source-detail-thumb {
  display: block;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  background: #fff;
}

.source-detail-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.source-detail-thumb:hover img {
  transform: scale(1.035);
}

.source-detail-info > p {
  margin: 0 0 22px;
  color: #4e585f;
  font-size: 1rem;
  line-height: 1.72;
}

.source-detail-image-stack {
  display: grid;
  gap: 18px;
}

.source-detail-image-stack figure {
  margin: 0;
}

.source-detail-image-stack img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: 1px solid #ececec;
  background: #fff;
}

.source-related-products > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.source-related-card {
  display: grid;
  gap: 10px;
  color: #22282b;
}

.source-related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #e2e2e2;
  background: #fff;
}

.source-related-card span {
  font-weight: 760;
  line-height: 1.35;
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 25, 0.88), rgba(18, 23, 25, 0.52) 58%, rgba(18, 23, 25, 0.22)),
    linear-gradient(0deg, rgba(18, 23, 25, 0.92), transparent 54%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 138px 0 62px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--gold);
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.55rem, 4.8vw, 4.15rem);
  line-height: 1.06;
  font-weight: 760;
}

.page-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.02rem;
  line-height: 1.68;
}

.page-band {
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
}

.page-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.page-band-grid div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.page-band-grid div:last-child {
  border-right: 0;
}

.page-band-grid strong,
.page-band-grid span {
  display: block;
}

.page-band-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.page-aside {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 12px;
}

.page-aside a,
.page-aside span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
  color: var(--slate);
}

.page-aside span {
  color: var(--teal);
  font-weight: 760;
}

.page-content {
  display: grid;
  gap: 22px;
}

.page-section-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.page-section-block.dark {
  color: var(--porcelain);
  background: var(--graphite);
  border-color: var(--graphite);
}

.page-section-block h2 {
  margin: 0;
  max-width: 780px;
  font-size: 2.35rem;
  line-height: 1.08;
}

.page-section-block p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
}

.page-section-block.dark p {
  color: rgba(255, 253, 248, 0.72);
}

.blank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.blank-panel {
  min-height: 180px;
  padding: 18px;
  border: 1px dashed rgba(18, 23, 25, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.54);
}

.blank-panel span {
  color: var(--muted);
  font-size: 0.82rem;
}

.about-timeline,
.about-concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-timeline article,
.about-concept-grid div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.about-timeline span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--porcelain);
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
}

.about-timeline strong,
.about-concept-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.about-timeline-visual {
  max-width: 760px;
  margin: 34px auto 0;
}

.about-timeline-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 54px rgba(21, 28, 32, 0.14);
}

.about-timeline-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.page-section-block.dark .about-concept-grid div {
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.page-section-block.dark .about-concept-grid strong {
  color: #f4b95e;
}

.about-concept-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.55;
}

.partner-page {
  background: var(--paper);
}

.partner-hero > img {
  object-position: center 38%;
}

.partner-download-grid,
.partner-type-grid,
.partner-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.partner-download-card,
.partner-type-grid span,
.partner-contact-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.partner-download-card strong,
.partner-type-grid span {
  color: var(--teal);
  font-weight: 820;
}

.partner-download-card span {
  color: var(--muted);
  line-height: 1.45;
}

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

.partner-type-grid span {
  min-height: 72px;
  align-content: center;
}

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

.partner-contact-grid div {
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.partner-contact-grid strong,
.partner-contact-grid span,
.partner-contact-grid a {
  display: block;
}

.partner-contact-grid strong {
  color: var(--porcelain);
}

.partner-contact-grid span {
  color: rgba(255, 253, 248, 0.72);
}

.partner-contact-grid a {
  color: #f4b95e;
  font-weight: 720;
}

.tech-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.tech-proof-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.tech-proof-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.tech-proof-grid span,
.certification-matrix .matrix-head span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
}

.tech-proof-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.24;
}

.tech-proof-grid p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.certification-matrix {
  display: grid;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.certification-matrix > div {
  display: grid;
  grid-template-columns: 0.78fr 1.18fr 1.54fr;
  min-height: 78px;
  border-top: 1px solid var(--line);
}

.certification-matrix > div:first-child {
  border-top: 0;
}

.certification-matrix .matrix-head {
  min-height: 52px;
  background: var(--mist);
}

.certification-matrix span {
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.45;
}

.certification-matrix span:last-child {
  border-right: 0;
}

.technical-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.technical-stat-row.light {
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

.technical-stat-row div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
}

.technical-stat-row.light div {
  border-right-color: var(--line);
}

.technical-stat-row div:last-child {
  border-right: 0;
}

.technical-stat-row strong,
.technical-stat-row span {
  display: block;
}

.technical-stat-row strong {
  color: var(--gold);
  font-size: 1.36rem;
  line-height: 1.12;
}

.technical-stat-row.light strong {
  color: var(--teal);
}

.technical-stat-row span {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.9rem;
}

.technical-stat-row.light span {
  color: var(--muted);
}

.report-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.report-card {
  display: grid;
  grid-template-rows: auto auto minmax(92px, 1fr) auto auto;
  min-height: 294px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f2f3f1 0%, var(--porcelain) 42%, #f7f5ef 100%);
}

.report-category {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(36, 105, 100, 0.22);
  color: var(--teal);
  background: rgba(36, 105, 100, 0.07);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.24;
}

.report-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.report-meta span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  color: var(--slate);
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
}

.report-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.report-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 820;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.report-actions a:first-child {
  color: var(--porcelain);
  background: var(--ink);
}

.report-actions a:hover {
  color: var(--porcelain);
  background: var(--teal);
  border-color: var(--teal);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.split-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.subpage-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--porcelain);
  background: var(--ink);
}

.subpage-cta h2 {
  margin: 0;
  font-size: 2.1rem;
}

.subpage-cta p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.68);
}

.lldia-home {
  background: var(--paper);
}

.home-page .lldia-home {
  background: #050505;
}

.compact-hero {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
}

.home-page .compact-hero {
  min-height: 100svh;
  grid-template-columns: 46.2% 53.8%;
  align-items: stretch;
  padding-top: 100px;
  color: #fffdf8;
  background: #050505;
}

.compact-hero > img,
.compact-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compact-hero > img {
  object-fit: cover;
  opacity: 0.72;
}

.home-page .compact-hero > img {
  opacity: 0.28;
  object-position: 66% center;
  filter: grayscale(0.12) contrast(1.08);
}

.compact-hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 23, 29, 0.92), rgba(13, 23, 29, 0.62) 54%, rgba(13, 23, 29, 0.24)),
    linear-gradient(0deg, rgba(13, 23, 29, 0.86), rgba(13, 23, 29, 0.05) 58%);
}

.home-page .compact-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.28) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 26%);
}

.compact-hero-content {
  position: relative;
  z-index: 2;
  padding: 142px 0 118px;
}

.home-page .compact-hero-content {
  padding: 236px 0 178px;
}

.compact-hero-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.55rem);
  line-height: 1.04;
  font-weight: 760;
}

.home-page .compact-hero-content h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
  line-height: 0.98;
  font-weight: 860;
  text-transform: uppercase;
}

.compact-hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 1.02rem;
  line-height: 1.68;
}

.home-page .compact-hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.78);
}

.compact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.compact-hero-meta {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--porcelain);
  border-top: 1px solid var(--line-dark);
  background: rgba(13, 23, 29, 0.66);
}

.home-page .compact-hero-meta {
  background: rgba(0, 0, 0, 0.78);
  border-top-color: rgba(214, 218, 218, 0.22);
  backdrop-filter: blur(14px);
}

.compact-hero-meta div {
  min-height: 78px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  border-right: 1px solid var(--line-dark);
}

.compact-hero-meta div:last-child {
  border-right: 0;
}

.compact-hero-meta strong,
.compact-hero-meta span {
  display: block;
}

.compact-hero-meta strong {
  font-size: 0.98rem;
}

.compact-hero-meta span {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.84rem;
}

.compact-hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 28px clamp(32px, 4.95vw, 95px) 14px;
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.6), rgba(22, 22, 22, 0.18)),
    url("../assets/images/hero-dark-line-texture.png") center / 190px 520px repeat,
    #171717;
}

.compact-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.compact-hero-copy,
.compact-hero-video-frame,
.compact-hero-details {
  position: relative;
  z-index: 1;
}

.compact-hero-copy {
  max-width: 720px;
}

.compact-hero-copy h1 {
  margin: 0;
  color: #f08300;
  font-size: clamp(2.15rem, 2.1vw, 2.55rem);
  line-height: 1.1;
  font-weight: 520;
  letter-spacing: 0;
}

.compact-hero-copy p {
  max-width: 760px;
  margin: 40px 0 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.3vw, 1.48rem);
  line-height: 1.46;
  font-weight: 360;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.72);
}

.compact-hero-video-frame {
  align-self: center;
  width: min(100%, 564px);
  aspect-ratio: 16 / 9;
  margin-top: 58px;
  overflow: hidden;
  background: #050505;
}

.compact-hero-video-frame img,
.compact-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-hero-video {
  opacity: 0;
  transition: opacity 220ms ease;
}

.compact-hero-video-frame:hover .compact-hero-video,
.compact-hero-video:focus {
  opacity: 1;
}

.compact-hero-details {
  display: inline-flex;
  width: 124px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 0;
  color: #080808;
  background: #f08300;
  font-size: 1rem;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.compact-hero-details:hover {
  color: #f08300;
  background: #171717;
  outline: 1px solid #f08300;
}

.compact-hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d4973c;
}

.compact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.home-about,
.home-products,
.home-innovation,
.home-news,
.home-contact {
  padding: 72px 0;
}

.home-about,
.home-news {
  background: var(--porcelain);
}

.home-products,
.home-contact {
  background: var(--paper);
}

.home-page .home-products {
  padding: 80px 0 92px;
  background: #d8dcdb url("../assets/images/category-light-line-texture.png") center top / 340px auto repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(70, 75, 77, 0.2);
}

.category-title-strip {
  width: min(calc(100% - 180px), 1710px);
  max-width: 1710px;
  background: rgba(255, 255, 255, 0.92);
}

.category-title-strip h2 {
  margin: 0;
  padding: 6px 14px 9px;
  color: #060b11;
  font-size: clamp(1.82rem, 2.2vw, 2.42rem);
  font-weight: 860;
  line-height: 1.18;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  width: min(calc(100% - 180px), 1710px);
  max-width: 1710px;
  margin-top: 62px;
}

.category-product-card {
  min-width: 0;
}

.category-image-link {
  display: block;
  overflow: hidden;
  background: #edf0ef;
}

.category-image-link img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 260ms ease;
}

.category-product-card:hover .category-image-link img {
  transform: scale(1.025);
}

.category-card-copy {
  padding-top: 26px;
}

.category-card-copy h2,
.category-card-copy h3 {
  margin: 0;
  color: #596164;
  font-size: clamp(1.02rem, 1.15vw, 1.28rem);
  font-weight: 760;
  line-height: 1.28;
}

.category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 28px;
  margin-top: 20px;
  padding: 0 16px;
  color: #f08300;
  border: 1px solid #f08300;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.96rem;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-more:hover {
  color: #fff;
  background: #f08300;
  transform: translateY(-1px);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) {
  color: #fffdf8;
  background: rgba(10, 10, 9, 0.34);
  border-bottom-color: rgba(255, 253, 248, 0.18);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .brand {
  color: #fffdf8;
  border-right-color: rgba(255, 253, 248, 0.18);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .brand small {
  color: rgba(255, 253, 248, 0.68);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-links > a,
.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-dropdown > a,
.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-dropdown > button {
  color: #fffdf8;
  border-right-color: rgba(255, 253, 248, 0.18);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.52);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-links > a:hover,
.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-dropdown:hover > a,
.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-dropdown:hover > button,
.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-dropdown:focus-within > a,
.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-dropdown:focus-within > button {
  color: #f0b760;
  background: rgba(255, 253, 248, 0.08);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .header-actions {
  border-left-color: rgba(255, 253, 248, 0.18);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .language-selector {
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.09);
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 999px;
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .menu-button {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.44);
}

.home-page .compact-hero.video-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding-top: 100px;
  isolation: isolate;
  background: #050505;
}

.compact-hero-bg-video,
.compact-hero-bg-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compact-hero-bg-video {
  z-index: -2;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.06) brightness(1.08);
}

.compact-hero-bg-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 62% 56%, rgba(177, 113, 48, 0.24), transparent 38%),
    linear-gradient(90deg, rgba(4, 4, 4, 0.76), rgba(4, 4, 4, 0.52) 44%, rgba(4, 4, 4, 0.22) 76%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.64), rgba(4, 4, 4, 0.12) 46%, rgba(4, 4, 4, 0.42));
}

.video-hero .compact-hero-panel {
  width: min(calc(100% - 48px), var(--max));
  min-height: calc(100svh - 100px);
  justify-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(106px, 14vh, 170px) 0 clamp(74px, 10vh, 124px);
  background: transparent;
}

.video-hero .compact-hero-panel::after {
  display: none;
}

.video-hero .compact-hero-copy {
  width: min(100%, 760px);
  max-width: 760px;
}

.video-hero .compact-hero-copy h1 {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 10vw, 9.2rem);
  font-weight: 560;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.52);
}

.video-hero .compact-hero-copy p {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.18rem, 2.1vw, 2.18rem);
  line-height: 1.18;
  font-weight: 430;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.58);
}

.video-hero .compact-hero-details {
  width: auto;
  min-width: 138px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 28px;
  color: #0d0c0b;
  background: #fffdf8;
  border: 1px solid rgba(255, 253, 248, 0.88);
  border-radius: 999px;
  font-weight: 820;
  letter-spacing: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.video-hero .compact-hero-details:hover {
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.08);
  outline: 0;
}

.lldia-home {
  background: #f4f1e9;
}

.home-page .home-products {
  padding: clamp(72px, 8vw, 104px) 0 clamp(88px, 9vw, 124px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.42), rgba(232, 234, 231, 0.68)),
    #d8dcdb url("../assets/images/category-light-line-texture.png") center top / 340px auto repeat;
}

.category-title-strip {
  border: 1px solid rgba(17, 23, 26, 0.08);
  box-shadow: 0 20px 54px rgba(13, 17, 18, 0.08);
}

.category-products-grid {
  gap: clamp(24px, 3vw, 42px);
}

.category-product-card {
  transition: transform 220ms ease;
}

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

.category-image-link {
  border: 1px solid rgba(17, 23, 26, 0.1);
  border-radius: 4px;
  box-shadow: 0 24px 58px rgba(21, 28, 32, 0.16);
}

.category-card-copy h2,
.category-card-copy h3 {
  color: #42494b;
}

.home-about {
  background: #fbf8f1;
  border-top: 1px solid rgba(17, 23, 26, 0.08);
}

.home-about .home-two-col {
  align-items: start;
}

.home-about .home-two-col h2,
.home-section-head h2,
.contact-panel h2 {
  letter-spacing: 0;
}

.home-facts {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(17, 23, 26, 0.1);
  border-radius: 4px;
  box-shadow: 0 22px 48px rgba(21, 28, 32, 0.08);
}

.home-facts div {
  background: rgba(255, 253, 248, 0.32);
}

.home-innovation {
  background:
    radial-gradient(circle at 84% 12%, rgba(207, 157, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #13110f, #1b2623 54%, #121314);
}

.innovation-list article {
  padding: 22px 0;
}

.innovation-list strong {
  color: #fffdf8;
}

.home-news {
  background: #f1f2ee;
}

.home-news-list {
  gap: 12px;
  border-top: 0;
}

.home-news-list article {
  padding: 18px 20px;
  border: 1px solid rgba(17, 23, 26, 0.1);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.84);
}

.home-contact {
  background:
    radial-gradient(circle at 12% 14%, rgba(207, 157, 74, 0.14), transparent 26%),
    #121110;
}

.contact-panel {
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.045);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.compact-rfq {
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.94);
}

.material-category-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.material-category-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--porcelain);
}

.material-category-card[id] {
  scroll-margin-top: 126px;
}

.material-category-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.material-category-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 28px;
}

.material-category-card span {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 840;
}

.material-category-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(1.42rem, 2vw, 2.1rem);
  line-height: 1.14;
}

.material-category-card p {
  min-height: 22px;
}

.home-innovation {
  color: var(--porcelain);
  background: var(--graphite);
}

.home-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.home-two-col h2,
.home-section-head h2,
.contact-panel h2 {
  margin: 0;
  font-size: 2.38rem;
  line-height: 1.12;
}

.home-two-col p:not(.section-kicker),
.home-section-head p,
.contact-panel p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.home-innovation .home-two-col p:not(.section-kicker) {
  color: rgba(255, 253, 248, 0.72);
}

.home-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-facts div {
  min-height: 96px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.home-facts div:last-child {
  border-right: 0;
}

.home-facts strong,
.home-facts span,
.home-product-grid span {
  display: block;
}

.home-facts strong {
  color: var(--teal);
  font-size: 1.3rem;
}

.home-facts span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-section-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--porcelain);
}

.home-product-grid article {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.home-product-grid article:last-child {
  border-right: 0;
}

.home-product-grid a {
  display: grid;
  grid-template-rows: 260px auto;
  min-height: 438px;
}

.home-product-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--mist);
}

.home-product-grid div {
  padding: 22px;
}

.home-product-grid span,
.home-news-list span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-product-grid h3 {
  margin: 10px 0 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.home-product-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.innovation-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.innovation-list article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.innovation-list strong,
.innovation-list span {
  display: block;
}

.innovation-list span {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.7);
}

.home-news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-news-list article {
  display: grid;
  grid-template-columns: 124px 188px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.home-news-list time {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  padding: 36px;
  color: var(--porcelain);
  background: var(--ink);
}

.contact-panel p:not(.section-kicker) {
  color: rgba(255, 253, 248, 0.68);
}

.compact-rfq {
  gap: 14px;
  padding: 22px;
  background: var(--porcelain);
}

.compact-rfq .form-grid {
  gap: 14px;
}

.compact-rfq input,
.compact-rfq select,
.compact-rfq textarea {
  min-height: 44px;
  padding: 10px 12px;
}

.compact-rfq textarea {
  min-height: 96px;
}

.compact-rfq .button {
  min-height: 42px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    padding: 0 22px;
  }

  .home-page .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    padding: 0 18px;
  }

  .home-page .brand {
    align-self: center;
    min-height: 82px;
    padding: 0;
    border-right: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-dropdown {
    display: none;
  }

  .home-page .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .home-page .header-actions {
    justify-self: end;
    align-self: center;
    gap: 10px;
    padding: 0;
    border-left: 0;
  }

  .home-page .language-selector {
    min-height: 40px;
  }

  .home-page .mobile-nav {
    inset: 82px 16px auto 16px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero {
    display: block;
  }

  .hero-content {
    padding: 148px 0 34px;
  }

  .hero-procurement-panel {
    position: relative;
    right: auto;
    top: auto;
    width: min(680px, calc(100% - 48px));
    margin: 0 auto 134px;
    transform: none;
  }

  .hero-metrics,
  .material-grid,
  .tab-panel,
  .supply-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-grid,
  .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-layout,
  .service-header,
  .home-two-col,
  .contact-panel,
  .news-header,
  .news-board {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-product-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-product-grid article:last-child {
    border-bottom: 0;
  }

  .home-product-grid a {
    grid-template-columns: 270px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 230px;
  }

  .category-products-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 42px;
  }

  .category-card-copy {
    padding-top: 18px;
  }

  .material-category-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .material-category-card img {
    min-height: auto;
    aspect-ratio: 1.46 / 1;
    height: auto;
  }

  .material-category-card > div {
    min-height: auto;
    padding: 22px;
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .corporate-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-stats div:nth-child(2n) {
    border-right: 0;
  }

  .page-band-grid,
  .blank-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-proof-grid,
  .tech-proof-grid.two,
  .technical-stat-row {
    grid-template-columns: 1fr;
  }

  .technical-stat-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .technical-stat-row.light div {
    border-bottom-color: var(--line);
  }

  .technical-stat-row div:last-child {
    border-bottom: 0;
  }

  .page-layout,
  .source-inside-layout,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-head {
    display: none;
  }

  .catalog-row {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-row > * {
    border-bottom: 1px solid var(--line);
  }

  .catalog-row > *:nth-child(2n) {
    border-right: 0;
  }

  .catalog-row > *:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .specs-layout,
  .intro-grid,
  .applications-layout,
  .evidence-grid,
  .rfq-layout,
  .source-contact-layout,
  .terms-layout,
  .premium-layout {
    grid-template-columns: 1fr;
  }

  .spec-aside {
    position: static;
  }

  .source-inside-content {
    padding: 24px;
  }

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

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

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

  .source-related-products > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-bar {
    justify-content: flex-start;
    min-height: 38px;
    overflow: hidden;
  }

  .utility-left {
    min-width: 0;
  }

  .utility-left span:first-child {
    max-width: calc(100vw - 36px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .utility-left span:nth-child(2),
  .utility-right {
    display: none;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 60px 0;
  }

  .header-cta {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 128px 0 28px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-metrics {
    position: relative;
    grid-template-columns: 1fr 1fr;
    background: var(--graphite);
  }

  .hero-procurement-panel {
    width: min(100% - 32px, 680px);
    margin-bottom: 22px;
  }

  .hero-metrics div {
    min-height: 104px;
    padding: 20px 16px;
  }

  .procurement-strip,
  .buyer-grid,
  .corporate-stats,
  .home-facts,
  .brand-standard-grid,
  .service-grid,
  .page-band-grid,
  .news-board,
  .news-list,
  .blank-grid,
  .about-timeline,
  .about-concept-grid,
  .partner-download-grid,
  .partner-type-grid,
  .partner-contact-grid,
  .material-grid,
  .process-tabs,
  .application-grid,
  .tab-panel,
  .supply-steps,
  .footer-grid,
  .form-grid,
  .terms-grid,
  .catalog-row {
    grid-template-columns: 1fr;
  }

  .procurement-strip a {
    min-height: 104px;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .corporate-section,
  .service-showcase,
  .home-about,
  .home-products,
  .inside-category-products,
  .home-innovation,
  .home-news,
  .home-contact,
  .news-preview-section {
    padding: 56px 0;
  }

  .corporate-copy h2,
  .service-header h2,
  .home-two-col h2,
  .home-section-head h2,
  .contact-panel h2,
  .news-header h2 {
    font-size: 1.82rem;
    line-height: 1.18;
  }

  .compact-hero {
    min-height: auto;
    display: block;
  }

  .home-page .compact-hero {
    min-height: auto;
  }

  .compact-hero-content {
    padding: 112px 0 28px;
  }

  .home-page .compact-hero-content {
    padding: 132px 0 34px;
  }

  .compact-hero-content h1 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .home-page .compact-hero-content h1 {
    font-size: 2.48rem;
    line-height: 1.02;
  }

  .compact-hero-content p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .compact-hero-actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .compact-hero-meta {
    position: relative;
    grid-template-columns: 1fr;
  }

  .compact-hero-meta div {
    min-height: 62px;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .compact-hero-meta div:last-child {
    border-bottom: 0;
  }

  .home-facts div {
    min-height: 76px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-facts div:last-child {
    border-bottom: 0;
  }

  .home-product-grid a {
    grid-template-columns: 1fr;
    grid-template-rows: 150px auto;
    min-height: auto;
  }

  .category-title-strip h2,
  .category-products-title h1 {
    padding: 8px 12px 10px;
  }

  .category-title-strip,
  .category-products-title,
  .category-products-grid {
    width: min(calc(100% - 32px), 1710px);
  }

  .category-products-grid {
    gap: 34px;
  }

  .category-image-link img {
    aspect-ratio: 1.34 / 1;
  }

  .contact-info-card,
  .contact-message-heading {
    padding: 22px;
  }

  .contact-info-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .source-contact-form {
    padding: 22px;
  }

  .home-news-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    padding: 16px 0;
  }

  .contact-panel {
    gap: 24px;
    padding: 22px;
  }

  .compact-rfq {
    gap: 12px;
    padding: 18px;
  }

  .compact-rfq label {
    gap: 6px;
    font-size: 0.84rem;
  }

  .compact-rfq input,
  .compact-rfq select,
  .compact-rfq textarea {
    min-height: 40px;
    padding: 9px 11px;
  }

  .compact-rfq textarea {
    min-height: 80px;
  }

  .compact-rfq .button {
    min-height: 40px;
  }

  .corporate-visual {
    min-height: 420px;
  }

  .corporate-stats div,
  .service-card,
  .news-empty {
    border-right: 0;
  }

  .service-card {
    min-height: auto;
    grid-template-rows: 180px auto;
    border-bottom: 1px solid var(--line-dark);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .news-empty {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .section-copy h2,
  .section-heading h2,
  .evidence-copy h2,
  .rfq-copy h2,
  .premium-copy h2 {
    font-size: 1.82rem;
    line-height: 1.18;
  }

  .material-card {
    grid-template-rows: 180px auto;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 82px;
  }

  .catalog-row > * {
    border-right: 0;
  }

  .catalog-row > *:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .catalog-row > *:last-child {
    border-bottom: 0;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  .rfq-summary div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    min-height: 370px;
  }

  .page-hero-content {
    padding: 112px 0 38px;
  }

  .page-hero h1 {
    font-size: 2.12rem;
    line-height: 1.12;
  }

  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .page-band-grid div {
    min-height: 72px;
    padding: 16px;
  }

  .tech-proof-grid,
  .tech-proof-grid.two {
    gap: 12px;
  }

  .tech-proof-grid article {
    min-height: auto;
    padding: 18px;
  }

  .certification-matrix {
    border: 0;
    gap: 12px;
    background: transparent;
  }

  .certification-matrix > div,
  .certification-matrix .matrix-head {
    grid-template-columns: 1fr;
    min-height: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--porcelain);
  }

  .certification-matrix .matrix-head {
    display: none;
  }

  .certification-matrix span {
    min-height: auto;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .certification-matrix span:last-child {
    border-bottom: 0;
  }

  .report-download-grid {
    grid-template-columns: 1fr;
  }

  .report-card {
    min-height: auto;
    grid-template-rows: auto;
    padding: 18px;
  }

  .report-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-actions a {
    min-height: 42px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .page-section-block,
  .subpage-cta {
    padding: 24px;
  }

  .page-section-block h2,
  .subpage-cta h2 {
    font-size: 1.8rem;
  }

  .page-aside {
    grid-template-columns: 1fr;
  }

  .subpage-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .home-page .site-header {
    grid-template-columns: 140px minmax(0, 1fr) 144px;
  }

  .home-page .nav-links {
    grid-template-columns: 0.72fr 1.18fr 2.36fr 1.82fr 1.92fr 1fr;
  }

  .home-page .nav-links > a,
  .home-page .nav-dropdown > a,
  .home-page .nav-dropdown > button {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .compact-hero-panel {
    padding-right: 46px;
    padding-left: 46px;
  }

  .compact-hero-copy p {
    font-size: 1.12rem;
  }
}

@media (max-width: 1040px) {
  .home-page .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 18px;
  }

  .home-page .brand {
    display: inline-grid;
    min-height: 82px;
  }

  .home-page .brand span {
    display: block;
    color: #15191b;
    font-size: 1rem;
    font-weight: 860;
  }

  .home-page .compact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 82px;
  }

  .compact-hero-visual {
    order: 1;
    height: min(62vw, 540px);
  }

  .compact-hero-visual img {
    object-position: center center;
  }

  .compact-hero-panel {
    order: 2;
    min-height: 620px;
    padding: 34px 32px 28px;
  }

  .compact-hero-copy {
    max-width: 720px;
  }

  .compact-hero-video-frame {
    width: min(100%, 560px);
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .language-selector {
    display: none;
  }

  .home-page .compact-hero {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .compact-hero-visual {
    height: 280px;
  }

  .compact-hero-panel {
    display: grid;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding: 28px 24px 32px;
  }

  .compact-hero-copy h1 {
    font-size: 2rem;
  }

  .compact-hero-copy p {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .compact-hero-video-frame {
    width: 100%;
    margin-top: 28px;
  }

  .compact-hero-details {
    width: 118px;
    min-height: 54px;
    margin-top: 30px;
  }

  .source-breadcrumb {
    padding: 20px 0 14px;
  }

  .source-inside-wrap {
    padding: 24px 0 44px;
  }

  .source-inside-layout {
    gap: 22px;
  }

  .source-inside-content {
    padding: 18px;
  }

  .source-copy {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .source-copy h1 {
    font-size: 1.35rem;
  }

  .source-detail-image {
    margin: 22px 0 28px;
  }

  .source-inquiry {
    padding: 18px;
  }

  .source-inquiry-form button {
    width: 100%;
  }

  .source-product-heading {
    margin-bottom: 18px;
  }

  .source-product-heading h1 {
    font-size: 1.55rem;
  }

  .source-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .source-product-name {
    min-height: 52px;
  }

  .source-detail-hero,
  .source-detail-gallery,
  .source-detail-info,
  .source-related-products {
    padding: 18px;
  }

  .source-detail-summary h1 {
    font-size: 1.75rem;
  }

  .source-detail-thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .source-related-products > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .home-page .site-header:not(.is-scrolled):not(.menu-open) {
    min-height: 82px;
  }

  .home-page .site-header:not(.is-scrolled):not(.menu-open) .brand span {
    color: #fffdf8;
  }

  .home-page .compact-hero.video-hero {
    min-height: 100svh;
    display: grid;
    padding-top: 82px;
  }

  .video-hero .compact-hero-panel {
    width: min(calc(100% - 40px), 720px);
    min-height: calc(100svh - 82px);
    padding: 86px 0 70px;
  }

  .video-hero .compact-hero-copy h1 {
    font-size: clamp(4.1rem, 15vw, 7.4rem);
  }

  .video-hero .compact-hero-copy p {
    max-width: 620px;
    font-size: clamp(1.08rem, 3.8vw, 1.75rem);
  }

  .home-products,
  .home-innovation,
  .home-news,
  .home-contact {
    padding-top: 58px;
    padding-bottom: 68px;
  }
}

@media (max-width: 760px) {
  .compact-hero-bg-video {
    object-position: center center;
  }

  .compact-hero-bg-shade {
    background:
      radial-gradient(circle at 70% 48%, rgba(177, 113, 48, 0.22), transparent 42%),
      linear-gradient(90deg, rgba(4, 4, 4, 0.82), rgba(4, 4, 4, 0.6) 58%, rgba(4, 4, 4, 0.42)),
      linear-gradient(0deg, rgba(4, 4, 4, 0.72), rgba(4, 4, 4, 0.16) 48%, rgba(4, 4, 4, 0.5));
  }

  .video-hero .compact-hero-panel {
    width: min(calc(100% - 32px), 560px);
    min-height: calc(100svh - 82px);
    padding: 76px 0 54px;
  }

  .video-hero .compact-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 11.8vw, 3.05rem);
    line-height: 0.9;
  }

  .video-hero .compact-hero-copy p {
    width: min(100%, 560px);
    margin-top: 22px;
    font-size: clamp(0.98rem, 4.8vw, 1.2rem);
    line-height: 1.28;
  }

  .video-hero .compact-hero-details {
    min-width: 124px;
    min-height: 50px;
    margin-top: 28px;
    padding: 0 22px;
  }

  .category-title-strip,
  .category-products-grid {
    width: min(calc(100% - 32px), 1710px);
  }

  .category-title-strip h2 {
    font-size: 1.72rem;
  }

  .category-image-link {
    box-shadow: 0 18px 40px rgba(21, 28, 32, 0.14);
  }

  .home-news-list article {
    padding: 16px;
  }
}
