 

        /* =========================
   Core Palette Tokens
   ========================= */
:root{
  --brand: #0074E4;        /* primary */
  --brand-700: #005BB5;    /* hover/darker */
  --accent: #C9A227;       /* gold accent */
  --bg-soft: #F5F7FA;      /* soft background */
  --text: #1F2937;         /* slate-800 */
  --muted: #6B7280;        /* gray-500/600 */
}



/* =========================
   Banner: background image only
   ========================= */
.banner{
  background: url('banner-img.png') center/cover no-repeat;
  min-height: clamp(420px, 60vh, 680px);
  padding: 80px 24px;
  position: relative;
  overflow: visible;
}
.banner::before{ display:none; } /* remove grid texture overlay */
.banner::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.35));
  pointer-events:none;
}
.banner-content{ position:relative; z-index:1; }
.banner-text h3{ color: var(--accent); }             /* replace yellow */
.banner-text h1{ color: #fff; }
.banner-text p { color: #fff; opacity:.95; }




/* =========================
   Global color swaps
   ========================= */
.nav-links a:hover,
.right-nav a:hover { color: var(--brand); }

.search-input:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 25%, transparent);
}

.tab-btn.active{ background-color: var(--accent); }
.tab-btn.active:hover{ background-color: color-mix(in srgb, var(--accent) 85%, #000); }

.search-button{
  background: var(--brand);
  color:#fff;
}
.search-button:hover{ background: var(--brand-700); }

.listing-title{ color: var(--brand); }

.highlight-item::before,
.amenity-item::before{ color: var(--brand); }

.error-message h3{ color: var(--brand); }

.available-space{ border-left: 3px solid var(--brand); }

.back-button:hover{
  background-color: var(--brand);
  border-color: var(--brand);
  color:#fff;
}

/* ===== Main Message Section (Palette B) ===== */
.biz-section {
  background: var(--bg-soft);
  padding: 60px 20px;
  text-align: center;
}
.biz-section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.15;
  margin-bottom: 20px;
}
.biz-section__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.biz-section__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  background: #ffffff;
  padding: 32px;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(14, 76, 146, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

/* Testimonial text card */
.testimonial-card {
  flex: 1 1 250px;
  min-width: 220px;
  background: linear-gradient(125deg, #ffffff 70%, var(--bg-soft) 100%);
  border-radius: 28px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(14, 76, 146, 0.08);
}
.testimonial-card__quote {
  font-size: 1.1em;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-card__author {
  color: var(--muted);
  font-size: 0.98em;
  font-style: italic;
  margin-bottom: 20px;
}

/* Testimonial image card */
.testimonial-image-card {
  flex: 1 1 160px;
  min-width: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 60%, var(--bg-soft) 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(14, 76, 146, 0.06);
  padding: 14px;
}
.testimonial-image-card img {
  width: 100%;
  max-width: 240px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(14, 76, 146, 0.11);
  background: var(--bg-soft);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-700);
}

/* Responsive */
@media (max-width: 768px) {
  .biz-section__content {
    padding: 24px;
  }
}


.loading-spinner{ border-top-color: var(--brand); }

.footer-bottom{ background-color: var(--brand); }

.contact-info h3{ color: var(--accent); }

/* City tiles gradient: accent → brand */
.city-item-inner{
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
}

/* Buttons/links you style inline elsewhere can stay;
   these ensure hovered text accents match the new palette. */

/* Mobile tweak keeps spacing intact */
@media (max-width:768px){
  .banner{ padding:60px 16px; }
}


        .search-tabs {
    display: flex;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #faf9f6;
}

.tab-btn {
   flex: 1;
  padding: 13px 24px;
  background: none;
  border: none;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.tab-btn:hover {
     background: #f1ece4;
  color: #3D3D3D;
}

.tab-btn.active {
   background: #c2ab6c;
  color: #fff;
  font-weight: 600;
}

.tab-btn.active:hover {
    background-color: #b8a162;
}

.tab-icon {
    font-size: 16px;
    display: inline-block;
}

/* Enhanced Search Input */
.search-input {
    transition: border-color 0.3s ease;
}

.search-input[data-mode="zip"] {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.search-input:focus {
    outline: none;
    border-color: #c2ab6c;
    box-shadow: 0 0 0 2px rgba(194, 171, 108, 0.2);
}



        .title-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }

        .title-overlay h1 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 300;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeInUp 2s ease forwards;
        }

        .title-overlay p {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            opacity: 0;
            animation: fadeInUp 2s ease 0.5s forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .cityscape {
                overflow-x: hidden;
            }

            .buildings-image {
        max-height: 40vh; /* Reduced from 60vh */
    }

            .title-overlay {
                top: 15%;
                padding: 0 20px;
            }

            .title-overlay h1 {
                margin-bottom: 0.5rem;
            }

            .cloud1, .cloud2, .cloud3, .cloud4 {
                animation-duration: 20s;
            }
        }

        @media (max-width: 480px) {
            .buildings-image {
        max-height: 35vh; /* Reduced from 50vh */
    }

            .title-overlay {
                top: 12%;
                padding: 0 15px;
            }
        }

        /* Landscape mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .cityscape {
                height: 200px;
            }

            .buildings-container {
                display: none;
            }

            .title-overlay {
                top: 50%;
            }

            .title-overlay h1 {
                font-size: clamp(1.2rem, 3vw, 1.8rem);
                margin-bottom: 0.2rem;
            }

            .title-overlay p {
                font-size: clamp(0.7rem, 1.5vw, 1rem);
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        html {
            scroll-padding-top: 160px;
        }

        body {
            background-color: #fff;
            color: #3D3D3D;
            line-height: 1.6;
        }

        /* Image Gallery Modal */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .image-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .image-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 2001;
        }

        .image-nav-arrow:hover {
            background: rgba(255, 255, 255, 1);
        }

        .image-nav-arrow.prev {
            left: 20px;
        }

        .image-nav-arrow.next {
            right: 20px;
        }

        .image-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 2001;
        }

        .image-close-btn:hover {
            background: rgba(255, 255, 255, 1);
        }

        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            z-index: 2001;
        }

        .gallery-image-container {
            cursor: pointer;
        }

        .gallery-image-container:hover {
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .section {
            scroll-margin-top: 120px;
        }

        .mini-nav {
            position: sticky;
            top: 0;
            z-index: 100;
        }

        /* Header Navigation - Updated */
        .nav-container {
            background-color: #fff;
            border-bottom: 1px solid #e6e6e6;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .nav-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo .commercial-logo {
            height: 30px !important;
        }

        .logo .residential-logo {
            height: 90px !important;
        }

        .nav-links {
            display: flex;
            gap: 24px;
        }

        .nav-links a {
            color: #3D3D3D;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 0;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #51BEF0;
        }

        .right-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .right-nav a {
            color: #3D3D3D;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            transition: color 0.2s;
        }

        .right-nav a:hover {
            color: #51BEF0;
        }

        /* Hero Section - Updated to match sample */
        .banner {
            background:background-min.jpeg;
            padding: 80px 24px;
            position: relative;
            overflow: hidden;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          
            opacity: 0.3;
        }

        .banner-content {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .banner-text {
            max-width: 700px;
        }

        .banner-text h3 {
            font-size: 32px;
            font-weight: 700;
            color: #FCFFAC;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .banner-text h1 {
            font-size: 86px;
            font-weight: 700;
            color: white;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .banner-text p {
            font-size: 20px;
            color: #FCFFAC;
            margin-bottom: 40px;
            max-width: 500px;
        }

        /* Search Section - Updated */
        .search-box {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            max-width: 600px;
            margin-top: 0;
            z-index: 20;
        }

        .search-box h2 {
            font-size: 24px;
            font-weight: 600;
            color: #3D3D3D;
            margin-bottom: 20px;
            text-align: center;
        }

        .search-container {
           background: #fff;
           position: relative;
  border-radius: 12px;
  margin: 0 auto;
   max-width: 680px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
        }

        .search-input {
             flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
 
width: 100%;
  padding-right: 120px; /* ≈ button width */
  box-sizing: border-box;

  color: #242424;
  outline: none;
        }

        .search-input:focus {
            outline: none;
            border-color: #51BEF0;
            background: white;
        }

        .search-button {
           background: #d72638;
  color: #fff;
  border: none;
  position:absolute;
  padding: 10px 22px;
  border-radius: 8px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2; /* above input */
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.18s;
        }

        .search-button:hover {
             background: #940818;
        }

        .suggestions {
              position: absolute;
  top: calc(100% + 6px); /* a little gap below the input */
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  border-radius: 10px;
  background: #fff; 
        }

        .suggestion-item {
            padding: 12px 16px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .suggestion-item:hover {
            background: #f8f9fa;
        }

        /* Content - Updated */
        .content {
            max-width: 1280px;
            margin: 60px auto;
            padding: 0 24px;
        }

        /* Cities Section - Updated */
        .cities-grid-section {
            margin: 80px 0;
        }

        .cities-grid-section h2 {
            font-size: 32px;
            font-weight: 700;
            color: #3D3D3D;
            margin-bottom: 16px;
            text-align: center;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .city-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid #f0f0f0;
        }

        .city-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        .city-item-inner {
            height: 180px;
            background: linear-gradient(135deg, #FCFFAC 0%, #51BEF0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .city-item-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
        }

        .city-item h3 {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        /* Property Listings - Updated */
        .listing-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid #f0f0f0;
            margin-bottom: 24px;
        }

        .listing-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        .listing-content {
            display: flex;
            flex-direction: row;
        }

        .listing-image {
            width: 35%;
            max-width: 200px;
            overflow: hidden;
        }

        .listing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .listing-details {
            padding: 20px;
            flex-grow: 1;
        }

        .listing-details h3 {
            margin-top: 0;
            margin-bottom: 8px;
            color: #3D3D3D;
            font-size: 18px;
            font-weight: 600;
        }

        .listing-location {
            color: #666;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .listing-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #51BEF0;
        }

        .listing-subtitle {
            font-size: 13px;
            color: #666;
            margin-bottom: 5px;
        }

        .listing-size {
            font-size: 13px;
            color: #999;
            margin-bottom: 0;
        }

        /* Property Details - Updated */
        .property-details-container {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .property-header {
            padding: 25px;
            border-bottom: 1px solid #f0f0f0;
        }

        .property-header h2 {
            margin-bottom: 10px;
            color: #3D3D3D;
            font-size: 24px;
            font-weight: 600;
        }

        .property-address {
            font-size: 16px;
            color: #666;
        }

        /* Image Gallery - Updated */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 20px;
        }

        .gallery-image-container {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .gallery-image-container img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
        }

        .gallery-image-container:hover img {
            transform: scale(1.05);
        }

        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            text-align: center;
        }

        /* Sections - Updated */
        .property-summary, 
        .property-highlights, 
        .property-facts, 
        .unit-mix-section, 
        .amenities-section,
        .broker-section {
            padding: 25px;
            border-bottom: 1px solid #f0f0f0;
        }

        .property-summary h3,
        .property-highlights h3,
        .property-facts h3,
        .unit-mix-section h3,
        .amenities-section h3,
        .broker-section h3 {
            margin-bottom: 15px;
            color: #3D3D3D;
            font-size: 20px;
            font-weight: 600;
        }

        .property-summary p {
            line-height: 1.6;
            color: #666;
        }

        /* Highlights - Updated */
        .highlights-list {
            list-style-type: none;
            padding: 0;
        }

        .highlight-item {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: #666;
            line-height: 1.5;
        }

        .highlight-item::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #51BEF0;
            font-size: 18px;
        }

        /* Property Facts - Updated */
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .fact-item {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .fact-label {
            font-weight: 600;
            color: #3D3D3D;
        }

        /* Unit Mix Table - Updated */
        .unit-mix-table {
            border: 1px solid #e6e6e6;
            border-radius: 8px;
            overflow: hidden;
        }

        .unit-mix-header {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #f8f9fa;
            font-weight: 600;
        }

        .unit-mix-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid #e6e6e6;
        }

        .unit-mix-cell {
            padding: 12px 15px;
            text-align: left;
            border-right: 1px solid #e6e6e6;
        }

        .unit-mix-cell:last-child {
            border-right: none;
        }

        /* Amenities - Updated */
        .amenities-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .amenity-group h4 {
            margin-bottom: 10px;
            color: #3D3D3D;
            font-weight: 600;
        }

        .amenity-list {
            list-style-type: none;
            padding: 0;
        }

        .amenity-item {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: #666;
        }

        .amenity-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #51BEF0;
        }

        /* Broker Section - Updated */
        .broker-card {
            display: flex;
            align-items: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
        }

        .broker-company-logo {
            width: 80px;
            height: 80px;
            margin-right: 20px;
        }

        .broker-company-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .broker-details h4 {
            margin-bottom: 5px;
            color: #3D3D3D;
            font-weight: 600;
        }

        .broker-company, .broker-location, .broker-phone {
            margin-bottom: 5px;
            color: #666;
        }

        /* Error message - Updated */
        .error-message {
            padding: 25px;
            text-align: center;
            background: #f8f9fa;
            border-radius: 12px;
        }

        .error-message h3 {
            margin-bottom: 10px;
            color: #51BEF0;
        }

        #propertyDetails {
            margin-top: 20px;
            display: none;
            padding: 20px;
            border: 1px solid #e6e6e6;
            border-radius: 12px;
            background-color: #f8f9fa;
        }

        .available-space {
            margin: 15px 0;
            padding: 15px;
            border-left: 3px solid #51BEF0;
            background-color: #fff;
            border-radius: 5px;
        }

        .highlight {
            margin: 5px 0;
        }

        .navigation-buttons {
            margin-bottom: 20px;
        }

        .back-button {
            padding: 12px 20px;
            background-color: #f8f9fa;
            border: 1px solid #e6e6e6;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin-right: 10px;
            transition: all 0.2s;
            color: #3D3D3D;
        }

        .back-button:hover {
            background-color: #51BEF0;
            color: white;
            border-color: #51BEF0;
        }

        /* Loading - Updated */
        #loading {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #51BEF0;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 16px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Video Section - Updated */
        .video-section-title {
            font-size: 32px;
            font-weight: 700;
            color: #3D3D3D;
            text-align: center;
            margin-bottom: 16px;
        }

        .content .field--name-field-media-video-embed-field {
            background: #f8f9fa;
            padding: 80px 24px;
            text-align: center;
            border-radius: 12px;
            margin: 80px 0;
        }

        .video-embed-field-responsive-video {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        .video-embed-field-responsive-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Footer - Updated */
        .footer {
            background: #3D3D3D;
            color: white;
            padding: 60px 0 40px;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-left {
            flex: 1;
            min-width: 300px;
            margin-bottom: 20px;
        }

        .footer-left img {
            height: 50px;
            margin-bottom: 15px;
        }

        .footer-left p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .contact-info {
            text-align: right;
            margin-bottom: 20px;
        }

        .contact-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #FCFFAC;
            font-weight: 600;
        }

        .contact-info p {
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        .footer-bottom {
            background-color: #51BEF0;
            padding: 20px 0;
        }

        .footer-bottom-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .copyright {
            color: white;
            font-size: 14px;
        }

        /* Mobile Responsive - Updated */
        @media (max-width: 768px) {
            .nav-content {
                padding: 12px 16px;
            }

            .nav-links {
                display: none;
            }

            .logo .commercial-logo {
                display: block !important;
                height: 25px !important;
            }

            .logo .residential-logo {
                display: block !important;
                height: 60px !important;
                width: 270px !important;
                order: 1;
            }

            .banner {
                padding: 60px 16px;
            }

            .banner-content {
                text-align: left;
            }

            .banner-text h3 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .banner-text h1 {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .banner-text p {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .search-box {
                padding: 20px;
                margin-top: 0;
                max-width: 100%;
                min-height: 120px;
            }

            .search-box h2 {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .content {
                padding: 0 16px;
                margin: 40px auto;
            }

            .cities-grid-section {
                margin: 40px 0;
            }

            .cities-grid-section h2 {
                font-size: 24px;
                margin-bottom: 12px;
                padding: 0 16px;
            }

            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-top: 24px;
            }

            .city-item-inner {
                height: 120px;
            }

            .city-item h3 {
                font-size: 18px;
            }

            .listing-item {
                margin-bottom: 16px;
            }

            .listing-content {
                flex-direction: column;
            }

            .listing-image {
                width: 100%;
                max-width: none;
                height: 180px;
            }

            .listing-details {
                padding: 16px;
            }

            .listing-details h3 {
                font-size: 16px;
                line-height: 1.3;
            }

            .property-header {
                padding: 20px 16px;
            }

            .property-header h2 {
                font-size: 20px;
                line-height: 1.3;
            }

            .property-address {
                font-size: 14px;
            }

            .image-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 16px;
            }

            .gallery-image-container img {
                height: 120px;
            }

            .property-summary, 
            .property-highlights, 
            .property-facts, 
            .unit-mix-section, 
            .amenities-section,
            .broker-section {
                padding: 20px 16px;
            }

            .property-summary h3,
            .property-highlights h3,
            .property-facts h3,
            .unit-mix-section h3,
            .amenities-section h3,
            .broker-section h3 {
                font-size: 18px;
            }

            .facts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .amenities-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .unit-mix-header, .unit-mix-row {
                grid-template-columns: 1fr 1fr;
                font-size: 14px;
            }

            .unit-mix-header .unit-mix-cell:nth-child(3),
            .unit-mix-header .unit-mix-cell:nth-child(4),
            .unit-mix-row .unit-mix-cell:nth-child(3),
            .unit-mix-row .unit-mix-cell:nth-child(4) {
                display: none;
            }

            .unit-mix-cell {
                padding: 8px 10px;
            }

            .broker-card {
                flex-direction: column;
                text-align: center;
                padding: 16px;
            }

            .broker-company-logo {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .navigation-buttons {
                margin-bottom: 16px;
            }

            .back-button {
                padding: 12px 16px;
                font-size: 14px;
                width: 100%;
                margin-bottom: 10px;
                margin-right: 0;
            }

            .video-section-title {
                font-size: 24px;
                padding: 0 16px;
            }

            .content .field--name-field-media-video-embed-field {
                padding: 40px 16px;
                margin: 40px 0;
            }

            .footer-content {
                flex-direction: column;
                padding: 0 16px;
            }

            .footer-left {
                min-width: auto;
                margin-bottom: 20px;
            }

            .footer-left img {
                height: 40px;
            }

            .footer-right {
                align-items: flex-start;
                min-width: auto;
            }

            .contact-info {
                text-align: left;
            }

            .footer-bottom-content {
                flex-direction: column;
                padding: 0 16px;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                margin-bottom: 15px;
            }

            .footer-links a {
                margin: 0 10px 10px 10px;
                font-size: 12px;
            }

            .copyright {
                text-align: center;
            }

            .image-nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .image-nav-arrow.prev {
                left: 10px;
            }

            .image-nav-arrow.next {
                right: 10px;
            }

            .image-close-btn {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .image-counter {
                bottom: 10px;
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        @keyframes skeleton-pulse {
    0% { background-color: #f0f0f0; }
    50% { background-color: #e0e0e0; }
    100% { background-color: #f0f0f0; }
}

.skeleton-line {
    height: 16px;
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    margin: 8px 0;
}

.skeleton-line.short { width: 30%; }
.skeleton-line.medium { width: 60%; }
.skeleton-line.long { width: 85%; }

.skeleton-loading { pointer-events: none; }
.enhanced-loading { opacity: 0.8; transition: opacity 0.3s ease; }
.listing-loaded { opacity: 1; cursor: pointer; }

.skeleton-streetview {
    height: 250px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

.skeleton-placeholder { text-align: center; color: #999; }
.skeleton-icon { font-size: 24px; margin-bottom: 8px; }
.skeleton-text { font-size: 14px; }

.loading-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #c2ab6c;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c2ab6c, #d4c078);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.retry-btn {
    background-color: #c2ab6c !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    font-size: 14px !important;
}

        @media (max-width: 480px) {
            .banner-text h3 {
                font-size: 20px;
            }

            .banner-text h1 {
                font-size: 28px;
            }

            .banner-text p {
                font-size: 16px;
            }

            .search-box {
                padding: 16px;
            }

            .cities-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .city-item h3 {
                font-size: 16px;
            }

            .image-gallery {
                grid-template-columns: 1fr;
            }

            .facts-grid {
                grid-template-columns: 1fr;
            }

            .unit-mix-header, .unit-mix-row {
                grid-template-columns: 1fr;
            }

            .unit-mix-header .unit-mix-cell:nth-child(2),
            .unit-mix-header .unit-mix-cell:nth-child(3),
            .unit-mix-header .unit-mix-cell:nth-child(4),
            .unit-mix-row .unit-mix-cell:nth-child(2),
            .unit-mix-row .unit-mix-cell:nth-child(3),
            .unit-mix-row .unit-mix-cell:nth-child(4) {
                display: none;
            }
        }

        .programs-feature { margin: 0 0 28px; } /* space before your title */

.programs-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;          /* big left tile, two stacked right tiles */
  grid-template-rows: repeat(2, 230px);    /* tile heights on desktop */
  gap: 18px;
}

.program-card{
  position: relative;
  display: block;
  border-radius: 20px;                     /* rounded corners */
  background: #e5e7eb;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(14,76,146,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.program-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top right, rgba(0,0,0,.38), rgba(0,0,0,.08));
}

.program-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14,76,146,0.18);
}

.program-card--lg{ grid-row: 1 / span 2; }

.program-caption{
  position: absolute;
  left: 16px; bottom: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(16px, 2.2vw, 22px);
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

/* ===== Mobile: equal tiles in a horizontal scroller ===== */
@media (max-width: 768px){
  .programs-grid{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 4px 16px 8px;   /* breathing room + thumb space */
    margin: 0 -16px 20px;    /* edge-to-edge feel to match your layout */
  }
  .programs-grid::-webkit-scrollbar{ display:none; }

  .program-card,
  .program-card--lg{
    flex: 0 0 78vw;          /* equal size cards */
    height: 220px;
    scroll-snap-align: start;
  }
}

/* ===== Mobile menu (hamburger + panel) ===== */
.mobile-menu-btn{
  display: none;
  width: 42px; height: 36px;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 10px;
  align-items: center; justify-content: center;
  gap: 5px; padding: 6px;
  cursor: pointer;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.mobile-menu-btn:hover{ box-shadow: 0 2px 10px rgba(0,0,0,.06); border-color:#ddd; }
.mobile-menu-btn__bar{
  width: 22px; height: 2px; background: var(--text);
  display: block; border-radius: 2px; transition: transform .18s ease, opacity .18s ease;
}
.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__bar:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__bar:nth-child(2){ opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__bar:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Panel shell */
.mobile-menu{
  position: fixed; top: 64px; /* sits just under your sticky nav */
  left: 0; right: 0;
  z-index: 110; /* above .nav-container (100) */
  pointer-events: none;       /* re-enabled when open */
}
.mobile-menu__inner{
  margin: 0 12px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  overflow: hidden;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu__inner a{
  display:block; padding:14px 16px; text-decoration:none;
  color: var(--text); font-weight:600;
  border-bottom:1px solid #f2f2f2;
}
.mobile-menu__inner a:last-child{ border-bottom:none; }
.mobile-menu__inner a:hover{ background: var(--bg-soft); color: var(--brand); }

/* Open state */
.mobile-menu.open{ pointer-events: auto; }
.mobile-menu.open .mobile-menu__inner{
  transform: translateY(0); opacity: 1;
}

/* Show hamburger only on mobile where your .nav-links are hidden */
@media (max-width: 768px){
  .mobile-menu-btn{ display: inline-flex; }
}

.filters-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.filters-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
}

.filters-btn:hover {
  border-color: #c2ab6c;
}

.filters-updating {
  font-size: 13px;
  color: #555;
}

.filters-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 998;
}

.filters-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 95vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  z-index: 999;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.filters-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.filters-modal-body {
  padding: 16px;
  overflow-y: auto;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.filters-close-btn {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-label {
  font-weight: 600;
  font-size: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-row input {
  width: 120px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.price-sep {
  color: #aaa;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: #f3f3f3;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 4px 14px;
  cursor: pointer;
  font-size: 13px;
}

.chip-active {
  background: #fff;
  border-color: #c2ab6c;
  color: #000;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.filters-modal-footer {
  border-top: 1px solid #eee;
  padding: 12px 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.filters-clear-btn,
.filters-apply-btn {
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
}

.filters-clear-btn {
  background: #f5f5f5;
}

.filters-apply-btn {
  background: #c2ab6c;
  color: #fff;
}

/* =========================
   SELL A HOME modal questionnaire
   ========================= */
   .sell-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;                 /* toggled via JS */
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.sell-modal.is-open {
  display: flex;
}

.sell-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.sell-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(540px, 95vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sell-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
}

.sell-modal__close:hover {
  color: #4b5563;
}

/* Progress bar */
.sell-progress {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
}

.sell-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--brand);
  border-radius: 999px;
  transition: width 0.25s ease;
}

/* Body / slides */
.sell-modal__body {
  padding: 26px 24px 12px;
  overflow-y: auto;
}

.sell-slide {
  display: none;
}

.sell-slide.is-active {
  display: block;
}

.sell-step-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.sell-slide h2 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--text);
}

.sell-step-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Fields */
.sell-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.sell-field__label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.sell-input {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 10px 11px;
  font-size: 15px;
  outline: none;
  width: 100%;
}

.sell-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 18%, transparent);
}

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

/* Option cards */
.sell-options {
  display: grid;
  gap: 10px;
}

.sell-option-card,
.sell-option-chip {
  position: relative;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 10px 11px;
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sell-option-card:hover,
.sell-option-chip:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.sell-option-card input,
.sell-option-chip input {
  margin-top: 2px;
}

.sell-option-card span strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.sell-option-card span small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* checked state */
.sell-option-card input:checked + span,
.sell-option-chip input:checked + span {
  font-weight: 600;
}

.sell-option-card input:checked ~ span,
.sell-option-chip input:checked ~ span {
  /* (fallback if markup changes) */
}

.sell-option-card input:checked::before {}

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

/* style wrapper when input checked */
.sell-option-card input:checked ~ span,
.sell-option-chip input:checked ~ span {
  color: var(--text);
}

.sell-option-card input:checked,
.sell-option-chip input:checked;

.sell-option-card input:checked,
.sell-option-chip input:checked;

.sell-option-card input:checked + span,
.sell-option-chip input:checked + span;

.sell-option-card input:checked ~ span,
.sell-option-chip input:checked ~ span;

.sell-option-card input:checked ~ span strong {
  color: var(--brand);
}

.sell-option-card input:checked,
.sell-option-chip input:checked;

/* Using :has for modern browsers to outline the card when checked */
.sell-option-card:has(input:checked),
.sell-option-chip:has(input:checked) {
  background: #eff6ff;
  border-color: var(--brand);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand) 40%, transparent);
}

/* Footer buttons */
.sell-modal__footer {
  padding: 10px 16px 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
}

.sell-nav-btn {
  border-radius: 999px;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.sell-nav-btn:hover {
  background: var(--brand-700);
}

.sell-nav-btn--ghost {
  background: #f9fafb;
  color: var(--text);
  border: 1px solid #e5e7eb;
}

.sell-nav-btn--ghost:hover {
  background: #eef2ff;
  border-color: #d1d5db;
}

#sell-submit-btn {
  display: none;   /* only show on last slide */
}

.sell-privacy-note {
  font-size: 11px;
  color: var(--muted);
  padding: 0 16px 16px;
}

/* small screens */
@media (max-width: 640px){
  .sell-modal__dialog {
    width: 100%;
    border-radius: 0;
    max-height: 100vh;
  }
  .sell-modal__body {
    padding-inline: 16px;
  }
  .sell-field-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Residential property details modal (Zillow-style) ===== */

.rprop-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
}

.rprop-modal.is-open {
  display: flex;
}

.rprop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.5);
}

.rprop-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100vw);
  max-height: 100vh;
  background: #fff;
  border-radius: 18px;
  overflow-y: auto;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.rprop-header {
  display: flex;
  justify-content: flex-start;
  padding: 12px 18px 0;
}

.rprop-back-btn {
  border: none;
  background: none;
  font-size: 14px;
  color: var(--brand, #0074e4);
  cursor: pointer;
}

.rprop-hero {
  background: #f3f4f6;
  height: 220px;
}

.rprop-hero__img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.rprop-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rprop-hero__placeholder {
  width: 100%;
  height: 220px;
  background: #f3f4f6;
}

.rprop-core {
  padding: 18px 18px 20px;
}

.rprop-status-row {
  margin-bottom: 8px;
}

.rprop-status-pill {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #555;
}

.rprop-price {
  font-size: 24px;
  margin: 4px 0;
}

.rprop-meta {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.rprop-address {
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
}

.rprop-section {
  margin-top: 16px;
}

.rprop-section h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.rprop-remarks {
  font-size: 14px;
  line-height: 1.5;
}

.rprop-features {
  font-size: 14px;
}

.rprop-feature-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
}

.rprop-feature-label {
  font-weight: 500;
}

.rprop-feature-value {
  margin-left: 12px;
  text-align: right;
}

.rprop-footer {
  margin-top: 20px;
}

.rprop-contact-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: var(--brand, #0074e4);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 640px) {
  .rprop-modal__dialog {
    border-radius: 0;
    width: 100%;
  }
}

/* Hot Listings grid */
#hotResults {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  #hotResults { grid-template-columns: repeat(2, 1fr); }
}

/* Card */
.hot-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.hot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.hot-card__img {
  width: 100%;
  height: 330px;            /* tweak as you like */
  object-fit: cover;
  display: block;
}

/* dark bottom gradient overlay */
.hot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 85%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}

/* text on bottom */
.hot-card__text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}
.hot-card__status {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hot-card__addr {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hot-card__meta {
  font-size: 20px;
  opacity: .95;
}
.hot-card__sep {
  margin: 0 10px;
  opacity: .7;
}

/* Mobile: reveal more skyline and move the search box lower */
/* MOBILE: fill screen, space text & search, no big gap */




.rprop-modal__dialog{ display:block; width:min(720px, 100vw); }
.rprop-hero{ height: 380px; }
.rprop-hero__img-wrap{ height: 100%; }

/* === FINAL MOBILE OVERRIDE FOR THE HERO (#top) === */
@media (max-width: 640px){
  /* make sure this wins over earlier .banner rules */
  #top.banner{
    display: flex !important;              /* create a column layout */
    flex-direction: column !important;
    background-image: url('banner-mobile.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 12% !important; /* raise focal point (8–18%) */
    min-height: 62vh !important;             /* shorter hero */
    padding: 20px 16px 16px !important;      /* less bottom gap */
  }

  .banner-content{
    margin-top: 10px;
  }

  #top.banner .banner-content{
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
  }

  /* keep title/paragraph near the top */
  #top.banner .banner-text{
    margin-bottom: auto !important;  /* pushes search box down */
  }

  /* search box docks near the bottom, but not covering skyline */
  #top.banner .search-box{
    margin-top: 12px !important;
  }

  /* stronger bottom fade for readability */
  #top.banner::after{
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.04) 0%,
      rgba(0,0,0,0.25) 45%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.75) 100%
    ) !important;
  }
}





