.prices-hero {
    position: relative;
    padding: 104px 0 78px;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 15, 26, 0.95) 0%, rgba(19, 32, 51, 0.9) 48%, rgba(25, 52, 79, 0.8) 100%),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.prices-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -120px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190, 154, 95, 0.26), transparent 68%);
}
.prices-hero .hero-copy { position: relative; z-index: 1; max-width: 760px; }
.prices-hero .eyebrow { color: #f0d29e; }
.prices-hero .lead-copy { color: rgba(255,255,255,0.82); max-width: 660px; }
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}
.price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), #fffdf9);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    height: 100%;
}
.price-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(190, 154, 95, 0.14);
    color: var(--gold-deep);
    font-size: 1.15rem;
    margin-bottom: 18px;
}
.price-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 8px;
}
.price-card p { margin: 0 0 22px; color: var(--muted); line-height: 1.75; }
.price-list { display: grid; gap: 14px; }
.price-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: none; padding-bottom: 0; }
.price-name { color: var(--ink); font-weight: 600; line-height: 1.5; }
.price-value { color: var(--gold-deep); font-weight: 800; white-space: nowrap; }
.notice-box {
    margin-top: 30px;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    border: 1px solid rgba(32, 61, 90, 0.08);
    color: var(--ink);
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .price-grid { grid-template-columns: 1fr; }
}