:root {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: #25211f;
    background: #eee9e3;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    background: radial-gradient( circle at top, #faf7f3 0%, #eee9e3 52%, #ded6ce 100% );
}

.placeholder {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.card {
    width: min(680px, 100%);
    padding: 64px 56px;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(77, 63, 55, 0.12);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(55, 42, 35, 0.12);
    backdrop-filter: blur(14px);
}

.brand-mark {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: #403630;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 36px;
}

.eyebrow {
    margin: 0 0 20px;
    color: #89766b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h1 {
    max-width: 560px;
    margin: 0 auto 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 7vw, 62px);
    font-weight: 400;
    line-height: 1.08;
}

.description,
.status {
    max-width: 520px;
    margin: 0 auto;
    color: #665b55;
    font-size: 17px;
    line-height: 1.75;
}

.divider {
    width: 48px;
    height: 1px;
    margin: 32px auto;
    background: #b8a79d;
}

.contact-link {
    display: inline-block;
    margin-top: 30px;
    color: #403630;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #9a887d;
    padding-bottom: 4px;
}

    .contact-link:hover {
        border-color: #403630;
    }

@media (max-width: 600px) {
    .card {
        padding: 48px 26px;
        border-radius: 20px;
    }

    .description,
    .status {
        font-size: 16px;
    }
}

.price-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid #403630;
    border-radius: 999px;
    background: #403630;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

    .price-button:hover {
        background: transparent;
        color: #403630;
        transform: translateY(-1px);
    }

.card .price-button {
    margin-top: 4px;
}

.card .contact-link {
    display: block;
    width: fit-content;
    margin: 28px auto 0;
}

.price-page {
    min-height: 100vh;
    padding: 48px 20px 80px;
}

.price-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 34px;
    color: #665b55;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

    .back-link:hover {
        color: #25211f;
    }

.price-header {
    max-width: 720px;
    margin-bottom: 64px;
}

    .price-header h1 {
        margin: 0 0 20px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(48px, 8vw, 82px);
        font-weight: 400;
        line-height: 1;
    }

    .price-header p:last-child {
        margin: 0;
        color: #665b55;
        font-size: 18px;
        line-height: 1.7;
    }

.price-section {
    margin-top: 72px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

    .section-heading span {
        color: #89766b;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .section-heading h2 {
        margin: 8px 0 8px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 400;
    }

    .section-heading p {
        margin: 0;
        color: #665b55;
        line-height: 1.6;
    }

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.price-card,
.deal-card,
.package-card {
    padding: 30px;
    border: 1px solid rgba(77, 63, 55, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 45px rgba(55, 42, 35, 0.08);
    backdrop-filter: blur(10px);
}

    .price-card h3,
    .deal-card h3,
    .package-card h3 {
        margin: 0;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 26px;
        font-weight: 400;
    }

.price-table {
    width: 100%;
    margin-top: 22px;
    border-collapse: collapse;
}

    .price-table th,
    .price-table td {
        padding: 12px 0;
        border-bottom: 1px solid rgba(77, 63, 55, 0.1);
        text-align: left;
    }

    .price-table th {
        color: #89766b;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

        .price-table th:last-child,
        .price-table td:last-child {
            width: 110px;
            text-align: right;
            white-space: nowrap;
        }

    .price-table tbody tr:last-child td {
        border-bottom: 0;
    }

.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.deal-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
}

.deal-prices {
    display: flex;
    margin-top: 26px;
    flex-direction: column;
    gap: 8px;
    color: #665b55;
}

    .deal-prices strong {
        color: #403630;
        font-size: 18px;
    }

.package-grid {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.package-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

    .package-heading > div {
        display: flex;
        flex-shrink: 0;
        flex-direction: column;
        gap: 5px;
        text-align: right;
    }

    .package-heading span {
        color: #665b55;
        font-size: 14px;
    }

    .package-heading strong {
        color: #403630;
    }

.package-card p {
    margin: 22px 0 0;
    color: #665b55;
    line-height: 1.6;
}

.package-notice {
    margin-top: 24px;
    padding: 28px;
    border-radius: 22px;
    background: #403630;
    color: #ffffff;
    text-align: center;
}

    .package-notice strong {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
        font-weight: 400;
    }

    .package-notice p {
        margin: 12px 0 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.6;
    }

.price-footer {
    margin-top: 72px;
    text-align: center;
}

    .price-footer p {
        margin: 0 0 18px;
        color: #665b55;
    }

@media (max-width: 800px) {
    .price-grid,
    .package-grid,
    .deal-grid {
        grid-template-columns: 1fr;
    }

    .deal-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .price-page {
        padding: 30px 16px 60px;
    }

    .price-header {
        margin-bottom: 48px;
    }

    .price-section {
        margin-top: 52px;
    }

    .price-card,
    .deal-card,
    .package-card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .price-table th,
    .price-table td {
        padding: 11px 0;
        font-size: 14px;
    }

        .price-table th:last-child,
        .price-table td:last-child {
            width: 90px;
        }

    .package-heading {
        flex-direction: column;
    }

        .package-heading > div {
            flex-direction: row;
            flex-wrap: wrap;
            text-align: left;
        }
}
