:root {
  --ink: #18211f;
  --muted: #66706c;
  --paper: #f7f5ee;
  --white: #fffdf8;
  --line: #d8d5c9;
  --steel: #2f3f3d;
  --forest: #1d5a4d;
  --copper: #b96e2d;
  --amber: #e7b44e;
  --foam: #e8ece4;
  --shadow: 0 22px 70px rgba(24, 33, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(24, 33, 31, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fbfaf4 0%, var(--paper) 58%, #ebe8dc 100%);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 213, 201, 0.72);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  background: var(--ink);
  color: var(--amber);
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: #394541;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.language-switcher,
.hero-cta {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.language-switcher {
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f0eee5;
}

.language-switcher a {
  min-width: 38px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #5f6864;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.language-switcher .active {
  background: var(--ink);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-ghost {
  background: rgba(255, 253, 248, 0.14);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.62);
}

.button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 18, 0.92) 0%, rgba(18, 30, 28, 0.74) 43%, rgba(18, 30, 28, 0.18) 77%),
    linear-gradient(0deg, rgba(24, 33, 31, 0.7) 0%, transparent 42%);
  content: "";
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  padding: clamp(58px, 8vw, 116px) clamp(20px, 5vw, 72px) 150px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-band .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 650;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 650;
  line-height: 1.08;
}

h3 {
  margin-bottom: 15px;
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.hero-cta {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.23);
  border-left: 1px solid rgba(255, 253, 248, 0.23);
}

.hero-proof div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 253, 248, 0.23);
}

.hero-proof dt {
  font-family: "Archivo", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 34px;
  width: min(420px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(14, 22, 20, 0.72);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-label {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: 40px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading.compact .eyebrow {
  margin-bottom: 12px;
}

.material-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.98fr 0.74fr;
  gap: 16px;
}

.material-card {
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 90, 77, 0.12), transparent 28%),
    var(--white);
  box-shadow: 0 10px 34px rgba(24, 33, 31, 0.06);
}

.material-card.primary {
  background:
    linear-gradient(145deg, rgba(29, 90, 77, 0.93), rgba(24, 33, 31, 0.98)),
    var(--forest);
  color: var(--white);
}

.material-card.dark {
  background:
    linear-gradient(145deg, #263331, #121816),
    var(--ink);
  color: var(--white);
}

.material-card.supporting {
  min-height: 300px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(232, 236, 228, 0.78)),
    var(--white);
}

.material-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(24, 33, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: #394541;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.material-badge.inline {
  margin-bottom: 20px;
}

.primary .material-badge,
.dark .material-badge,
.comparison-card.dark .material-badge,
.material-link-card.dark .material-badge {
  border-color: rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.1);
  color: var(--amber);
}

.material-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.material-card.primary p,
.material-card.dark p {
  color: rgba(255, 253, 248, 0.76);
}

.card-index {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--copper);
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.primary .card-index,
.dark .card-index {
  color: var(--amber);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(24, 33, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: #44504b;
  font-size: 12px;
  font-weight: 700;
}

.material-listing-grid {
  grid-template-columns: 1.12fr 1fr 0.82fr;
}

.material-link-card.primary {
  background:
    linear-gradient(145deg, rgba(29, 90, 77, 0.94), rgba(24, 33, 31, 0.98)),
    var(--forest);
  color: var(--white);
}

.material-link-card.dark {
  background:
    linear-gradient(145deg, #263331, #121816),
    var(--ink);
  color: var(--white);
}

.material-link-card.primary span:not(.material-badge),
.material-link-card.dark span:not(.material-badge) {
  color: rgba(255, 253, 248, 0.74);
}

.material-link-card.supporting {
  background: #f7f5ee;
}

.comparison-card.primary,
.comparison-card.dark {
  color: var(--white);
}

.comparison-card.primary {
  background:
    linear-gradient(145deg, rgba(29, 90, 77, 0.94), rgba(24, 33, 31, 0.98)),
    var(--forest);
}

.comparison-card.dark {
  background:
    linear-gradient(145deg, #263331, #121816),
    var(--ink);
}

.comparison-card.primary p,
.comparison-card.primary li,
.comparison-card.dark p,
.comparison-card.dark li {
  color: rgba(255, 253, 248, 0.74);
}

.selection-note {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.primary .tag-row span,
.dark .tag-row span {
  border-color: rgba(255, 253, 248, 0.2);
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.86);
}

.split-section {
  background: var(--ink);
  color: var(--white);
}

.split-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.68);
}

.application-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  border-left: 1px solid rgba(255, 253, 248, 0.16);
}

.application-board a {
  min-height: 178px;
  padding: 25px;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.application-board a:hover {
  background: rgba(255, 253, 248, 0.07);
  transform: translateY(-2px);
}

.application-board strong,
.application-board span {
  display: block;
}

.application-board strong {
  margin-bottom: 40px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.12;
}

.application-board span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
  line-height: 1.56;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(185, 110, 45, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
    #f3f0e5;
}

.process-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.process-rail span {
  min-height: 86px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #2f3b38;
  font-family: "Archivo", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(24, 33, 31, 0.07);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 80px);
  background: var(--white);
}

.trust-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-metrics div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f5ee;
}

.trust-metrics strong,
.trust-metrics span {
  display: block;
}

.trust-metrics strong {
  margin-bottom: 34px;
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.trust-metrics span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(29, 90, 77, 0.98), rgba(24, 33, 31, 1)),
    var(--forest);
  color: var(--white);
}

.contact-band p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  font: inherit;
}

.inquiry-form .button {
  width: 100%;
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.contact-quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-quick-links a {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 6px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
}

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

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  padding: clamp(62px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(24, 33, 31, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--white);
}

.product-hero h1 {
  max-width: 790px;
  color: var(--ink);
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

.product-hero .hero-cta {
  margin: 34px 0 0;
}

.product-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.product-hero-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.86) contrast(1.03);
}

.product-hero-card dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 253, 248, 0.13);
}

.product-hero-card div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  padding: 16px 18px;
  background: #17211f;
}

.product-hero-card dt {
  color: var(--amber);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-hero-card dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  background: #f4f1e6;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-list h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.spec-section {
  background: var(--ink);
  color: var(--white);
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 18px;
  align-items: start;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.03);
}

.spec-table th,
.spec-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: var(--amber);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-table td:first-child {
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.selection-card {
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.selection-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.application-strip {
  background:
    linear-gradient(90deg, rgba(185, 110, 45, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--paper);
}

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

.application-pill-grid span {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #34403c;
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 250px;
  }

  .material-grid,
  .application-board,
  .material-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher {
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(12, 20, 18, 0.92) 0%, rgba(18, 30, 28, 0.76) 52%, rgba(18, 30, 28, 0.5) 100%),
      linear-gradient(0deg, rgba(24, 33, 31, 0.62) 0%, transparent 42%);
  }

  .hero-content {
    padding: 64px 20px 34px;
  }

  h1 {
    font-size: clamp(41px, 12vw, 58px);
  }

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 20px 28px;
  }

  .section-heading,
  .custom-section,
  .trust-section,
  .contact-band,
  .product-hero,
  .product-intro,
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: 8px;
  }

  .material-grid,
  .application-board,
  .material-listing-grid,
  .process-rail,
  .trust-metrics,
  .application-pill-grid,
  .factory-gallery {
    grid-template-columns: 1fr;
  }

  .product-hero-card div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .spec-table,
  .spec-table thead,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td {
    display: block;
  }

  .spec-table {
    border: 0;
    background: transparent;
  }

  .spec-table thead {
    display: none;
  }

  .spec-table tbody {
    display: grid;
    gap: 12px;
  }

  .spec-table tr {
    overflow: hidden;
    border: 1px solid rgba(255, 253, 248, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.04);
  }

  .spec-table td {
    display: grid;
    grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.11);
  }

  .spec-table td::before {
    content: attr(data-label);
    color: var(--amber);
    font-family: "Archivo", sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .spec-table td:first-child {
    background: rgba(255, 253, 248, 0.04);
  }

  .material-card {
    min-height: 0;
  }

  .card-index {
    margin-bottom: 28px;
  }

}

@media (max-width: 440px) {
  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-cta {
    width: 100%;
  }

  .language-switcher a {
    min-width: 34px;
  }
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 118px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(24, 33, 31, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--white);
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

.hero-note-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(24, 33, 31, 0.08);
}

.hero-note-card h2,
.hero-note-card h3 {
  margin-bottom: 18px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.08;
}

.hero-note-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.58;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

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

.content-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 33, 31, 0.06);
}

.content-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.content-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.link-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover {
  box-shadow: 0 16px 42px rgba(24, 33, 31, 0.1);
  transform: translateY(-2px);
}

.link-card strong {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.link-card span {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.dark-band p,
.dark-band li {
  color: rgba(255, 253, 248, 0.7);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.data-list {
  display: grid;
  gap: 10px;
}

.data-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.data-list dt {
  color: var(--copper);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.data-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(150px, 0.32fr));
  gap: 28px;
  padding: clamp(48px, 6vw, 78px) clamp(20px, 5vw, 72px);
  background: #101715;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 253, 248, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer .company-legal-name {
  margin: 16px 0 8px;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 700;
}

.site-footer h3 {
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.page-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.page-image-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.page-image-card figcaption {
  padding: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.factory-hero .hero-cta {
  margin-top: 30px;
}

.factory-gallery-section {
  background:
    linear-gradient(90deg, rgba(185, 110, 45, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
    #f3f0e5;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.factory-photo {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 44px rgba(24, 33, 31, 0.08);
}

.factory-photo img {
  width: 100%;
  height: clamp(260px, 24vw, 420px);
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.factory-photo figcaption {
  padding: 15px 16px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 780px) {
  .factory-gallery {
    grid-template-columns: 1fr;
  }

  .factory-photo img {
    height: 240px;
  }
}

.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .main-nav,
.rtl .header-actions,
.rtl .hero-cta,
.rtl .language-switcher,
.rtl .brand {
  direction: ltr;
}

.rtl .hero {
  direction: ltr;
  text-align: left;
}

.rtl .hero-content {
  direction: rtl;
  text-align: right;
}

.rtl .brand span:last-child,
.rtl .main-nav,
.rtl .header-actions {
  text-align: left;
}

.rtl .hero-note-card ul,
.rtl .content-card ul,
.rtl .selection-card ul {
  padding-right: 18px;
  padding-left: 0;
}

.rtl .spec-table th,
.rtl .spec-table td {
  text-align: right;
}

@media (max-width: 980px) {
  .page-hero,
  .two-column,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .page-hero {
    padding-top: 42px;
  }

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

  .data-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
