.cw-craft-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 118px);
}

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

.cw-craft-home-copy h2 {
  margin: 16px 0 20px;
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.cw-craft-home-copy h2 span {
  color: #7654e7;
}

.cw-craft-home-copy > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.23rem);
  line-height: 1.7;
}

.cw-craft-home-note {
  margin: 22px 0 28px;
  padding: 18px 20px;
  border-left: 4px solid #ff7bbd;
  border-radius: 0 16px 16px 0;
  background: #ffffffa6;
  color: #493762;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 16px 42px #4e286b12;
}

.cw-craft-visual {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.cw-craft-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #ffffffd8;
  border-radius: 26px;
  background: #ffffffc4;
  box-shadow: 0 26px 76px #4e286b22;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.cw-craft-card:nth-child(1) { transform: rotate(-2deg); }
.cw-craft-card:nth-child(2) { transform: translateY(24px) rotate(1.5deg); }
.cw-craft-card:nth-child(3) { transform: translateY(-10px) rotate(1deg); }
.cw-craft-card:nth-child(4) { transform: translateY(16px) rotate(-1.5deg); }

.cw-craft-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -46px;
  bottom: -48px;
  border-radius: 50%;
  background: radial-gradient(circle, #8b65ff2a, transparent 70%);
}

.cw-craft-card > span {
  display: block;
  margin-bottom: 50px;
  color: #8b65ff78;
  font-size: 2.1rem;
  font-weight: 1000;
}

.cw-craft-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.cw-craft-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cw-craft-pencil {
  position: absolute;
  left: 47%;
  top: 44%;
  width: 180px;
  height: 18px;
  z-index: 3;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7bbd 0 72%, #ffd8a8 72% 84%, #4d3d6d 84% 100%);
  box-shadow: 0 12px 28px #4e286b30;
  transform: translate(-50%, -50%) rotate(-24deg);
  pointer-events: none;
}

.cw-craft-pencil::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 20px solid #4d3d6d;
}

@media (max-width: 900px) {
  .cw-craft-home {
    grid-template-columns: 1fr;
  }

  .cw-craft-visual {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .cw-craft-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cw-craft-card,
  .cw-craft-card:nth-child(1),
  .cw-craft-card:nth-child(2),
  .cw-craft-card:nth-child(3),
  .cw-craft-card:nth-child(4) {
    min-height: 180px;
    transform: none;
  }

  .cw-craft-card > span { margin-bottom: 28px; }
  .cw-craft-pencil { display: none; }
}
