/* =========================================================
   PACKAGES PAGE
   ========================================================= */

.packages-intro {
    padding: 140px 0 155px;

    background: #080808;
}

.packages-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .7fr);

    gap: clamp(70px, 10vw, 160px);

    align-items: end;
}

.packages-index {
    display: block;

    color: rgba(255,255,255,.48);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;
}

.packages-index > span {
    margin-right: 18px;

    color: #d2ac65;
}

.packages-intro h2 {
    margin: 35px 0 0;

    max-width: 900px;

    font-size: clamp(55px, 6vw, 96px);

    font-weight: 400;
    line-height: .95;

    letter-spacing: -.06em;
}

.packages-intro h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    font-weight: 400;

    color: #d2ac65;
}

.packages-intro-copy p {
    margin: 0 0 22px;

    color: rgba(255,255,255,.58);

    font-size: 15px;

    line-height: 1.85;
}


/* PACKAGE CARDS */

.packages-grid-section {
    padding: 20px 0 160px;

    background:
        radial-gradient(
            circle at 70% 5%,
            rgba(210,172,101,.06),
            transparent 25%
        ),
        #050505;
}

.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    align-items: stretch;
}

.package-card {
    position: relative;

    min-height: 780px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.10);

    background:
        linear-gradient(
            160deg,
            #0e0e0d,
            #080808
        );

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .4s ease;
}

.package-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -190px;
    top: -140px;

    border: 1px solid rgba(210,172,101,.09);
    border-radius: 50%;
}

.package-card:hover {
    transform: translateY(-8px);

    border-color: rgba(210,172,101,.38);
}

.package-card-featured {
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(210,172,101,.18),
            transparent 30%
        ),
        linear-gradient(
            160deg,
            #17130d,
            #080808 65%
        );

    border-color: rgba(210,172,101,.35);
}

.package-card-premium {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255,255,255,.07),
            transparent 30%
        ),
        linear-gradient(
            160deg,
            #141414,
            #070707
        );
}

.package-recommended {
    position: absolute;

    top: 0;
    right: 0;

    padding: 11px 17px;

    background: #d2ac65;
    color: #090909;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;
    text-transform: uppercase;
}

.package-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.package-number {
    color: #d2ac65;

    font-size: 10px;

    letter-spacing: .16em;
}

.package-label {
    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: .2em;
}

.package-card-content {
    position: relative;
    z-index: 2;

    flex: 1;

    display: flex;
    flex-direction: column;

    padding-top: 40px;
}

.package-card h3 {
    margin: 0;

    font-size: clamp(42px, 4vw, 64px);

    font-weight: 400;

    letter-spacing: -.055em;
}

.package-subtitle {
    min-height: 72px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.55);

    font-size: 14px;

    line-height: 1.7;
}

.package-price {
    margin: 45px 0 40px;

    padding: 26px 0;

    display: flex;
    align-items: flex-end;
    gap: 13px;

    border-top: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.package-price > span {
    padding-bottom: 9px;

    color: rgba(255,255,255,.42);

    font-size: 10px;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.package-price strong {
    font-family: 'Playfair Display', serif;

    color: #d2ac65;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 400;
    line-height: 1;
}

.package-features {
    margin: 0;
    padding: 0;

    list-style: none;
}

.package-features li {
    position: relative;

    padding: 14px 0 14px 24px;

    border-bottom: 1px solid rgba(255,255,255,.065);

    color: rgba(255,255,255,.67);

    font-size: 13px;

    line-height: 1.55;
}

.package-features li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 22px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d2ac65;
}

.package-features li > span {
    margin-right: 6px;

    color: #fff;

    font-weight: 600;
}

.package-link {
    margin-top: auto;
    padding-top: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #eee9df;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.package-link span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    color: #d2ac65;

    transition:
        background .3s ease,
        color .3s ease;
}

.package-card:hover .package-link span {
    background: #d2ac65;

    color: #080808;
}


/* COMPARISON */

.packages-compare {
    padding: 155px 0;

    background: #0a0a09;
}

.packages-compare-heading {
    margin-bottom: 70px;
}

.packages-compare-heading h2 {
    margin: 30px 0 0;

    font-size: clamp(55px, 6vw, 92px);

    font-weight: 400;
    line-height: .95;

    letter-spacing: -.06em;
}

.packages-compare-heading h2 em {
    font-family: 'Playfair Display', serif;

    font-weight: 400;

    color: #d2ac65;
}

.packages-table {
    border-top: 1px solid rgba(255,255,255,.12);
}

.packages-table-row {
    min-height: 78px;

    display: grid;

    grid-template-columns:
        minmax(240px, 1.8fr)
        repeat(3, minmax(120px, .7fr));

    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.packages-table-row > div {
    padding: 20px;

    color: rgba(255,255,255,.64);

    font-size: 13px;
}

.packages-table-row > div:not(:first-child) {
    text-align: center;
}

.packages-table-header {
    background: rgba(255,255,255,.025);
}

.packages-table-header > div {
    color: #fff;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.packages-table-row > div:nth-child(4) {
    color: #d2ac65;
}


/* NOTE */

.packages-note {
    padding: 150px 0;

    background: #d2ac65;

    color: #090909;
}

.packages-note-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .7fr);

    gap: clamp(70px, 10vw, 150px);
}

.packages-note .packages-index {
    color: rgba(0,0,0,.55);
}

.packages-note .packages-index > span {
    color: #080808;
}

.packages-note h2 {
    margin: 35px 0 0;

    max-width: 780px;

    font-size: clamp(55px, 6vw, 94px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.06em;
}

.packages-note h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    font-weight: 400;
}

.packages-note-grid p {
    margin: 0 0 22px;

    color: rgba(0,0,0,.68);

    font-size: 15px;

    line-height: 1.85;
}

.packages-price-note {
    padding-top: 22px;

    border-top: 1px solid rgba(0,0,0,.18);

    font-weight: 600;
}


/* CTA */

.packages-cta {
    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #050505;
}

.packages-cta-media,
.packages-cta-overlay {
    position: absolute;
    inset: 0;
}

.packages-cta-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(.52)
        contrast(1.08);
}

.packages-cta-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.88),
            rgba(5,5,5,.28)
        ),
        linear-gradient(
            180deg,
            rgba(5,5,5,.05),
            rgba(5,5,5,.76)
        );
}

.packages-cta-content {
    position: relative;
    z-index: 3;

    padding-bottom: 85px;
}

.packages-cta-content > span {
    color: #d2ac65;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .22em;
}

.packages-cta h2 {
    max-width: 1000px;

    margin: 24px 0 0;

    font-size: clamp(55px, 7vw, 105px);

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.06em;
}

.packages-cta h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    color: rgba(255,255,255,.63);

    font-weight: 400;
}

.packages-cta p {
    max-width: 600px;

    margin: 30px 0 38px;

    color: rgba(255,255,255,.64);

    font-size: 15px;

    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: auto;
    }

    .package-subtitle {
        min-height: auto;
    }

}


@media (max-width: 900px) {

    .packages-intro-grid,
    .packages-note-grid {
        grid-template-columns: 1fr;
    }

    .packages-intro-copy,
    .packages-note-grid > div:last-child {
        max-width: 650px;

        margin-left: auto;
    }

}


@media (max-width: 760px) {

    .packages-intro {
        padding: 95px 0 105px;
    }

    .packages-intro h2 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .packages-grid-section {
        padding-bottom: 105px;
    }

    .package-card {
        padding: 25px;
    }

    .package-price {
        margin-top: 35px;
    }

    .packages-compare {
        padding: 105px 0;

        overflow-x: auto;
    }

    .packages-table {
        min-width: 760px;
    }

    .packages-note {
        padding: 105px 0;
    }

    .packages-note h2 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .packages-cta {
        min-height: 630px;
    }

    .packages-cta-content {
        padding-bottom: 60px;
    }

    .packages-cta h2 {
        font-size: clamp(48px, 14vw, 74px);
    }

}