/* =============================================================
   HERO
============================================================= */

.prop-hero {
  width: 92%;
  margin: 60px auto 70px;
  text-align: center;
}

.prop-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.prop-hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  color: #181818;
  margin-bottom: 20px;
}

.prop-hero-title em {
  font-style: italic;
  color: #c9923e;
  font-weight: 400;
}

.prop-divider {
  width: 48px;
  height: 3px;
  background: #c9923e;
  border-radius: 2px;
  margin: 0 auto 24px;
}

.prop-hero-desc {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}


/* =============================================================
   GRILLE DE PROPRIÉTÉS
============================================================= */

.prop-section {
  width: 92%;
  margin: 0 auto 100px;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.prop-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: block;
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 146, 62, 0.25);
}

.prop-card-img {
  position: relative;
  overflow: hidden;
}

.prop-card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.prop-card:hover .prop-card-img img {
  transform: scale(1.03);
}

.prop-card-no-img {
  width: 100%;
  height: 320px;
  background: #f0ede6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ccc;
}

.prop-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #c9923e;
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 10px;
}

.prop-card-body {
  padding: 24px 26px 28px;
}

.prop-card-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #c9923e;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.prop-card-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 10px;
}

.prop-card-address {
  font-size: 1.05rem;
  font-weight: 800;
  color: #181818;
  line-height: 1.3;
  margin-bottom: 4px;
}

.prop-card-city {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 16px;
}

.prop-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: #555;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #f0ede6;
}

.prop-card-centris {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 800;
  color: #c9923e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prop-updated {
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 20px;
}


/* =============================================================
   ÉTAT VIDE
============================================================= */

.prop-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 480px;
  margin: 0 auto;
}

.prop-empty-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.prop-empty h2 {
  font-size: 1.8rem;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.prop-empty p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}


/* =============================================================
   CTA
============================================================= */

.prop-cta {
  width: 92%;
  margin: 0 auto 60px;
  padding: 80px 60px;
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(201, 146, 62, 0.24), transparent 40%),
    linear-gradient(135deg, #181818, #2a241c);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.prop-cta-inner {
  max-width: 650px;
  margin: 0 auto;
}

.prop-cta .eyebrow {
  color: #c9923e;
}

.prop-cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.prop-cta-title em {
  font-style: italic;
  color: #c9923e;
  font-weight: 400;
}

.prop-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.prop-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.prop-cta .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.prop-cta .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}


/* =============================================================
   RESPONSIVE — 900px
============================================================= */

@media (max-width: 900px) {
  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prop-cta {
    padding: 55px 30px;
  }
}


/* =============================================================
   RESPONSIVE — 600px
============================================================= */

@media (max-width: 600px) {
  .prop-hero {
    margin: 40px auto 50px;
  }

  .prop-hero-title {
    letter-spacing: -2px;
  }

  .prop-grid {
    grid-template-columns: 1fr;
  }

  .prop-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .prop-cta-btns .btn {
    width: 100%;
    text-align: center;
  }
}