/* ============================================================
   PAGE — home.css  |  Landing page "en construccion"
   ============================================================ */

.construction {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.construction::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5,8,12,.96) 0%, rgba(5,8,12,.76) 36%, rgba(5,8,12,.26) 72%),
    linear-gradient(180deg, rgba(5,8,12,.14) 0%, rgba(5,8,12,.92) 100%);
}

.construction__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.construction__content {
  align-self: center;
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: 64px 0 116px;
}

.construction__eyebrow {
  max-width: 34rem;
  margin: 0 0 18px;
  color: var(--c-cyan);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.construction h1 {
  max-width: 12rem;
  font-size: var(--text-hero);
  line-height: 0.9;
  text-shadow: 0 24px 48px var(--c-shadow);
}

.construction__lead {
  max-width: 41rem;
  margin: 30px 0 0;
  color: var(--c-ink);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.22;
  text-wrap: balance;
}

.construction__status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 0;
  color: var(--c-muted);
  font-size: var(--text-base);
}

.construction__status::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: var(--r-full);
  background: var(--c-amber);
  box-shadow: 0 0 28px var(--c-amber);
  flex-shrink: 0;
}

.construction__footer {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .construction::before {
    background: linear-gradient(180deg, rgba(5,8,12,.9) 0%, rgba(5,8,12,.72) 54%, rgba(5,8,12,.94) 100%);
  }
  .construction__content {
    width: min(100% - 32px, 520px);
    padding: 56px 0 128px;
  }
  .construction h1,
  .construction__lead { max-width: 100%; }
  .construction__footer {
    right: 16px;
    bottom: 18px;
    left: 16px;
    flex-direction: column;
    gap: 8px;
  }
}
