:root {
  --ink: #191817;
  --muted: #68645d;
  --dim: #918b80;
  --paper: #f3f0ea;
  --panel: #fbfaf6;
  --panel-2: #e9e4da;
  --line: rgba(25, 24, 23, 0.16);
  --strong-line: rgba(25, 24, 23, 0.28);
  --dark: #171717;
  --dark-2: #242321;
  --oxide: #9d2f22;
  --signal: #b7a23b;
  --steel: #c7c7c2;
  --shadow: 0 28px 80px rgba(25, 24, 23, 0.14);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(25, 24, 23, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 24, 23, .042) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(157, 47, 34, .08), transparent 26%),
    linear-gradient(180deg, #f8f5ee 0%, var(--paper) 45%, #ece7dd 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, .08) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .08) 50%, rgba(0, 0, 0, .08) 75%, transparent 75%, transparent);
  background-size: 9px 9px;
}

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

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 92px;
  font-weight: 900;
}

h2 {
  font-size: 56px;
  font-weight: 900;
}

h3 {
  font-size: 26px;
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(23, 23, 23, .94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img {
  width: 156px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .24));
  transition: transform .28s ease, filter .28s ease;
}

.brand:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .32));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 10px 13px;
  border-radius: var(--radius);
  transition: color .24s ease, background .24s ease, transform .24s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 2px;
  background: var(--oxide);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

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

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(25, 24, 23, .22);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--oxide);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(157, 47, 34, .18);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.nav-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .22) 42%, transparent 64%);
  transform: translateX(-120%);
  transition: transform .58s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(25, 24, 23, .22);
}

.nav-cta:hover::after,
.btn:hover::after {
  transform: translateX(120%);
}

.btn.secondary,
.nav-cta.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--strong-line);
  box-shadow: none;
}

.hero .btn.secondary,
.product-hero .btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
}

.btn.secondary:hover {
  background: rgba(25, 24, 23, .08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, .96) 0%, rgba(12, 12, 12, .78) 42%, rgba(12, 12, 12, .22) 70%),
    linear-gradient(180deg, transparent 0%, rgba(12, 12, 12, .82) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 16%;
  width: 62vw;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  pointer-events: none;
}

.hero.home {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779844427570-0b9dbf17.jpg");
}

.hero.products-hero {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779844428675-218237d4.jpg");
}

.hero.about-hero {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779844427570-0b9dbf17.jpg");
}

.hero.contact-hero {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779844427462-a0b6e71e.jpg");
}

.hero.blog-hero {
  --hero-image: url("https://storage.googleapis.com/cg-webase/media/1779844427159-f51ec1fb.jpg");
}

.hero.sub {
  min-height: 58svh;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: end;
}

.hero.sub .hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 21px;
}

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

.hero-codes {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--oxide);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
}

.hero-codes span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding-bottom: 8px;
  font-size: 13px;
}

.hero-codes span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-metrics {
  width: min(1240px, calc(100% - 40px));
  margin: -26px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .96);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 118px;
  padding: 23px;
  border-right: 1px solid var(--line);
  transition: transform .28s ease, background .28s ease;
}

.metric:last-child {
  border-right: 0;
}

.metric:hover {
  background: rgba(157, 47, 34, .07);
  transform: translateY(-6px);
}

.metric strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

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

.section {
  padding: 90px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.alt {
  background: rgba(25, 24, 23, .06);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 17px;
}

.specimen-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

.specimen-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 500px;
  grid-column: span 6;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(25, 24, 23, .09);
  transition: transform .36s ease, box-shadow .36s ease, border-color .36s ease;
}

.specimen-card.major {
  grid-column: span 7;
  min-height: 610px;
}

.specimen-card.minor {
  grid-column: span 5;
  min-height: 610px;
}

.specimen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(183, 162, 59, .24), transparent 34%);
  transition: opacity .28s ease;
}

.specimen-card:hover {
  transform: translateY(-9px);
  border-color: rgba(157, 47, 34, .5);
  box-shadow: 0 28px 74px rgba(25, 24, 23, .18);
}

.specimen-card:hover::after {
  opacity: 1;
}

.specimen-media {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background: var(--dark);
}

.specimen-media img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  filter: grayscale(.22) contrast(1.08);
  transition: transform .72s ease, filter .72s ease;
}

.specimen-card:hover .specimen-media img {
  transform: scale(1.055);
  filter: grayscale(0) contrast(1.08);
}

.specimen-no {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: #fff;
  background: var(--oxide);
  font-weight: 900;
  line-height: 1;
}

.specimen-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .42fr);
  gap: 20px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.specimen-copy h2,
.specimen-copy h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.specimen-copy p {
  color: var(--muted);
}

.specimen-specs,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specimen-specs {
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  max-width: none;
}

.specimen-specs span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  height: fit-content;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.tag.amber {
  border-color: rgba(183, 162, 59, .54);
  background: rgba(183, 162, 59, .12);
}

.specimen-link,
.card-link,
.editorial-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--oxide);
  font-weight: 900;
  transition: color .22s ease, transform .22s ease;
}

.specimen-link:hover,
.card-link:hover,
.editorial-link:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.assembly-band {
  display: grid;
  grid-template-columns: .45fr 1fr .72fr;
  gap: 28px;
  align-items: start;
}

.story-grid {
  display: grid;
  grid-template-columns: .45fr minmax(0, 1fr) .65fr;
  gap: 30px;
  align-items: start;
}

.story-kicker {
  position: sticky;
  top: 100px;
  color: var(--oxide);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-copy h2 {
  font-size: 64px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.product-card,
.blog-card,
.capability,
.value-card,
.contact-panel,
.spec-panel,
.process-step {
  --mx: 50%;
  --my: 50%;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(25, 24, 23, .08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.product-card::after,
.blog-card::after,
.capability::after,
.value-card::after,
.contact-panel::after,
.spec-panel::after,
.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(157, 47, 34, .12), transparent 36%);
  transition: opacity .24s ease;
}

.product-card:hover,
.blog-card:hover,
.capability:hover,
.value-card:hover,
.contact-panel:hover,
.spec-panel:hover,
.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(157, 47, 34, .45);
  box-shadow: 0 24px 64px rgba(25, 24, 23, .15);
}

.product-card:hover::after,
.blog-card:hover::after,
.capability:hover::after,
.value-card:hover::after,
.contact-panel:hover::after,
.spec-panel:hover::after,
.process-step:hover::after {
  opacity: 1;
}

.product-card,
.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: grayscale(.18);
  transition: transform .5s ease, filter .5s ease;
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.08);
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.card-body h2,
.card-body h3 {
  font-size: 25px;
}

.card-body p,
.capability p,
.value-card p,
.process-step p,
.spec-panel p,
.contact-panel p {
  color: var(--muted);
}

.capability,
.value-card,
.process-step,
.spec-panel,
.contact-panel {
  padding: 26px;
}

.capability h3,
.value-card h3,
.process-step h3,
.spec-panel h2,
.contact-panel h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.feature-list,
.check-list,
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li,
.check-list li,
.plain-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.feature-list li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  background: var(--oxide);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 34px;
  align-items: start;
}

.media-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--dark);
  transition: transform .35s ease, border-color .35s ease;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: grayscale(.18) contrast(1.05);
  transition: transform .7s ease, filter .7s ease;
}

.media-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 47, 34, .52);
}

.media-panel:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.08);
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(23, 23, 23, .86);
  color: #f8f5ee;
  backdrop-filter: blur(12px);
}

.data-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-strip div {
  padding: 20px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}

.data-strip div:last-child {
  border-right: 0;
}

.data-strip strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.data-strip span {
  color: var(--muted);
  font-size: 13px;
}

.catalog-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--strong-line);
}

.catalog-row {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(210px, .76fr) minmax(300px, 1fr) 220px;
  gap: 28px;
  align-items: center;
  min-height: 210px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .28s ease, padding .28s ease, transform .28s ease;
}

.catalog-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(251, 250, 246, .74);
}

.catalog-no {
  color: var(--oxide);
  font-size: 16px;
  font-weight: 900;
}

.catalog-title h2 {
  font-size: 54px;
}

.catalog-title p,
.catalog-desc {
  color: var(--muted);
}

.catalog-media {
  position: relative;
  width: 220px;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  justify-self: end;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.2);
  transition: transform .5s ease, filter .5s ease;
}

.catalog-row:hover .catalog-media img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.08);
}

.gallery-row {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.gallery-row:last-child {
  border-bottom: 1px solid var(--line);
}

.gallery-row img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-hero {
  padding: 74px 0 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, .96), rgba(12, 12, 12, .54)),
    var(--product-image);
  background-position: center;
  background-size: cover;
}

.product-hero-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .56fr);
  gap: 38px;
  align-items: end;
}

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

.product-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-kpis .product-hero-photo {
  grid-column: 1 / -1;
}

.product-hero-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .38);
  filter: grayscale(.12) contrast(1.06);
  transition: transform .4s ease, filter .4s ease, border-color .4s ease;
}

.product-hero-photo:hover {
  transform: scale(1.02);
  filter: grayscale(0) contrast(1.08);
  border-color: rgba(183, 162, 59, .58);
}

.product-kpis div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, .92);
  color: var(--ink);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.product-kpis div:hover {
  transform: translateX(4px);
  border-color: rgba(157, 47, 34, .52);
  background: #fff;
}

.product-kpis strong {
  display: block;
  font-size: 22px;
}

.product-kpis span {
  color: var(--muted);
  font-size: 13px;
}

.article {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.article > h1 {
  color: var(--ink);
  font-size: 66px;
}

.article img.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 26px 0 34px;
  filter: grayscale(.12) contrast(1.06);
}

.article-body {
  color: var(--ink);
  font-size: 17px;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: 32px;
}

.article-body p {
  margin: 16px 0;
}

.article-body ul {
  margin: 16px 0;
  padding-left: 22px;
}

.article-body li {
  margin: 8px 0;
}

.article-meta,
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb {
  margin-bottom: 22px;
}

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

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 30%;
  color: var(--ink);
  background: rgba(157, 47, 34, .08);
}

.spec-table td {
  color: var(--muted);
  background: rgba(255, 255, 255, .38);
}

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

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
}

.inquiry-band {
  background:
    linear-gradient(135deg, rgba(25, 24, 23, .08), rgba(157, 47, 34, .10)),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(25, 24, 23, .2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--oxide);
  box-shadow: 0 0 0 3px rgba(157, 47, 34, .14);
}

.quote {
  padding: 32px;
  border-left: 4px solid var(--oxide);
  background: rgba(157, 47, 34, .08);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: steps;
}

.process-step {
  counter-increment: steps;
}

.process-step::before {
  content: "0" counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--oxide);
  font-weight: 900;
}

.footer {
  padding: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--dark);
  color: rgba(255, 255, 255, .74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .62fr);
  gap: 28px;
}

.footer img {
  width: 150px;
  margin-bottom: 16px;
}

.footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
}

.footer a,
.footer p {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, .74);
  transition: color .22s ease, transform .22s ease;
}

.footer a:hover {
  color: var(--signal);
  transform: translateX(4px);
}

.footer-bottom {
  width: min(1240px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  clip-path: inset(8% 0 0 0);
  transition: opacity .72s ease, transform .72s ease, clip-path .72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.hero-inner.reveal,
.hero-metrics.reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 70px;
  }

  h2,
  .story-copy h2 {
    font-size: 44px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(23, 23, 23, .98);
  }

  .site-header.open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner,
  .section-head,
  .split,
  .story-grid,
  .assembly-band,
  .product-hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-codes {
    max-width: 420px;
  }

  .hero-metrics,
  .grid.cols-4,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

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

  .specimen-card,
  .specimen-card.major,
  .specimen-card.minor {
    grid-column: auto;
    min-height: 500px;
  }

  .catalog-row {
    grid-template-columns: 56px minmax(0, 1fr) 190px;
  }

  .catalog-desc {
    grid-column: 2 / -1;
  }

  .catalog-media {
    width: 190px;
    grid-column: 3;
    grid-row: 1;
  }

  .story-kicker {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .wrap,
  .hero-inner,
  .product-hero-inner,
  .article,
  .footer-bottom,
  .hero-metrics {
    width: min(100% - 28px, 1240px);
  }

  .brand img {
    width: 132px;
  }

  h1,
  .product-hero h1,
  .article > h1 {
    font-size: 44px;
  }

  h2,
  .story-copy h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero.sub {
    min-height: 48svh;
  }

  .hero-inner {
    padding: 64px 0 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-metrics,
  .grid.cols-4,
  .specimen-wall,
  .data-strip,
  .timeline,
  .form-grid,
  .product-kpis,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .specimen-card,
  .specimen-card.major,
  .specimen-card.minor {
    min-height: auto;
  }

  .specimen-copy {
    grid-template-columns: 1fr;
  }

  .specimen-specs {
    justify-content: flex-start;
    max-width: none;
  }

  .catalog-row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .catalog-desc,
  .catalog-media {
    grid-column: auto;
    grid-row: auto;
  }

  .catalog-media {
    width: 100%;
    justify-self: stretch;
    aspect-ratio: 16 / 9;
    clip-path: none;
  }

  .section {
    padding: 64px 0;
  }

  .data-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-strip div:last-child {
    border-bottom: 0;
  }

  .card-body,
  .capability,
  .value-card,
  .process-step,
  .spec-panel,
  .contact-panel {
    padding: 20px;
  }
}
