:root {
    --lavender: #8d8eea;
    --violet: #9c43d7;
    --violet-dark: #6d55c9;
    --sky: #9bd8e8;
    --rose: #d65ad7;
    --cream: #fffaf2;
    --text: #2a2540;
    --muted: #5a5570;
    --bg: #fffaff;
    --card: #ffffff;
    --line: rgba(119, 102, 186, 0.16);
    --soft-shadow: 0 14px 36px rgba(82, 68, 145, 0.09);
    --content-max: 1120px;
    --page-gutter: clamp(16px, 3.2vw, 28px);
    --section-space: clamp(18px, 2.4vw, 28px);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Nunito", "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: "Cormorant Infant", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

p {
    margin-top: 0;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 28px;
}

.is-section {
    position: relative;
    overflow: visible;
}

.is-bg-light {
    background:
        radial-gradient(circle at 10% 9%, rgba(214, 90, 215, 0.11), transparent 24%),
        radial-gradient(circle at 92% 7%, rgba(155, 216, 232, 0.24), transparent 23%),
        linear-gradient(180deg, #fffaff 0%, #faf8ff 52%, #f6fbff 100%);
}

.is-container {
    width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 44px) 0 clamp(40px, 5vw, 56px);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--section-space);
    align-items: center;
    width: 100%;
    margin: 14px 0;
}

.row + .row {
    margin-top: 6px;
}

.row:has(> .column > hr) {
    margin: 6px 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.column {
    width: 100%;
}

.column.full {
    flex: 0 0 100%;
}

.column.half {
    flex: 1 1 50%;
}

.column.third {
    flex: 1 1 33.333%;
}

.center {
    text-align: center;
}

.display h1 {
    margin: 0 0 14px;
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1.05;
    color: var(--violet-dark);
}

.brand-logo {
    width: min(340px, 70%);
    max-width: 100%;
    height: auto;
    margin: 4px auto 12px;
    border-radius: 0;
    filter: drop-shadow(0 14px 24px rgba(109, 85, 201, 0.12));
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    width: 100%;
    max-width: 920px;
    margin: 4px auto 0;
}

.badge {
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(141, 142, 234, 0.14);
    color: var(--violet-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 5px 12px rgba(109, 85, 201, 0.05);
}

hr {
    width: 100%;
    height: 1px;
    margin: 16px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(141, 142, 234, 0.26), transparent);
}

.section-title {
    margin: 0;
    font-size: clamp(28px, 3.8vw, 40px);
    line-height: 1.15;
    color: var(--text);
}

.section-subtitle {
    max-width: 720px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.padding-20,
.contact-card,
.slide-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--soft-shadow);
}

.padding-20 {
    min-height: 220px;
    padding: 28px;
}

.cta {
    margin: 8px 0;
    padding: 52px 36px 56px;
    border: 1px solid rgba(141, 142, 234, 0.15);
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(155, 216, 232, 0.42), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(214, 90, 215, 0.14), transparent 34%),
        linear-gradient(135deg, #f4f1ff, #fdf8fd);
    box-shadow: var(--soft-shadow);
}

.cta .section-title {
    margin-bottom: 12px;
}

.cta-text {
    display: block;
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.cta-actions {
    margin-top: 26px;
}

.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--violet-dark), var(--rose));
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(109, 85, 201, 0.18);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(109, 85, 201, 0.24);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 980px;
    margin: 4px auto 0;
    padding: 10px 6px 18px;
}

.why-card {
    position: relative;
    min-height: 0;
    padding: 24px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.why-card--wide {
    grid-column: span 2;
    min-height: 0;
}

.why-card__number {
    display: block;
    color: var(--violet);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.why-card h3 {
    margin: 6px 0 8px;
    font-size: 24px;
    line-height: 1.2;
    color: var(--violet-dark);
}

.why-card p {
    margin: 0;
    color: var(--muted);
}

.program-block {
    margin: 18px 0;
    padding: 30px 28px 26px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 247, 255, 0.82));
    box-shadow: var(--soft-shadow);
}

.program-block > .row:first-child {
    margin-top: 0;
}

.program-block > .row:last-child,
.program-block > .slider-wrap:last-child {
    margin-bottom: 0;
}

.program-block + .program-block {
    margin-top: 16px;
}

.program-block .block-heading {
    margin-bottom: 0;
    font-size: clamp(26px, 3.4vw, 34px);
}

.program-block .block-intro {
    max-width: 780px;
    margin: 12px auto 0;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
}

.program-block .slider-wrap {
    margin-top: 22px;
}

.slider-wrap {
    position: relative;
    width: 100%;
}

.slider-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.slider-hint .arrow-hint {
    display: inline-block;
    animation: nudge-left 1.4s ease-in-out infinite;
}

@keyframes nudge-left {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-6px); }
}

.slider {
    display: flex;
    align-items: stretch;
    gap: clamp(12px, 2vw, 20px);
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 14px 6px 28px;
    margin: -6px -6px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lavender) transparent;
}

.slider::-webkit-scrollbar {
    height: 6px;
}

.slider::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--lavender);
}

.slide {
    flex: 0 0 min(340px, calc((100% - 20px) * 0.92));
    max-width: 100%;
    scroll-snap-align: start;
}

.news-slide {
    display: flex;
    flex: 0 0 min(360px, calc((100% - 20px) * 0.92));
    max-width: 100%;
    scroll-snap-align: start;
}

.gallery-slide {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(280px, calc((100% - 20px) * 0.78));
    max-width: 100%;
    scroll-snap-align: start;
}

.review-slide {
    flex: 0 0 min(360px, calc((100% - 20px) * 0.92));
    max-width: 100%;
    scroll-snap-align: start;
    align-self: flex-start;
}

.slider[data-slider="reviews"] {
    align-items: flex-start;
}

.slide-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
    min-height: 0;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(82, 68, 145, 0.13);
}

.slide-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.slide-card p {
    margin: 0;
    color: var(--muted);
}

.slide-card .btn {
    margin-top: 20px;
    align-self: flex-start;
}

.slide-card--children {
    background: rgba(255, 255, 255, 0.9);
}

.program-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.program-card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(155, 216, 232, 0.72), rgba(214, 90, 215, 0.24));
    font-size: 27px;
}

.program-card-label {
    display: block;
    color: var(--violet-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slide-card--children h3 {
    margin: 1px 0 0;
    font-size: 26px;
    line-height: 1.05;
}

.slide-card--children .btn {
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
    padding: 8px 4px 16px;
}

.program-grid .slider,
.program-grid .slide {
    display: contents;
}

.program-grid .slider-hint,
.program-grid .slider-nav {
    display: none;
}

.program-grid .slide-card {
    min-height: 0;
    height: 100%;
}

.program-grid .program-card--featured {
    grid-column: span 2;
}

.program-block .slider-wrap:not(.program-grid) .slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 0;
}

.program-block .slider-wrap:not(.program-grid) .slide {
    flex: auto;
}

.program-block .slider-wrap:not(.program-grid) .slide-card {
    min-height: 0;
    height: 100%;
}

.program-block .slider-hint,
.program-block .slider-nav {
    display: none;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(141, 142, 234, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--violet-dark);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(109, 85, 201, 0.1);
    transition: transform 180ms ease, background 180ms ease;
}

.slider-btn:hover {
    background: #f5f0ff;
    transform: translateY(-2px);
}

.news-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 22px 24px;
    flex: 1 1 auto;
    background: rgba(255, 255, 255, 0.98);
}

.news-content h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.45rem);
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--text);
}

.news-date {
    margin: 0;
    color: var(--violet-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 2px;
}

.news-excerpt,
.news-full {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.news-full {
    white-space: normal;
}

.news-more {
    align-self: flex-start;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--violet-dark);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 160ms ease, opacity 160ms ease;
}

.news-more:hover {
    color: var(--rose);
}

.news-more:focus-visible {
    outline: 2px solid rgba(109, 85, 201, 0.45);
    outline-offset: 3px;
    border-radius: 4px;
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(119, 102, 186, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(82, 68, 145, 0.08);
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.news-card:hover {
    box-shadow: 0 16px 34px rgba(82, 68, 145, 0.12);
}

.news-media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 180px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 28px 28px 0 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(214, 90, 215, 0.12), transparent 45%),
        linear-gradient(145deg, #f7f3ff, #eef9ff);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.news-media.is-empty {
    display: grid;
    place-items: center;
}

.news-media.is-empty::after {
    content: "Новость";
    opacity: 0.55;
}

.news-media img,
.news-media video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.gallery-slide img,
.gallery-open img,
.gallery-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px;
    background: linear-gradient(135deg, #f4f0ff, #edfaff);
}

.gallery-caption {
    margin: 10px 4px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 4px 0 18px;
}

.gallery-filter {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--violet-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(109, 85, 201, 0.08);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.gallery-filter:hover {
    transform: translateY(-2px);
    background: #f5f0ff;
}

.gallery-filter.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--violet-dark), var(--rose));
    box-shadow: 0 10px 22px rgba(109, 85, 201, 0.22);
}

.gallery-slide.is-hidden {
    display: none;
}

.gallery-placeholder {
    display: grid;
    place-items: center;
    border: 1px dashed rgba(109, 85, 201, 0.25);
    background: linear-gradient(135deg, #f4f0ff, #edfaff);
    color: var(--muted);
    font-weight: 600;
}

.review-card {
    min-height: 0;
    height: auto;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.review-card p {
    margin: 0;
}

.review-card .author {
    margin-top: 14px;
    font-weight: 800;
    color: var(--violet-dark);
}

.slider-wrap:has([data-slider="reviews"]) {
    margin-bottom: 4px;
}

.slider-wrap:has([data-slider="reviews"]) + .row {
    margin-top: 8px;
}

.contact-card {
    padding: 28px;
}

.contact-card--compact {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 28px 30px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-detail {
    flex: 1 1 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 104px;
    padding: 16px 20px;
    border-radius: 18px;
    background: #f8f7ff;
}

.contact-detail span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.contact-detail strong,
.contact-detail a {
    display: block;
    margin-top: 3px;
    color: var(--text);
    font-size: 18px;
    text-decoration: none;
}

.contact-card a {
    color: var(--violet-dark);
}

.contact-card .btn {
    color: #ffffff;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(109, 85, 201, 0.16);
}

.social-btn.max {
    background: linear-gradient(135deg, #111827, var(--violet-dark));
}

.social-btn.telegram {
    background: #2aabee;
}

.social-btn.whatsapp {
    background: #25d366;
}

.contact-card .social-btn {
    color: #ffffff;
}

.contact-card--compact .social-buttons {
    justify-content: center;
    margin-top: 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
}

.contact-actions .social-buttons {
    display: contents;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: currentColor;
}

.price-block {
    margin: 18px 0;
}

.price-block > .row:first-child {
    margin-top: 0;
}

.price-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 6px 0 22px;
}

.price-filter {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--violet-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(109, 85, 201, 0.08);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.price-filter:hover {
    transform: translateY(-2px);
    background: #f5f0ff;
}

.price-filter.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--violet-dark), var(--rose));
    box-shadow: 0 10px 22px rgba(109, 85, 201, 0.22);
}

.price-panel {
    display: none;
    padding: 26px 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 255, 0.86));
    box-shadow: var(--soft-shadow);
}

.price-panel.is-active {
    display: block;
    animation: price-fade 280ms ease;
}

@keyframes price-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-panel__head {
    text-align: center;
    margin-bottom: 20px;
}

.price-panel__head h3 {
    margin-bottom: 8px;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--violet-dark);
}

.price-panel__head p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
}

.price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding-bottom: 6px;
}

.price-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.price-table th,
.price-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: center;
    vertical-align: middle;
}

.price-table thead th {
    background: linear-gradient(180deg, #f4f1ff, #f8f7ff);
    color: var(--violet-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: pre-line;
}

.price-table thead th:first-child,
.price-table tbody th {
    text-align: left;
    white-space: normal;
    min-width: 160px;
}

.price-table tbody th {
    color: var(--text);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.7);
}

.price-table tbody td {
    color: var(--text);
    font-weight: 700;
    white-space: nowrap;
}

.price-table tbody tr.is-accent th,
.price-table tbody tr.is-accent td {
    background: linear-gradient(90deg, rgba(155, 216, 232, 0.28), rgba(214, 90, 215, 0.12));
    color: var(--violet-dark);
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
    border-bottom: 0;
}

.price-footnotes {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
}

.price-footnotes li + li {
    margin-top: 4px;
}

.price-group + .price-group {
    margin-top: 32px;
}

.price-group__title {
    margin: 0 0 16px;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--violet);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.price-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.price-card--featured {
    border-color: rgba(156, 67, 215, 0.28);
    background:
        radial-gradient(circle at 90% 0%, rgba(214, 90, 215, 0.12), transparent 42%),
        rgba(255, 255, 255, 0.96);
}

.price-card__label {
    display: block;
    margin-bottom: 6px;
    color: var(--violet);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-card h4 {
    margin: 0 0 12px;
    font-size: 24px;
    color: var(--violet-dark);
}

.price-card__cost {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 16px;
}

.price-card__cost strong {
    font-size: 28px;
    color: var(--violet-dark);
    font-weight: 800;
}

.price-card__cost span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.price-card ul {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.price-card li + li {
    margin-top: 8px;
}

.price-card__note {
    margin: 14px 0 0;
    color: var(--violet-dark);
    font-size: 13px;
    font-weight: 700;
}

.price-note {
    max-width: 760px;
    margin: 22px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.price-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.map-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f0ecff, #eaf9ff);
    color: var(--muted);
    text-align: center;
}

.row + .slider-wrap,
.row + .gallery-filters,
.row + .contact-card {
    margin-top: 8px;
}

.price-block,
.program-block,
.contact-card,
.why-grid,
.cta {
    width: 100%;
    max-width: 100%;
}

.price-filters,
.gallery-filters {
    width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --content-max: 960px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .why-card--wide {
        grid-column: span 2;
    }

    .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-grid .program-card--featured {
        grid-column: span 2;
    }

    .price-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .slide,
    .news-slide,
    .review-slide {
        flex-basis: min(320px, 72%);
    }

    .gallery-slide {
        flex-basis: min(240px, 58%);
    }
}

/* Phone / small tablet */
@media (max-width: 780px) {
    :root {
        --page-gutter: 16px;
    }

    .is-container {
        width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
        padding: 24px 0 40px;
    }

    .row {
        flex-direction: column;
        align-items: stretch;
        margin: 12px 0;
        gap: 14px;
    }

    .column.half,
    .column.third {
        flex-basis: 100%;
        width: 100%;
    }

    .brand-logo {
        width: min(260px, 72%);
        margin-bottom: 10px;
    }

    .display h1 {
        font-size: clamp(32px, 9vw, 46px);
    }

    .section-title {
        font-size: clamp(26px, 7vw, 34px);
    }

    .section-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .badge-list {
        max-width: 100%;
        gap: 8px;
    }

    .badge {
        padding: 8px 12px;
        font-size: 13px;
    }

    .program-block {
        margin: 14px 0;
        padding: 22px 14px 18px;
        border-radius: 22px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-card,
    .why-card--wide {
        grid-column: auto;
        min-height: 0;
        padding: 20px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 18px;
    }

    .program-grid .program-card--featured {
        grid-column: auto;
    }

    .program-block .slider-wrap:not(.program-grid) .slider {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta {
        padding: 28px 16px;
        border-radius: 22px;
    }

    .slide-card {
        min-height: 0;
        padding: 20px;
    }

    .contact-card--compact {
        padding: 20px 14px;
    }

    .price-panel {
        padding: 18px 12px;
        border-radius: 22px;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .price-filters {
        justify-content: flex-start;
        gap: 8px;
    }

    .price-table {
        min-width: 640px;
        font-size: 13px;
    }

    .slide,
    .news-slide,
    .review-slide,
    .gallery-slide {
        flex-basis: 100%;
        width: 100%;
    }

    .slider {
        gap: 12px;
        padding-bottom: 16px;
    }

    .slider-nav {
        margin-top: 4px;
    }

    .map-placeholder {
        min-height: 280px;
        padding: 20px;
    }
}

/* Narrow phones */
@media (max-width: 480px) {
    :root {
        --page-gutter: 14px;
    }

    .display h1 {
        font-size: clamp(28px, 10vw, 38px);
    }

    .brand-logo {
        width: min(220px, 76%);
    }

    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .social-buttons {
        width: 100%;
    }

    .social-btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .price-filter,
    .gallery-filter {
        padding: 8px 14px;
        font-size: 14px;
    }

    .news-content {
        padding: 18px 16px 20px;
    }

    .review-card {
        padding: 20px;
    }
}

/* —— Accessibility —— */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--violet-dark);
    color: #fff;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    left: 12px;
}

:focus-visible {
    outline: 3px solid var(--violet);
    outline-offset: 3px;
}

.btn:focus-visible,
.slider-btn:focus-visible,
.gallery-filter:focus-visible,
.price-filter:focus-visible,
.social-btn:focus-visible,
.news-more:focus-visible,
.gallery-open:focus-visible,
.lightbox-close:focus-visible {
    outline: 3px solid var(--violet-dark);
    outline-offset: 3px;
}

/* —— Gallery open / lightbox —— */
.gallery-open {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    border-radius: inherit;
    overflow: hidden;
}

.gallery-open img,
.gallery-open picture {
    display: block;
    width: 100%;
    height: auto;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 18, 42, 0.78);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #111;
}

.lightbox-caption {
    margin: 0;
    color: #f5f2ff;
    text-align: center;
    font-size: 15px;
    max-width: 40rem;
}

.lightbox-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--violet-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--soft-shadow);
}

/* —— Landing pages —— */
.site-top {
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    border-bottom: 1px solid var(--line);
}

.site-top-inner {
    width: min(var(--content-max), calc(100% - 2 * var(--page-gutter)));
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.site-top-brand {
    font-family: "Cormorant Infant", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--violet-dark);
    text-decoration: none;
}

.site-top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.site-top-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.site-top-nav a:hover,
.site-top-nav a[aria-current="page"] {
    color: var(--violet);
}

.site-foot {
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.site-foot-inner {
    width: min(var(--content-max), calc(100% - 2 * var(--page-gutter)));
    margin: 0 auto;
    padding: 20px 0 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 16px;
    color: var(--muted);
    font-size: 14px;
}

.site-foot a {
    color: var(--violet-dark);
    font-weight: 700;
}

.landing-page {
    padding: clamp(28px, 5vw, 56px) 0 64px;
}

.landing-kicker {
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--muted);
}

.landing-kicker a {
    color: inherit;
}

.landing-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--violet-dark);
    margin-bottom: 12px;
}

.landing-lead {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 40rem;
}

.landing-bullets {
    margin: 24px 0;
    padding-left: 1.2rem;
    color: var(--text);
}

.landing-bullets li {
    margin-bottom: 8px;
}

.landing-body {
    max-width: 40rem;
    color: var(--text);
}

.landing-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-top: 28px;
}

.landing-secondary {
    color: var(--violet-dark);
    font-weight: 800;
}

.landing-contacts {
    margin-top: 36px;
    color: var(--muted);
}

.landing-contacts a {
    color: var(--violet-dark);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 780px) {
    .lightbox {
        padding: 16px;
    }

    .lightbox-close {
        top: -4px;
        right: 0;
    }
}

