/* ============================================================
   SKS Hero — static styles
   Dynamic/per-instance rules (colours, sizes, padding) live
   in the {%- style -%} block inside sections/sks-hero.liquid
   ============================================================ */

/* ── Outer shell ── */
.sks-hero {
  position: relative;
  overflow: hidden;
  display: block;
}

/* ── Background image ── */
.sks-hero__bg {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* ── Dark gradient overlay for text legibility (sits between image and content) ── */
.sks-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Content container — sits on top of image + overlay, vertically centered ── */
.sks-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Eyebrow ── */
.sks-hero__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}

/* ── Heading ── */
.sks-hero__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  margin: 0 0 18px;
}

.sks-hero__heading em {
  font-style: italic;
  font-weight: 400;
}

/* ── Subheading ── */
.sks-hero__subheading {
  line-height: 1.6;
  margin: 0 0 36px;
}

/* ── CTA row ── */
.sks-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Button base ── */
.sks-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  border: 1.5px solid transparent;
  font-family: var(--font-body-family);
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.sks-hero__btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Primary — amber fill */
.sks-hero__btn--primary {
  background: #B8520A;
  color: #fff;
  border-color: #B8520A;
}
.sks-hero__btn--primary:hover {
  background: #D4681A;
  border-color: #D4681A;
  color: #fff;
}

/* Ghost — white outline, for use on dark backgrounds */
.sks-hero__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.sks-hero__btn--ghost:hover {
  background: #fff;
  color: #2C3E50;
  border-color: #fff;
}

/* Outline — amber outline, works on any background */
.sks-hero__btn--outline {
  background: transparent;
  color: #B8520A;
  border-color: #B8520A;
}
.sks-hero__btn--outline:hover {
  background: #B8520A;
  color: #fff;
}

/* ── Responsive ── */
@media screen and (max-width: 960px) {
  .sks-hero__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 749px) {
  .sks-hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sks-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .sks-hero__btn {
    justify-content: center;
  }
}
