
/* Guide plan pop-ups on Plan & design */
.guide-floor-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .guide-floor-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.guide-floor-gallery__item {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(196, 202, 210, 0.85);
  border-radius: 0.4rem;
  overflow: hidden;
}
.guide-floor-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  background: #F8F9FB;
}
.guide-floor-gallery__item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted, #5A6066);
  border-top: 1px solid rgba(196, 202, 210, 0.75);
}

.guide-sun-callout {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 0.4rem;
  background: #F8F9FB;
  border: 1px solid rgba(196, 202, 210, 0.9);
}
.guide-sun-callout__badge {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(244, 184, 0, 0.2);
  color: #F4B800;
  font-size: 1.1rem;
  line-height: 1;
}
.guide-sun-callout__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.guide-sun-callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted, #5A6066);
}

.guide-3d-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  border-radius: 0.4rem;
  overflow: hidden;
  border: 1px solid rgba(196, 202, 210, 0.85);
  background: #ECEFF3;
}
.guide-3d-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.guide-live-video {
  border-radius: 0.4rem;
  overflow: hidden;
  border: 1px solid rgba(196, 202, 210, 0.85);
  background: #111;
}
.guide-live-video video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #111;
  min-height: 12rem;
}

.steps-band .step-card p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted, #5A6066);
  line-height: 1.35;
}
