/* ═══════════════════════════════════════════════
   STEP-INTO.CSS — warm sandy background
═══════════════════════════════════════════════ */

.step-into {
  background: #ede5d8;
  padding: var(--section-v) var(--section-h);
}

.step-into__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Section intro ── */
.step-into__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.step-into__header .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.step-into__header h2 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: #2c1a0e;
  line-height: 1.25;
  margin: 0 0 14px;
}
.step-into__header p {
  font-family: var(--f-elegant);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #6b5240;
  line-height: 1.65;
  margin: 0;
}
.br-desk {
  display: block;
}

/* ── Single block ── */
.step-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 72px;
}
.step-block:last-of-type {
  margin-bottom: 0;
}

.step-block--text-left .step-block__media {
  order: 2;
}
.step-block--text-left .step-block__text {
  order: 1;
}

/* ── Image ── */
.step-block__media {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}
.step-block__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 6px;
  transition: transform 0.6s ease;
  filter: sepia(6%) saturate(95%) brightness(0.97);
}
.step-block:hover .step-block__img {
  transform: scale(1.02);
  filter: none;
}

/* ── Text ── */
.step-block__text {
  padding: 8px 0;
}

.step-block__eyebrow {
  color: #a8865a;
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.step-block__text h3 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #2c1a0e;
  line-height: 1.15;
  margin: 0 0 16px;
}
.step-block__text h3 em {
  font-style: italic;
  font-weight: 400;
  color: #8c6235;
}

.step-block__text p {
  font-family: var(--f-elegant);
  font-size: 1rem;
  color: #6b5240;
  line-height: 1.82;
  margin: 0 0 12px;
}
.step-block__text p:last-child {
  margin-bottom: 0;
}

.step-block__closing {
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(168, 134, 90, 0.3);
  font-family: var(--f-display) !important;
  font-style: italic !important;
  font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
  line-height: 1.5 !important;
  color: #2c1a0e !important;
}

/* ── CTA ── */
.step-into__cta {
  margin-top: 56px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .step-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }
  .step-block--text-left .step-block__media {
    order: 0;
  }
  .step-block--text-left .step-block__text {
    order: 1;
  }
  .step-block__img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .step-into {
    padding: 60px 20px;
  }
  .step-into__header {
    margin-bottom: 40px;
  }
  .br-desk {
    display: inline;
  }
}
