/* ──────────────────────────────────────────────
   Mants — Hero Banner (Block 2)
   ────────────────────────────────────────────── */

.hero {
  width: 100%;
  height: 85vh;
  min-height: 600px;
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242,238,229,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: var(--page-pad-x);
}

.hero__eyebrow {
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero__desc {
  font-size: 18px;
  line-height: 1.55;
  max-width: 460px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero__desc p {
  margin: 0;
}

.hero__price {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 36px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
}

/* ── Entry animations ───────────────────────── */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow,
.hero__title,
.hero__desc,
.hero__price,
.hero__cta {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(.2,.7,.3,1) forwards;
}

.hero__eyebrow   { animation-delay: 0.1s; }
.hero__title      { animation-delay: 0.25s; }
.hero__desc       { animation-delay: 0.4s; }
.hero__price      { animation-delay: 0.55s; }
.hero__cta        { animation-delay: 0.7s; }

/* ── Responsive ─────────────────────────────── */

@media (max-width: 991px) { /* lg and down */
  .hero {
    align-items: center;
    height: calc(100dvh - 40px); /* мінус висота топ-бару */
    background-image: url('../images/banner-mobile.png');
  }

  .hero__content {
    padding: 24px;
    max-width: 100%;
    text-align: center;
    color: var(--on-brand);
  }

  .hero__title {
    font-size: clamp(32px, 9vw, 48px);
    color: var(--on-brand);
  }

  .hero__desc {
    color: var(--on-brand);
  }

  .hero__gradient {
    background: rgba(0,0,0,0.5);
  }
}

@media (max-width: 575px) { /* sm and down */
  .hero__eyebrow {
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__price {
    font-size: 26px;
    margin-bottom: 28px;
  }
}
