/* =========================================================
   NURIA REALTY — HERO SYSTEM
========================================================= */

/* =========================================================
   GLOBAL HERO
========================================================= */

.nr-hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Overlay */
.nr-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.45) 48%,
      rgba(0,0,0,.16) 100%
    );
  z-index:1;
}

/* Content */
.nr-hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
}

/* Kicker */
.nr-hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:1.4rem;
  font-size:.78rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
}

.nr-hero-kicker::before{
  content:'';
  width:38px;
  height:1px;
  background:var(--nr-red);
}

/* Title */
.nr-hero-title{
  font-size:clamp(3rem,7vw,6.2rem);
  line-height:1;
  letter-spacing:-2.8px;
  color:#fff;
  margin-bottom:1.5rem;
  max-width:850px;
}

/* Text */
.nr-hero-text{
  font-size:1.08rem;
  line-height:1.95;
  color:rgba(255,255,255,.88);
  max-width:650px;
  margin-bottom:2rem;
}

/* =========================================================
   INNER HERO
========================================================= */

.nr-page-hero{
  position:relative;
  padding:180px 0 120px;
  background:#111;
  overflow:hidden;
}

.nr-page-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      135deg,
      rgba(194,29,29,.14),
      transparent 60%
    );
}

.nr-page-hero-content{
  position:relative;
  z-index:2;
  max-width:820px;
}

.nr-page-title{
  color:#fff;
  font-size:clamp(2.8rem,6vw,5rem);
  line-height:1.02;
  letter-spacing:-2px;
  margin-bottom:1.3rem;
}

.nr-page-text{
  color:rgba(255,255,255,.8);
  font-size:1.05rem;
  line-height:1.9;
  max-width:700px;
}

/* =========================================================
   HERO MINIMAL
========================================================= */

.nr-hero-minimal{
  padding:160px 0 90px;
  background:#fff;
}

.nr-hero-minimal .nr-page-title{
  color:var(--nr-dark);
}

.nr-hero-minimal .nr-page-text{
  color:#666;
}

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

@media (max-width:991px){

  .nr-hero{
    min-height:78vh;
  }

  .nr-page-hero{
    padding:160px 0 90px;
  }
}

@media (max-width:767px){

  .nr-hero-title{
    letter-spacing:-1.5px;
  }

  .nr-page-title{
    letter-spacing:-1.3px;
  }

  .nr-hero-text,
  .nr-page-text{
    font-size:1rem;
  }

  .nr-page-hero{
    padding:140px 0 80px;
  }
}