:root{
    --bg:#f5f4f0;
    --white:#ffffff;
    --text:#161616;
    --muted:#6d6d6d;
    --line:#dedbd3;
    --soft:#efede7;
    --accent:#9a8050;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html.modal-open{
    overflow:hidden;
    height:100%;
    touch-action:none;
}
body.modal-open{
    position:fixed;
    width:100%;
    overflow:hidden;
    height:100%;
    touch-action:none;
}
body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
}
.page{
    width:90%;
    max-width:1440px;
    margin:auto;
    padding:0 0 80px;
}
.hero{
    padding:70px 0 60px;
    border-bottom:1px solid var(--line);
}
.hero-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}
.eyebrow{
    font-size:11px;
    letter-spacing:2px;
    color:var(--accent);
    font-weight:600;
}
.confidential{
    font-size:11px;
    color:var(--muted);
    letter-spacing:1px;
}
.hero h1{
    font-size:48px;
    line-height:1.1;
    font-weight:600;
    letter-spacing:-1px;
}
.subtitle{
    margin-top:14px;
    color:var(--muted);
    font-size:18px;
}
.location-title{
    margin-top:35px;
    font-size:15px;
    line-height:1.6;
    color:#444;
}
.snapshot{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    margin:50px 0;
    background:white;
    border:1px solid var(--line);
    border-radius:25px;
}
.snapshot div{
    padding:28px;
    border-right:1px solid var(--line);
}
.snapshot div:last-child{
    border-right:none;
}
label{
    display:block;
    color:var(--muted);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
}
.snapshot strong{
    display:block;
    margin-top:12px;
    font-size:27px;
    font-weight:600;
}
.two-column{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:50px;
    margin-bottom:80px;
}
.image-card{
    border:0;
}
.image-placeholder{
    height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e8e5de;
    overflow:hidden;
    border-radius:25px;
}
.image-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
border-radius:25px;
}
.image-caption{
    padding:18px;
    font-size:13px;
    color:var(--muted);
}
h2{
    font-size:28px;
    font-weight:600;
    margin-bottom:30px;
    letter-spacing:-.5px;
}
.detail-list{
    background:white;
    border:1px solid var(--line);
border-radius:25px;
}
.detail-list div{
    display:flex;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid var(--line);

}
.detail-list div:last-child{
    border-bottom:none;
}
.detail-list span{
    color:var(--muted);
}
.detail-list strong{
    font-weight:500;
}
.highlight-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:80px;
}
.highlight{
    background:white;
    border:1px solid var(--line);
    padding:30px;
border-radius:25px;
}
.highlight span{
    color:var(--accent);
    font-size:13px;
}
.highlight h3{
    margin:20px 0 12px;
    font-size:17px;
}
.highlight p{
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}
.financial-table{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    background:white;
    border:1px solid var(--line);
    margin-bottom:80px;
    border-radius:25px;
    overflow:hidden;
}

.financial-table div{
    display:flex;
    justify-content:space-between;
    padding:22px;
    border-bottom:1px solid var(--line);
}

.financial-table div:nth-last-child(-n+2){
    border-bottom:none;
}

.financial-table span{
    color:var(--muted);
}

.financial-table strong{
    font-weight:600;
}
.location-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-bottom:80px;
}
.location-section p{
    color:var(--muted);
    line-height:1.8;
}
.location-section ul{
    list-style:none;
    margin-top:18px;
    padding:0;
}
.location-section li{
    position:relative;
    padding-left:20px;
    margin-bottom:10px;
    color:#555;
    font-size:14px;
    line-height:1.45;
}
.location-section li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--accent);
    font-size:13px;
    font-weight:600;
}
.map-placeholder{
    height:320px;
    background:#e8e5de;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-size:12px;
    letter-spacing:2px;
border-radius:25px;
}
.map-container{
border-radius:25px;
    overflow:hidden;
}
.map-container iframe{
    display:block;
    width:100%;
    height:350px;
    border:0;
border-radius:25px;
}
.risk-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:80px;
}
.risk-grid div{
    background:white;
    border:1px solid var(--line);
    padding:30px;
border-radius:25px;
}
.risk-grid h3{
    font-size:17px;
    margin-bottom:15px;
}
.risk-grid p{
    color:var(--muted);
    line-height:1.7;
    font-size:14px;
}
.summary-box{
    background:white;
    border:1px solid var(--line);
    padding:35px;
    margin-bottom:80px;
border-radius:25px;
}
.summary-box p{
    color:var(--muted);
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}
.summary-box p:last-child{
    margin-bottom:0;
}
footer{
    margin-top:80px;
    padding-top:30px;
    border-top:1px solid var(--line);
    text-align:center;
    color:#888;
    font-size:12px;
    letter-spacing:1px;
}
.share-button{
    margin-top:20px;
    background:#171717;
    color:white;
    border:none;
    padding:12px 20px;
border-radius:25px;
    font-size:12px;
    letter-spacing:1px;
    cursor:pointer;
}
@media(max-width:900px){
    .snapshot{
        grid-template-columns:repeat(2,1fr);
    }
    .snapshot div{
        padding:16px 12px;
        border-right:1px solid var(--line);
        border-bottom:1px solid var(--line);
    }
    .snapshot div:nth-child(2n){
        border-right:none;
    }
    .snapshot div:last-child{
        border-right:none;
        border-bottom:none;
    }
    .two-column,
    .location-section{
        grid-template-columns:1fr;
    }
    .highlight-grid,
    .risk-grid{
        grid-template-columns:1fr;
    }
    .financial-table{
        grid-template-columns:1fr;
    }
}
@media(max-width:600px){
    .page{
        width:100%;
        padding:0 14px 40px;
    }
    .hero{
        padding:28px 0 24px;
    }
    .hero-top{
        margin-bottom:22px;
    }
    .hero h1{
        font-size:28px;
    }
    .subtitle{
        font-size:14px;
        margin-top:8px;
    }
    .location-title{
        margin-top:18px;
        font-size:13px;
    }
    .snapshot{
        margin:22px 0;
        grid-template-columns:1fr 1fr;
    }
    .snapshot div{
        padding:14px 10px;
    }
    .snapshot strong{
        font-size:18px;
    }
    label{
        font-size:9px;
    }
    h2{
        font-size:21px;
        margin-bottom:18px;
    }
    .two-column,
    .location-section{
        gap:20px;
        margin-bottom:35px;
    }
    .image-placeholder{
        height:210px;
    }
    .detail-list div{
        padding:13px 10px;
        font-size:13px;
    }
    .highlight-grid,
    .risk-grid{
        gap:12px;
        margin-bottom:35px;
    }
    .highlight,
    .risk-grid div{
        padding:16px;
    }
    .highlight h3{
        font-size:15px;
        margin:10px 0 8px;
    }
    .highlight p,
    .risk-grid p{
        font-size:12px;
    }
    .financial-table{
        margin-bottom:35px;
    }
    .financial-table div{
        padding:14px 10px;
        font-size:13px;
    }
    .financial-table strong{
        font-size:13px;
    }
    .map-placeholder{
        height:210px;
    }
    .map-container iframe{
        height:240px;
    }
    .summary-box{
        padding:18px;
        margin-bottom:35px;
    }
    .summary-box p{
        font-size:13px;
        line-height:1.6;
        margin-bottom:15px;
    }
    footer{
        margin-top:35px;
        padding-top:20px;
        font-size:10px;
    }
}
@media(max-width:600px){
    .location-section ul{
        margin-top:14px;
    }
    .location-section li{
        padding-left:18px;
        margin-bottom:8px;
        font-size:12px;
        line-height:1.35;
    }
    .location-section li::before{
        font-size:12px;
    }
}
@media(max-width:600px){

    .location-section{
        display:flex;
        flex-direction:column;
    }

    .map-placeholder{
        width:100%;
        height:250px;
    }

    .map-placeholder iframe{
        width:100%;
        height:100%;
        display:block;
    }

}

.empty-state{
    padding:25px;
    border:1px dashed #d5d5d5;
    border-radius:25px;
    color:#777;
    text-align:center;
    background:#ffffff;
}
