/* ============================================================
   Services page — Elegant price list with categories
   ============================================================ */

.price-list {
    max-width: 800px;
    margin: 0 auto;
}

.price-category {
    margin-bottom: 3rem;
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
}

.price-category-header h2 {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.price-category-header p {
    color: var(--color-text_muted);
    font-size: 0.9375rem;
}

.price-items {
    display: flex;
    flex-direction: column;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 8%, transparent);
}

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

.price-item-info {
    flex: 1;
}

.price-item-info h3 {
    font-family: var(--font-body), system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.price-item-info p {
    color: var(--color-text_muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.price-item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
    flex-shrink: 0;
}

.price-amount {
    font-family: var(--font-heading), Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.price-duration {
    font-size: 0.75rem;
    color: var(--color-text_muted);
    letter-spacing: 0.02em;
}

.price-note {
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border-radius: 10px;
    border-left: 3px solid var(--color-accent);
}

.price-note p {
    font-size: 0.875rem;
    color: var(--color-text_muted);
    line-height: 1.6;
}
