/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    --slate: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --cream: #FDFBF7;
    --white: #FFFFFF;
    --emerald: #059669;
    --emerald-dark: #047857;
    --emerald-hover: #065F46;
    --emerald-pale: #ECFDF5;
    --emerald-light: #D1FAE5;
    --violet: #7C3AED;
    --violet-dark: #6D28D9;
    --violet-light: #EDE9FE;
    --red: #EF4444;
    --amber: #F59E0B;
    --amber-light: #FFFBEB;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-h: 58px;
    --r: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --sh-xs: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.06);
    --sh-sm: 0 2px 8px rgba(0,0,0,.09);
    --sh-md: 0 8px 30px rgba(0,0,0,.12);
    --sh-lg: 0 20px 60px rgba(0,0,0,.18);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--slate);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

img {
    display: block;
    width: 100%;
}

ul {
    list-style: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 0;
    transition: box-shadow .25s ease;
}

    .site-nav.scrolled {
        box-shadow: 0 4px 24px rgba(15,23,42,.1);
        border-bottom-color: transparent;
    }

/* Logo */
.nav-logo {
    display: flex;
   /* align-items: center;
    gap: 9px;*/
    font-size: 18px;
    font-weight: 900;
    color: var(--slate);
    letter-spacing: -.05em;
    flex-shrink: 0;
    user-select: none;
}
.nav-logo2 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 900;
    color: var(--slate);
    letter-spacing: -.05em;
    flex-shrink: 0;
    user-select: none;
}

.logo-mark-mobile {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 9px;
    flex-shrink: 0;
}

.logo-mark {
    width: 35px;
    height: 40px;
    object-fit: contain;
    border-radius: 9px;
    flex-shrink: 0;
}

    #mobilelogo {
        display: none;
    }

    #weblogo {
        display: flex;
    }

.logo-mark2 {
    width: 35px;
    height: 40px;
    object-fit: contain;
    border-radius: 9px;
    flex-shrink: 0;
}


.nav-logo .accent {
    color: var(--emerald);
}
.nav-logo2 .accent {
    color: var(--emerald);
}
/* Center nav links */
.nav-links {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--nav-h);
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-600);
    white-space: nowrap;
    transition: color .18s;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 2.5px;
        background: var(--emerald);
        border-radius: 2px 2px 0 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .22s cubic-bezier(.4,0,.2,1);
    }

    .nav-link:hover {
        color: var(--slate);
    }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

    .nav-link.active {
        color: var(--slate);
    }

        .nav-link.active::after {
            transform: scaleX(1);
        }

/* Right utilities */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.nav-util {
    padding: 7px 11px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--slate-500);
    border-radius: var(--r);
    white-space: nowrap;
    transition: background .15s, color .15s;
}

    .nav-util:hover {
        background: var(--slate-100);
        color: var(--slate);
    }

.nav-sep {
    width: 1px;
    height: 18px;
    background: var(--slate-200);
    margin: 0 4px;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--emerald);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 28px;
    white-space: nowrap;
    margin-left: 4px;
    transition: background .18s, transform .15s, box-shadow .18s;
    box-shadow: 0 2px 10px rgba(5,150,105,.3);
}

    .nav-cta:hover {
        background: var(--emerald-dark);
        transform: translateY(-1px);
        box-shadow: 0 5px 18px rgba(5,150,105,.42);
    }

    .nav-cta:active {
        transform: translateY(0);
    }

.nav-cta-outline {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
    box-shadow: none;
}

    .nav-cta-outline:hover {
        background: var(--slate-100);
        border-color: var(--slate-300);
        color: var(--slate);
        transform: none;
        box-shadow: none;
    }

    .nav-cta-outline:active {
        background: var(--slate-200);
    }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--r);
    margin-left: 8px;
    transition: background .15s;
}

    .nav-hamburger:hover {
        background: var(--slate-100);
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--slate-700);
        border-radius: 2px;
        transition: all .25s cubic-bezier(.4,0,.2,1);
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile nav — backdrop + slide-from-right drawer */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 940;
    animation: backdropFadeIn .22s ease;
}

    .nav-backdrop.open {
        display: block;
    }

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--white);
    z-index: 950;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -12px 0 50px rgba(15,23,42,.22);
    will-change: transform;
}

    .mobile-nav-drawer.open {
        transform: translateX(0);
    }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    height: var(--nav-h);
    border-bottom: 1px solid var(--slate-100);
    flex-shrink: 0;
}

.drawer-logo {
    font-size: 16px;
    font-weight: 900;
    color: var(--slate);
    letter-spacing: -.05em;
    user-select: none;
}

    .drawer-logo .accent {
        color: var(--emerald);
    }

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: var(--slate-100);
    transition: background .15s, transform .15s;
    flex-shrink: 0;
}

    .drawer-close:hover {
        background: var(--slate-200);
        transform: rotate(90deg);
    }

    .drawer-close svg {
        width: 16px;
        height: 16px;
        stroke: var(--slate-600);
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
    }

.drawer-links {
    padding: 16px 12px 8px;
    flex: 1;
}

.drawer-section-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--slate-400);
    padding: 0 10px;
    margin-bottom: 6px;
    margin-top: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--slate-700);
    border-radius: var(--r-md);
    transition: background .15s, color .15s;
    margin-bottom: 2px;
}

    .mobile-nav-link svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        opacity: .55;
        flex-shrink: 0;
    }

    .mobile-nav-link:hover {
        background: var(--emerald-pale);
        color: var(--emerald);
    }

        .mobile-nav-link:hover svg {
            opacity: 1;
        }

.mobile-nav-sep {
    height: 1px;
    background: var(--slate-100);
    margin: 8px 10px;
}

.drawer-footer {
    padding: 14px 16px 20px;
    border-top: 1px solid var(--slate-100);
    flex-shrink: 0;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: var(--emerald);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: background .18s, transform .15s;
    box-shadow: 0 3px 14px rgba(5,150,105,.32);
}

    .mobile-nav-cta:hover {
        background: var(--emerald-dark);
        transform: translateY(-1px);
    }

.mobile-nav-cta-outline {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
    box-shadow: none;
    margin-bottom: 10px;
}

    .mobile-nav-cta-outline:hover {
        background: var(--slate-100);
        transform: none;
    }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 40%;
}

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(15,23,42,.28) 0%, rgba(15,23,42,.55) 45%, rgba(15,23,42,.75) 100% );
    }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    padding: 58px 24px 64px;
    text-align: center;
}

.hero-headline {
    font-size: clamp(1.7rem, 4.8vw, 2.9rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.045em;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.hero-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    font-weight: 400;
}

/* Search tabs */
.search-tabs {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 48px;
    padding: 4px;
    gap: 2px;
    margin-bottom: 16px;
}

.s-tab {
    padding: 9px 26px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.78);
    border-radius: 40px;
    cursor: pointer;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    user-select: none;
    border: none;
    background: none;
    letter-spacing: .01em;
}

    .s-tab:hover {
        color: #fff;
        background: rgba(255,255,255,.14);
    }

    .s-tab.active {
        background: var(--emerald);
        color: #fff;
        box-shadow: 0 3px 14px rgba(5,150,105,.55);
    }

/* Search bar */
.search-bar-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 60px;
    box-shadow: 0 12px 50px rgba(0,0,0,.32), 0 4px 16px rgba(0,0,0,.15);
    overflow: hidden;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    height: 60px;
}

.search-icon {
    padding: 0 0 0 22px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .search-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--slate-400);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font);
    color: var(--slate);
    padding: 0 16px;
    background: transparent;
    height: 100%;
}

    .search-input::placeholder {
        color: var(--slate-400);
    }

.search-btn {
    width: 52px;
    height: 52px;
    background: var(--emerald);
    border: none;
    border-radius: 50%;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s, transform .15s, box-shadow .18s;
    box-shadow: 0 2px 14px rgba(5,150,105,.5);
}

    .search-btn:hover {
        background: var(--emerald-dark);
        transform: scale(1.06);
        box-shadow: 0 4px 20px rgba(5,150,105,.6);
    }

    .search-btn svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.search-hints {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.search-hint-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 11.5px;
    color: rgba(255,255,255,.8);
    font-weight: 500;
    cursor: pointer;
    transition: background .18s, color .18s;
}

    .search-hint-tag:hover {
        background: rgba(255,255,255,.25);
        color: #fff;
    }

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.section {
    padding: 24px 0;
}

.section-alt {
    background: var(--slate-50);
}

.section-dark {
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate-800) 100%);
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--emerald);
    margin-bottom: 10px;
}

    .section-eyebrow.light {
        color: var(--emerald-light);
    }

.section-title {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 900;
    color: var(--slate);
    letter-spacing: -.04em;
    line-height: 1.18;
    margin-bottom: 12px;
}

    .section-title.light {
        color: #fff;
    }

.section-body {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 500px;
}

    .section-body.light {
        color: rgba(255,255,255,.58);
    }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 20px;
}

.section-head-left {
    flex: 1;
}

.rentals-section .section-head {
    justify-content: center;
    text-align: center;
}

    .rentals-section .section-head-left {
        flex: none;
        max-width: 640px;
    }

    .rentals-section .section-body {
        margin: 0 auto;
    }

    .rentals-section .section-eyebrow {
        margin-top: 24px;
    }

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--emerald);
    white-space: nowrap;
    transition: gap .18s, color .18s;
}

    .view-all-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .view-all-link:hover {
        gap: 8px;
        color: var(--emerald-dark);
    }

/* =============================================
   CITY EXPLORE GRID
   ============================================= */
.city-section {
    padding: 24px 0;
}

.city-head {
    text-align: center;
    margin-bottom: 44px;
}

    .city-head .section-body {
        margin: 0 auto;
    }

    .city-head .section-eyebrow {
        margin-top: 24px;
    }

.city-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 208px 208px;
    gap: 12px;
}

.city-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

    .city-card:first-child {
        grid-row: span 2;
    }

.city-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.city-card:hover .city-img {
    transform: scale(1.08);
}

.city-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(15,23,42,.85) 0%, rgba(15,23,42,.25) 55%, rgba(15,23,42,.05) 100% );
    transition: opacity .3s;
}

.city-card:hover .city-shimmer {
    opacity: .9;
}

.city-info {
    position: relative;
    z-index: 2;
    padding: 18px 20px;
    width: 100%;
}

.city-name {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1.2;
    margin-bottom: 5px;
}

.city-card:first-child .city-name {
    font-size: 20px;
    margin-bottom: 7px;
}

.city-count {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    font-weight: 500;
    margin-bottom: 8px;
}

.city-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.0);
    letter-spacing: .01em;
    transition: color .22s, gap .22s;
}

    .city-link svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        transition: transform .22s;
    }

.city-card:hover .city-link {
    color: var(--emerald-light);
}

    .city-card:hover .city-link svg {
        transform: translateX(3px);
    }

/* City badge (for new listings) */
.city-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 5px 11px;
    background: var(--emerald);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 16px;
}

/* =============================================
   HOW WE CAN HELP
   ============================================= */
.help-section {
    padding: 24px 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.help-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--r-xl);
    padding: 38px 30px 34px;
    text-align: center;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

    .help-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        opacity: 0;
        transition: opacity .25s;
    }

    .help-card.card-emerald::before {
        background: linear-gradient(90deg, var(--emerald), #34d399);
    }

    .help-card.card-violet::before {
        background: linear-gradient(90deg, var(--violet), #a78bfa);
    }

    .help-card.card-amber::before {
        background: linear-gradient(90deg, var(--amber), #fcd34d);
    }

    .help-card:hover {
        box-shadow: var(--sh-md);
        transform: translateY(-5px);
        border-color: transparent;
    }

        .help-card:hover::before {
            opacity: 1;
        }

.help-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

    .help-icon-wrap.ic-emerald {
        background: var(--emerald-pale);
    }

    .help-icon-wrap.ic-violet {
        background: var(--violet-light);
    }

    .help-icon-wrap.ic-amber {
        background: var(--amber-light);
    }

    .help-icon-wrap svg {
        width: 30px;
        height: 30px;
    }

.help-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--slate);
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.help-card p {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 26px;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 28px;
    cursor: pointer;
    transition: all .18s;
    border: none;
    letter-spacing: .01em;
}

    .help-btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        transition: transform .18s;
    }

    .help-btn:hover svg {
        transform: translateX(3px);
    }

    .help-btn.btn-emerald {
        background: var(--emerald);
        color: #fff;
        box-shadow: 0 3px 12px rgba(5,150,105,.32);
    }

        .help-btn.btn-emerald:hover {
            background: var(--emerald-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 20px rgba(5,150,105,.42);
        }

    .help-btn.btn-violet {
        background: var(--violet);
        color: #fff;
        box-shadow: 0 3px 12px rgba(124,58,237,.3);
    }

        .help-btn.btn-violet:hover {
            background: var(--violet-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 20px rgba(124,58,237,.4);
        }

    .help-btn.btn-outline {
        background: transparent;
        color: var(--slate-700);
        border: 2px solid var(--slate-300);
    }

        .help-btn.btn-outline:hover {
            border-color: var(--amber);
            color: var(--amber);
            transform: translateY(-1px);
        }

/* =============================================
   NEIGHBORHOOD SEARCH SECTION
   ============================================= */
.nbhd-section {
    padding: 24px 28px;
}

.nbhd-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

    .nbhd-inner .section-title.light {
        margin-bottom: 12px;
    }

    .nbhd-inner .section-body.light {
        margin: 0 auto 36px;
    }

.nbhd-search-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 56px;
    padding: 5px 5px 5px 24px;
    max-width: 560px;
    margin: 0 auto;
    backdrop-filter: blur(8px);
    transition: border-color .22s, box-shadow .22s;
}

    .nbhd-search-wrap:focus-within {
        border-color: var(--emerald);
        box-shadow: 0 0 0 4px rgba(5,150,105,.18);
    }

.nbhd-input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-size: 13.5px;
    font-family: var(--font);
    color: #fff;
}

    .nbhd-input::placeholder {
        color: rgba(255,255,255,.4);
    }

.nbhd-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--emerald);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .18s, transform .15s;
    box-shadow: 0 2px 12px rgba(5,150,105,.45);
}

    .nbhd-btn:hover {
        background: var(--emerald-dark);
        transform: scale(1.07);
    }

    .nbhd-btn svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.nbhd-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.nbhd-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    font-size: 11.5px;
    color: rgba(255,255,255,.72);
    font-weight: 500;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
}

    .nbhd-tag:hover {
        background: rgba(255,255,255,.22);
        color: #fff;
        border-color: rgba(255,255,255,.35);
    }

/* =============================================
   PROPERTY LISTING CARDS
   ============================================= */
.rentals-section {
    padding: 24px 0;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prop-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: var(--sh-xs);
    transition: box-shadow .25s, transform .25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .prop-card:hover {
        box-shadow: var(--sh-md);
        transform: translateY(-5px);
    }

.prop-img-wrap {
    position: relative;
    height: 204px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--slate-100);
}

.prop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.prop-card:hover .prop-img {
    transform: scale(1.07);
}

/* Badges */
.prop-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.prop-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.pb-green {
    background: var(--emerald);
    color: #fff;
}

.pb-violet {
    background: var(--violet);
    color: #fff;
}

.pb-amber {
    background: var(--amber);
    color: #fff;
}

.pb-dark {
    background: rgba(15,23,42,.75);
    color: rgba(255,255,255,.9);
}

.pb-white {
    background: rgba(255,255,255,.92);
    color: var(--slate-700);
}

/* Heart/Save */
.prop-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: background .15s, transform .2s;
}

    .prop-save:hover {
        background: #fff;
        transform: scale(1.12);
    }

    .prop-save svg {
        width: 14px;
        height: 14px;
        stroke: var(--slate-500);
        fill: transparent;
        transition: all .2s;
    }

    .prop-save.saved svg {
        fill: var(--red);
        stroke: var(--red);
    }

/* Card body */
.prop-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prop-price {
    font-size: 14.5px;
    font-weight: 900;
    color: var(--slate);
   /* letter-spacing: -.04em;
    margin-bottom: 4px;*/
    line-height: 1;
}

    .prop-price .mo {
        font-size: 12px;
        font-weight: 500;
        color: var(--slate-500);
        letter-spacing: 0;
    }

.prop-specs {
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 0;
}

.prop-dot {
    color: var(--slate-300);
    margin: 0 6px;
    font-size: 10.5px;
}

.prop-addr {
    font-size: 11.5px;
    color: var(--slate-500);
    line-height: 1.45;
    flex: 1;
}

    .prop-addr strong {
        color: var(--slate-700);
        font-weight: 600;
    }

/* Card footer */
.prop-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-top: 1px solid var(--slate-100);
    background: var(--slate-50);
}

.prop-foot-tag {
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .prop-foot-tag svg {
        width: 13px;
        height: 13px;
        stroke: var(--slate-400);
        fill: none;
        stroke-width: 2;
    }

.prop-contact-btn {
    font-size: 11px;
    font-weight: 700;
    color: var(--emerald);
    border: 1.5px solid var(--emerald);
    padding: 5px 13px;
    border-radius: 18px;
    background: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}

    .prop-contact-btn:hover {
        background: var(--emerald);
        color: #fff;
    }

/* View all button */
.view-all-wrap {
    text-align: center;
    margin-top: 44px;
}

.view-all-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    background: var(--white);
    border: 2px solid var(--slate-300);
    border-radius: 36px;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    cursor: pointer;
    transition: all .22s;
    box-shadow: var(--sh-xs);
}

    .view-all-cta:hover {
        border-color: var(--emerald);
        color: var(--emerald);
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(5,150,105,.15);
    }

    .view-all-cta svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .18s;
    }

    .view-all-cta:hover svg {
        transform: translateX(3px);
    }

/* =============================================
   STATS BANNER
   ============================================= */
.stats-section {
    background: var(--white);
    padding: 24px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.stats-inner {
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--slate-200);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--slate);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--emerald), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12.5px;
    color: var(--slate-500);
    font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--slate);
    color: rgba(255,255,255,.6);
    padding-top: 48px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px 36px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
/* Brand column — the sole child of .footer-grid, so it's centered
   as an intentional single block rather than left-stuck in the bar. */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .footer-brand .nav-logo {
        justify-content: center;
        color: #fff;
        margin-bottom: 14px;
    }


    .footer-brand .nav-logo2 {
        justify-content: center;
        color: #fff;
        margin-bottom: 14px;
    }

    .footer-brand p {
        font-size: 12px;
        color: rgba(255,255,255,.45);
        line-height: 1.7;
        margin: 0 auto 20px;
        max-width: 320px;
    }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, border-color .18s, transform .18s;
}

    .soc-btn:hover {
        background: var(--emerald);
        border-color: var(--emerald);
        transform: translateY(-2px);
    }

    .soc-btn svg {
        width: 15px;
        height: 15px;
        fill: rgba(255,255,255,.75);
    }

/* Footer bottom compliance block */
.footer-bottom {
    background: rgba(0,0,0,.3);
    padding: 18px 28px 20px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-eho {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.eho-badge {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .eho-badge svg {
        width: 22px;
        height: 22px;
        fill: rgba(255,255,255,.55);
    }

.eho-text {
    font-size: 11px;
    color: rgba(255,255,255,.32);
    line-height: 1.65;
}

    .eho-text a {
        color: rgba(255,255,255,.45);
        text-decoration: underline;
    }

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
}

    .footer-legal-links a, .footer-legal-links span {
        font-size: 11px;
        color: rgba(255,255,255,.35);
        transition: color .15s;
    }

        .footer-legal-links a:hover {
            color: rgba(255,255,255,.7);
        }

    .footer-legal-links .sep {
        color: rgba(255,255,255,.15);
    }

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,.25);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1100px) {

    /*#mobilelogo {
        display: none;
    }

    #weblogo {
        display: flex;
    }*/

    .city-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 188px 188px;
    }

    .city-card:first-child {
        grid-row: span 2;
    }

    .rentals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand p {
        max-width: 380px;
    }

    .footer-social {
        margin-bottom: 8px;
    }
}

@media (max-width: 900px) {

    /*#mobilelogo {
        display: none;
    }

    #weblogo {
        display: flex;
    }*/

    .nav-links, .nav-sep, .nav-util {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .stats-inner {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        border-bottom: 1px solid var(--slate-200);
    }

        .stat-item:nth-child(2) {
            border-right: none;
        }

        .stat-item:nth-child(3) {
            border-bottom: none;
        }

        .stat-item:nth-child(4) {
            border-bottom: none;
            border-right: none;
        }
}


@media (max-width: 768px) {

    #mobilelogo {
        display: flex;
    }
    #weblogo {
        display: none;
    }

  .site-nav {
        padding: 0 5px;
    }  
  
  .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 44px 20px 52px;
    }

    .city-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }

    .city-card:first-child {
        grid-row: span 1;
    }

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

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .stats-inner {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--slate-200);
        padding: 24px;
    }

        .stat-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 540px) {

    #mobilelogo {
        display: flex;
    }

    #weblogo {
        display: none;
    }

    .site-nav {
        padding: 0 5px;
    }  

    :root {
        --nav-h: 58px;
    }

    .nav-logo {
        font-size: 16px;
    }
    .nav-logo2 {
        font-size: 16px;
    }

    .hero-headline {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 13px;
    }

    .s-tab {
        padding: 8px 18px;
        font-size: 12px;
    }

    .search-bar-wrap {
        height: 54px;
    }

    .city-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 160px);
    }

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

    .search-hints {
        display: none;
    }
}
/* =============================================
   LOGIN / SIGNUP MODAL (inline overlay)
   ============================================= */
.login-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

    .login-modal-overlay.open {
        display: block;
    }

body.login-modal-active {
    overflow: hidden;
}

/* =============================================
   REGISTER MODAL (inline overlay)
   ============================================= */
.register-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

    .register-modal-overlay.open {
        display: block;
    }

body.register-modal-active {
    overflow: hidden;
}

/* =============================================
   VERIFY OTP MODAL (inline overlay)
   ============================================= */
.otp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
}

    .otp-modal-overlay.open {
        display: block;
    }

body.otp-modal-active {
    overflow: hidden;
}

/* =============================================
   FORGOT PASSWORD MODAL (inline overlay)
   ============================================= */
.forgot-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
}

    .forgot-modal-overlay.open {
        display: block;
    }

body.forgot-modal-active {
    overflow: hidden;
}

/* =============================================
   LEGAL CONTENT MODAL (Terms of Use / Privacy Policy)
   Stacks above Login/Register/OTP/Forgot Password (z-index 2000/2100)
   so the underlying popup — and any form data already entered in it —
   stays open and untouched behind it.
   ============================================= */
.legal-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
}

    .legal-modal-overlay.open {
        display: block;
    }

body.legal-modal-active {
    overflow: hidden;
}

/* Google Places Autocomplete dropdown is appended to <body> — must
   outrank the modal overlays' stacking context (z-index: 2000) or it
   renders hidden behind the open modal. */
.pac-container {
    z-index: 3000 !important;
}
