.theme-craft .craft-step-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.theme-craft .craft-step-card::after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  top: 62px;
  height: 1px;
  background: #bca58f;
}

.theme-craft .craft-build {
  padding: clamp(90px, 11vw, 150px) max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: #e3d6c5;
}

.theme-craft .craft-build__intro {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  margin-bottom: clamp(72px, 10vw, 130px);
}

.theme-craft .craft-build__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.45fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.theme-craft .craft-build__story {
  min-width: 0;
}

.theme-craft .craft-build__step {
  min-height: 48vh;
  padding: clamp(52px, 8vh, 82px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #bca58f;
}

.theme-craft .craft-build__step:last-child {
  border-bottom: 1px solid #bca58f;
}

.theme-craft .craft-build__number,
.theme-craft .craft-build__material {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-craft .craft-build__number {
  color: #886045;
}

.theme-craft .craft-build__material {
  margin: 8px 0 0;
  color: var(--muted);
}

.theme-craft .craft-build__step h3 {
  margin: 22px 0 14px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.theme-craft .craft-build__step > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.theme-craft .craft-build__media {
  position: sticky;
  top: clamp(92px, 11vh, 132px);
  width: 100%;
}

.theme-craft .craft-build__stage {
  position: relative;
  overflow: hidden;
  border: 1px solid #bca58f;
  background: #eee5d8;
  box-shadow: 0 28px 70px rgba(60, 43, 32, 0.12);
}

.theme-craft .craft-build__stage-head,
.theme-craft .craft-build__stage-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  color: #67503f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-craft .craft-build__stage-head {
  border-bottom: 1px solid #c8b5a1;
}

.theme-craft .craft-build__stage-foot {
  border-top: 1px solid #c8b5a1;
}

.theme-craft .craft-build__drawing {
  display: block;
  width: 100%;
  height: auto;
  background: #e9dfd0;
}

.theme-craft .craft-guide {
  fill: none;
  stroke: #c9b8a5;
  stroke-width: 1;
}

.theme-craft .craft-layer {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.theme-craft .craft-board,
.theme-craft .craft-leg,
.theme-craft .craft-tenon {
  fill: #936c4e;
  stroke: #3c2b20;
  stroke-width: 2;
  stroke-linejoin: round;
}

.theme-craft .craft-leg {
  fill: #886045;
}

.theme-craft .craft-tenon {
  fill: #9f7657;
}

.theme-craft .craft-grain {
  fill: none;
  stroke: #5f402f;
  stroke-width: 1.5;
  opacity: 0.72;
}

.theme-craft .craft-grain--leg {
  stroke: #533726;
  stroke-width: 1.25;
}

.theme-craft .craft-glue {
  fill: #d1b36e;
  stroke: #7a583e;
  stroke-width: 1;
}

.theme-craft .craft-sanding {
  fill: none;
  stroke: #886045;
  stroke-width: 2;
  stroke-dasharray: 12 9;
}

.theme-craft .craft-oil {
  fill: #b47e3d;
  fill-opacity: 0.18;
  stroke: #a46d2e;
  stroke-width: 5;
  stroke-linejoin: round;
}

.theme-craft .craft-callout {
  fill: none;
  stroke: #5f4939;
  stroke-width: 1;
}

.theme-craft .craft-callout text {
  fill: #3c2b20;
  stroke: none;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.theme-craft .craft-callout text + text {
  fill: #756454;
  font-size: 8px;
  font-weight: 400;
}

.theme-craft .craft-build__proof {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
  margin-top: clamp(80px, 11vw, 140px);
  padding-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid #bca58f;
}

.theme-craft .craft-build__proof > div > p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.12;
}

.theme-craft .craft-build__proof .stats {
  margin-top: 0;
  border-color: #bca58f;
}

@media (max-width: 800px) {
  .theme-craft .craft-build {
    padding: 78px 15px 100px;
  }

  .theme-craft .craft-build__intro,
  .theme-craft .craft-build__layout,
  .theme-craft .craft-build__proof {
    grid-template-columns: 1fr;
  }

  .theme-craft .craft-build__intro {
    margin-bottom: 54px;
  }

  .theme-craft .craft-build__layout {
    gap: 48px;
  }

  .theme-craft .craft-build__media {
    grid-row: 1;
    position: static;
  }

  .theme-craft .craft-build__story {
    grid-row: 2;
  }

  .theme-craft .craft-build__step {
    min-height: 0;
    padding: 44px 0;
  }

  .theme-craft .craft-layer {
    will-change: auto;
  }

  .theme-craft .craft-build__proof {
    margin-top: 78px;
  }
}

@media (max-width: 520px) {
  .theme-craft .craft-build__stage-head,
  .theme-craft .craft-build__stage-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .theme-craft .craft-callout text {
    font-size: 18px;
  }

  .theme-craft .craft-callout text + text {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-craft .craft-layer {
    will-change: auto;
  }
}
