* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 2rem 1rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.header h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #333;
}

/* Hero Slideshow */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 3rem 2rem 2rem;
  color: #fff;
}

.hero-overlay h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.hero-overlay .location {
  font-size: 1rem;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

/* Quick facts bar */
.quick-facts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 1rem;
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.quick-facts .fact {
  font-size: 0.95rem;
  color: #444;
}

.quick-facts .fact strong {
  color: #1a1a1a;
}

/* Content container */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section spacing */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}

.section:last-child {
  border-bottom: none;
}

.section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

/* Description */
.description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

/* Details grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.detail-item {
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 6px;
}

.detail-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.25rem;
}

.detail-item .value {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
}

/* Neighborhood list */
.neighborhood-list {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.neighborhood-list li + li {
  margin-top: 0.5rem;
}

/* Qualifications list */
.qualifications-list {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.qualifications-list li + li {
  margin-top: 0.5rem;
}

/* Floor plan */
.floor-plan-label {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.floor-plan {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}

.floor-plan img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.gallery-grid img:hover {
  opacity: 0.85;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Contact */
.contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.contact-item a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.contact-item a:hover {
  border-color: #1a1a1a;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  padding: 1.5rem 0;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }

  .hero-overlay h2 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts {
    gap: 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    gap: 0.75rem 1.25rem;
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
  }
}
