/* ============================================================
   SKS Collection Hero — 400px slate banner with overlay image
   Mirrors ui/collection/collection.html `.coll-hero`
   ============================================================ */

.sks-chero {
  position: relative;
  /* min-height (not height) so a long collection description can grow the
     section instead of being clipped. The flex column centers short
     content within the configured minimum. */
  min-height: var(--sks-chero-h, 400px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--sks-chero-bg, #2C3E50);
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
}

.sks-chero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--sks-chero-img-opacity, 0.62);
  z-index: 0;
}

.sks-chero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertical padding gives long copy breathing room from the section's
     top/bottom edges; horizontal padding unchanged. */
  padding: 56px 48px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  box-sizing: border-box;
}

.sks-chero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sks-chero-eyebrow, #E8C9A8);
  margin: 0 0 14px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.sks-chero__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  font-weight: 600;
  margin: 0 0 18px;
  max-width: 640px;
  letter-spacing: -0.01em;
}

.sks-chero__title em {
  font-style: italic;
  color: var(--sks-chero-eyebrow, #E8C9A8);
  font-weight: 400;
}

.sks-chero__sub {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.7);
  margin: 0 0 28px;
  max-width: 540px;
  line-height: 1.55;
  font-weight: 300;
    text-align: justify;
}

.sks-chero__sub p {
  margin: 0 0 10px;
}

.sks-chero__sub p:last-child {
  margin-bottom: 0;
}

.sks-chero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sks-chero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: background .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent;
  line-height: 1;
}

.sks-chero__btn--primary {
  background: #B8520A;
  color: #fff;
  border-color: #B8520A;
}

.sks-chero__btn--primary:hover {
  background: #D4681A;
  border-color: #D4681A;
  color: #fff;
}

.sks-chero__btn--secondary {
  background: #D4681A;
  color: #fff;
  border-color: #D4681A;
}

.sks-chero__btn--secondary:hover {
  background: #B8520A;
  border-color: #B8520A;
  color: #fff;
}

.sks-chero__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.sks-chero__btn--ghost:hover {
  background: #fff;
  color: #2C3E50;
  border-color: #fff;
}

.sks-chero__btn svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media screen and (max-width: 960px) {
  .sks-chero {
    min-height: var(--sks-chero-h-mobile, 320px);
  }
  .sks-chero__content {
    /* Vertical padding gives the title/copy breathing room from the top
       and bottom edges of the hero band; without it the heading sits
       flush against the page top on mobile. */
    padding: 44px 24px;
  }
  .sks-chero__title {
    font-size: 36px;
  }
  .sks-chero__sub {
    font-size: 15px;
  }
}

@media screen and (max-width: 749px) {
  .sks-chero {
    min-height: var(--sks-chero-h-mobile, 280px);
  }
  .sks-chero__content {
    padding: 36px 16px;
  }
  .sks-chero__title {
    font-size: 28px;
  }
  .sks-chero__sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .sks-chero__btn {
    padding: 11px 18px;
    font-size: 13px;
  }
}
