/* ========================================
   PRICING PAGE
======================================== */

/* Pricing hero */

.pricing-page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background-color: #07101c;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 10, 16, 0.96) 0%,
            rgba(5, 10, 16, 0.88) 40%,
            rgba(5, 10, 16, 0.52) 67%,
            rgba(5, 10, 16, 0.16) 100%
        ),
        url("../images/heroes/san_antonio.webp");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.pricing-page-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-page-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.pricing-page-lead {
    max-width: 700px;
    margin-bottom: 0;
    color: #eeeae2;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

/* Pricing cards */

.pricing-options {
    padding: 100px 0;
    background: var(--cream);
}

.pricing-options .section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.pricing-card-label {
    margin-bottom: 12px;
    color: var(--gold-on-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.pricing-card-description {
    margin-bottom: 28px;
    color: var(--muted);
}

.pricing-rates {
    margin-bottom: 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.pricing-rate + .pricing-rate {
    border-top: 1px solid var(--border);
}

.pricing-rate > span {
    font-weight: 700;
}

.pricing-rate strong {
    color: var(--navy);
    font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    line-height: 1.15;
    text-align: right;
}

.pricing-rate small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
}

.session-times {
    margin-bottom: 30px;
    padding: 24px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
}

.session-times h4 {
    margin: 0 0 12px;
    color: var(--navy);
    font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
    font-size: 1rem;
}

.session-times ul {
    margin: 0;
    padding-left: 20px;
}

.session-times li + li {
    margin-top: 7px;
}

.session-times p {
    margin-bottom: 0;
}

.pricing-card .button {
    align-self: flex-start;
    margin-top: auto;
}

/* Fee clarification */

.party-fee-note {
    padding: 0 0 100px;
    background: var(--cream);
}

.party-fee-note-inner {
    padding: 42px;
    border-left: 4px solid var(--gold);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.party-fee-note h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.party-fee-note p:last-child {
    max-width: 800px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

/* Bottom call to action */

.pricing-page-cta {
    padding: 100px 0;
    color: #ddd8ce;
    text-align: center;
    background: #060a10;
}

.pricing-page-cta .container {
    max-width: 780px;
}

.pricing-page-cta h2 {
    color: var(--white);
}

.pricing-page-cta p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.08rem;
}

/* Tablet */

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

/* Mobile */

@media (max-width: 600px) {
    .pricing-page-hero {
        padding: 76px 0 82px;

        background-image:
            linear-gradient(
                rgba(5, 10, 16, 0.88),
                rgba(5, 10, 16, 0.94)
            ),
            url("../images/heroes/san_antonio.webp");

        background-position: 72% center;
    }

    .pricing-options,
    .pricing-page-cta {
        padding: 72px 0;
    }

    .party-fee-note {
        padding-bottom: 72px;
    }

    .pricing-card {
        padding: 30px 26px;
    }

    .pricing-rate {
        align-items: flex-start;
        gap: 18px;
    }

    .pricing-rate strong {
        font-size: 1.4rem;
    }

    .party-fee-note-inner {
        padding: 30px 26px;
    }

    .pricing-card .button {
        width: 100%;
    }
}