/* ==========================================================================
   Elysian Estates — Property Single Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Property Hero Gallery
   -------------------------------------------------------------------------- */
.property-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
}

.property-hero__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
}

.property-hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
}
.property-hero__image--main { grid-row: span 2; }

.property-hero__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--ee-space-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
}
.property-hero__location {
  font-family: var(--ee-font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-bottom: var(--ee-space-xs);
}
.property-hero__title { font-size: clamp(2rem, 4vw, 3rem); color: #ffffff; }

.property-hero__view-gallery {
  position: absolute;
  bottom: var(--ee-space-lg);
  right: var(--ee-space-lg);
}

/* --------------------------------------------------------------------------
   Property Stats Bar
   -------------------------------------------------------------------------- */
.property-stats {
  display: flex;
  justify-content: center;
  gap: var(--ee-space-xl);
  padding: var(--ee-space-lg) 0;
  border-bottom: 1px solid var(--ee-border-light);
  background: var(--ee-surface);
}
.property-stat { text-align: center; }
.property-stat__value { font-size: 1.75rem; color: var(--ee-primary); margin-bottom: var(--ee-space-xs); }
.property-stat__label {
  font-family: var(--ee-font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ee-text-muted);
}

/* --------------------------------------------------------------------------
   Property Content Layout
   -------------------------------------------------------------------------- */
.property-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--ee-space-2xl);
  padding: var(--ee-space-xl) 0;
}
.property-main { max-width: 800px; }

.property-section { margin-bottom: var(--ee-space-xl); }
.property-section__title {
  font-size: 1.5rem;
  margin-bottom: var(--ee-space-md);
  padding-bottom: var(--ee-space-sm);
  border-bottom: 1px solid var(--ee-border-light);
}
.property-section__text { color: var(--ee-text-light); line-height: 1.8; }

/* --------------------------------------------------------------------------
   Highlights / Facilities List
   -------------------------------------------------------------------------- */
.highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ee-space-sm);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--ee-space-sm);
  font-size: 0.9375rem;
  color: var(--ee-text-light);
}
.highlight-item__icon { width: 20px; height: 20px; color: var(--ee-primary); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Enquiry Sidebar
   -------------------------------------------------------------------------- */
.property-sidebar {
  position: sticky;
  top: calc(var(--ee-header-height) + var(--ee-space-lg));
}
.enquiry-card {
  background: var(--ee-surface);
  border: 1px solid var(--ee-border);
  border-radius: 8px;
  padding: var(--ee-space-lg);
  box-shadow: var(--ee-shadow-sm);
}
.enquiry-card__title  { font-size: 1.25rem; margin-bottom: var(--ee-space-sm); }
.enquiry-card__text   { font-size: 0.875rem; color: var(--ee-text-light); margin-bottom: var(--ee-space-md); }
.enquiry-card__btn    { width: 100%; margin-bottom: var(--ee-space-sm); }
.enquiry-card__phone  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ee-space-xs);
  font-family: var(--ee-font-secondary);
  font-size: 1.125rem;
  color: var(--ee-text);
  margin-top: var(--ee-space-md);
}

/* --------------------------------------------------------------------------
   Location Section
   -------------------------------------------------------------------------- */
.location-section { background: var(--ee-bg-alt); }
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ee-space-xl);
  align-items: center;
}
.location-map {
  aspect-ratio: 16/10;
  background: var(--ee-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ee-text-muted);
}

/* --------------------------------------------------------------------------
   Downloads List (Corporate)
   -------------------------------------------------------------------------- */
.ee-downloads-list { display: flex; flex-direction: column; gap: var(--ee-space-sm); }
.ee-downloads-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ee-font-secondary);
  font-size: 0.875rem;
  color: var(--ee-primary);
  border: 1px solid var(--ee-border);
  border-radius: 3px;
  padding: 0.75rem 1.25rem;
  transition: all var(--ee-transition-fast);
}
.ee-downloads-list li a:hover {
  background: var(--ee-primary);
  color: #ffffff;
  border-color: var(--ee-primary);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .property-content {
    grid-template-columns: 1fr;
  }
  .property-sidebar { position: static; }
  .location-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .property-hero__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .property-hero__image--main { grid-row: span 1; }
  .property-hero__image:not(.property-hero__image--main) { display: none; }
  .property-stats { flex-wrap: wrap; gap: var(--ee-space-md); }
  .highlights-list { grid-template-columns: 1fr; }
}
