/* About — Page hero. Scoped to .hk-hero; reuses theme fonts (FreightBig Pro / Now). */
.hk-hero {
  --hk-font-headline: "FreightBig Pro", Georgia, "Times New Roman", serif;
  --hk-font-body:
    "Now", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.hk-hero *,
.hk-hero *::before,
.hk-hero *::after {
  box-sizing: border-box;
}
/* base .hk-hero rules the page-hero reuses */
.hk-hero {
  position: relative;
  min-height: clamp(600px, 46vw, 790px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #14110c center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 28, 0.74) 0%,
    rgba(7, 20, 28, 0.4) 42%,
    rgba(7, 20, 28, 0) 72%
  );
}
.hk-hero__vline {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(44px, 5vw, 78px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(9, 51, 74, 0.2);
  opacity: 0.65;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 4;
  pointer-events: none;
  display: none;
}
.hk-hero__scroll {
  position: absolute;
  left: clamp(16px, 2vw, 33px);
  bottom: 23px;
  z-index: 5;
  color: #fff;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.hk-hero__scroll:hover {
  opacity: 0.7;
  transform: translateY(3px);
}
.hk-hero__scroll svg {
  width: 13px;
  height: 28px;
  display: block;
}
.hk-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 1640px;
  margin-inline: auto;
  width: 100%;
  padding: clamp(40px, 6vw, 90px) clamp(16px, 4vw, 64px);
  margin-top: auto;
}
.hk-hero__content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hk-hero__title {
  font-family: var(--hk-font-headline);
  font-weight: 400;
  font-size: clamp(46px, 6.6vw, 95px);
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.hk-hero__reviews {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  filter: invert(1);
}
.hk-hero__usps {
  position: relative;
  z-index: 2;
  background: rgba(7, 20, 28, 0.55);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hk-hero__usps-wrap {
  max-width: 1295px;
  margin-inline: auto;
  padding: 22px clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.hk-usp {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--hk-font-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #edeae3;
}
.hk-usp svg {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
.hk-usp__icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  object-fit: contain;
}
.hk-usp b,
.hk-usp strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 760px) {
  .hk-hero__usps-wrap {
    justify-content: flex-start;
  }
}

/* page-hero specific (heading/lede/full-height/video) */
.hk-hero--page {
  min-height: clamp(460px, 44vw, 600px);
  background-color: #0a2a3a;
}
.hk-hero--page .hk-hero__content {
  gap: 30px;
}
.hk-hero--page .hk-hero__title {
  font-size: clamp(34px, 5vw, 61px);
  line-height: 1.1;
}
.hk-hero--page .hk-hero__lede {
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 25px;
  line-height: 32px;
  color: #fff;
  margin: 0;
}
.hk-hero--page .hk-hero__lede b,
.hk-hero--page .hk-hero__lede strong {
  font-weight: 600;
}
.hk-hero.hk-hero--full {
  min-height: calc(100vh - 211px);
  justify-content: center;
}
.hk-hero.hk-hero--full .hk-hero__wrap {
  margin-top: auto;
  margin-bottom: auto;
}
.hk-hero.hk-hero--full .hk-hero__usps {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.hk-hero__wrap--split {
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  justify-content: space-between;
}
.hk-hero__wrap--split .hk-hero__content {
  flex: 1 1 0;
  max-width: 555px;
}
.hk-hero__video {
  position: relative;
  flex: 0 0 clamp(300px, 44%, 563px);
  max-width: 563px;
  aspect-ratio: 563/316;
  border-radius: 3px;
  overflow: hidden;
  display: block;
}
.hk-hero__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hk-hero__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.12);
}
.hk-hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #09334a;
  font-family: var(--hk-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 20px;
  border-radius: 100px;
}
.hk-hero__vcap {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--hk-font-body);
  font-weight: 400;
  font-size: 25px;
  line-height: 32px;
  color: #fff;
}
@media (max-width: 1199px) {
  .hk-hero__scroll {
    display: none;
  }
}
@media (max-width: 860px) {
  .hk-hero__wrap--split {
    flex-direction: column;
    align-items: stretch;
  }
  .hk-hero__wrap--split .hk-hero__content {
    max-width: none;
  }
  .hk-hero__video {
    flex-basis: auto;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hk-hero__vline {
    display: none;
  }
  .hk-hero__usps-wrap.slick-initialized {
    display: block;
  }
  .hk-hero__usps-wrap .slick-dots {
    position: static;
    margin: 14px 0 0;
    line-height: 0;
  }
  .hk-hero__usps-wrap .slick-dots li button:before {
    color: #fff;
    opacity: 0.45;
  }
  .hk-hero__usps-wrap .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
  }
  .hk-usp.slick-slide {
    display: flex !important;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .hk-hero--page .hk-hero__lede {
    font-size: 18px;
    line-height: 26px;
  }
  .hk-hero__vcap {
    font-size: 20px;
    line-height: 28px;
  }
}
