:root {
  --paper: #f6f4f1;
  --paper-deep: #ebe8e1;
  --ink: #151917;
  --ink-soft: #505650;
  --ink-muted: #7d827c;
  --line: rgba(21, 25, 23, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --night: #171c1a;
  --night-soft: #242b28;
  --coral: #e55746;
  --coral-deep: #c84438;
  --mint: #dcece5;
  --butter: #f0e3a4;
  --sky: #dce8eb;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  right: 0;
  left: 0;
  transition: transform 200ms var(--ease-out);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(246, 244, 241, 0.78);
  box-shadow: 0 10px 28px rgba(16, 21, 18, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
  gap: 4px;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 28px;
}

.desktop-nav a,
.language-toggle {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
  transition: color 160ms ease-out;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle,
.menu-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background-color 160ms ease-out, transform 140ms ease-out;
}

.language-toggle .icon {
  width: 16px;
  height: 16px;
}

.language-toggle:hover,
.menu-button:hover,
.icon-button:hover {
  background: rgba(21, 25, 23, 0.07);
}

.language-toggle:active,
.menu-button:active,
.icon-button:active,
.button:active,
.direct-contact a:active,
.product-card:active {
  transform: scale(0.97);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 140ms ease-out, background-color 160ms ease-out, color 160ms ease-out, box-shadow 160ms ease-out;
}

.header-cta {
  min-height: 42px;
  padding: 0 15px;
  background: var(--ink);
  color: #fff;
}

.header-cta:hover {
  background: var(--coral-deep);
}

.header-cta .icon {
  width: 16px;
  height: 16px;
}

.menu-button {
  display: none;
}

.mobile-sheet {
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
}

.sheet-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(11, 15, 13, 0.32);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms var(--ease-out);
}

.sheet-panel {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 14px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background: rgba(246, 244, 241, 0.92);
  box-shadow: 0 20px 70px rgba(8, 12, 10, 0.24);
  backdrop-filter: blur(24px) saturate(150%);
  opacity: 0;
  transform: translateY(105%);
  transition: transform 360ms var(--ease-out), opacity 220ms var(--ease-out);
}

.mobile-sheet[data-open="true"] {
  pointer-events: auto;
}

.mobile-sheet[data-open="true"] .sheet-scrim {
  opacity: 1;
}

.mobile-sheet[data-open="true"] .sheet-panel {
  opacity: 1;
  transform: translateY(0);
}

.sheet-handle {
  width: 34px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(21, 25, 23, 0.18);
}

.sheet-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sheet-nav {
  display: grid;
  gap: 4px;
}

.sheet-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 670;
}

.sheet-nav a .icon {
  width: 17px;
  height: 17px;
}

.sheet-contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.sheet-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 690px;
  height: calc(100svh - 128px);
  max-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(13, 18, 16, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-top: 136px;
  padding-bottom: 92px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--butter);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 87, 70, 0.22);
}

.button-primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 14px 30px rgba(229, 87, 70, 0.28);
}

.button-quiet {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 0 4px rgba(240, 227, 164, 0.15);
}

.source-pill {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.09);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll .icon {
  width: 16px;
  height: 16px;
}

.signal {
  padding: 94px 0 102px;
  background: var(--mint);
}

.signal-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 84px;
}

.signal-index,
.process-number {
  display: inline-flex;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.signal-intro h2,
.section-heading h2,
.factory-copy h2,
.contact-intro h2 {
  margin: 18px 0 0;
  font-size: 47px;
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

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

.signal-item {
  padding-top: 2px;
  border-top: 1px solid rgba(21, 25, 23, 0.24);
}

.signal-item h3 {
  margin: 30px 0 10px;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.signal-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 128px 0;
}

.products {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 620px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  grid-auto-rows: minmax(260px, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--night);
  isolation: isolate;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.product-card-large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 534px;
}

.product-card:not(.product-card-large) {
  grid-column: span 3;
}

.product-card:nth-child(8) {
  grid-column: span 6;
}

.product-card img,
.product-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card img {
  object-fit: cover;
  transition: transform 480ms var(--ease-out);
}

.product-card-large img {
  object-position: center;
}

.product-overlay {
  z-index: 1;
  background: rgba(10, 13, 12, 0.4);
  transition: background-color 220ms ease-out;
}

.product-card:hover {
  box-shadow: 0 20px 44px rgba(21, 25, 23, 0.16);
  transform: translateY(-4px);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card:hover .product-overlay {
  background: rgba(10, 13, 12, 0.28);
}

.product-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.product-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--butter);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 670;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.product-card-large .product-copy h3 {
  font-size: 38px;
}

.product-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.product-arrow {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.product-arrow .icon {
  width: 16px;
  height: 16px;
}

.industries {
  padding-top: 112px;
  background: var(--paper-deep);
}

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

.industry-card {
  position: relative;
  min-height: 302px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--night);
  isolation: isolate;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.industry-card img,
.industry-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.industry-card img {
  object-fit: cover;
  transition: transform 480ms var(--ease-out);
}

.industry-shade {
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.08) 18%, rgba(11, 15, 13, 0.78) 100%);
  transition: background-color 220ms ease-out;
}

.industry-card > div {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 19px;
  left: 20px;
}

.industry-card:hover {
  box-shadow: 0 20px 44px rgba(21, 25, 23, 0.14);
  transform: translateY(-4px);
}

.industry-card:hover img {
  transform: scale(1.04);
}

.industry-card:hover .industry-shade {
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.02) 18%, rgba(11, 15, 13, 0.66) 100%);
}

.industry-number {
  display: block;
  margin-bottom: 14px;
  color: var(--butter);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.industry-card h3 {
  max-width: 230px;
  margin: 0;
  font-size: 22px;
  font-weight: 670;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.industry-card p {
  max-width: 250px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.42;
}

.industry-card .product-arrow {
  top: 18px;
}

.process {
  padding: 126px 0 134px;
  color: #fff;
  background: var(--night);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.62);
}

.section-heading-light h2 {
  max-width: 700px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-height: 230px;
  padding: 22px 24px 0 0;
  border-right: 1px solid var(--line-light);
}

.process-step + .process-step {
  padding-left: 24px;
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  color: var(--butter);
}

.process-step h3 {
  margin: 52px 0 11px;
  font-size: 24px;
  font-weight: 660;
  letter-spacing: -0.02em;
}

.process-step p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.58;
}

.factory {
  background: var(--paper-deep);
}

.factory-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 92px;
  align-items: center;
}

.factory-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
}

.factory-media img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(16, 20, 18, 0.64);
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.image-caption span:first-child {
  color: var(--butter);
  font-weight: 720;
}

.factory-copy h2 {
  max-width: 520px;
}

.factory-copy > p {
  max-width: 510px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.factory-checks {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.factory-checks > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.factory-checks .icon {
  width: 16px;
  height: 16px;
  color: var(--coral-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 730;
  border-bottom: 1px solid var(--ink);
  transition: color 160ms ease-out, border-color 160ms ease-out;
}

.text-link:hover {
  color: var(--coral-deep);
  border-color: var(--coral-deep);
}

.text-link .icon {
  width: 15px;
  height: 15px;
}

.evidence-band {
  padding: 126px 0 132px;
  color: #fff;
  background: var(--night);
}

.evidence-band .section-heading {
  margin-bottom: 56px;
}

.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.equipment-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--night-soft);
}

.equipment-card-wide {
  grid-column: span 2;
}

.equipment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 480ms var(--ease-out), opacity 240ms ease-out;
}

.equipment-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.04) 24%, rgba(11, 15, 13, 0.8) 100%);
}

.equipment-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.equipment-card figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: grid;
  gap: 3px;
}

.equipment-card figcaption strong {
  color: var(--butter);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.equipment-card figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.quality-block {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  margin-top: 86px;
  padding-top: 68px;
  border-top: 1px solid var(--line-light);
}

.quality-heading h3 {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 30px;
  font-weight: 660;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

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

.quality-card {
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
}

.quality-card > span {
  color: var(--butter);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.quality-card h4 {
  margin: 22px 0 8px;
  font-size: 17px;
  font-weight: 660;
}

.quality-card p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.faq-intro h2 {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 43px;
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.faq-intro > p {
  max-width: 420px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.faq-intro .text-link {
  margin-top: 30px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: transform 200ms var(--ease-out), background-color 160ms ease-out;
}

.faq-plus .icon {
  width: 15px;
  height: 15px;
}

.faq-item[open] .faq-plus {
  background: var(--butter);
  transform: rotate(45deg);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(229, 87, 70, 0.2);
  outline-offset: 4px;
}

.faq-item p {
  max-width: 680px;
  margin: -2px 54px 24px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.contact {
  padding-top: 116px;
  background: var(--paper);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 96px;
  align-items: start;
}

.contact-intro h2 {
  max-width: 500px;
}

.contact-intro > p {
  max-width: 440px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.prep-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.44);
}

.prep-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #277353;
  background: var(--mint);
}

.prep-note-icon .icon {
  width: 15px;
  height: 15px;
}

.prep-note > span:last-child {
  display: grid;
  gap: 1px;
}

.prep-note strong {
  font-size: 11px;
  font-weight: 760;
}

.prep-note small {
  color: var(--ink-muted);
  font-size: 11px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 160ms ease-out, border-color 160ms ease-out, background-color 160ms ease-out;
}

.direct-contact a:hover {
  border-color: rgba(21, 25, 23, 0.32);
  background: rgba(255, 255, 255, 0.66);
}

.direct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.direct-icon.whatsapp {
  color: #1e694e;
  background: var(--mint);
}

.direct-icon.email {
  color: #546e86;
  background: var(--sky);
}

.direct-contact a > span:nth-child(2) {
  display: grid;
  gap: 1px;
}

.direct-contact small {
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 13px;
  font-weight: 650;
}

.direct-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: var(--ink-muted);
}

.quote-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(21, 25, 23, 0.08);
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.form-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.form-source {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 650;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span,
.channel-picker legend {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(21, 25, 23, 0.18);
  border-radius: 6px;
  outline: 0;
  background: #faf9f7;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out, background-color 160ms ease-out;
}

.field input,
.field select {
  height: 46px;
  padding: 0 13px;
}

.field textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a2a59f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(229, 87, 70, 0.12);
}

.channel-picker {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.channel-picker legend {
  margin-bottom: 9px;
}

.channel-options {
  display: flex;
  gap: 8px;
}

.channel-option {
  position: relative;
  flex: 1;
}

.channel-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.channel-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(21, 25, 23, 0.18);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out, transform 140ms ease-out;
}

.channel-option span .icon {
  width: 16px;
  height: 16px;
}

.channel-option input:checked + span {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--butter);
}

.channel-option input:focus-visible + span {
  outline: 3px solid rgba(229, 87, 70, 0.25);
  outline-offset: 2px;
}

.channel-option span:active {
  transform: scale(0.98);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status[data-tone="error"] {
  color: var(--coral-deep);
}

.form-status[data-tone="success"] {
  color: #277353;
}

.site-footer {
  padding: 28px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .brand-copy strong {
  color: #fff;
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  max-width: 280px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--butter);
}

.footer-links .icon {
  width: 14px;
  height: 14px;
}

.mobile-contact-dock {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}

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

@media (hover: hover) and (pointer: fine) {
  .text-link:hover .icon,
  .hero-scroll:hover .icon {
    transform: translate(2px, 2px);
  }

  .text-link .icon,
  .hero-scroll .icon {
    transition: transform 160ms ease-out;
  }
}

@media (max-width: 1000px) {
  .desktop-nav {
    gap: 18px;
    margin-right: 12px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .signal-grid,
  .factory-grid,
  .contact-shell,
  .faq-layout {
    gap: 52px;
  }

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

  .quality-block {
    gap: 52px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .section-heading h2,
  .signal-intro h2,
  .factory-copy h2,
  .contact-intro h2 {
    font-size: 41px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .desktop-nav,
  .language-toggle {
    display: none;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 100px);
    max-height: 720px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: rgba(13, 18, 16, 0.66);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 94px;
  }

  .hero h1 {
    max-width: 510px;
    font-size: 48px;
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-proof {
    gap: 10px;
    margin-top: 24px;
    font-size: 10px;
  }

  .hero-proof > span:first-child {
    max-width: 240px;
  }

  .hero-scroll {
    right: 20px;
    bottom: 20px;
  }

  .hero-scroll span {
    display: none;
  }

  .signal,
  .section,
  .process {
    padding: 82px 0;
  }

  .signal-grid,
  .section-heading,
  .factory-grid,
  .contact-shell,
  .faq-layout,
  .quality-block {
    display: block;
  }

  .signal-intro h2,
  .section-heading h2,
  .factory-copy h2,
  .contact-intro h2 {
    font-size: 36px;
  }

  .signal-items {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
  }

  .signal-item h3 {
    margin-top: 18px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .industries {
    padding-top: 82px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card {
    min-height: 260px;
  }

  .product-grid {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .product-card-large,
  .product-card:not(.product-card-large) {
    flex: 0 0 78vw;
    min-height: 400px;
    scroll-snap-align: start;
  }

  .product-card-large .product-copy h3 {
    font-size: 34px;
  }

  .process-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .process-step,
  .process-step + .process-step {
    min-height: auto;
    padding: 20px 0 27px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 18px;
  }

  .process-step p {
    max-width: 410px;
  }

  .evidence-band {
    padding: 82px 0;
  }

  .equipment-gallery {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .equipment-gallery::-webkit-scrollbar {
    display: none;
  }

  .equipment-card,
  .equipment-card-wide {
    flex: 0 0 78vw;
    height: 224px;
    scroll-snap-align: start;
  }

  .quality-block {
    margin-top: 62px;
    padding-top: 52px;
  }

  .quality-heading h3 {
    max-width: 500px;
    margin-bottom: 42px;
    font-size: 30px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quality-card p {
    max-width: 440px;
  }

  .faq-intro {
    margin-bottom: 44px;
  }

  .faq-intro h2 {
    font-size: 36px;
  }

  .faq-item summary {
    min-height: 66px;
    font-size: 15px;
  }

  .faq-item p {
    margin-right: 0;
  }

  .factory-grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .factory-media {
    width: 100%;
  }

  .factory-copy > p {
    margin-top: 22px;
  }

  .contact-intro {
    margin-bottom: 42px;
  }

  .prep-note {
    max-width: 100%;
  }

  .quote-form {
    padding: 21px 18px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
  }

  .mobile-contact-dock {
    position: fixed;
    z-index: 25;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    background: rgba(246, 244, 241, 0.84);
    box-shadow: 0 14px 34px rgba(16, 21, 18, 0.14);
    backdrop-filter: blur(20px) saturate(150%);
  }

  .mobile-contact-dock a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 750;
  }

  .mobile-contact-dock a:nth-child(2) {
    color: #fff;
    background: var(--ink);
  }

  .mobile-contact-dock .icon {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 43px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

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

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-pill {
    margin-top: 1px;
  }

  .channel-options {
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sheet-panel {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .header-inner,
  .sheet-panel,
  .mobile-contact-dock,
  .button-quiet,
  .image-caption {
    background: var(--paper);
    backdrop-filter: none;
  }
}
