.hero-bg--floor-plan {
  background-image: url("../images/banner-image.jpg");
}

.floor-plan-head {
  max-width: 760px;
  margin: 0 auto 28px;
}

.floor-plan-kicker {
  margin: 0 0 10px;
  color: #1aa6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floor-plan-head h2 {
  margin: 0 0 14px;
  color: #0d1b2a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.floor-plan-head p {
  margin: 0;
  color: #4c5a70;
  font-size: 16px;
  line-height: 1.7;
}

.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.floor-plan-card {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 20px 54px rgba(16, 24, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floor-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(16, 24, 40, 0.14);
}

.floor-plan-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .floor-plan-grid {
    grid-template-columns: 1fr;
  }
}
