@font-face {
    font-family: "Asana_font";
    src: url("../fonts/Asana_font-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-500.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Comfortaa";
    src: url("../fonts/comfortaa-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --site-purple: #9b06fe;
    --site-teal: #17bebb;
    --site-black: #2c0735;
    --site-white: #fdfdfd;
    --site-container: 1170px;
    --site-title-font: "Asana_font", "Comfortaa", sans-serif;
    --site-body-font: "Montserrat", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    min-width: 320px;
    margin: 0;
    background: #fff;
    color: #242124;
    font-family: var(--site-body-font);
}

html.site-menu-open,
html.site-menu-open body { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; }

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.site-container {
    width: min(calc(100% - 48px), var(--site-container));
    margin-inline: auto;
}

.hero {
    position: relative;
    height: 917px;
    overflow: hidden;
    color: var(--site-white);
    background-image: url("../images/hero-desktop-background.png");
    background-position: center;
    background-size: cover;
}

.hero::after {
    display: none;
    content: "";
}

.site-header {
    position: absolute;
    z-index: 5;
    inset: 46px 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 58px;
}

.site-header__logo {
    flex: 0 0 auto;
    width: 219px;
}

.site-header__logo img { width: 100%; height: auto; }

.site-header__navigation {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.site-header__navigation a {
    text-decoration: none;
    transition: opacity .2s ease;
}

.site-header__navigation a:hover { opacity: .7; }

.site-header__cart {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    margin-left: auto;
    text-decoration: none;
}

.site-header__cart img { width: 38px; height: 38px; }

.site-header__cart span {
    position: absolute;
    top: -8px;
    right: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #df6ff6;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.site-header__menu-button {
    display: block;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header__menu-button img { width: 38px; height: 38px; }

.site-menu {
    position: fixed;
    z-index: 100;
    inset: 0;
    visibility: hidden;
    background: transparent;
    color: var(--site-black);
    pointer-events: none;
    opacity: 0;
    transition: visibility .32s, opacity .32s ease;
}

.site-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.site-menu__panel {
    position: relative;
    width: 375px;
    min-height: 100%;
    overflow-y: auto;
    background: #f3edf8;
    box-shadow: 20px 0 45px rgba(44, 7, 53, .08);
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.22, .75, .24, 1);
}

.site-menu.is-open .site-menu__panel { transform: translateX(0); }

.site-menu__close {
    position: absolute;
    z-index: 2;
    top: 59px;
    right: 24px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--site-black);
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
}

.site-menu__close:hover { background: rgba(155, 6, 254, .08); transform: rotate(4deg); }
.site-menu__close:focus-visible,
.site-menu a:focus-visible { outline: 2px solid var(--site-purple); outline-offset: 4px; }

.site-menu__navigation {
    width: 279px;
    padding-top: 59px;
    margin-left: 48px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.site-menu__navigation a {
    display: block;
    width: max-content;
    max-width: 100%;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.site-menu__navigation a:hover { color: var(--site-purple); transform: translateX(3px); }
.site-menu__primary { display: grid; gap: 24px; }

.site-menu__divider {
    display: block;
    width: 279px;
    height: 1px;
    background: rgba(44, 7, 53, .22);
}

.site-menu__divider--primary { margin: 40px 0 25px; }
.site-menu__photos { margin-bottom: 24px; }
.site-menu__secondary { display: grid; gap: 24px; }
.site-menu__ticket-mobile { display: none !important; }
.site-menu__divider--secondary { margin: 39px 0 25px; }

.site-menu__contact {
    position: absolute;
    right: 48px;
    bottom: 48px;
    left: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-menu__phone,
.site-menu__email { text-decoration: none; }

.site-menu__phone {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.site-menu__email { margin-top: 7px; font-size: 15px; line-height: 19px; }

.site-menu__socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.site-menu__social {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform .2s ease;
}

.site-menu__social:hover { transform: translateY(-2px); }
.site-menu__social img { width: 32px; height: 32px; }

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 210px;
}

.hero__title {
    width: min(784px, 100%);
    margin: 0;
    font-family: var(--site-title-font);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero__facts {
    display: grid;
    gap: 8px;
    margin-top: 40px;
}

.hero__fact {
    display: flex;
    align-items: center;
    min-height: 40px;
    gap: 16px;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
}

.hero__fact img { flex: 0 0 40px; }

.hero__fact span { display: flex; align-items: center; gap: 14px; }

.hero__fact i {
    display: inline-block;
    width: 2px;
    height: 28px;
    background: rgba(255,255,255,.9);
}

.hero__actions {
    display: flex;
    gap: 20px;
    margin-top: 48px;
}

.site-action-button {
    transition: transform .2s ease, box-shadow .2s ease;
    will-change: transform;
}

.site-action-button:hover { transform: translateY(-2px); }
.site-action-button:active { transform: translateY(0); }
.site-action-button:focus-visible { outline: 3px solid rgba(255, 255, 255, .82); outline-offset: 4px; }

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 275px;
    height: 86px;
    gap: 18px;
    border-radius: 60px;
    font-family: "Comfortaa", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.hero-button--primary {
    background: var(--site-purple);
    color: #fff;
    box-shadow: 0 19px 34px rgba(155, 6, 254, .24);
}

.hero-button--secondary {
    background: var(--site-white);
    color: var(--site-purple);
}

.hero-button img { flex: 0 0 40px; width: 40px; height: 40px; }

.hero__scroll-hint {
    position: absolute;
    z-index: 2;
    top: 210px;
    left: 80px;
    display: flex;
    height: 318px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero__scroll-hint span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero__scroll-hint img { width: 15px; height: 121px; }

.hero__smoke {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 207px;
    max-width: none;
    opacity: 0;
}

.site-socials {
    position: fixed;
    z-index: 20;
    top: 264px;
    right: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
}

.site-socials__link {
    display: block;
    width: 50px;
    height: 50px;
    transition: filter .2s ease;
}

.site-socials__link:hover { filter: brightness(1.08); }
.site-socials__link img { width: 50px; height: 50px; }

.builder-section {
    position: relative;
    background: var(--section-background, #fff);
}

.section-smoke {
    position: absolute;
    z-index: 5;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 207px;
    pointer-events: none;
    -webkit-mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
    mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
}

.section-smoke--top {
    top: 0;
    background: var(--smoke-top-color, #fff);
}

.section-smoke--bottom {
    bottom: 0;
    background: var(--smoke-bottom-color, #fff);
    transform: scaleY(-1);
}

.info-section {
    overflow: hidden;
    padding: 64px 0 50px;
    color: var(--site-black);
}

.info-section__inner { position: relative; z-index: 1; }

.info-section__header { text-align: center; }

.info-section__title {
    display: grid;
    width: fit-content;
    min-width: 408px;
    min-height: 74px;
    margin: 0 auto;
    padding: 0 72px;
    place-items: center;
    background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat;
    color: var(--site-white);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.info-section__title span { transform: translateY(-1px); }

.info-section__subtitle {
    width: min(807px, 100%);
    margin: 32px auto 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    text-wrap: balance;
}

.info-section__cards {
    display: grid;
    gap: 128px;
    margin-top: 79px;
}

.info-card {
    position: relative;
    display: grid;
    min-height: 504px;
    align-items: center;
    gap: 92px;
}

.info-card--odd { grid-template-columns: minmax(0, 500px) minmax(0, 568px); }
.info-card--even { grid-template-columns: minmax(0, 568px) minmax(0, 500px); }
.info-card--odd .info-card__content { grid-column: 1; }
.info-card--odd .info-card__photo { grid-column: 2; }
.info-card--even .info-card__photo { grid-column: 1; grid-row: 1; }
.info-card--even .info-card__content { grid-column: 2; grid-row: 1; }

.info-card__title {
    margin: 0 0 32px;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
}

.info-card__title--long {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.info-card__richtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.info-card__richtext > :first-child { margin-top: 0; }
.info-card__richtext > :last-child { margin-bottom: 0; }
.info-card__richtext p { margin: 0 0 24px; }
.info-card__richtext :is(h2, h3, h4, h5, h6) { margin: 28px 0 12px; line-height: 1.3; }
.info-card__richtext a { color: var(--site-purple); }
.info-card__richtext ul,
.info-card__richtext ol { display: grid; gap: 16px; margin: 0; padding-left: 22px; }
.info-card__richtext ul { list-style: none; }
.info-card__richtext ul li { position: relative; }
.info-card__richtext ul li::before { position: absolute; top: .68em; left: -22px; width: 6px; height: 6px; border-radius: 50%; background: var(--site-teal); content: ""; }

.info-card__icon-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
}

.info-card__icon-list li { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 15px; }
.info-card__icon { display: grid; width: 44px; min-height: 32px; align-items: center; color: var(--site-teal); }
.info-card__icon > span { font-size: 25px; line-height: 1.2; letter-spacing: -1.25px; white-space: nowrap; }
.info-card__icon img { width: 32px; height: 32px; object-fit: contain; }

.info-card__photo {
    position: relative;
    width: 568px;
    height: 504px;
    margin: 0;
    padding: 16px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(238, 228, 244, .4);
}

.info-card__photo > img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.info-card__photo::after {
    position: absolute;
    z-index: 1;
    inset: 16px;
    border-radius: 16px;
    background: linear-gradient(155.6deg, rgba(196, 0, 227, .2), rgba(24, 207, 190, .2));
    content: "";
    pointer-events: none;
}

.info-card__photo figcaption {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 32px;
    left: 34px;
    padding: 14px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .58);
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    backdrop-filter: blur(7px);
}

.image-cta {
    height: 808px;
    overflow: hidden;
    color: #fff;
}

.image-cta__picture,
.image-cta__overlay {
    position: absolute;
    inset: 0;
}

.image-cta__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 47%;
}

.image-cta__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(71, 18, 91, .2), rgba(23, 10, 29, .08) 48%, rgba(118, 78, 22, .13)),
        rgba(24, 16, 27, .46);
}

.image-cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    height: 100%;
    place-items: center;
}

.image-cta__title {
    width: 100%;
    margin: 0;
    font-family: var(--site-title-font);
    font-size: 53px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
}

.image-cta__title mark {
    display: inline-block;
    margin-inline: .04em;
    padding: .07em .25em .12em;
    background: url("../images/cta-highlight-brush.svg") center / 100% 100% no-repeat;
    color: inherit;
    font: inherit;
    line-height: .98;
}

.final-cta {
    height: 600px;
    overflow: hidden;
    color: #fff;
}

.final-cta__background,
.final-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.final-cta__background {
    object-fit: cover;
    object-position: center 49%;
}

.final-cta__overlay {
    z-index: 1;
    background:
        linear-gradient(249deg, rgba(196, 0, 227, .15), rgba(255, 205, 77, .15)),
        rgba(30, 30, 30, .55);
}

.final-cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    height: 100%;
    grid-template-columns: 630px 1fr;
    padding-top: 255px;
}

.final-cta__content::after {
    position: absolute;
    top: 207px;
    left: 663px;
    width: 298px;
    height: 102px;
    background: url("../images/final-cta-arrow.svg") center / contain no-repeat;
    content: "";
    pointer-events: none;
    transform: rotate(30.5deg);
    transform-origin: left top;
}

.final-cta__title {
    width: 630px;
    align-self: start;
    margin: 0;
    font-family: var(--site-title-font);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.final-cta__title mark {
    display: inline-block;
    margin-inline: .04em;
    padding: .05em .25em .12em;
    background: url("../images/cta-highlight-brush.svg") center / 100% 100% no-repeat;
    color: inherit;
    font: inherit;
    line-height: .98;
}

.final-cta__button {
    z-index: 1;
    display: inline-flex;
    width: 325px;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    align-self: start;
    justify-self: end;
    gap: 16px;
    margin-top: 159px;
    padding: 20px 42px;
    border-radius: 60px;
    background: var(--site-teal);
    box-shadow: 0 19px 17px rgba(24, 207, 190, .24);
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.final-cta__button img {
    width: 30px;
    height: 33px;
    flex: 0 0 auto;
    object-fit: contain;
}

.place-section {
    padding: 50px 0 62px;
    color: var(--site-black);
}

.place-section__inner { position: relative; z-index: 1; }

.place-section__title {
    display: grid;
    width: 397px;
    min-height: 74px;
    place-items: center;
    margin: 0 auto;
    padding: 0 62px;
    background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat;
    color: #fff;
    font-family: var(--site-title-font);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.place-facts {
    display: flex;
    width: min(1020px, 100%);
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin: 36px auto 40px;
    padding: 0;
    list-style: none;
}

.place-fact {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    line-height: 1.45;
}

.place-fact img { flex: 0 0 54px; width: 54px; height: 54px; object-fit: contain; }

.place-outer-tabs {
    display: grid;
    width: min(765px, 100%);
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    margin: 0 auto 38px;
    overflow: hidden;
    border: 1px solid #9b06fe;
    border-radius: 10px;
}

.place-outer-tab {
    min-height: 60px;
    padding: 10px 22px;
    border: 0;
    border-right: 1px solid #9b06fe;
    background: transparent;
    color: #9b06fe;
    font: 500 18px/1.2 var(--site-body-font);
    cursor: pointer;
}

.place-outer-tab:last-child { border-right: 0; }
.place-outer-tab.is-active { background: #9b06fe; color: #fff; }
.place-outer-select { display: none; }

.place-outer-panel {
    display: grid;
    min-height: 566px;
    grid-template-columns: 500px minmax(0, 1fr);
    grid-template-rows: 104px minmax(0, 1fr);
    column-gap: 70px;
    padding: 10px 28px 10px 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 26px rgba(44, 7, 53, .12);
}

.place-outer-panel[hidden],
.place-content-panel[hidden] { display: none; }

.place-content-panels,
.place-content-panel:not([hidden]) { display: contents; }

.place-inner-tabs-wrap {
    position: relative;
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    align-items: center;
}

.place-inner-tabs {
    display: grid;
    width: 100%;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    overflow: hidden;
    border: 1px solid #9b06fe;
    border-radius: 10px;
}

.place-inner-tab {
    display: flex;
    min-width: 0;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 8px 14px;
    border: 0;
    border-right: 1px solid #9b06fe;
    background: #fff;
    color: var(--site-black);
    font: 400 16px/1.2 var(--site-body-font);
    cursor: pointer;
}

.place-inner-tab:last-child { border-right: 0; }
.place-inner-tab.is-active { background: #f1d9ff; }
.place-inner-tab img { width: 24px; height: 24px; object-fit: contain; }

.place-inner-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 28px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--site-black);
    font: 300 40px/1 var(--site-body-font);
    transform: translateY(-50%);
    cursor: pointer;
}

.place-inner-arrow--prev { left: -34px; }
.place-inner-arrow--next { right: -34px; }

.place-gallery {
    display: grid;
    grid-column: 1;
    grid-row: 1 / 3;
    grid-template-rows: 420px 1fr;
    gap: 10px;
}

.place-gallery__main {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.place-gallery__main::after {
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(180deg, transparent, rgba(24, 9, 29, .32));
    content: "";
    pointer-events: none;
}

.place-gallery__main > img { width: 100%; height: 100%; object-fit: cover; }

.place-gallery__dots {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 12px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.place-gallery__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.place-gallery__dot.is-active { background: #fff; }

.place-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.place-gallery__thumb {
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #eee;
    cursor: pointer;
}

.place-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.place-content-panel__copy {
    position: relative;
    display: flex;
    min-height: 0;
    grid-column: 2;
    grid-row: 2;
    flex-direction: column;
    padding-top: 20px;
    overflow: hidden;
}

.place-richtext {
    max-height: 376px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
}

.place-richtext > :first-child { margin-top: 0; }
.place-richtext > :last-child { margin-bottom: 0; }
.place-richtext ul, .place-richtext ol { margin: 0; padding-left: 24px; }
.place-richtext li + li { margin-top: 13px; }

.place-more-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 12px;
    color: #9b06fe;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.place-more-link span { display: inline-block; margin-left: 6px; font-size: 21px; transition: transform .2s ease; }
.place-more-link:hover span { transform: translateX(4px); }

.events-section {
    min-height: 1189px;
    overflow: hidden;
    padding: 220px 0 150px;
    color: var(--site-black);
    isolation: isolate;
}

.events-section__background { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.events-section__overlay { position: absolute; z-index: 0; inset: 0; background: linear-gradient(251deg, rgba(196, 0, 227, .15), rgba(255, 205, 77, .15)), rgba(30, 30, 30, .55); pointer-events: none; }
.events-section__inner { position: relative; z-index: 1; text-align: center; }
.events-section__title { display: grid; width: 500px; min-height: 74px; place-items: center; margin: 0 auto; padding: 0 70px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.events-filter { position: relative; z-index: 5; display: block; width: 370px; height: 62px; margin: 39px auto 40px; text-align: left; }
.events-filter:not(.is-enhanced)::after { position: absolute; top: 0; right: 62px; width: 1px; height: 100%; background: #e8deeb; content: ""; pointer-events: none; }
.events-filter:not(.is-enhanced)::before { position: absolute; z-index: 1; top: 22px; right: 24px; width: 12px; height: 12px; border-right: 2px solid var(--site-purple); border-bottom: 2px solid var(--site-purple); content: ""; transform: rotate(45deg); pointer-events: none; }
.events-filter select { width: 100%; height: 100%; padding: 0 86px 0 40px; border: 1px solid #e8deeb; border-radius: 666px; outline: 0; background: #fdfdfd; color: var(--site-black); font: 600 15px/1.2 var(--site-body-font); text-transform: uppercase; appearance: none; cursor: pointer; }
.events-filter.is-enhanced select { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.site-select__trigger { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0, 1fr) 62px; width: 100%; height: 100%; align-items: center; padding: 0; overflow: hidden; border: 1px solid #e8deeb; border-radius: 666px; background: #fdfdfd; color: var(--site-black); font: 600 15px/1.2 var(--site-body-font); text-align: left; text-transform: uppercase; cursor: pointer; }
.site-select__value { overflow: hidden; padding: 0 20px 0 39px; text-overflow: ellipsis; white-space: nowrap; }
.site-select__chevron { position: relative; display: grid; width: 100%; height: 100%; place-items: center; border-left: 1px solid #e8deeb; }
.site-select__chevron::after { width: 12px; height: 12px; margin-top: -6px; border-right: 2px solid var(--site-purple); border-bottom: 2px solid var(--site-purple); content: ""; transform: rotate(45deg); transition: margin .18s ease, transform .18s ease; }
.site-select.is-open .site-select__chevron::after { margin-top: 6px; transform: rotate(225deg); }
.site-select__menu { position: absolute; z-index: 20; top: calc(100% + 10px); right: 0; left: 0; display: grid; max-height: 260px; gap: 4px; overflow-y: auto; padding: 8px; border: 1px solid #e8deeb; border-radius: 22px; background: #fdfdfd; box-shadow: 0 18px 45px rgba(44, 7, 53, .18); }
.site-select__menu[hidden] { display: none; }
.site-select__option { width: 100%; min-height: 44px; padding: 10px 18px; border: 0; border-radius: 14px; background: transparent; color: var(--site-black); font: 600 13px/1.35 var(--site-body-font); text-align: left; text-transform: uppercase; cursor: pointer; transition: background-color .16s ease, color .16s ease; }
.site-select__option:hover,
.site-select__option:focus-visible { outline: 0; background: rgba(155, 6, 254, .09); color: var(--site-purple); }
.site-select__option.is-selected { background: var(--site-purple); color: #fff; }
.events-carousel { position: relative; }
.events-carousel__viewport { width: 100vw; height: 450px; margin-left: calc(50% - 50vw); overflow: hidden; touch-action: pan-y; cursor: grab; }
.events-carousel__viewport:active { cursor: grabbing; }
.events-carousel__track { position: relative; width: 100%; height: 100%; --carousel-drag: 0px; }
.event-card { position: absolute; top: 0; left: 50%; display: block; width: 370px; height: 450px; overflow: hidden; padding: 10px; border-radius: 16px; background: #fdfdfd; box-shadow: 0 70px 80px -30px rgba(105, 76, 126, .15); color: var(--site-black); text-align: left; text-decoration: none; transform: translate3d(calc(-50% + var(--carousel-offset, 0px) + var(--carousel-drag)), 0, 0) scale(var(--carousel-scale, 1)); transform-origin: center; will-change: transform; transition: opacity .28s ease, transform .45s cubic-bezier(.22, .75, .23, 1), visibility .45s; }
.event-card[hidden] { display: none; }
.event-card.is-active { z-index: 2; }
.event-card.is-side { opacity: .4; }
.event-card.is-offstage { visibility: hidden; opacity: 0; pointer-events: none; }
.event-card--clone { pointer-events: none; }
.events-carousel__track.is-dragging .event-card,
.events-carousel__track.is-jumping .event-card { transition: none; }
.event-card__image { position: relative; height: 220px; overflow: hidden; border-radius: 8px; }
.event-card__image::after { position: absolute; inset: 0; background: linear-gradient(162deg, rgba(196, 0, 227, .12), rgba(24, 207, 190, .12)); content: ""; pointer-events: none; }
.event-card__image img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { display: flex; height: 210px; flex-direction: column; padding: 24px 22px 18px; }
.event-card__type { color: var(--event-type-color); font-size: 12px; font-weight: 600; line-height: 18px; letter-spacing: 3.6px; text-transform: uppercase; }
.event-card h3 { margin: 1px 0 0; font-size: 20px; font-weight: 700; line-height: 28px; }
.event-card p { display: -webkit-box; margin: 1px 0 0; overflow: hidden; color: var(--site-black); font-size: 14px; line-height: 23px; letter-spacing: -.14px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.event-card__venue { display: flex; width: fit-content; align-items: center; gap: 8px; margin-top: auto; padding: 5px 15px; border-radius: 4px; background: color-mix(in srgb, var(--event-venue-color) 10%, transparent); color: var(--event-venue-color); font-size: 12px; font-weight: 600; line-height: 22px; }
.event-card__venue i { width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: currentColor; }
.carousel-arrow { position: absolute; z-index: 5; display: grid; width: var(--carousel-arrow-size, 44px); height: var(--carousel-arrow-size, 44px); place-items: center; padding: 0; border: 0; border-radius: 50%; background: var(--site-purple); box-shadow: 0 5px 16px rgba(155, 6, 254, .3); color: #fff; cursor: pointer; transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.carousel-arrow:hover:not(:disabled) { box-shadow: 0 8px 22px rgba(155, 6, 254, .4); transform: scale(1.05); }
.carousel-arrow > span { display: block; width: 11px; height: 11px; border-top: 3px solid currentColor; border-right: 3px solid currentColor; }
.carousel-arrow--previous > span { transform: rotate(-135deg); }
.carousel-arrow--next > span { transform: rotate(45deg); }
.carousel-arrow:disabled { opacity: .35; cursor: default; }
.events-carousel__arrow { top: 203px; --carousel-arrow-size: 44px; }
.events-carousel__arrow--prev { left: -22px; }
.events-carousel__arrow--next { right: -22px; }
.events-carousel__pagination { display: none; min-height: 10px; justify-content: center; gap: 9px; margin-top: 15px; }
.events-carousel__pagination button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(253, 253, 253, .5); cursor: pointer; }
.events-carousel__pagination button.is-active { background: var(--site-purple); }
.events-section__all, .photos-section__more { display: inline-grid; width: 260px; min-height: 86px; place-items: center; margin-top: 40px; padding: 20px 32px; border-radius: 60px; background: var(--site-teal); box-shadow: 0 19px 17px rgba(24, 207, 190, .24); color: #fff; font-family: "Comfortaa", sans-serif; font-size: 18px; font-weight: 600; line-height: 22px; text-decoration: none; text-transform: uppercase; }
.events-section__empty { margin: 80px auto; font-size: 20px; }

.team-section { min-height: 783px; overflow: hidden; padding: 15px 0 96px; color: var(--site-black); }
.team-section:has(.section-smoke--top) { min-height: 990px; padding-top: 222px; }
.team-section__inner { position: relative; z-index: 6; text-align: center; }
.team-section__title { display: grid; width: 687px; min-height: 74px; place-items: center; margin: 0 auto 50px; padding: 0 90px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.team-carousel__viewport { height: 490px; }
.team-card { height: 490px; }
.team-card__image { height: 250px; }
.team-card__body { display: flex; height: 220px; flex-direction: column; padding: 23px 22px 20px; }
.team-card__position { overflow: hidden; color: var(--site-purple); font-size: 12px; font-weight: 600; line-height: 18px; letter-spacing: 3.6px; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.team-card h3 { margin: 1px 0 0; font-size: 20px; font-weight: 700; line-height: 28px; }
.team-card p { display: -webkit-box; margin: 1px 0 0; overflow: hidden; font-size: 14px; line-height: 24px; letter-spacing: -.14px; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.team-carousel__arrow { top: 223px; }
.team-carousel__pagination { display: flex; margin-top: 48px; }
.team-carousel__pagination button { background: #9b8ea1; transition: width .2s ease, border-radius .2s ease; }
.team-carousel__pagination button.is-active { width: 30px; border-radius: 8px; }
.team-section__empty { margin: 90px auto; font-size: 20px; }

.articles-section { min-height: 726px; overflow: hidden; padding: 0; color: var(--site-black); }
.articles-section__inner { position: relative; z-index: 6; text-align: center; }
.articles-section__title { display: grid; width: 497px; min-height: 74px; place-items: center; margin: 0 auto 44px; padding: 0 70px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.articles-carousel__viewport { height: 420px; }
.article-card { height: 420px; }
.article-card__image { height: 220px; }
.article-card__body { display: flex; height: 180px; flex-direction: column; padding: 23px 22px 18px; }
.article-card h3 { display: -webkit-box; min-height: 50px; margin: 0; overflow: hidden; font-size: 18px; font-weight: 700; line-height: 25.2px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-card p { display: -webkit-box; margin: 6px 0 0; overflow: hidden; font-size: 14px; line-height: 24px; letter-spacing: -.14px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.articles-carousel__arrow { top: 188px; }
.articles-carousel__pagination { display: flex; min-height: 6px; margin-top: 48px; }
.articles-carousel__pagination button { width: 6px; height: 6px; background: #9b8ea1; transition: width .2s ease, border-radius .2s ease; }
.articles-carousel__pagination button.is-active { width: 30px; border-radius: 8px; }
.articles-section__more { display: inline-grid; width: 248px; min-height: 86px; place-items: center; margin-top: 44px; padding: 20px 32px; border-radius: 60px; background: var(--site-teal); box-shadow: 0 19px 17px rgba(24, 207, 190, .24); color: #fff; font-family: "Comfortaa", sans-serif; font-size: 18px; font-weight: 600; line-height: 22px; text-decoration: none; text-transform: uppercase; }
.articles-section__empty { margin: 90px auto; font-size: 20px; }

.teachers-section { min-height: 1030px; overflow: hidden; padding: 82px 0 110px; color: var(--site-black); }
.teachers-section__inner { text-align: center; }
.teachers-section__title { display: grid; width: 720px; min-height: 74px; place-items: center; margin: 0 auto; padding: 0 100px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.teachers-filters { position: relative; z-index: 5; display: flex; width: 870px; gap: 30px; margin: 40px 0 40px; }
.teachers-filter { position: relative; width: 420px; height: 62px; text-align: left; }
.teachers-filter:not(.is-enhanced)::after { position: absolute; top: 0; right: 62px; width: 1px; height: 100%; background: #e8deeb; content: ""; pointer-events: none; }
.teachers-filter:not(.is-enhanced)::before { position: absolute; z-index: 1; top: 22px; right: 24px; width: 12px; height: 12px; border-right: 2px solid var(--site-purple); border-bottom: 2px solid var(--site-purple); content: ""; transform: rotate(45deg); pointer-events: none; }
.teachers-filter select { width: 100%; height: 100%; padding: 0 86px 0 39px; border: 1px solid #e8deeb; border-radius: 666px; outline: 0; background: #fdfdfd; color: var(--site-black); font: 600 15px/1.2 var(--site-body-font); text-transform: uppercase; appearance: none; }
.teachers-filter.is-enhanced select { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.teachers-desktop { display: block; }
.teacher-detail-stack { height: 420px; }
.teacher-detail { display: grid; height: 420px; grid-template-columns: minmax(0, 1fr) 420px; overflow: hidden; border-radius: 16px; background: #fdfdfd; box-shadow: 0 70px 80px -30px rgba(105, 76, 126, .15); text-align: left; animation: teacher-detail-in .32s ease both; }
.teacher-detail[hidden] { display: none; }
@keyframes teacher-detail-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.teacher-detail__copy { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 35px 53px 30px 64px; }
.teacher-detail__heading { display: flex; min-height: 48px; align-items: flex-start; justify-content: space-between; gap: 24px; }
.teacher-detail h3 { margin: 0; font-size: 26px; line-height: 28px; }
.teacher-workplace { margin: 8px 0 0; opacity: .4; font-size: 14px; font-weight: 600; line-height: 18px; letter-spacing: 4.2px; text-transform: uppercase; }
.teacher-program { display: inline-flex; width: fit-content; flex: 0 0 auto; align-items: center; gap: 10px; padding: 10px 15px; border-radius: 4px; background: rgba(155, 6, 254, .1); color: var(--site-purple); font-size: 14px; font-weight: 600; line-height: 22px; white-space: nowrap; }
.teacher-program i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.teacher-detail__description { display: -webkit-box; max-height: 240px; margin-top: 25px; overflow: hidden; font-size: 16px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 9; }
.teacher-detail__description > :first-child { margin-top: 0; }
.teacher-detail__description > :last-child { margin-bottom: 0; }
.teacher-more { align-self: flex-start; margin-top: auto; color: var(--site-purple); font-size: 14px; font-weight: 600; line-height: 20px; text-decoration: none; text-transform: lowercase; }
.teacher-more span { display: inline-block; margin-left: 2px; transition: transform .2s ease; }
.teacher-more:hover span { transform: translateX(4px); }
.teacher-detail__photo { width: 400px; height: 400px; margin: 10px; overflow: hidden; border-radius: 8px; }
.teacher-detail__photo img { width: 400px; height: 400px; object-fit: cover; }
.teacher-thumbs-wrap { --teacher-thumb-size: 130px; --teacher-thumb-gap: 18px; position: relative; margin-top: 20px; }
.teacher-thumbs { width: 100%; overflow: hidden; }
.teacher-thumbs__track { display: flex; width: max-content; gap: var(--teacher-thumb-gap); margin-inline: auto; transition: transform .32s ease; will-change: transform; }
.teacher-thumb { display: flex; width: var(--teacher-thumb-size); min-width: var(--teacher-thumb-size); height: 186px; flex: 0 0 var(--teacher-thumb-size); flex-direction: column; align-items: center; justify-content: flex-start; padding: 0; border: 0; background: transparent; color: var(--site-black); cursor: pointer; opacity: .4; transition: opacity .22s ease; }
.teacher-thumb[hidden] { display: none; }
.teacher-thumb:hover { opacity: .72; }
.teacher-thumb.is-active { opacity: 1; }
.teacher-thumb > span { display: block; width: var(--teacher-thumb-size); height: var(--teacher-thumb-size); flex: 0 0 var(--teacher-thumb-size); overflow: hidden; border-radius: 8px; }
.teacher-thumb img { width: 100%; height: 100%; object-fit: cover; }
.teacher-thumb strong { display: -webkit-box; width: var(--teacher-thumb-size); min-height: 44px; margin-top: 12px; overflow: hidden; font-size: 16px; line-height: 22px; text-align: center; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.teacher-thumbs__arrow { top: 42px; --carousel-arrow-size: 44px; }
.teacher-thumbs__arrow--prev { left: -22px; }
.teacher-thumbs__arrow--next { right: -22px; }
.teachers-pagination { display: flex; min-height: 10px; justify-content: center; gap: 7px; margin-top: 42px; }
.teachers-pagination button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(155, 6, 254, .2); }
.teachers-pagination button.is-active { width: 20px; border-radius: 4px; background: var(--site-purple); }
.teachers-mobile { display: none; }
.teachers-section__empty { margin: 80px auto; font-size: 20px; }
.teachers-section.is-empty .teachers-desktop,
.teachers-section.is-empty .teachers-mobile { display: none; }

.videos-section { min-height: 1096px; overflow: hidden; padding: 188px 0 180px; color: var(--site-black); isolation: isolate; }
.videos-section__background { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.videos-section__overlay { position: absolute; z-index: 0; inset: 0; background: linear-gradient(180deg, rgba(29, 23, 43, .5), rgba(19, 12, 29, .62)), linear-gradient(252deg, rgba(155, 6, 254, .12), rgba(24, 207, 190, .06)); }
.videos-section__inner { position: relative; z-index: 1; text-align: center; }
.videos-section__title { display: grid; width: 372px; min-height: 74px; place-items: center; margin: 0 auto 40px; padding: 0 60px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.videos-desktop { display: grid; width: 1170px; height: 440px; grid-template-columns: 700px 470px; overflow: hidden; border-radius: 16px; background: #fdfdfd; box-shadow: 0 70px 80px -30px rgba(8, 4, 17, .36); text-align: left; }
.video-feature { min-height: 0; overflow: hidden; padding: 10px; }
.video-feature__play, .video-card__play { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; padding: 0; border: 0; border-radius: 8px; background: #211b2f; cursor: pointer; }
.video-feature__play { height: 420px; }
.video-feature__play::after, .video-card__play::after { position: absolute; inset: 0; background: linear-gradient(162deg, rgba(196, 0, 227, .11), rgba(24, 207, 190, .09)), rgba(31, 22, 42, .1); content: ""; transition: background-color .2s ease; }
.video-feature__play:hover::after, .video-card__play:hover::after { background-color: rgba(155, 6, 254, .09); }
.video-feature__play > img, .video-card__play > img { width: 100%; height: 100%; object-fit: cover; }
.video-play-icon { position: absolute; z-index: 2; top: 50%; left: 50%; display: block; width: 82px; height: 82px; background: url("../images/video-play.svg") center / contain no-repeat; transform: translate(-50%, -50%); transition: transform .2s ease; }
.video-feature__play:hover .video-play-icon, .video-card__play:hover .video-play-icon { transform: translate(-50%, -50%) scale(1.06); }
.video-list { width: 420px; height: 380px; align-self: center; margin: 0 0 0 20px; overflow-y: auto; padding-right: 30px; scrollbar-color: var(--site-purple) rgba(232, 222, 235, .72); scrollbar-width: thin; }
.video-list::-webkit-scrollbar { width: 5px; }
.video-list::-webkit-scrollbar-track { border-radius: 5px; background: rgba(232, 222, 235, .72); }
.video-list::-webkit-scrollbar-thumb { border-radius: 5px; background: var(--site-purple); }
.video-list__item { display: grid; width: 100%; min-height: 72px; grid-template-columns: 90px minmax(0, 1fr); align-items: center; gap: 20px; margin: 0 0 5px; padding: 5px; border: 1px solid #e8deeb; border-radius: 8px; background: #fdfdfd; color: var(--site-black); font: 600 15px/1.35 var(--site-body-font); text-align: left; cursor: pointer; transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.video-list__item:last-child { margin-bottom: 0; }
.video-list__item img { width: 90px; height: 60px; border-radius: 5px; object-fit: cover; }
.video-list__item:hover { border-color: rgba(155, 6, 254, .42); }
.video-list__item.is-active { border-color: var(--site-purple); background: var(--site-purple); color: #fff; }
.videos-mobile { display: none; }
.videos-section__empty { margin: 90px auto; color: #fff; font-size: 20px; }

.reviews-section { overflow: hidden; padding: 0 0 110px; color: var(--site-black); }
.reviews-section:has(.section-smoke--top) { padding-top: 190px; }
.reviews-section__inner { width: 100%; text-align: center; }
.reviews-section__title { display: grid; width: 510px; min-height: 74px; place-items: center; margin: 0 auto 48px; padding: 0 80px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.reviews-carousel { position: relative; width: 100%; }
.reviews-carousel__viewport { position: relative; width: 100%; overflow: hidden; touch-action: pan-y; cursor: grab; }
.reviews-carousel__track { position: relative; width: 100%; height: 100%; --carousel-drag: 0px; }
.reviews-carousel [data-review-card] { position: absolute; top: 0; left: 50%; transform: translate3d(calc(-50% + var(--carousel-offset, 0px) + var(--carousel-drag)), 0, 0) scale(var(--carousel-scale, 1)); transform-origin: center; will-change: transform; transition: opacity .28s ease, transform .45s cubic-bezier(.22,.75,.23,1), visibility .45s; }
.reviews-carousel__track.is-dragging [data-review-card], .reviews-carousel__track.is-jumping [data-review-card] { transition: none; }
.reviews-carousel [data-review-card].is-offstage { visibility: hidden; opacity: 0; }
.reviews-carousel__arrow { --carousel-arrow-size: 44px; }
.reviews-carousel__arrow--previous { left: calc(50% - 407px); }
.reviews-carousel__arrow--next { right: calc(50% - 407px); }
.reviews-carousel__pagination { display: flex; min-height: 8px; justify-content: center; gap: 8px; }
.reviews-carousel__pagination button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(44,7,53,.45); cursor: pointer; }
.reviews-carousel__pagination button.is-active { width: 24px; border-radius: 8px; background: var(--site-purple); }
.reviews-carousel--video { height: 609px; }
.reviews-carousel--video .reviews-carousel__viewport { height: 535px; }
.video-review-card { width: 770px; height: 485px; overflow: hidden; padding: 10px; border-radius: 16px; background: #fdfdfd; box-shadow: 0 20px 44px -18px rgba(105,76,126,.24); transform-origin: center; }
.video-review-card.is-side { opacity: .4; }
.video-review-card__media { position: relative; display: block; width: 100%; height: 400px; overflow: hidden; padding: 0; border: 0; border-radius: 10px 10px 0 0; background: #ddd; cursor: pointer; }
.video-review-card__media::after { position: absolute; inset: 0; background: linear-gradient(165deg, rgba(196,0,227,.1), rgba(24,207,190,.1)); content: ""; }
.video-review-card__media img { width: 100%; height: 100%; object-fit: cover; }
.video-review-card .video-play-icon { z-index: 2; width: 82px; height: 82px; }
.video-review-card:not(.is-center) .video-play-icon { display: none; }
.video-review-card h3 { display: grid; height: 65px; place-items: center; margin: 0; padding: 8px 24px 0; overflow: hidden; font-size: 18px; font-weight: 600; line-height: 1.35; }
.reviews-carousel--video .reviews-carousel__arrow { top: 220px; }
.reviews-carousel--video .reviews-carousel__pagination { margin-top: 20px; }
.reviews-carousel--text { height: calc(var(--review-text-height, 620px) + 190px); margin-top: 20px; }
.reviews-carousel--text .reviews-carousel__viewport { height: calc(var(--review-text-height, 620px) + 120px); padding: 40px 0 80px; }
.reviews-carousel--text .reviews-carousel__track { height: var(--review-text-height, 620px); }
.text-review-card { width: 370px; height: auto; overflow: visible; padding: 10px; border-radius: 16px; background: #fdfdfd; box-shadow: 0 18px 38px -14px rgba(105,76,126,.24); text-align: left; }
.text-review-card__content { height: auto; overflow: visible; padding: 12px; }
.text-review-card__content > :first-child { margin-top: 0; }
.text-review-card__content > :last-child { margin-bottom: 0; }
.text-review-card__content p, .text-review-card__content li { font-size: 14px; line-height: 1.45; }
.text-review-card__content a { color: var(--site-purple); }
.reviews-carousel--text .reviews-carousel__arrow { top: calc(40px + var(--review-text-height, 620px) / 2 - 22px); }
.reviews-carousel--text .reviews-carousel__arrow--previous { left: calc(50% - 607px); }
.reviews-carousel--text .reviews-carousel__arrow--next { right: calc(50% - 607px); }
.reviews-carousel--text .reviews-carousel__pagination { margin-top: 18px; }

.photos-section { overflow: hidden; padding: 0 0 100px; color: var(--site-black); }
.photos-section__inner { width: 100%; margin: 0 auto; text-align: center; }
.photos-section__title { display: grid; width: 433px; min-height: 74px; place-items: center; margin: 0 auto; padding: 0 66px; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.photo-mosaic { position: relative; width: min(1760px, 91.666667vw); height: auto; margin: 34px auto 0; aspect-ratio: 1760 / 740; }
.photo-mosaic__item { position: absolute; overflow: hidden; margin: 0; border-radius: 8px; background: #eee; }
.photo-mosaic__item img { width: 100%; height: 100%; object-fit: cover; }
.photo-mosaic__item--1 { top: 0; left: 0; width: 17.840909%; height: 56.621622%; }
.photo-mosaic__item--2 { top: 0; left: 18.295455%; width: 17.840909%; height: 31.081081%; }
.photo-mosaic__item--3 { top: 57.702703%; left: 0; width: 17.840909%; height: 42.432432%; }
.photo-mosaic__item--4 { top: 32.162162%; left: 18.295455%; width: 17.840909%; height: 67.837838%; }
.photo-mosaic__item--5 { top: 0; left: 63.863636%; width: 17.840909%; height: 67.837838%; }
.photo-mosaic__item--6 { top: 0; left: 82.159091%; width: 17.840909%; height: 42.432432%; }
.photo-mosaic__item--7 { top: 68.918919%; left: 63.863636%; width: 17.840909%; height: 31.081081%; }
.photo-mosaic__item--8 { top: 43.513514%; left: 82.159091%; width: 17.840909%; height: 56.621622%; }
.photo-mosaic__item--9 { top: 0; left: 36.647727%; width: 26.761364%; height: 46.621622%; }
.photo-mosaic__item--10 { top: 47.702703%; left: 36.647727%; width: 26.761364%; height: 52.297297%; }
.photos-section__more { margin-top: 54px; }

.booking-steps-section { overflow: hidden; padding: 100px 0 110px; color: #1e1e1e; }
.booking-steps-section__inner { width: min(calc(100% - 48px), 1171px); text-align: center; }
.booking-steps-section__title { display: grid; width: 1000px; min-height: 74px; place-items: center; margin: 0 auto; padding: 8px 100px 0; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.booking-steps { position: relative; width: 1171px; height: 241px; margin: 50px auto 0; text-align: left; }
.booking-step { position: absolute; z-index: 2; top: 37px; width: 235px; }
.booking-step--1 { left: 0; }
.booking-step--2 { top: 103px; left: 312px; }
.booking-step--3 { left: 624px; }
.booking-step--4 { top: 103px; left: 936px; }
.booking-step__number { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--site-purple); color: #fff; font-size: 20px; font-weight: 600; line-height: 1; }
.booking-step__number > span { transform: rotate(-17deg); }
.booking-step p { width: 231px; margin: 16px 0 0 4px; font-size: 16px; font-weight: 600; line-height: 24px; }
.booking-steps__arrow { position: absolute; z-index: 1; display: block; margin: 0; pointer-events: none; }
.booking-steps__arrow img { width: 100%; height: 100%; }
.booking-steps__arrow--1 { top: 0; left: 84px; width: 222px; height: 73px; }
.booking-steps__arrow--2 { top: -1px; left: 411px; width: 164px; height: 119px; transform: rotate(13deg); }
.booking-steps__arrow--3 { top: 0; left: 708px; width: 205px; height: 70px; }

.quote-section { min-height: 808px; overflow: hidden; }
.quote-section__background,
.quote-section__overlay { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; }
.quote-section__background { object-fit: cover; object-position: center 51%; }
.quote-section__overlay { z-index: 1; background: linear-gradient(242deg, rgba(196,0,227,.15), rgba(255,205,77,.15)), rgba(28,24,34,.56); }
.quote-section__inner { position: relative; z-index: 2; padding-top: 256px; }
.quote-card { position: relative; width: 1170px; height: 280px; overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 22px 70px rgba(31,15,39,.2); color: var(--site-black); }
.quote-card__sign { position: absolute; z-index: 2; top: 61px; left: 48px; width: 76px; height: 76px; }
.quote-card__copy { position: absolute; z-index: 2; top: 56px; left: 182px; width: 405px; margin: 0; }
.quote-card__copy p { margin: 0; font-size: 24px; font-style: italic; font-weight: 400; line-height: 36px; }
.quote-card__copy footer { margin-top: 30px; font-size: 13px; font-weight: 600; line-height: 14px; letter-spacing: .03em; text-transform: uppercase; }
.quote-card__portrait { position: absolute; z-index: 1; top: -9px; right: 18px; width: 406px; height: 585px; }
.quote-card__portrait-brush,
.quote-card__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; -webkit-mask: url("../images/quote-mask-desktop.svg") center / 100% 100% no-repeat; mask: url("../images/quote-mask-desktop.svg") center / 100% 100% no-repeat; }
.quote-card__portrait-brush { background: var(--site-teal); }
.quote-card__portrait img { max-width: none; object-fit: cover; object-position: 50% 0; transform: translate(7px, -5px) scale(.965); transform-origin: center; }

.subscription-section { min-height: 870px; overflow: hidden; padding: 263px 0 267px; color: var(--site-black); isolation: isolate; }
.subscription-section__background,
.subscription-section__overlay { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; }
.subscription-section__background { object-fit: cover; object-position: center; }
.subscription-section__overlay { z-index: 1; background: linear-gradient(242deg, rgba(196,0,227,.12), rgba(255,205,77,.1)), rgba(25,21,32,.53); }
.subscription-section__inner { position: relative; z-index: 6; }
.subscription-card { display: grid; width: 100%; min-height: 340px; grid-template-columns: minmax(0, 885px) 285px; overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 22px 70px rgba(31,15,39,.2); }
.subscription-card--without-channels { display: block; }
.subscription-card__content { padding: 44px 48px 48px; }
.subscription-card__title { margin: 0; font-size: 22px; font-weight: 600; line-height: 26px; text-transform: uppercase; }
.subscription-card__description { max-width: 791px; margin: 24px 0 0; font-size: 18px; font-weight: 500; line-height: 36px; }
.subscription-form { display: flex; gap: 19px; margin-top: 24px; }
.subscription-form input { width: 400px; height: 62px; padding: 0 29px; border: 1px solid #e8deeb; border-radius: 999px; outline: none; background: #fff; color: var(--site-black); font: 500 15px/1 var(--site-body-font); transition: border-color .2s ease, box-shadow .2s ease; }
.subscription-form input::placeholder { color: #918896; opacity: 1; }
.subscription-form input:focus { border-color: var(--site-teal); box-shadow: 0 0 0 3px rgba(23,190,187,.13); }
.subscription-form button { display: inline-flex; width: 248px; height: 62px; align-items: center; justify-content: center; padding: 0 30px; border: 0; border-radius: 999px; background: var(--site-teal); box-shadow: 0 19px 17px rgba(24,207,190,.24); color: #fff; font: 600 14px/1 "Comfortaa", sans-serif; text-transform: uppercase; cursor: pointer; }
.subscription-form button img { display: none; }
.subscription-channels { display: grid; align-content: start; gap: 8px; padding: 22px 20px; border-left: 1px solid #e8deeb; background: #f3edf8; }
.subscription-channel { display: grid; width: 244px; height: 68px; grid-template-columns: 60px 1fr; align-items: center; gap: 8px; padding: 3px 18px 3px 3px; border: 1px solid #fff; border-radius: 999px; background: #fff; color: var(--site-black); font-size: 13px; font-weight: 600; line-height: 16px; text-align: center; text-decoration: none; text-transform: uppercase; transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease; }
.subscription-channel__icon { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 50%; }
.subscription-channel__icon img { width: 60px; height: 60px; }
.subscription-channel--vk { border-color: #fff; background: #fff; box-shadow: none; color: var(--site-black); }
.subscription-channel--vk .subscription-channel__icon { background: #2787f5; }
.subscription-channel--vk .subscription-channel__icon img { width: 28px; height: 17px; }
.subscription-channel:hover { border-color: var(--site-purple); background: var(--site-purple); box-shadow: 0 12px 24px rgba(155,6,254,.2); color: #fff; transform: translateY(-1px); }

.faq-section { overflow: hidden; padding: 50px 0 100px; color: var(--site-black); }
.faq-section__inner { width: min(calc(100% - 48px), 970px); }
.faq-section__title { display: grid; width: 730px; min-height: 74px; place-items: center; margin: 0 auto; padding: 4px 80px 0; background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat; color: #fff; font-family: var(--site-title-font); font-size: 36px; font-weight: 400; line-height: 1; text-align: center; text-transform: uppercase; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 50px; }
.faq-item { overflow: hidden; border: 1px solid #e8deeb; border-radius: 16px; background: #fff; }
.faq-item__heading { margin: 0; }
.faq-item__question { display: flex; width: 100%; min-height: 88px; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 20px 22px 35px; border: 0; background: transparent; color: var(--site-black); font: inherit; text-align: left; cursor: pointer; transition: min-height .42s cubic-bezier(.22, 1, .36, 1); }
.faq-item__question > span { max-width: 831px; font-size: 18px; font-weight: 600; line-height: 30px; }
.faq-item__icon { position: relative; display: block; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; background: var(--site-purple); box-shadow: 0 12px 20px rgba(155,6,254,.2); transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.faq-item__icon::before,
.faq-item__icon::after { position: absolute; top: 50%; left: 50%; width: 17px; height: 2px; border-radius: 2px; background: #fff; content: ""; transform: translate(-50%, -50%); }
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease, opacity .2s ease; }
.faq-item.is-open .faq-item__icon { background: var(--site-teal); box-shadow: 0 12px 20px rgba(23,190,187,.22); }
.faq-item.is-open .faq-item__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq-item__answer { overflow: hidden; padding: 0 102px 32px 35px; font-size: 16px; font-weight: 400; line-height: 1.6; }
.faq-item__answer[hidden] { display: none; }
.faq-item__richtext > :first-child { margin-top: -8px; }
.faq-item__richtext > :last-child { display: inline; margin-bottom: 0; }
.faq-item__richtext p { margin: 0 0 16px; }
.faq-item__richtext ul,
.faq-item__richtext ol { margin: 0 0 16px; padding-left: 24px; }
.faq-item__richtext a,
.faq-item__detail { color: var(--site-purple); font-weight: 600; }
.faq-item__detail { display: inline-flex; align-items: center; gap: 0; margin-left: 4px; text-decoration: none; text-transform: lowercase; }
.faq-item__detail:hover { text-decoration: underline; }
.faq-item__detail span { margin-left: 1px; }

@media (prefers-reduced-motion: reduce) {
    .faq-item__question,
    .faq-item__icon,
    .faq-item__icon::after { transition: none; }
}

/* Article detail */
.internal-page--article { background: #f3edf8; }

.article-detail { overflow: hidden; background: #f3edf8; color: var(--site-black); }

.article-detail__hero {
    position: relative;
    height: 1103px;
    isolation: isolate;
    color: #fff;
}

.article-detail__hero::before {
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    left: 0;
    height: 954px;
    background: linear-gradient(90deg, #8e6294 0%, #947585 50%, #9a8877 100%);
    content: "";
}

.article-detail__hero::after {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 954px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .018) 55%, rgba(255, 231, 202, .025) 100%);
    content: "";
}

.article-detail__hero .site-header { z-index: 8; }

.article-detail__heading {
    position: absolute;
    z-index: 3;
    top: 204px;
    left: 50%;
    padding-left: 200px;
    transform: translateX(-50%);
}

.article-detail__heading h1 {
    width: 770px;
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.18;
    text-wrap: balance;
}

.article-detail__meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    line-height: 24px;
}

.article-detail__meta span { display: flex; align-items: center; gap: 12px; }

.article-detail__meta-dot {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: currentColor;
}

.article-detail__meta svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.article-detail__hero-smoke {
    position: absolute;
    z-index: 1;
    top: 747px;
    right: 0;
    left: 0;
    height: 207px;
    background: #f3edf8;
    pointer-events: none;
    transform: rotate(180deg);
    -webkit-mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
    mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
}

.article-detail__cover {
    position: absolute;
    z-index: 4;
    top: 503px;
    left: 50%;
    width: min(1170px, calc(100% - 48px));
    height: 600px;
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    background: #ded6e2;
    box-shadow: 0 70px 80px -30px rgba(105, 76, 126, .15);
    transform: translateX(-50%);
}

.article-detail__cover img { width: 100%; height: 100%; object-fit: cover; }

.article-detail__body { padding: 64px 0 56px; background: #f3edf8; }

.article-detail__content { width: min(770px, calc(100% - 48px)); margin: 0 auto; }

.article-detail__content > :first-child { margin-top: 0; }
.article-detail__content > :last-child { margin-bottom: 0; }

.article-detail__content p,
.article-detail__content li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.article-detail__content p { margin: 0 0 26px; }
.article-detail__content ul,
.article-detail__content ol { margin: 0 0 26px; padding-left: 28px; }
.article-detail__content li + li { margin-top: 8px; }

.article-detail__content h2,
.article-detail__content h3 {
    margin: 58px 0 24px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

.article-detail__content h3 { font-size: 20px; }
.article-detail__content strong,
.article-detail__content b { font-weight: 600; }
.article-detail__content a { color: var(--site-purple); }

.article-detail__content img {
    width: 100%;
    height: auto;
    max-height: 640px;
    margin: 50px 0 56px;
    border-radius: 16px;
    box-shadow: 0 70px 80px -30px rgba(105, 76, 126, .15);
    object-fit: cover;
}

.article-detail__content > img:first-of-type { aspect-ratio: 770 / 454; }
.article-detail__content > img:nth-of-type(2) { aspect-ratio: 770 / 513; }

.article-detail__content hr {
    height: 1px;
    margin: 64px 0;
    border: 0;
    background: rgba(44, 7, 53, .14);
}

.article-related {
    position: relative;
    min-height: 936px;
    margin-top: 207px;
    padding: 56px 0 96px;
    overflow: visible;
    background: #fff;
}

.article-related__smoke {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 207px;
    background: #fff;
    pointer-events: none;
    transform: rotate(180deg);
    -webkit-mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
    mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
}

.article-related__inner { text-align: center; }

.article-related__title {
    display: grid;
    width: 714px;
    min-height: 90px;
    place-items: center;
    margin: 0 auto 56px;
    padding: 0 30px;
    background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat;
    color: #fff;
    font-family: var(--site-title-font);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.article-related .articles-carousel__pagination { margin-top: 48px; }

.article-detail-missing { min-height: 70vh; padding: 180px 24px; text-align: center; }
.article-detail-missing a { color: var(--site-purple); }

@media (max-width: 768px) {
    .article-detail__hero { height: 586px; }

    .article-detail__hero::before,
    .article-detail__hero::after { height: 544px; }

    .article-detail__hero::before {
        background: linear-gradient(90deg, #8e6294 0%, #947585 50%, #9a8877 100%);
    }

    .article-detail__heading {
        top: 131px;
        width: calc(100% - 32px);
        padding: 0;
    }

    .article-detail__heading h1 {
        width: 100%;
        font-size: 22px;
        line-height: 1.2;
        text-wrap: pretty;
    }

    .article-detail__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 12px;
        font-size: 14px;
        line-height: 24px;
    }

    .article-detail__meta span { gap: 8px; }
    .article-detail__meta svg { width: 18px; height: 18px; flex-basis: 18px; }
    .article-detail__meta-dot { display: none; }

    .article-detail__hero-smoke { top: 470px; height: 74px; }

    .article-detail__cover {
        top: 371px;
        width: calc(100% - 32px);
        height: 215px;
        border-radius: 8px;
        box-shadow: 0 22px 48px -24px rgba(62, 39, 76, .4);
    }

    .article-detail__body { padding: 32px 0 56px; }
    .article-detail__content { width: calc(100% - 32px); }

    .article-detail__content p,
    .article-detail__content li { font-size: 14px; line-height: 1.55; }
    .article-detail__content p { margin-bottom: 22px; }
    .article-detail__content ul,
    .article-detail__content ol { margin-bottom: 22px; padding-left: 22px; }

    .article-detail__content h2,
    .article-detail__content h3 { margin: 42px 0 18px; font-size: 18px; line-height: 1.4; }
    .article-detail__content h3 { font-size: 16px; }

    .article-detail__content img {
        max-height: none;
        margin: 32px 0 36px;
        border-radius: 8px;
        box-shadow: 0 22px 46px -26px rgba(61, 37, 74, .4);
    }

    .article-detail__content hr { margin: 48px 0; }

    .article-related.articles-section {
        min-height: 561px;
        margin-top: 74px;
        padding: 32px 0 56px;
    }

    .article-related__smoke { height: 74px; }
    .article-related__inner { width: calc(100% - 32px); }

    .article-related__title {
        width: 332px;
        min-height: 47px;
        margin-bottom: 32px;
        padding: 0 24px;
        font-size: 24px;
        line-height: 1;
    }

    .article-related .articles-carousel__pagination { margin-top: 24px; }
}

.video-modal[hidden] { display: none; }
.video-modal { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; padding: 64px; background: rgba(10, 7, 15, .92); }
.video-modal__player { width: min(1200px, calc(100vw - 128px)); aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #000; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.video-modal__player iframe, .video-modal__player video { display: block; width: 100%; height: 100%; border: 0; object-fit: contain; }
.video-modal__close { position: absolute; z-index: 2; top: 24px; right: 28px; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; }
.video-modal__close::before, .video-modal__close::after { position: absolute; top: 20px; left: 11px; width: 20px; height: 2px; background: currentColor; content: ""; transform: rotate(45deg); }
.video-modal__close::after { transform: rotate(-45deg); }
body.video-modal-open { overflow: hidden; }

.site-footer {
    min-height: 337px;
    background: var(--site-white);
    color: var(--site-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.site-footer__main {
    position: relative;
    height: 255px;
}

.site-footer__logo {
    position: absolute;
    top: 48px;
    left: 0;
    width: 179px;
}

.site-footer__logo img { width: 179px; height: 47px; }

.site-footer__navigation {
    position: absolute;
    top: 47px;
    left: 318px;
    display: grid;
    grid-template-columns: 93px 130px;
    column-gap: 100px;
}

.site-footer__navigation ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__navigation a,
.site-footer__channel,
.site-footer__contact a,
.site-footer__legal a {
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.site-footer__navigation a:hover,
.site-footer__channel:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover { color: var(--site-purple); }

.site-footer__channels {
    position: absolute;
    top: 51px;
    left: 747px;
    display: grid;
    gap: 10px;
}

.site-footer__channel {
    display: grid;
    min-height: 22px;
    grid-template-columns: 22px auto;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.site-footer__channel img { width: 22px; height: 22px; }

.site-footer__contact {
    position: absolute;
    top: 47px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.site-footer__phone {
    font-size: 20px;
    font-weight: 600;
}

.site-footer__email {
    margin-top: 1px;
    font-size: 15px;
    font-weight: 400;
}

.site-footer__contact p {
    margin: 4px 0 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.site-footer__messengers {
    display: flex;
    gap: 4px;
}

.site-footer__messenger {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform .2s ease;
}

.site-footer__messenger:hover { transform: translateY(-2px); }
.site-footer__messenger img { width: 40px; height: 40px; }

.site-footer__legal {
    height: 82px;
    border-top: 1px solid #e8deeb;
}

.site-footer__legal-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 26px;
    font-weight: 400;
}

.internal-page { background: #f3edf8; }

.internal-header {
    position: relative;
    z-index: 2;
    height: 161px;
    overflow: visible;
    isolation: isolate;
    background: transparent;
}

.internal-header::before {
    position: absolute;
    z-index: 0;
    inset: 0 0 auto;
    height: 311px;
    background: linear-gradient(105deg, #936a99 0%, #a38d7d 100%);
    content: "";
}

.internal-header .site-header { color: var(--site-white); }

.internal-header__smoke {
    position: absolute;
    z-index: 1;
    right: 0;
    left: 0;
    top: 104px;
    height: 207px;
    background: #f3edf8;
    pointer-events: none;
    -webkit-mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
    mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
    transform: rotate(180deg);
}

.articles-index {
    overflow: hidden;
    padding: 143px 0 64px;
    background: #f3edf8;
    color: var(--site-black);
}

.articles-index__title {
    position: relative;
    z-index: 3;
    display: grid;
    width: 432px;
    min-height: 90px;
    place-items: center;
    margin: 0 auto;
    padding: 5px 65px 0;
    background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat;
    color: #fff;
    font-family: var(--site-title-font);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.articles-index__list { margin-top: 64px; }

.articles-index-card {
    width: 100%;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(44, 7, 53, .14);
}

.articles-index-card + .articles-index-card { padding-top: 64px; }

.articles-index-card__title,
.articles-index-card__excerpt,
.articles-index-card__more {
    display: block;
    width: 770px;
    margin-right: auto;
    margin-left: auto;
}

.articles-index-card__title {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
}

.articles-index-card__media {
    position: relative;
    width: 100%;
    height: 468px;
    overflow: hidden;
    -webkit-mask: url("../images/article-preview-mask-desktop.svg") center / 100% 100% no-repeat;
    mask: url("../images/article-preview-mask-desktop.svg") center / 100% 100% no-repeat;
}

.articles-index-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles-index-card__media span {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 7, 53, 0) 58%, rgba(44, 7, 53, .2));
}

.articles-index-card__excerpt {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.articles-index-card__excerpt > :first-child { margin-top: 0; }
.articles-index-card__excerpt > :last-child { margin-bottom: 0; }
.articles-index-card__excerpt p { margin: 0 0 16px; }
.articles-index-card__excerpt ul,
.articles-index-card__excerpt ol { padding-left: 24px; }

.articles-index-card__more {
    margin-top: 16px;
    color: var(--site-purple);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.articles-index-card__more:hover { text-decoration: underline; }

.articles-index__load {
    display: flex;
    width: 325px;
    height: 86px;
    align-items: center;
    justify-content: center;
    margin: 64px auto 0;
    padding: 0 36px;
    border: 0;
    border-radius: 60px;
    background: var(--site-teal);
    box-shadow: 0 19px 17px rgba(24, 207, 190, .24);
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}

.articles-index__load[hidden] { display: none; }
.articles-index__load:disabled { cursor: wait; opacity: .7; }
.articles-index__empty { margin: 64px auto 0; text-align: center; }
.articles-index-card.is-entering { animation: article-card-in .48s ease both; }

@keyframes article-card-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.program-index {
    overflow: hidden;
    padding: 143px 0 72px;
    background: #f3edf8;
    color: var(--site-black);
}

.program-index__title,
.program-index__group-title {
    display: grid;
    min-height: 90px;
    place-items: center;
    margin: 0 auto;
    padding: 5px 65px 0;
    background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat;
    color: #fff;
    font-family: var(--site-title-font);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.program-index__title {
    position: relative;
    z-index: 3;
    width: 600px;
}
.program-index__group-title { width: 720px; }
.program-index__group--events { margin-top: 64px; }

.program-index__group--teachers {
    position: relative;
    margin-top: 190px;
    padding-top: 118px;
}

.program-index__group--teachers::before {
    position: absolute;
    right: 50%;
    bottom: calc(100% - 72px);
    width: 100vw;
    height: 180px;
    background: rgba(255, 255, 255, .92);
    content: "";
    pointer-events: none;
    transform: translateX(50%);
    -webkit-mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
    mask: url("../images/hero-smoke-mobile.png") center / 100% 100% no-repeat;
}

.program-index__list { margin-top: 64px; }

.program-card {
    width: 100%;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(44, 7, 53, .14);
}

.program-card + .program-card { padding-top: 64px; }

.program-card__heading,
.program-card__description,
.program-card__more,
.program-card__tag {
    display: block;
    width: 770px;
    margin-right: auto;
    margin-left: auto;
}

.program-card__heading { margin-bottom: 32px; }

.program-card__eyebrow {
    margin: 0 0 9px;
    color: var(--site-purple);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3em;
    line-height: 1.35;
    text-transform: uppercase;
}

.program-index__group--teachers .program-card__eyebrow { color: rgba(44, 7, 53, .42); }

.program-card__title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
}

.program-card__media {
    position: relative;
    width: 100%;
    height: 468px;
    overflow: hidden;
    -webkit-mask: url("../images/article-preview-mask-desktop.svg") center / 100% 100% no-repeat;
    mask: url("../images/article-preview-mask-desktop.svg") center / 100% 100% no-repeat;
}

.program-card__media img { width: 100%; height: 100%; object-fit: cover; }

.program-card__media span {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 7, 53, 0) 58%, rgba(44, 7, 53, .18));
}

.program-card__description {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.program-card__description > :first-child { margin-top: 0; }
.program-card__description > :last-child { margin-bottom: 0; }
.program-card__description p { margin: 0 0 16px; }
.program-card__description ul,
.program-card__description ol { padding-left: 24px; }

.program-card__more {
    margin-top: 16px;
    color: var(--site-purple);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.program-card__more:hover { text-decoration: underline; }

.program-card__tag {
    width: max-content;
    max-width: 770px;
    margin-top: 32px;
    margin-right: calc((100% - 770px) / 2);
    padding: 11px 18px;
    border-radius: 7px;
    background: color-mix(in srgb, var(--program-tag-color, #9b06fe) 10%, white);
    color: var(--program-tag-color, #9b06fe);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.program-card__tag span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: currentColor;
    vertical-align: .1em;
}

.program-index__load {
    display: flex;
    width: 325px;
    height: 86px;
    align-items: center;
    justify-content: center;
    margin: 64px auto 0;
    padding: 0 36px;
    border: 0;
    border-radius: 60px;
    background: var(--site-teal);
    box-shadow: 0 19px 17px rgba(24, 207, 190, .24);
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}

.program-index__load[hidden] { display: none; }
.program-index__load:disabled { cursor: wait; opacity: .7; }
.program-index__empty { margin: 64px auto 0; text-align: center; }
.program-card.is-entering { animation: article-card-in .48s ease both; }

@media (max-width: 1500px) {
    .hero__scroll-hint { display: none; }
}

@media (max-width: 1180px) {
    .site-header__navigation { gap: 24px; }
    .site-header__logo { width: 185px; }
    .info-card { gap: 40px; }
    .info-card--odd,
    .info-card--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); }
    .info-card__photo { width: 100%; }
}

@media (max-width: 768px) {
    .site-container { width: calc(100% - 32px); }

    .hero {
        height: 606px;
        background-image: url("../images/hero-mobile-composite.png");
        background-position: center top;
        background-size: cover;
    }

    .site-header { inset: 23px 0 auto; }

    .internal-header { height: 146px; overflow: hidden; }
    .internal-header::before { height: 146px; }
    .internal-header__smoke {
        top: auto;
        bottom: -1px;
        height: 74px;
        -webkit-mask-image: url("../images/hero-smoke-mobile.png");
        mask-image: url("../images/hero-smoke-mobile.png");
        transform: scaleY(-1);
    }

    .articles-index { padding: 32px 0 56px; }
    .articles-index__inner { width: min(343px, calc(100% - 32px)); }
    .articles-index__title { width: 255px; min-height: 47px; padding: 2px 42px 0; font-size: 24px; }
    .articles-index__list { margin-top: 33px; }
    .articles-index-card { padding-bottom: 32px; }
    .articles-index-card + .articles-index-card { padding-top: 31px; }
    .articles-index-card__title,
    .articles-index-card__excerpt,
    .articles-index-card__more { width: 100%; }
    .articles-index-card__title { margin-bottom: 16px; font-size: 20px; line-height: 26px; }
    .articles-index-card__media { height: auto; aspect-ratio: 342 / 215; -webkit-mask-image: url("../images/article-preview-mask-mobile.svg"); mask-image: url("../images/article-preview-mask-mobile.svg"); }
    .articles-index-card__excerpt { margin-top: 24px; font-size: 16px; line-height: 1.6; }
    .articles-index-card__excerpt p { margin-bottom: 14px; }
    .articles-index-card__more { margin-top: 16px; font-size: 16px; }
    .articles-index__load { width: 100%; height: 56px; margin-top: 50px; font-size: 14px; }

    .program-index { padding: 32px 0 56px; }
    .program-index__inner { width: min(343px, calc(100% - 32px)); }
    .program-index__title,
    .program-index__group-title { min-height: 47px; padding: 2px 38px 0; font-size: 24px; }
    .program-index__title { width: 290px; }
    .program-index__group-title { width: 343px; }
    .program-index__group--events { margin-top: 33px; }
    .program-index__group--teachers { margin-top: 108px; padding-top: 58px; }
    .program-index__group--teachers::before { bottom: calc(100% - 34px); height: 100px; }
    .program-index__list { margin-top: 33px; }
    .program-card { padding-bottom: 32px; }
    .program-card + .program-card { padding-top: 31px; }
    .program-card__heading,
    .program-card__description,
    .program-card__more,
    .program-card__tag { width: 100%; }
    .program-card__heading { margin-bottom: 16px; }
    .program-card__eyebrow { margin-bottom: 7px; font-size: 12px; }
    .program-card__title { font-size: 20px; line-height: 26px; }
    .program-card__media { height: auto; aspect-ratio: 342 / 215; -webkit-mask-image: url("../images/article-preview-mask-mobile.svg"); mask-image: url("../images/article-preview-mask-mobile.svg"); }
    .program-card__description { margin-top: 24px; font-size: 16px; line-height: 1.6; }
    .program-card__description p { margin-bottom: 14px; }
    .program-card__more { margin-top: 16px; font-size: 16px; }
    .program-card__tag { width: max-content; max-width: 100%; margin-top: 24px; margin-right: 0; padding: 10px 14px; }
    .program-index__load { width: 100%; height: 56px; margin-top: 50px; font-size: 14px; }

    .site-header__inner { position: relative; min-height: 44px; }

    .site-header__logo { width: 160px; }

    .site-header__cart {
        order: 2;
        flex-basis: 38px;
        width: 38px;
        margin-left: auto;
        margin-right: 22px;
    }

    .site-header__cart img { width: 35px; height: 35px; }

    .site-header__cart span { top: -5px; right: -3px; }

    .site-header__menu-button {
        position: relative;
        z-index: 3;
        display: block;
        order: 3;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        transform: translateY(3px);
    }

    .site-header__navigation { display: none; }

    .site-menu__panel {
        width: 100%;
        min-height: 100dvh;
        box-shadow: none;
        transform: translateY(-12px);
    }

    .site-menu.is-open .site-menu__panel { transform: translateY(0); }

    .site-menu__close { top: 25px; right: 16px; }

    .site-menu__navigation {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 82px 16px 24px;
        margin: 0;
        text-align: center;
    }

    .site-menu__navigation a { margin-inline: auto; }

    .site-menu__primary {
        order: 1;
        gap: 19px;
        font-size: 28px;
        line-height: 35px;
        letter-spacing: .03em;
    }

    .site-menu__photos {
        order: 2;
        margin-top: 19px;
        margin-bottom: 0;
        font-size: 28px;
        line-height: 35px;
        letter-spacing: .03em;
    }

    .site-menu__divider {
        width: 100%;
        background: rgba(44, 7, 53, .18);
    }

    .site-menu__divider--primary { order: 3; margin: 99px 0 20px; }
    .site-menu__secondary { order: 4; gap: 0; font-size: 18px; font-weight: 500; line-height: 34px; letter-spacing: .03em; }
    .site-menu__ticket-mobile { display: block !important; }
    .site-menu__divider--secondary,
    .site-menu__ticket,
    .site-menu__contact { display: none !important; }

    .hero__content { padding-top: 124px; }

    .hero__title {
        width: 343px;
        font-size: 24px;
        line-height: 1.1;
    }

    .hero__facts {
        gap: 6px;
        margin-top: 39px;
    }

    .hero__fact {
        min-height: 28px;
        gap: 10px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero__fact--dates { align-items: flex-start; font-size: 14px; letter-spacing: .04em; }
    .hero__fact img { flex-basis: 28px; width: 28px; height: 28px; }
    .hero__fact span { display: block; }
    .hero__fact i { width: 1px; height: 18px; margin: 0 7px -5px; }

    .hero__actions {
        width: 342px;
        flex-direction: column;
        gap: 16px;
        margin-top: 54px;
    }

    .hero-button {
        width: 100%;
        height: 56px;
        gap: 12px;
        font-size: 14px;
    }

    .hero-button img { flex-basis: 28px; width: 28px; height: 28px; }
    .hero-button--primary img { width: 22px; height: 22px; flex-basis: 22px; }

    .hero__smoke {
        height: 74px;
        object-fit: cover;
        content: url("../images/hero-smoke-mobile.png");
    }

    .hero::after {
        display: none;
    }

    .site-socials { display: none; }

    .section-smoke { height: 74px; }
    .info-section { padding: 32px 0 56px; }
    .info-section__title { width: min(315px, 100%); min-width: 0; min-height: 47px; padding: 0 45px; font-size: 24px; font-weight: 400; line-height: 1; }
    .info-section__subtitle { width: 343px; margin-top: 24px; font-size: 16px; line-height: 1.5; }
    .info-section__cards { gap: 40px; margin-top: 24px; }
    .info-card,
    .info-card--odd,
    .info-card--even { display: flex; min-height: 0; flex-direction: column; align-items: stretch; gap: 24px; }
    .info-card--odd .info-card__content,
    .info-card--odd .info-card__photo,
    .info-card--even .info-card__content,
    .info-card--even .info-card__photo { order: initial; }
    .info-card__content { width: 100%; }
    .info-card__title { margin-bottom: 16px; font-size: 16px; font-weight: 600; line-height: 22px; }
    .info-card__title--long { font-size: 18px; font-weight: 500; line-height: 1.5; }
    .info-card__richtext { font-size: 16px; line-height: 1.5; }
    .info-card__richtext p { margin-bottom: 12px; }
    .info-card__richtext ul,
    .info-card__richtext ol { gap: 12px; }
    .info-card__icon-list { gap: 8px; font-size: 16px; line-height: 1.5; }
    .info-card__icon-list li { grid-template-columns: 32px 1fr; gap: 12px; }
    .info-card__icon { width: 32px; min-height: 24px; }
    .info-card__icon > span { font-size: 18px; letter-spacing: -.9px; }
    .info-card__icon img { width: 24px; height: 24px; }
    .info-card__photo { width: 343px; height: 304px; padding: 12px; border-radius: 15px; }
    .info-card__photo > img { border-radius: 10px; }
    .info-card__photo::after { inset: 12px; border-radius: 10px; }
    .info-card__photo figcaption { right: 24px; bottom: 24px; left: 24px; padding: 8px 12px; font-size: 14px; line-height: 1.5; }

    .image-cta { height: 389px; }
    .image-cta__picture img { object-position: center 50%; }
    .image-cta__overlay {
        background:
            linear-gradient(90deg, rgba(71, 18, 91, .18), rgba(23, 10, 29, .06) 48%, rgba(118, 78, 22, .1)),
            rgba(24, 16, 27, .48);
    }
    .image-cta__content { align-items: start; padding-top: 113px; }
    .image-cta__title { width: 343px; font-size: 32px; line-height: 1; }
    .image-cta__title mark { padding-right: .22em; padding-left: .22em; }

    .final-cta { height: 386px; }
    .final-cta__background {
        top: -41px;
        right: auto;
        bottom: auto;
        left: -19px;
        width: 402px;
        height: 544px;
        object-position: center;
    }
    .final-cta__content {
        display: block;
        width: min(343px, calc(100% - 32px));
        padding-top: 108px;
    }
    .final-cta__content::after { display: none; }
    .final-cta__title {
        width: 343px;
        font-size: 32px;
        line-height: 1;
        text-align: center;
    }
    .final-cta__title mark { padding-right: .22em; padding-left: .22em; }
    .final-cta__button {
        width: 342px;
        min-height: 56px;
        gap: 16px;
        margin-top: 27px;
        padding: 12px 32px;
        font-size: 14px;
        line-height: 1.2;
    }
    .final-cta__button img { width: 22px; height: 24px; }

    .place-section { padding: 32px 0 43px; }
    .place-section__title { width: min(315px, 100%); min-height: 47px; padding: 0 45px; font-size: 24px; }
    .place-facts { width: 343px; align-items: stretch; flex-direction: column; gap: 16px; margin: 24px auto 28px; }
    .place-fact { gap: 16px; font-size: 16px; line-height: 1.45; }
    .place-fact img { flex-basis: 24px; width: 24px; height: 24px; }
    .place-outer-tabs { display: none; }
    .place-outer-select { position: relative; display: block; width: 343px; height: 50px; margin: 0 auto 24px; }
    .place-outer-select select { width: 100%; height: 100%; padding: 0 48px 0 20px; border: 1px solid #9b06fe; border-radius: 10px; outline: 0; background: #9b06fe; color: #fff; font: 500 16px/1.2 var(--site-body-font); appearance: none; }
    .place-outer-select > span:last-child { position: absolute; top: 19px; right: 20px; width: 10px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); pointer-events: none; }
    .place-outer-panel { min-height: 589px; grid-template-columns: 1fr; grid-template-rows: 275px 72px minmax(0, 1fr); gap: 0; padding: 8px; border-radius: 15px; }
    .place-gallery { grid-column: 1; grid-row: 1; grid-template-rows: 275px; }
    .place-gallery__main { border-radius: 9px; }
    .place-gallery__thumbs { display: none; }
    .place-gallery__dots { bottom: 10px; }
    .place-gallery__dot { width: 8px; height: 8px; }
    .place-inner-tabs-wrap { grid-column: 1; grid-row: 2; align-self: stretch; margin: 12px 28px 0; }
    .place-inner-tabs { display: flex; overflow-x: auto; border-radius: 8px; scrollbar-width: none; }
    .place-inner-tabs::-webkit-scrollbar { display: none; }
    .place-inner-tab { flex: 0 0 50%; min-width: 50%; min-height: 52px; gap: 8px; padding: 6px 10px; font-size: 14px; }
    .place-inner-tab img { width: 21px; height: 21px; }
    .place-inner-arrow { width: 24px; font-size: 32px; }
    .place-inner-arrow--prev { left: -27px; }
    .place-inner-arrow--next { right: -27px; }
    .place-content-panel__copy { grid-column: 1; grid-row: 3; padding: 18px 20px 12px; }
    .place-outer-panel:not(:has(.place-inner-tabs-wrap)) .place-content-panel__copy { grid-row: 2 / 4; padding-top: 22px; }
    .place-richtext { max-height: 198px; font-size: 14px; line-height: 1.55; }
    .place-richtext ul, .place-richtext ol { padding-left: 20px; }
    .place-richtext li + li { margin-top: 8px; }
    .place-more-link { padding-top: 8px; font-size: 14px; }

    .events-section { min-height: 841px; padding: 109px 0 92px; }
    .events-section__background { object-position: center; }
    .events-section__title { width: 250px; min-height: 47px; padding: 0 38px; font-size: 24px; }
    .events-filter { width: 343px; height: 50px; margin: 22px auto 23px; }
    .events-filter:not(.is-enhanced)::after { right: 61px; }
    .events-filter:not(.is-enhanced)::before { top: 17px; right: 20px; width: 10px; height: 10px; }
    .events-filter select { padding: 0 78px 0 24px; background: #fdfdfd; color: var(--site-black); font-size: 14px; }
    .site-select__trigger { grid-template-columns: minmax(0, 1fr) 61px; font-size: 14px; }
    .site-select__value { padding-right: 16px; padding-left: 24px; }
    .site-select__chevron::after { width: 10px; height: 10px; }
    .site-select__menu { top: calc(100% + 8px); border-radius: 18px; }
    .events-carousel__viewport { height: 379px; }
    .event-card { width: 308px; height: 379px; padding: 8px; border-radius: 15px; }
    .event-card:not(.is-active) { opacity: .55; }
    .event-card__image { height: 184px; }
    .event-card__body { height: 179px; padding: 15px 17px 17px; }
    .event-card__type { font-size: 12px; line-height: 18px; }
    .event-card h3 { margin-top: 0; font-size: 20px; line-height: 28px; }
    .event-card p { margin-top: 0; font-size: 14px; line-height: 20px; -webkit-line-clamp: 3; }
    .event-card__venue { padding: 4px 12px; font-size: 11px; line-height: 18px; }
    .events-carousel__arrow { display: none; }
    .events-carousel__pagination { display: flex; margin-top: 18px; }
    .events-carousel__pagination button { width: 8px; height: 8px; }
    .events-section__all, .photos-section__more { width: 310px; min-width: 0; min-height: 56px; margin-top: 25px; padding: 12px 24px; font-size: 14px; line-height: 18px; }
    .events-section__empty { margin: 60px auto; font-size: 16px; }

    .team-section,
    .team-section:has(.section-smoke--top) { min-height: 580px; padding: 42px 0 34px; }
    .team-section__title { width: 343px; min-height: 47px; margin-bottom: 37px; padding: 0 48px; font-size: 24px; }
    .team-carousel__viewport { height: 392px; }
    .team-card { width: 308px; height: 392px; padding: 8px; border-radius: 15px; }
    .team-card__image { height: 184px; }
    .team-card__body { height: 192px; padding: 15px 17px 18px; }
    .team-card__position { font-size: 12px; line-height: 18px; }
    .team-card h3 { margin-top: 0; font-size: 20px; line-height: 24px; }
    .team-card p { margin-top: 2px; font-size: 14px; line-height: 19px; -webkit-line-clamp: 5; }
    .team-carousel__pagination { margin-top: 18px; }
    .team-section__empty { margin: 70px auto; font-size: 16px; }

    .articles-section { min-height: 566px; padding: 0; }
    .articles-section__inner { width: min(343px, calc(100% - 32px)); }
    .articles-section__title { width: 255px; min-height: 47px; margin-bottom: 37px; padding: 0 42px; font-size: 24px; }
    .articles-carousel__viewport { height: 364px; }
    .article-card { width: 308px; height: 364px; padding: 8px; border-radius: 15px; }
    .article-card:not(.is-active) { opacity: .55; }
    .article-card__image { height: 184px; }
    .article-card__body { height: 164px; padding: 20px 17px 16px; }
    .article-card h3 { min-height: 44px; font-size: 16px; line-height: 22.4px; }
    .article-card p { margin-top: 6px; font-size: 14px; line-height: 19.2px; -webkit-line-clamp: 3; }
    .articles-carousel__pagination { margin-top: 23px; }
    .articles-carousel__pagination button { width: 6px; height: 6px; }
    .articles-section__more { width: 308px; min-height: 56px; margin-top: 32px; padding: 12px 24px; font-size: 14px; line-height: 18px; }
    .articles-section__empty { margin: 70px auto; font-size: 16px; }

    .teachers-section { min-height: 770px; padding: 32px 0 70px; }
    .teachers-section__title { width: 343px; min-height: 47px; padding: 0 48px; font-size: 24px; }
    .teachers-filters { width: 343px; flex-direction: column; gap: 12px; margin: 29px auto 24px; }
    .teachers-filter { width: 343px; height: 50px; }
    .teachers-filter:not(.is-enhanced)::after { right: 61px; }
    .teachers-filter:not(.is-enhanced)::before { top: 17px; right: 20px; width: 10px; height: 10px; }
    .teachers-filter select { padding: 0 78px 0 24px; font-size: 14px; }
    .teachers-desktop { display: none; }
    .teachers-mobile { display: block; }
    .teachers-mobile .events-carousel__viewport { height: 440px; }
    .teacher-card { width: 308px; height: 440px; padding: 8px; border-radius: 15px; }
    .teacher-card:not(.is-active) { opacity: .55; }
    .teacher-card__image { height: 184px; }
    .teacher-card__body { display: flex; height: 240px; flex-direction: column; padding: 16px 17px 17px; text-align: left; }
    .teacher-card .teacher-program { padding: 4px 12px; gap: 7px; font-size: 12px; line-height: 18px; }
    .teacher-card .teacher-program i { width: 5px; height: 5px; }
    .teacher-card h3 { margin: 10px 0 0; font-size: 20px; line-height: 24px; }
    .teacher-card .teacher-workplace { margin-top: 5px; font-size: 12px; line-height: 15px; letter-spacing: 3.6px; }
    .teacher-card__description { display: -webkit-box; margin: 12px 0 0; overflow: hidden; font-size: 14px; line-height: 1.5; letter-spacing: -.14px; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
    .teacher-card .teacher-more { align-self: flex-end; margin-top: auto; font-size: 14px; line-height: 18px; }
    .teachers-mobile .events-carousel__pagination { display: flex; margin-top: 18px; }
    .teachers-section__empty { margin: 60px auto; font-size: 16px; }

    .videos-section { min-height: 571px; padding: 106px 0 70px; }
    .videos-section__background { object-position: center; }
    .videos-section__overlay { background: linear-gradient(180deg, rgba(29, 23, 43, .48), rgba(30, 20, 42, .58)); }
    .videos-section__title { width: 255px; min-height: 47px; margin-bottom: 35px; padding: 0 42px; font-size: 24px; }
    .videos-desktop { display: none; }
    .videos-mobile { display: block; }
    .videos-mobile__viewport { width: 100vw; height: 252px; margin-left: calc(50% - 50vw); overflow: hidden; touch-action: pan-y; cursor: grab; }
    .videos-mobile__track { position: relative; width: 100%; height: 100%; --video-drag: 0px; }
    .video-card { position: absolute; top: 0; left: 50%; width: 308px; height: 252px; overflow: hidden; padding: 8px; border: 1px solid #e8deeb; border-radius: 8px; background: #fdfdfd; box-shadow: 0 28px 50px -24px rgba(15, 7, 25, .45); transform: translate3d(calc(-50% + var(--video-offset, 0px) + var(--video-drag)), 0, 0); transition: opacity .3s ease, transform .42s cubic-bezier(.22,.75,.23,1), visibility .42s; }
    .video-card.is-offstage { visibility: hidden; opacity: 0; }
    .video-card:not(.is-active) { opacity: .55; }
    .videos-mobile__track.is-dragging .video-card, .videos-mobile__track.is-jumping .video-card { transition: none; }
    .video-card__play { height: 180px; }
    .video-card .video-play-icon { width: 48px; height: 48px; }
    .video-card h3 { display: grid; height: 55px; place-items: center; margin: 0; padding: 6px 12px 0; overflow: hidden; color: var(--site-black); font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center; }
    .videos-mobile__pagination { display: flex; min-height: 8px; justify-content: center; gap: 8px; margin-top: 18px; }
    .videos-mobile__pagination button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.5); }
    .videos-mobile__pagination button.is-active { background: var(--site-purple); }
    .video-modal { width: 100%; height: 100dvh; padding: 0; background: #000; }
    .video-modal__player { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; }
    .video-modal__close { top: max(14px, env(safe-area-inset-top)); right: 14px; background: rgba(0,0,0,.48); }
    .videos-section__empty { margin: 60px auto; font-size: 16px; }

    .reviews-section { padding: 0 0 70px; }
    .reviews-section:has(.section-smoke--top) { padding-top: 74px; }
    .reviews-section__title { width: 255px; min-height: 47px; margin-bottom: 32px; padding: 0 42px; font-size: 24px; }
    .reviews-carousel__viewport { width: 100vw; margin-left: calc(50% - 50vw); }
    .reviews-carousel__arrow { display: none; }
    .reviews-carousel__pagination { margin-top: 18px !important; }
    .reviews-carousel__pagination button { width: 6px; height: 6px; }
    .reviews-carousel__pagination button.is-active { width: 24px; }
    .reviews-carousel--video { height: 298px; }
    .reviews-carousel--video .reviews-carousel__viewport { height: 250px; }
    .video-review-card { width: 308px; height: 224px; padding: 4px; border-radius: 7px; box-shadow: 0 12px 26px -14px rgba(105,76,126,.24); }
    .video-review-card:not(.is-center) { opacity: .42; }
    .video-review-card__media { height: 160px; border-radius: 5px 5px 0 0; }
    .video-review-card .video-play-icon { width: 48px; height: 48px; }
    .video-review-card h3 { height: 56px; padding: 7px 35px 0; font-size: 14px; line-height: 1.3; }
    .reviews-carousel--text { height: calc(var(--review-text-height, 320px) + 140px); margin-top: 38px; }
    .reviews-carousel--text .reviews-carousel__viewport { height: calc(var(--review-text-height, 320px) + 100px); padding: 30px 0 70px; }
    .reviews-carousel--text .reviews-carousel__track { height: var(--review-text-height, 320px); }
    .text-review-card { width: 308px; height: auto; padding: 8px; border-radius: 16px; box-shadow: 0 14px 30px -14px rgba(105,76,126,.22); }
    .text-review-card__content { padding: 7px 10px; }
    .text-review-card__content p, .text-review-card__content li { font-size: 12px; line-height: 1.38; }

    .photos-section { padding: 0 0 70px; }
    .photos-section__inner { width: 344px; }
    .photos-section__title { width: 343px; min-height: 47px; padding: 0 48px; font-size: 24px; }
    .photo-mosaic { width: 344px; height: 808px; margin-top: 26px; }
    .photo-mosaic__item { border-radius: 4px; }
    .photo-mosaic__item--1 { top: 0; left: 0; width: 168px; height: 224px; }
    .photo-mosaic__item--2 { top: 0; left: 175px; width: 168px; height: 123px; }
    .photo-mosaic__item--3 { top: 232px; left: 0; width: 168px; height: 168px; }
    .photo-mosaic__item--4 { top: 131px; left: 175px; width: 168px; height: 268px; }
    .photo-mosaic__item--5 { top: 408px; left: 0; width: 168px; height: 269px; }
    .photo-mosaic__item--6 { top: 408px; left: 176px; width: 168px; height: 168px; }
    .photo-mosaic__item--7 { top: 685px; left: 0; width: 168px; height: 123px; }
    .photo-mosaic__item--8 { top: 584px; left: 176px; width: 168px; height: 224px; }
    .photo-mosaic__item--9, .photo-mosaic__item--10 { display: none; }
    .photos-section__more { width: 344px; margin-top: 32px; }

    .booking-steps-section { padding: 32px 0 60px; }
    .booking-steps-section__inner { width: min(344px, calc(100% - 32px)); }
    .booking-steps-section__title { width: 100%; min-height: 70px; padding: 8px 6px 0; font-size: 24px; line-height: 1.1; }
    .booking-steps { width: 100%; height: 384px; margin-top: 32px; }
    .booking-step { top: 0; left: 0; width: 100%; height: 72px; }
    .booking-step--2 { top: 96px; }
    .booking-step--3 { top: 216px; }
    .booking-step--4 { top: 312px; }
    .booking-step__number { position: absolute; top: 3px; left: 0; width: 40px; height: 40px; font-size: 18px; }
    .booking-step:nth-of-type(even) .booking-step__number { right: 0; left: auto; }
    .booking-step p { position: absolute; top: 0; left: 62px; width: min(235px, calc(100% - 109px)); margin: 0; font-size: 16px; line-height: 24px; }
    .booking-steps__arrow--1 { top: 3px; right: -6px; left: auto; width: 95px; height: 41px; transform: rotate(29deg); transform-origin: center; }
    .booking-steps__arrow--2 { top: 129px; left: -29px; width: 91px; height: 26px; transform: rotate(96deg); transform-origin: center; }
    .booking-steps__arrow--3 { top: 211px; right: -1px; left: auto; width: 67px; height: 62px; transform: none; }

    .quote-section { min-height: 666px; }
    .quote-section__background { object-position: 47% center; }
    .quote-section__inner { width: min(343px, calc(100% - 32px)); padding-top: 106px; }
    .quote-card { width: 100%; height: 454px; }
    .quote-card__sign { top: 24px; left: 24px; width: 38px; height: 38px; }
    .quote-card__copy { top: 84px; left: 24px; width: calc(100% - 48px); }
    .quote-card__copy p { font-size: 20px; line-height: 28px; }
    .quote-card__copy footer { margin-top: 22px; font-size: 13px; line-height: 14px; }
    .quote-card__portrait { top: 228px; right: auto; left: 24px; width: 294px; height: 314px; }
    .quote-card__portrait-brush,
    .quote-card__portrait img { -webkit-mask-image: url("../images/quote-mask-mobile.svg"); mask-image: url("../images/quote-mask-mobile.svg"); }
    .quote-card__portrait img { transform: translate(5px, -3px) scale(.965); }

    .subscription-section { min-height: 994px; padding: 114px 0 106px; }
    .subscription-section__background { object-position: 41% center; }
    .subscription-section__overlay { background: linear-gradient(180deg, rgba(28,23,37,.45), rgba(24,20,31,.56)); }
    .subscription-section__inner { width: min(343px, calc(100% - 32px)); }
    .subscription-card { display: block; min-height: 774px; border-radius: 16px; }
    .subscription-card__content { height: 474px; padding: 24px; }
    .subscription-card__title { font-size: 22px; line-height: 26px; }
    .subscription-card__description { width: 100%; margin-top: 32px; font-size: 16px; line-height: 1.6; }
    .subscription-form { flex-direction: column; gap: 16px; margin-top: 27px; }
    .subscription-form input,
    .subscription-form button { width: 100%; height: 56px; }
    .subscription-form input { padding: 0 24px; font-size: 14px; }
    .subscription-form button { position: relative; gap: 22px; padding: 0 40px 0 18px; font-size: 14px; }
    .subscription-form button img { display: block; width: 38px; height: 38px; }
    .subscription-channels { height: 300px; gap: 10px; padding: 22px 24px 24px; border-top: 1px solid #e8deeb; border-left: 0; }
    .subscription-channel { width: 100%; height: 56px; grid-template-columns: 48px 1fr; gap: 8px; padding: 3px 17px 3px 3px; font-size: 12px; line-height: 15px; }
    .subscription-channel__icon { width: 48px; height: 48px; }
    .subscription-channel__icon img { width: 48px; height: 48px; }
    .subscription-channel--vk { border-color: #fff; background: #fff; box-shadow: none; color: var(--site-black); }
    .subscription-channel--vk .subscription-channel__icon { background: #2787f5; }
    .subscription-channel--vk .subscription-channel__icon img { width: 27px; height: 16px; }
    .subscription-card--without-channels .subscription-card__content { height: auto; min-height: 474px; }

    .faq-section { padding: 32px 0 60px; }
    .faq-section__inner { width: min(343px, calc(100% - 32px)); }
    .faq-section__title { width: 100%; min-height: 47px; padding: 3px 24px 0; font-size: 24px; }
    .faq-list { gap: 8px; margin-top: 32px; }
    .faq-item__question { min-height: 88px; align-items: flex-start; gap: 16px; padding: 15px 15px; }
    .faq-item__question > span { width: 263px; font-size: 16px; line-height: 1.4; }
    .faq-item__icon { flex-basis: 32px; width: 32px; height: 32px; }
    .faq-item__icon::before,
    .faq-item__icon::after { width: 13px; height: 1.2px; }
    .faq-item.is-open .faq-item__question { min-height: 124px; }
    .faq-item__answer { padding: 0 15px 18px; font-size: 14px; line-height: 1.6; }
    .faq-item__richtext > :first-child { margin-top: 0; }

    .site-footer { min-height: 498px; }
    .site-footer__main { width: min(343px, calc(100% - 32px)); height: 422px; }
    .site-footer__main::after { position: absolute; top: 262px; right: 0; left: 0; border-top: 1px solid #e8deeb; content: ""; }
    .site-footer__logo { top: 0; left: 50%; width: 179px; transform: translateX(-50%); }
    .site-footer__navigation { top: 86px; left: 0; grid-template-columns: 86px 129px; column-gap: 78px; }
    .site-footer__channels { top: 286px; left: 0; gap: 10px; }
    .site-footer__contact { top: 282px; right: auto; left: 164px; align-items: flex-start; }
    .site-footer__phone { font-size: 16px; line-height: 24px; }
    .site-footer__email { margin-top: 1px; font-size: 12px; line-height: 24px; }
    .site-footer__contact p { margin: 1px 0 6px; font-size: 10px; line-height: 16px; white-space: nowrap; }
    .site-footer__messengers { gap: 4px; }
    .site-footer__messenger,
    .site-footer__messenger img { width: 32px; height: 32px; }
    .site-footer__legal { height: 76px; }
    .site-footer__legal-inner { width: min(343px, calc(100% - 32px)); height: 75px; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 18px; font-size: 14px; line-height: 24px; }
    .site-footer__legal-inner span { order: 2; margin-top: 4px; }
    .site-footer__legal-inner a { order: 1; }
}

@media (max-width: 359px) {
    .hero__title { font-size: 21px; }
    .hero__fact--dates { font-size: 12px; }
    .site-header__cart { margin-right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}


/* Festival photo gallery page */
.photos-page {
    position: relative;
    overflow: hidden;
    padding: 143px 0 110px;
    background: #f3edf8;
    color: var(--site-black);
}

.photos-page__inner { width: 100%; }

.photos-page__title {
    position: relative;
    z-index: 3;
    display: grid;
    width: 520px;
    min-height: 90px;
    place-items: center;
    margin: 0 auto;
    padding: 5px 66px 0;
    background: url("../images/section-title-brush.svg") center / 100% 100% no-repeat;
    color: #fff;
    font-family: var(--site-title-font);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.photos-page__filter { margin-top: 38px; margin-bottom: 52px; }
.photos-page__gallery-content { transition: opacity .2s ease; }
.photos-page.is-loading .photos-page__gallery-content { opacity: .55; }
.photos-page__groups { display: grid; gap: 8px; }

.festival-photo-mosaic {
    position: relative;
    width: min(1760px, calc(100vw - 80px));
    height: auto;
    margin: 0 auto;
    aspect-ratio: 1760 / 740;
}

.festival-photo-mosaic__item {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: #e8deeb;
}

.festival-photo-mosaic__open {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
}

.festival-photo-mosaic__open:focus-visible {
    outline: 3px solid var(--site-purple);
    outline-offset: -3px;
}

.festival-photo-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-focus-x, 50%) var(--photo-focus-y, 50%);
    transition: transform .45s ease;
}

.festival-photo-mosaic__item:hover img { transform: scale(1.025); }
.festival-photo-mosaic__item--slot-1 { top: 0; left: 0; width: 17.840909%; height: 56.621622%; }
.festival-photo-mosaic__item--slot-2 { top: 0; left: 18.295455%; width: 17.840909%; height: 31.081081%; }
.festival-photo-mosaic__item--slot-3 { top: 57.702703%; left: 0; width: 17.840909%; height: 42.432432%; }
.festival-photo-mosaic__item--slot-4 { top: 32.162162%; left: 18.295455%; width: 17.840909%; height: 67.837838%; }
.festival-photo-mosaic__item--slot-5 { top: 0; left: 63.863636%; width: 17.840909%; height: 67.837838%; }
.festival-photo-mosaic__item--slot-6 { top: 0; left: 82.159091%; width: 17.840909%; height: 42.432432%; }
.festival-photo-mosaic__item--slot-7 { top: 68.918919%; left: 63.863636%; width: 17.840909%; height: 31.081081%; }
.festival-photo-mosaic__item--slot-8 { top: 43.513514%; left: 82.159091%; width: 17.840909%; height: 56.621622%; }
.festival-photo-mosaic__item--slot-9 { top: 0; left: 36.647727%; width: 26.761364%; height: 46.621622%; }
.festival-photo-mosaic__item--slot-10 { top: 47.702703%; left: 36.647727%; width: 26.761364%; height: 52.297297%; }

.festival-photo-mosaic--incomplete {
    display: grid;
    height: auto;
    min-height: 280px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 260px;
    gap: 8px;
    aspect-ratio: auto;
}

.festival-photo-mosaic--incomplete .festival-photo-mosaic__item {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
}

.festival-photo-mosaic--incomplete .festival-photo-mosaic__item--wide { grid-column: span 2; }
.festival-photo-mosaic--incomplete .festival-photo-mosaic__item--portrait { grid-row: span 2; }
.photos-page__load { display: grid; width: 280px; min-height: 70px; place-items: center; margin: 54px auto 0; border: 0; }
.photos-page__load[hidden] { display: none; }
.photos-page__empty { margin: 72px auto; font-size: 20px; text-align: center; }

html.photo-viewer-open,
html.photo-viewer-open body {
    overflow: hidden;
    overscroll-behavior: none;
}

.photo-viewer {
    --photo-viewer-slide-width: 80vw;
    position: fixed;
    z-index: 10000;
    inset: 0;
    overflow: hidden;
    background: #f3edf8;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.photo-viewer[hidden] { display: none; }
.photo-viewer.is-open { opacity: 1; pointer-events: auto; }

.photo-viewer__stage {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.photo-viewer__track {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    width: max-content;
    height: 100%;
    transform: translate3d(-50%, 0, 0);
    transition: transform .48s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.photo-viewer__track.is-moving-previous { transform: translate3d(calc(-50% + var(--photo-viewer-slide-width)), 0, 0); }
.photo-viewer__track.is-moving-next { transform: translate3d(calc(-50% - var(--photo-viewer-slide-width)), 0, 0); }
.photo-viewer__track.is-resetting { transition: none; }

.photo-viewer__slide {
    position: relative;
    flex: 0 0 var(--photo-viewer-slide-width);
    width: var(--photo-viewer-slide-width);
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #e7dfea;
}

.photo-viewer__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-viewer__close {
    position: absolute;
    z-index: 5;
    top: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 7, 53, .38);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background-color .18s ease, transform .18s ease;
}

.photo-viewer__close:hover { background: rgba(44, 7, 53, .56); transform: scale(1.04); }
.photo-viewer__close:focus { outline: none; }
.photo-viewer__close:focus-visible { box-shadow: 0 0 0 2px rgba(255, 255, 255, .75); }
.photo-viewer__close span::before,
.photo-viewer__close span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}
.photo-viewer__close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.photo-viewer__close span::after { transform: translate(-50%, -50%) rotate(-45deg); }

.photo-viewer__arrow {
    top: 50%;
    z-index: 4;
    --carousel-arrow-size: 200px;
    margin-top: -100px;
}
.photo-viewer__arrow--previous { left: -100px; }
.photo-viewer__arrow--next { right: -100px; }
.photo-viewer__arrow > span { position: relative; width: 34px; height: 34px; border-width: 4px; }
.photo-viewer__arrow--previous > span { left: 44px; }
.photo-viewer__arrow--next > span { left: -44px; }
.photo-viewer.has-single-photo .photo-viewer__arrow { display: none; }
.photo-viewer__dots { display: none; }

@media (max-width: 900px) {
    .photos-page { padding: 92px 0 72px; }
    .photos-page__title { width: 343px; min-height: 55px; padding: 3px 48px 0; font-size: 27px; }
    .photos-page__filter { width: 343px; height: 50px; margin-top: 26px; margin-bottom: 30px; }
    .festival-photo-mosaic,
    .festival-photo-mosaic--incomplete {
        position: relative;
        display: grid;
        width: 343px;
        height: auto;
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: dense;
        grid-auto-rows: 123px;
        gap: 8px;
        aspect-ratio: auto;
    }
    .festival-photo-mosaic__item,
    .festival-photo-mosaic--incomplete .festival-photo-mosaic__item {
        position: relative;
        inset: auto;
        width: auto;
        height: auto;
        min-height: 123px;
        border-radius: 4px;
    }
    .festival-photo-mosaic__item--slot-1,
    .festival-photo-mosaic__item--slot-4,
    .festival-photo-mosaic__item--slot-5,
    .festival-photo-mosaic__item--slot-8,
    .festival-photo-mosaic--incomplete .festival-photo-mosaic__item--portrait { grid-row: span 2; }
    .festival-photo-mosaic__item--slot-9,
    .festival-photo-mosaic__item--slot-10,
    .festival-photo-mosaic--incomplete .festival-photo-mosaic__item--wide { grid-column: span 2; }
    .photos-page__load { width: 343px; min-height: 56px; margin-top: 32px; font-size: 14px; }

    .photo-viewer { --photo-viewer-slide-width: 100vw; }
    .photo-viewer__stage {
        top: 50%;
        bottom: auto;
        height: min(66.4vw, 52vh);
        transform: translateY(-50%);
    }
    .photo-viewer__close {
        top: 25px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: rgba(155, 6, 254, .045);
        color: var(--site-black);
        backdrop-filter: none;
    }
    .photo-viewer__close:hover { background: rgba(155, 6, 254, .1); }
    .photo-viewer__close:focus-visible { box-shadow: 0 0 0 2px rgba(155, 6, 254, .18); }
    .photo-viewer__close span::before,
    .photo-viewer__close span::after { width: 18px; height: 1px; }
    .photo-viewer__arrow {
        --carousel-arrow-size: 72px;
        margin-top: -36px;
    }
    .photo-viewer__arrow--previous { left: -36px; }
    .photo-viewer__arrow--next { right: -36px; }
    .photo-viewer__arrow > span { width: 13px; height: 13px; border-width: 2px; }
    .photo-viewer__arrow--previous > span { left: 17px; }
    .photo-viewer__arrow--next > span { left: -17px; }
    .photo-viewer__dots {
        position: absolute;
        z-index: 5;
        bottom: max(48px, env(safe-area-inset-bottom));
        left: 50%;
        display: flex;
        align-items: center;
        gap: 8px;
        transform: translateX(-50%);
    }
    .photo-viewer__dot {
        width: 6px;
        height: 6px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #cfc1d5;
        cursor: pointer;
        transition: width .2s ease, background-color .2s ease;
    }
    .photo-viewer__dot.is-active { width: 24px; background: var(--site-purple); }
    .photo-viewer.has-single-photo .photo-viewer__dots { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .festival-photo-mosaic__item img,
    .photos-page__gallery-content,
    .photo-viewer,
    .photo-viewer__track { transition: none; }
}
