:root {
  --bg: #0a1218;
  --bg-alt: #121d24;
  --bg-soft: #1a2831;
  --paper: #ede6dc;
  --paper-strong: #fff8ef;
  --text: #f5efe8;
  --text-soft: #cabfaf;
  --ink: #141719;
  --ink-soft: #4e5458;
  --line: rgba(255, 248, 239, 0.12);
  --line-dark: rgba(20, 23, 25, 0.14);
  --accent: #d07d35;
  --accent-strong: #f5b266;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(208, 125, 53, 0.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #081015 0%, #0b141b 40%, #101920 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 18vh;
  left: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 125, 53, 0.24), transparent 70%);
  filter: blur(8px);
}

.page-shell::after {
  right: -140px;
  bottom: 12vh;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  filter: blur(16px);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header .container {
  width: min(1380px, calc(100vw - 28px));
}

.section {
  position: relative;
  padding: 110px 0;
  scroll-margin-top: 100px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .section-label {
  justify-content: center;
}

.section-head h2,
.manufacturing-copy h2,
.quality-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-head p,
.manufacturing-copy p,
.quality-copy p,
.about-copy p,
.contact-copy p,
.hero-lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-soft);
}

.section-label {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-label::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 16, 21, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  border-radius: 999px;
  background: rgba(10, 18, 24, 0.42);
  backdrop-filter: blur(8px);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

body:is(
  [data-page="home"],
  [data-page="products"],
  [data-page="42crmo4"],
  [data-page="40cr"],
  [data-page="ck45-1045"],
  [data-page="34crnimo6"],
  [data-page="35crmo"]
) .site-header {
  position: fixed;
  left: 0;
  right: 0;
}

body:is(
  [data-page="home"],
  [data-page="products"],
  [data-page="42crmo4"],
  [data-page="40cr"],
  [data-page="ck45-1045"],
  [data-page="34crnimo6"],
  [data-page="35crmo"]
):not(.is-scrolled) .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body:is(
  [data-page="home"],
  [data-page="products"],
  [data-page="42crmo4"],
  [data-page="40cr"],
  [data-page="ck45-1045"],
  [data-page="34crnimo6"],
  [data-page="35crmo"]
):not(.is-scrolled) .header-inner {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

body:is(
  [data-page="home"],
  [data-page="products"],
  [data-page="42crmo4"],
  [data-page="40cr"],
  [data-page="ck45-1045"],
  [data-page="34crnimo6"],
  [data-page="35crmo"]
).is-scrolled .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body:is(
  [data-page="home"],
  [data-page="products"],
  [data-page="42crmo4"],
  [data-page="40cr"],
  [data-page="ck45-1045"],
  [data-page="34crnimo6"],
  [data-page="35crmo"]
).is-scrolled .header-inner {
  border-color: rgba(255, 248, 239, 0.08);
  background: rgba(10, 18, 24, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 52px;
  width: auto;
  height: 52px;
  padding: 0 12px;
  border-radius: 16px;
  font-family: "Teko", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--paper-strong);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, #98602d, #d07d35);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 239, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.menu li {
  position: relative;
}

.menu-link,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 11px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.24s ease;
}

.site-nav .menu-link.is-active,
.site-nav .menu-button.is-active,
.menu-link:hover,
.menu-button:hover {
  color: var(--paper-strong);
}

.menu-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.24s ease;
}

.has-dropdown.is-open .menu-button::after {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 248, 239, 0.12);
  background: rgba(13, 21, 27, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-soft);
  transition:
    color 0.24s ease,
    background-color 0.24s ease;
}

.dropdown-panel a:hover {
  color: var(--paper-strong);
  background: rgba(255, 248, 239, 0.06);
}

.has-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.header-cta {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #df8c41, #b96726);
  color: var(--paper-strong);
  box-shadow: 0 12px 30px rgba(208, 125, 53, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 248, 239, 0.18);
  color: var(--paper-strong);
  background: rgba(255, 248, 239, 0.02);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.02);
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background: var(--paper-strong);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}

.nav-toggle span:nth-child(2) {
  top: 24px;
}

.nav-toggle span:nth-child(3) {
  top: 32px;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 84px 0 56px;
}

body[data-page="home"] .home-hero {
  padding-top: calc(var(--header-height) + 82px);
}

body:is(
  [data-page="products"],
  [data-page="42crmo4"],
  [data-page="40cr"],
  [data-page="ck45-1045"],
  [data-page="34crnimo6"],
  [data-page="35crmo"]
) .page-hero {
  padding-top: calc(var(--header-height) + 72px);
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.04) brightness(0.58);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 17, 0.96) 0%, rgba(7, 13, 17, 0.78) 45%, rgba(7, 13, 17, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 13, 17, 0.42) 0%, rgba(7, 13, 17, 0.06) 40%, rgba(7, 13, 17, 0.9) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: center;
  padding-top: 20px;
}

.hero-copy {
  max-width: 860px;
}

.hero-copy h1 {
  margin: 0 0 20px;
  max-width: 840px;
  font-family: "Teko", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  font-size: 1rem;
  text-wrap: pretty;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-stats article {
  padding: 16px 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(255, 248, 239, 0.04);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  color: var(--paper-strong);
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.home-hero .hero-copy {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  align-items: end;
  gap: 44px;
}

.home-hero .hero-copy h1,
.home-hero .hero-lead {
  margin-left: 0;
  margin-right: 0;
}

.home-hero .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 5.8vw, 5.8rem);
}

.home-hero .hero-lead {
  max-width: 620px;
}

.home-hero .section-label {
  justify-content: flex-start;
}

.home-hero .hero-actions {
  justify-content: flex-start;
}

.home-hero .hero-stats {
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: 0;
  margin-right: 0;
  margin-top: 28px;
}

.home-hero .hero-panel {
  width: min(100%, 560px);
  margin: 0;
  justify-self: end;
}

.hero-card,
.reason-card,
.featured-product,
.product-card,
.application-card,
.media-badge,
.traceability-card,
.contact-form,
.contact-cards article,
.process-list article,
.inspection-grid article,
.about-points article {
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(255, 248, 239, 0.03);
}

.hero-card-photo img {
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
}

.hero-card-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 280px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 20, 25, 0.82);
  border: 1px solid rgba(255, 248, 239, 0.08);
  backdrop-filter: blur(8px);
}

.hero-card-caption span,
.product-tag,
.card-number,
.reason-card span,
.signal-grid span,
.contact-cards span,
.traceability-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-card-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.hero-card-caption p,
.hero-note p,
.reason-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

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

.hero-note {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.06), rgba(255, 248, 239, 0.02)),
    rgba(255, 248, 239, 0.01);
}

.note-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 239, 0.14);
  color: var(--accent-strong);
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
}

.hero-note strong {
  display: block;
  margin-top: 14px;
  font-size: 1.08rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.reason-card {
  min-height: 210px;
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: linear-gradient(180deg, rgba(16, 27, 35, 0.92), rgba(10, 18, 24, 0.92));
}

.reason-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.34rem;
  line-height: 1.08;
}

.signal-band {
  position: relative;
  padding: 26px 0 0;
}

.home-reasons-section {
  padding-top: 72px;
  padding-bottom: 88px;
  background:
    linear-gradient(180deg, rgba(9, 15, 20, 0.58), rgba(9, 15, 20, 0.88)),
    radial-gradient(circle at top center, rgba(208, 125, 53, 0.08), transparent 34%);
}

.home-reasons-section .section-head {
  margin-bottom: 38px;
}

.home-reasons-section .reasons-grid {
  max-width: 1020px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 8px;
}

.signal-grid > div {
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255, 248, 239, 0.12);
  border-bottom: 1px solid rgba(255, 248, 239, 0.12);
}

.signal-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  color: var(--paper-strong);
}

.products-section {
  background:
    linear-gradient(180deg, rgba(237, 230, 220, 0.98), rgba(233, 224, 212, 0.98)),
    var(--paper);
  color: var(--ink);
}

.products-section .section-label,
.products-section .product-tag,
.products-section .card-number {
  color: #ad6326;
}

.products-section .section-head p {
  color: var(--ink-soft);
}

.products-layout {
  display: grid;
  gap: 24px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(173, 99, 38, 0.08), rgba(255, 255, 255, 0.24));
}

.featured-product h3,
.product-card h3,
.application-card h3,
.contact-copy h2,
.about-copy h2,
.quality-copy h2,
.manufacturing-copy h2 {
  margin: 0;
}

.featured-product h3,
.product-card h3,
.application-card h3 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.96;
}

.featured-product h3 {
  margin-top: 10px;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.featured-product p,
.product-card p,
.application-card p,
.featured-product li,
.contact-cards p,
.contact-cards a {
  color: var(--ink-soft);
}

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

.product-meta-grid div {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.4);
}

.product-meta-grid span,
.product-card dt {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86562a;
}

.product-meta-grid strong,
.product-card dd {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.product-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 18px;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.featured-product-media img {
  height: 100%;
  min-height: 340px;
  border-radius: 24px;
  object-fit: cover;
}

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

.product-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.48);
}

.product-card h3 {
  margin-top: 12px;
  font-size: 2.1rem;
}

.product-card p {
  margin: 12px 0 22px;
}

.product-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.product-card dl div {
  padding-top: 14px;
  border-top: 1px solid rgba(20, 23, 25, 0.1);
}

.product-card dt,
.product-card dd {
  margin: 0;
}

.applications-section {
  background:
    linear-gradient(180deg, rgba(10, 18, 24, 0.94), rgba(16, 25, 32, 0.98)),
    var(--bg);
}

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

.application-card {
  min-height: 320px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.06), rgba(255, 248, 239, 0.02)),
    linear-gradient(160deg, rgba(208, 125, 53, 0.08), transparent 52%);
}

.card-number {
  margin-bottom: 22px;
}

.application-card h3 {
  font-size: 2rem;
  color: var(--paper-strong);
}

.application-card p {
  margin-top: 16px;
  color: var(--text-soft);
}

.manufacturing-layout,
.quality-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.manufacturing-media,
.about-panel,
.quality-media {
  position: relative;
}

.manufacturing-media img {
  min-height: 620px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-panel img {
  min-height: 420px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(10, 18, 24, 0.82);
  backdrop-filter: blur(10px);
}

.media-badge span {
  display: block;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.media-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 1.34rem;
  line-height: 1.08;
}

.process-list,
.inspection-grid,
.about-points,
.contact-cards {
  display: grid;
  gap: 16px;
}

.process-list {
  margin-top: 32px;
}

.process-list article,
.inspection-grid article,
.about-points article,
.contact-cards article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(255, 248, 239, 0.03);
}

.process-list strong,
.inspection-grid strong,
.about-points strong,
.contact-cards a {
  display: block;
  font-size: 1.06rem;
  color: var(--paper-strong);
}

.process-list p,
.inspection-grid p,
.about-points p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.quality-section {
  background:
    radial-gradient(circle at top right, rgba(208, 125, 53, 0.12), transparent 24%),
    linear-gradient(180deg, #15212a 0%, #0e171d 100%);
}

.inspection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.quality-stack {
  display: grid;
  gap: 18px;
}

.quality-stack img:first-child {
  min-height: 360px;
  border-radius: 28px;
  object-fit: cover;
}

.quality-stack img:last-child {
  width: min(72%, 320px);
  border-radius: 24px;
  object-fit: cover;
  justify-self: end;
  margin-top: -64px;
  border: 8px solid rgba(10, 18, 24, 0.92);
}

.traceability-card {
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(255, 248, 239, 0.03);
}

.traceability-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.08;
}

.traceability-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.about-section {
  background:
    linear-gradient(180deg, rgba(237, 230, 220, 0.98), rgba(234, 225, 214, 0.98)),
    var(--paper);
  color: var(--ink);
}

.about-section .section-label {
  color: #a55f24;
}

.about-section p,
.about-points p {
  color: var(--ink-soft);
}

.about-panel {
  display: grid;
  gap: 18px;
}

.about-points article {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.58);
}

.about-points strong {
  color: var(--ink);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(11, 19, 24, 0.96), rgba(9, 15, 20, 0.98)),
    var(--bg);
}

.contact-layout {
  align-items: stretch;
}

.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.contact-cards article p,
.contact-cards article a {
  margin: 10px 0 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.07), rgba(255, 248, 239, 0.02)),
    linear-gradient(165deg, rgba(208, 125, 53, 0.08), transparent 52%);
}

.contact-form label {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--paper-strong);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: 14px;
  background: rgba(255, 248, 239, 0.03);
  color: var(--paper-strong);
  font-size: 0.98rem;
  outline: none;
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
  line-height: 1.2;
}

.contact-form textarea {
  min-height: 180px;
  padding: 12px 14px;
  line-height: 1.45;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 239, 232, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 178, 102, 0.6);
  background: rgba(255, 248, 239, 0.06);
}

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

.contact-form .btn {
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 15px;
  align-self: start;
  justify-self: start;
}

.site-footer {
  padding: 24px 0 46px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 239, 0.12);
}

.footer-inner strong {
  display: block;
  font-size: 1rem;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 20px;
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-nav .menu-link[aria-current="page"],
.site-nav .dropdown-panel a[aria-current="page"],
.has-dropdown.is-current > .menu-button {
  color: var(--paper-strong);
}

.page-hero {
  min-height: 78vh;
  padding-top: 112px;
  padding-bottom: 72px;
}

.page-hero .hero-grid {
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--paper-strong);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.products-grid,
.info-grid,
.detail-grid {
  display: grid;
  gap: 16px;
}

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

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

.info-card,
.detail-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(255, 248, 239, 0.03);
  box-shadow: var(--shadow);
}

.info-card strong,
.detail-card strong {
  display: block;
  font-size: 1.08rem;
  color: var(--paper-strong);
}

.info-card p,
.detail-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.info-card .btn,
.detail-card .btn {
  margin-top: 16px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.spec-table th,
.spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 248, 239, 0.08);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 32%;
  color: var(--paper-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table td,
.spec-list {
  color: var(--text-soft);
}

.spec-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.spec-list li + li {
  margin-top: 8px;
}

.content-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.content-split--reverse .content-copy {
  order: 2;
}

.content-split--reverse .content-media {
  order: 1;
}

.content-copy h2 {
  margin: 0 0 16px;
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.content-copy p {
  margin: 0;
  color: var(--text-soft);
}

.content-copy .btn {
  margin-top: 28px;
}

.content-media img {
  min-height: 460px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-media--stack {
  display: grid;
  gap: 18px;
}

.content-media--stack img:first-child {
  min-height: 360px;
}

.content-media--stack img:last-child {
  width: min(72%, 320px);
  justify-self: end;
  margin-top: -64px;
  border: 8px solid rgba(10, 18, 24, 0.92);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background:
    linear-gradient(135deg, rgba(208, 125, 53, 0.22), rgba(255, 248, 239, 0.04)),
    rgba(255, 248, 239, 0.03);
  box-shadow: var(--shadow);
}

.cta-banner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.cta-banner strong {
  display: block;
  margin-top: 10px;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cta-banner p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.product-grid--links .product-card--link {
  display: block;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.product-grid--links .product-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
}

.products-section .info-card,
.products-section .detail-card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.5);
}

.products-section .info-card strong,
.products-section .detail-card strong {
  color: var(--ink);
}

.products-section .info-card p,
.products-section .detail-card p,
.products-section .spec-table td,
.products-section .spec-list {
  color: var(--ink-soft);
}

.products-section .spec-table th {
  border-bottom-color: rgba(20, 23, 25, 0.1);
  color: #86562a;
}

.products-section .spec-table td {
  border-bottom-color: rgba(20, 23, 25, 0.1);
}

@media (max-width: 1180px) {
  .site-header .container {
    width: min(100vw - 24px, 1380px);
  }

  .brand-text span {
    display: none;
  }

  .hero-stats,
  .reasons-grid,
  .signal-grid,
  .applications-grid,
  .contact-cards,
  .products-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manufacturing-layout,
  .quality-layout,
  .about-layout,
  .contact-layout,
  .hero-grid,
  .content-split {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .manufacturing-media img,
  .about-panel img {
    min-height: 440px;
  }

  .home-hero .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .home-hero .hero-copy h1,
  .home-hero .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .section-label,
  .home-hero .hero-actions {
    justify-content: center;
  }

  .home-hero .hero-stats,
  .home-reasons-section .reasons-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .hero-panel {
    margin: 0 auto;
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    border-radius: 28px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 248, 239, 0.1);
    background: rgba(10, 18, 24, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      visibility 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu {
    display: grid;
    gap: 4px;
  }

  .menu-link,
  .menu-button {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 248, 239, 0.03);
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    margin-top: 8px;
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .has-dropdown.is-open .dropdown-panel {
    display: grid;
  }

  .header-cta {
    width: 100%;
  }

  .featured-product,
  .product-grid,
  .inspection-grid,
  .contact-form,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .product-points,
  .product-meta-grid,
  .hero-note-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .home-hero .hero-grid {
    gap: 28px;
    padding-top: 8px;
  }

  .home-hero .hero-copy {
    max-width: 720px;
  }

  .home-hero .hero-copy h1 {
    max-width: 12ch;
  }

  .home-hero .hero-stats {
    max-width: 640px;
    gap: 14px;
  }

  .home-hero .hero-panel {
    width: min(100%, 640px);
  }

  .home-reasons-section {
    padding-top: 60px;
    padding-bottom: 76px;
  }

  .home-reasons-section .section-head {
    margin-bottom: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .section {
    padding: 88px 0;
  }

  .header-inner {
    gap: 14px;
    padding: 10px 12px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  body[data-page="home"] .home-hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 36px;
  }

  .home-hero .hero-grid {
    gap: 22px;
    padding-top: 0;
  }

  .home-hero .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 12vw, 4rem);
    line-height: 0.94;
  }

  .home-hero .hero-lead {
    max-width: 34rem;
    font-size: 0.96rem;
  }

  .home-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-hero .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .reasons-grid,
  .signal-grid,
  .applications-grid,
  .contact-cards,
  .products-grid,
  .info-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-caption {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .home-hero .hero-panel {
    width: 100%;
    gap: 14px;
  }

  .home-hero .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
  }

  .home-hero .hero-stats article {
    padding: 14px 14px 16px;
  }

  .home-hero .hero-stats strong {
    font-size: 1.7rem;
  }

  .hero-note,
  .reason-card,
  .product-card,
  .application-card,
  .process-list article,
  .inspection-grid article,
  .about-points article,
  .contact-cards article,
  .contact-form {
    padding: 20px;
  }

  .featured-product {
    padding: 20px;
  }

  .featured-product h3 {
    font-size: 2.6rem;
  }

  .product-card h3,
  .application-card h3 {
    font-size: 1.8rem;
  }

  .quality-stack img:last-child {
    width: min(82%, 260px);
    margin-top: -34px;
  }

  .content-media img {
    min-height: 320px;
  }

  .signal-band {
    padding-top: 18px;
  }

  .signal-grid > div {
    padding: 18px 0 20px;
  }

  .home-reasons-section {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .home-reasons-section .section-head {
    margin-bottom: 24px;
  }

  .home-reasons-section .section-head h2 {
    font-size: clamp(2.6rem, 11vw, 3.5rem);
  }

  .home-reasons-section .reasons-grid {
    gap: 14px;
  }

  .content-media--stack img:last-child {
    width: min(82%, 260px);
    margin-top: -34px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .home-hero .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

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