/* Immobilier — page-specific styles */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.45;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.6) 60%, rgba(10,22,40,0.8) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--abenex-orange);
  margin-bottom: 1.5rem;
}

.page-hero .page-hero__label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--abenex-orange);
}

.page-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.placeholder-section {
  padding: 8rem 4rem;
  text-align: center;
  background: var(--bg-cream);
  color: var(--text-dark);
}

.placeholder-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.placeholder-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted-dark);
}

@media (max-width: 768px) {
  .page-hero { padding: 6rem 1.5rem 3rem; min-height: 40vh; }
  .placeholder-section { padding: 4rem 1.5rem; }
}
