.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.64) 0%,
    rgba(17, 17, 17, 0.48) 28%,
    rgba(17, 17, 17, 0.2) 58%,
    rgba(17, 17, 17, 0.08) 100%
  );
  z-index: 0;
}

.hero .page-container {
  width: 100%;
}

.hero__grid {
  min-height: calc(100vh - 56px);
  align-items: center;
}

.hero-content {
  grid-column: 1 / -1 !important;
  position: relative;
  z-index: 1;
}


.hero .tag {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}


.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #ffffff;
  width: 100% !important;
  max-width: none !important;
}


.hero h1 p {
  margin: 0;
  font: inherit;
  color: inherit;
  display: inline;
}


.hero h1,
.hero h1 p {
  max-width: none;
}

.hero h1 strong,
.hero-title-strong {
  font-weight: 700;
  white-space: normal;
}


.hero .description,
.hero .description p {
  width: 490px;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
}

.hero .description p + p {
  margin-top: 16px;
}

.hero .description strong {
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 56px;
    background-position: center;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero-content {
    grid-column: 1 / -1;
  }

  .hero .tag {
    margin-bottom: 16px;
  }

  .hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 6.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .hero h1 strong,
  .hero-title-strong {
    white-space: normal;
  }

  .hero .description {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero .tag {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3rem);
    line-height: 1;
  }

  .hero .description {
    font-size: 0.98rem;
    line-height: 1.45;
  }
}

@media (max-width: 400px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero .description {
    font-size: 0.96rem;
    line-height: 1.4;
  }
}