/* ── Vion Packages ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Inter:wght@300;400;500&display=swap');

.vp-grid {
    display: grid;
    grid-template-columns: repeat(var(--vp-cols, 3), 1fr);
    gap: 24px;
    font-family: 'Inter', sans-serif;
}

.vp-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
}
.vp-card:hover {
    border-color: rgba(201,169,110,0.35);
    transform: translateY(-4px);
}

/* Image */
.vp-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.vp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.vp-card:hover .vp-card__img { transform: scale(1.04); }

.vp-card__tier-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #0c0c0c;
}
.vp-tier--heaven       { background: #f5e6c8; }
.vp-tier--ultra_luxury { background: #e8d5b0; }
.vp-tier--luxury       { background: #c9a96e; }
.vp-tier--budget       { background: #a89070; }

/* Body */
.vp-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #fff;
}
.vp-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 10px;
}
.vp-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}
.vp-card__stars { margin: 0 0 12px; }
.vp-star { color: rgba(255,255,255,0.15); font-size: 13px; }
.vp-star--on { color: #c9a96e; }

.vp-card__excerpt {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0 0 16px;
}
.vp-card__amenities {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vp-card__amenities li {
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}
.vp-card__includes {
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 14px;
}
.vp-card__includes-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 0 10px;
}
.vp-card__includes ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.vp-card__includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.vp-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.vp-card__price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: #c9a96e;
}
.vp-card__price-unit {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-left: 4px;
}
.vp-card__btn {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    padding: 10px 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.vp-card__btn:hover { border-color: #c9a96e; color: #c9a96e; }

@media (max-width: 960px) {
    .vp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .vp-grid { grid-template-columns: 1fr; }
}
