/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  min-height: 100vh;
  padding: var(--header-height) 4vw 4vw 4vw;
  gap: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

/* ─── Columna imagen — proporción 3:2, anclada abajo ─── */
.hero-image {
  display: flex;
  align-items: flex-end;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}

/* ─── Columna texto — bloque anclado abajo, 3 celdas de margen inferior ─── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 7vw 50%;
}

.hero-text-inner {
  width: 100%;
  max-width: 16.5rem;
  margin-left: auto;
}

/* T1 */
.hero-title {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
}

.hero-line {
  display: block;
}

.hero-line--spread {
  display: flex !important;
  justify-content: space-between;
}

/* T2 */
.hero-link {
  display: block;
  width: 100%;
  text-align: right;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  text-decoration: none;
}

.hero-link:hover {
  color: #0006CF;
}

.hero-link span {
  position: relative;
}

.hero-link span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.hero-link:hover span::after {
  width: 100%;
}

/* ─── Responsive mobile ─── */
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    padding: var(--header-height) 4vw 4vw 4vw;
    gap: 1.5rem;
    align-items: end;
  }

  .hero-text {
    padding-bottom: 12vw;
  }

  .hero-line--spread {
    width: 100%;
  }

  .hero-title {
    font-size: 1.5rem;
  }
}
