/* ——— COMPANY HERO ——— */
.chero {
  background: var(--black);
  padding: 0;
  width: 100%;
}

.chero__card {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.chero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.cnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem clamp(1.5rem, 4vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  animation: fadeDown 0.7s ease both;
}

.cnav .nav__links {
  color: rgba(255, 255, 255, 0.85);
}

.cnav .nav__links a.is-active {
  color: var(--red-soft) !important;
}

.chero__content {
  margin-top: auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) 5.5rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  animation: fadeUp 0.8s 0.15s ease both;
}

.chero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.85rem;
}

.chero__content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (max-width: 640px) {
  .chero__card {
    min-height: 520px;
    border-radius: 1.75rem;
  }

  .cnav .btn--sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.75rem;
  }
}
