:root {
  --black: #0a0a09;
  --ink: #121210;
  --charcoal: #181816;
  --steel: #252522;
  --paper: #e8e4dc;
  --paper-soft: #f3f0e9;
  --copper: #c95628;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(18, 18, 16, 0.2);
  --text-on-dark: #f0ede5;
  --muted-on-dark: #aaa69e;
  --muted-on-light: #5e5a54;
  --header-h: 76px;
  --page-w: 1360px;
  --ease: cubic-bezier(0.2, 0.76, 0.2, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-on-dark);
  background: var(--black);
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

img,
video {
  display: block;
  width: 100%;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: var(--copper);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--paper-soft);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.page-width {
  width: min(calc(100% - 96px), var(--page-w));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 2px 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 42px;
  color: var(--text-on-dark);
  background: rgba(10, 10, 9, 0.92);
  border-bottom: 1px solid var(--line-dark);
  transition: transform 380ms var(--ease), background-color 300ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 4px));
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand small {
  margin-top: 7px;
  color: #8f8b84;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  color: #bbb7af;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-current {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.header-contact > a:first-child {
  color: #bbb7af;
  font-variant-numeric: tabular-nums;
}

.header-quote {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 20px;
  color: #fff;
  background: var(--copper);
  transition: color 180ms ease, background-color 180ms ease;
}

.header-quote:hover,
.header-quote:focus-visible {
  color: var(--black);
  background: var(--paper-soft);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.panel {
  position: relative;
  isolation: isolate;
}

.panel-dark,
.panel-black,
.panel-charcoal,
.panel-steel {
  color: var(--text-on-dark);
}

.panel-paper {
  color: var(--ink);
  background: var(--paper);
}

.panel-black {
  background: var(--black);
}

.panel-charcoal {
  background: var(--charcoal);
}

.panel-steel {
  background: var(--steel);
}

.panel-copper {
  color: var(--black);
  background: var(--copper);
}

.eyebrow,
.section-kicker,
.process-index {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero-stage {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 1600ms var(--ease);
}

.hero-scene.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.hero-scene.is-entering {
  animation: stage-enter 1150ms var(--ease) both;
}

.hero-scene.is-leaving {
  z-index: 1;
  opacity: 1;
  animation: stage-leave 900ms var(--ease) both;
}

@keyframes stage-enter {
  0% {
    clip-path: inset(0 0 0 100%);
    transform: translateX(9%) scale(1.12);
  }
  100% {
    clip-path: inset(0);
    transform: none;
  }
}

@keyframes stage-leave {
  0% {
    clip-path: inset(0);
    transform: none;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-6%) scale(1.06);
  }
}

.hero-scene img,
.hero-scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(0.82) contrast(1.06) brightness(0.86);
  will-change: transform;
  transform: translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0) scale(1.035);
  transition: transform 900ms var(--ease);
}

.hero-scene[data-stage-scene="positioning"] video,
.hero-scene[data-stage-scene="laser"] video,
.hero-scene[data-stage-scene="embroidery"] video {
  object-position: 50% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 42%, rgba(0, 0, 0, 0.12) 76%, rgba(0, 0, 0, 0.24) 100%);
}

.stage-word {
  position: absolute;
  z-index: 3;
  right: -0.035em;
  bottom: 150px;
  max-width: 68vw;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.075);
  font-family: Arial, sans-serif;
  font-size: clamp(120px, 19vw, 340px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-align: right;
  pointer-events: none;
  user-select: none;
}

.stage-word.is-changing {
  animation: stage-word-change 1050ms var(--ease);
}

@keyframes stage-word-change {
  0% {
    opacity: 0;
    transform: translateX(20%) skewX(-8deg);
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: none;
  }
}

.stage-caption {
  position: absolute;
  z-index: 6;
  top: 122px;
  right: max(48px, calc((100vw - var(--page-w)) / 2));
  width: min(340px, 30vw);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  color: #d7d3ca;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stage-caption.is-changing {
  animation: stage-caption-change 800ms var(--ease);
}

@keyframes stage-caption-change {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.stage-caption span {
  color: var(--copper);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.stage-caption p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: 232px;
}

.hero-content::before {
  position: absolute;
  z-index: -1;
  top: 118px;
  bottom: 190px;
  left: -64px;
  width: min(720px, 55vw);
  background: rgba(10, 10, 9, 0.7);
  content: "";
}

.hero .eyebrow {
  margin-bottom: 28px;
  color: #d3cfc7;
}

.hero .eyebrow::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--copper);
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: #f5f1e8;
  font-size: clamp(58px, 6.3vw, 104px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c7c2b9;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.8;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 220ms var(--ease);
}

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

.button-accent {
  color: #fff;
  background: var(--copper);
}

.button-accent:hover,
.button-accent:focus-visible {
  color: var(--black);
  background: var(--paper-soft);
}

.button-line {
  color: #f5f1e8;
  background: rgba(10, 10, 9, 0.3);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-line:hover,
.button-line:focus-visible {
  color: var(--black);
  background: var(--paper-soft);
  border-color: var(--paper-soft);
}

.button-dark {
  width: 100%;
  color: #fff;
  background: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--black);
  background: var(--paper-soft);
}

.hero-switcher {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 92px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-switcher button {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  color: #9e9a92;
  background: rgba(10, 10, 9, 0.72);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

.hero-switcher button:last-child {
  border-right: 0;
}

.hero-switcher button:hover,
.hero-switcher button:focus-visible,
.hero-switcher button.is-active {
  color: #fff;
  background: rgba(216, 100, 44, 0.92);
}

.hero-switcher span {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.hero-switcher strong {
  font-size: 15px;
  font-weight: 650;
}

.hero-facts {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  gap: 46px;
  color: #9e9a92;
  font-size: 12px;
}

.hero-facts strong {
  color: #f5f1e8;
  font-weight: 650;
}

.intro {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding-block: 130px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 7vw;
}

.section-kicker {
  padding-top: 14px;
}

.panel-paper .section-kicker {
  color: var(--muted-on-light);
}

.intro h2,
.materials h2,
.workflow h2,
.contact h2,
.factory h2,
.process-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.intro-copy {
  max-width: 710px;
  margin: 40px 0 0;
  color: var(--muted-on-light);
  font-size: 18px;
  line-height: 1.9;
}

.process-panel {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.65fr);
  align-items: stretch;
  overflow: hidden;
}

.process-panel::after {
  position: absolute;
  z-index: 20;
  inset: 0;
  background: var(--copper);
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.process-panel.is-visible::after {
  animation: panel-wipe 980ms var(--ease) both;
}

@keyframes panel-wipe {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  55% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

.process-panel-reverse {
  grid-template-columns: minmax(420px, 0.65fr) minmax(0, 1.35fr);
}

.process-panel-reverse .process-media {
  grid-column: 2;
}

.process-panel-reverse .process-copy {
  grid-column: 1;
  grid-row: 1;
}

.process-media {
  min-height: 100svh;
  overflow: hidden;
  background: #111;
  clip-path: inset(4%);
  transition: clip-path 1200ms var(--ease);
}

.process-panel.is-visible .process-media {
  clip-path: inset(0);
}

.process-media img,
.process-media video {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.08) brightness(0.82);
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(var(--motion-scale, 1.12));
  transition: filter 600ms ease;
  will-change: transform;
}

.process-panel.is-visible .process-media img,
.process-panel.is-visible .process-media video {
  filter: saturate(0.86) contrast(1.1) brightness(0.86);
}

.process-copy {
  align-self: center;
  padding: 130px clamp(36px, 3vw, 52px);
}

.process-index {
  margin-bottom: 38px;
  color: var(--copper);
}

.process-copy h2 {
  font-size: clamp(40px, 3.6vw, 58px);
}

.process-copy > p:not(.process-index) {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted-on-dark);
  font-size: 16px;
  line-height: 1.9;
}

.clean-list {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.clean-list li {
  padding: 14px 0;
  color: #d5d1c8;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.text-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 7px;
  color: #fff;
  border-bottom: 1px solid var(--copper);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--copper);
  border-color: #fff;
}

.materials {
  padding: 140px 0 120px;
}

.materials-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 7vw;
}

.materials h2 {
  max-width: 1040px;
}

.materials-image {
  height: min(66vw, 680px);
  margin-top: 82px;
  overflow: hidden;
  background: #bdb9b1;
  clip-path: inset(3%);
  transition: clip-path 1000ms var(--ease);
}

.materials-image.is-visible {
  clip-path: inset(0);
}

.materials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(var(--motion-scale, 1.1));
  will-change: transform;
}

.materials-image.is-visible img {
  filter: saturate(0.82) contrast(1.04);
}

.material-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.material-list article {
  min-height: 210px;
  padding: 28px 26px 24px;
  border-right: 1px solid var(--line-light);
}

.material-list article:last-child {
  border-right: 0;
}

.material-list span {
  color: var(--copper);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.material-list h3 {
  margin: 44px 0 6px;
  font-size: 20px;
  font-weight: 650;
}

.material-list p {
  margin: 0;
  color: var(--muted-on-light);
  font-size: 13px;
}

.factory {
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.factory-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.factory-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.64) contrast(1.14) brightness(0.72);
  transform: translate3d(0, var(--motion-y, 0px), 0) scale(var(--motion-scale, 1.12));
  will-change: transform;
}

.factory.is-visible .factory-media video {
  filter: saturate(0.72) contrast(1.16) brightness(0.76);
}

.factory-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.factory-copy {
  padding-top: 170px;
  padding-bottom: 96px;
}

.factory .section-kicker,
.workflow .section-kicker {
  margin-bottom: 34px;
  color: var(--copper);
}

.factory h2 {
  max-width: 960px;
}

.factory-copy > p:not(.section-kicker) {
  max-width: 700px;
  margin: 34px 0 0;
  color: #c0bbb3;
  font-size: 17px;
  line-height: 1.9;
}

.factory-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 970px;
  margin-top: 66px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.factory-data span {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px 26px;
  color: #9f9b94;
  border-right: 1px solid var(--line-dark);
  font-size: 12px;
}

.factory-data span:last-child {
  border-right: 0;
}

.factory-data strong {
  color: #fff;
  font-size: 20px;
  font-weight: 620;
}

.workflow {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px 0;
}

.workflow-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 7vw;
}

.workflow-list {
  margin: 90px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 220ms ease, padding 260ms var(--ease);
}

.workflow-list li:hover {
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.workflow-list li > span {
  color: var(--copper);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.workflow-list h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 620;
}

.workflow-list p {
  margin: 9px 0 0;
  color: var(--muted-on-dark);
  font-size: 14px;
}

.contact {
  min-height: 94svh;
  display: grid;
  align-items: center;
  padding: 140px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.7fr);
  gap: 8vw;
  align-items: start;
}

.contact .section-kicker {
  margin-bottom: 36px;
}

.contact h2 {
  max-width: 820px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: 16px;
}

.contact-direct {
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.contact-direct a {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.contact-direct span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-direct strong {
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 650;
}

.quote-form {
  padding: 38px;
  color: var(--text-on-dark);
  background: var(--black);
}

.quote-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 21px;
}

.quote-form label > span {
  color: #aaa69e;
  font-size: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

.quote-form textarea {
  min-height: 106px;
  resize: vertical;
}

.quote-form select {
  color-scheme: dark;
}

.quote-form select option {
  color: #151411;
  background: #fff;
}

.quote-form select option:checked {
  color: #151411;
  background: #9fc8f6;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--copper);
}

.quote-form .button {
  margin-top: 8px;
  color: #fff;
  background: var(--copper);
}

.quote-form .button:hover,
.quote-form .button:focus-visible {
  color: var(--black);
  background: var(--paper-soft);
}

.quote-form small {
  display: block;
  margin-top: 15px;
  color: #7d7972;
  font-size: 11px;
}

.site-footer {
  padding: 48px 0;
  color: #8c8982;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: end;
}

.site-footer strong {
  color: #d3cfc7;
  font-size: 14px;
  font-weight: 620;
}

.site-footer p {
  margin: 7px 0 0;
}

.site-footer address {
  font-style: normal;
}

.mobile-contact {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 26px;
  bottom: 26px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  color: #fff;
  background: var(--black);
  border: 1px solid var(--line-dark);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 750ms ease, transform 900ms var(--ease);
}

.reveal.is-visible,
.is-visible .reveal {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.reveal:nth-child(4) {
  transition-delay: 200ms;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-contact {
    margin-right: 74px;
  }

  .menu-toggle {
    position: absolute;
    right: 30px;
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line-dark);
    background: transparent;
    font-size: 11px;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    z-index: 110;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    padding: 16px 30px 28px;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 14px;
  }

  .process-panel,
  .process-panel-reverse {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  }

  .process-panel-reverse {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  }

  .process-copy {
    padding-inline: 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 66px;
  }

  .page-width {
    width: min(calc(100% - 40px), var(--page-w));
  }

  .site-header {
    padding: 0 20px;
  }

  .brand small {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    right: 18px;
  }

  .hero {
    min-height: 980px;
    align-items: start;
  }

  .hero-stage {
    top: 410px;
    bottom: 214px;
  }

  .hero-scene img,
  .hero-scene video {
    object-position: 50% 50%;
    filter: saturate(0.86) contrast(1.04) brightness(0.9);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
  }

  .stage-word {
    right: -0.02em;
    bottom: 22px;
    max-width: 100vw;
    font-size: 30vw;
  }

  .stage-caption {
    top: 112px;
    right: 20px;
    width: min(270px, calc(100vw - 40px));
    padding: 13px 0;
    background: rgba(10, 10, 9, 0.68);
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 0;
  }

  .hero-content::before {
    top: 66px;
    right: -20px;
    bottom: -34px;
    left: -20px;
    width: auto;
    background: var(--black);
  }

  .hero .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(43px, 12.5vw, 62px);
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

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

  .hero-switcher {
    bottom: 80px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-switcher button {
    min-height: 82px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 8px;
    text-align: center;
  }

  .hero-switcher strong {
    font-size: 11px;
  }

  .hero-facts {
    bottom: 20px;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }

  .hero-facts span {
    display: grid;
  }

  .intro,
  .workflow,
  .contact {
    min-height: 0;
    padding: 90px 0;
  }

  .intro-grid,
  .materials-heading,
  .workflow-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-kicker {
    padding-top: 0;
  }

  .intro h2,
  .materials h2,
  .workflow h2,
  .contact h2,
  .factory h2,
  .process-copy h2 {
    font-size: clamp(38px, 10.6vw, 56px);
    line-height: 1.08;
  }

  .intro-copy {
    margin-top: 28px;
    font-size: 16px;
  }

  .process-panel,
  .process-panel-reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .process-panel-reverse .process-media,
  .process-panel-reverse .process-copy {
    grid-column: 1;
  }

  .process-panel-reverse .process-media {
    grid-row: 1;
  }

  .process-panel-reverse .process-copy {
    grid-row: 2;
  }

  .process-media,
  .process-media img,
  .process-media video {
    min-height: 62svh;
    height: 62svh;
  }

  .process-copy {
    padding: 72px 20px 84px;
  }

  .process-index {
    margin-bottom: 26px;
  }

  .process-copy > p:not(.process-index) {
    margin-top: 26px;
    font-size: 15px;
  }

  .materials {
    padding: 90px 0 80px;
  }

  .materials-image {
    width: 100%;
    height: 58svh;
    margin-top: 46px;
  }

  .material-list {
    grid-template-columns: 1fr 1fr;
  }

  .material-list article {
    min-height: 164px;
    border-bottom: 1px solid var(--line-light);
  }

  .material-list article:nth-child(2) {
    border-right: 0;
  }

  .material-list article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .material-list h3 {
    margin-top: 30px;
  }

  .factory {
    min-height: 900px;
  }

  .factory-copy {
    padding-top: 130px;
    padding-bottom: 74px;
  }

  .factory-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .factory-data {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .factory-data span {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .factory-data span:last-child {
    border-bottom: 0;
  }

  .workflow-list {
    margin-top: 52px;
  }

  .workflow-list li {
    grid-template-columns: 58px 1fr;
    padding: 24px 0;
  }

  .workflow-list li:hover {
    padding-inline: 0;
  }

  .contact-grid {
    gap: 54px;
  }

  .quote-form {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    color: #fff;
    background: var(--black);
    border-top: 1px solid var(--line-dark);
  }

  .mobile-contact button,
  .mobile-contact a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-contact a {
    background: var(--copper);
  }

  .toast {
    right: 20px;
    bottom: 78px;
  }
}

/* 2026-08-06 — cinematic three-capability hero */
.hero-cinema {
  min-height: max(760px, 100svh);
  color: #f4f0e8;
  background: #0a0a09;
}

.hero-cinema .hero-stage {
  z-index: 0;
  background: #10100f;
}

.hero-media-stack {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero-cinema .hero-scene {
  background: #11110f;
}

.hero-cinema .hero-scene img {
  object-position: 62% 50%;
  filter: saturate(0.72) contrast(1.09) brightness(0.8);
  transform: translate3d(var(--object-x, 0px), calc(var(--object-y, 0px) + var(--hero-scroll, 0px)), 0)
    rotateX(var(--object-rx, 0deg)) rotateY(var(--object-ry, 0deg)) scale(1.08);
  transition: transform 1200ms var(--ease), filter 900ms ease;
}

.hero-cinema .hero-scene[data-stage-scene="positioning"] img {
  object-position: 66% 52%;
}

.hero-cinema .hero-scene[data-stage-scene="embroidery"] img {
  object-position: 64% 50%;
}

.hero-cinema .hero-scene.is-active img {
  animation: hero-camera-drift 7.2s ease-in-out both;
}

.hero-cinema .hero-shade {
  z-index: 2;
  background: rgba(7, 7, 6, 0.36);
}

.hero-cinema .hero-content {
  z-index: 5;
  width: min(calc(100% - 96px), var(--page-w));
  margin-inline: auto;
  padding-top: 154px;
  padding-bottom: 246px;
}

.hero-cinema .hero-content::before {
  top: 112px;
  bottom: 205px;
  left: -48px;
  width: min(720px, 56vw);
  background: rgba(10, 10, 9, 0.82);
  border-left: 2px solid var(--copper);
}

.hero-cinema h1 {
  max-width: 720px;
  font-size: clamp(64px, 6.7vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-cinema .hero-lead {
  max-width: 590px;
  color: #cbc6bd;
  font-size: clamp(15px, 1.15vw, 18px);
}

.hero-cinema .stage-word {
  z-index: 3;
  right: -0.03em;
  bottom: 198px;
  color: rgba(255, 255, 255, 0.065);
  font-size: clamp(130px, 21vw, 360px);
}

.hero-cinema .stage-caption {
  z-index: 6;
  top: 112px;
  width: min(330px, 26vw);
  color: #ddd8ce;
  background: rgba(10, 10, 9, 0.72);
}

.hero-cinema .hero-switcher {
  z-index: 8;
  right: auto;
  left: 50%;
  width: min(calc(100% - 96px), var(--page-w));
  transform: translateX(-50%);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-cinema .hero-switcher button {
  position: relative;
  min-height: 98px;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  padding: 16px 22px;
  overflow: hidden;
  background: rgba(10, 10, 9, 0.82);
}

.hero-cinema .hero-switcher button:hover,
.hero-cinema .hero-switcher button:focus-visible,
.hero-cinema .hero-switcher button.is-active {
  color: #fff;
  background: rgba(35, 32, 29, 0.94);
}

.hero-cinema .hero-switcher button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-cinema .hero-switcher button.is-active::after {
  animation: hero-tab-progress 5.6s linear both;
}

.hero-cinema .hero-switcher strong {
  align-self: end;
  font-size: 15px;
}

.hero-cinema .hero-switcher small {
  grid-column: 2;
  align-self: start;
  color: #8f8a82;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-cinema .hero-switcher button.is-active small {
  color: #c8c2b8;
}

.hero-cinema .hero-facts {
  z-index: 8;
}

@keyframes hero-camera-drift {
  0% { transform: translate3d(var(--object-x, 0px), calc(var(--object-y, 0px) + var(--hero-scroll, 0px)), 0) rotateX(var(--object-rx, 0deg)) rotateY(var(--object-ry, 0deg)) scale(1.1); }
  100% { transform: translate3d(var(--object-x, 0px), calc(var(--object-y, 0px) + var(--hero-scroll, 0px)), 0) rotateX(var(--object-rx, 0deg)) rotateY(var(--object-ry, 0deg)) scale(1.045); }
}

@keyframes hero-tab-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Keep material caveats in the content column so the sticky title never overlaps them. */
@media (min-width: 821px) {
  .material-safety {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -18px;
    padding: 28px 30px;
  }

  .material-safety a {
    justify-self: start;
  }
}

/* Final material layout and native select safeguards. */
.material-scope {
  background: #ddd8cf;
}

@media (min-width: 821px) {
  .material-safety {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -18px;
    padding: 28px 30px;
  }

  .material-safety a {
    justify-self: start;
  }
}

.quote-form select,
.quote-form select option {
  color: #f1ede5;
  background: #11110f;
}

/* Skip below-the-fold layout and paint work until a section approaches view. */
@supports (content-visibility: auto) {
  .material-scope,
  .footage-console,
  .results-proof,
  .quote-brief,
  .workflow,
  .factory-faq,
  .contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

/* Search- and AI-readable factory questions: visible, concise and consistent with JSON-LD. */
.factory-faq {
  padding: 110px 0;
  color: #171613;
  background:
    linear-gradient(rgba(23, 22, 19, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 19, 0.07) 1px, transparent 1px),
    #e6e0d6;
  background-size: 42px 42px;
}

.factory-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
}

.factory-faq-heading {
  position: sticky;
  top: 108px;
  align-self: start;
}

.factory-faq-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.factory-faq-heading > p:last-child {
  max-width: 500px;
  margin: 26px 0 0;
  color: #625c54;
  font-size: 14px;
  line-height: 1.85;
}

.factory-faq-list details {
  border-top: 1px solid rgba(23, 22, 19, 0.2);
}

.factory-faq-list details:last-child {
  border-bottom: 1px solid rgba(23, 22, 19, 0.2);
}

.factory-faq-list summary {
  padding: 25px 38px 25px 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 680;
  letter-spacing: -0.025em;
  cursor: pointer;
}

.factory-faq-list summary::marker {
  color: var(--copper);
}

.factory-faq-list details p {
  max-width: 760px;
  margin: -6px 0 26px;
  color: #625c54;
  font-size: 14px;
  line-height: 1.9;
}

.factory-faq-list a {
  color: #b64c21;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-service-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-service-links a {
  color: #aaa59d;
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-service-links a:hover,
.footer-service-links a:focus-visible {
  color: #fff;
}

@media (max-width: 820px) {
  .factory-faq {
    padding: 80px 0;
  }

  .factory-faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .factory-faq-heading {
    position: static;
  }

  .factory-faq-heading h2 {
    font-size: clamp(42px, 12vw, 58px);
  }
}

/* Mobile: vertical gestures always remain available for page scrolling. The
   WebGL raycaster starts rotation only when the initial touch hits equipment. */
@media (max-width: 820px) {
  .equipment-3d-stage .hero-3d-wrap,
  .equipment-3d-stage #hero-3d-canvas {
    touch-action: pan-y;
  }
}

/* Continuous section choreography: each real content scene enters with depth,
   then settles flat before the next scene takes over. */
main > section.scroll-scene > .page-width {
  opacity: var(--scene-opacity, 1);
  filter: blur(var(--scene-blur, 0));
  clip-path: inset(var(--scene-clip, 0) 0 0 0);
  transform: perspective(1400px) translate3d(0, var(--scene-shift, 0), 0) rotateX(var(--scene-tilt, 0)) scale(var(--scene-scale, 1));
  transform-origin: 50% 8%;
  will-change: transform, opacity, filter, clip-path;
}

main > section.scroll-scene.is-scroll-active > .page-width {
  transition: box-shadow 420ms ease;
}

.film-scene[data-film-scene="positioning"] img {
  object-position: 58% 50%;
}

.film-scene[data-film-scene="laser"] img {
  object-position: 56% 50%;
}

@media (max-width: 820px) {
  main > section.scroll-scene > .page-width {
    transform-origin: 50% 4%;
  }

  .film-scene[data-film-scene="positioning"] img,
  .film-scene[data-film-scene="laser"] img {
    object-position: 70% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section.scroll-scene > .page-width {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* 2026-08-06 — dedicated high-end 3D equipment gallery. */
.equipment-3d-showcase {
  position: relative;
  z-index: 2;
  overflow: clip;
  padding: clamp(92px, 9vw, 142px) 0 clamp(84px, 8vw, 126px);
  color: #f1eee8;
  background: #0b0c0d;
  border-top: 1px solid #2d2e2f;
  border-bottom: 1px solid #2d2e2f;
}

.equipment-3d-showcase::before,
.equipment-3d-showcase::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.equipment-3d-showcase::before {
  top: 0;
  right: 7vw;
  bottom: 0;
  width: 1px;
  background: #252729;
}

.equipment-3d-showcase::after {
  top: 0;
  right: calc(7vw + 9px);
  width: 1px;
  height: 132px;
  background: #d05b2c;
}

.equipment-3d-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 74px);
}

.equipment-3d-showcase .section-kicker {
  margin-bottom: 23px;
  color: #d05b2c;
}

.equipment-3d-showcase h2 {
  max-width: 830px;
  margin: 0;
  color: #f1eee8;
  font-size: clamp(58px, 7.2vw, 114px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.065em;
}

.equipment-3d-copy {
  max-width: 520px;
  padding-bottom: 6px;
}

.equipment-3d-copy > p {
  margin: 0 0 26px;
  color: #aaa7a0;
  font-size: 15px;
  line-height: 1.9;
}

.equipment-3d-copy > span {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #efebe4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.equipment-3d-copy i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e36731;
  box-shadow: 0 0 0 5px rgba(227, 103, 49, 0.12);
  animation: equipment-status 1.6s ease-in-out infinite;
}

@keyframes equipment-status {
  50% { box-shadow: 0 0 0 10px rgba(227, 103, 49, 0); }
}

.equipment-3d-stage {
  position: relative;
  border: 1px solid #303235;
  background: #111315;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.equipment-3d-stage::before,
.equipment-3d-stage::after {
  position: absolute;
  z-index: 4;
  color: #76777a;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.equipment-3d-stage::before {
  top: 18px;
  left: 22px;
  content: "HMS / EQUIPMENT VIEWER / 01—02";
}

.equipment-3d-stage::after {
  right: 22px;
  bottom: 18px;
  content: "DRAG TO ROTATE · LIVE PROCESS";
}

.equipment-3d-stage .hero-3d-wrap {
  position: relative;
  z-index: 2;
  inset: auto;
  width: 100%;
  height: clamp(610px, 62vw, 790px);
  min-height: 610px;
  overflow: hidden;
  transform: none;
  background: #111315;
}

.equipment-3d-stage .hero-3d-wrap::before {
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 10%;
  left: 5%;
  height: 1px;
  background: #2c2f32;
  content: "";
  pointer-events: none;
}

.equipment-3d-stage #hero-3d-canvas {
  z-index: 2;
  filter: drop-shadow(0 46px 42px rgba(0, 0, 0, 0.34));
}

.equipment-3d-stage .hero-3d-fallback {
  width: min(72%, 780px);
  max-height: 70%;
  opacity: 0.72;
  filter: saturate(0.64) contrast(1.12) drop-shadow(0 36px 30px rgba(0, 0, 0, 0.5));
}

.equipment-3d-stage .hero-process-label {
  min-width: 168px;
  padding: 11px 13px;
  color: #f2eee7;
  background: rgba(16, 18, 20, 0.88);
  border-color: #44474b;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.equipment-3d-stage .hero-process-label small {
  color: #8d9094;
}

.equipment-3d-stage .hero-process-label--laser {
  top: 22%;
  right: 5%;
}

.equipment-3d-stage .hero-process-label--embroidery {
  top: 29%;
  left: 5%;
}

.equipment-3d-stage .hero-workstation-divider {
  top: 14%;
  bottom: 14%;
  left: 49.6%;
  background: #303235;
}

.equipment-3d-stage .hero-3d-hint {
  right: auto;
  bottom: 24px;
  left: 50%;
  color: #f0ede7;
  background: rgba(13, 15, 17, 0.9);
  border-color: #3f4245;
  transform: translateX(-50%);
}

.equipment-3d-stage .hero-3d-hint span {
  color: #8f9193;
}

.equipment-3d-specs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  border-right: 1px solid #313336;
  border-bottom: 1px solid #313336;
  border-left: 1px solid #313336;
}

.equipment-3d-specs article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 130px;
  padding: 29px 31px;
  border-right: 1px solid #313336;
}

.equipment-3d-specs article > span {
  color: #d05b2c;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.equipment-3d-specs strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.equipment-3d-specs p {
  max-width: 380px;
  margin: 0;
  color: #8e9093;
  font-size: 12px;
  line-height: 1.75;
}

.equipment-3d-specs > a {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-width: 195px;
  padding: 26px;
  color: #171411;
  background: #d05b2c;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.equipment-3d-specs > a:hover,
.equipment-3d-specs > a:focus-visible {
  color: #111;
  background: #efede8;
}

@media (max-width: 900px) {
  .equipment-3d-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .equipment-3d-showcase h2 {
    font-size: clamp(54px, 15vw, 82px);
  }

  .equipment-3d-stage .hero-3d-wrap {
    height: 700px;
    min-height: 700px;
  }

  .equipment-3d-specs {
    grid-template-columns: 1fr 1fr;
  }

  .equipment-3d-specs article:nth-child(2) {
    border-right: 0;
  }

  .equipment-3d-specs > a {
    grid-column: 1 / -1;
    min-height: 74px;
  }
}

@media (max-width: 620px) {
  .equipment-3d-showcase {
    padding: 78px 0 88px;
  }

  .equipment-3d-showcase::before {
    right: 18px;
  }

  .equipment-3d-showcase::after {
    right: 27px;
    height: 86px;
  }

  .equipment-3d-showcase h2 {
    font-size: clamp(50px, 16vw, 66px);
  }

  .equipment-3d-copy > p {
    font-size: 14px;
  }

  .equipment-3d-stage .hero-3d-wrap {
    height: 610px;
    min-height: 610px;
  }

  .equipment-3d-stage::before {
    top: 14px;
    left: 14px;
  }

  .equipment-3d-stage::after {
    display: none;
  }

  .equipment-3d-stage .hero-process-label {
    min-width: 122px;
    padding: 8px 9px;
    transform: scale(0.86);
  }

  .equipment-3d-stage .hero-process-label--embroidery {
    top: 21%;
    left: 2%;
    transform-origin: left top;
  }

  .equipment-3d-stage .hero-process-label--laser {
    top: 27%;
    right: 2%;
    transform-origin: right top;
  }

  .equipment-3d-stage .hero-workstation-divider {
    top: 14%;
    bottom: 18%;
  }

  .equipment-3d-stage .hero-3d-hint {
    bottom: 18px;
    white-space: nowrap;
  }

  .equipment-3d-specs {
    grid-template-columns: 1fr;
  }

  .equipment-3d-specs article,
  .equipment-3d-specs article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #313336;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-3d-copy i {
    animation: none;
  }
}

/* 2026-08-07 — a real head follows the flower path; the background stays calm. */
.hero-live-laser .hero-scene .hero-workbed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.86) contrast(1.08) brightness(0.7);
  transform: none;
  animation: none;
}

.hero-moving-head {
  position: absolute;
  z-index: 4;
  top: var(--hero-head-y, 46%);
  left: var(--hero-head-x, 72%);
  width: clamp(210px, 22vw, 360px);
  max-width: none;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.54)) drop-shadow(0 0 18px rgba(191, 79, 33, 0.16));
  transform: translate3d(-50%, -94%, 0) rotate(var(--hero-head-tilt, 0deg));
  transform-origin: 50% 94%;
  will-change: top, left, transform;
}

.hero-live-laser .hero-shade {
  background: rgba(6, 7, 7, 0.22);
}

.hero-laser-fx {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-embroidery-live {
  position: absolute;
  z-index: 4;
  top: 132px;
  right: clamp(12px, 2.4vw, 42px);
  bottom: 118px;
  width: min(30vw, 445px);
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-embroidery-machine {
  --embroidery-x: 0px;
  --embroidery-y: 0px;
  --needle-stroke: 0px;
  position: absolute;
  z-index: 2;
  inset: 0;
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 22px rgba(204, 91, 42, 0.14));
  transform: translate3d(var(--embroidery-x), var(--embroidery-y), 0) rotateY(-5deg);
  transform-origin: 56% 82%;
  will-change: transform;
}

.hero-embroidery-fabric {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -20px;
  width: 132%;
  max-width: none;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 14px rgba(204, 91, 42, 0.08));
  transform: translateX(-50%);
  transform-origin: 50% 54%;
}

.hero-embroidery-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  will-change: transform;
}

.hero-embroidery-housing {
  clip-path: inset(0 0 21% 0);
}

.hero-embroidery-needles {
  clip-path: inset(76% 0 0 0);
  transform: translate3d(0, var(--needle-stroke), 0);
}

.hero-embroidery-live figcaption {
  position: absolute;
  right: 22px;
  bottom: 96px;
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  color: #f2eee6;
  background: rgba(8, 9, 9, 0.82);
  border-left: 2px solid #d6602c;
  backdrop-filter: blur(10px);
}

.hero-embroidery-live figcaption span {
  color: #e66b31;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-embroidery-live figcaption strong {
  font-size: 13px;
}

.hero-embroidery-live figcaption small {
  color: #98938b;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.hero-live-panel {
  position: absolute;
  z-index: 7;
  top: 112px;
  right: max(48px, calc((100vw - var(--page-w)) / 2));
  display: grid;
  gap: 8px;
  width: min(350px, 28vw);
  padding: 22px 24px;
  color: #f0ede6;
  background: rgba(9, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.hero-live-panel > span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #e66b31;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-live-panel i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f1793f;
  box-shadow: 0 0 0 7px rgba(241, 121, 63, 0.12);
  animation: hero-live-pulse 1.45s ease-in-out infinite;
}

.hero-live-panel strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.hero-live-panel small {
  color: #96928b;
  font-size: 10px;
  letter-spacing: 0.12em;
}

@keyframes hero-live-pulse {
  50% { box-shadow: 0 0 0 13px rgba(241, 121, 63, 0); }
}

.hero-live-laser .hero-switcher a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  min-height: 98px;
  padding: 16px 22px;
  overflow: hidden;
  color: #cbc5bb;
  background: rgba(10, 10, 9, 0.82);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease;
}

.hero-live-laser .hero-switcher a:last-child {
  border-right: 0;
}

.hero-live-laser .hero-switcher a:hover,
.hero-live-laser .hero-switcher a:focus-visible,
.hero-live-laser .hero-switcher a.is-active {
  color: #fff;
  background: rgba(35, 32, 29, 0.94);
}

.hero-live-laser .hero-switcher a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #d6602c;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 280ms ease;
}

.hero-live-laser .hero-switcher a:hover::after,
.hero-live-laser .hero-switcher a:focus-visible::after,
.hero-live-laser .hero-switcher a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-live-laser .hero-switcher a > span {
  grid-row: 1 / 3;
  color: #d6602c;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.hero-live-laser .hero-switcher a strong {
  align-self: end;
  font-size: 15px;
}

.hero-live-laser .hero-switcher a small {
  grid-column: 2;
  align-self: start;
  color: #8f8a82;
  font-size: 10px;
  letter-spacing: 0.08em;
}

@media (max-width: 820px) {
  .hero-live-laser .hero-stage {
    top: 512px;
  }

  .hero-live-laser .hero-scene .hero-workbed {
    object-position: 68% 50%;
    filter: saturate(0.86) contrast(1.08) brightness(0.74);
  }

  .hero-moving-head {
    width: min(32vw, 124px);
    transform: translate3d(-50%, -88%, 0) rotate(var(--hero-head-tilt, 0deg));
  }

  .hero-embroidery-live {
    top: 8px;
    right: 2px;
    bottom: 8px;
    width: 44%;
  }

  .hero-embroidery-live figcaption {
    right: 8px;
    bottom: 18px;
    gap: 2px;
    max-width: 132px;
    padding: 9px 10px;
  }

  .hero-embroidery-live figcaption strong {
    font-size: 10px;
  }

  .hero-embroidery-live figcaption small {
    display: none;
  }

  .hero-live-panel {
    top: 18px;
    right: 20px;
    width: min(300px, calc(100vw - 40px));
    padding: 15px 17px;
  }

  .hero-live-panel strong {
    font-size: 13px;
  }

  .hero-live-laser .hero-switcher a {
    min-height: 86px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 7px;
    text-align: center;
  }

  .hero-live-laser .hero-switcher a > span {
    grid-row: auto;
  }

  .hero-live-laser .hero-switcher a strong {
    align-self: center;
    font-size: 11px;
  }

  .hero-live-laser .hero-switcher a small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live-panel i {
    animation: none;
  }
}

.quote-form select,
.quote-form select option {
  color: #f1ede5;
  background: #11110f;
}

@media (max-width: 820px) {
  .hero-cinema {
    min-height: 990px;
  }

  .hero-cinema .hero-stage {
    top: 390px;
    bottom: 206px;
  }

  .hero-cinema .hero-scene img {
    object-position: 64% 50%;
    filter: saturate(0.76) contrast(1.06) brightness(0.78);
    transform: translate3d(var(--object-x, 0px), calc(var(--object-y, 0px) + var(--hero-scroll, 0px)), 0) scale(1.08);
  }

  .hero-cinema .hero-scene[data-stage-scene="positioning"] img {
    object-position: 70% 50%;
  }

  .hero-cinema .hero-scene[data-stage-scene="embroidery"] img {
    object-position: 58% 50%;
  }

  .hero-cinema .hero-shade {
    background: rgba(7, 7, 6, 0.28);
  }

  .hero-cinema .hero-content {
    width: min(calc(100% - 40px), var(--page-w));
    padding-top: 108px;
    padding-bottom: 0;
  }

  .hero-cinema .hero-content::before {
    top: 66px;
    right: -20px;
    bottom: -38px;
    left: -20px;
    width: auto;
    background: #0a0a09;
    border-left: 0;
  }

  .hero-cinema h1 {
    max-width: 500px;
    font-size: clamp(48px, 14vw, 66px);
    line-height: 0.98;
  }

  .hero-cinema .hero-lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-cinema .stage-caption {
    top: 18px;
    right: 20px;
    width: min(295px, calc(100vw - 40px));
    background: rgba(10, 10, 9, 0.8);
  }

  .hero-cinema .stage-word {
    bottom: 14px;
    font-size: 29vw;
  }

  .hero-cinema .hero-switcher {
    bottom: 78px;
    width: calc(100% - 40px);
  }

  .hero-cinema .hero-switcher button {
    min-height: 86px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 7px;
    text-align: center;
  }

  .hero-cinema .hero-switcher small {
    display: none;
  }

  .hero-cinema .hero-switcher strong {
    align-self: center;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinema .hero-scene.is-active img,
  .hero-cinema .hero-switcher button.is-active::after {
    animation: none;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 970px;
  }

  .hero-stage {
    top: 424px;
  }

  .hero .eyebrow::before {
    width: 18px;
    margin-right: 8px;
  }

  .hero-facts span:nth-child(3) {
    display: none;
  }

  .material-list {
    grid-template-columns: 1fr;
  }

  .material-list article {
    min-height: 138px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .material-list article:nth-child(n + 3) {
    border-bottom: 1px solid var(--line-light);
  }

  .material-list article:last-child {
    border-bottom: 0;
  }

  .material-list h3 {
    margin-top: 22px;
  }
}

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

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

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

  .process-media,
  .materials-image {
    clip-path: none;
  }

  .process-panel::after {
    display: none;
  }
}

/* Continuous process film: one space, five chapters, no stacked detail-page blocks. */
.film {
  position: relative;
  height: 600svh;
  color: var(--text-on-dark);
  background: var(--black);
}

.film-sticky {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.film-scroll-space {
  height: 500svh;
  pointer-events: none;
}

.film-media,
.film-scene {
  position: absolute;
  inset: 0;
}

.film-media {
  overflow: hidden;
  background: var(--black);
}

.film-scene {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

.film-scene.is-active {
  z-index: 2;
  opacity: 1;
}

.film-scene.is-entering {
  animation: film-scene-enter 1150ms var(--ease) both;
}

.film-scene.is-leaving {
  z-index: 1;
  opacity: 1;
  animation: film-scene-leave 1000ms var(--ease) both;
}

@keyframes film-scene-enter {
  0% {
    clip-path: inset(100% 0 0);
    transform: translateY(8%) scale(1.16);
  }
  100% {
    clip-path: inset(0);
    transform: none;
  }
}

@keyframes film-scene-leave {
  0% {
    clip-path: inset(0);
    transform: none;
  }
  100% {
    clip-path: inset(0 0 100%);
    transform: translateY(-7%) scale(1.08);
  }
}

.film-scene img,
.film-scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.78) contrast(1.08) brightness(0.8);
  transform: translate3d(0, var(--film-y, 0px), 0) scale(var(--film-scale, 1.08));
  will-change: transform;
}

.film-scene[data-film-scene="positioning"] img,
.film-scene[data-film-scene="embroidery"] img {
  object-position: 50% 50%;
}

.film-scene[data-film-scene="laser"] img {
  object-position: 55% 50%;
  filter: saturate(0.78) contrast(1.1) brightness(0.76);
}

.film-scene[data-film-scene="materials"] img {
  object-position: 50% 50%;
  filter: saturate(0.72) contrast(1.05) brightness(0.64);
}

.film-scene[data-film-scene="factory"] video {
  object-position: 50% 50%;
}

.film-shade {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.42) 43%, rgba(0, 0, 0, 0.12) 76%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.film-word {
  position: absolute;
  z-index: 4;
  right: -0.03em;
  bottom: 5vh;
  max-width: 92vw;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.065);
  font-family: Arial, sans-serif;
  font-size: clamp(110px, 17vw, 310px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-align: right;
  pointer-events: none;
  user-select: none;
}

.film-word.is-changing {
  animation: film-word-enter 1100ms var(--ease);
}

@keyframes film-word-enter {
  0% {
    opacity: 0;
    transform: translateX(18%) skewX(-7deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.film-heading {
  position: absolute;
  z-index: 8;
  top: 110px;
  right: 48px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.film-heading strong {
  color: var(--copper);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.film-copy-wrap {
  position: absolute;
  z-index: 7;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.film-copy {
  position: absolute;
  top: 50%;
  left: max(48px, calc((100vw - var(--page-w)) / 2));
  width: min(690px, 54vw);
  padding: 42px 48px 44px;
  background: rgba(10, 10, 9, 0.76);
  opacity: 0;
  transform: translateY(calc(-50% + 110px)) rotateX(-8deg);
  transform-origin: left bottom;
  transition: opacity 380ms ease, transform 750ms var(--ease);
}

.film-copy.is-active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.film-copy.is-entering {
  animation: film-copy-enter 900ms var(--ease) both;
}

.film-copy.is-leaving {
  animation: film-copy-leave 620ms var(--ease) both;
}

@keyframes film-copy-enter {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 130px)) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes film-copy-leave {
  0% {
    opacity: 1;
    transform: translateY(-50%);
  }
  100% {
    opacity: 0;
    transform: translateY(calc(-50% - 100px)) rotateX(8deg);
  }
}

.film-copy > p {
  margin: 0 0 28px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.film-copy h2 {
  margin: 0;
  color: #f4f0e8;
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 630;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.film-detail {
  max-width: 570px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.film-detail > p {
  margin: 0;
  color: #b6b1a9;
  font-size: 14px;
  line-height: 1.85;
}

.film-detail ul {
  margin: 0;
  padding: 0;
  color: #d6d2ca;
  list-style: none;
  font-size: 12px;
}

.film-detail li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line-dark);
}

.film-nav {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 48px;
  display: grid;
  gap: 3px;
  transform: translateY(-50%);
}

.film-nav button {
  width: 88px;
  min-height: 46px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(10, 10, 9, 0.46);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 220ms var(--ease);
}

.film-nav button:hover,
.film-nav button:focus-visible,
.film-nav button.is-active {
  color: #fff;
  background: var(--copper);
  transform: translateX(-8px);
}

.film-nav span {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.film-nav em {
  font-size: 11px;
  font-style: normal;
}

.film-progress {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.film-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 9vw;
  align-items: start;
}

.workflow-heading {
  position: sticky;
  top: 130px;
  display: block;
}

.workflow-heading > p:last-child {
  max-width: 530px;
  margin: 32px 0 0;
  color: var(--muted-on-dark);
  font-size: 15px;
  line-height: 1.85;
}

.workflow .workflow-list {
  margin-top: 0;
}

@media (max-width: 820px) {
  .film {
    height: 600svh;
  }

  .film-scroll-space {
    height: 500svh;
  }

  .film-heading {
    top: 84px;
    right: 20px;
    left: 20px;
  }

  .film-scene img,
  .film-scene video {
    object-position: 50% 50%;
    filter: saturate(0.78) contrast(1.08) brightness(0.76);
  }

  .film-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.44));
  }

  .film-word {
    right: -0.02em;
    bottom: 86px;
    max-width: 100vw;
    font-size: 25vw;
  }

  .film-copy {
    top: auto;
    right: 20px;
    bottom: 124px;
    left: 20px;
    width: auto;
    padding: 26px 24px 28px;
    transform: translateY(90px);
  }

  .film-copy.is-active {
    transform: none;
  }

  @keyframes film-copy-enter {
    0% {
      opacity: 0;
      transform: translateY(110px) rotateX(-8deg);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes film-copy-leave {
    0% {
      opacity: 1;
      transform: none;
    }
    100% {
      opacity: 0;
      transform: translateY(-80px) rotateX(7deg);
    }
  }

  .film-copy > p {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .film-copy h2 {
    font-size: clamp(38px, 10.2vw, 48px);
    line-height: 1.06;
  }

  .film-detail {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .film-detail > p {
    font-size: 12px;
    line-height: 1.68;
  }

  .film-detail ul {
    display: none;
  }

  .film-nav {
    top: auto;
    right: 20px;
    bottom: 70px;
    left: 20px;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    transform: none;
  }

  .film-nav button {
    width: auto;
    min-height: 44px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 0;
    text-align: center;
  }

  .film-nav button:hover,
  .film-nav button:focus-visible,
  .film-nav button.is-active {
    transform: none;
  }

  .film-nav em {
    display: none;
  }

  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .workflow-heading {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-scene,
  .film-copy,
  .film-word {
    animation: none !important;
    transition: none !important;
  }
}

/* 2026-08-07 — reserve a separate visual lane for each live process. */
@media (min-width: 1120px) {
  .hero-live-laser .hero-moving-head {
    width: clamp(205px, 18vw, 285px);
  }

  .hero-live-laser .hero-embroidery-live {
    top: 238px;
    right: max(48px, calc((100vw - var(--page-w)) / 2));
    bottom: 184px;
    width: clamp(230px, 20vw, 300px);
  }

  .hero-live-laser .hero-embroidery-live::before {
    position: absolute;
    top: 6%;
    bottom: 12%;
    left: -28px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(214, 96, 44, 0.55) 28%, rgba(255, 255, 255, 0.12) 76%, transparent);
    content: "";
  }

  .hero-live-laser .hero-embroidery-live figcaption {
    z-index: 5;
    top: -18px;
    right: 0;
    bottom: auto;
  }

  .hero-live-laser .hero-embroidery-fabric {
    bottom: -18px;
  }

  .hero-live-laser .hero-live-panel {
    top: 104px;
    right: max(48px, calc((100vw - var(--page-w)) / 2));
    width: clamp(230px, 20vw, 300px);
    padding: 18px 20px;
  }
}

@media (min-width: 821px) and (max-width: 1119px) {
  .hero-live-laser .hero-moving-head {
    width: clamp(165px, 18vw, 200px);
  }

  .hero-live-laser .hero-embroidery-live {
    top: 282px;
    right: 24px;
    bottom: 206px;
    width: 220px;
  }

  .hero-live-laser .hero-embroidery-live figcaption {
    z-index: 5;
    top: -44px;
    right: 0;
    bottom: auto;
  }

  .hero-live-laser .hero-embroidery-fabric {
    bottom: -18px;
    width: 136%;
  }

  .hero-live-laser .hero-live-panel {
    top: 118px;
    right: 24px;
    width: 220px;
    padding: 16px 18px;
  }
}

@media (max-width: 820px) {
  .hero-live-laser .hero-embroidery-live {
    top: 22px;
    right: 8px;
    bottom: 18px;
    width: 38%;
  }

  .hero-live-laser .hero-embroidery-live figcaption {
    display: none;
  }

  .hero-live-laser .hero-embroidery-fabric {
    bottom: -3px;
    width: 138%;
  }

  .hero-live-laser .hero-moving-head {
    width: min(29vw, 112px);
  }
}

/* Guided industrial story: one focal object, one process, one video at a time. */
.hero-guided {
  min-height: 100svh;
  color: var(--ink);
  background: #eee9df;
  isolation: isolate;
}

.hero-guided .hero-stage {
  z-index: 0;
  background:
    radial-gradient(circle at 76% 47%, rgba(201, 86, 40, 0.12), transparent 27%),
    linear-gradient(135deg, #f2eee6, #e7e0d4);
}

.hero-drafting-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 18, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 16, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
}

.hero-guided .hero-content {
  z-index: 4;
  padding-top: 132px;
  padding-bottom: 190px;
}

.hero-guided .hero-content::before {
  display: none;
}

.hero-guided .hero-content > * {
  max-width: min(690px, 49vw);
}

.hero-guided .hero .eyebrow,
.hero-guided .eyebrow {
  color: #59554f;
}

.hero-guided h1 {
  color: #11110f;
  font-size: clamp(60px, 6.1vw, 102px);
  letter-spacing: -0.07em;
}

.hero-guided .hero-lead {
  max-width: 590px;
  color: #514d47;
  font-size: clamp(16px, 1.2vw, 18px);
}

.hero-guided .button-line {
  color: #11110f;
  background: transparent;
  border-color: rgba(18, 18, 16, 0.45);
}

.hero-guided .button-line:hover,
.hero-guided .button-line:focus-visible {
  color: #fff;
  background: #11110f;
  border-color: #11110f;
}

.hero-object-shell {
  position: absolute;
  z-index: 2;
  top: 94px;
  right: clamp(24px, 4vw, 76px);
  bottom: 78px;
  width: min(49vw, 760px);
  display: grid;
  place-items: center;
  perspective: 1100px;
  transform: translateY(calc(var(--hero-scroll, 0px) * 0.16));
  animation: hero-object-float 5.8s ease-in-out infinite;
}

.hero-object {
  --object-x: 0px;
  --object-y: 0px;
  --object-rx: 0deg;
  --object-ry: 0deg;
  position: relative;
  width: min(92%, 660px);
  margin: 0;
  transform: translate3d(var(--object-x), var(--object-y), 0) rotateX(var(--object-rx)) rotateY(var(--object-ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-object::before {
  position: absolute;
  z-index: -1;
  inset: 16% 8% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 86, 40, 0.2), rgba(201, 86, 40, 0.04) 45%, transparent 70%);
  filter: blur(22px);
  content: "";
  transform: translateZ(-60px);
}

.hero-object img {
  max-height: 76svh;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 26px rgba(31, 24, 18, 0.22));
  transform: translateZ(46px);
}

.hero-object-orbit {
  position: absolute;
  z-index: -1;
  inset: 16% 2% 10%;
  border: 1px solid rgba(18, 18, 16, 0.22);
  border-radius: 50%;
  transform: translateZ(-36px) rotate(-12deg);
}

.hero-object-orbit::before,
.hero-object-orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #eee9df;
  border-radius: 50%;
  background: var(--copper);
  content: "";
  box-shadow: 0 0 0 1px rgba(18, 18, 16, 0.18);
}

.hero-object-orbit::before {
  top: 18%;
  right: 3%;
}

.hero-object-orbit::after {
  bottom: 12%;
  left: 8%;
}

.hero-object figcaption {
  position: absolute;
  right: 2%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: #37332e;
  background: rgba(246, 242, 234, 0.86);
  border: 1px solid rgba(18, 18, 16, 0.18);
  font-size: 11px;
  backdrop-filter: blur(10px);
  transform: translateZ(70px);
}

.hero-object figcaption i,
.footage-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(201, 86, 40, 0.14);
}

.hero-guide-line {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 8%;
  bottom: 12%;
  width: 1px;
  overflow: hidden;
  background: rgba(18, 18, 16, 0.14);
}

.hero-guide-line span {
  position: absolute;
  inset: -18% 0 auto;
  height: 20%;
  background: linear-gradient(transparent, var(--copper), transparent);
  animation: hero-guide-scan 3.8s ease-in-out infinite;
}

.hero-guided .hero-facts {
  color: #69645c;
}

.hero-guided .hero-facts strong {
  color: #151411;
}

.scroll-guide {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 26px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #56514a;
  font-size: 11px;
  letter-spacing: 0.08em;
  transform: translateX(50%);
}

.scroll-guide i {
  position: relative;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(18, 18, 16, 0.2);
}

.scroll-guide i::after {
  position: absolute;
  inset: -60% 0 auto;
  height: 60%;
  background: var(--copper);
  content: "";
  animation: scroll-guide-drop 1.8s ease-in-out infinite;
}

@keyframes hero-object-float {
  0%, 100% { margin-top: -7px; }
  50% { margin-top: 9px; }
}

@keyframes hero-guide-scan {
  0%, 12% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  72% { opacity: 1; }
  88%, 100% { transform: translateY(590%); opacity: 0; }
}

@keyframes scroll-guide-drop {
  0% { transform: translateY(0); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: translateY(270%); opacity: 0; }
}

.film {
  height: 400svh;
}

.film-scroll-space {
  height: 300svh;
}

.film-nav {
  top: auto;
  right: auto;
  bottom: 38px;
  left: 50%;
  width: min(720px, calc(100vw - 96px));
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateX(-50%);
}

.film-nav button {
  width: auto;
  min-height: 54px;
  grid-template-columns: 28px 1fr;
  background: rgba(10, 10, 9, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.film-nav button:hover,
.film-nav button:focus-visible,
.film-nav button.is-active {
  transform: translateY(-5px);
}

/* 2026-08-13 — keep these last among component rules so later legacy blocks cannot override them. */
.hero-live-laser .hero-switcher a.is-active > span {
  color: #ff8b55;
}

.film-nav button.is-active,
.mobile-contact a {
  background: #9f3516;
}

.footage-console {
  padding: clamp(92px, 10vw, 156px) 0;
  color: var(--ink);
  background: #eee9df;
}

.footage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 7vw;
  margin-bottom: 56px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(18, 18, 16, 0.26);
}

.footage-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -14px;
  color: var(--copper);
}

.footage-intro h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.footage-intro > p:last-child {
  margin: 0 0 8px;
  color: #5b564f;
  line-height: 1.85;
}

.footage-viewer {
  border: 1px solid rgba(18, 18, 16, 0.75);
  background: #11110f;
  box-shadow: 16px 18px 0 rgba(18, 18, 16, 0.08);
}

.footage-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footage-tabs button {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-content: center;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

.footage-tabs button:last-child {
  border-right: 0;
}

.footage-tabs button:hover,
.footage-tabs button:focus-visible,
.footage-tabs button.is-active {
  color: #fff;
  background: var(--copper);
}

.footage-tabs span {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 10px;
}

.footage-tabs strong {
  font-size: 16px;
}

.footage-tabs small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.78;
}

.footage-main {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.72fr);
  min-height: 640px;
}

.footage-screen {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: #050505;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.footage-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(7%) scale(1.04);
  clip-path: inset(0 0 0 100%);
  transition: opacity 420ms ease, transform 820ms var(--ease), clip-path 820ms var(--ease);
  pointer-events: none;
}

.footage-scene.is-active {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
  pointer-events: auto;
}

.footage-scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.footage-live,
.footage-controls {
  position: absolute;
  z-index: 5;
  top: 20px;
}

.footage-live,
.footage-controls button,
.video-sound {
  padding: 9px 12px;
  color: #fff;
  background: rgba(10, 10, 9, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.footage-live {
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footage-controls {
  right: 20px;
  display: flex;
  gap: 8px;
}

.footage-controls button,
.video-sound {
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.footage-controls button:hover,
.footage-controls button:focus-visible,
.video-sound:hover,
.video-sound:focus-visible,
.footage-controls button.is-audible,
.video-sound.is-audible {
  color: #fff;
  background: var(--copper);
  border-color: var(--copper);
}

.footage-info {
  position: relative;
  padding: clamp(42px, 4vw, 66px);
  color: #f2eee7;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #151513;
  background-size: 100% 42px;
}

.footage-info article {
  display: none;
}

.footage-info article.is-active {
  display: block;
  animation: footage-copy-in 520ms var(--ease) both;
}

.footage-info article > p:first-child {
  margin: 0 0 28px;
  color: #df6d3a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footage-info h3 {
  margin: 0;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.footage-info article > p:nth-of-type(2) {
  margin: 28px 0 0;
  color: #b9b4ab;
  line-height: 1.82;
}

.footage-info ul {
  margin: 30px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footage-info li {
  padding: 12px 0;
  color: #d4cfc6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@keyframes footage-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 820px) {
  .hero-guided {
    min-height: 900px;
    align-items: start;
  }

  .hero-guided .hero-stage {
    inset: 0;
  }

  .hero-drafting-grid {
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
  }

  .hero-guided .hero-content {
    padding-top: 112px;
    padding-bottom: 0;
  }

  .hero-guided .hero-content > * {
    max-width: none;
  }

  .hero-guided h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-guided .hero-lead {
    max-width: 92%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-guided .hero-actions {
    margin-top: 24px;
  }

  .hero-object-shell {
    top: 430px;
    right: 4vw;
    bottom: 92px;
    width: 92vw;
  }

  .hero-object {
    width: min(92vw, 520px);
  }

  .hero-object img {
    max-height: 430px;
  }

  .hero-object figcaption {
    display: none;
  }

  .hero-guide-line {
    top: 46%;
    right: 8%;
    bottom: 8%;
  }

  .hero-guided .hero-facts {
    right: 20px;
    bottom: 54px;
    left: 20px;
    gap: 8px 18px;
  }

  .hero-guided .hero-facts span:last-child {
    display: none;
  }

  .scroll-guide {
    bottom: 12px;
  }

  .film {
    height: 400svh;
  }

  .film-scene[data-film-scene="positioning"] img,
  .film-scene[data-film-scene="laser"] img {
    object-position: 70% 50%;
  }

  .film-scroll-space {
    height: 300svh;
  }

  .film-nav {
    right: 20px;
    bottom: 70px;
    left: 20px;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }

  .film-nav button:hover,
  .film-nav button:focus-visible,
  .film-nav button.is-active {
    transform: none;
  }

  .footage-console {
    padding: 86px 0 98px;
  }

  .footage-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .footage-intro .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .footage-intro h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .footage-tabs button {
    min-height: 72px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 8px;
    text-align: center;
  }

  .footage-tabs span,
  .footage-tabs small {
    display: none;
  }

  .footage-tabs strong {
    font-size: 13px;
  }

  .footage-main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footage-screen {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footage-live,
  .footage-controls {
    top: 12px;
  }

  .footage-live {
    left: 12px;
  }

  .footage-controls {
    right: 12px;
  }

  .footage-controls button,
  .video-sound {
    padding: 8px 10px;
    font-size: 10px;
  }

  .footage-info {
    min-height: 500px;
    padding: 38px 28px 44px;
  }

  .footage-info h3 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-object-shell,
  .hero-guide-line span,
  .scroll-guide i::after {
    animation: none !important;
  }

  .hero-object {
    transform: none !important;
  }
}

/* Product Design pass: real WebGL hero and a clearer quotation brief. */
.hero-3d-wrap {
  position: absolute;
  z-index: 3;
  top: 88px;
  right: clamp(8px, 2.6vw, 48px);
  bottom: 82px;
  width: min(55vw, 860px);
  overflow: visible;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transform: translateY(calc(var(--hero-scroll, 0px) * 0.12));
}

.hero-3d-wrap.is-dragging {
  cursor: grabbing;
}

#hero-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  outline: 0;
  opacity: 0;
  filter: drop-shadow(0 38px 34px rgba(26, 20, 15, 0.2));
  transition: opacity 480ms ease;
}

.hero-3d-wrap.is-webgl-ready #hero-3d-canvas {
  opacity: 1;
}

.hero-3d-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 720px);
  max-height: 78svh;
  object-fit: contain;
  filter: drop-shadow(0 34px 26px rgba(31, 24, 18, 0.22));
  transform: translate(-50%, -50%);
  transition: opacity 320ms ease;
}

.hero-3d-wrap.is-webgl-ready .hero-3d-fallback {
  opacity: 0;
  pointer-events: none;
}

.hero-3d-hint {
  position: absolute;
  right: 5%;
  bottom: 7%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 10px;
  align-items: center;
  margin: 0;
  padding: 11px 14px;
  color: #37332e;
  background: rgba(246, 242, 234, 0.88);
  border: 1px solid rgba(18, 18, 16, 0.18);
  font-size: 11px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.hero-3d-hint i {
  grid-row: 1 / 3;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(201, 86, 40, 0.14);
}

.hero-3d-hint strong {
  font-size: 11px;
  font-weight: 700;
}

.hero-3d-hint span {
  color: #7b746c;
  font-size: 9px;
}

.hero-guided .hero-content > * {
  max-width: min(650px, 46vw);
}

.hero-guided h1 {
  font-size: clamp(54px, 5.4vw, 88px);
  line-height: 0.98;
}

.hero-guided .hero-content > .hero-lead {
  max-width: 540px;
}

.film-fx-canvas {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.results-proof {
  padding: clamp(96px, 10vw, 154px) 0;
  color: #f0ede5;
  background: #11110f;
}

.results-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: 5vw;
  align-items: end;
  margin-bottom: 58px;
}

.results-proof-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: var(--copper);
}

.results-proof-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.results-proof-heading > p:last-child {
  margin: 0 0 8px;
  color: #aaa59c;
  line-height: 1.85;
}

.results-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
}

.results-proof figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #080807;
}

.results-proof video,
.results-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-sound {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.results-wide {
  min-height: 720px;
}

.results-wide video {
  object-position: center;
}

.results-portrait {
  min-height: 430px;
}

.results-portrait video {
  object-position: center 36%;
}

.results-photo {
  min-height: 260px;
}

.results-side {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  gap: 18px;
  min-width: 0;
}

.results-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.results-photo img {
  object-position: center 48%;
}

.results-proof figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 20px 22px;
  color: #f5f1e9;
  background: rgba(8, 8, 7, 0.76);
  backdrop-filter: blur(12px);
}

.results-proof figcaption span {
  color: #d46936;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.results-proof figcaption strong {
  font-size: 14px;
  font-weight: 600;
}

.results-proof figcaption a {
  width: fit-content;
  margin-top: 6px;
  color: #f0a47d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.results-photo figcaption {
  padding: 13px 16px;
  font-size: 12px;
}

.quote-brief {
  padding: 110px 0;
  color: #171613;
  background: #ded8cd;
  border-top: 1px solid rgba(18, 18, 16, 0.16);
}

.quote-brief-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1.22fr;
  gap: clamp(64px, 9vw, 150px);
  align-items: start;
}

.quote-brief .section-kicker {
  color: #776e65;
}

.quote-brief h2 {
  margin: 26px 0 0;
  max-width: 520px;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.quote-brief-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(18, 18, 16, 0.24);
}

.quote-brief-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(18, 18, 16, 0.2);
}

.quote-brief-list li > span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.quote-brief-list h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.quote-brief-list p {
  margin: 8px 0 0;
  max-width: 580px;
  color: #615b53;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .hero-3d-wrap {
    width: 51vw;
  }

  .hero-guided h1 {
    font-size: clamp(50px, 6vw, 70px);
  }
}

@media (max-width: 820px) {
  .hero-guided {
    min-height: 930px;
  }

  .hero-guided .hero-content {
    padding-top: 104px;
  }

  .hero-guided .hero-content > * {
    max-width: none;
  }

  .hero-guided h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.2vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.065em;
  }

  .hero-guided .hero-lead {
    max-width: 96%;
  }

  .hero-3d-wrap {
    top: 430px;
    right: 0;
    bottom: 74px;
    width: 100vw;
    min-height: 430px;
  }

  .hero-3d-hint {
    right: 20px;
    bottom: 5%;
  }

  .hero-guide-line {
    top: 48%;
  }

  .results-proof {
    padding: 82px 0;
  }

  .results-proof-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .results-proof-heading .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .results-proof-heading h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .results-proof-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .results-wide {
    grid-column: 1 / -1;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .results-side {
    grid-column: 1 / -1;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .results-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .results-photos {
    gap: 10px;
  }

  .results-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .results-proof figcaption {
    padding: 14px 16px;
  }

  .quote-brief {
    padding: 80px 0;
  }

  .quote-brief-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .quote-brief h2 {
    font-size: clamp(42px, 12vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-3d-wrap {
    transform: none !important;
  }
}

/* Multi-material capability and dual-process 3D hero. */
.hero-process-label {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 28px auto;
  grid-template-rows: auto auto;
  min-width: 132px;
  padding: 9px 11px;
  color: #292621;
  background: rgba(245, 241, 233, 0.82);
  border: 1px solid rgba(18, 18, 16, 0.17);
  box-shadow: 0 14px 34px rgba(24, 19, 14, 0.1);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-process-label::after {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(201, 86, 40, 0.72);
  content: "";
}

.hero-process-label > span {
  grid-row: 1 / 3;
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
}

.hero-process-label strong {
  font-size: 11px;
  font-weight: 700;
}

.hero-process-label small {
  color: #817970;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.hero-process-label--laser {
  top: 20%;
  right: 5%;
}

.hero-process-label--laser::after {
  right: 100%;
}

.hero-process-label--embroidery {
  top: 37%;
  left: 2%;
}

.hero-process-label--embroidery::after {
  left: 100%;
}

.hero-workstation-divider {
  position: absolute;
  z-index: 4;
  top: 18%;
  bottom: 18%;
  left: 48.5%;
  width: 1px;
  background: linear-gradient(transparent, rgba(18, 18, 16, 0.2) 24%, rgba(201, 86, 40, 0.55) 50%, rgba(18, 18, 16, 0.2) 76%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.hero-3d-wrap.is-webgl-ready .hero-workstation-divider {
  opacity: 1;
}

.hero-3d-wrap:not(.is-webgl-ready) .hero-process-label {
  opacity: 0;
}

.material-scope {
  padding: clamp(100px, 10vw, 154px) 0;
  color: #171512;
  background:
    linear-gradient(rgba(18, 18, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 16, 0.045) 1px, transparent 1px),
    #ddd7cc;
  background-size: 48px 48px, 48px 48px, auto;
  border-top: 1px solid rgba(18, 18, 16, 0.18);
  border-bottom: 1px solid rgba(18, 18, 16, 0.2);
}

.material-scope-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: start;
}

.material-scope-heading {
  position: sticky;
  top: 128px;
}

.material-scope .section-kicker {
  color: #776e65;
}

.material-scope h2 {
  margin: 24px 0 30px;
  max-width: 590px;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 650;
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.material-scope-heading > p:last-child {
  max-width: 510px;
  margin: 0;
  color: #5f5951;
  font-size: 15px;
  line-height: 1.9;
}

.material-scope-list {
  border-top: 1px solid rgba(18, 18, 16, 0.27);
}

.material-scope-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 29px 0 31px;
  border-bottom: 1px solid rgba(18, 18, 16, 0.22);
}

.material-scope-list article > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.material-scope-list h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.material-scope-list p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #625c54;
  font-size: 14px;
  line-height: 1.82;
}

.material-safety {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(320px, 1fr) auto;
  gap: 42px;
  align-items: center;
  margin-top: 8px;
  padding: 30px 34px;
  color: #f0ede5;
  background: #171613;
  border-left: 4px solid var(--copper);
}

.material-safety span {
  color: #c7683b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.material-safety h3 {
  margin: 7px 0 0;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.material-safety p {
  margin: 0;
  color: #b4afa6;
  font-size: 13px;
  line-height: 1.8;
}

.material-safety a {
  justify-self: end;
  padding: 11px 15px;
  color: #f8f3ea;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.material-safety a:hover,
.material-safety a:focus-visible {
  color: #171613;
  background: #f3eee5;
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 28px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-contact {
    gap: 12px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .hero-guided {
    min-height: 1050px;
  }

  .hero-guided .hero-content {
    padding-top: 118px;
    padding-bottom: 560px;
  }

  .hero-guided .hero-content > * {
    max-width: min(720px, calc(100vw - 96px));
  }

  .hero-guided h1 {
    max-width: 690px;
    font-size: clamp(54px, 7.2vw, 72px);
  }

  .hero-guided .hero-content > .hero-lead {
    max-width: 620px;
  }

  .hero-3d-wrap {
    top: 445px;
    right: 0;
    bottom: 82px;
    width: 100vw;
  }

  .hero-process-label--laser {
    right: 8%;
  }

  .hero-process-label--embroidery {
    left: 8%;
  }

  .hero-guide-line {
    top: 43%;
  }
}

@media (max-width: 820px) {
  .hero-process-label {
    min-width: 112px;
    padding: 7px 9px;
    transform: scale(0.88);
  }

  .hero-process-label--laser {
    top: 18%;
    right: 3%;
    transform-origin: right top;
  }

  .hero-process-label--embroidery {
    top: 31%;
    left: 3%;
    transform-origin: left top;
  }

  .hero-process-label::after {
    width: 22px;
  }

  .hero-workstation-divider {
    top: 14%;
    bottom: 16%;
    left: 49%;
  }

  .material-scope {
    padding: 82px 0;
    background-size: 36px 36px, 36px 36px, auto;
  }

  .material-scope-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .material-scope-heading {
    position: static;
  }

  .material-scope h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .material-scope-list article {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 23px 0 25px;
  }

  .material-scope-list h3 {
    font-size: 23px;
  }

  .material-safety {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 24px;
  }

  .material-safety a {
    justify-self: start;
  }
}

/* Final cascade guard: material caveat stays clear of the sticky heading. */
.material-scope {
  background: #ddd8cf;
}

@media (min-width: 821px) {
  .material-scope-layout > .material-safety {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -18px;
    padding: 28px 30px;
  }

  .material-scope-layout > .material-safety a {
    justify-self: start;
  }
}

.quote-form select,
.quote-form select option {
  color: #f1ede5;
  background: #11110f;
}
