/* ───── KARAFT hero (Prestige Allure clone) ─────
   Light editorial image with a thin bordered box (dark text by default)
   sitting left-of-centre, holding eyebrow + headline + outline CTA. */

.kf-hero {
  position: relative;
  height: var(--hero-height, 92vh);
  min-height: 560px;
  display: flex;
  overflow: hidden;
}
.kf-hero__media { position: absolute; inset: 0; z-index: 0; }
.kf-hero__img { width: 100%; height: 100%; object-fit: cover; }
.kf-hero__img--placeholder { background: linear-gradient(135deg, #e7e2da, #d3cabd); }
.kf-hero__scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, var(--scrim, 0)); }

.kf-hero__box {
  position: relative;
  z-index: 1;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  padding: 54px 60px;
  max-width: 460px;
}
.kf-hero__box--left  { margin-left: clamp(24px, 7vw, 120px); margin-right: auto; }
.kf-hero__box--right { margin-right: clamp(24px, 7vw, 120px); margin-left: auto; }

/* Dark text on a light image (Prestige default) */
.kf-hero__box--dark { color: var(--color-text); }
.kf-hero__box--dark .kf-hero__eyebrow,
.kf-hero__box--dark .kf-hero__heading { color: var(--color-text); }
.kf-hero__box--dark .kf-hero__cta {
  border-color: var(--color-text);
  color: var(--color-text);
  background: transparent;
}
.kf-hero__box--dark .kf-hero__cta:hover { background: var(--color-text); color: var(--color-surface); }

/* Light text on a dark image */
.kf-hero__box--light { color: #fff; }
.kf-hero__box--light .kf-hero__eyebrow,
.kf-hero__box--light .kf-hero__heading { color: #fff; }
.kf-hero__box--light .kf-hero__cta {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}
.kf-hero__box--light .kf-hero__cta:hover { background: #fff; color: var(--color-text); }

.kf-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
}
.kf-hero__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
.kf-hero__cta { margin-top: 6px; }

@media (max-width: 600px) {
  .kf-hero { min-height: 460px; }
  .kf-hero__box { padding: 38px 26px; max-width: calc(100% - 40px); gap: 20px; }
  .kf-hero__box--left, .kf-hero__box--right { margin-left: auto; margin-right: auto; }
}
