/* =========================================================
   Creziva — hero.css
   Full-bleed hero section on Inicio only.
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-navy);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero__scrim-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(16, 26, 46, 0.94) 0%,
    rgba(16, 26, 46, 0.82) 34%,
    rgba(16, 26, 46, 0.30) 66%,
    rgba(16, 26, 46, 0.12) 100%);
}

.hero__scrim-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(16, 26, 46, 0.80) 0%,
    rgba(16, 26, 46, 0.10) 42%,
    rgba(16, 26, 46, 0) 70%);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(64px, 12vh, 120px) clamp(20px, 4vw, 40px) clamp(48px, 8vh, 88px);
}

.hero__inner {
  max-width: min(680px, 100%);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin: 0 0 22px;
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--color-white);
  text-wrap: pretty;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent-light);
}

.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--color-text-ondark);
  margin: 0 0 36px;
  max-width: 32em;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* The hero's own CTAs run slightly larger than the standard .btn sizing,
   and the primary one inverts to white on hover instead of the usual ink. */
.hero__actions .btn {
  padding: 17px 32px;
  font-size: 16.5px;
}

.hero__actions .btn-primary:hover {
  background: var(--color-white);
  color: var(--color-ink);
}

.hero__facts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--color-text-ondark);
  letter-spacing: 0.02em;
}

.hero__facts span:nth-child(even) {
  color: var(--color-accent-light);
}
