/* =========================================================
   NURIA REALTY — CORE LAYOUTS
========================================================= */

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

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

.nr-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.38) 55%,
    rgba(0,0,0,.18) 100%
  );
}

.nr-hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
  color:#fff;
}

.nr-hero-kicker{
  display:inline-block;
  margin-bottom:1.2rem;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
  border-left:2px solid var(--nr-red);
  padding-left:14px;
}

.nr-hero-title{
  font-size:clamp(2.8rem,6vw,5.8rem);
  line-height:1.02;
  letter-spacing:-2px;
  color:#fff;
  margin-bottom:1.4rem;
  max-width:820px;
}

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

/* =========================================================
   INTRO BLOCK
========================================================= */

.nr-intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.nr-intro-title{
  font-size:clamp(2rem,4vw,3.5rem);
  margin-bottom:1.5rem;
}

.nr-intro-text{
  font-size:1.02rem;
  color:#666;
  line-height:1.9;
}

.nr-intro-image{
  overflow:hidden;
}

.nr-intro-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================================================
   REPRESENTATION BLOCKS
========================================================= */

.nr-representation-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.nr-representation-card{
  position:relative;
  overflow:hidden;
  background:#f8f8f8;
}

.nr-representation-card img{
  width:100%;
  height:520px;
  object-fit:cover;
}

.nr-representation-overlay{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:34px;
  background:linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,.82) 100%
  );
}

.nr-representation-overlay h3{
  color:#fff;
  margin-bottom:12px;
  font-size:1.5rem;
}

.nr-representation-overlay p{
  color:rgba(255,255,255,.84);
  margin:0;
}

/* =========================================================
   MARKET SECTION
========================================================= */

.nr-market-card{
  padding:42px;
  border:1px solid var(--nr-border);
  height:100%;
  background:#fff;
  transition:all .25s ease;
}

.nr-market-card:hover{
  border-color:var(--nr-red);
  transform:translateY(-4px);
}

.nr-market-card h3{
  font-size:1.4rem;
  margin-bottom:1rem;
}

.nr-market-card p{
  color:#666;
  margin-bottom:0;
}

/* =========================================================
   INSIGHTS PREVIEW
========================================================= */

.nr-insights-card{
  border-top:2px solid var(--nr-red);
  padding-top:24px;
}

.nr-insights-meta{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:#999;
  margin-bottom:1rem;
}

.nr-insights-title{
  font-size:1.7rem;
  margin-bottom:1rem;
}

.nr-insights-text{
  color:#666;
  line-height:1.9;
}

.nr-insights-wall{
  margin-top:2rem;
  padding:30px;
  background:var(--nr-light);
  border-left:2px solid var(--nr-red);
}

.nr-insights-wall h5{
  margin-bottom:12px;
}

.nr-insights-wall p{
  margin-bottom:20px;
  color:#666;
}

/* =========================================================
   CTA SECTION
========================================================= */

.nr-cta{
  background:#121212;
  color:#fff;
}

.nr-cta-title{
  color:#fff;
  font-size:clamp(2rem,4vw,3.6rem);
  margin-bottom:1.5rem;
}

.nr-cta-text{
  color:rgba(255,255,255,.82);
  max-width:760px;
  margin:0 auto 2rem;
}

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

@media (max-width:991px){

  .nr-intro-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .nr-representation-grid{
    grid-template-columns:1fr;
  }

  .nr-representation-card img{
    height:420px;
  }

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

@media (max-width:767px){

  .nr-section{
    padding:80px 0;
  }

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

  .nr-representation-overlay{
    padding:24px;
  }

  .nr-market-card{
    padding:32px;
  }
}