/* ═══════════════════════════════════════════════════
   Section: Package
   ═══════════════════════════════════════════════════ */

/* ─── Full-width dark background ─── */
.sw-package {
    background-color: #2b2722;
}

/* ─── Inner container: 1240px content width ─── */
.sw-package__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 85px;
    align-items: flex-start;
    padding-top: 70px;
}

/* ─── Left content column ─── */
.sw-package__content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ─── Header ─── */
.sw-package__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sw-package__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a59680;
    margin: 0;
}

.sw-package__heading {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 44px;
    color: #fffefc;
    margin: 0;
    white-space: nowrap;
}

.sw-package__heading em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #a59680;
}

.sw-package__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: #d7d5cd;
    margin: 0;
}

/* ─── Inclusions Grid ─── */
.sw-package__inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sw-package__inclusion-item {
    width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sw-package__inclusion-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sw-package__inclusion-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15.6px;
    color: #d7d5cd;
    white-space: nowrap;
}

/* ─── Pricing Card ─── */
.sw-package__pricing-card {
    background-color: #302b23;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sw-package__pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sw-package__price-from {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sw-package__price-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a59680;
    margin: 0;
}

.sw-package__price-amount {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    color: #fffefc;
    margin: 0;
    line-height: 40px;
}

.sw-package__price-number {
    font-size: 40px;
}

.sw-package__price-period {
    font-size: 24px;
}

.sw-package__price-total {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-end;
}

.sw-package__total-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #917e64;
    margin: 0;
    text-align: right;
}

.sw-package__total-amount {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #fffefc;
    margin: 0;
}

/* ─── Trust Badges ─── */
.sw-package__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sw-package__badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sw-package__badge-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sw-package__badge-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 16.5px;
    color: #d7d5cd;
    white-space: nowrap;
}

/* ─── CTA Button ─── */
.sw-package__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 14px 26px;
    background-color: #faf8f0;
    border-radius: 79px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.sw-package__cta:hover {
    background-color: #f0ede3;
}

.sw-package__cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: normal;
    letter-spacing: 3.3px;
    text-transform: uppercase;
    color: #2b2722;
    text-align: center;
    white-space: nowrap;
}

.sw-package__cta-arrow {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

/* ─── Right Image ─── */
.sw-package__image-wrap {
    width: 587px;
    flex-shrink: 0;
    align-self: stretch;
}

.sw-package__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .sw-package__inner {
        gap: 40px;
        padding: 50px 40px 0;
    }

    .sw-package__image-wrap {
        width: 400px;
    }

    .sw-package__heading {
        font-size: 38px;
        line-height: 38px;
        white-space: normal;
    }

    .sw-package__inclusion-item {
        width: calc(50% - 6px);
    }

    .sw-package__badges {
        gap: 30px;
    }
}

@media (max-width: 960px) {
    .sw-package__inner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px 0;
    }

    .sw-package__content {
        gap: 30px;
    }

    .sw-package__heading {
        font-size: 34px;
        line-height: 34px;
        white-space: normal;
    }

    .sw-package__image-wrap {
        width: 100%;
        height: 408px;
    }

    /* Switch to CSS grid for 2-column inclusion layout */
    .sw-package__inclusions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sw-package__inclusion-item {
        width: auto;
    }

    .sw-package__inclusion-label {
        white-space: normal;
    }

    .sw-package__pricing-card {
        padding: 20px;
    }

    .sw-package__badges {
        gap: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sw-package__cta {
        gap: 15px;
    }
}
