:root {
    --card-radius: 18px;
    --shadow: 0 12px 30px rgba(15, 23, 42, .10);
    --shadow-hover: 0 18px 46px rgba(15, 23, 42, .18);
}

body {
    background: radial-gradient(1200px 600px at 10% -10%, rgba(13,110,253,.10), transparent 60%), radial-gradient(900px 520px at 110% 10%, rgba(32,201,151,.10), transparent 55%), #f8fafc;
}

.page-header {
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(32,201,151,.10));
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

    .page-header:after {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(800px 300px at 10% 10%, rgba(13,110,253,.18), transparent 60%), radial-gradient(700px 260px at 90% 20%, rgba(32,201,151,.18), transparent 60%);
        pointer-events: none;
    }

.glass {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148,163,184,.30);
    border-radius: 18px;
}

.project-card {
    border: 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
    background: #fff;
    height: 100%;
}

    .project-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.cover {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}

    .cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: transform .25s ease;
    }

.project-card:hover .cover img {
    transform: scale(1.07);
}

.cover:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,.0) 0%, rgba(2,6,23,.55) 100%);
    pointer-events: none;
}

.pill {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 2;
}

.badge-soft {
    background: rgba(255,255,255,.92);
    color: #0f172a;
    border: 1px solid rgba(148,163,184,.45);
    border-radius: 999px;
    padding: .35rem .6rem;
    font-weight: 600;
    font-size: .78rem;
}

.price-tag {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: .45rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(148,163,184,.45);
    font-weight: 800;
    color: #0f172a;
}

    .price-tag small {
        font-weight: 700;
        opacity: .75;
        margin-right: 4px;
    }

.meta {
    color: #64748b;
    font-size: .92rem;
    display: flex;
    gap: .55rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-soft {
    border-radius: 12px;
    border: 1px solid rgba(13,110,253,.30);
    background: rgba(13,110,253,.08);
    color: #0b5ed7;
    font-weight: 700;
}

    .btn-soft:hover {
        background: rgba(13,110,253,.12);
        border-color: rgba(13,110,253,.45);
        color: #084298;
    }

.btn-primary {
    border-radius: 12px;
    font-weight: 800;
}

.chip {
    border: 1px dashed rgba(148,163,184,.7);
    border-radius: 999px;
    padding: .35rem .6rem;
    font-size: .8rem;
    color: #334155;
    background: rgba(255,255,255,.7);
}

.empty-state {
    display: none;
}

@media (min-width: 992px) {
    .cover {
        height: 200px;
    }
}

.hero {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    position: relative;
}

    .hero img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,.25), rgba(2,6,23,.75));
    display: flex;
    align-items: end;
    padding: 2rem;
}

.hero-title {
    color: #fff;
}

.info-card {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

    .info-item i {
        font-size: 1.2rem;
        color: #0d6efd;
    }

.price-box {
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    border-radius: 18px;
    padding: 1.5rem;
}

.btn-soft {
    border-radius: 12px;
    border: 1px solid rgba(13,110,253,.35);
    background: rgba(13,110,253,.08);
    color: #0b5ed7;
    font-weight: 600;
}

    .btn-soft:hover {
        background: rgba(13,110,253,.15);
    }

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
}

.amenity {
    display: flex;
    gap: .6rem;
    align-items: center;
    margin-bottom: .75rem;
}

    .amenity i {
        color: #20c997;
    }