/* ═══════════════════════════════════════════════════
   ACS Pricing Block
   50/50 split: amenities left, pricing card right
   ═══════════════════════════════════════════════════ */

/* ── Container ────────────────────────────────────── */
.acs-pricing__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ══════════════════════════════════════════════════
   Left Column
══════════════════════════════════════════════════ */
.acs-pricing__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Amenities ────────────────────────────────────── */
.acs-pricing__amenities {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.acs-pricing__amenities-label {
    color: #404075;
    margin-bottom: 1rem;
    font-weight: bold;
}

.acs-pricing__amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acs-pricing__amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #ede9e3;
    font-size: 1rem;
    color: #2c2828;
    line-height: 1.4;
}

.acs-pricing__amenity:first-child {
    border-top: 1px solid #ede9e3;
}

.acs-pricing__amenity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #404075;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   Right Column — Pricing Card
══════════════════════════════════════════════════ */
.acs-pricing__right {
    position: sticky;
    top: 32px; /* keeps card in view while scrolling amenities */
}

.acs-pricing__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* Card header */
.acs-pricing__card-header {
    background: #404075;
    padding: 20px 28px;
}

.acs-pricing__card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* LOC rows */
.acs-pricing__loc-rows {
    display: flex;
    flex-direction: column;
}

.acs-pricing__loc-row {
    padding: 24px 28px;
    border-bottom: 1px solid #f0ece6;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.acs-pricing__loc-row:last-child {
    border-bottom: none;
}

.acs-pricing__loc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #404075;
}

.acs-pricing__loc-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.acs-pricing__loc-price {
    font-family: palatino-linotype, serif;
    font-size: 44px;
    font-weight: 400;
    color: #2c2828;
    line-height: 1;
}

.acs-pricing__loc-suffix {
    font-size: 14px;
    color: #2c2828;
    font-style: italic;
}

.acs-pricing__loc-note {
    font-size: 13px;
    color: #2c2828;
    line-height: 1.5;
}

/* RC ask message */
.acs-pricing__loc-row--ask {
    background: #faf8f5;
}

.acs-pricing__rc-ask {
    font-size: 14px;
    line-height: 1.65;
    color: #5a5555;
}

/* Card footer */
.acs-pricing__card-footer {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Full-width button modifier */
.btn--full {
    display: block;
    text-align: center;
    width: 100%;
}

/* ── Preview-only notice ──────────────────────────── */
.acs-pricing__notice {
    padding: 16px 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    font-size: 13px;
    color: #856404;
}

/* ══════════════════════════════════════════════════
   Responsive
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .acs-pricing__headline {
        font-size: 30px;
    }

    .acs-pricing__loc-price {
        font-size: 36px;
    }
}

@media (max-width: 860px) {
    .acs-pricing {
        padding: 56px 0;
    }

    .acs-pricing__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Card no longer sticky on mobile */
    .acs-pricing__right {
        position: static;
    }

    .acs-pricing__headline {
        font-size: 26px;
    }

    .acs-pricing__loc-price {
        font-size: 36px;
    }
}
