:root {
  --accent: #b7652d;
  --accent-dark: #2d3028;
  --ink: #191c18;
  --muted: #697068;
  --line: #ded8cb;
  --soft: #f6f3ed;
  --white: #ffffff;
  --steel: #7d8278;
  --success: #4f6f52;
  --copper: #b7652d;
  --copper-dark: #834117;
  --olive: #536350;
  --graphite: #252822;
  --shadow: 0 18px 45px rgba(36, 32, 25, 0.11);
  --shadow-hover: 0 26px 60px rgba(36, 32, 25, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf6;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

a,
button,
input,
textarea,
select,
.product-card,
.blog-card,
.value-card,
.spec-card,
.contact-card,
.stat-card,
.side-panel,
.metric,
.tag,
.category,
.feature-band,
.split-media img,
.feature-media img,
.article-body > img.hero-image,
.footer-grid a {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 240ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(222, 216, 203, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand img {
  width: 118px;
  height: auto;
  filter: hue-rotate(160deg) saturate(0.85) brightness(0.82) contrast(1.18) sepia(0.18);
}

.brand span {
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #272b24;
  font-size: 14px;
  font-weight: 650;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

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

.button,
.button-secondary,
.button-light {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}

.button {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(183, 101, 45, 0.28);
}

.button::after,
.button-secondary::after,
.button-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.button:hover {
  background: linear-gradient(135deg, #c8793b, var(--copper-dark));
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(183, 101, 45, 0.34);
}

.button:hover::after,
.button-secondary:hover::after,
.button-light:hover::after {
  transform: translateX(120%);
}

.button-secondary {
  color: var(--accent);
  border-color: rgba(183, 101, 45, 0.26);
  background: rgba(183, 101, 45, 0.08);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(183, 101, 45, 0.24);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 620px;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--graphite);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 31, 26, 0.92), rgba(30, 31, 26, 0.62) 48%, rgba(30, 31, 26, 0.22)),
    linear-gradient(0deg, rgba(30, 31, 26, 0.88), rgba(30, 31, 26, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 38px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f0c597;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.metrics-strip {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.metric:hover {
  background: rgba(183, 101, 45, 0.07);
  transform: translateY(-3px);
}

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

.metric strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: linear-gradient(180deg, #f6f3ed, #fbfaf6);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head.center {
  display: block;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center p {
  margin: 16px auto 0;
}

.section-head.offset {
  align-items: start;
  padding-left: min(7vw, 84px);
  border-left: 4px solid var(--accent);
}

.section-head.reverse-align {
  flex-direction: row-reverse;
  align-items: center;
  text-align: right;
}

.section-head.reverse-align p {
  margin-left: auto;
}

.section-head h2,
.split-copy h2,
.feature-copy h2,
.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p {
  max-width: 520px;
}

.product-grid,
.blog-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.product-card,
.blog-card,
.value-card,
.spec-card,
.contact-card,
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card:hover,
.blog-card:hover,
.value-card:hover,
.spec-card:hover,
.contact-card:hover,
.stat-card:hover {
  border-color: rgba(183, 101, 45, 0.48);
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px);
}

.product-card {
  display: grid;
  grid-template-rows: 224px 1fr;
}

.product-card img,
.blog-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transform: scale(1.001);
}

.product-card:hover img,
.blog-card:hover img {
  filter: saturate(1.08) contrast(1.05) sepia(0.08);
  transform: scale(1.045);
}

.product-card-body,
.blog-card-body,
.value-card,
.spec-card,
.contact-card,
.stat-card {
  padding: 24px;
}

.product-card-body {
  display: grid;
  grid-template-rows: minmax(76px, auto) minmax(78px, auto) minmax(34px, auto) auto;
  align-content: start;
}

.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.contact-card h3,
.stat-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.product-card p,
.blog-card p,
.value-card p,
.spec-card p,
.contact-card p,
.stat-card p {
  font-size: 15px;
}

.product-card .card-link {
  align-self: start;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.card-link:hover {
  color: var(--copper-dark);
  transform: translateX(5px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.tag,
.category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(183, 101, 45, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.tag:hover,
.category:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-media {
  position: relative;
}

.split-media img,
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-media img:hover,
.feature-media img:hover,
.article-body > img.hero-image:hover {
  filter: saturate(1.1) contrast(1.05) sepia(0.08);
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow);
}

.split-copy p,
.feature-copy p {
  margin-top: 18px;
  font-size: 17px;
}

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

.check-list li,
.plain-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(223, 229, 239, 0.85);
  color: #2b3445;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.check-list li:hover,
.plain-list li:hover {
  color: var(--accent-dark);
  border-color: rgba(183, 101, 45, 0.28);
  transform: translateX(3px);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(183, 101, 45, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(183, 101, 45, 0.12), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.feature-band:hover {
  border-color: rgba(183, 101, 45, 0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.process-grid,
.spec-grid,
.contact-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.spec-grid.two,
.contact-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
}

.stat-card h3 {
  margin-top: 12px;
}

.page-hero {
  position: relative;
  padding: 122px 0 76px;
  color: var(--white);
  background: var(--graphite);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 31, 26, 0.92), rgba(30, 31, 26, 0.56));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 710px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #2f332d;
  font-weight: 750;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(183, 101, 45, 0.18);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: start;
}

.article-body {
  min-width: 0;
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
}

.article-body > img.hero-image {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 34px;
}

.article-body h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  font-size: 32px;
}

.article-body h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 23px;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 17px;
}

.article-body ul {
  margin: 14px 0 24px;
  padding-left: 22px;
  color: var(--muted);
}

.article-body li {
  margin-bottom: 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  border: 1px solid var(--line);
  font-size: 15px;
}

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

.spec-table tr {
  transition: background-color 180ms ease;
}

.spec-table tr:hover {
  background: rgba(183, 101, 45, 0.07);
}

.spec-table th {
  width: 38%;
  color: var(--ink);
  background: var(--soft);
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(11, 16, 32, 0.08);
}

.side-panel:hover {
  border-color: rgba(183, 101, 45, 0.42);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.side-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.side-panel p {
  margin-bottom: 18px;
  font-size: 15px;
}

.side-panel dl {
  margin: 0 0 22px;
}

.side-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.side-panel dd {
  margin: 4px 0 14px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(36, 32, 25, 0.08);
}

.product-inquiry-form {
  padding: clamp(24px, 4vw, 44px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2f332d;
  font-size: 13px;
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cad3e3;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(183, 101, 45, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 101, 45, 0.14);
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.inquiry-section {
  background:
    linear-gradient(90deg, rgba(183, 101, 45, 0.08), rgba(83, 99, 80, 0.06)),
    var(--white);
}

.site-footer {
  padding: 58px 0 26px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-grid img {
  width: 126px;
  margin-bottom: 14px;
  filter: hue-rotate(160deg) saturate(0.85) brightness(0.82) contrast(1.18) sepia(0.18);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(-34px);
}

.slide-right {
  transform: translateX(34px);
}

.slide-left.in-view,
.slide-right.in-view {
  transform: translateX(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-18px);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 13px;
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 570px;
  }

  .metrics-strip,
  .product-grid,
  .product-grid.four,
  .blog-grid,
  .value-grid,
  .process-grid,
  .spec-grid,
  .spec-grid.two,
  .contact-grid,
  .contact-grid.two,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .feature-band,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 104px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 54px 0 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .metrics-strip,
  .product-grid,
  .product-grid.four,
  .blog-grid,
  .value-grid,
  .process-grid,
  .spec-grid,
  .spec-grid.two,
  .contact-grid,
  .contact-grid.two,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    margin-top: 0;
  }

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

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

  .feature-band {
    padding: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Editorial equipment-exhibit redesign */
.site-header {
  top: 14px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  border: 1px solid rgba(222, 216, 203, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(36, 32, 25, 0.09);
}

.nav {
  width: min(1120px, calc(100% - 36px));
  min-height: 64px;
}

.editorial-hero {
  min-height: 760px;
  align-items: end;
  padding-top: 88px;
}

.editorial-hero::after {
  background:
    linear-gradient(90deg, rgba(25, 28, 24, 0.94), rgba(25, 28, 24, 0.65) 40%, rgba(25, 28, 24, 0.16) 72%),
    linear-gradient(0deg, rgba(25, 28, 24, 0.9), rgba(25, 28, 24, 0.08) 58%);
}

.editorial-hero .hero-content {
  padding: 96px 0 86px;
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 9px 14px;
  border: 1px solid rgba(240, 197, 151, 0.34);
  border-radius: 999px;
  color: #f0c597;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.6fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

.editorial-hero h1 {
  max-width: 920px;
  font-size: clamp(52px, 7.4vw, 108px);
  line-height: 0.86;
}

.editorial-hero p {
  max-width: 720px;
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(240, 197, 151, 0.26);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-panel span {
  display: block;
  color: #f0c597;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.05;
}

.hero-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.metrics-strip {
  border-radius: 0;
  background: #fbfaf6;
}

.metric {
  display: grid;
  align-content: space-between;
  min-height: 142px;
  background:
    linear-gradient(135deg, rgba(183, 101, 45, 0.06), transparent 58%),
    var(--white);
}

.metric strong {
  font-size: clamp(28px, 3vw, 42px);
}

.product-showcase-section {
  padding-top: 120px;
}

.dossier-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  align-items: start;
  margin-bottom: 52px;
}

.dossier-head h2 {
  max-width: 820px;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.94;
}

.dossier-head p {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.dossier-grid.product-grid,
.dossier-grid.product-grid.four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.dossier-grid .product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 310px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(83, 99, 80, 0.08), transparent 46%),
    var(--white);
}

.dossier-grid .product-card::before {
  content: "AKS EQUIPMENT DOSSIER";
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(25, 28, 24, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.dossier-grid .product-card > a {
  min-height: 310px;
  overflow: hidden;
}

.dossier-grid .product-card img {
  height: 100%;
  min-height: 310px;
}

.dossier-grid .product-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 18px 26px;
  padding: clamp(28px, 4vw, 54px);
}

.dossier-grid .product-card h2,
.dossier-grid .product-card h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.98;
}

.dossier-grid .product-card p {
  max-width: 560px;
  grid-column: 1 / 2;
  align-self: center;
  font-size: 17px;
}

.dossier-grid .tag-row {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  align-content: end;
  justify-content: end;
  align-self: end;
  width: 180px;
}

.dossier-grid .tag {
  width: 100%;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(183, 101, 45, 0.32);
}

.dossier-grid .card-link {
  grid-column: 1 / 2;
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
}

.split {
  align-items: stretch;
}

.split-copy {
  padding: clamp(20px, 3vw, 36px) 0;
}

.split-media img,
.feature-media img {
  border-radius: 0;
}

.feature-band {
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(83, 99, 80, 0.16), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.art-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  text-align: left;
}

.art-head h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.application-strip.value-grid {
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
}

.application-strip .value-card {
  min-height: 240px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(183, 101, 45, 0.08), rgba(255, 255, 255, 0.78)),
    var(--white);
}

.page-hero.product-archive-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 152px 0 88px;
}

.product-archive-hero h1 {
  max-width: 1020px;
  font-size: clamp(50px, 7vw, 96px);
}

.product-archive-section {
  padding-top: 76px;
}

.archive-grid .product-card {
  min-height: 280px;
}

.archive-grid .product-card > a,
.archive-grid .product-card img {
  min-height: 280px;
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .editorial-hero {
    min-height: 700px;
  }

  .hero-layout,
  .dossier-head,
  .art-head,
  .dossier-grid .product-card,
  .dossier-grid .product-card-body,
  .application-strip.value-grid {
    grid-template-columns: 1fr;
  }

  .dossier-grid .tag-row {
    grid-column: 1 / 2;
    grid-row: auto;
    width: auto;
    justify-content: start;
  }

  .dossier-grid .tag {
    width: auto;
  }

  .dossier-grid .product-card p,
  .dossier-grid .card-link {
    grid-column: 1 / 2;
  }
}

@media (max-width: 640px) {
  .editorial-hero {
    min-height: 710px;
    padding-top: 72px;
  }

  .editorial-hero .hero-content {
    padding: 52px 0 46px;
  }

  .editorial-hero h1,
  .product-archive-hero h1 {
    font-size: 48px;
  }

  .hero-panel {
    padding: 20px;
  }

  .dossier-head h2,
  .art-head h2 {
    font-size: 40px;
  }

  .dossier-grid .product-card {
    min-height: auto;
  }

  .dossier-grid .product-card > a,
  .dossier-grid .product-card img {
    min-height: 240px;
    height: 240px;
  }

  .dossier-grid .product-card-body {
    padding: 24px;
  }

  .dossier-grid .product-card h2,
  .dossier-grid .product-card h3 {
    font-size: 31px;
  }
}

/* Softer exhibition-layout refinement */
body {
  background:
    linear-gradient(90deg, rgba(83, 99, 80, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #fbfaf6 0%, #f4efe5 46%, #fbfaf6 100%);
  overflow-x: hidden;
}

.site-header {
  background: rgba(251, 250, 246, 0.9);
}

.editorial-hero {
  min-height: clamp(600px, 78svh, 690px);
  padding-top: 64px;
}

.editorial-hero img {
  object-position: center 46%;
  filter: saturate(0.9) contrast(1.04) sepia(0.08);
}

.editorial-hero::after {
  background:
    linear-gradient(90deg, rgba(25, 28, 24, 0.9), rgba(25, 28, 24, 0.58) 42%, rgba(25, 28, 24, 0.12) 74%),
    linear-gradient(0deg, rgba(25, 28, 24, 0.86), rgba(25, 28, 24, 0.06) 56%);
}

.editorial-hero .hero-content {
  padding: clamp(44px, 7vw, 72px) 0 clamp(38px, 6vw, 58px);
}

.hero-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.54fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.editorial-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.93;
  text-wrap: balance;
}

.editorial-hero p {
  max-width: 640px;
  font-size: clamp(16px, 1.45vw, 20px);
}

.hero-kicker {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(240, 197, 151, 0.18), rgba(83, 99, 80, 0.22)),
    rgba(255, 255, 255, 0.08);
}

.hero-panel {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 237, 216, 0.26), rgba(83, 99, 80, 0.5)),
    rgba(25, 28, 24, 0.44);
  transform: translateY(18px);
}

.hero-panel:hover {
  transform: translateY(10px);
  border-color: rgba(240, 197, 151, 0.54);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.metrics-strip {
  margin-top: -34px;
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.96);
}

.metric {
  min-height: 116px;
  padding: 22px 28px;
  background:
    linear-gradient(180deg, rgba(183, 101, 45, 0.08), transparent 42%),
    var(--white);
}

.metric:hover {
  background: var(--graphite);
  transform: translateY(-5px);
}

.metric:hover strong {
  color: #f0c597;
}

.metric:hover span {
  color: rgba(255, 255, 255, 0.7);
}

.product-showcase-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(86px, 9vw, 124px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 243, 237, 0.84)),
    transparent;
}

.product-showcase-section::before {
  content: "";
  position: absolute;
  left: max(16px, calc(50% - 590px));
  top: 78px;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 101, 45, 0.72), rgba(83, 99, 80, 0.28), transparent);
}

.dossier-head {
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(28px, 6vw, 84px);
}

.dossier-head h2 {
  max-width: 780px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  text-wrap: balance;
}

.dossier-head p {
  max-width: 340px;
  padding-top: 18px;
}

.dossier-grid.product-grid,
.dossier-grid.product-grid.four {
  counter-reset: dossier;
  gap: 24px;
}

.dossier-grid .product-card {
  counter-increment: dossier;
  min-height: 284px;
  margin-right: min(5vw, 66px);
  border-color: rgba(83, 99, 80, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(83, 99, 80, 0.1), rgba(255, 255, 255, 0.92) 42%),
    var(--white);
  box-shadow: 0 18px 42px rgba(36, 32, 25, 0.06);
}

.dossier-grid .product-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  margin-right: 0;
  margin-left: min(5vw, 66px);
  background:
    linear-gradient(225deg, rgba(183, 101, 45, 0.1), rgba(255, 255, 255, 0.92) 42%),
    var(--white);
}

.dossier-grid .product-card:nth-child(even) > a {
  grid-column: 2;
  grid-row: 1;
  border-right: 0;
  border-left: 1px solid rgba(83, 99, 80, 0.18);
}

.dossier-grid .product-card:nth-child(even) .product-card-body {
  grid-column: 1;
  grid-row: 1;
}

.dossier-grid .product-card::before {
  content: "DOSSIER / 0" counter(dossier);
  top: 24px;
  right: auto;
  left: clamp(28px, 4vw, 54px);
  color: rgba(183, 101, 45, 0.72);
  z-index: 2;
}

.dossier-grid .product-card:nth-child(even)::before {
  right: clamp(28px, 4vw, 54px);
  left: auto;
}

.dossier-grid .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent var(--shine-start, 38%), rgba(255, 255, 255, 0.28) var(--shine-mid, 48%), transparent var(--shine-end, 58%));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.dossier-grid .product-card:hover::after {
  opacity: 1;
}

.dossier-grid .product-card:hover {
  transform: translateY(-8px) rotateX(0.4deg);
}

.dossier-grid .product-card > a {
  min-height: 284px;
  border-right: 1px solid rgba(83, 99, 80, 0.18);
}

.dossier-grid .product-card img {
  min-height: 284px;
  filter: saturate(0.94) contrast(1.02) sepia(0.05);
}

.dossier-grid .product-card:hover img {
  filter: saturate(1.06) contrast(1.05) sepia(0.08);
  transform: scale(1.035);
}

.dossier-grid .product-card-body {
  align-content: center;
  grid-template-columns: minmax(0, 1fr) minmax(144px, 0.28fr);
  gap: 16px 28px;
  padding: clamp(34px, 4.8vw, 58px);
}

.dossier-grid .product-card h2,
.dossier-grid .product-card h3 {
  max-width: 680px;
  padding-top: 22px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
  text-wrap: balance;
}

.dossier-grid .product-card p {
  align-self: start;
  max-width: 590px;
  color: #52594f;
}

.dossier-grid .tag-row {
  align-self: center;
  align-content: center;
  width: 164px;
}

.dossier-grid .tag {
  min-height: 32px;
  border-color: rgba(83, 99, 80, 0.24);
  background: rgba(251, 250, 246, 0.72);
  color: #2d3028;
}

.dossier-grid .card-link {
  position: relative;
  border-bottom: 0;
}

.dossier-grid .card-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 180ms ease;
}

.dossier-grid .card-link:hover::after {
  transform: scaleX(1);
}

.feature-band,
.application-strip .value-card {
  border-radius: 8px;
}

.application-strip.value-grid {
  align-items: stretch;
}

.application-strip .value-card {
  display: grid;
  align-content: end;
  min-height: 260px;
  background:
    linear-gradient(155deg, rgba(83, 99, 80, 0.12), rgba(255, 255, 255, 0.82)),
    var(--white);
}

.application-strip .value-card:nth-child(2) {
  margin-top: 34px;
}

.application-strip .value-card:nth-child(3) {
  margin-top: 68px;
}

.page-hero.product-archive-hero {
  min-height: 440px;
  padding: 132px 0 64px;
}

.product-archive-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.96;
  text-wrap: balance;
}

.product-archive-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 0.26fr);
  gap: 32px;
  align-items: end;
}

.product-archive-hero .container::after {
  content: "AKS PRODUCT INDEX";
  justify-self: end;
  width: min(220px, 100%);
  padding: 18px;
  border: 1px solid rgba(240, 197, 151, 0.36);
  border-radius: 8px;
  color: #f0c597;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-align: right;
}

.product-archive-section .filters {
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(36, 32, 25, 0.06);
}

.archive-grid .product-card,
.archive-grid .product-card > a,
.archive-grid .product-card img {
  min-height: 270px;
}

@media (max-width: 980px) {
  .editorial-hero {
    min-height: auto;
    padding-top: 48px;
  }

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

  .hero-panel {
    max-width: 520px;
    width: 100%;
    transform: none;
  }

  .hero-panel:hover {
    transform: translateY(-4px);
  }

  .dossier-grid .product-card,
  .dossier-grid .product-card:nth-child(even) {
    grid-template-columns: 1fr;
    margin-right: 0;
    margin-left: 0;
  }

  .dossier-grid .product-card:nth-child(even) > a,
  .dossier-grid .product-card:nth-child(even) .product-card-body {
    grid-column: 1;
    grid-row: auto;
  }

  .dossier-grid .product-card > a,
  .dossier-grid .product-card:nth-child(even) > a {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(83, 99, 80, 0.18);
  }

  .dossier-grid .product-card:nth-child(even)::before {
    right: auto;
    left: clamp(28px, 4vw, 54px);
  }

  .product-archive-hero .container {
    grid-template-columns: 1fr;
  }

  .product-archive-hero .container::after {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .reveal,
  .slide-left,
  .slide-right {
    transform: translateY(22px);
  }

  .reveal.in-view,
  .slide-left.in-view,
  .slide-right.in-view {
    transform: translateY(0);
  }

  .site-header {
    width: 100%;
    top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 66px;
  }

  .brand {
    gap: 10px;
  }

  .brand span {
    max-width: 176px;
    font-size: 16px;
    line-height: 1.25;
  }

  .editorial-hero {
    padding-top: 0;
  }

  .editorial-hero .hero-content {
    padding: 46px 0 40px;
  }

  .editorial-hero h1,
  .product-archive-hero h1 {
    font-size: clamp(40px, 12vw, 50px);
    line-height: 0.98;
  }

  .hero-kicker {
    width: auto;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .button-light,
  .hero-actions .button-secondary {
    width: 100%;
  }

  .metrics-strip {
    width: calc(100% - 24px);
    margin-top: -14px;
  }

  .metric {
    min-height: 96px;
    padding: 20px;
  }

  .dossier-head h2,
  .art-head h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .dossier-grid .product-card-body {
    display: block;
    padding: 24px;
  }

  .dossier-grid .product-card h2,
  .dossier-grid .product-card h3 {
    padding-top: 30px;
    font-size: 28px;
  }

  .dossier-grid .tag-row {
    width: auto;
    margin-top: 20px;
  }

  .dossier-grid .product-card > a,
  .dossier-grid .product-card img,
  .archive-grid .product-card > a,
  .archive-grid .product-card img {
    min-height: 228px;
    height: 228px;
  }

  .application-strip .value-card:nth-child(2),
  .application-strip .value-card:nth-child(3) {
    margin-top: 0;
  }

  .page-hero.product-archive-hero {
    min-height: 360px;
    padding: 92px 0 50px;
  }

  .product-archive-hero .container::after {
    width: 100%;
  }

  .product-archive-section .filters {
    width: 100%;
    border-radius: 8px;
  }
}

/* Shared inner-page exhibition language */
.page-hero:not(.product-archive-hero) {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 136px 0 64px;
}

.page-hero:not(.product-archive-hero)::after {
  background:
    linear-gradient(90deg, rgba(25, 28, 24, 0.94), rgba(25, 28, 24, 0.58) 54%, rgba(25, 28, 24, 0.18)),
    linear-gradient(0deg, rgba(25, 28, 24, 0.76), rgba(25, 28, 24, 0.05) 56%);
}

.page-hero:not(.product-archive-hero) img {
  opacity: 0.58;
  filter: saturate(0.9) contrast(1.04) sepia(0.08);
}

.page-hero:not(.product-archive-hero) .container {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 0.34fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.page-hero:not(.product-archive-hero) h1 {
  max-width: 860px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.96;
}

.page-hero:not(.product-archive-hero) p {
  max-width: 360px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 197, 151, 0.36);
}

.page-hero:not(.product-archive-hero) .container::after {
  content: "AKS SITE DOSSIER";
  grid-column: 2;
  justify-self: end;
  width: 100%;
  max-width: 320px;
  padding: 15px 18px;
  border: 1px solid rgba(240, 197, 151, 0.34);
  border-radius: 8px;
  color: #f0c597;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: right;
}

.stats-grid .stat-card,
.process-grid .value-card,
.contact-card,
.spec-card {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(83, 99, 80, 0.09), rgba(255, 255, 255, 0.92) 42%),
    var(--white);
}

.stats-grid .stat-card:nth-child(2),
.process-grid .value-card:nth-child(2),
.blog-grid .blog-card:nth-child(2) {
  margin-top: 32px;
}

.stats-grid .stat-card:nth-child(3),
.process-grid .value-card:nth-child(3),
.blog-grid .blog-card:nth-child(3) {
  margin-top: 64px;
}

.blog-grid .blog-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(183, 101, 45, 0.07), rgba(255, 255, 255, 0.92) 36%),
    var(--white);
}

.blog-grid .blog-card img {
  height: 250px;
}

.blog-grid .blog-card-body {
  min-height: 260px;
  display: grid;
  align-content: start;
}

.contact-form {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 237, 0.74)),
    var(--white);
}

.contact-form .button {
  width: max-content;
  min-width: 150px;
}

.spec-table {
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .page-hero:not(.product-archive-hero) .container {
    grid-template-columns: 1fr;
  }

  .page-hero:not(.product-archive-hero) p,
  .page-hero:not(.product-archive-hero) .container::after {
    grid-column: 1;
    max-width: 520px;
    text-align: left;
  }

  .stats-grid .stat-card:nth-child(2),
  .process-grid .value-card:nth-child(2),
  .blog-grid .blog-card:nth-child(2),
  .stats-grid .stat-card:nth-child(3),
  .process-grid .value-card:nth-child(3),
  .blog-grid .blog-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .page-hero:not(.product-archive-hero) {
    min-height: 390px;
    padding: 100px 0 46px;
  }

  .page-hero:not(.product-archive-hero) h1 {
    font-size: clamp(40px, 12vw, 50px);
  }

  .blog-grid .blog-card-body {
    min-height: auto;
  }

  .contact-form .button {
    width: 100%;
  }
}
