:root{
    --bw-red:#d32f2f;
    --bw-red-dark:#a82020;
    --bw-yellow:#ffd600;
    --bw-yellow-soft:#fff59d;
    --bw-ink:#1f1f1f;
    --bw-muted:#68717c;
    --bw-border:#e7e9ed;
    --bw-bg:#f7f8fa;
    --bw-white:#fff;
    --bw-green:#137333;
    --bw-shadow:0 14px 40px rgba(23,31,42,.08);
    --bw-radius:18px;
}

*{
    box-sizing:border-box
}

html{
    scroll-behavior:smooth
}

body{
    margin:0;
    color:var(--bw-ink);
    background:var(--bw-bg);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

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

button,
input,
select,
textarea{
    font:inherit
}

button{
    cursor:pointer
}

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

.bw-topbar{
    position:sticky;
    top:0;
    z-index:50;
    background:#fff;
    border-bottom:1px solid var(--bw-border);
}

.bw-topbar-inner{
    min-height:72px;
    width:min(1180px,calc(100% - 32px));
    margin:auto;
    display:flex;
    align-items:center;
    gap:28px;
}

.bw-brand{
    display:flex;
    align-items:center;
    gap:10px;
    margin-right:auto;
}

.bw-logo-mark{
    width:46px;
    height:46px;
    position:relative;
    border-radius:12px;
    background:var(--bw-yellow);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.bw-house{
    font-size:27px;
    color:var(--bw-red);
    font-weight:900
}

.bw-tower{
    color:#171717;
    font-size:20px;
    margin-left:-5px;
}

.bw-brand-copy{
    display:flex;
    flex-direction:column
}

.bw-brand-copy strong{
    font-size:21px;
    letter-spacing:-.7px;
}

.bw-brand-copy strong span{
    color:var(--bw-red)
}

.bw-brand-copy small{
    font-size:8px;
    font-weight:800;
    letter-spacing:1.3px;
    margin-top:2px;
}

.bw-nav{
    display:flex;
    align-items:center;
    gap:22px;
    font-size:14px;
    font-weight:650;
}

.bw-nav a:hover{
    color:var(--bw-red)
}

.bw-outline-btn{
    border:1px solid var(--bw-red);
    color:var(--bw-red);
    padding:10px 15px;
    border-radius:10px;
    font-weight:750;
}

.bw-outline-btn:hover{
    background:var(--bw-red);
    color:#fff
}

.bw-group-strip{
    background:#1f1f1f;
    color:#fff;
    text-align:center;
    font-size:10px;
    letter-spacing:1px;
    padding:5px;
}

.bw-search-hero{
    background:
        radial-gradient(
            circle at top right,
            var(--bw-yellow) 0,
            var(--bw-yellow-soft) 22%,
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #fff 0%,
            #fff6f6 100%
        );
    padding:56px 0 38px;
    border-bottom:1px solid var(--bw-border);
}

.bw-search-headline{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
}

.bw-kicker{
    color:var(--bw-red);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.7px;
}

.bw-search-headline h1{
    margin:10px 0 12px;
    font-size:42px;
    line-height:1.06;
    letter-spacing:-1.7px;
}

.bw-search-headline h1 em{
    color:var(--bw-red);
    font-style:normal;
}

.bw-search-headline p{
    margin:0;
    color:var(--bw-muted);
    max-width:690px;
    line-height:1.6;
}

.bw-ai-button{
    flex:none;
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 17px;
    border-radius:12px;
    background:#1f1f1f;
    color:#fff;
    font-weight:750;
}

.bw-ai-button span{
    color:var(--bw-yellow)
}

.bw-search-panel{
    margin-top:32px;
    background:#fff;
    border:1px solid var(--bw-border);
    box-shadow:var(--bw-shadow);
    padding:18px;
    border-radius:var(--bw-radius);
}

.bw-main-search{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
}

.bw-main-search label{
    border:2px solid #eceef1;
    border-radius:12px;
    padding:9px 14px;
}

.bw-main-search label span,
.bw-filter-grid label>span,
.bw-enquiry-card label>span{
    display:block;
    font-size:10px;
    color:#737b85;
    font-weight:800;
    margin-bottom:5px;
    letter-spacing:.4px;
}

.bw-main-search input,
.bw-filter-grid input,
.bw-filter-grid select,
.bw-enquiry-card input,
.bw-enquiry-card textarea{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#222;
}

.bw-main-search button{
    border:0;
    background:var(--bw-red);
    color:#fff;
    padding:0 26px;
    border-radius:12px;
    font-weight:800;
}

.bw-main-search button:hover{
    background:var(--bw-red-dark)
}

.bw-filter-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
    margin-top:12px;
}

.bw-filter-grid label{
    min-width:0;
    border:1px solid var(--bw-border);
    padding:8px 10px;
    border-radius:10px;
    background:#fff;
}

.bw-check-filter{
    display:flex;
    align-items:center;
    gap:7px;
    justify-content:center;
}

.bw-check-filter input{
    width:auto
}

.bw-check-filter span{
    margin:0!important;
    font-size:12px!important;
}

.bw-results-section{
    padding:32px 0 52px;
}

.bw-results-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.bw-results-toolbar>div:first-child{
    display:flex;
    flex-direction:column;
    gap:4px
}

.bw-results-toolbar span{
    color:var(--bw-muted);
    font-size:13px;
}

.bw-view-toggle{
    border:1px solid var(--bw-border);
    border-radius:10px;
    background:#fff;
    padding:3px;
}

.bw-view-toggle button{
    border:0;
    background:transparent;
    padding:7px 12px;
    border-radius:7px;
    font-size:12px;
    font-weight:700;
}

.bw-view-toggle button.active{
    background:#1f1f1f;
    color:#fff
}

.bw-property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.bw-property-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--bw-border);
    border-radius:16px;
    transition:.18s ease;
}

.bw-property-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--bw-shadow)
}

.bw-card-media{
    height:210px;
    background:
        linear-gradient(
            135deg,
            #f3f4f6,
            #eceef1
        );
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.bw-card-media img{
    width:100%;
    height:100%;
    object-fit:cover
}

.bw-placeholder-house{
    font-size:58px;
    opacity:.25
}

.bw-media-label{
    position:absolute;
    left:12px;
    bottom:12px;
    background:rgba(0,0,0,.75);
    color:#fff;
    padding:5px 8px;
    border-radius:6px;
    font-size:9px;
    font-weight:800;
}

.bw-card-badges{
    position:absolute;
    left:12px;
    top:12px;
    display:flex;
    gap:6px;
}

.bw-badge{
    padding:5px 8px;
    border-radius:999px;
    font-size:9px;
    font-weight:900;
    letter-spacing:.3px;
    background:#fff;
    color:#222;
}

.bw-badge.verified{
    background:#e6f4ea;
    color:var(--bw-green)
}

.bw-badge.yellow{
    background:var(--bw-yellow);
    color:#111
}

.bw-card-body{
    padding:16px
}

.bw-card-price{
    font-size:22px;
    font-weight:900;
    letter-spacing:-.5px
}

.bw-card-rate{
    color:var(--bw-muted);
    font-size:11px;
    margin-left:5px
}

.bw-card-body h3{
    margin:8px 0 5px;
    font-size:16px
}

.bw-card-location{
    color:var(--bw-muted);
    font-size:12px;
    margin-bottom:13px;
}

.bw-card-facts{
    display:flex;
    gap:13px;
    padding:11px 0;
    border-top:1px solid var(--bw-border);
    border-bottom:1px solid var(--bw-border);
    font-size:11px;
    font-weight:750;
}

.bw-card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:12px;
}

.bw-card-footer span{
    color:var(--bw-muted);
    font-size:10px
}

.bw-card-footer a{
    color:var(--bw-red);
    font-size:12px;
    font-weight:850
}

.bw-empty-state{
    background:#fff;
    border:1px solid var(--bw-border);
    border-radius:var(--bw-radius);
    padding:58px 24px;
    text-align:center;
    max-width:700px;
    margin:35px auto;
}

.bw-empty-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:var(--bw-yellow);
    color:var(--bw-red);
    display:grid;
    place-items:center;
    font-size:38px;
    margin:0 auto 16px;
}

.bw-empty-state h2{
    margin:0 0 8px
}

.bw-empty-state p{
    color:var(--bw-muted);
    line-height:1.6
}

.bw-map-placeholder{
    background:#fff;
    border:1px dashed #c8cdd4;
    border-radius:var(--bw-radius);
    min-height:480px;
    display:grid;
    place-items:center;
    text-align:center;
    padding:30px;
}

.bw-map-placeholder>div{
    max-width:500px
}

.bw-map-icon{
    font-size:52px;
    color:var(--bw-red)
}

.bw-assurance-band{
    background:#1f1f1f;
    color:#fff;
    padding:28px 0
}

.bw-assurance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px
}

.bw-assurance-grid div{
    display:flex;
    flex-direction:column;
    gap:5px
}

.bw-assurance-grid strong{
    color:var(--bw-yellow);
    font-size:13px
}

.bw-assurance-grid span{
    font-size:11px;
    color:#d3d6db;
    line-height:1.45
}

.bw-detail-shell{
    padding:26px 0 60px
}

.bw-back-link{
    color:var(--bw-muted);
    font-size:13px;
    display:inline-block;
    margin-bottom:20px
}

.bw-loading-card{
    background:#fff;
    border:1px solid var(--bw-border);
    border-radius:16px;
    padding:40px;
    text-align:center;
}

.bw-property-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:22px;
}

.bw-property-title-row h1{
    font-size:32px;
    margin:8px 0;
    letter-spacing:-1px
}

.bw-badge-row{
    display:flex;
    flex-wrap:wrap;
    gap:7px
}

.bw-location-line{
    color:var(--bw-muted);
    font-size:13px
}

.bw-detail-price{
    text-align:right;
    flex:none
}

.bw-detail-price strong{
    display:block;
    font-size:29px;
    color:var(--bw-red)
}

.bw-detail-price span{
    color:var(--bw-muted);
    font-size:12px
}

.bw-detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:24px;
    align-items:start;
}

.bw-media-stage{
    min-height:430px;
    background:#eef0f3;
    border-radius:18px;
    overflow:hidden;
    position:relative
}

.bw-media-stage img{
    width:100%;
    height:430px;
    object-fit:cover
}

.bw-media-empty{
    height:430px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    color:#79818c
}

.bw-media-empty span{
    font-size:72px;
    opacity:.22
}

.bw-media-empty strong{
    color:#555
}

.bw-media-empty small{
    max-width:350px;
    text-align:center
}

.bw-facts-card,
.bw-content-card{
    background:#fff;
    border:1px solid var(--bw-border);
    border-radius:16px;
    margin-top:18px;
    padding:22px
}

.bw-facts-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px
}

.bw-fact{
    border-right:1px solid var(--bw-border);
    padding-right:10px
}

.bw-fact:last-child{
    border-right:0
}

.bw-fact span{
    display:block;
    color:var(--bw-muted);
    font-size:10px;
    text-transform:uppercase;
    font-weight:800;
    margin-bottom:5px
}

.bw-fact strong{
    font-size:15px
}

.bw-section-heading span{
    color:var(--bw-red);
    font-size:9px;
    font-weight:900;
    letter-spacing:1.3px
}

.bw-section-heading h2{
    font-size:20px;
    margin:4px 0 18px
}

.bw-content-card>p{
    color:#515963;
    line-height:1.7;
    margin:0
}

.bw-passport-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:11px
}

.bw-passport-item{
    background:#f8f9fa;
    border:1px solid #eceef0;
    padding:13px;
    border-radius:11px
}

.bw-passport-item span{
    display:block;
    color:var(--bw-muted);
    font-size:9px;
    text-transform:uppercase;
    font-weight:850;
    margin-bottom:5px
}

.bw-passport-item strong{
    font-size:13px
}

.bw-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:9px
}

.bw-feature{
    background:#fafafa;
    border:1px solid var(--bw-border);
    padding:11px 13px;
    border-radius:9px;
    font-size:12px
}

.bw-feature strong{
    display:block;
    font-size:10px;
    color:var(--bw-muted);
    margin-bottom:3px
}

.bw-nearby-list{
    display:grid;
    gap:8px
}

.bw-nearby-item{
    display:grid;
    grid-template-columns:1fr auto;
    gap:15px;
    padding:11px 0;
    border-bottom:1px solid var(--bw-border)
}

.bw-nearby-item:last-child{
    border-bottom:0
}

.bw-nearby-item span{
    color:var(--bw-muted);
    font-size:11px
}

.bw-action-column{
    position:sticky;
    top:102px
}

.bw-enquiry-card,
.bw-side-card{
    background:#fff;
    border:1px solid var(--bw-border);
    border-radius:16px;
    padding:20px;
    box-shadow:0 8px 28px rgba(30,35,40,.05)
}

.bw-enquiry-card h3{
    margin:6px 0 7px;
    font-size:20px
}

.bw-enquiry-card>p,
.bw-side-card p{
    color:var(--bw-muted);
    font-size:12px;
    line-height:1.55
}

.bw-enquiry-card label{
    display:block;
    border:1px solid var(--bw-border);
    border-radius:9px;
    padding:9px 10px;
    margin-top:9px;
}

.bw-consent{
    display:flex!important;
    gap:8px;
    align-items:flex-start
}

.bw-consent input{
    width:auto!important;
    margin-top:2px
}

.bw-consent span{
    font-size:10px!important;
    line-height:1.45
}

.bw-primary-btn{
    border:0;
    background:var(--bw-red);
    color:#fff;
    padding:12px 16px;
    border-radius:10px;
    font-weight:850;
    display:inline-block;
    text-align:center
}

.bw-primary-btn:hover{
    background:var(--bw-red-dark)
}

.bw-full{
    width:100%;
    margin-top:11px
}

.bw-action-pair{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:8px
}

.bw-secondary-btn{
    border:1px solid var(--bw-red);
    background:#fff;
    color:var(--bw-red);
    border-radius:9px;
    padding:10px 8px;
    font-size:11px;
    font-weight:800
}

.bw-form-result{
    margin-top:10px;
    border-radius:8px;
    font-size:11px;
    line-height:1.5
}

.bw-form-result.success{
    background:#e6f4ea;
    color:#116329;
    padding:10px
}

.bw-form-result.error{
    background:#fde8e7;
    color:#9c1c17;
    padding:10px
}

.bw-side-card{
    margin-top:12px
}

.bw-side-card strong{
    font-size:13px
}

.bw-side-card a{
    color:var(--bw-red);
    font-weight:800;
    font-size:11px
}

.bw-footer{
    background:#171717;
    color:#fff;
    padding:28px max(16px,calc((100% - 1180px)/2));
    display:flex;
    justify-content:space-between;
    gap:25px;
    align-items:center;
    font-size:11px;
}

.bw-footer>div:first-child{
    display:flex;
    flex-direction:column;
    gap:3px
}

.bw-footer strong{
    color:var(--bw-yellow);
    font-size:16px
}

.bw-footer small{
    color:#aeb3ba
}

@media(max-width:1000px){

    .bw-nav{
        display:none
    }

    .bw-filter-grid{
        grid-template-columns:repeat(3,1fr)
    }

    .bw-property-grid{
        grid-template-columns:repeat(2,1fr)
    }

    .bw-detail-layout{
        grid-template-columns:1fr
    }

    .bw-action-column{
        position:static
    }

    .bw-assurance-grid{
        grid-template-columns:repeat(2,1fr)
    }

    .bw-passport-grid{
        grid-template-columns:repeat(2,1fr)
    }
}

@media(max-width:680px){

    .bw-topbar-inner{
        min-height:64px
    }

    .bw-outline-btn{
        display:none
    }

    .bw-search-hero{
        padding-top:36px
    }

    .bw-search-headline{
        display:block
    }

    .bw-search-headline h1{
        font-size:32px
    }

    .bw-ai-button{
        display:inline-flex;
        margin-top:18px
    }

    .bw-main-search{
        grid-template-columns:1fr
    }

    .bw-main-search button{
        min-height:48px
    }

    .bw-filter-grid{
        grid-template-columns:repeat(2,1fr)
    }

    .bw-property-grid{
        grid-template-columns:1fr
    }

    .bw-results-toolbar{
        align-items:flex-start;
        gap:12px
    }

    .bw-property-title-row{
        display:block
    }

    .bw-detail-price{
        text-align:left;
        margin-top:12px
    }

    .bw-facts-grid{
        grid-template-columns:repeat(2,1fr)
    }

    .bw-passport-grid,
    .bw-feature-grid{
        grid-template-columns:1fr
    }

    .bw-assurance-grid{
        grid-template-columns:1fr
    }

    .bw-footer{
        flex-direction:column;
        align-items:flex-start
    }
}
