/* ================================
   REAL ESTATE THEME
================================= */

body.real-estate {
  background: #111;
}

/* softer luxury palette */
.real-estate .cover-text {
  color: #f5f5f5;
}

.real-estate .cover-text em {
  color: #caa472;
}

/* headings */
.real-estate .work-heading,
.real-estate h2 {
  color: #caa472;
}

/* video borders */
.real-estate .video-box {
  border-color: #caa472;
}

/* CTA different tone */
.real-estate .cta-button {
  background: #caa472;
  color: #111;
}

.real-estate .cta-button:hover {
  background: #fff1dd;
  color: #111;
}

/* partners accent */
.real-estate .partners li {
  border-left: 3px solid #caa472;
}

.video-box img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-box a:hover img {
  transform: scale(1.05);
}