/* ============================================
   CRAFT HERO
============================================ */
.craft-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.craft-hero-bg {
  position: absolute;
  inset: -10%;
  background: url('../img/craft-hero.png') center 40% / cover no-repeat;
  background-attachment: fixed;
  animation: zoomIn 10s ease-out both;
}

.craft-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 35, 0.52);
}

/* Brand — identical to homepage hero-brand */
.craft-hero .hero-brand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding-top: 1.2rem;
  animation: heroFadeIn 1s ease 0.2s both;
  white-space: nowrap;
}

/* Centred text block */
.craft-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease 0.4s both;
  white-space: nowrap;
}

/* Title — same spec as .hero-tagline on homepage */
.craft-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0 0 1.2rem;
}

.craft-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
}

/* ============================================
   STEPS SECTION
============================================ */
.craft-steps {
  position: relative;
  background: var(--white);
  padding: 0;
}

/* Animated red spine */
.craft-spine {
  position: absolute;
  left: max(2rem, calc((100vw - 1120px) / 2 - 3rem));
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.craft-spine-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: var(--red);
  transition: height 0.08s linear;
}

@media (max-width: 1100px) {
  .craft-spine { display: none; }
}

/* Individual step */
.craft-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.craft-step:first-of-type {
  border-top: 1px solid var(--border);
}

.craft-step--reverse .craft-step-text  { order: 2; }
.craft-step--reverse .craft-step-visual { order: 1; }

/* Text side */
.craft-step-text {
  padding: 5rem 4.5rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.craft-step--reverse .craft-step-text {
  border-right: none;
  border-left: 1px solid var(--border);
  padding: 5rem 3rem 5rem 4.5rem;
}

/* Large decorative number */
.craft-step-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 1.6rem;
  opacity: 0.38;
  letter-spacing: -0.02em;
  user-select: none;
}

.craft-step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}

.craft-step-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--red);
}

.craft-step-body {
  font-family: var(--font-manrope);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.95;
  letter-spacing: 0.04em;
}

/* Visual side */
.craft-step-visual {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: unset;
  min-height: 480px;
}

.craft-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.craft-step:hover .craft-step-visual img {
  transform: scale(1.03);
}

/* ============================================
   CLOSING LINE
============================================ */
.craft-closing {
  background: var(--off-white);
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.craft-closing-rule {
  width: 40px;
  height: 1px;
  background: var(--red);
}

.craft-closing-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 800px) {
  .craft-step,
  .craft-step--reverse {
    grid-template-columns: 1fr;
  }

  .craft-step--reverse .craft-step-text  { order: unset; }
  .craft-step--reverse .craft-step-visual { order: unset; }

  .craft-step-text,
  .craft-step--reverse .craft-step-text {
    padding: 3rem 1.5rem 2.5rem;
    border-right: none;
    border-left: none;
  }

  .craft-step-visual { min-height: 300px; }

  .craft-hero-content { white-space: normal; width: 90%; }
  .craft-hero .hero-brand { white-space: normal; }
}

@media (max-width: 900px) {
  .craft-hero-bg { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .craft-closing { padding: 4rem 1.5rem; }
  .craft-step-num { font-size: 4rem; }
}
