@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0000-052F;
}

/* Shared inner-page system: private-club dossier + editorial folio */
.pegasus-site--inner .brand-inner-main {
    min-height: 70vh;
    overflow: clip;
    padding-top: calc(var(--admin-panel-offset) + var(--header-height) + var(--safe-area-top));
    background:
        radial-gradient(circle at 50% 8%, rgba(200, 163, 90, 0.055), transparent 34%),
        var(--brand-background);
}

.pegasus-site--inner .header,
.pegasus-site--inner .header.is-scrolled,
.pegasus-site--inner.is-menu-open .header {
    height: calc(var(--header-height) + var(--safe-area-top));
    border-color: var(--brand-line);
    background: var(--brand-background);
}

.brand-breadcrumbs {
    color: rgba(245, 245, 245, 0.68);
    font-size: 13px;
    line-height: 1.4;
}

.brand-breadcrumbs ol {
    display: flex;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-breadcrumbs li + li::before {
    width: 5px;
    height: 5px;
    border: 1px solid var(--brand-primary);
    content: "";
    transform: rotate(45deg);
}

.brand-breadcrumbs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    transition: color var(--motion-fast, 140ms) ease;
}

.brand-breadcrumbs a:hover,
.brand-breadcrumbs a:focus-visible {
    color: var(--brand-primary-light);
}

@media (max-width: 600px) {
    .brand-breadcrumbs {
        font-size: 12px;
    }
}

.brand-page-masthead {
    position: relative;
    z-index: 1;
    padding: clamp(42px, 6vw, 84px) 0 clamp(36px, 5vw, 68px);
    isolation: isolate;
}

.brand-page-masthead::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 163, 90, .44), transparent);
    content: "";
}

.brand-page-masthead .brand-breadcrumbs {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.brand-page-masthead h1 {
    max-width: 970px;
    margin: 0;
    color: var(--brand-text);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(38px, 5.3vw, 68px);
    font-weight: 400;
    line-height: 1.13;
    text-wrap: balance;
}

.brand-page-masthead p {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(245, 245, 245, .76);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.65;
}

.brand-page-watermark {
    position: absolute;
    z-index: 0;
    top: -80px;
    right: max(-160px, calc((100vw - 1240px) / 2 - 210px));
    width: clamp(380px, 31vw, 460px);
    opacity: .026;
    pointer-events: none;
}

.brand-page-watermark img {
    display: block;
    width: 100%;
    height: auto;
}

.brand-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: clamp(24px, 3vw, 38px);
}

.brand-section-heading h2,
.brand-section-heading p {
    margin: 0;
}

.brand-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.brand-action-grid > a,
.brand-action-grid > button {
    min-height: 54px;
}

.brand-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(200, 163, 90, .28);
}

.brand-fact-grid > * {
    min-width: 0;
    padding: clamp(18px, 2.2vw, 28px);
    background: #171715;
}

.brand-concierge {
    position: relative;
    margin-top: clamp(56px, 8vw, 104px);
    padding: clamp(32px, 5vw, 58px);
    background: #1c1b18;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
}

.brand-concierge::before {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 163, 90, .34);
    pointer-events: none;
    content: "";
}

.footer__nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.footer__nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    color: rgba(245, 245, 245, .72);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.footer__phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
    color: var(--brand-primary-light);
}

@media (max-width: 1179px) {
    .brand-page-watermark {
        display: none;
    }
}

@media (max-width: 767px) {
    .brand-page-masthead {
        padding: 30px 0 38px;
    }

    .brand-page-masthead .brand-breadcrumbs {
        margin-bottom: 24px;
    }

    .brand-section-heading {
        display: block;
    }

    .brand-section-heading > :not(:first-child) {
        margin-top: 12px;
    }

    .brand-action-grid,
    .brand-fact-grid {
        grid-template-columns: 1fr;
    }

    .brand-concierge {
        padding: 28px 20px;
    }
}

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

:root {
    color-scheme: dark;
    --brand-primary: #c8a35a;
    --brand-primary-light: #e2c57d;
    --brand-background: #141414;
    --brand-surface: #2a2a2a;
    --brand-text: #f5f5f5;
    --brand-muted: #b8b4aa;
    --brand-line: rgba(200, 163, 90, 0.34);
    --brand-line-strong: rgba(226, 197, 125, 0.7);
    --brand-cream: #eee3cf;
    --brand-ink: #211b13;
    --container: 1240px;
    --header-height: 96px;
    --admin-panel-offset: 0px;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
    --layer-floating: 900;
    --layer-header: 1000;
    --layer-popup: 2000;
    --layer-skip-link: 3000;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body.pegasus-site {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--brand-background);
    color: var(--brand-text);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.pegasus-site.is-locked {
    overflow: hidden;
}

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

.pegasus-site img,
.pegasus-site picture,
.pegasus-site svg {
    display: block;
    max-width: 100%;
}

.pegasus-site img {
    height: auto;
}

.pegasus-site button,
.pegasus-site input,
.pegasus-site textarea,
.pegasus-site select {
    font: inherit;
}

.pegasus-site button,
.pegasus-site a {
    -webkit-tap-highlight-color: transparent;
}

.pegasus-site button {
    color: inherit;
}

.pegasus-site a {
    color: inherit;
    text-decoration: none;
}

.pegasus-site ul,
.pegasus-site ol,
.pegasus-site p,
.pegasus-site h1,
.pegasus-site h2,
.pegasus-site h3,
.pegasus-site h4 {
    margin-top: 0;
}

.pegasus-site ul,
.pegasus-site ol {
    padding: 0;
}

.pegasus-site li {
    list-style: none;
}

.pegasus-site :focus-visible {
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 4px;
}

.brand-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: var(--layer-skip-link);
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    transform: translateY(-160%);
    background: var(--brand-primary-light);
    color: #17130d;
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.page {
    min-height: 100vh;
    overflow: clip;
}

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

.section {
    position: relative;
    padding: 106px 0;
    scroll-margin-top: calc(var(--admin-panel-offset) + var(--header-height) + 18px);
}

.section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.018);
}

.section__title,
.pegasus-site h1,
.pegasus-site h2 {
    font-family: "Prata", Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.012em;
}

.section__title {
    max-width: 900px;
    margin: 0 0 24px;
    color: var(--brand-text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.16;
}

.section__subtitle {
    max-width: 780px !important;
    margin: 0 0 48px;
    color: var(--brand-muted);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.75;
}

.color,
.programms-group__duration {
    color: var(--brand-primary-light) !important;
}

.content {
    color: #d4d1ca;
}

.content p:last-child {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-primary);
    border-radius: 0;
    padding: 13px 24px;
    background: var(--brand-primary);
    color: #17130d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
    border-color: var(--brand-primary-light);
    background: var(--brand-primary-light);
}

/* Header and hero */
.header {
    position: fixed;
    z-index: var(--layer-header);
    inset: var(--admin-panel-offset) 0 auto;
    height: calc(var(--header-height) + var(--safe-area-top));
    border-bottom: 1px solid transparent;
    background: rgba(10, 10, 10, 0.06);
    transition: background-color 220ms ease, border-color 220ms ease, height 220ms ease;
}

.header.is-scrolled,
.pegasus-site.is-menu-open .header {
    height: calc(78px + var(--safe-area-top));
    border-color: var(--brand-line);
    background: var(--brand-background);
}

.header__container {
    display: grid;
    height: 100%;
    grid-template-columns: 200px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding-top: var(--safe-area-top);
    padding-right: var(--safe-area-right);
    padding-left: var(--safe-area-left);
}

.header__logo {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 174px;
    align-items: center;
}

.header__logo picture {
    display: block;
    width: 100%;
}

.header__logo-img {
    width: 100%;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.menu {
    display: flex;
    min-width: 0;
    justify-content: center;
}

.menu__list {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 1.7vw, 28px);
}

.menu__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu__item-dropdown {
    --submenu-gap: 12px;
}

.menu__link,
.menu__toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 0;
    padding: 9px 0;
    background: transparent;
    color: #f3eee6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 160ms ease;
}

.menu__link:hover,
.menu__link[aria-current="page"],
.menu__toggle:hover,
.menu__item.open > .menu__toggle {
    color: var(--brand-primary-light);
}

.menu__toggle {
    width: 44px;
    justify-content: center;
}

.menu__toggle span {
    width: 7px;
    height: 7px;
    transform: rotate(45deg) translate(-2px, -2px);
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.menu__expand {
    position: absolute;
    top: calc(100% + var(--submenu-gap));
    left: 50%;
    min-width: 250px;
    transform: translateX(-50%);
    border: 1px solid var(--brand-line);
    background: var(--brand-background);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.menu__expand[hidden] {
    display: none;
}

@media (min-width: 921px) {
    .menu__expand::before {
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: var(--submenu-gap);
        content: "";
        pointer-events: auto;
    }
}

.menu__list-dropdown {
    margin: 0;
    padding: 12px;
}

.menu__link-dropdown {
    display: block;
    padding: 11px 12px;
    color: #dedad2;
    font-size: 13px;
}

.menu__link-dropdown:hover {
    background: rgba(200, 163, 90, 0.1);
    color: var(--brand-primary-light);
}

.header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    font-weight: 650;
    white-space: nowrap;
}

.phone svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--brand-primary-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header__phone {
    font-size: 14px;
    letter-spacing: 0.025em;
}

.header__btn {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 11px;
}

.menu__burger {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--brand-line);
    background: rgba(20, 20, 20, 0.62);
    cursor: pointer;
}

.menu__burger span {
    width: 22px;
    height: 1px;
    background: var(--brand-primary-light);
    transition: transform 180ms ease, opacity 180ms ease;
}

.pegasus-site.is-menu-open .menu__burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.pegasus-site.is-menu-open .menu__burger span:nth-child(2) {
    opacity: 0;
}

.pegasus-site.is-menu-open .menu__burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.brand-hero {
    position: relative;
    display: grid;
    min-height: max(760px, 100svh);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    isolation: isolate;
    overflow: hidden;
    background: #090909;
}

.brand-hero__media,
.brand-hero__media::after,
.brand-hero__veil {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.brand-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.brand-hero__veil {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.04) 38%, rgba(5, 5, 5, 0.16) 72%, rgba(10, 10, 10, 0.86) 100%),
        radial-gradient(ellipse at 50% 46%, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.24) 32%, rgba(5, 5, 5, 0.08) 58%, rgba(5, 5, 5, 0) 76%);
}

.brand-hero--bright-staff .brand-hero__media img {
    object-position: center center;
}

.brand-hero--bright-staff .brand-hero__veil {
    background:
        linear-gradient(180deg, rgba(8, 6, 4, 0.52) 0%, rgba(8, 6, 4, 0.08) 34%, rgba(8, 6, 4, 0.16) 68%, rgba(8, 6, 4, 0.88) 100%),
        radial-gradient(ellipse at 50% 48%, rgba(4, 4, 4, 0.76) 0%, rgba(4, 4, 4, 0.64) 26%, rgba(4, 4, 4, 0.32) 48%, rgba(4, 4, 4, 0.08) 68%, rgba(4, 4, 4, 0) 82%);
}

.brand-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    max-width: 960px;
    min-height: 650px;
    padding-top: calc(var(--header-height) + var(--safe-area-top) + 88px);
    padding-right: var(--safe-area-right);
    padding-bottom: 112px;
    padding-left: var(--safe-area-left);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.brand-hero__tagline {
    margin: 0 0 24px;
    color: var(--brand-primary-light);
    font-size: clamp(12px, 1.15vw, 16px);
    font-weight: 600;
    letter-spacing: 0.24em;
    line-height: 1.5;
    text-transform: uppercase;
}

.brand-hero__title {
    max-width: 920px;
    margin: 0;
    color: #fffaf1;
    text-wrap: balance;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
}

.brand-hero__title-line {
    display: block;
}

.brand-hero__title-line--intro {
    margin-bottom: 8px;
    color: #f2eee7;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(24px, 1.35vw, 26px);
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-hero__title-line--service {
    font-size: clamp(64px, 3.75vw, 76px);
    line-height: 1.12;
    white-space: nowrap;
}

.brand-hero__title-line--brand {
    margin-top: 7px;
    color: var(--brand-primary-light);
    font-size: clamp(92px, 5.3vw, 110px);
    letter-spacing: 0.055em;
    line-height: 1.04;
}

.brand-hero__subtitle {
    max-width: 680px;
    margin: 26px 0 0;
    color: #ddd7ce;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.6;
    text-wrap: balance;
    text-shadow: 0 2px 20px #000;
    white-space: pre-line;
}

.brand-hero__actions {
    display: flex;
    margin-top: 34px;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.brand-hero__cta {
    min-width: 240px;
    min-height: 54px;
    gap: 12px;
}

.brand-hero__cta::before {
    width: 36px;
    height: 26px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
    -webkit-mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
    mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
    transition: filter 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-hero__cta:hover::before,
.brand-hero__cta:focus-visible::before {
    filter: drop-shadow(0 5px 7px rgba(66, 46, 12, 0.3));
    transform: translate3d(3px, -1px, 0) rotate(-3deg) scale(1.045);
}

.brand-hero__cta:active::before {
    transform: translate3d(1px, 0, 0) scale(0.98);
}

.pegasus-site .brand-hero__cta,
.pegasus-site .header__btn {
    color: #17130d;
}

.brand-hero__price {
    display: flex;
    margin: 0;
    padding-left: 20px;
    align-items: center;
    border-left: 1px solid rgba(226, 197, 125, 0.65);
    gap: 8px;
    line-height: 1;
    white-space: nowrap;
}

.brand-hero__price span {
    color: #e2ddd4;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.brand-hero__price strong {
    color: var(--brand-primary-light);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(38px, 2.4vw, 48px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.brand-services {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--brand-line);
    background: rgba(10, 10, 10, 0.79);
    backdrop-filter: blur(8px);
}

.brand-services__list {
    display: grid;
    margin-block: 0;
    grid-template-columns: repeat(7, 1fr);
}

.brand-services__list li {
    display: flex;
    min-height: 108px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border-right: 1px solid var(--brand-line);
    color: var(--brand-primary-light);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.brand-services__list li:first-child {
    border-left: 1px solid var(--brand-line);
}

.brand-services__list svg {
    width: 37px;
    height: 37px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes hero-curtain-open {
    0% {
        opacity: 0.64;
        transform: scaleX(1);
    }

    56% {
        opacity: 0.38;
    }

    100% {
        opacity: 0;
        transform: scaleX(0.015);
    }
}

@keyframes hero-center-open {
    from {
        opacity: 0.84;
        transform: translate3d(0, 2px, 0) scaleX(0.995);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scaleX(1);
    }
}

@keyframes hero-intro-open {
    from {
        opacity: 0.82;
        letter-spacing: 0.215em;
        transform: translate3d(0, 3px, 0);
    }

    to {
        opacity: 1;
        letter-spacing: 0.2em;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-brand-open {
    from {
        opacity: 0.88;
        text-shadow: 0 0 0 rgba(226, 197, 125, 0);
        transform: translate3d(0, 2px, 0) scaleX(0.985);
    }

    to {
        opacity: 1;
        text-shadow: 0 9px 34px rgba(226, 197, 125, 0.12);
        transform: translate3d(0, 0, 0) scaleX(1);
    }
}

@keyframes hero-actions-open {
    from {
        opacity: 0.78;
        transform: translate3d(0, 3px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-services-open {
    from {
        opacity: 0.16;
        clip-path: inset(0 50% 0 50%);
    }

    to {
        opacity: 1;
        clip-path: inset(0);
    }
}

@media (min-width: 769px) {
    .brand-hero--entrance::before,
    .brand-hero--entrance::after {
        position: absolute;
        z-index: 0;
        top: 0;
        bottom: 109px;
        width: 50%;
        opacity: 0;
        transform: scaleX(0.015);
        content: "";
        pointer-events: none;
    }

    .brand-hero--entrance::before {
        left: 0;
        transform-origin: left center;
        background: linear-gradient(90deg, rgba(6, 6, 6, 0.98), rgba(8, 8, 8, 0.94) 72%, rgba(72, 52, 20, 0.62));
    }

    .brand-hero--entrance::after {
        right: 0;
        transform-origin: right center;
        background: linear-gradient(270deg, rgba(6, 6, 6, 0.98), rgba(8, 8, 8, 0.94) 72%, rgba(72, 52, 20, 0.62));
    }

    .brand-hero--entrance::before,
    .brand-hero--entrance::after {
        animation: hero-curtain-open 780ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
    }

    .brand-hero--entrance .brand-hero__tagline {
        animation: hero-center-open 560ms cubic-bezier(0.16, 1, 0.3, 1) 80ms backwards;
    }

    .brand-hero--entrance .brand-hero__title-line--intro {
        animation: hero-intro-open 500ms cubic-bezier(0.16, 1, 0.3, 1) 120ms backwards;
    }

    .brand-hero--entrance .brand-hero__title-line--service {
        animation: hero-center-open 680ms cubic-bezier(0.16, 1, 0.3, 1) 150ms backwards;
    }

    .brand-hero--entrance .brand-hero__title-line--brand {
        animation: hero-brand-open 720ms cubic-bezier(0.16, 1, 0.3, 1) 220ms backwards;
    }

    .brand-hero--entrance .brand-hero__actions {
        animation: hero-actions-open 460ms cubic-bezier(0.16, 1, 0.3, 1) 430ms backwards;
    }

    .brand-hero--entrance .brand-services__list {
        animation: hero-services-open 520ms cubic-bezier(0.16, 1, 0.3, 1) 350ms backwards;
    }
}

@media (min-width: 769px) {
    .brand-hero__media,
    .brand-hero__veil {
        bottom: 109px;
    }
}

@media (min-width: 1800px) {
    .header__container {
        width: min(calc(100% - 72px), 1440px);
        grid-template-columns: 210px minmax(0, 1fr) auto;
        gap: 34px;
    }

    .header__logo {
        width: 184px;
    }

    .menu__link,
    .menu__toggle {
        font-size: 13px;
    }
}

@media (min-width: 769px) and (max-height: 850px) {
    .brand-hero__content {
        padding-top: calc(var(--header-height) + 38px);
        padding-bottom: 34px;
    }

    .brand-hero__tagline {
        margin-bottom: 14px;
    }

    .brand-hero__actions {
        margin-top: 22px;
    }

}

/* Promotions */
.to-stories {
    padding: 36px 0 24px;
    background: var(--brand-background);
}

.to-stories__list {
    display: flex;
    min-width: 0;
    margin: 0;
    justify-content: center;
    gap: 24px;
    overflow-x: auto;
    padding: 6px 2px 20px;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--brand-primary) transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.to-stories__item {
    flex: 0 0 168px;
    scroll-snap-align: center;
}

.to-stories__button {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.to-stories__img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0 0 12px;
    overflow: hidden;
    border: 1px solid var(--brand-primary-light);
    border-radius: 14px;
    padding: 5px;
    background: var(--brand-background);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.to-stories__img::after {
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(200, 163, 90, 0.72);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.to-stories__img picture,
.to-stories__img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.to-stories__img img {
    filter: saturate(0.94) contrast(1.06) brightness(1.03);
    transition: filter 180ms ease, transform 220ms ease;
}

.to-stories__title {
    display: -webkit-box;
    min-height: 63px;
    overflow: hidden;
    color: #e9e4dc;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    transition: color 180ms ease;
}

.to-stories__button:hover .to-stories__img,
.to-stories__button:focus-visible .to-stories__img {
    border-color: #f0d892;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    transform: translateY(-2px);
}

.to-stories__button:hover .to-stories__title,
.to-stories__button:focus-visible .to-stories__title {
    color: var(--brand-primary-light);
}

.to-stories__button:hover .to-stories__img img,
.to-stories__button:focus-visible .to-stories__img img {
    filter: saturate(0.94) sepia(0.06) contrast(1.04);
    transform: scale(1.035);
}

.to-stories__button:focus-visible {
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 5px;
    border-radius: 2px;
}

.floating-story {
    position: fixed;
    z-index: var(--layer-floating);
    left: max(20px, env(safe-area-inset-left));
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 132px;
    animation: floating-story-in 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.floating-story[hidden] {
    display: none;
}

.mobile-call {
    display: none;
}

.floating-story__button {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 14px;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5));
}

.floating-story__button .to-stories__img {
    width: 132px;
    height: 165px;
    margin: 0;
    box-shadow: none;
}

.floating-story__label {
    position: absolute;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border: 1px solid rgba(226, 197, 125, 0.72);
    padding: 7px 8px;
    background: rgba(10, 10, 10, 0.9);
    color: var(--brand-primary-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.floating-story__button:hover .to-stories__img,
.floating-story__button:focus-visible .to-stories__img {
    transform: translateY(-2px);
}

@keyframes floating-story-in {
    from {
        opacity: 0;
        transform: translate3d(-18px, 10px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Programs */
#programms > .page__container > .design2,
#programms > .page__container > .section__subtitle,
#girls > .page__container > .design1,
#girls > .page__container > .section__subtitle,
#faqSalon > .page__container > .section__title:empty {
    display: none;
}

.programms-block__header,
.girls-block__header,
.faq-block__header {
    margin-bottom: 58px;
    text-align: center;
}

.programms-block__header .section__title,
.girls-block__header .section__title,
.faq-block__header .section__title {
    position: relative;
    width: fit-content;
    max-width: min(900px, calc(100% - 180px));
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
}

.programms-block__header .section__title::before,
.programms-block__header .section__title::after,
.girls-block__header .section__title::before,
.girls-block__header .section__title::after,
.faq-block__header .section__title::before,
.faq-block__header .section__title::after {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 38px;
    background: var(--brand-primary-light);
    content: "";
    -webkit-mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
    mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
}

.programms-block__header .section__title::before,
.girls-block__header .section__title::before,
.faq-block__header .section__title::before {
    right: calc(100% + 28px);
    transform: translateY(-50%) scaleX(-1);
}

.programms-block__header .section__title::after,
.girls-block__header .section__title::after,
.faq-block__header .section__title::after {
    left: calc(100% + 28px);
    transform: translateY(-50%);
}

.programms-block__header .section__subtitle,
.girls-block__header .section__subtitle,
.faq-block__header .section__subtitle {
    margin-inline: auto;
    text-wrap: balance;
}

.programms-groups {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.programms-group__title {
    margin-bottom: 22px;
    font-size: clamp(25px, 2.45vw, 35px);
}

.programms {
    display: flex;
    margin: 0;
    flex-direction: column;
    gap: 12px;
}

.programms__programm,
.faq__item {
    border: 1px solid var(--brand-line);
    background: rgba(42, 42, 42, 0.56);
}

.spoiler__top {
    display: grid;
    width: 100%;
    min-height: 92px;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 22px;
    border: 0;
    padding: 22px 24px;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.spoiler__top:hover {
    background: rgba(200, 163, 90, 0.045);
}

.programms__card {
    position: relative;
    isolation: isolate;
}

.programms__card .spoiler__top {
    display: grid;
    min-height: 146px;
    grid-template-columns: 168px minmax(0, 1fr) minmax(350px, 380px) 32px;
    grid-template-areas:
        "media title meta toggle"
        "media description meta toggle";
    align-items: center;
    gap: 8px 24px;
    padding: 16px 18px;
}

.programms__card .spoiler__top.no-description {
    grid-template-areas: "media title meta toggle";
}

.programms__media {
    position: relative;
    display: block;
    width: 168px;
    overflow: hidden;
    grid-area: media;
    aspect-ratio: 3 / 2;
    border: 1px solid rgba(226, 197, 125, 0.6);
    background: #0d0d0d;
}

.programms__media picture,
.programms__media img,
.programms__media-placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.programms__media img {
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04) sepia(0.025);
    transition: filter 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.programms__media-placeholder {
    position: relative;
    background: linear-gradient(145deg, #181818, #0d0d0d);
}

.programms__media-placeholder::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 38px;
    transform: translate(-50%, -50%);
    background: var(--brand-primary);
    content: "";
    opacity: 0.48;
    -webkit-mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
    mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
}

.programms__media-labels {
    position: absolute;
    right: 7px;
    bottom: 7px;
    left: 7px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 5px;
}

.programms__media-label {
    border: 1px solid rgba(226, 197, 125, 0.56);
    padding: 3px 6px;
    background: rgba(20, 20, 20, 0.88);
    color: var(--brand-primary-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.programms__preview {
    display: flex;
    min-width: 0;
    align-items: center;
    align-self: end;
    grid-area: title;
    flex-wrap: wrap;
    gap: 14px;
}

.programms__name {
    min-width: 0;
    color: var(--brand-text);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(22px, 1.9vw, 27px);
    line-height: 1.28;
    overflow-wrap: anywhere;
}

.programms__summary-description {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    align-self: start;
    grid-area: description;
    -webkit-box-orient: vertical;
    color: #beb9b0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
}

.programms__card.open .programms__summary-description {
    display: block;
    overflow: visible;
}

.programms__labels,
.labels {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    gap: 7px;
}

.programms__label,
.labels__label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--brand-line);
    padding: 4px 8px;
    color: var(--brand-primary-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.programms__label svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.programms__specifications {
    display: flex;
    min-width: 0;
    align-items: center;
    align-self: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    grid-area: meta;
    gap: 10px 20px;
}

@media (min-width: 1024px) {
    .programms__specifications {
        flex-wrap: nowrap;
        gap: 10px 16px;
    }

    .programms__specification {
        overflow-wrap: normal;
        white-space: nowrap;
    }
}

.programms__specification {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    color: #d4d0c8;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.programms__specification svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: var(--brand-primary);
}

.programms__specification.price {
    color: var(--brand-primary-light);
    font-size: 16px;
    font-weight: 600;
}

.programms__specification.duration {
    font-size: 15px;
    font-weight: 500;
}

.spoiler__top-right {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    color: var(--brand-primary-light);
}

.programms__card .spoiler__top-right {
    grid-area: toggle;
    justify-self: end;
}

.spoiler__top-right span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1px;
    transform: translate(-50%, -50%);
    background: currentColor;
    transition: transform 180ms ease;
}

.spoiler__top-right span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.spoiler.open .spoiler__top-right span:last-child {
    transform: translate(-50%, -50%) rotate(0);
}

.spoiler__bottom[hidden] {
    display: none;
}

.spoiler__bottom {
    border-top: 1px solid var(--brand-line);
}

.spoiler__bottom-content {
    padding: 30px 24px 34px;
}

.programms__card .spoiler__bottom-content {
    padding: 20px 18px 22px 210px;
}

.programms__spoiler-detailed {
    min-width: 0;
}

.programms__more-detailed {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
}

.programms__socials {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.programms__socials a {
    display: inline-flex;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(226, 197, 125, 0.72);
    padding: 0 17px;
    background: var(--brand-primary);
    color: #17130d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.programms__socials svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    fill: currentColor;
}

.programms__more-link {
    display: inline-flex;
    min-width: 154px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid rgba(226, 197, 125, 0.72);
    padding: 0 20px;
    color: var(--brand-primary-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .programms__card .spoiler__top:hover .programms__media img {
        filter: saturate(0.98) contrast(1.06) sepia(0.015);
        transform: scale(1.025);
    }

    .programms__socials a:hover {
        border-color: var(--brand-primary-light);
        background: var(--brand-primary-light);
        color: #141414;
    }

    .programms__more-link:hover {
        border-color: var(--brand-primary-light);
        background: rgba(226, 197, 125, 0.1);
        color: #fff0c6;
    }
}

@media (max-width: 1023px) {
    .to-stories__list {
        justify-content: flex-start;
        gap: 20px;
    }

    .to-stories__item {
        flex-basis: 152px;
    }

    .programms__card .spoiler__top {
        min-height: 138px;
        grid-template-columns: clamp(112px, 19vw, 144px) minmax(0, 1fr) 32px;
        grid-template-areas:
            "media title toggle"
            "media description toggle"
            "media meta toggle";
        gap: 6px 18px;
        padding: 16px;
    }

    .programms__card .spoiler__top.no-description {
        grid-template-areas:
            "media title toggle"
            "media meta toggle";
    }

    .programms__media {
        width: clamp(112px, 19vw, 144px);
    }

    .programms__preview {
        align-self: end;
    }

    .programms__specifications {
        align-self: start;
        justify-content: flex-start;
        gap: 8px 18px;
    }

    .programms__card .spoiler__bottom-content {
        padding: 16px 16px 20px calc(16px + clamp(112px, 19vw, 144px) + 18px);
    }

    .programms__more-detailed {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .programms__socials {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .programms__more-link {
        align-self: flex-end;
    }
}

@media (min-width: 680px) and (max-width: 1199px) {
    .programms__more-detailed {
        display: grid;
        gap: 10px;
    }

    .programms__more-detailed--channels-0 {
        grid-template-columns: 1fr;
    }

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

    .programms__more-detailed--channels-2 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .programms__more-detailed--channels-3 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .programms__socials {
        display: contents;
    }

    .programms__social-prefix {
        display: none;
    }

    .programms__more-link {
        min-width: 0;
        align-self: stretch;
        margin-left: 0;
    }

    .programms__more-detailed--channels-0 .programms__more-link {
        width: min(100%, 190px);
        justify-self: end;
    }
}

@media (min-width: 480px) and (max-width: 679px) {
    .programms__card .spoiler__bottom-content {
        padding: 14px 14px 16px;
    }

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

    .programms__more-detailed--channels-1 .programms__socials {
        grid-template-columns: 1fr;
    }

    .programms__more-detailed--channels-3 .programms__socials {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .programms__social-prefix {
        display: none;
    }

    .programms__more-link {
        width: 100%;
        align-self: stretch;
        margin-left: 0;
    }
}

@media (max-width: 479px) {
    .programms__card .spoiler__top {
        min-height: 0;
        grid-template-columns: clamp(88px, 28vw, 112px) minmax(0, 1fr) 32px;
        grid-template-areas:
            "title title toggle"
            "media description description"
            "meta meta meta";
        gap: 10px;
        padding: 12px;
    }

    .programms__card .spoiler__top.no-description {
        grid-template-areas:
            "title title toggle"
            "media meta meta";
    }

    .programms__media {
        width: clamp(88px, 28vw, 112px);
        align-self: start;
    }

    .programms__preview {
        align-self: center;
        padding-right: 2px;
    }

    .programms__name {
        font-size: 20px;
        line-height: 1.25;
    }

    .programms__summary-description {
        align-self: center;
        font-size: 14px;
        line-height: 1.48;
    }

    .programms__specifications {
        width: 100%;
        align-self: center;
        gap: 8px 14px;
    }

    .programms__specification,
    .programms__specification.duration {
        font-size: 15px;
    }

    .programms__specification svg {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .programms__card .spoiler__bottom-content {
        padding: 14px 12px 16px;
    }

    .programms__socials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .programms__more-detailed--channels-1 .programms__socials {
        grid-template-columns: 1fr;
    }

    .programms__more-detailed--channels-3 .programms__socials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .programms__socials a {
        min-height: 48px;
        gap: 8px;
        padding: 0 10px;
        font-size: 12px;
    }

    .programms__socials a:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .programms__socials svg {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .programms__social-prefix {
        display: none;
    }

    .programms__more-link {
        width: 100%;
        min-height: 48px;
        align-self: stretch;
        margin-left: 0;
    }
}

/* Masters */
.girls {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.girls__girl {
    min-width: 0;
}

.girls__card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    background: var(--brand-surface);
}

.girls__top {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
}

.girls__top h3 {
    margin: 0;
}

.girls__name {
    font-family: "Prata", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.girls__now {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
}

.girls__swiper {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #101010;
}

.girls__photo,
.girls__photo picture,
.girls__photo img {
    display: block;
    width: 100%;
    height: 100%;
}

.girls__photo img {
    object-fit: cover;
}

.girls__swiper > .labels {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 12px;
    left: 12px;
}

.girls__swiper .labels__label {
    background: rgba(20, 20, 20, 0.82);
}

.girls__more {
    position: absolute;
    inset: auto 16px 42px;
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(20, 20, 20, 0.78);
    color: var(--brand-primary-light);
    font-size: 14px;
    line-height: 1.4;
}

.girls__camera {
    width: 18px;
    height: 14px;
    border: 1px solid currentColor;
}

.girls__bottom {
    display: flex;
    padding: 16px 20px 20px;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: #bdb8af;
    font-size: 15px;
    line-height: 1.45;
}

.girls__bottom p {
    margin: 0;
}

.girls__swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #fff;
    opacity: 0.5;
}

.girls__swiper .swiper-pagination-bullet-active {
    background: var(--brand-primary-light);
    opacity: 1;
}

.btn_girls {
    margin-top: 34px;
}

/* FAQ */
.faq {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: column;
    gap: 10px;
}

.faq__heading {
    margin: 0;
}

.faq__question {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    line-height: 1.45;
}

.faq .spoiler__bottom-content {
    width: 100%;
    max-width: none;
    color: #cbc7bf;
}

.faq .spoiler__bottom-content .content {
    width: 100%;
    max-width: 900px;
}

/* Process, articles, interior, map and SEO */
.session-flow__list {
    display: grid;
    margin: 46px 0 0;
    counter-reset: session;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--brand-line);
    border: 1px solid var(--brand-line);
}

.session-flow__list li {
    min-height: 235px;
    padding: 30px;
    background: var(--brand-background);
}

.session-flow__step {
    margin: 0 0 18px;
    color: var(--brand-primary-light);
    font-family: "Prata", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.session-flow__list p {
    margin: 0;
    color: #bcb8b0;
    font-size: 14px;
}

.popular-section .section__title {
    max-width: 980px;
    text-wrap: balance;
}

.popular-section .section__subtitle {
    max-width: 810px;
}

.popular {
    display: grid;
    margin: 40px 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.popular__item {
    min-width: 0;
    border: 1px solid var(--brand-line);
    background:
        linear-gradient(135deg, rgba(226, 197, 125, 0.045), transparent 48%),
        #1a1a1a;
    box-shadow: inset 0 0 0 1px rgba(226, 197, 125, 0.035);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.popular__item-link {
    display: grid;
    min-height: 104px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 18px;
    padding: 20px 18px 20px 22px;
    color: #ece8df !important;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.48;
}

.popular__item-label {
    min-width: 0;
    text-wrap: pretty;
    transition: color 180ms ease;
}

.popular__item-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(200, 163, 90, 0.45);
    color: var(--brand-primary-light);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.popular__item-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform 180ms ease;
}

.popular__item-link:hover {
    background: rgba(200, 163, 90, 0.055);
}

.popular__item-link:hover .popular__item-label {
    color: var(--brand-primary-light);
}

.popular__item-link:hover .popular__item-arrow {
    border-color: var(--brand-primary);
    background: rgba(200, 163, 90, 0.1);
}

.popular__item-link:hover .popular__item-arrow svg {
    transform: translateX(2px);
}

.popular__item-link:focus-visible {
    outline-offset: -5px;
}

.advantage-section__title {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 74px;
    font-size: clamp(36px, 3.75vw, 52px);
    line-height: 1.18;
    text-align: center;
    text-wrap: balance;
    white-space: nowrap;
}

.advantage-section__title::before {
    position: absolute;
    bottom: -28px;
    left: 50%;
    width: min(290px, 68%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--brand-primary-light) 24%, var(--brand-primary-light) 76%, transparent);
    content: "";
}

.advantage-section__title::after {
    position: absolute;
    bottom: -32px;
    left: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid var(--brand-primary-light);
    transform: translateX(-50%) rotate(45deg);
    background: var(--brand-background);
    content: "";
}

.advantage {
    position: relative;
    overflow: clip;
    margin-top: 0;
    border: 1px solid rgba(226, 197, 125, 0.68);
    padding: clamp(20px, 2.5vw, 30px);
    background: linear-gradient(145deg, #1b1b1b 0%, #141414 58%, #101010 100%);
    box-shadow: inset 0 0 0 5px #141414, inset 0 0 0 6px rgba(200, 163, 90, 0.24), 0 30px 72px rgba(0, 0, 0, 0.3);
    color: var(--brand-text);
}

.advantage__container {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
    align-items: start;
    gap: clamp(24px, 3vw, 38px);
}

.advantage__swiper {
    position: relative;
    min-width: 0;
}

.advantage-swiper {
    position: relative;
    aspect-ratio: 6 / 5;
    overflow: hidden;
    border: 1px solid rgba(226, 197, 125, 0.62);
    background: #0d0c0a;
    box-shadow: inset 0 0 0 4px #141414, inset 0 0 0 5px rgba(200, 163, 90, 0.2);
}

.advantage-swiper picture,
.advantage-swiper img,
.advantage__zoom {
    width: 100%;
    height: 100%;
}

.advantage__zoom {
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.advantage__zoom:focus-visible {
    outline-offset: -5px;
}

.advantage-swiper img {
    object-fit: cover;
    filter: saturate(0.82) sepia(0.1) contrast(1.04) brightness(0.93);
    transition: filter 180ms ease, transform 260ms ease;
}

.advantage__zoom:hover img,
.advantage__zoom:focus-visible img {
    filter: saturate(0.9) sepia(0.07) contrast(1.04) brightness(0.98);
    transform: scale(1.015);
}

.advantage-swiper-thumbs {
    margin-top: 12px;
    overflow: hidden;
}

.advantage-swiper-thumbs .swiper-slide {
    height: 76px;
    overflow: hidden;
    border: 1px solid transparent;
    padding: 3px;
    background: #101010;
    cursor: pointer;
    opacity: 0.48;
    transition: border-color 180ms ease, opacity 180ms ease;
}

.advantage-swiper-thumbs .swiper-slide:hover,
.advantage-swiper-thumbs .swiper-slide:focus-visible,
.advantage-swiper-thumbs .swiper-slide-thumb-active {
    border-color: var(--brand-primary-light);
    opacity: 1;
}

.advantage-swiper-thumbs .swiper-slide:focus-visible {
    outline-offset: -3px;
}

.advantage-swiper-thumbs picture,
.advantage-swiper-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-swiper-thumbs img {
    filter: saturate(0.74) sepia(0.12) contrast(1.04);
}

.advantage .swiper-button-next,
.advantage .swiper-button-prev {
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border: 1px solid rgba(226, 197, 125, 0.68);
    background: rgba(20, 20, 20, 0.84);
    color: var(--brand-primary-light);
    backdrop-filter: blur(5px);
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.advantage .swiper-button-prev {
    right: auto;
    left: 16px;
}

.advantage .swiper-button-next {
    right: 16px;
    left: auto;
}

.advantage .swiper-button-next:hover,
.advantage .swiper-button-prev:hover,
.advantage .swiper-button-next:focus-visible,
.advantage .swiper-button-prev:focus-visible {
    border-color: var(--brand-primary-light);
    background: var(--brand-primary-light);
    color: #17130d;
}

.advantage .swiper-button-next:focus-visible,
.advantage .swiper-button-prev:focus-visible {
    outline-offset: 3px;
}

.advantage .swiper-button-next::after,
.advantage .swiper-button-prev::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
}

.advantage .swiper-button-prev::after {
    transform: rotate(-135deg);
}

.advantage .swiper-button-next::after {
    transform: rotate(45deg);
}

.advantage .swiper-button-disabled {
    opacity: 0.36;
    pointer-events: none;
}

.advantage__description {
    min-width: 0;
    border: 1px solid rgba(106, 75, 31, 0.42);
    padding: clamp(24px, 2.15vw, 28px);
    background: var(--brand-cream);
    box-shadow: inset 0 0 0 4px rgba(255, 250, 240, 0.38), 0 16px 34px rgba(0, 0, 0, 0.22);
    color: var(--brand-ink);
}

.advantage__description h3:empty {
    display: none;
}

.advantage__description p {
    margin: 0;
    color: #4b4032;
    font-size: 15px;
    line-height: 1.62;
}

.advantage__intro {
    margin-bottom: 18px !important;
}

.advantage__features {
    display: grid;
    margin: 0;
    gap: 7px;
}

.advantage__features li {
    position: relative;
    padding-left: 18px;
    color: #4b4032;
    font-size: 15px;
    line-height: 1.5;
}

.advantage__features li::before {
    position: absolute;
    top: 0.65em;
    left: 2px;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid #9b712f;
    content: "";
}

.advantage__callout {
    margin-top: 18px !important;
    border-top: 1px solid rgba(106, 75, 31, 0.28);
    border-left: 2px solid #a87d39;
    padding: 14px 14px 0 16px;
    background: linear-gradient(90deg, rgba(168, 125, 57, 0.08), transparent 72%);
    font-weight: 600 !important;
}

.advantage hr {
    height: 1px;
    margin: 30px 0 0;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(226, 197, 125, 0.52) 12%, rgba(226, 197, 125, 0.52) 88%, transparent);
}

.advantage__cards {
    display: grid;
    margin: 0 !important;
    padding-top: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.advantage__card {
    min-width: 0;
    min-height: 218px;
    border: 1px solid rgba(200, 163, 90, 0.28);
    padding: 22px 18px 20px;
    background: rgba(255, 255, 255, 0.018);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.advantage__card:hover {
    border-color: rgba(226, 197, 125, 0.52);
    background: rgba(200, 163, 90, 0.045);
}

.advantage__card-icon {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(226, 197, 125, 0.46);
    color: var(--brand-primary-light);
}

.advantage__card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.advantage__card h4 {
    margin: 0 0 11px;
    color: var(--brand-primary-light) !important;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(18px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.35;
}

.advantage__card p {
    margin: 0;
    color: #c9c4bb;
    font-size: 15px;
    line-height: 1.62;
}

.map-section__frame {
    overflow: hidden;
    border: 1px solid var(--brand-line);
    background: var(--brand-surface);
}

.map-section__frame iframe {
    display: block;
    width: 100%;
    height: 430px;
    border: 0;
    filter: saturate(0.62) sepia(0.08);
}

.map-section__link {
    display: none;
}

.seo-text__content {
    position: relative;
    max-width: 960px;
    color: #bdb9b1;
    line-height: 1.75;
}

.seo-text__content:not(.seo-text__content_open) {
    max-height: 480px;
    overflow: hidden;
}

.seo-text__content:not(.seo-text__content_open)::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 168px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0), var(--brand-background) 88%);
    content: "";
    pointer-events: none;
}

.seo-text__content_open {
    max-height: none;
    overflow: visible;
}

.seo-text__content h3 {
    margin: 42px 0 16px;
    color: var(--brand-text);
    font-family: "Prata", Georgia, serif;
    font-size: 26px;
    font-weight: 400;
}

.seo-text__content ul {
    padding-left: 22px;
}

.seo-text__content li {
    list-style: disc;
}

.seo-text__toggle {
    display: flex;
    min-width: 210px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px auto 0;
    border: 1px solid var(--brand-line-strong);
    padding: 11px 22px;
    background: rgba(200, 163, 90, 0.06);
    color: var(--brand-primary-light);
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.045em;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.seo-text__toggle::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    transform: rotate(45deg);
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    transition: margin 180ms ease, transform 180ms ease;
}

.seo-text__toggle[aria-expanded="true"]::after {
    margin-top: 4px;
    transform: rotate(225deg);
}

.seo-text__toggle:hover {
    border-color: var(--brand-primary-light);
    background: rgba(200, 163, 90, 0.13);
    color: #f3d994;
}

/* Footer */
.footer {
    border-top: 1px solid var(--brand-line);
    padding: 76px 0 max(46px, env(safe-area-inset-bottom));
    background: #0d0d0d;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 42px;
}

.footer__brand {
    grid-row: span 2;
}

.footer__brand img {
    width: min(270px, 100%);
}

.footer .section__title {
    margin-bottom: 24px;
    font-size: 32px;
}

.footer__label {
    margin: 0 0 6px;
    color: var(--brand-primary-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer__phone {
    font-family: "Prata", Georgia, serif;
    font-size: 25px;
}

.footer__address p,
.footer__mode {
    margin: 0 0 6px;
    color: #bbb7af;
}

.footer__socials {
    grid-column: 2 / 4;
}

.footer__socials a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid var(--brand-line);
    color: var(--brand-primary-light);
    font-size: 13px;
    font-weight: 650;
}

/* Popups */
.popup {
    position: fixed;
    z-index: var(--layer-popup);
    inset: 0;
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    overflow-y: auto;
    overflow-x: hidden;
    align-items: center;
    align-items: safe center;
    justify-items: center;
    padding:
        max(24px, calc(var(--safe-area-top) + 8px))
        max(24px, calc(var(--safe-area-right) + 8px))
        max(24px, calc(var(--safe-area-bottom) + 8px))
        max(24px, calc(var(--safe-area-left) + 8px));
    background: rgba(0, 0, 0, 0.84);
    opacity: 1;
    transition: opacity 160ms ease;
}

.popup[aria-hidden="true"] {
    display: none;
}

.popup[aria-hidden="false"] {
    animation: popup-backdrop-open 180ms ease-out backwards;
}

.popup[aria-hidden="false"] .popup__container {
    animation: popup-surface-open 340ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes popup-backdrop-open {
    from {
        background-color: rgba(0, 0, 0, 0);
        opacity: 0;
    }

    to {
        background-color: rgba(0, 0, 0, 0.84);
        opacity: 1;
    }
}

@keyframes popup-surface-open {
    from {
        opacity: 0;
        clip-path: inset(3% 2% 3% 2%);
        transform: translate3d(0, 9px, 0) scale(0.985);
    }

    to {
        opacity: 1;
        clip-path: inset(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.popup__container {
    position: relative;
    min-width: 0;
    max-width: 100%;
    justify-self: center;
    width: min(100%, 620px);
    border: 1px solid var(--brand-line-strong);
    background: var(--brand-surface);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.popup__content {
    min-width: 0;
    padding: clamp(28px, 5vw, 52px);
}

.popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-grid;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--brand-primary-light);
    place-items: center;
    cursor: pointer;
}

.popup__close:focus-visible {
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 2px;
}

.popup--signup .popup__container {
    width: min(100%, 680px);
    border-color: rgba(226, 197, 125, .68);
    background:
        radial-gradient(circle at 16% -12%, rgba(200, 163, 90, .17), transparent 38%),
        linear-gradient(150deg, #292824 0%, #211f1c 58%, #181715 100%);
    box-shadow:
        inset 0 0 0 5px #201f1c,
        inset 0 0 0 6px rgba(226, 197, 125, .2),
        0 34px 100px rgba(0, 0, 0, .7);
}

.popup--signup .popup__content {
    padding: clamp(44px, 6vw, 66px) clamp(26px, 6vw, 68px) clamp(34px, 5vw, 54px);
}

.popup--signup .signup {
    display: grid;
    min-width: 0;
    justify-items: center;
    text-align: center;
}

.popup--signup .signup__title {
    max-width: 15ch;
    margin: 0;
    color: var(--brand-text);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(30px, 4.4vw, 42px);
    font-weight: 400;
    line-height: 1.18;
    text-wrap: balance;
}

.popup--signup .signup__note {
    max-width: 48ch;
    margin: 16px auto 0;
    color: rgba(245, 245, 245, .72);
    font-size: 14px;
    line-height: 1.7;
}

.popup--signup .signup__phone-group {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: clamp(28px, 4vw, 38px);
}

.popup--signup .signup__label {
    color: rgba(245, 245, 245, .56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .115em;
    line-height: 1.4;
    text-transform: uppercase;
}

.popup--signup .signup__phone {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary-light);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(27px, 4vw, 35px);
    line-height: 1.25;
    text-decoration: none;
    transition: color 180ms ease;
}

.popup--signup .signup__phone:hover,
.popup--signup .signup__phone:focus-visible {
    color: #f0d791;
}

.popup--signup .signup__phone:focus-visible {
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 4px;
}

.popup--signup .signup__divider {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
    align-items: center;
    gap: 14px;
    margin: clamp(24px, 4vw, 34px) 0 16px;
    color: rgba(245, 245, 245, .54);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.popup--signup .signup__divider::before,
.popup--signup .signup__divider::after {
    height: 1px;
    background: rgba(200, 163, 90, .28);
    content: "";
}

.popup--signup .signup__socials {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.popup--signup .signup__messenger {
    display: inline-flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(226, 197, 125, .42);
    padding: 12px 18px;
    background: rgba(14, 14, 13, .48);
    color: var(--brand-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .015em;
    line-height: 1.3;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.popup--signup .signup__messenger:only-child {
    grid-column: 1 / -1;
}

.popup--signup .signup__messenger svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.popup--signup .signup__messenger:hover,
.popup--signup .signup__messenger:focus-visible {
    border-color: var(--brand-primary-light);
    background: rgba(200, 163, 90, .12);
    color: var(--brand-primary-light);
}

.popup--signup .signup__messenger:focus-visible {
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 3px;
}

.popup--signup .signup__close {
    top: 14px;
    right: 14px;
    border: 1px solid rgba(226, 197, 125, .42);
    background: rgba(12, 12, 11, .9);
    color: var(--brand-primary-light);
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.popup--signup .signup__close:hover,
.popup--signup .signup__close:focus-visible {
    border-color: var(--brand-primary-light);
    background: var(--brand-primary);
    color: #11100c;
}

.popup--signup .signup__close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.popup--image .popup__container {
    width: min(100%, 1100px);
    background: #080808;
}

.popup--image .popup__content {
    padding: 0;
}

.popup--image img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
}

#stories .popup__container {
    width: min(100%, clamp(560px, calc(41.6svh + 104px), 620px));
    max-height: calc(100vh - 32px);
    max-height: calc(100svh - 32px);
    overflow-y: auto;
    overflow-x: hidden;
    border-color: var(--brand-primary);
    background: linear-gradient(155deg, #1b1b1b 0%, #141414 62%, #101010 100%);
    box-shadow: inset 0 0 0 5px #141414, inset 0 0 0 6px rgba(226, 197, 125, 0.42), 0 34px 100px rgba(0, 0, 0, 0.72);
    scrollbar-color: var(--brand-primary) rgba(255, 255, 255, 0.04);
    scrollbar-width: thin;
}

#stories .popup__content {
    min-width: 0;
    padding: 44px 52px 36px;
}

#stories .popup__close {
    z-index: 8;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(226, 197, 125, 0.46);
    background: rgba(20, 20, 20, 0.82);
    color: var(--brand-primary-light);
    font-size: 16px;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

#stories .popup__close:hover,
#stories .popup__close:focus-visible {
    border-color: var(--brand-primary-light);
    background: var(--brand-primary);
    color: #111;
}

.stories,
.stories__container,
.stories__swiper,
.stories__slide-container {
    min-width: 0;
    width: 100%;
}

.stories__container {
    position: relative;
}

.stories__live {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.stories__swiper {
    overflow: hidden;
}

.stories .swiper-slide {
    display: flex;
    min-width: 0;
    height: auto;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 22px;
}

.stories__preview-img {
    position: relative;
    width: min(100%, 514px);
    width: min(100%, 38svh, 514px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 1px solid rgba(200, 163, 90, 0.46);
    background: linear-gradient(145deg, #171717, #0c0c0c);
}

.stories__preview-img picture,
.stories__preview-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.stories__preview-img.is-loading picture,
.stories__preview-img.is-loading img,
.stories__preview-img.is-error picture,
.stories__preview-img.is-error img {
    opacity: 0;
}

.stories__preview-img.is-loaded picture,
.stories__preview-img.is-loaded img {
    opacity: 1;
}

.stories__media-skeleton,
.stories__media-error {
    position: absolute;
    inset: 0;
}

.stories__media-skeleton {
    background: linear-gradient(105deg, #121212 20%, #242018 42%, #171717 55%, #121212 76%);
    background-size: 240% 100%;
    opacity: 0;
    pointer-events: none;
}

.stories__preview-img.is-loading .stories__media-skeleton {
    opacity: 1;
    animation: story-skeleton-shimmer 1.4s ease-in-out infinite;
}

.stories__preview-img.is-loaded .stories__media-skeleton,
.stories__preview-img.is-error .stories__media-skeleton {
    visibility: hidden;
    opacity: 0;
}

.stories__media-error {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: radial-gradient(circle at 50% 34%, rgba(200, 163, 90, 0.12), transparent 42%), #101010;
    color: #c9c3b9;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.stories__media-error[hidden] {
    display: none;
}

@keyframes story-skeleton-shimmer {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: -100% 0;
    }
}

.stories__wing-divider {
    display: block;
    width: 58px;
    height: 30px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
    -webkit-mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
    mask: url("../images/wing-feather-mask-108.png?v=1") center / contain no-repeat;
}

.stories__title {
    margin: 0 auto 12px;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(32px, 2.15vw, 34px);
    font-weight: 400;
    line-height: 1.24;
    text-align: center;
}

.stories__subtitle {
    max-width: 480px;
    margin: 0 auto;
    color: #c4c0b8;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
}

.stories__btn {
    display: inline-flex;
    min-width: 176px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding-block: 12px;
    font-size: 14px;
}

.stories__progress {
    display: flex;
    margin: 0 52px 20px;
    gap: 5px;
}

.stories__progress > div {
    height: 2px;
    flex: 1;
    background: rgba(255, 255, 255, 0.16);
}

.stories__progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--brand-primary-light);
}

.stories__progress > .is-active span {
    width: 100%;
}

.stories .swiper-button-next,
.stories .swiper-button-prev {
    top: min(calc(23.75svh + 22px), 343px);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(226, 197, 125, 0.46);
    border-radius: 0;
    background: rgba(20, 20, 20, 0.78);
    color: var(--brand-primary-light);
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.stories .swiper-button-next:hover,
.stories .swiper-button-prev:hover,
.stories .swiper-button-next:focus-visible,
.stories .swiper-button-prev:focus-visible {
    border-color: var(--brand-primary-light);
    background: var(--brand-primary);
    color: #111;
}

.stories .swiper-button-next:focus-visible,
.stories .swiper-button-prev:focus-visible,
.stories__btn:focus-visible {
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 3px;
}

.stories .swiper-button-next::after,
.stories .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .header__container {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .header__logo {
        width: 146px;
    }

    .menu__list {
        gap: 14px;
    }

    .menu__link {
        font-size: 10px;
    }

    .header__phone span {
        display: none;
    }

    .header__phone {
        min-width: 44px;
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .advantage-section__title {
        white-space: normal;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 76px;
    }

    .page__container {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .header,
    .header.is-scrolled,
    .pegasus-site.is-menu-open .header {
        height: calc(var(--header-height) + var(--safe-area-top));
    }

    .pegasus-site.is-menu-open .header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .to-stories__list {
        gap: 18px;
    }

    .to-stories__item {
        flex-basis: 144px;
    }

    .header__container {
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }

    .header__logo {
        width: 52px;
        order: 1;
    }

    .pegasus-site .header__logo-img {
        width: 46px;
        height: 46px;
        object-fit: contain;
    }

    .header__right {
        margin-left: auto;
        order: 2;
    }

    .header__phone {
        width: 46px;
        justify-content: center;
        border: 1px solid var(--brand-line);
        background: rgba(20, 20, 20, 0.62);
    }

    .header__phone span,
    .header__btn {
        display: none;
    }

    .menu__burger {
        display: flex;
        order: 3;
    }

    .menu {
        position: fixed;
        z-index: -1;
        top: calc(var(--admin-panel-offset) + var(--header-height) + var(--safe-area-top));
        right: 0;
        bottom: 0;
        display: block;
        width: min(88vw, 390px);
        overflow-y: auto;
        border-left: 1px solid var(--brand-line);
        padding:
            22px
            max(22px, calc(var(--safe-area-right) + 8px))
            max(22px, calc(var(--safe-area-bottom) + 8px))
            max(22px, calc(var(--safe-area-left) + 8px));
        transform: translateX(102%);
        background: var(--brand-background);
        visibility: hidden;
        transition: transform 220ms ease, visibility 220ms ease;
    }

    .pegasus-site.is-menu-open .menu {
        transform: translateX(0);
        visibility: visible;
    }

    .menu__list {
        display: block;
    }

    .menu__item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        border-bottom: 1px solid var(--brand-line);
    }

    .menu__link {
        min-height: 54px;
        font-size: 13px;
    }

    .menu__toggle {
        width: 48px;
        min-height: 48px;
    }

    .menu__expand {
        position: static;
        grid-column: 1 / -1;
        transform: none;
        border: 0;
        border-top: 1px solid var(--brand-line);
        background: #1b1b1b;
        box-shadow: none;
    }

    .menu__link-dropdown {
        min-height: 48px;
        padding-left: 22px;
    }

    .brand-hero__content {
        min-height: 650px;
    }

    .brand-services__list {
        overflow-x: auto;
        grid-template-columns: repeat(7, minmax(118px, 1fr));
    }

    .brand-services__list li {
        min-height: 96px;
    }

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

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

    .advantage__container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    .advantage__card {
        min-height: 0;
    }

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

    .footer__brand {
        grid-row: auto;
    }

    .footer__socials {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    body.pegasus-site.has-mobile-call {
        padding-bottom: calc(68px + var(--safe-area-bottom));
    }

    .mobile-call {
        position: fixed;
        z-index: calc(var(--layer-header) - 10);
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        min-height: calc(68px + var(--safe-area-bottom));
        padding:
            9px
            max(14px, calc(var(--safe-area-right) + 8px))
            max(9px, var(--safe-area-bottom))
            max(14px, calc(var(--safe-area-left) + 8px));
        border-top: 1px solid var(--brand-primary-light);
        transform: translate3d(0, 110%, 0);
        background:
            linear-gradient(180deg, rgba(42, 42, 42, 0.99), rgba(20, 20, 20, 0.995)),
            var(--brand-background);
        box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.46);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition:
            transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
            opacity 160ms ease,
            visibility 220ms;
    }

    .mobile-call::before {
        position: absolute;
        top: 4px;
        right: max(14px, calc(var(--safe-area-right) + 8px));
        left: max(14px, calc(var(--safe-area-left) + 8px));
        border-top: 1px solid rgba(200, 163, 90, 0.34);
        content: "";
        pointer-events: none;
    }

    .mobile-call.is-visible {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .mobile-call__link {
        display: flex;
        width: min(100%, 430px);
        min-height: 50px;
        align-items: center;
        justify-content: center;
        gap: 11px;
        margin: 0 auto;
        border: 1px solid rgba(226, 197, 125, 0.72);
        background: linear-gradient(110deg, var(--brand-primary), var(--brand-primary-light));
        color: var(--brand-ink);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    }

    .mobile-call__icon {
        display: grid;
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        place-items: center;
        border: 1px solid rgba(20, 20, 20, 0.34);
        border-radius: 50%;
    }

    .mobile-call__icon svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.7;
    }

    .mobile-call__copy {
        display: flex;
        min-width: 0;
        align-items: baseline;
        gap: 9px;
        line-height: 1.15;
    }

    .mobile-call__action {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .mobile-call__copy strong {
        font-size: clamp(16px, 4.6vw, 19px);
        font-weight: 700;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    .mobile-call__link:focus-visible {
        outline: 2px solid var(--brand-text);
        outline-offset: -4px;
    }

    .mobile-call__link:active {
        transform: translateY(1px);
    }

    .pegasus-site.is-menu-open .mobile-call {
        transform: translate3d(0, 110%, 0);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

@media (max-width: 767px) {
    .page__container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 64px 0;
    }

    .section__title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .section__subtitle {
        margin-bottom: 34px;
        font-size: 14px;
        line-height: 1.7;
    }

    .brand-hero {
        min-height: max(720px, 100svh);
    }

    .brand-hero__media img {
        object-position: center top;
    }

    .brand-hero__veil {
        background:
            linear-gradient(180deg, rgba(6, 6, 6, 0.62) 0%, rgba(6, 6, 6, 0.32) 48%, rgba(6, 6, 6, 0.58) 72%, rgba(8, 8, 8, 0.94) 100%),
            radial-gradient(circle at 42% 28%, rgba(8, 8, 8, 0.24), rgba(8, 8, 8, 0.04) 48%, rgba(8, 8, 8, 0.38));
    }

    .brand-hero--bright-staff .brand-hero__media img {
        object-position: 60% top;
    }

    .brand-hero--bright-staff .brand-hero__veil {
        background:
            linear-gradient(90deg, rgba(5, 4, 3, 0.68) 0%, rgba(5, 4, 3, 0.52) 54%, rgba(5, 4, 3, 0.16) 100%),
            linear-gradient(180deg, rgba(6, 5, 4, 0.58) 0%, rgba(6, 5, 4, 0.16) 42%, rgba(6, 5, 4, 0.46) 72%, rgba(8, 8, 8, 0.94) 100%);
    }

    .brand-hero__content {
        width: min(calc(100% - 36px), 580px);
        min-height: 610px;
        padding-top: calc(128px + var(--safe-area-top));
        padding-bottom: 62px;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .brand-hero__tagline {
        max-width: 300px;
        margin-bottom: 17px;
        font-size: clamp(11px, 3vw, 12px);
        letter-spacing: 0.15em;
    }

    .brand-hero__title {
        max-width: 520px;
    }

    .brand-hero__title-line--intro {
        margin-bottom: 6px;
        font-size: clamp(14px, 4.6vw, 19px);
        letter-spacing: 0.18em;
    }

    .brand-hero__title-line--service {
        font-size: clamp(23px, 7.4vw, 34px);
    }

    .brand-hero__title-line--brand {
        margin-top: 5px;
        font-size: clamp(42px, 13.5vw, 62px);
    }

    .brand-hero__subtitle {
        max-width: 440px;
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.55;
    }

    .brand-hero__actions {
        margin-top: 24px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .brand-hero__cta {
        min-width: 218px;
    }

    .brand-hero__cta::before {
        width: 31px;
        height: 23px;
    }

    .brand-hero__price {
        padding-left: 16px;
    }

    .brand-hero__price strong {
        font-size: clamp(30px, 9vw, 38px);
    }

    .brand-services__list {
        width: 100%;
        padding-right: max(14px, var(--safe-area-right));
        padding-left: max(14px, var(--safe-area-left));
        grid-template-columns: repeat(7, minmax(108px, 1fr));
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline proximity;
        -webkit-overflow-scrolling: touch;
    }

    .brand-services__list li {
        min-height: 84px;
        font-size: 10px;
        scroll-snap-align: start;
    }

    .brand-services__list svg {
        width: 30px;
        height: 30px;
    }

    .programms-block__header .section__title,
    .girls-block__header .section__title,
    .faq-block__header .section__title {
        width: 100%;
        max-width: 100%;
        padding-top: 32px;
    }

    .programms-block__header .section__title::before,
    .programms-block__header .section__title::after,
    .girls-block__header .section__title::before,
    .girls-block__header .section__title::after,
    .faq-block__header .section__title::before,
    .faq-block__header .section__title::after {
        top: 0;
        width: 30px;
        height: 22px;
    }

    .programms-block__header .section__title::before,
    .girls-block__header .section__title::before,
    .faq-block__header .section__title::before {
        right: calc(50% + 6px);
        transform: scaleX(-1);
    }

    .programms-block__header .section__title::after,
    .girls-block__header .section__title::after,
    .faq-block__header .section__title::after {
        left: calc(50% + 6px);
        transform: none;
    }

    .to-stories {
        padding: 28px 0 20px;
    }

    .to-stories__list {
        justify-content: flex-start;
        gap: 16px;
        padding-inline: 4px 34px;
        scroll-padding-inline: 4px;
    }

    .to-stories__item {
        flex-basis: 134px;
        scroll-snap-align: start;
    }

    .to-stories__img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        margin-bottom: 10px;
    }

    .programms-block__header,
    .girls-block__header,
    .faq-block__header {
        margin-bottom: 38px;
    }

    .programms-groups {
        gap: 44px;
    }

    .programms-group__title {
        margin-bottom: 16px;
        font-size: 25px;
    }

    .programms-group__duration {
        display: block;
        margin-bottom: 4px;
    }

    .programms-group__dash {
        display: none;
    }

    .spoiler__top {
        min-height: 82px;
        gap: 12px;
        padding: 18px 15px;
    }

    .spoiler__bottom-content {
        padding: 18px 15px 24px;
    }

    .girls {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .session-flow__list {
        grid-template-columns: 1fr;
    }

    .session-flow__list li {
        min-height: 0;
        padding: 24px;
    }

    .popular {
        overflow-x: auto;
        grid-template-columns: none;
        grid-template-rows: repeat(3, minmax(84px, auto));
        grid-auto-columns: min(82vw, 300px);
        grid-auto-flow: column;
        gap: 10px;
        padding-bottom: 12px;
        scroll-padding-inline: 0;
        scroll-snap-type: inline mandatory;
        scrollbar-color: var(--brand-primary) rgba(255, 255, 255, 0.06);
        scrollbar-width: thin;
        overscroll-behavior-inline: contain;
    }

    .popular__item {
        scroll-snap-align: start;
    }

    .popular__item-link {
        height: 100%;
        min-height: 84px;
        grid-template-columns: minmax(0, 1fr) 36px;
        gap: 14px;
        padding: 16px 14px 16px 17px;
    }

    .popular__item-arrow {
        width: 36px;
        height: 36px;
    }

    .advantage-section__title {
        margin-bottom: 66px;
        font-size: clamp(30px, 8.4vw, 42px);
    }

    .advantage {
        width: 100%;
        margin-left: 0;
        padding: 12px;
    }

    .advantage-swiper-thumbs .swiper-slide {
        height: 58px;
    }

    .advantage__description {
        padding: 22px 18px 24px;
    }

    .advantage__description p,
    .advantage__features li {
        font-size: 15px;
    }

    .advantage__cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .advantage__cards.hide-mobile {
        display: grid;
    }

    .advantage__card {
        padding: 20px 18px;
    }

    .advantage__card-icon {
        margin-bottom: 14px;
    }

    .map-section__frame iframe {
        height: 360px;
    }

    .seo-text__content:not(.seo-text__content_open) {
        max-height: 430px;
    }

    .seo-text__content:not(.seo-text__content_open)::after {
        height: 144px;
    }

    .seo-text__toggle {
        width: min(100%, 250px);
    }

    .footer {
        padding-top: 58px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand img {
        width: 220px;
    }

    .footer__socials {
        grid-column: auto;
    }

    .popup {
        padding: 8px;
    }

    .popup__content {
        padding: 42px 20px 26px;
    }

    #stories .popup__container {
        width: 100%;
        max-height: calc(100vh - 16px);
        max-height: calc(100svh - 16px);
    }

    #stories .popup__content {
        padding: 44px 14px 20px;
    }

    .stories__preview-img {
        width: min(100%, 360px);
        width: min(100%, 30.5svh, 360px);
    }

    .stories .swiper-button-next,
    .stories .swiper-button-prev {
        top: calc(19.0625svh + 22px);
    }

    .stories__wing-divider {
        width: 50px;
        height: 26px;
        margin-bottom: 8px;
    }

    .stories__title {
        font-size: clamp(28px, 8vw, 30px);
    }

    .stories__btn {
        width: min(100%, 220px);
    }

    .stories__progress {
        margin-inline: 30px;
    }
}

@media (max-width: 390px) {
    .page__container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand-hero__content {
        width: calc(100% - 28px);
    }

    .brand-hero__title {
        font-size: 40px;
    }

    .to-stories__list {
        gap: 14px;
    }

    .to-stories__item {
        flex-basis: 124px;
    }

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

@media (max-width: 1179px) {
    .floating-story {
        display: none !important;
    }
}

/* Masters — isolated premium-card experiment (?masters=2) */
.masters-v2 .girls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.masters-v2 .girls__card {
    position: relative;
    isolation: isolate;
    display: grid;
    height: 100%;
    overflow: hidden;
    grid-template-rows: auto auto;
    border: 1px solid rgba(226, 197, 125, 0.58);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(42, 42, 42, 0.94), rgba(18, 18, 18, 0.98)),
        #141414;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.masters-v2 .girls__card::before {
    position: absolute;
    z-index: 12;
    inset: 5px;
    border: 1px solid rgba(200, 163, 90, 0.16);
    border-radius: 13px;
    content: "";
    pointer-events: none;
}

.masters-v2 .girls__card:focus-within {
    border-color: var(--brand-primary-light);
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 4px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(226, 197, 125, 0.24);
}

.masters-v2 .girls__top {
    position: absolute;
    z-index: 8;
    inset: 0 0 auto;
    display: block;
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: 0;
    pointer-events: none;
}

.masters-v2 .girls__top h3 {
    position: absolute;
    z-index: 2;
    right: 64px;
    bottom: 54px;
    left: 18px;
    line-height: 1.2;
}

.masters-v2 .girls__name {
    color: #fffaf0;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(24px, 2vw, 28px);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.92);
    pointer-events: auto;
}

.masters-v2 .girls__name:focus-visible {
    outline: none;
}

.masters-v2 .girls__now {
    position: absolute;
    top: 16px;
    left: 16px;
    margin: 0;
    padding: 7px 11px;
    border: 1px solid rgba(226, 197, 125, 0.58);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.78);
    color: var(--brand-primary-light);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
}

.masters-v2 .girls__swiper {
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0d0d0d;
    touch-action: pan-y;
}

.masters-v2 .girls__swiper::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.18) 0%, rgba(7, 7, 7, 0) 48%, rgba(7, 7, 7, 0.88) 100%),
        linear-gradient(90deg, rgba(7, 7, 7, 0.12), transparent 28%, transparent 72%, rgba(7, 7, 7, 0.12));
    content: "";
    pointer-events: none;
}

.masters-v2 .girls__photo,
.masters-v2 .girls__more {
    pointer-events: none;
}

.masters-v2 .girls__photo img {
    filter: saturate(0.9) contrast(1.04) sepia(0.04);
    transform: scale(1.001);
    transition: filter 260ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
    user-select: none;
    -webkit-user-drag: none;
}

.masters-v2 .girls__swiper > .labels {
    z-index: 7;
    top: 16px;
    right: 62px;
    left: 16px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    pointer-events: none;
}

.masters-v2 .girls__card:has(.girls__now) .girls__swiper > .labels {
    top: 56px;
}

.masters-v2 .girls__swiper .labels__label {
    margin: 0;
    padding: 6px 9px;
    border: 1px solid rgba(226, 197, 125, 0.38);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.76);
    color: #f5ead1;
    font-size: 13px;
    line-height: 1.2;
    backdrop-filter: blur(7px);
}

.masters-v2 .girls__swiper .labels__label > span:first-child {
    display: none;
}

.masters-v2 .girls__photo-count {
    position: absolute;
    z-index: 8;
    right: 18px;
    bottom: 54px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 4px;
    color: rgba(245, 245, 245, 0.92);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.masters-v2 .girls__open-marker {
    position: absolute;
    z-index: 9;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(226, 197, 125, 0.64);
    border-radius: 50%;
    background: rgba(14, 14, 14, 0.72);
    color: var(--brand-primary-light);
    font-size: 18px;
    line-height: 1;
    backdrop-filter: blur(7px);
    pointer-events: none;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.masters-v2 .girls__gallery-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(226, 197, 125, 0.6);
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.7);
    color: var(--brand-primary-light);
    font-size: 19px;
    line-height: 1;
    opacity: 0;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(7px);
    transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.masters-v2 .girls__gallery-arrow_prev {
    left: 14px;
}

.masters-v2 .girls__gallery-arrow_next {
    right: 14px;
}

.masters-v2 .girls__gallery-arrow:hover,
.masters-v2 .girls__gallery-arrow:focus-visible {
    background: var(--brand-primary-light);
    color: #17130d;
    opacity: 1;
    outline: none;
}

.masters-v2 .girls__swiper .swiper-pagination {
    z-index: 8;
    right: 16px;
    bottom: 10px;
    left: 16px;
    display: flex;
    width: auto;
    height: 34px;
    align-items: center;
    gap: 5px;
    pointer-events: none;
}

.masters-v2 .girls__swiper .swiper-pagination-bullet,
.masters-v2 .girls__swiper .swiper-pagination-bullet-active {
    position: relative;
    flex: 1 1 0;
    width: auto;
    height: 3px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(245, 245, 245, 0.38);
    opacity: 1;
}

.masters-v2 .girls__swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
    box-shadow: 0 0 12px rgba(226, 197, 125, 0.28);
}

.masters-v2 .girls__bottom {
    position: relative;
    z-index: 5;
    display: grid;
    min-height: 86px;
    padding: 15px 16px 17px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-top: 1px solid rgba(200, 163, 90, 0.32);
    background:
        linear-gradient(180deg, rgba(35, 33, 29, 0.98), rgba(20, 20, 20, 0.99));
    color: var(--brand-text);
    line-height: 1.2;
}

.masters-v2 .girls__bottom p {
    display: grid;
    min-width: 0;
    margin: 0;
    justify-items: center;
    align-content: center;
    gap: 5px;
    text-align: center;
}

.masters-v2 .girls__parameter-label {
    color: #bdb8af;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.masters-v2 .girls__parameter-value {
    color: var(--brand-primary-light);
    font-size: 17px;
    font-weight: 650;
    line-height: 1;
}

.masters-v2 .girls__parameter-unit {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .masters-v2 .girls__card:hover {
        border-color: rgba(226, 197, 125, 0.92);
        box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(226, 197, 125, 0.16);
        transform: translateY(-4px);
    }

    .masters-v2 .girls__card:hover .girls__photo img {
        filter: saturate(0.96) contrast(1.06) sepia(0.03);
        transform: scale(1.025);
    }

    .masters-v2 .girls__card:hover .girls__open-marker {
        background: var(--brand-primary-light);
        color: #17130d;
        transform: translate(1px, -1px);
    }

    .masters-v2 .girls__card:hover .girls__gallery-arrow,
    .masters-v2 .girls__card:focus-within .girls__gallery-arrow {
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .masters-v2 .girls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .masters-v2 .girls__gallery-arrow {
        opacity: 0.82;
    }
}

@media (min-width: 380px) and (max-width: 767px) {
    .masters-v2 .girls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .masters-v2 .girls__card {
        border-radius: 14px;
    }

    .masters-v2 .girls__card::before {
        inset: 4px;
        border-radius: 10px;
    }

    .masters-v2 .girls__top h3 {
        right: 50px;
        bottom: 49px;
        left: 12px;
    }

    .masters-v2 .girls__name {
        font-size: clamp(20px, 5.4vw, 23px);
    }

    .masters-v2 .girls__now {
        top: 10px;
        left: 10px;
        max-width: calc(100% - 54px);
        padding: 5px 7px;
    }

    .masters-v2 .girls__open-marker {
        top: 9px;
        right: 9px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .masters-v2 .girls__swiper > .labels {
        top: 52px;
        right: 10px;
        left: 10px;
    }

    .masters-v2 .girls__swiper .labels__label {
        padding: 5px 7px;
        font-size: 11px;
    }

    .masters-v2 .girls__photo-count {
        right: 11px;
        bottom: 49px;
        font-size: 12px;
    }

    .masters-v2 .girls__swiper .swiper-pagination {
        right: 10px;
        bottom: 7px;
        left: 10px;
        gap: 3px;
    }

    .masters-v2 .girls__bottom:not(.girls__bottom--compact) {
        min-height: 112px;
        padding: 12px 10px 13px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 5px;
    }

    .masters-v2 .girls__bottom:not(.girls__bottom--compact) p:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .masters-v2 .girls__bottom:not(.girls__bottom--compact) .girls__parameter-label {
        font-size: 15px;
    }

    .masters-v2 .girls__bottom:not(.girls__bottom--compact) .girls__parameter-value {
        font-size: 16px;
    }

}

@media (max-width: 767px) {
    .masters-v2 .girls__gallery-arrow {
        display: none;
    }

    .masters-v2 .girls__bottom--compact {
        display: flex;
        min-height: 50px;
        padding: 9px 6px 10px;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
    }

    .masters-v2 .girls__bottom--compact p {
        display: inline-flex;
        flex: 0 0 auto;
        min-width: 0;
        align-items: baseline;
        justify-content: center;
        gap: 2px;
        white-space: nowrap;
    }

    .masters-v2 .girls__bottom--compact p[data-master-parameter] .girls__parameter-label {
        display: none;
    }

    .masters-v2 .girls__bottom--compact p[data-master-parameter] .girls__parameter-unit {
        display: inline;
        color: #bdb8af;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
    }

    .masters-v2 .girls__bottom--compact p[data-master-parameter] .girls__parameter-value {
        font-size: 14px;
        font-variant-numeric: tabular-nums;
    }
}

@media (max-width: 379px) {
    .brand-hero--bright-staff .brand-hero__media img {
        object-position: 55% top;
    }

    .masters-v2 .girls {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .masters-v2 .girls__bottom--compact {
        min-height: 52px;
        padding-right: 18px;
        padding-left: 18px;
        justify-content: center;
        gap: 10px;
    }

    .masters-v2 .girls__bottom--compact p[data-master-parameter] .girls__parameter-unit {
        font-size: 13px;
    }

    .masters-v2 .girls__bottom--compact p[data-master-parameter] .girls__parameter-value {
        font-size: 15px;
    }
}

/* Pre-client adaptive hardening: tablet seam, short landscape and touch-safe controls. */
@media (min-width: 768px) and (max-width: 920px) {
    .brand-hero__title {
        max-width: 100%;
    }

    .brand-hero__title-line--service {
        font-size: clamp(46px, 6.8vw, 64px);
    }

    .brand-hero__title-line--brand {
        font-size: clamp(68px, 10vw, 92px);
    }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1024px) {
    :root {
        --header-height: 64px;
    }

    .header,
    .header.is-scrolled,
    .pegasus-site.is-menu-open .header {
        height: calc(var(--header-height) + var(--safe-area-top));
    }

    .brand-hero {
        min-height: 100svh;
        height: 100svh;
    }

    .brand-hero__content {
        min-height: 0;
        padding-top: calc(var(--header-height) + var(--safe-area-top) + 4px);
        padding-bottom: 6px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .brand-hero__tagline {
        max-width: none;
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: 0.14em;
        line-height: 1.3;
    }

    .brand-hero__title {
        max-width: 100%;
    }

    .brand-hero__title-line--intro {
        margin-bottom: 2px;
        font-size: 12px;
        line-height: 1.1;
    }

    .brand-hero__title-line--service {
        font-size: clamp(24px, 4.2vw, 34px);
        line-height: 1.05;
    }

    .brand-hero__title-line--brand {
        margin-top: 2px;
        font-size: clamp(38px, 6vw, 52px);
        line-height: 1;
    }

    .brand-hero__actions {
        margin-top: 10px;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 12px;
    }

    .brand-hero__cta {
        min-width: 184px;
        min-height: 44px;
        padding: 9px 14px;
        font-size: 11px;
    }

    .brand-hero__cta::before {
        width: 27px;
        height: 20px;
    }

    .brand-hero__price {
        padding-right: 0;
        padding-left: 12px;
        justify-content: flex-start;
        border-right: 0;
        border-left: 1px solid rgba(226, 197, 125, 0.65);
        gap: 5px;
    }

    .brand-hero__price span {
        font-size: 12px;
    }

    .brand-hero__price strong {
        font-size: 30px;
    }

    .brand-hero__media,
    .brand-hero__veil,
    .brand-hero--entrance::before,
    .brand-hero--entrance::after {
        bottom: 72px;
    }

    .brand-services {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .brand-services__list li {
        min-height: 72px;
        gap: 3px;
        font-size: 9px;
    }

    .brand-services__list svg {
        width: 27px;
        height: 27px;
    }

    .brand-hero--entrance::before,
    .brand-hero--entrance::after {
        content: none;
    }

    .brand-hero--entrance .brand-hero__tagline,
    .brand-hero--entrance .brand-hero__title-line,
    .brand-hero--entrance .brand-hero__actions,
    .brand-hero--entrance .brand-services__list {
        animation: none !important;
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}

@media (pointer: coarse) {
    .menu__toggle {
        width: 44px;
    }

    .header__phone {
        min-width: 44px;
        justify-content: center;
    }
}

@media (min-width: 380px) and (max-width: 767px) {
    .masters-v2 .girls__now {
        font-size: 12px;
        letter-spacing: 0.025em;
    }
}

@media (max-width: 379px) {
    .masters-v2 .girls__now {
        font-size: 13px;
        letter-spacing: 0.035em;
    }
}

/* Pegasus brand signature — one seal, two quiet echoes */
#girls.has-brand-seal {
    padding-top: 42px;
}

.brand-seal {
    --brand-seal-size: clamp(124px, 7.7vw, 148px);
    position: relative;
    z-index: 2;
    display: grid;
    width: min(100%, 680px);
    margin: 0 auto 28px;
    justify-items: center;
    color: var(--brand-primary-light);
    pointer-events: none;
    user-select: none;
}

.brand-seal__axis {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(24px, 1fr) var(--brand-seal-size) minmax(24px, 1fr);
    align-items: center;
    gap: clamp(14px, 2.25vw, 28px);
}

.brand-seal__line {
    position: relative;
    height: 1px;
    opacity: 0.8;
}

.brand-seal__line--left {
    background: linear-gradient(90deg, transparent, rgba(200, 163, 90, 0.38) 28%, var(--brand-primary-light));
}

.brand-seal__line--right {
    background: linear-gradient(90deg, var(--brand-primary-light), rgba(200, 163, 90, 0.38) 72%, transparent);
}

.brand-seal__line::after {
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid var(--brand-primary-light);
    background: var(--brand-background);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.brand-seal__line--left::after {
    right: -4px;
}

.brand-seal__line--right::after {
    left: -4px;
}

.brand-seal__medallion {
    position: relative;
    display: grid;
    width: var(--brand-seal-size);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(226, 197, 125, 0.76);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(226, 197, 125, 0.09), transparent 62%),
        linear-gradient(145deg, rgba(42, 42, 42, 0.78), rgba(12, 12, 12, 0.94));
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.34),
        inset 0 0 30px rgba(200, 163, 90, 0.06);
    isolation: isolate;
}

.brand-seal__medallion::before {
    position: absolute;
    z-index: 0;
    inset: 5px;
    border: 1px solid rgba(200, 163, 90, 0.3);
    border-radius: inherit;
    content: "";
}

.brand-seal__halo {
    position: absolute;
    z-index: -1;
    inset: -28%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 197, 125, 0.22), rgba(200, 163, 90, 0.06) 40%, transparent 70%);
    opacity: 0;
    transform: scale(0.72);
}

.brand-seal__mark,
.brand-seal__foil {
    position: relative;
    z-index: 1;
    display: block;
    width: 79%;
    height: auto;
    grid-area: 1 / 1;
    object-fit: contain;
}

.brand-seal__foil {
    z-index: 2;
    opacity: 0;
    filter: brightness(1.65) saturate(1.12);
    clip-path: polygon(-28% 0, -10% 0, 8% 100%, -10% 100%);
}

.brand-seal__tagline {
    max-width: min(100%, 520px);
    margin: 11px 0 0;
    color: var(--brand-primary-light);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(11px, 0.82vw, 13px);
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.55;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
}

#girls.has-brand-seal .girls-block__header .section__title::before,
#girls.has-brand-seal .girls-block__header .section__title::after {
    display: none;
}

#girls.has-brand-seal .girls-block__header .section__title {
    padding-top: 0;
}

.section.has-brand-watermark {
    isolation: isolate;
}

.section.has-brand-watermark > .page__container {
    position: relative;
    z-index: 1;
}

body.pegasus-site .brand-watermark {
    position: absolute;
    z-index: 0;
    display: none;
    width: clamp(280px, 23vw, 360px);
    height: auto;
    opacity: 0.026;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.brand-watermark--programs {
    top: 38%;
    left: max(-96px, calc(50% - var(--container) / 2 - 190px));
    transform: translateY(-50%);
}

.brand-watermark--session {
    top: 72px;
    right: max(-88px, calc(50% - var(--container) / 2 - 176px));
}

@keyframes brand-seal-halo {
    0% {
        opacity: 0;
        transform: scale(0.72);
    }

    42% {
        opacity: 1;
        transform: scale(0.96);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes brand-seal-foil {
    0% {
        opacity: 0;
        clip-path: polygon(-28% 0, -10% 0, 8% 100%, -10% 100%);
    }

    22% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.78;
    }

    100% {
        opacity: 0;
        clip-path: polygon(92% 0, 110% 0, 128% 100%, 110% 100%);
    }
}

@media (min-width: 1180px) {
    body.pegasus-site .brand-watermark {
        display: block;
    }
}

@media (min-width: 769px) {
    .brand-seal.is-glinting .brand-seal__halo {
        animation: brand-seal-halo 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
        will-change: opacity, transform;
    }

    .brand-seal.is-glinting .brand-seal__foil {
        animation: brand-seal-foil 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
        will-change: opacity, clip-path;
    }
}

@media (max-width: 768px) {
    #girls.has-brand-seal {
        padding-top: 42px;
    }

    .brand-seal {
        --brand-seal-size: clamp(92px, 25vw, 108px);
        width: min(100%, 480px);
        margin-bottom: 24px;
    }

    .brand-seal__axis {
        gap: 11px;
    }

    .brand-seal__line::after {
        width: 6px;
        height: 6px;
    }

    .brand-seal__tagline {
        max-width: 30ch;
        margin-top: 9px;
        font-size: 11px;
        letter-spacing: 0.12em;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
    }

    .brand-seal__halo,
    .brand-seal__foil,
    .brand-seal.is-glinting .brand-seal__halo,
    .brand-seal.is-glinting .brand-seal__foil {
        animation: none !important;
        opacity: 0 !important;
    }

    .stories__preview-img.is-loading .stories__media-skeleton {
        animation: none;
        background-position: 50% 0;
    }

    .to-stories__button:hover .to-stories__img,
    .to-stories__button:focus-visible .to-stories__img,
    .to-stories__button:hover .to-stories__img img,
    .to-stories__button:focus-visible .to-stories__img img {
        transform: none;
    }

    .floating-story {
        animation: none;
    }

    .brand-hero--entrance::before,
    .brand-hero--entrance::after,
    .brand-hero--entrance .brand-hero__tagline,
    .brand-hero--entrance .brand-hero__title-line,
    .brand-hero--entrance .brand-hero__actions,
    .brand-hero--entrance .brand-services__list,
    .popup[aria-hidden="false"],
    .popup[aria-hidden="false"] .popup__container {
        animation: none !important;
    }
}

/* Unified directory masthead — one Pegasus welcome across public sections. */
.pegasus-masthead {
    --pegasus-masthead-pad-top: 28px;
    --pegasus-masthead-pad-bottom: 62px;
    --pegasus-masthead-copy-max: 820px;
    --pegasus-masthead-lead-max: 760px;
    position: relative;
    display: block;
    min-height: 0;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--brand-line);
    padding: var(--pegasus-masthead-pad-top) 0 var(--pegasus-masthead-pad-bottom);
    background:
        radial-gradient(circle at 78% 46%, rgba(226, 197, 125, 0.11), transparent 27%),
        linear-gradient(135deg, #191714 0%, #101010 54%, #17140f 100%);
}

.pegasus-masthead--compact {
    --pegasus-masthead-pad-bottom: 52px;
}

.pegasus-masthead--expanded {
    --pegasus-masthead-pad-bottom: 58px;
    --pegasus-masthead-copy-max: 940px;
    --pegasus-masthead-lead-max: 830px;
}

.pegasus-masthead::before,
.pegasus-masthead::after {
    position: absolute;
    z-index: 0;
    top: 54%;
    width: min(25vw, 380px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 197, 125, 0.4));
    content: "";
    pointer-events: none;
}

.pegasus-masthead::before {
    left: 0;
}

.pegasus-masthead::after {
    right: 0;
    transform: rotate(180deg);
}

.pegasus-masthead__container {
    position: relative;
    z-index: 1;
}

.pegasus-masthead .brand-breadcrumbs {
    margin: 0 0 clamp(24px, 3vw, 38px);
}

.pegasus-masthead__composition {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 232px;
    align-items: center;
    gap: clamp(36px, 8vw, 110px);
}

.pegasus-masthead__copy {
    min-width: 0;
    max-width: var(--pegasus-masthead-copy-max);
}

.pegasus-masthead__title,
.pegasus-masthead h1.pegasus-masthead__title {
    max-width: none;
    margin: 0;
    color: var(--brand-text);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: balance;
}

.pegasus-masthead__accent {
    color: var(--brand-primary-light);
}

.pegasus-masthead__lead,
.pegasus-masthead p.pegasus-masthead__lead,
.pegasus-masthead div.pegasus-masthead__lead {
    max-width: var(--pegasus-masthead-lead-max);
    margin: 18px 0 0;
    color: #cdc5b8;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 1.7;
}

.pegasus-masthead__lead > :first-child {
    margin-top: 0;
}

.pegasus-masthead__lead > :last-child {
    margin-bottom: 0;
}

.pegasus-masthead__lead a {
    color: var(--brand-primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(226, 197, 125, 0.52);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.pegasus-masthead__lead a:hover {
    color: var(--brand-text);
    text-decoration-color: currentColor;
}

.pegasus-masthead__lead a:focus-visible {
    border-radius: 1px;
    outline: 2px solid var(--brand-primary-light);
    outline-offset: 4px;
}

.pegasus-masthead__seal {
    position: relative;
    display: grid;
    width: 190px;
    aspect-ratio: 1;
    place-self: center;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(226, 197, 125, 0.64);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 197, 125, 0.12), rgba(8, 8, 8, 0.7) 66%);
}

.pegasus-masthead__seal-ring {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(200, 163, 90, 0.32);
    border-radius: inherit;
    pointer-events: none;
}

.pegasus-masthead__seal-mark {
    display: block;
    width: 70%;
    height: 70%;
    object-fit: contain;
    opacity: 0.82;
}

.pegasus-masthead__seal::after {
    position: absolute;
    inset: -35%;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 237, 184, 0.78) 49%, transparent 58%);
    content: "";
    opacity: 0;
    transform: translateX(-62%) rotate(8deg);
    pointer-events: none;
}

@keyframes pegasus-masthead-seal-foil {
    0% {
        opacity: 0;
        transform: translateX(-62%) rotate(8deg);
    }

    28% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateX(62%) rotate(8deg);
    }
}

@media (min-width: 769px) {
    .pegasus-masthead__seal.is-revealed::after {
        animation: pegasus-masthead-seal-foil 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }
}

@media (max-width: 920px) {
    .pegasus-masthead {
        --pegasus-masthead-pad-top: 22px;
        --pegasus-masthead-pad-bottom: 52px;
    }

    .pegasus-masthead--compact {
        --pegasus-masthead-pad-bottom: 46px;
    }

    .pegasus-masthead__composition {
        grid-template-columns: minmax(0, 1fr) 150px;
        gap: 24px;
    }

    .pegasus-masthead__seal {
        width: 132px;
    }

}

@media (max-width: 768px) {
    .pegasus-masthead {
        --pegasus-masthead-pad-top: 14px;
        --pegasus-masthead-pad-bottom: 42px;
    }

    .pegasus-masthead--compact {
        --pegasus-masthead-pad-bottom: 36px;
    }

    .pegasus-masthead::before,
    .pegasus-masthead::after {
        display: none;
    }

    .pegasus-masthead .brand-breadcrumbs {
        margin-bottom: 18px;
    }

    .pegasus-masthead__composition {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .pegasus-masthead__copy {
        width: 100%;
        max-width: none;
    }

    .pegasus-masthead__seal {
        display: none;
    }

}

@media (max-width: 600px) {

    .pegasus-masthead__title,
    .pegasus-masthead h1.pegasus-masthead__title {
        font-size: clamp(38px, 12vw, 54px);
        line-height: 1.06;
        text-wrap: pretty;
    }

    .pegasus-masthead__lead,
    .pegasus-masthead p.pegasus-masthead__lead,
    .pegasus-masthead div.pegasus-masthead__lead {
        max-width: none;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.65;
    }

}

@media (prefers-reduced-motion: reduce) {
    .pegasus-masthead__seal::after,
    .pegasus-masthead__seal.is-revealed::after {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* Contacts and salon: arrival dossier + private-club tour */
.contact-page,
.salon-page,
.article-directory,
.article-profile,
.promotion-directory,
.vacancies-page {
    position: relative;
    isolation: isolate;
}

.pegasus-not-found {
    display: grid;
    min-height: calc(100svh - var(--header-height) - 1px);
    align-items: center;
}

.pegasus-not-found__container {
    max-width: 820px;
}

.pegasus-not-found__code {
    margin: 0 0 16px;
    color: rgba(226, 197, 125, .28);
    font-family: "Prata", Georgia, serif;
    font-size: clamp(70px, 14vw, 160px);
    line-height: .8;
}

.pegasus-not-found h1 {
    margin: 0;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 400;
}

.pegasus-not-found__container > p:not(.pegasus-not-found__code) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(245, 245, 245, .72);
    line-height: 1.7;
}

.pegasus-not-found__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.pegasus-not-found__links a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 163, 90, .45);
    padding: 12px 20px;
    color: var(--brand-text);
    text-decoration: none;
}

.pegasus-not-found__links .pegasus-not-found__primary {
    border-color: var(--brand-primary-light);
    background: var(--brand-primary);
    color: #14110b;
}

@media (max-width: 379px) {
    .pegasus-not-found__links {
        display: grid;
        grid-template-columns: 1fr;
    }
}
