:root {
  --bg: #fcf8f6;
  --bg-2: #f5ede8;
  --text: #223142;
  --muted: #617083;
  --line: rgba(34, 49, 66, 0.1);
  --white: rgba(255, 255, 255, 0.76);
  --white-strong: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 60px rgba(40, 60, 90, 0.12);
  --shadow-soft: 0 10px 30px rgba(40, 60, 90, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --primary: #7e9ec8;
  --primary-strong: #5b7fb2;
  --accent: #e7c9bf;
  --mint: #dfeee7;
  --sand: #f5e4d8;


  /* MiamiBeach.News background video tuning */
  --site-bg-video-opacity: 0.62;
  --site-bg-video-saturate: 1.08;
  --site-bg-video-contrast: 1.03;
  --site-bg-video-scale: 1.01;
  --site-bg-video-wash-accent: 0.16;
  --site-bg-video-wash-secondary: 0.1;
  --site-bg-video-wash-top: 0.16;
  --site-bg-video-wash-bottom: 0.12;
  --site-bg-video-base-top: 0.12;
  --site-bg-video-base-bottom: 0.08;
  --site-bg-video-tint-accent: 0.05;
  --site-bg-video-tint-top: 0.12;
  --site-bg-video-tint-bottom: 0.06;


}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 7.5rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 201, 191, 0.65), transparent 28%),
    radial-gradient(circle at right 20%, rgba(126, 158, 200, 0.22), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);

  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at top left, rgba(231, 201, 191, 0.1), transparent 34%),
    radial-gradient(circle at right 20%, rgba(126, 158, 200, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(252, 248, 246, 0.08) 0%, rgba(245, 237, 232, 0.06) 100%);
  pointer-events: none;
    
}

img,
video {
  display: block;
  max-width: 100%;
}





.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 237, 232, var(--site-bg-video-base-top)) 0%, rgba(252, 248, 246, var(--site-bg-video-base-bottom)) 100%);
}

.site-bg-video__media,
.site-bg-video__tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-bg-video__media {
  object-fit: cover;
  opacity: var(--site-bg-video-opacity);
  filter: saturate(var(--site-bg-video-saturate)) contrast(var(--site-bg-video-contrast));
  transform: scale(var(--site-bg-video-scale));
}

.site-bg-video__tint {
  background:
    radial-gradient(circle at top left, rgba(252, 248, 246, var(--site-bg-video-tint-accent)), transparent 34%),
    linear-gradient(180deg, rgba(252, 248, 246, var(--site-bg-video-tint-top)) 0%, rgba(245, 237, 232, var(--site-bg-video-tint-bottom)) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-bg-video {
    display: none;
  }
}


.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}




/* === PATCH 2026-03-19: static hero + detached video section START === */
.hero-shell {
  position: relative;
  min-height: min(92svh, 920px);
  display: grid;
  align-items: end;
  overflow: clip;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;

  background:
    radial-gradient(circle at top left, rgba(231, 201, 191, 0.42), transparent 32%),
    radial-gradient(circle at right 18%, rgba(126, 158, 200, 0.24), transparent 28%),
    linear-gradient(160deg, #f3e6de 0%, #e8edf5 52%, #f7efe9 100%);

}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media--image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 35, 0.42) 0%, rgba(15, 23, 35, 0.18) 24%, rgba(15, 23, 35, 0.62) 100%),
    linear-gradient(90deg, rgba(15, 23, 35, 0.44) 0%, rgba(15, 23, 35, 0.12) 48%, rgba(15, 23, 35, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 42px;
  color: #fdfbf9;
}

.hero-copy-card {
  max-width: 720px;
  padding: 26px 24px;
  border-radius: 28px;
  background: rgba(17, 27, 40, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(10, 18, 28, 0.22);
  backdrop-filter: blur(14px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero-content h1 {
  margin: 18px 0 12px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 820px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  margin: 0;
  max-width: 640px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: rgba(255, 251, 249, 0.96);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 24px;
}

.hero-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--secondary-solid {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.section--tight-top {
  padding-top: 22px;
}

.hero-video-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
  box-shadow: var(--shadow-soft);
}

.showcase-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  display: block;
}
/* === PATCH 2026-03-19: static hero + detached video section END === */



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.circle-btn:hover,
.circle-btn:focus-visible,
.contact-card:hover,
.contact-card:focus-visible,
.link-card:hover,
.link-card:focus-visible,
.floating-cta__btn:hover,
.floating-cta__btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--white-strong);
  color: var(--text);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  padding: 34px 0 24px;
}

.section--lifted {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading--spread {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.glass-panel h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.feature-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card,
.link-card,
.glass-panel,
.carousel-card,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.feature-card {
  grid-column: span 4;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.feature-card h3 {
  margin: 8px 0 8px;
  font-size: 22px;
}

.feature-card p,
.link-card p,
.prose-body p,
.contact-panel p,
.site-footer p,
.facts-list dd {
  color: var(--muted);
  line-height: 1.7;
}

.carousel-card {
  border-radius: 30px;
  overflow: hidden;
}

.carousel-stage {
  aspect-ratio: 16 / 10;
  background: #f0ece8;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 22px;
}

.carousel-meta h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.carousel-meta p {
  margin: 0;
  color: var(--muted);
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
  max-width: 220px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(126, 158, 200, 0.22);
  cursor: pointer;
}

.gallery-dot.is-active {
  width: 34px;
  background: var(--primary);
}

.section-actions {
  display: flex;
  gap: 10px;
}

.circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 18px;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 18px;
}

.glass-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.prose-body p {
  margin: 0 0 16px;
}

.facts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  margin: 18px 0 0;
}

.facts-list dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.facts-list dd {
  margin: 6px 0 0;
}

.link-card {
  grid-column: span 4;
  border-radius: var(--radius-lg);
  padding: 22px;
  text-decoration: none;
  color: inherit;
}

.link-card__kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  border-radius: 36px;
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-height: 158px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 237, 232, 0.8) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.contact-card__label {
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  right: max(16px, calc((100vw - 1180px) / 2 + 16px));
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-weight: 700;
}

.floating-cta__btn--primary {
  background: rgba(126, 158, 200, 0.95);
  color: white;
}

.site-footer {
  padding: 12px 0 28px;
}

@media (max-width: 1024px) {
  .feature-card,
  .link-card {
    grid-column: span 6;
  }

  .two-col-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }

  .hero-content {
    padding: 92px 0 24px;
  }

  .feature-card,
  .link-card {
    grid-column: span 12;
  }

  .section-heading--spread,
  .carousel-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-dots {
    justify-content: flex-start;
  }

  .floating-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .floating-cta__btn {
    min-width: 100%;
  }
}



/* === SEARCH: miamibeach_video_reveal_and_footer_spacing START === */
.footer-utility {
  display: grid;
  gap: 18px;
}

.footer-utility__disclaimer {
  padding: 22px 24px;
}

.footer-utility__disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.powered-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 49, 66, 0.08);
  backdrop-filter: blur(10px);
}

.powered-panel__content p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.powered-panel__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  width: 96px;
  height: 96px;

  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 49, 66, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

@media (min-width: 768px) {
  .powered-panel__brand {


    width: 160px;
    height: 160px;
  }
}

.powered-panel__brand:hover,
.powered-panel__brand:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(34, 49, 66, 0.12);
}

.powered-panel__logo {

  width: 64px;
  height: 64px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

@media (min-width: 768px) {
  .powered-panel__logo {

    width: 112px;
    height: 112px;

  }
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(34, 49, 66, 0.08);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 8.5rem;
  }

  .powered-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 24px;
  }

  .hero-copy-card {
    padding: 20px 18px;
    border-radius: 22px;
  }
}
/* === SEARCH: miamibeach_video_reveal_and_footer_spacing END === */

/* Shared property microsite utility link and realtor page styles. */
.property-utility-bar {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.property-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(17, 27, 40, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.property-utility-link::before {
  content: "↗";
}

.hero-shell--realtors {
  min-height: min(82svh, 840px);
}

.feature-card--package {
  grid-column: span 4;
}

.package-hint {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-weight: 700;
}

.package-feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.btn--inline {
  width: fit-content;
}

.realtor-aside-copy {
  color: var(--muted);
  line-height: 1.7;
}

.realtor-form {
  display: grid;
  gap: 20px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.form-grid span {
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
}

.form-grid__full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.form-status[data-state="error"] {
  color: #a14a4a;
}

.form-status[data-state="success"] {
  color: #2f6f4f;
}

.form-status[data-state="warning"] {
  color: #8c6a2f;
}

.missing-state {
  padding-top: 40px;
  padding-bottom: 60px;
}

@media (max-width: 960px) {
  .feature-card,
  .link-card,
  .feature-card--package {
    grid-column: span 12;
  }

  .two-col-layout,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* === SEARCH: miamibeach_news_specimen_and_referral_styles START === */
/* 2026-03-20: specimen notice + referral panel styles for property showcase pages */
.section--announcement { padding-bottom: 12px; }
.specimen-banner { display:grid; grid-template-columns: minmax(0,1fr) auto; gap:18px; align-items:center; background: linear-gradient(135deg, rgba(126,158,200,0.22), rgba(231,201,191,0.32)); border: 1px solid rgba(91,127,178,0.24); }
.specimen-banner h2 { margin:0 0 10px; }
.specimen-banner p { margin:0; color: var(--muted); line-height:1.7; max-width: 70ch; }
.referral-panel { display:block; text-decoration:none; color:inherit; }
.referral-panel h2 { margin:0 0 10px; }
.referral-panel p { margin:0; }
@media (max-width: 767px) { .specimen-banner { grid-template-columns:1fr; } }
/* === SEARCH: miamibeach_news_specimen_and_referral_styles END === */

/* === SEARCH: miamibeach_news_specimen_and_referral_styles START === */
/* 2026-03-20: specimen notice + referral panel styles for property showcase pages */
.section--announcement { padding-bottom: 12px; }
.specimen-banner { display:grid; grid-template-columns: minmax(0,1fr) auto; gap:18px; align-items:center; background: linear-gradient(135deg, rgba(126,158,200,0.22), rgba(231,201,191,0.32)); border: 1px solid rgba(91,127,178,0.24); }
.specimen-banner h2 { margin:0 0 10px; }
.specimen-banner p { margin:0; color: var(--muted); line-height:1.7; max-width: 70ch; }
.referral-panel { display:block; text-decoration:none; color:inherit; }
.referral-panel h2 { margin:0 0 10px; }
.referral-panel p { margin:0; }
@media (max-width: 767px) { .specimen-banner { grid-template-columns:1fr; } }
/* === SEARCH: miamibeach_news_specimen_and_referral_styles END === */

.section--announcement { padding-bottom: 12px; }
.specimen-banner { display:grid; grid-template-columns: minmax(0,1fr) auto; gap:18px; align-items:center; background: linear-gradient(135deg, rgba(126,158,200,0.22), rgba(231,201,191,0.32)); border: 1px solid rgba(91,127,178,0.24); }
.specimen-banner h2 { margin:0 0 10px; }
.specimen-banner p { margin:0; color: var(--muted); line-height:1.7; max-width: 70ch; }
.referral-panel { display:block; text-decoration:none; color:inherit; }
.referral-panel h2 { margin:0 0 10px; }
.referral-panel p { margin:0; }
@media (max-width: 767px) { .specimen-banner { grid-template-columns:1fr; } }

/* === SEARCH: mbnews_realtor_bg_quieting START === */
/* PATCH 2026-03-23: quiet the moving bubble background only on the sales page */
body.page-for-realtors {
  --site-bg-video-opacity: 0.72;
  --site-bg-video-saturate: 1.00;
  --site-bg-video-contrast: 1.00;
  --site-bg-video-scale: 1.00;
  --site-bg-video-base-top: 0.22;
  --site-bg-video-base-bottom: 0.16;
  --site-bg-video-tint-accent: 0.08;
  --site-bg-video-tint-top: 0.22;
  --site-bg-video-tint-bottom: 0.16;
}
/* === SEARCH: mbnews_realtor_bg_quieting END === */

/* === SEARCH: mbnews_realtor_bg_portrait_position START === */
body.page-for-realtors .site-bg-video__media {
  object-position: center center;
}
/* === SEARCH: mbnews_realtor_bg_portrait_position END === */

/* === SEARCH: mbnews_pastel_sales_ui START === */
.realtor-sales-hero {
  padding: 28px 0 12px;
}

.realtor-sales-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.glass-panel--hero {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,244,255,0.82));
}

.realtor-sales-hero__subtitle,
.muted-copy,
.faq-item p,
.bonus-band p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.realtor-sales-hero__visual {
  background: linear-gradient(160deg, rgba(226, 237, 255, 0.8), rgba(246, 231, 238, 0.8), rgba(226, 243, 236, 0.82));
}

.placeholder-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.placeholder-card {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px dashed rgba(34, 49, 66, 0.16);
  color: #4f6174;
  font-weight: 700;
  text-align: center;
  padding: 18px;
}

.placeholder-card--sky { background: rgba(217, 231, 255, 0.9); }
.placeholder-card--mint { background: rgba(221, 241, 232, 0.92); }


.placeholder-card--blush { background: rgba(248, 226, 233, 0.92); }

/* PATCH 2026-03-23: realtor hero specimen cards + elegant language switcher */
.hero-utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 49, 66, 0.08);
  box-shadow: 0 10px 24px rgba(34, 49, 66, 0.08);
  backdrop-filter: blur(10px);
}

.language-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher__link.is-active,
.language-switcher__link:hover,
.language-switcher__link:focus-visible {
  background: rgba(126, 158, 200, 0.16);
  color: var(--primary-strong);
}

.specimen-visual-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.specimen-visual-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(34, 49, 66, 0.08);
  box-shadow: 0 12px 30px rgba(34, 49, 66, 0.08);
}

.specimen-visual-card__media {
  min-height: 92px;
  border-radius: 18px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 49, 66, 0.08);
}

.specimen-visual-card__body {
  display: grid;
  gap: 6px;
}

.specimen-visual-card__body strong {
  font-size: 17px;
  line-height: 1.2;
}

.specimen-visual-card__body span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .specimen-visual-card {
    grid-template-columns: 1fr;
  }

  .specimen-visual-card__media {
    min-height: 180px;
  }
}


.bonus-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-color: rgba(134, 153, 196, 0.12);
  background: linear-gradient(135deg, rgba(245, 248, 255, 0.78), rgba(250, 252, 250, 0.74));
}

.bonus-band__link,
.contact-mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(34,49,66,0.06);
  font-weight: 600;
}


.packages-grid { align-items: stretch; }
.package-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.package-card--featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(238, 241, 255, 0.86) 100%);
  border-color: rgba(91, 127, 178, 0.28);
  transform: translateY(-4px);
}

.package-card.is-selected {
  border-color: rgba(61, 145, 102, 0.84);
  box-shadow: 0 18px 40px rgba(61, 145, 102, 0.18);
  background: linear-gradient(180deg, rgba(242, 255, 247, 0.98) 0%, rgba(232, 246, 238, 0.92) 100%);
}

.package-card__header p { margin: 0; }
.package-price {
  margin: 8px 0 10px !important;
  font-size: 30px;
  line-height: 1;
  color: var(--text) !important;
  font-weight: 800;
}

.package-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.package-list--compact { margin-top: 14px; }
.btn--package-select {
  margin-top: auto;
  border: 0;
  cursor: pointer;
  background: rgba(126, 158, 200, 0.16);
  color: var(--text);
}

.package-card.is-selected .btn--package-select {
  background: rgba(61, 145, 102, 0.16);
  color: #20563a;
}

.process-card {
  position: relative;
  padding-top: 56px;
}

.process-card__count {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary-strong);
}

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

.faq-item h3 { margin-top: 0; }
.contact-panel--sales {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.form-field--full { grid-column: 1 / -1; }
.form-note {
  margin: 0;
  font-size: 14px;
}

.field-helper {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(91, 127, 178, 0.22);
  outline-offset: 2px;
}

.form-field--selected select,
.form-field--selected input {
  border-color: rgba(61, 145, 102, 0.72);
  box-shadow: 0 0 0 4px rgba(61, 145, 102, 0.12);
  background: rgba(243, 255, 247, 0.96);
}

.immediate-order-panel {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(61, 145, 102, 0.22);
  background: linear-gradient(135deg, rgba(242, 255, 247, 0.92), rgba(231, 246, 236, 0.92));
}

.immediate-order-panel__copy {
  margin: 0;
  color: #20563a;
  line-height: 1.6;
  font-weight: 600;
}

.btn--order-now {
  background: linear-gradient(135deg, #3d9166, #56a77a);
  color: #fff;
  box-shadow: 0 16px 32px rgba(61, 145, 102, 0.22);
}

.btn--order-now[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.btn--secondary-realtor {
  background: rgba(126, 158, 200, 0.16);
  color: var(--text);
  border: 1px solid rgba(91,127,178,0.18);
}

@media (max-width: 960px) {
  .realtor-sales-hero__layout,
  .faq-list,
  .contact-panel--sales,
  .bonus-band {
    grid-template-columns: 1fr;
  }

  .package-card--featured {
    transform: none;
  }
}
/* === SEARCH: mbnews_pastel_sales_ui END === */
