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

body {
  font-family: 'DM Sans', sans-serif;
  color: #555555;
  background: #fff;
}

/* ── Navigation ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  color: #555555;
  font-weight: 400;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* ── Hero ── */
.hero {
  padding: 60px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Crimson Text', serif;
  color: #133E61;
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-image-wrap {
  border: 8px solid #1a2a3a;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-text h2 {
  font-family: 'Crimson Text', serif;
  color: #133E61;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 13px;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 16px;
}

/* ── The Space ── */
.space-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Crimson Text', serif;
  color: #133E61;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  line-height: 0;
}

.carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dots button.active {
  background: #fff;
}

/* ── The Neighborhood ── */
.neighborhood-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.neighborhood-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.neighborhood-title {
  font-family: 'Crimson Text', serif;
  color: #133E61;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

.neighborhood-text p {
  font-size: 13px;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 16px;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.neighborhood-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ── Learn More ── */
.learn-more {
  padding: 100px 48px;
  text-align: center;
}

.learn-more h2 {
  font-family: 'Crimson Text', serif;
  color: #133E61;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
}

.learn-more p {
  font-size: 14px;
  color: #555555;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.btn-contact {
  display: inline-block;
  background: #2d5a55;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: #1e3e3b;
}

/* ── Footer ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-top: 1px solid #eee;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #888;
}

.footer-logo {
  background: #1a2a3a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.footer-right {
  font-size: 11px;
  color: #888;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero, .space-section, .neighborhood-section { padding: 48px 24px; }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap img { height: 320px; }

  .space-images {
    grid-template-columns: 1fr;
  }

  .neighborhood-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer { padding: 20px 24px; }
}
