.pricing-grid {
    display: grid;
    gap: 0;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
    padding: 32px 16px;
    border-bottom: 1px solid rgba(184, 146, 42, 0.09);
    border-radius: 4px;
    transition: background 0.2s;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--gold-tint);
}

.price-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.05em;
    margin-bottom: 7px;
}

.price-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 500px;
}

.price-amount {
    text-align: right;
    flex-shrink: 0;
}

.price-amount .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.48rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

.price-amount .unit {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    display: block;
    text-align: right;
    margin-top: 2px;
    font-family: 'Raleway', sans-serif;
    opacity: 0.7;
}

.pricing-note {
    margin-top: 52px;
    text-align: center;
}

.pricing-note p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.btn-booking {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 34px;
    background: transparent;
    border: 1px solid rgba(184, 146, 42, 0.35);
    border-radius: 30px;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.28s ease;
}

.btn-booking:hover {
    background: var(--gold-tint);
    border-color: var(--gold);
}