:root {
  --ink: #1e211d;
  --muted: #5f625c;
  --paper: #f7f3ee;
  --paper-warm: #f0e9df;
  --white: #fff;
  --line: #ded8cf;
  --wine: #7c5bb0;
  --wine-dark: #62428f;
  --sage: #7f8b73;
  --charcoal: #2b2d29;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 5vw;
  background: rgba(247, 245, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 210px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 30px 0;
}

.nav .lang-switch {
  padding: 8px 12px;
  color: var(--wine);
  border: 1px solid rgba(124, 91, 176, 0.32);
  border-radius: 999px;
  font-weight: 800;
}

.nav .lang-switch::after {
  display: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  opacity: 0;
}

.nav a:hover::after,
.nav a.active::after {
  opacity: 1;
}

.menu-toggle {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(470px, 0.9fr) minmax(520px, 1.1fr);
  min-height: calc(100vh - 86px);
  background: var(--paper-warm);
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 5vw;
}

.hero-media {
  min-height: 620px;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.lead {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 21px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid var(--wine);
  border-radius: 2px;
  font-weight: 700;
  cursor: pointer;
}

.button.soft {
  color: var(--wine);
  background: rgba(124, 91, 176, 0.08);
  border-color: rgba(124, 91, 176, 0.28);
}

.button.primary {
  color: var(--white);
  background: var(--wine);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  color: var(--wine);
  background: transparent;
}

.button.secondary:hover {
  background: rgba(123, 15, 24, 0.07);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 44px 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 130px;
  padding: 18px 34px;
  border-right: 1px solid var(--line);
}

.catalog-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 44px 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.catalog-metrics article,
.client-type-card,
.term-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(78, 61, 43, 0.06);
}

.catalog-metrics b {
  display: block;
  color: var(--wine);
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1;
  white-space: nowrap;
}

.catalog-metrics span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip h2 {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.service-strip p {
  grid-column: 2;
  margin: -10px 0 0;
  max-width: 250px;
  line-height: 1.65;
}

.service-strip p,
.case-card p,
.timeline p,
.technique-grid p,
.service-detail-grid p,
.info-band p,
.inquiry-panel p,
.contact-copy p {
  color: var(--muted);
}

.line-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--wine);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.capability-wall {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 48px;
  align-items: start;
  background: linear-gradient(180deg, #fbfaf7, var(--paper));
}

.capability-list-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: capability;
}

.capability-list-large li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(78, 61, 43, 0.05);
  counter-increment: capability;
}

.capability-list-large li::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(124, 91, 176, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
  content: "0" counter(capability);
}

.capability-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: linear-gradient(135deg, #9c7acb, #6f4ba3);
  border-radius: 50%;
}

.capability-dot::before {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.capability-list-large h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.capability-list-large p {
  position: relative;
  z-index: 1;
}

html[lang="en"] .capability-list-large li {
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-height: 142px;
  padding: 18px 18px 20px;
}

html[lang="en"] .capability-list-large h3 {
  max-width: 180px;
  font-size: 17px;
  line-height: 1.22;
}

html[lang="en"] .capability-list-large p {
  max-width: 190px;
  font-size: 14px;
  line-height: 1.5;
}

.capability-wall-en {
  grid-template-columns: minmax(420px, 0.7fr) minmax(620px, 1.3fr);
  gap: 58px;
}

.capability-wall-en .lead {
  max-width: 560px;
}

.capability-wall-en .capability-list-large {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.capability-wall-en .capability-list-large li {
  grid-template-columns: 46px 1fr auto;
  align-items: start;
  min-height: 0;
  padding: 18px 18px 18px 20px;
}

.capability-wall-en .capability-list-large li::after {
  position: static;
  align-self: center;
  min-width: 44px;
  text-align: right;
  font-size: 34px;
}

.capability-wall-en .capability-list-large h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.18;
}

.capability-wall-en .capability-list-large p {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
}

.factory-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(78, 61, 43, 0.08);
}

.factory-gallery::before {
  position: absolute;
  top: -18px;
  right: 24px;
  z-index: 2;
  padding: 8px 14px;
  color: var(--wine);
  background: var(--white);
  border: 1px solid rgba(124, 91, 176, 0.25);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(78, 61, 43, 0.08);
  font-size: 12px;
  font-weight: 800;
  content: "Factory Real Shots";
}

html[lang^="zh"] .factory-gallery::before {
  content: "工厂实拍";
}

.factory-gallery img {
  grid-column: span 2;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
}

.factory-gallery img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.factory-gallery img.tall {
  height: 230px;
  object-position: center 38%;
}

.factory-gallery img.detail-strip {
  object-position: center;
}

.section {
  padding: 72px 5vw;
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}

.text-link {
  color: var(--wine);
  font-weight: 700;
}

.text-link::after {
  content: " ->";
}

.case-grid {
  display: grid;
  gap: 24px;
}

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

.case-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.latest-drop {
  position: relative;
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.96), rgba(250, 248, 244, 0.98)),
    radial-gradient(circle at 92% 8%, rgba(124, 91, 176, 0.08), transparent 34%);
  border-top: 1px solid rgba(124, 91, 176, 0.12);
  border-bottom: 1px solid rgba(124, 91, 176, 0.12);
}

.latest-heading .lead {
  max-width: 760px;
  margin-top: 14px;
  font-size: 18px;
}

.latest-grid {
  align-items: stretch;
}

.latest-card {
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(78, 61, 43, 0.06);
}

.latest-card img {
  border-radius: 10px;
}

.latest-card div {
  padding: 18px 2px 2px;
}

.style-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--wine);
  background: rgba(124, 91, 176, 0.08);
  border: 1px solid rgba(124, 91, 176, 0.22);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-warm);
}

.case-card div {
  padding: 16px 0 0;
}

.case-card h3,
.case-card h2 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.case-card p {
  margin-bottom: 10px;
}

.case-card span {
  display: inline-flex;
  margin: 0 6px 7px 0;
  padding: 4px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
}

.client-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.logo-proof {
  padding-bottom: 46px;
}

.logo-proof .section-heading p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.7;
}

.logo-wall-image {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(78, 61, 43, 0.06);
}

.logo-wall-image img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.client-type-card h3,
.term-card h3 {
  font-size: 22px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.pill-grid span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
}

.case-category-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-gallery-detailed {
  display: grid;
  gap: 28px;
}

.case-study-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 30px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(78, 61, 43, 0.06);
}

.case-study-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  min-height: 340px;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  min-height: 165px;
  object-fit: cover;
  background: var(--paper-warm);
  border-radius: 12px;
}

.case-study-media img:first-child {
  grid-row: span 2;
}

.case-study-copy {
  align-self: center;
  padding: 14px 12px;
}

.case-study-copy h2 {
  margin-bottom: 22px;
}

.case-study-copy dl {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px 18px;
  margin: 0;
}

.case-study-copy dt {
  color: var(--wine);
  font-weight: 800;
}

.case-study-copy dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.case-card.feature {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.craft-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: 52px;
  align-items: center;
  background: var(--white);
}

.craft-copy {
  max-width: 520px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-size: 11px;
  content: "✓";
}

.check-list.columns {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  margin: 0;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mosaic img {
  height: 260px;
  object-fit: cover;
}

.mosaic img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.homepage-process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.98), rgba(244, 239, 232, 0.96)),
    url("assets/site/yarn-color-cards.jpg") right 10% top 24px / 360px auto no-repeat;
  border-top: 1px solid var(--line);
}

.homepage-process::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0 48%, rgba(247, 243, 238, 0.82) 100%);
  content: "";
}

.homepage-process > * {
  position: relative;
  z-index: 1;
}

.process-heading {
  align-items: start;
}

.process-heading .lead {
  max-width: 520px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 17px;
}

.process-roadmap {
  position: relative;
  margin-top: 38px;
  gap: 18px;
  counter-reset: roadmap;
}

.process-roadmap::before {
  position: absolute;
  top: 42px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(124, 91, 176, 0.4) 0 10px, transparent 10px 22px);
  content: "";
}

.business-terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.term-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
}

.term-card img {
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.process-line article {
  position: relative;
  min-height: 180px;
  text-align: center;
}

.process-roadmap article {
  overflow: hidden;
  min-height: 248px;
  padding: 28px 18px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(78, 61, 43, 0.06);
  text-align: left;
  counter-increment: roadmap;
}

.process-roadmap article::after {
  position: absolute;
  right: 14px;
  bottom: -10px;
  color: rgba(124, 91, 176, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  content: "0" counter(roadmap);
}

.process-line b,
.timeline b {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--wine);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
}

.process-roadmap b {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 10px 22px rgba(124, 91, 176, 0.22);
}

.process-roadmap span {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-line h3 {
  font-size: 15px;
}

.process-roadmap h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 18px;
}

.process-line p {
  color: var(--muted);
  font-size: 13px;
}

.process-roadmap p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.7;
}

.inquiry-panel {
  margin: 0 5vw 64px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .wide {
  grid-column: span 2;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--wine);
  font-weight: 700;
}

.page-hero {
  padding: 96px 5vw 70px;
  background: linear-gradient(90deg, rgba(247, 245, 240, 0.96), rgba(238, 233, 223, 0.8)), url("assets/site/factory-machines.jpg") center / cover;
}

.page-hero.compact {
  padding-bottom: 58px;
}

.service-detail-grid {
  display: grid;
  gap: 46px;
}

.service-detail-grid article {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.service-detail-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-capability {
  background: linear-gradient(180deg, var(--paper), #fbfaf7);
}

.service-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-capability-grid article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(78, 61, 43, 0.06);
}

.service-capability-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--wine);
  border: 1px solid rgba(124, 91, 176, 0.25);
  border-radius: 50%;
  font-weight: 800;
}

.service-capability-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-capability-grid b {
  display: block;
  margin-top: 18px;
  color: var(--wine);
  font-size: 13px;
  line-height: 1.6;
}

.service-proof-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr);
  gap: 38px;
  align-items: center;
  background: var(--white);
}

.service-proof-band img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}

.service-lens {
  background: linear-gradient(180deg, var(--paper), #fbfaf7);
}

.service-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-scenario-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(78, 61, 43, 0.06);
}

.service-scenario-grid b {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 12px;
  color: var(--wine);
  background: rgba(124, 91, 176, 0.08);
  border: 1px solid rgba(124, 91, 176, 0.2);
  border-radius: 999px;
  font-size: 12px;
}

.service-scenario-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-menu {
  background: var(--white);
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-menu-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.service-menu-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.service-menu-grid span {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  color: var(--wine);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.service-deliverables {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1.26fr);
  gap: 42px;
  align-items: center;
  background: linear-gradient(180deg, #fbfaf7, var(--paper));
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deliverable-list span {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(78, 61, 43, 0.04);
  font-weight: 800;
}

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

.technique-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.yarn-options {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(480px, 1.05fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 36px;
}

.option-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.option-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.option-panel h2 {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 26px;
  color: var(--white);
  background: var(--wine);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.yarn-visual {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(78, 61, 43, 0.06);
}

.yarn-main-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.yarn-main-photo {
  aspect-ratio: 16 / 7;
}

.craft-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.craft-mini-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.yarn-visual-copy {
  padding: 24px 8px 4px;
}

.yarn-visual-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 54px);
}

.yarn-visual-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.color-dots span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.request-boxes {
  display: grid;
  gap: 16px;
}

.request-boxes span {
  display: block;
  padding: 18px 22px;
  color: var(--wine);
  background: var(--white);
  border: 1px solid rgba(124, 91, 176, 0.35);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
}

.technique-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.technique-grid h2,
.technique-grid p,
.technique-grid b {
  display: block;
  padding: 0 22px;
}

.technique-grid h2 {
  margin-top: 22px;
  font-size: 30px;
}

.technique-grid b {
  padding-bottom: 24px;
  color: var(--wine);
}

.technique-guide {
  background: var(--paper);
}

.technique-principles {
  background: linear-gradient(180deg, var(--paper), #fbfaf7);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-grid article,
.material-table article,
.manufacturing-points article,
.qc-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(78, 61, 43, 0.05);
}

.principle-grid b {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--wine);
  border: 1px solid rgba(124, 91, 176, 0.25);
  border-radius: 50%;
}

.material-guide {
  background: var(--white);
}

.material-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.material-table article {
  background: var(--paper);
}

.yarn-note {
  margin-top: 22px;
  padding: 28px;
  background: rgba(124, 91, 176, 0.07);
  border: 1px solid rgba(124, 91, 176, 0.2);
  border-radius: 14px;
}

.manufacturing-knowledge {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 42px;
  align-items: start;
  background: linear-gradient(180deg, #fbfaf7, var(--paper));
}

.manufacturing-points,
.qc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.qc-knowledge {
  background: var(--white);
}

.technique-guide-grid {
  display: grid;
  gap: 22px;
}

.technique-guide-grid article {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 0.58fr);
  gap: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(78, 61, 43, 0.06);
}

.technique-visual-stack {
  display: grid;
  grid-template-rows: 1fr 0.62fr;
  gap: 12px;
  min-height: 430px;
}

.technique-visual-stack.single {
  grid-template-rows: 1fr;
  min-height: 460px;
}

.technique-guide-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 12px;
}

.technique-visual-stack img:first-child {
  min-height: 260px;
}

.technique-visual-stack img:nth-child(2) {
  min-height: 150px;
  border: 1px solid var(--line);
}

.technique-visual-stack.single img {
  min-height: 460px;
  border: 1px solid var(--line);
  background: #f7f3ed;
}

.technique-guide-grid article > div {
  padding: 14px 12px 10px;
}

.technique-guide-grid article > .technique-visual-stack {
  padding: 0;
}

.technique-guide-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  color: var(--wine);
  background: rgba(124, 91, 176, 0.08);
  border: 1px solid rgba(124, 91, 176, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.technique-guide-grid h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.technique-guide-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.technique-guide-grid dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 16px;
  margin: 22px 0 0;
}

.technique-guide-grid dt {
  color: var(--wine);
  font-weight: 800;
}

.technique-guide-grid dd {
  margin: 0;
  color: var(--muted);
}

.technique-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.technique-mini article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.technique-mini h3 {
  font-size: 20px;
}

.technique-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.technique-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.process-hero {
  padding-bottom: 34px;
}

.process-board-section {
  padding-top: 24px;
}

.process-board {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.9));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(76, 59, 40, 0.08);
}

.process-board::before {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(124, 91, 176, 0.16);
  border-radius: 50%;
  content: "";
}

.process-board-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.process-board-head h2 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 84px);
  line-height: 0.98;
}

.process-board-head > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.process-board-visual {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 2.08 / 1;
  object-fit: cover;
  border: 1px solid rgba(210, 199, 185, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(78, 61, 43, 0.08);
}

.process-board-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 28px;
}

.process-board-steps::before {
  position: absolute;
  top: 216px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(124, 91, 176, 0.5) 0 11px, transparent 11px 24px);
  content: "";
}

.process-board-steps article {
  position: relative;
  overflow: hidden;
  min-height: 414px;
  padding: 0 22px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 199, 185, 0.92);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(78, 61, 43, 0.07);
}

.process-board-steps article > img {
  display: block;
  width: calc(100% + 44px);
  height: 240px;
  margin: 0 -22px;
  object-fit: cover;
  border-bottom: 1px solid rgba(210, 199, 185, 0.72);
}

.process-step-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 70px;
  margin: -35px auto 16px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #9a76cf, var(--wine));
  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(124, 91, 176, 0.2);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.process-board-steps h3 {
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.process-board-steps p {
  color: var(--muted);
  line-height: 1.65;
}

.process-terms {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-terms article {
  display: grid;
  grid-template-columns: 168px 1fr;
  overflow: hidden;
  min-height: 170px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 199, 185, 0.92);
  border-radius: 16px;
}

.process-terms img {
  width: 100%;
  height: 170px;
  min-height: 170px;
  object-fit: cover;
}

.process-terms article:first-child img {
  object-position: 12% 78%;
}

.process-terms div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.process-terms span {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-terms h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.process-terms p {
  color: var(--muted);
  line-height: 1.68;
}

.process-promise {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 24px;
  color: var(--muted);
  background: rgba(124, 91, 176, 0.08);
  border: 1px solid rgba(124, 91, 176, 0.16);
  border-radius: 14px;
}

.process-promise strong {
  color: var(--wine);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.terms-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 40px;
  align-items: center;
  background: var(--white);
}

.term-highlight {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.term-highlight h2 {
  margin-bottom: 14px;
}

.term-highlight p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.business-terms.refined {
  margin-top: 0;
}

.business-terms.refined .term-card {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.business-terms.refined .term-card img {
  width: 100%;
  height: 150px;
}

.timeline article,
.info-band,
.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.timeline h2 {
  font-size: 32px;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: 30px;
  align-items: center;
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 52px;
  min-height: calc(100vh - 86px);
  padding: 76px 5vw;
  background: var(--paper);
}

.contact-copy {
  align-self: center;
}

.contact-card {
  margin-top: 32px;
}

.contact-card h2 {
  font-size: 28px;
}

.contact-form {
  align-self: start;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-form .button,
.inquiry-panel .button {
  align-self: end;
}

.contact-redesign {
  align-items: start;
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.94), rgba(240, 235, 227, 0.96)),
    url("assets/site/factory-machines.jpg") center top / cover fixed;
}

.contact-redesign .contact-copy {
  position: sticky;
  top: 108px;
}

.contact-visual {
  overflow: hidden;
  margin: 30px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(78, 61, 43, 0.08);
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.contact-visual div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.contact-visual span {
  padding: 16px;
  color: var(--wine);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.contact-info-card {
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(78, 61, 43, 0.06);
}

.contact-info-card h2 {
  margin-bottom: 18px;
}

.contact-info-card p:not(.eyebrow) {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-info-card a {
  color: var(--ink);
  text-decoration: none;
}

.copy-text {
  color: var(--ink);
  font-weight: 700;
}

.contact-info-card p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.social-contact-card {
  margin-top: 24px;
}

.social-contact-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.social-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.social-logo {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.social-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.social-link span {
  font-weight: 800;
  line-height: 1.2;
}

.social-link small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.social-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.contact-mini-cards article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-mini-cards b {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-size: 11px;
}

.contact-mini-cards h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-mini-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-brief-card {
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(78, 61, 43, 0.08);
}

.contact-brief-card .form-heading,
.contact-brief-card fieldset,
.contact-brief-card .button,
.contact-brief-card .form-note {
  grid-column: 1 / -1;
}

.contact-brief-card .form-heading {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-brief-card .form-heading h2 {
  margin-bottom: 8px;
}

.contact-brief-card .form-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-brief-card fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-brief-card fieldset.wide {
  grid-template-columns: 1fr;
}

.contact-brief-card legend {
  padding: 0 10px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.contact-brief-card .button {
  width: min(100%, 360px);
  margin-top: 4px;
}

.gallery-tool {
  background: var(--paper);
}

.gallery-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.gallery-search {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gallery-search input {
  min-height: 48px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font: inherit;
}

.tag-filter-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.tag-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag-filter-group h3 {
  width: 150px;
  margin: 0;
  font-size: 14px;
}

.tag-filter,
.clear-tags {
  min-height: 42px;
  padding: 0 18px;
  color: var(--wine);
  background: rgba(124, 91, 176, 0.08);
  border: 1px solid rgba(124, 91, 176, 0.25);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.tag-filter.active,
.tag-filter:hover,
.clear-tags:hover {
  color: var(--white);
  background: var(--wine);
}

.clear-tags {
  justify-self: start;
  background: var(--white);
}

.gallery-count {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(78, 61, 43, 0.06);
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-warm);
}

.gallery-card div {
  padding: 12px 14px 14px;
}

.gallery-card h3 {
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.gallery-card.has-variants {
  border-color: rgba(124, 91, 176, 0.26);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 6px;
}

.variant-swatch {
  width: 24px;
  height: 24px;
  padding: 0;
  background: var(--swatch);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(124, 91, 176, 0.25);
  cursor: pointer;
}

.variant-swatch.active {
  box-shadow: 0 0 0 3px rgba(124, 91, 176, 0.32);
}

.variant-note {
  color: var(--wine) !important;
  font-size: 11px !important;
  font-weight: 800;
}

.variant-current {
  margin-top: 4px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.gallery-tags span {
  padding: 3px 7px;
  color: var(--wine);
  background: rgba(124, 91, 176, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.footer {
  padding: 24px 5vw;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero,
  .craft-band,
  .contact-layout,
  .service-detail-grid article,
  .service-proof-band,
  .service-deliverables,
  .manufacturing-knowledge,
  .technique-guide-grid article,
  .info-band,
  .capability-wall,
  .yarn-options,
  .compliance-grid,
  .terms-band {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .contact-redesign .contact-copy {
    position: static;
  }

  .hero-copy {
    min-width: 0;
  }

  .service-strip,
  .catalog-metrics,
  .case-grid.four,
  .technique-grid,
  .service-capability-grid,
  .service-scenario-grid,
  .service-menu-grid,
  .principle-grid,
  .material-table,
  .faq-grid,
  .client-types,
  .business-terms,
  .product-gallery,
  .process-flow,
  .process-board-head,
  .process-board-steps,
  .process-terms,
  .technique-mini {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-study-card {
    grid-template-columns: 1fr;
  }

  .process-roadmap::before {
    display: none;
  }

  .process-board-steps {
    margin: 22px 0 28px;
  }

  .process-board-steps::before {
    display: none;
  }

  .process-terms article {
    grid-template-columns: 142px 1fr;
  }

  .technique-guide-grid article {
    grid-template-columns: 1fr;
  }

  .technique-visual-stack {
    min-height: 0;
  }

  .technique-visual-stack.single,
  .technique-visual-stack.single img {
    min-height: 0;
  }

  .inquiry-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    align-items: flex-start;
    min-height: auto;
    padding: 18px 5vw;
  }

  .brand strong {
    font-size: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .hero-copy,
  .section,
  .page-hero,
  .contact-layout {
    padding: 46px 5vw;
  }

  .hero,
  .hero-copy,
  .hero-media {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
  }

  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .actions {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  h1 {
    font-size: 42px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
    padding: 0 18px;
  }

  .hero-media {
    min-height: 340px;
  }

  .lead {
    font-size: 18px;
  }

  .service-strip,
  .catalog-metrics,
  .case-grid.four,
  .case-grid.three,
  .technique-grid,
  .service-capability-grid,
  .service-scenario-grid,
  .service-menu-grid,
  .principle-grid,
  .material-table,
  .manufacturing-points,
  .qc-grid,
  .faq-grid,
    .technique-mini,
    .process-flow,
    .process-board-head,
    .process-board-steps,
    .process-terms,
    .process-line,
    .timeline,
  .inquiry-form,
  .contact-form,
  .check-list.columns,
  .client-types,
  .pill-grid,
  .business-terms,
  .option-panels,
  .gallery-toolbar {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .variant-options {
    gap: 10px;
  }

  .variant-swatch {
    width: 32px;
    height: 32px;
  }

  .contact-mini-cards,
  .contact-brief-card fieldset,
  .social-link-grid {
    grid-template-columns: 1fr;
  }

  .tag-filter-group h3 {
    width: 100%;
  }

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

  .process-flow::before {
    display: none;
  }

  .process-board {
    padding: 18px;
    border-radius: 14px;
  }

  .process-board-head {
    gap: 18px;
  }

  .process-board-head h2 {
    font-size: 40px;
  }

  .process-board-head > p {
    font-size: 16px;
  }

  .process-board-visual {
    aspect-ratio: 1 / 1;
    object-position: center top;
  }

  .process-board-steps {
    gap: 14px;
    margin: 16px 0 20px;
  }

  .process-board-steps article {
    min-height: auto;
    padding: 0 18px 20px;
    text-align: left;
  }

  .process-board-steps article > img {
    width: calc(100% + 36px);
    height: 210px;
    margin: 0 -18px;
  }

  .process-step-icon {
    width: 54px;
    height: 54px;
    margin: -27px 0 12px;
    border-width: 5px;
  }

  .process-terms article {
    grid-template-columns: 1fr;
  }

  .process-terms img {
    height: 190px;
  }

  .process-promise {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .process-card-body {
    min-height: auto;
  }

  .case-study-media,
  .case-study-copy dl {
    grid-template-columns: 1fr;
  }

  .case-study-media img:first-child {
    grid-row: auto;
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .technique-guide-grid dl {
    grid-template-columns: 1fr;
  }

  .technique-visual-stack {
    grid-template-rows: auto auto;
  }

  .technique-visual-stack.single {
    grid-template-rows: auto;
  }

  .technique-visual-stack img:first-child,
  .technique-visual-stack img:nth-child(2) {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .technique-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-form .wide {
    grid-column: span 1;
  }

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

  .mosaic img,
  .mosaic img:first-child {
    grid-column: auto;
    height: 260px;
  }

  .factory-gallery {
    grid-template-columns: 1fr;
  }

  .factory-gallery img,
  .factory-gallery img:first-child {
    grid-column: auto;
    height: 260px;
  }

  .term-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .actions {
    max-width: 342px;
  }
}
