:root {
  --bp-sage: #78866b;
  --bp-sage-hover: #657058;
  --bp-cream: #f2e8d5;
  --bp-serif: 'Nunito Sans', sans-serif;
}

.neighborhood-hero {
  min-height: 54vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(242, 232, 213, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 80% 72%, rgba(242, 232, 213, 0.14) 0%, transparent 38%),
    linear-gradient(130deg, #4b5843 0%, #67745c 52%, #8a967b 100%);
}

.neighborhood-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.34));
}

.neighborhood-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.neighborhood-kicker {
  display: inline-block;
  color: var(--bp-cream);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.neighborhood-hero h1 {
  color: #fff;
  font-family: var(--bp-serif);
  font-size: clamp(2.25rem, 5.8vw, 3.75rem);
  text-align: center;
  margin-bottom: 0.85rem;
}

.neighborhood-hero p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
  font-size: 1.02rem;
  max-width: 720px;
}

.neighborhood-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f6f5f2 0%, #ffffff 100%);
}

.neighborhood-intro {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 2.25rem;
}

.neighborhood-intro h2 {
  font-family: var(--bp-serif);
  color: var(--bp-sage);
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.7rem;
}

.neighborhood-intro p {
  color: #546151;
  margin: 0;
  line-height: 1.75;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }
}

.neighborhood-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 100%;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--bp-sage) 15%, transparent);
  box-shadow: 0 12px 30px rgba(101, 112, 88, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.neighborhood-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.neighborhood-card:hover img {
  transform: scale(1.05);
}

.neighborhood-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(101, 112, 88, 0.15);
}

.neighborhood-card .content {
  padding: 1rem 1.15rem 1.2rem;
}

.neighborhood-card h3 {
  font-family: var(--bp-serif);
  color: var(--bp-sage-hover);
  font-size: 1.58rem;
  margin: 0 0 0.35rem;
}

.neighborhood-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #596554;
  line-height: 1.65;
}

.neighborhood-highlights {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 991px) {
  .neighborhood-highlights {
    grid-template-columns: 1fr;
  }
}

.neighborhood-highlights article {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--bp-sage) 16%, transparent);
  border-radius: 14px;
  padding: 1.1rem;
}

.neighborhood-highlights i {
  color: var(--bp-sage-hover);
  font-size: 1.2rem;
}

.neighborhood-highlights h4 {
  margin: 0.5rem 0 0.35rem;
  color: var(--bp-sage-hover);
  font-size: 1.02rem;
  font-weight: 700;
}

.neighborhood-highlights p {
  margin: 0;
  color: #5d6a58;
  line-height: 1.65;
  font-size: 0.9rem;
}
