/* ── Home Hero ─────────────────────────────────────────── */
.hc-hero {
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--hc-black);
  -webkit-overflow-scrolling: touch;
}
.hc-hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hc-hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.6) 0%,
    rgba(13, 13, 13, 0.8) 100%
  );
}
.hc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}
.hc-hero__tagline {
  display: inline-block;
  font-family: var(--hc-font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hc-orange);
  margin-bottom: 16px;
  font-weight: 600;
}
.hc-hero__title {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--hc-white);
}
.hc-hero__subtitle {
  font-size: 1.2rem;
  color: var(--hc-text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hc-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Inner Page Hero ──────────────────────────────────── */
.hc-inner-hero {
  position: relative;
  padding: 80px 0 60px;
  background-color: var(--hc-charcoal);
  border-bottom: 3px solid var(--hc-orange);
}
.hc-inner-hero__content {
  position: relative;
  z-index: 2;
}
.hc-inner-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.hc-inner-hero p {
  color: var(--hc-text-muted);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hc-hero {
    min-height: 85vh;
    min-height: -webkit-fill-available;
    min-height: 85dvh;
  }
  .hc-hero__title {
    font-size: 2.5rem;
  }
  .hc-hero__subtitle {
    font-size: 1rem;
  }
  .hc-inner-hero {
    padding: 60px 0 40px;
  }
  .hc-inner-hero h1 {
    font-size: 1.8rem;
  }
}
