.planes-hero {
    min-height: 58vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.planes-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.planes-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 16, 22, 0.62), rgba(40, 16, 22, 0.42));
}

.planes-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 760px;
    padding-top: 90px;
    padding-bottom: 26px;
}

.planes-kicker {
    margin: 0 0 8px;
    color: #f1d6d1;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    font-size: .8rem;
}

.planes-hero-content h1 {
    color: #fff6f3;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 10px;
}

.planes-hero-content p {
    color: #f2dfdc;
}

.planes-intro {
    padding: 58px 0 20px;
}

.planes-list .container > h2 {
    margin-bottom: 14px;
}

.plan-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 18px;
    background: #fff;
    border: 1px solid #eadad6;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 24px rgba(68, 24, 34, 0.08);
}

.plan-card + .plan-card {
    margin-top: 18px;
}

.plan-gallery {
    display: grid;
    gap: 10px;
    align-content: start;
    position: sticky;
    top: 150px;
    align-self: start;
}

.plan-gallery > img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 12px;
}

.plan-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.plan-thumbs img {
    width: 100%;
    height: 126px;
    object-fit: cover;
    border-radius: 10px;
}

.plan-content h3 {
    margin-bottom: 8px;
}

.plan-content p {
    margin-bottom: 10px;
}

.plan-block {
    margin-top: 10px;
    background: #fff7f5;
    border: 1px solid #f1ddda;
    border-radius: 12px;
    padding: 12px;
}

.plan-block h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #64212f;
}

.plan-block ul {
    margin: 0;
    padding-left: 0;
    color: #445062;
    display: grid;
    gap: 6px;
    list-style: none;
}

.plan-content .btn {
    margin-top: 14px;
}

.plan-availability-list {
    font-weight: 600;
}

.plan-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-block-icon,
.plan-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7d3041;
    flex: 0 0 auto;
}

.plan-block-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #f4e0dc;
}

.plan-block-icon svg,
.plan-list-icon svg,
.plan-room-link svg {
    width: 18px;
    height: 18px;
}

.plan-list-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.plan-room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #efdfdb;
}

.plan-room-label {
    min-width: 0;
}

.plan-room-link {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7d3041;
    background: #f8ebe7;
    border: 1px solid #e9d1cb;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.plan-room-link:hover,
.plan-room-link:focus-visible {
    background: #7d3041;
    color: #fff;
    border-color: #7d3041;
    transform: translateY(-1px);
    outline: none;
}

.plan-note {
    margin: 12px 0 0;
    color: #5a4450;
    font-size: .95rem;
}

.planes-addons {
    padding-top: 14px;
}

.addons-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(178, 89, 110, 0.16), transparent 34%),
        linear-gradient(135deg, #fff8f5, #fff1ed);
    border: 1px solid #efd7d1;
    box-shadow: 0 16px 36px rgba(68, 24, 34, 0.08);
}

.addons-copy h2 {
    margin-bottom: 10px;
}

.addons-copy .planes-kicker {
    color: #8a4757;
}

.addons-copy .btn {
    margin-top: 18px;
}

.addons-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
}

.addon-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid #edd8d3;
    color: #4d3d45;
    font-weight: 600;
}

.addon-chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6e3de;
    color: #8a4757;
    flex: 0 0 auto;
}

.addon-chip-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 940px) {
    .plan-card {
        grid-template-columns: 1fr;
    }

    .plan-gallery {
        position: static;
    }

    .plan-gallery > img {
        height: 240px;
    }

    .plan-room-item {
        align-items: flex-start;
    }

    .addons-panel,
    .addons-list {
        grid-template-columns: 1fr;
    }
}
