/* ---------- Hero (image background) ---------- */
.kspl-hero{
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  text-align: left;
  overflow: hidden;
}
.kspl-hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--kspl-black);
}
.kspl-hero__image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}
.kspl-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,11,9,0.55) 0%, rgba(13,11,9,0.25) 45%, rgba(13,11,9,0) 65%);
}

/* ----- Content block ----- */
.kspl-hero__content{
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
}

.kspl-hero__eyebrow{
  position: relative;
  display: block;
  margin-bottom: 14px;
  padding-top: 20px;
  color: var(--kspl-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.kspl-hero__eyebrow::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--kspl-gold, #c9963e);
}

.kspl-hero__title{
  margin: 0 0 18px;
  color: var(--kspl-white);
  font-weight: 800;
  line-height: 1.1;
}
.kspl-hero__title-line{
  display: block;
  font-size: clamp(20px, 3.6vw, 44px);
}
.kspl-hero__title-line:first-child{
  font-size: clamp(24px, 4.4vw, 54px);
}
.kspl-hero__title-accent{
  color: var(--kspl-gold-light, #f4c04a);
}

.kspl-hero__subtitle{
  max-width: 560px;
  margin: 0 0 32px;
  color: #e3ddd0;
  font-size: 14px;
  line-height: 1.65;
}

.kspl-hero__actions{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: nowrap;
}
.kspl-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 12px!important;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .2s ease;
}
.kspl-btn--primary{
  background: var(--kspl-gold-light, #f4c04a);
  color: #1a1408;
  border: 1.5px solid var(--kspl-gold-light, #f4c04a);
}
.kspl-btn--primary:hover{
  background: transparent;
  color: var(--kspl-gold-light, #f4c04a);
}
.kspl-btn--ghost{
  background: transparent;
  color: var(--kspl-white);
  border: 1.5px solid rgba(245,242,236,0.6);
}
.kspl-btn--ghost:hover{
  border-color: var(--kspl-white);
  background: rgba(245,242,236,0.08);
}

/* ----- Top-right vertical tagline ----- */
.kspl-hero__tagline{
  position: absolute;
  top: 40px;
  right: 24px;
  z-index: 1;
  padding-left: 16px;
  border-left: 2px solid var(--kspl-gold, #c9963e);
  text-align: left;
}
.kspl-hero__tagline span{
  display: block;
  color: var(--kspl-white);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.6;
}

@media (max-width: 700px){
  .kspl-hero__image{ height: 480px; }
  .kspl-hero{ min-height: 480px; padding: 40px 0; }
  .kspl-hero__overlay{
    background: linear-gradient(180deg, rgba(13,11,9,0.35) 0%, rgba(13,11,9,0.75) 70%);
  }
  .kspl-hero__tagline{ display: none; }
}