.nh-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--nh-sage-tint);
  color: var(--nh-sage);
  font-size: 1.3rem;
  font-weight: 800;
  padding: 0.7rem 1.5rem;
  border-radius: var(--nh-radius-pill);
  margin-bottom: 2rem;
}

.nh-hero__title {
  font-size: 5.4rem;
  font-weight: 900;
  margin: 0 0 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.nh-hero__title span {
  color: var(--nh-amber);
}

.nh-hero__lead {
  margin: 0 0 3rem;
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--nh-body);
  font-weight: 500;
  max-width: 44rem;
}

.nh-hero__cta-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nh-hero__cta {
  height: 5.6rem;
  padding: 0 3.4rem;
  border: none;
  border-radius: var(--nh-radius-md);
  background: var(--nh-amber);
  color: var(--nh-white);
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--nh-shadow-amber);
  transition:
    transform 0.12s,
    box-shadow 0.2s;
  text-decoration: none;
}

.nh-hero__cta:hover {
  box-shadow: var(--nh-shadow-amber-hover);
  transform: translateY(-1px);
  color: var(--nh-white);
}

.nh-hero__cta--ghost {
  background: var(--nh-white);
  color: var(--nh-charcoal);
  border: 1.5px solid var(--nh-border-2);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 2.8rem;
  box-shadow: none;
}

.nh-hero__cta--ghost:hover {
  background: #f4ecdd;
  transform: none;
  box-shadow: none;
  color: var(--nh-charcoal);
}

.nh-hero__stats {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 3.4rem;
  flex-wrap: wrap;
}

.nh-hero__stat {
  display: flex;
  flex-direction: column;
}

.nh-hero__stat b {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--nh-charcoal);
}

.nh-hero__stat small {
  font-size: 1.25rem;
  color: var(--nh-muted);
  font-weight: 600;
}

.nh-hero__div {
  width: 1px;
  height: 3.4rem;
  background: var(--nh-border-2);
}

.nh-hero__art {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 42rem;
}

.nh-hero__art svg {
  width: 120%;
  max-width: 56rem;
}

.nh-hero__image {
  width: 100%;
  height: auto;
  max-width: 56rem;
  border-radius: var(--nh-radius-xl);
  object-fit: cover;
}

@keyframes nh-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}

.nh-hero__float--1 {
  animation: nh-hero-float 7s ease-in-out infinite;
}

.nh-hero__float--2 {
  animation: nh-hero-float 8s ease-in-out 0.8s infinite;
}

.nh-hero__float--3 {
  animation: nh-hero-float 6.4s ease-in-out 0.4s infinite;
}

@media screen and (max-width: 820px) {
  .nh-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nh-hero__title {
    font-size: 3.8rem;
  }

  .nh-hero__art {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nh-hero__float--1,
  .nh-hero__float--2,
  .nh-hero__float--3 {
    animation: none;
  }
}
