/* ============================================================
   LODGE CARD + ARCHIVE — hard-coded values, no old CSS variables
   ============================================================ */

/* ── Archive wrapper ── */
.lodges-archive { padding: 4rem 0 5rem; }

/* ── Grid — 3-col → 2-col → 1-col ── */
.lodges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1023px) { .lodges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .lodges-grid { grid-template-columns: 1fr; } }

/* ── Lodge Card ── */
.lodge-card {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
                box-shadow 300ms cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.lodge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Image wrapper — 4:3 aspect ratio */
.lodge-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    background: #E5E7EB;
    flex-shrink: 0;
}
.lodge-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms cubic-bezier(0.4,0,0.2,1);
}
.lodge-card:hover .lodge-card__img { transform: scale(1.05); }

/* Category badge — absolute top-left */
.lodge-card__category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}
.lodge-card__category .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #D4AF37;
    color: #ffffff;
    line-height: 1;
}

/* Body */
.lodge-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Location line */
.lodge-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.lodge-card__location svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #D4AF37;
}

/* Name */
.lodge-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.625rem;
    line-height: 1.3;
}
.lodge-card__name a {
    color: inherit;
    text-decoration: none;
    transition: color 150ms;
}
.lodge-card__name a:hover { color: #9E7E2D; }

/* Description — 2-line clamp */
.lodge-card__desc {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer: price left, stars right */
.lodge-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

/* Price */
.lodge-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1.2;
}
.lodge-card__price-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #9CA3AF;
    font-weight: 400;
    margin-bottom: 1px;
}
.lodge-card__price-per {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #9CA3AF;
    font-weight: 400;
}

/* Stars */
.lodge-card__rating {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.lodge-card__rating .stars {
    display: inline-flex;
    gap: 1px;
}
.lodge-card__rating .stars svg {
    width: 14px;
    height: 14px;
    color: #D4AF37;
    display: block;
}
.lodge-card__rating-label {
    font-size: 0.6875rem;
    color: #9CA3AF;
    margin-left: 4px;
    white-space: nowrap;
}

/* CTA button */
.lodge-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 150ms, color 150ms, background 150ms;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.lodge-card__cta:hover {
    border-color: #D4AF37;
    color: #9E7E2D;
    background: rgba(212,175,55,0.04);
}
