/* Prices page — elegant dark style */
.prices-page {
    padding: 6rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.prices-back {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.prices-back:hover {
    color: var(--color-accent);
}

/* Page header */
.prices-page-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.prices-page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

/* Section block */
.price-section-block {
    margin-bottom: 4.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-section-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.price-section-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-section-subtitle {
    text-align: center;
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

/* Packages grid — adaptive 1–3 columns */
.price-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Одна карточка — по центру, не на всю ширину */
.price-packages-grid:has(.price-package-card:only-child) {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 900px) {
    .price-packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .price-packages-grid:has(.price-package-card:only-child) {
        max-width: 380px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .price-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-packages-grid:has(.price-package-card:only-child) {
        max-width: 380px;
    }
}

.price-package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.price-package-card:hover {
    border-color: rgba(201, 168, 108, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.price-package-image {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.price-package-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-package-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--color-text);
}

.price-package-details {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.price-package-details li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-package-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.6rem;
    top: 0.35em;
}

.price-package-amount {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.price-package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.75rem;
    background: rgba(26, 26, 26, 0.9);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    margin-top: auto;
}

.price-package-btn:hover {
    background: rgba(40, 40, 40, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

.price-package-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
}

.price-section-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-muted);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
}

/* FAQ section */
.price-faq-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .price-faq-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.price-faq-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.price-faq-intro {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.price-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.price-faq-question:hover {
    color: var(--color-accent);
}

.price-faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-accent);
    transition: transform 0.3s;
    border: 1px solid rgba(201, 168, 108, 0.4);
    border-radius: 50%;
}

.price-faq-item.open .price-faq-icon {
    transform: rotate(45deg);
}

.price-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.price-faq-item.open .price-faq-answer {
    max-height: 600px;
}

.price-faq-answer-inner {
    padding: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.75;
}

.prices-page-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 4rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Пустое состояние */
.prices-page .gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-muted);
}
