/* ═══════════════════════════════════════════════════
   KAVE — Craft / About Us Section
   ═══════════════════════════════════════════════════ */

.craft {
  position: relative;
  background: var(--color-bg-alt);
  color: var(--color-text);
}

/* ── Quote Block ── */
.craft-quote {
  padding: 20px var(--gutter) 60px;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 60px;
  align-items: start;
}

.craft-quote .qmark {
  font-family: var(--font-heading);
  font-size: 140px;
  line-height: 0.7;
  color: var(--color-text);
  opacity: 0.92;
  user-select: none;
  margin-top: -12px;
  font-weight: 400;
}

.craft-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0;
}

.craft-quote .w {
  display: inline-block;
  color: rgba(17, 29, 41, 0.14);
  transition: color 0.5s linear;
  will-change: color;
}

.craft-quote .w.lit { color: rgba(17, 29, 41, 1); }

/* ── Divider ── */
.craft-divider {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.craft-divider hr {
  border: none;
  height: 1px;
  background: var(--color-line);
  margin: 0;
}

/* ── Process Block ── */
.craft-process {
  padding: 60px var(--gutter) 0;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  background: #fff;
  z-index: 2;
}

.craft-process-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.craft-process-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.8px;
  max-width: 680px;
}

.craft-process-head .head-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
  text-align: right;
  padding-bottom: 8px;
}

/* ── Process List ── */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.process-list::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--color-line);
  z-index: 3;
}

.step-divider {
  height: 1px;
  background: var(--color-line);
  margin: 0;
  border: none;
  position: relative;
  z-index: 3;
}

.step {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  mix-blend-mode: difference;
  transition: opacity var(--duration-slow) var(--ease);
}

.step .num,
.step .title,
.step .body {
  color: #fff;
}

.step .num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 500;
  padding-top: 8px;
}

.step .title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.4px;
  margin: 0;
}

.step .body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

.process-list.has-active .step { opacity: 0.55; }
.process-list.has-active .step.is-hover { opacity: 1; }

.mobile-img { display: none; }

/* ── Process Portal (mouse-following image) ── */
.process-portal {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 480px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slower) var(--ease);
  z-index: -1;
  will-change: transform, opacity, left, top;
}

.process-portal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.process-portal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
  will-change: opacity;
}

.process-portal img.current { opacity: 1; }

/* ═══ Tablet ═══ */
@media (max-width: 1024px) {
  .craft-quote { padding: 16px var(--gutter) 48px; grid-template-columns: 100px 1fr; gap: 40px; }
  .craft-quote .qmark { font-size: 110px; }
  .craft-process { padding: 48px var(--gutter) 0; }
  .step { grid-template-columns: 70px 1fr 1.3fr; gap: 40px; padding: 42px 0; }
}

/* ═══ Mobile ═══ */
@media (max-width: 760px) {
  .craft-quote {
    padding: 16px var(--gutter) 40px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .craft-quote .qmark { font-size: 80px; margin-top: -8px; margin-bottom: -8px; }
  .craft-quote blockquote { font-size: 28px; line-height: 1.28; letter-spacing: -0.3px; }

  .craft-process { padding: 40px var(--gutter) 0; }
  .craft-process-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 48px;
  }
  .craft-process-head h2 { font-size: 34px; letter-spacing: -0.4px; line-height: 1.02; }
  .craft-process-head .head-meta { text-align: left; font-size: 12px; line-height: 1.5; max-width: 100%; padding-bottom: 0; }

  .step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
    cursor: auto;
    mix-blend-mode: normal;
    position: relative;
  }

  .mobile-img {
    display: block;
    position: absolute;
    top: 32px;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }

  .step .num,
  .step .title { color: var(--color-text); padding-right: 116px; }
  .step .body { color: rgba(17, 29, 41, 0.7); padding-right: 70px; }
  .step .num { padding-top: 0; }
  .step .title { font-size: 22px; }
  .step .body { font-size: 13px; line-height: 1.65; }
  .process-portal { display: none !important; }
}
