﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --bg: #050406;
    --bg-2: #0b070a;
    --panel: #150a12;
    --panel-2: #1d0c17;
    --text: #f5eadf;
    --muted: #cbb8a6;
    --gold: #d8aa63;
    --gold-2: #9f7136;
    --pink: #ff2f8d;
    --pink-2: #b8115c;
    --line: rgba(216, 170, 99, 0.38);
    --line-soft: rgba(255, 255, 255, 0.08);
    --container: 1320px;
    --radius: 28px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    --glow: 0 0 24px rgba(255, 47, 141, 0.28);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    color-scheme: dark;
}
body {
    margin: 0;
    background:
        radial-gradient(
            circle at 8% 16%,
            rgba(111, 10, 42, 0.18),
            transparent 24%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(255, 47, 141, 0.08),
            transparent 23%
        ),
        linear-gradient(180deg, #030304 0%, #090609 32%, #050406 100%);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img,
video {
    max-width: 100%;
    display: block;
}
button,
input,
textarea {
    font: inherit;
}
.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--panel);
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.back-to-top[hidden] {
    display: none;
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--bg);
}
.back-to-top:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.masseuse-comments {
    margin-block: 32px;
    padding-block: 24px;
    border-block: 1px solid var(--line);
}
.masseuse-comments .comment-list,
.masseuse-comments .children {
    list-style: none;
    padding-left: 20px;
}
.masseuse-comments .comment-list {
    margin: 0;
    padding: 0;
}
.masseuse-comments .comment-list > li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.masseuse-comments .comment-list > li::before {
    content: none;
}
.masseuse-comments .comment-list > li + li {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.masseuse-comments .comment-body {
    margin-bottom: 24px;
}
.masseuse-comments .avatar {
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 8px;
}
.masseuse-comments label {
    display: block;
    margin-bottom: 6px;
}
.masseuse-comments input:not([type="checkbox"]):not([type="submit"]),
.masseuse-comments textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    color: var(--text);
}
.masseuse-comments textarea {
    resize: vertical;
}
.masseuse-comments .comment-form-cookies-consent label {
    display: inline;
}
.masseuse-comments .submit {
    padding: 12px 24px;
    border: 1px solid var(--gold);
    border-radius: 24px;
    background: var(--gold);
    color: var(--bg);
    cursor: pointer;
}
.masseuse-comments :is(input, textarea):focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
.section {
    padding: 72px 0;
    position: relative;
}
.section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 10% 0%,
        rgba(255, 47, 141, 0.05),
        transparent 22%
    );
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold);
    font-weight: 600;
}
h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}
.section-head > div {
    max-width: 850px;
}
.section-head > p {
    max-width: 520px;
    color: var(--muted);
    margin: 0;
}
.section-head--center {
    display: block;
    text-align: center;
}
.section-head--center > div {
    margin: auto;
}
.section-head--center > p,
.section-head--center .benefits-intro {
    margin: 18px auto 0;
    max-width: 940px;
}
.section-head h2,
.content-block h2,
.feature-split h2,
.booking-banner h2,
.contacts h2,
.gift h2,
.video-preview h2,
.selection h2 {
    font-size: clamp(44px, 4.5vw, 72px);
    line-height: 0.98;
    margin: 0;
}
.section-head h2::after,
.content-block h2::after,
.feature-split h2::after,
.gift h2::after,
.video-preview h2::after,
.selection h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    margin-top: 22px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.section-head--center h2::after {
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn,
.phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 92, 168, 0.5);
    background-color: #b10e57;
    color: #fff;
    font-weight: 700;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        var(--glow);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}
.btn:hover {
    background-color: #26030f;
    border-color: rgba(240, 199, 120, 0.72);
    color: var(--gold);
}
.phone:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}
.btn--ghost {
    background-color: rgba(15, 9, 14, 0.82);
    border-color: var(--line);
    box-shadow: none;
    color: var(--text);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 700;
}
.link-icon,
.program-card__link-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(4, 4, 5, 0.77);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header__inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    flex: 0 0 auto;
}
.brand__logo {
    width: 175px;
    height: auto;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__phone {
    display: none;
}
.nav a,
.footer a {
    font-size: 14px;
    color: #eaded3;
    opacity: 0.9;
    white-space: nowrap;
    transition: 0.2s;
}
.nav a:hover,
.footer a:hover {
    color: var(--pink);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.langs {
    display: flex;
    gap: 6px;
}
.langs a {
    font-size: 12px;
    color: var(--muted);
}
.langs a.is-active {
    color: var(--gold);
}
.phone {
    min-height: 48px;
    padding: 10px 18px;
    background: rgba(28, 10, 21, 0.72);
    font-size: 14px;
    white-space: nowrap;
}
.menu-toggle {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    display: none;
    place-content: center;
    gap: 7px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: 0.25s;
}

.hero {
    position: relative;
    min-height: 840px;
    display: flex;
    align-items: center;
    isolation: isolate;
}
.hero__media {
    position: absolute;
    inset: 0;
    background: url("../images/simona-hero-photo-v2.jpg") 72% center/cover
        no-repeat;
    z-index: -3;
}
.hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 3, 4, 0.98) 0%,
            rgba(4, 3, 4, 0.92) 36%,
            rgba(5, 3, 5, 0.48) 63%,
            rgba(4, 3, 4, 0.24) 100%
        ),
        linear-gradient(180deg, rgba(3, 3, 4, 0.15), rgba(3, 3, 4, 0.72));
    z-index: -2;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 72% 38%,
            rgba(255, 47, 141, 0.13),
            transparent 24%
        ),
        radial-gradient(
            circle at 12% 65%,
            rgba(120, 10, 45, 0.14),
            transparent 24%
        );
}
.hero__content {
    max-width: 760px;
    padding: 110px 0 86px;
}
.hero h1 {
    font-size: clamp(58px, 6.4vw, 98px);
    line-height: 0.92;
    margin: 0 0 28px;
    max-width: 740px;
    text-wrap: balance;
}
.hero h1::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero__lead {
    font-size: 20px;
    color: var(--muted);
    max-width: 610px;
    margin: 0 0 30px;
}
.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero__facts span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(13, 8, 11, 0.62);
    color: #e2d3c5;
    font-size: 14px;
}
.hero__facts span::before {
    content: "✦";
    color: var(--gold);
}

.notice {
    padding: 0 0 28px;
    margin-top: -48px;
    position: relative;
    z-index: 5;
}
.notice__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(32, 12, 23, 0.94),
        rgba(11, 8, 11, 0.96)
    );
    box-shadow: var(--shadow);
}
.notice__inner p {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
}
.notice__dot {
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.notice__dot::before {
    content: "🔒";
}
.notice__inner a {
    color: var(--gold);
    font-weight: 700;
}

.page-summary .container {
    padding: 34px 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(
        180deg,
        rgba(27, 11, 20, 0.92),
        rgba(10, 7, 10, 0.95)
    );
    box-shadow: var(--shadow);
}
.page-summary p {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    margin: 0 0 18px;
}
.page-summary ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 38px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-summary li {
    border-bottom: 1px solid var(--line-soft);
}
.page-summary a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: #e4d4c6;
}
.page-summary a::after {
    content: "›";
    color: var(--pink);
    font-size: 22px;
}

.programs-intro,
.benefits-intro,
.section-cta,
.richtext {
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(27, 11, 20, 0.86),
        rgba(10, 7, 10, 0.92)
    );
    color: var(--muted);
    box-shadow: var(--shadow);
}
.programs-intro {
    margin-bottom: 28px;
}
.richtext a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}
.richtext a:hover {
    color: var(--pink);
}
.programs-intro p,
.section-cta p,
.benefits-intro p {
    margin: 0 0 12px;
}
.programs-intro p:last-child,
.section-cta p:last-child,
.benefits-intro p:last-child {
    margin-bottom: 0;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.program-card {
    position: relative;
    min-height: 430px;
    padding: 210px 22px 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(46, 17, 31, 0.92),
        rgba(10, 7, 10, 0.98)
    );
    box-shadow: var(--shadow);
}
.program-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 190px;
    background: linear-gradient(
        0deg,
        rgba(10, 7, 10, 0.3),
        rgba(10, 7, 10, 0.08)
    );
    opacity: 0.78;
    pointer-events: none;
}
.program-card:nth-child(2n)::before {
    filter: hue-rotate(10deg) saturate(1.15);
}
.program-card:nth-child(3n)::before {
    background-position: 70% center;
}
.program-card__num {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(8, 6, 8, 0.72);
    border: 1px solid var(--line);
    color: var(--gold);
    font-weight: 700;
    z-index: 2;
}
.program-card .kicker {
    color: var(--gold);
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 10px;
}
.program-card h3 {
    font-size: 32px;
    line-height: 1.04;
    margin: 0 0 12px;
}
.program-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.program-card a {
    color: var(--gold);
    font-weight: 700;
}
.section-cta {
    margin-top: 26px;
}
.section-cta .text-link {
    display: inline-flex;
    margin-top: 10px;
}

.process {
    background: linear-gradient(
        180deg,
        rgba(8, 5, 8, 0.35),
        rgba(20, 8, 15, 0.4)
    );
}
.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.steps article {
    padding: 24px 17px;
    border: 1px solid var(--line);
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(28, 11, 20, 0.9),
        rgba(10, 7, 10, 0.94)
    );
    box-shadow: var(--shadow);
}
.steps article > span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--gold);
    margin-bottom: 14px;
}
.steps h3 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 12px;
}
.steps p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}
.messenger-badges {
    display: inline-flex;
    gap: 6px;
    vertical-align: middle;
}
.messenger-badges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.messenger-badges a:hover {
    transform: translateY(-1px);
}
.messenger-badges a:nth-child(1) {
    background: #229ed9;
}
.messenger-badges a:nth-child(2) {
    background: #7360f2;
}
.messenger-badges a:nth-child(3) {
    background: #25d366;
}
.messenger-badges svg {
    width: 72%;
    height: 72%;
    fill: #fff;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.girl-card {
    position: relative;
    min-height: 560px;
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    background: #10090e;
    box-shadow: var(--shadow);
}
.girl-card__photo {
    position: absolute;
    inset: 0;
}
.girl-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.girl-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 4, 6, 0.06) 35%,
        rgba(8, 5, 8, 0.92) 82%,
        rgba(8, 5, 8, 0.98) 100%
    );
}
.girl-card__top {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.girl-card__top span,
.girl-card__top b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(8, 5, 8, 0.7);
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
}
.girl-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
}
.girl-card__body h3 {
    font-size: 42px;
    margin: 0 0 10px;
}
.girl-card__body dl {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 0 14px;
}
.girl-card__body dl div {
    display: flex;
    gap: 5px;
    color: var(--muted);
    font-size: 13px;
}
.girl-card__body dd {
    margin-left: 8px;
}
.girl-card__body dt::after {
    content: ":";
}
.girl-card__body a {
    color: var(--gold);
    font-weight: 700;
}
.girls__more {
    text-align: center;
    color: var(--muted);
    font-size: 20px;
    margin: 26px 0 0;
}
.girls__more a {
    color: var(--pink);
    font-weight: 700;
}

.archive-girls .navigation.pagination {
    margin: 52px 0;
}
.archive-girls .pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.archive-girls .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(21, 10, 18, 0.82);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}
.archive-girls .pagination a.page-numbers:hover,
.archive-girls .pagination a.page-numbers:focus-visible {
    border-color: var(--pink);
    background: rgba(177, 14, 87, 0.28);
    color: #fff;
    box-shadow: 0 0 18px rgba(255, 47, 141, 0.18);
    outline: none;
}
.archive-girls .pagination .page-numbers.current {
    border-color: var(--pink);
    background: #b10e57;
    color: #fff;
    box-shadow: var(--glow);
}
.archive-girls .pagination .page-numbers.prev,
.archive-girls .pagination .page-numbers.next {
    padding-inline: 18px;
    color: var(--gold);
}
.archive-girls .pagination .page-numbers.dots {
    min-width: 28px;
    padding-inline: 4px;
    border-color: transparent;
    background: transparent;
    color: var(--muted);
}

.selection {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.selection__bg {
    position: absolute;
    inset: 0;
    background: url("/wp-content/uploads/2026/07/1637423840_i02_img_6668.jpg")
        center/cover no-repeat;
}
.selection__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 3, 4, 0.98) 0%,
        rgba(4, 3, 4, 0.78) 48%,
        rgba(4, 3, 4, 0.22) 100%
    );
}
.selection__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 7, 11, 0.62);
    backdrop-filter: blur(4px);
}
.selection__inner > div {
    max-width: 680px;
}
.selection__inner p {
    color: var(--muted);
    font-size: 18px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.benefits-grid article,
.assurance__grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(29, 11, 19, 0.88),
        rgba(9, 7, 9, 0.96)
    );
    box-shadow: var(--shadow);
}
.benefits-grid article > span,
.assurance__grid article > span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--gold);
    margin-bottom: 14px;
}
.benefits-grid article > span svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefits-grid h3 {
    font-size: 31px;
    line-height: 1.02;
    margin: 0 0 10px;
}
.benefits-grid p,
.assurance__grid p {
    color: var(--muted);
    margin: 0;
}

.gift {
    background: radial-gradient(
        circle at 78% 40%,
        rgba(255, 47, 141, 0.11),
        transparent 24%
    );
}
.gift__grid {
    display: grid;
    grid-template-columns: 1fr;
}
.gift__copy {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(
        180deg,
        rgba(26, 10, 19, 0.9),
        rgba(9, 7, 9, 0.96)
    );
    box-shadow: var(--shadow);
}
.gift__copy > *:not(.gift-card) {
    grid-column: 1;
}
.gift-card {
    grid-column: 2;
    grid-row: 1/10;
    border-radius: 22px;
    overflow: hidden;
    min-height: 560px;
    align-self: stretch;
}
.gift-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gift__copy ul {
    padding-left: 20px;
}
.gift__copy li {
    margin: 7px 0;
    color: var(--muted);
}

.video-preview__grid,
.content-block__grid,
.feature-split__grid,
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.video-preview__copy p,
.feature-split__copy p,
.contacts__grid > div > p {
    color: var(--muted);
}
.video-preview__frame {
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.video-preview__frame video {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: #090609;
}
.video-preview__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.content-block__grid {
    align-items: start;
}
.breadcrumbs {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
}
.breadcrumbs a {
    color: var(--text);
    transition: color 0.25s ease;
}
.breadcrumbs a:hover {
    color: var(--pink);
}
.page-content__header {
    max-width: 980px;
    margin-bottom: 36px;
}
.page-content__header h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
}
.page-content__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
    align-items: start;
}
.page-content__main {
    min-width: 0;
}

.page-content__main table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.page-content__main th,
.page-content__main td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    vertical-align: top;
}

.page-content__main th {
    background: var(--line-soft);
    font-weight: 700;
}

.page-content__main h2,
.page-content__main h3,
.page-content__main h4,
.page-content__main h5,
.page-content__main h6 {
    line-height: 1;
}

.page-content__main h2 {
    font-size: clamp(32px, 3.2vw, 56px);
}
.page-content__main p img {
    margin: 16px 32px 16px 0;
    float: left;
}
.single-masseuse .page-content__main p img {
    width: 100%;
    height: auto;
}
.single-masseuse .page-content__main > p:has(img):not(:has(~ p img)) img {
    float: none;
}
.page-content__main ol {
    padding-left: 0;
    list-style: none;
}
.page-content__main ol > li {
    position: relative;
    padding-left: 20px;
}
.page-content__main ol > li::marker {
    content: "";
}
.page-content__main ol > li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}
.page-sidebar {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}
.page-sidebar__group + .page-sidebar__group {
    margin-top: 34px;
}
.page-sidebar__group h2 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.15;
}
.page-sidebar__group ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-sidebar__group li {
    border-bottom: 1px solid var(--line-soft);
}
.page-sidebar__group a {
    display: block;
    position: relative;
    padding: 10px 0 10px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    transition: color 0.25s ease;
}
.page-sidebar__group a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--pink);
}
.page-sidebar__group a:hover {
    color: var(--gold);
}
.page-sidebar__notice {
    margin-top: 38px;
    text-align: center;
}
.page-sidebar__notice img {
    width: min(100%, 220px);
    margin: 0 auto 14px;
}
.page-sidebar__notice p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}
#rules .content-block__grid {
    grid-template-columns: 1fr;
    gap: 26px;
}
#rules .content-block__grid > div:first-child,
#rules .seo-text__body {
    width: 100%;
    max-width: none;
}
.richtext p,
.richtext li {
    color: var(--muted);
}
.richtext h3 {
    font-size: 34px;
}
.seo-text__content {
    position: relative;
    max-height: 390px;
    overflow: hidden;
}
.seo-text__content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(10, 7, 10, 0.98));
}
.seo-text.is-expanded .seo-text__content {
    max-height: none;
}
.seo-text.is-expanded .seo-text__content::after {
    display: none;
}
.privacy-covid-pair {
    background: linear-gradient(
        180deg,
        rgba(12, 7, 11, 0.35),
        rgba(6, 5, 6, 0.2)
    );
}
.feature-split {
    position: relative;
    overflow: hidden;
}
.feature-split::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background:
        linear-gradient(90deg, rgba(6, 5, 6, 0.96), rgba(6, 5, 6, 0.38)),
        url("/wp-content/uploads/2026/07/1596643051_img_1131.jpg") 50%
            center/cover no-repeat;
    opacity: 0.82;
}
.feature-split__grid {
    position: relative;
    z-index: 1;
}
.feature-split__copy {
    max-width: 650px;
    padding: 32px 0;
}
@media (min-width: 901px) {
    .privacy-covid-pair .feature-split__grid {
        grid-template-columns: 3fr 1fr;
    }
    .privacy-covid-pair .feature-split__copy {
        max-width: none;
    }
}
.assurance__head {
    text-align: center;
    margin-bottom: 28px;
}
.assurance__head h2 {
    font-size: clamp(44px, 4.5vw, 70px);
    line-height: 1;
    margin: 0;
}
.assurance__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.booking-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.booking-banner__media {
    position: absolute;
    inset: 0;
    background: url("/wp-content/uploads/2026/07/1605944676_image-3.jpeg") 70%
        center/cover no-repeat;
}
.booking-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 3, 4, 0.98),
        rgba(4, 3, 4, 0.78) 52%,
        rgba(4, 3, 4, 0.25)
    );
}
.booking-banner__inner {
    position: relative;
    z-index: 1;
}
.booking-banner__panel {
    max-width: 720px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 8, 12, 0.75);
    backdrop-filter: blur(4px);
}
.booking-banner__panel p {
    color: var(--muted);
}

.contacts {
    padding: 80px 0;
}
.contacts__details {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}
.contacts__details a {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    color: var(--text);
}
.contacts__details span {
    color: var(--muted);
}
.form {
    display: grid;
    gap: 16px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(
        180deg,
        rgba(29, 11, 20, 0.92),
        rgba(10, 7, 10, 0.97)
    );
    box-shadow: var(--shadow);
}
.form label {
    display: grid;
    gap: 7px;
}
.form label > span {
    color: var(--muted);
    font-size: 13px;
}
.form input:not([type="submit"]),
.form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 17px;
    color: var(--text);
    outline: none;
}
.form input:not([type="submit"]):focus,
.form textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 47, 141, 0.08);
}
.form small {
    color: #9f8d7f;
}

.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--line-soft);
    background: linear-gradient(180deg, #080508, #040304);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.75fr 0.8fr;
    gap: 32px;
}
.footer__grid > div {
    display: grid;
    align-content: start;
    gap: 10px;
}
.footer__menu {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer h4 {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 27px;
}
.footer span {
    color: var(--muted);
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    margin-top: 30px;
    border-top: 1px solid var(--line-soft);
    font-size: 13px;
}
.footer__messengers {
    margin-top: 4px;
}
.footer__messengers a {
    width: 32px;
    height: 32px;
}

@media (max-width: 1220px) {
    .nav {
        display: none;
    }
    .menu-toggle {
        display: grid;
    }
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .girls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .section {
        padding: 56px 0;
    }
    .hero {
        min-height: auto;
    }
    .hero__content {
        padding: 90px 0 120px;
    }
    .hero h1 {
        font-size: clamp(52px, 10vw, 76px);
    }
    .hero__media {
        background-position: 68% center;
    }
    .hero__shade {
        background: linear-gradient(
            90deg,
            rgba(3, 3, 4, 0.98),
            rgba(3, 3, 4, 0.82) 65%,
            rgba(3, 3, 4, 0.48)
        );
    }
    .section-head {
        display: block;
    }
    .section-head > p {
        margin-top: 16px;
    }
    .page-summary ul {
        grid-template-columns: 1fr;
    }
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-preview__grid,
    .content-block__grid,
    .feature-split__grid,
    .contacts__grid {
        grid-template-columns: 1fr;
    }
    .page-content__layout {
        grid-template-columns: 1fr;
    }
    .page-sidebar {
        padding-top: 34px;
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .gift__copy {
        grid-template-columns: 1fr;
    }
    .gift__copy > *:not(.gift-card),
    .gift-card {
        grid-column: 1;
    }
    .gift-card {
        grid-row: auto;
        min-height: 380px;
    }
    .feature-split::after {
        position: relative;
        display: block;
        width: 100%;
        height: 360px;
    }
    .assurance__grid {
        grid-template-columns: 1fr;
    }
    .selection__inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__bottom {
        flex-direction: column;
    }
}
@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 26px), var(--container));
    }
    .header__inner {
        min-height: 78px;
    }
    .brand__logo {
        width: 140px;
    }
    .phone {
        display: none;
    }
    .hero__content {
        padding: 72px 0 110px;
    }
    .hero h1 {
        font-size: 48px;
    }
    .hero__lead {
        font-size: 17px;
    }
    .hero__buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .hero__facts {
        display: grid;
    }
    .notice {
        margin-top: -32px;
    }
    .notice__inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .notice__inner p {
        font-size: 22px;
    }
    .page-summary .container {
        padding: 26px 22px;
    }
    .page-summary p {
        font-size: 32px;
    }
    .program-grid,
    .steps,
    .benefits-grid,
    .girls-grid {
        grid-template-columns: 1fr;
    }
    .program-card {
        min-height: 410px;
    }
    .section-head h2,
    .content-block h2,
    .feature-split h2,
    .booking-banner h2,
    .contacts h2,
    .gift h2,
    .video-preview h2,
    .selection h2 {
        font-size: 42px;
    }
    .selection__inner,
    .booking-banner__panel,
    .gift__copy,
    .form {
        padding: 24px;
    }
    .contacts__details a {
        font-size: 34px;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .header__actions {
        margin-left: auto;
    }
    .header__actions .langs {
        display: flex;
    }
}
@media (max-width: 1220px) {
    .nav.is-open {
        display: block;
        position: fixed;
        left: 20px;
        right: 20px;
        top: 88px;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(10, 7, 10, 0.98);
        box-shadow: var(--shadow);
    }
    .nav.is-open .nav__menu {
        flex-direction: column;
        align-items: stretch;
    }
    .nav.is-open a:not(.phone) {
        padding: 10px 0;
        border-bottom: 1px solid var(--line-soft);
    }
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open .menu-toggle span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }
    body.menu-open .menu-toggle span:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }
}
@media (max-width: 640px) {
    .nav__phone {
        display: block;
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }
    .nav.is-open .nav__phone .phone {
        display: flex;
        justify-content: center;
        padding: 12px 18px;
        font-size: 16px;
    }
}

/* =========================================================
   SIMONA V3 — glamour layer based on IMG_1273
   ========================================================= */

:root {
    --bg: #020204;
    --bg-2: #090408;
    --panel: #160711;
    --panel-2: #240918;
    --text: #fff2e7;
    --muted: #d6c0ae;
    --gold: #f0c778;
    --gold-2: #b87932;
    --pink: #ff1782;
    --pink-2: #b70055;
    --wine: #4b071f;
    --line: rgba(240, 199, 120, 0.46);
    --line-bright: rgba(255, 220, 151, 0.72);
    --shadow: 0 38px 110px rgba(0, 0, 0, 0.58);
    --glow:
        0 0 18px rgba(255, 23, 130, 0.42), 0 0 42px rgba(255, 23, 130, 0.18);
}

body {
    background:
        radial-gradient(
            circle at 5% 7%,
            rgba(145, 0, 53, 0.25),
            transparent 22rem
        ),
        radial-gradient(
            circle at 96% 22%,
            rgba(218, 0, 86, 0.12),
            transparent 24rem
        ),
        radial-gradient(
            circle at 45% 62%,
            rgba(105, 0, 41, 0.12),
            transparent 28rem
        ),
        linear-gradient(180deg, #010103, #080306 38%, #030204);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.28;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.section {
    padding: 84px 0;
    overflow: hidden;
}
.section::before {
    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(255, 23, 130, 0.07),
            transparent 18rem
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(240, 199, 120, 0.045),
            transparent 18rem
        );
}
.section--wine {
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(121, 0, 42, 0.16),
            transparent 24rem
        ),
        radial-gradient(
            circle at 90% 72%,
            rgba(255, 23, 130, 0.07),
            transparent 22rem
        ),
        linear-gradient(180deg, rgba(25, 5, 15, 0.55), rgba(5, 3, 5, 0.2));
}
.section--ornate::after {
    content: "";
    position: absolute;
    inset: 20px;
    pointer-events: none;
    opacity: 0.32;
    background:
        linear-gradient(135deg, rgba(240, 199, 120, 0.16), transparent 10%) top
            left/190px 190px no-repeat,
        linear-gradient(315deg, rgba(255, 23, 130, 0.12), transparent 10%)
            bottom right/190px 190px no-repeat;
    border: 1px solid rgba(240, 199, 120, 0.035);
    border-radius: 42px;
}

.eyebrow {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(240, 199, 120, 0.18);
}
.section-head h2,
.content-block h2,
.feature-split h2,
.booking-banner h2,
.contacts h2,
.gift h2,
.video-preview h2,
.selection h2 {
    color: #fff8ef;
    text-shadow: 0 5px 24px rgba(0, 0, 0, 0.48);
}
.section-head h2::after,
.content-block h2::after,
.feature-split h2::after,
.gift h2::after,
.video-preview h2::after,
.selection h2::after {
    width: 230px;
    height: 13px;
    margin-top: 20px;
    background:
        radial-gradient(circle, var(--gold) 0 2px, transparent 3px) center/14px
            14px no-repeat,
        linear-gradient(90deg, transparent, var(--gold), transparent)
            center/100% 1px no-repeat;
}

.site-header {
    background: linear-gradient(
        180deg,
        rgba(4, 2, 4, 0.94),
        rgba(7, 3, 6, 0.83)
    );
    border-bottom-color: rgba(240, 199, 120, 0.18);
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.26);
}
.header__inner {
    min-height: 102px;
}
.brand__logo {
    width: 188px;
    filter: drop-shadow(0 0 12px rgba(240, 199, 120, 0.16));
}
.nav a,
.footer a {
    position: relative;
    color: #f4e6d9;
}
.nav a::after,
.footer a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--pink));
    transition: 0.25s ease;
}
.nav a:hover::after,
.footer a:hover::after {
    right: 0;
}
.footer .brand::after,
.footer__messengers a::after {
    display: none;
}
.phone {
    border-color: rgba(255, 56, 150, 0.78);
    background: linear-gradient(
        110deg,
        rgba(255, 23, 130, 0.13),
        rgba(240, 199, 120, 0.12)
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 20px rgba(255, 23, 130, 0.33),
        0 0 48px rgba(255, 23, 130, 0.12);
}
.menu-toggle {
    border: 1px solid rgba(240, 199, 120, 0.2);
    border-radius: 50%;
}

.hero {
    min-height: 900px;
    align-items: flex-start;
    padding-top: 0;
}
.hero__media {
    background-position: 72% 24%;
    filter: saturate(1.12) contrast(1.04);
}
.hero__shade {
    background:
        linear-gradient(
            90deg,
            rgba(1, 1, 2, 0.995) 0%,
            rgba(4, 2, 4, 0.96) 34%,
            rgba(6, 2, 5, 0.63) 58%,
            rgba(5, 1, 4, 0.18) 100%
        ),
        linear-gradient(180deg, rgba(2, 1, 2, 0.08), rgba(2, 1, 2, 0.72));
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 72% 28%,
            rgba(255, 23, 130, 0.2),
            transparent 17rem
        ),
        radial-gradient(
            circle at 88% 68%,
            rgba(240, 199, 120, 0.11),
            transparent 18rem
        );
    mix-blend-mode: screen;
}
.hero__content {
    max-width: 100%;
    padding: 116px 0 70px;
    position: relative;
}
.hero__content > .eyebrow,
.hero__content > h1,
.hero__content > .hero__lead,
.hero__content > .hero__buttons,
.hero__content > .hero__facts {
    max-width: 720px;
}
.hero h1 {
    font-size: clamp(58px, 5.45vw, 88px);
    line-height: 0.91;
    letter-spacing: -0.025em;
}
.hero h1 span {
    color: var(--gold);
    text-shadow:
        0 0 18px rgba(216, 170, 99, 0.32),
        0 0 44px rgba(216, 170, 99, 0.14);
}
.hero h1::after {
    width: 280px;
    height: 13px;
    background:
        radial-gradient(circle, var(--gold) 0 2px, transparent 3px) center/14px
            14px no-repeat,
        linear-gradient(90deg, var(--gold), transparent) center/100% 1px
            no-repeat;
}
.hero__lead {
    font-size: 19px;
    line-height: 1.65;
}
.hero__buttons .btn {
    min-width: 288px;
    min-height: 62px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    overflow: hidden;
}
.hero__buttons .btn::after {
    content: "›";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.75;
}
.hero__buttons .btn:first-child::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: linear-gradient(
        115deg,
        transparent 40%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 60%
    );
    transform: translateX(-80%);
    animation: simona-shine 5.6s ease-in-out infinite;
}
@keyframes simona-shine {
    0%,
    70% {
        transform: translateX(-80%);
    }
    88%,
    100% {
        transform: translateX(80%);
    }
}
.hero__facts span {
    border-color: rgba(240, 199, 120, 0.28);
    background: linear-gradient(
        180deg,
        rgba(36, 11, 24, 0.62),
        rgba(8, 5, 8, 0.78)
    );
}
.hero__facts span::before {
    content: "✓";
    color: var(--gold);
}

.hero__medallion {
    position: absolute;
    right: 8px;
    top: 560px;
    width: 154px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(240, 199, 120, 0.72);
    color: #fff7ef;
    background: radial-gradient(
        circle,
        rgba(255, 23, 130, 0.14),
        rgba(7, 3, 6, 0.78) 67%
    );
    box-shadow:
        0 0 0 5px rgba(240, 199, 120, 0.04),
        0 0 32px rgba(255, 23, 130, 0.25),
        inset 0 0 30px rgba(240, 199, 120, 0.08);
}
.hero__medallion::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 23, 130, 0.3);
    border-radius: 50%;
}
.hero__medallion strong {
    font:
        500 44px/1 "Cormorant Garamond",
        serif;
}
.hero__medallion small {
    margin-top: 7px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.09em;
    color: #ead3c1;
}

.hero__prestige {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
    border: 1px solid rgba(240, 199, 120, 0.38);
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(37, 9, 25, 0.87),
        rgba(8, 5, 8, 0.93)
    );
    box-shadow: var(--shadow);
    backdrop-filter: blur(7px);
}
.hero__prestige > div {
    min-height: 165px;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    padding: 22px;
    position: relative;
}
.hero__prestige > div + div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(transparent, var(--line), transparent);
}
.hero__prestige-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--pink);
    font-size: 31px;
    text-shadow: 0 0 17px rgba(255, 23, 130, 0.55);
}
.hero__prestige-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(255, 23, 130, 0.45));
}
.hero__prestige strong {
    max-width: 190px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.07em;
}
.hero__prestige small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.notice {
    margin-top: -16px;
    padding-bottom: 38px;
}
.notice__inner {
    border-color: rgba(240, 199, 120, 0.46);
    background:
        radial-gradient(
            circle at 96% 50%,
            rgba(255, 23, 130, 0.12),
            transparent 15rem
        ),
        linear-gradient(90deg, rgba(31, 8, 21, 0.96), rgba(11, 6, 10, 0.98));
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.44),
        inset 0 0 42px rgba(255, 23, 130, 0.025);
}
.notice__dot {
    width: 62px;
    height: 62px;
    box-shadow: inset 0 0 20px rgba(240, 199, 120, 0.09);
}
.notice__inner a {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
}

.page-summary .container,
.programs-intro,
.benefits-intro,
.section-cta,
.richtext,
.selection__inner,
.gift__copy,
.booking-banner__panel,
.form {
    border-color: rgba(240, 199, 120, 0.45);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255, 23, 130, 0.08),
            transparent 16rem
        ),
        linear-gradient(180deg, rgba(38, 9, 25, 0.91), rgba(8, 5, 8, 0.97));
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.5),
        inset 0 0 42px rgba(240, 199, 120, 0.018);
}
.page-summary .container {
    position: relative;
}
.page-summary .container::before,
.page-summary .container::after {
    content: "❦";
    position: absolute;
    color: rgba(255, 23, 130, 0.22);
    font-size: 84px;
    line-height: 1;
}
.page-summary .container::before {
    left: 18px;
    top: 8px;
    transform: rotate(-28deg);
}
.page-summary .container::after {
    right: 18px;
    bottom: 8px;
    transform: rotate(152deg);
}
.page-summary p {
    color: #fff5ea;
}
.page-summary li {
    position: relative;
}
.page-summary a {
    justify-content: flex-start;
    text-align: left;
}
.page-summary a::before {
    content: "❦";
    color: var(--gold);
    margin-right: 12px;
    opacity: 0.85;
}
.page-summary a::after {
    margin-left: auto;
    padding-left: 14px;
}

.programs-intro {
    min-height: 230px;
    display: flex;
    align-items: center;
    padding: 34px min(40%, 460px) 34px 34px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.programs-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("/wp-content/uploads/2026/07/1631550921_i16_web_-10.jpg")
        82% center/cover no-repeat;
    filter: saturate(1.18) contrast(1.06) brightness(0.72);
    transform: scale(1.02);
}
.programs-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(19, 6, 14, 0.98) 0%,
            rgba(19, 6, 14, 0.92) 43%,
            rgba(19, 6, 14, 0.5) 70%,
            rgba(19, 6, 14, 0.24) 100%
        ),
        radial-gradient(
            circle at 83% 48%,
            rgba(255, 23, 130, 0.24),
            transparent 34%
        ),
        linear-gradient(180deg, rgba(240, 199, 120, 0.1), rgba(6, 4, 6, 0.64));
    box-shadow:
        inset 0 0 0 1px rgba(240, 199, 120, 0.22),
        inset 0 0 70px rgba(255, 23, 130, 0.12);
}
.programs-intro p {
    position: relative;
    z-index: 1;
}

.program-card {
    min-height: 470px;
    padding-top: 222px;
    border-color: rgba(240, 199, 120, 0.48);
    background: linear-gradient(
        180deg,
        rgba(45, 9, 27, 0.95),
        rgba(7, 4, 7, 0.99)
    );
    transition: 0.3s ease;
}
.program-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 23, 130, 0.72);
    box-shadow:
        0 32px 95px rgba(0, 0, 0, 0.62),
        0 0 28px rgba(255, 23, 130, 0.14);
}
.program-card::before {
    height: 204px;
    background:
        linear-gradient(0deg, rgba(8, 4, 7, 0.24), rgba(8, 4, 7, 0.02)),
        radial-gradient(
            circle at 78% 18%,
            rgba(255, 23, 130, 0.18),
            transparent 34%
        );
    opacity: 0.95;
    filter: saturate(1.28) contrast(1.08);
    z-index: 1;
}
.program-card__media {
    position: absolute;
    inset: 0 0 auto;
    height: 204px;
    z-index: 0;
    overflow: hidden;
}
.program-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.24) contrast(1.06) brightness(0.82);
}
.program-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(
            180deg,
            transparent 32%,
            rgba(8, 4, 7, 0.58) 46%,
            transparent 70%
        ),
        radial-gradient(
            circle at 80% 12%,
            rgba(255, 23, 130, 0.16),
            transparent 24%
        );
}
.program-card > div:not(.program-card__media) {
    position: relative;
    z-index: 2;
}
.program-card__num {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    border-color: rgba(240, 199, 120, 0.7);
    box-shadow: 0 0 18px rgba(255, 23, 130, 0.15);
}
.program-card h3 {
    color: var(--gold);
    font-size: 34px;
}
.program-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 42px;
    border: 1px solid rgba(240, 199, 120, 0.56);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}
.program-card a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #1a0b12;
    box-shadow: 0 0 22px rgba(240, 199, 120, 0.26);
    transform: translateY(-2px);
}
/* .program-card:nth-child(2) a,
.program-card:nth-child(5) a {
    border-color: rgba(255, 23, 130, 0.7);
    box-shadow: 0 0 18px rgba(255, 23, 130, 0.22);
} */

.steps article,
.benefits-grid article,
.assurance__grid article {
    position: relative;
    overflow: hidden;
    border-color: rgba(240, 199, 120, 0.42);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(255, 23, 130, 0.08),
            transparent 10rem
        ),
        linear-gradient(180deg, rgba(35, 8, 23, 0.92), rgba(7, 5, 7, 0.98));
}
.steps article::after,
.benefits-grid article::after,
.assurance__grid article::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 13px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.steps article > span,
.benefits-grid article > span,
.assurance__grid article > span {
    border-color: rgba(255, 23, 130, 0.55);
    color: var(--pink);
    box-shadow: 0 0 18px rgba(255, 23, 130, 0.15);
}

.girl-card {
    min-height: 610px;
    border-color: rgba(240, 199, 120, 0.48);
    transition: 0.3s ease;
}
.girl-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 23, 130, 0.76);
    box-shadow:
        0 35px 95px rgba(0, 0, 0, 0.6),
        0 0 26px rgba(255, 23, 130, 0.16);
}
.girl-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(3, 2, 3, 0.02) 30%,
        rgba(8, 3, 7, 0.34) 56%,
        rgba(7, 3, 6, 0.98) 93%
    );
}
.girl-card__top span {
    color: #fff;
    border-color: rgba(255, 23, 130, 0.55);
    box-shadow: 0 0 18px rgba(255, 23, 130, 0.18);
}
.girl-card__body h3 {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(240, 199, 120, 0.16);
}
.girl-card__body a {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(255, 23, 130, 0.58);
    border-radius: 999px;
    box-shadow: 0 0 15px rgba(255, 23, 130, 0.13);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}
.girl-card__body a:hover {
    background-color: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 0 24px rgba(255, 23, 130, 0.3);
    transform: translateY(-2px);
}

.selection {
    min-height: 620px;
}
.selection__bg {
    filter: saturate(1.18) contrast(1.06);
}
.selection__shade {
    background:
        linear-gradient(
            90deg,
            rgba(3, 2, 3, 0.99) 0%,
            rgba(5, 2, 4, 0.9) 43%,
            rgba(5, 1, 4, 0.18) 100%
        ),
        radial-gradient(
            circle at 78% 45%,
            rgba(255, 23, 130, 0.15),
            transparent 18rem
        );
}
.selection__inner {
    min-height: 360px;
}
.selection__inner::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(240, 199, 120, 0.12);
    border-radius: 20px;
    pointer-events: none;
}

.gift-card,
.video-preview__frame {
    border: 1px solid rgba(240, 199, 120, 0.5);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 23, 130, 0.08);
}
.gift-card {
    position: relative;
}
.gift-card::after {
    content: "ПОДАРОЧНЫЙ СЕРТИФИКАТ";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(240, 199, 120, 0.5);
    border-radius: 14px;
    background: rgba(7, 4, 6, 0.76);
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 12px;
    backdrop-filter: blur(5px);
}
.gift__copy > .gift-cards {
    grid-column: 2;
    grid-row: 1;
}
.gift__grid {
    gap: 28px;
}
.gift__copy {
    grid-template-columns: minmax(0, 3fr) minmax(380px, 2fr);
    align-items: start;
    gap: 30px 42px;
    min-height: auto;
    padding: 54px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 48%,
            rgba(255, 23, 130, 0.16),
            transparent 24rem
        ),
        radial-gradient(
            circle at 52% 12%,
            rgba(240, 199, 120, 0.1),
            transparent 18rem
        ),
        linear-gradient(180deg, rgba(28, 8, 20, 0.94), rgba(8, 5, 8, 0.98));
}
.gift__head {
    position: relative;
    z-index: 2;
    max-width: 1080px;
}
.gift__copy::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(240, 199, 120, 0.16);
    border-radius: calc(var(--radius) - 10px);
    pointer-events: none;
}
.gift__text {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    align-content: center;
    max-width: 680px;
}
.gift__head .eyebrow,
.gift__head h2,
.gift__text p,
.gift__text ul {
    margin-top: 0;
    margin-bottom: 0;
}
.gift__text .btn {
    justify-self: start;
    margin-top: 10px;
}
.gift-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    align-self: stretch;
    isolation: isolate;
}
.gift-cards::before {
    display: none;
}
.gift-cards .gift-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    width: 100%;
    align-self: auto;
    aspect-ratio: auto;
    display: block;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(13, 7, 11, 0.94),
        rgba(5, 4, 5, 0.98)
    );
    transform-origin: center;
}
.gift-cards .gift-card:first-child {
    transform: none;
}
.gift-cards .gift-card:nth-child(2) {
    transform: none;
}
.gift-cards .gift-card::after {
    display: none;
}
.gift-cards .gift-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    background: #050405;
}

.feature-split::after {
    opacity: 1;
    filter: saturate(1.18);
}
.feature-split__copy {
    padding: 48px 34px;
    border: 1px solid rgba(240, 199, 120, 0.35);
    border-radius: 26px;
    background: linear-gradient(
        180deg,
        rgba(32, 8, 22, 0.68),
        rgba(7, 5, 7, 0.8)
    );
    backdrop-filter: blur(5px);
}

.booking-banner__panel {
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.56),
        0 0 34px rgba(255, 23, 130, 0.08);
}
.booking-banner__media {
    filter: saturate(1.2) contrast(1.05);
}

.form input:not([type="submit"]),
.form textarea {
    background: linear-gradient(
        180deg,
        rgba(7, 5, 7, 0.85),
        rgba(17, 6, 13, 0.7)
    );
    border-color: rgba(240, 199, 120, 0.36);
}
.form .btn {
    min-height: 62px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer {
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(121, 0, 42, 0.12),
            transparent 18rem
        ),
        linear-gradient(180deg, #080307, #020203);
    border-top-color: rgba(240, 199, 120, 0.22);
}
.footer__grid {
    padding-top: 18px;
}
.footer h4 {
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 1220px) {
    .hero__medallion {
        right: 20px;
        top: 520px;
    }
    .hero__prestige {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero__prestige > div:nth-child(3)::before {
        display: none;
    }
}
@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }
    .hero__content {
        padding-bottom: 72px;
    }
    .hero__medallion {
        position: relative;
        right: auto;
        top: auto;
        margin: 30px 0 0 auto;
    }
    .gift__copy {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 30px;
    }
    .gift__copy > .gift-cards {
        grid-column: 1;
        grid-row: auto;
    }
    .gift__head,
    .gift__text {
        grid-column: 1;
        grid-row: auto;
    }
    .gift-cards {
        display: grid;
        gap: 18px;
        min-height: 0;
    }
    .gift-cards::before {
        display: none;
    }
    .gift-cards .gift-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        transform: none;
    }
    .programs-intro {
        padding: 28px;
        min-height: auto;
    }
    .programs-intro::before {
        background-position: 74% center;
        filter: saturate(1.08) contrast(1.02) brightness(0.48);
    }
    .programs-intro::after {
        background:
            linear-gradient(
                90deg,
                rgba(19, 6, 14, 0.98),
                rgba(19, 6, 14, 0.86)
            ),
            radial-gradient(
                circle at 86% 48%,
                rgba(255, 23, 130, 0.16),
                transparent 38%
            );
    }
    .section--ornate::after {
        inset: 10px;
    }

    .page-content__main p img {
        max-width: 100%;
        height: auto;
        width: 100%;
        float: none;
        margin: 0 auto 16px;
    }
}
@media (max-width: 640px) {
    .section {
        padding: 58px 0;
    }
    .hero h1 {
        font-size: 50px;
    }
    .hero__prestige {
        grid-template-columns: 1fr 1fr;
        margin-top: 34px;
    }
    .hero__prestige > div {
        min-height: 138px;
        padding: 17px 12px;
    }
    .hero__prestige > div:nth-child(3)::before {
        display: block;
    }
    .hero__prestige > div:nth-child(odd)::before {
        display: none;
    }
    .hero__prestige strong {
        font-size: 10px;
    }
    .hero__prestige small {
        font-size: 9px;
    }
    .hero__buttons .btn {
        min-width: 0;
    }
    .hero__medallion {
        width: 128px;
    }
    .archive-girls .navigation.pagination {
        margin: 40px 0;
    }
    .archive-girls .pagination .page-numbers {
        min-width: 42px;
        min-height: 42px;
        padding: 7px 10px;
    }
    .archive-girls .pagination .page-numbers.prev,
    .archive-girls .pagination .page-numbers.next {
        padding-inline: 13px;
    }
    .page-summary .container::before,
    .page-summary .container::after {
        font-size: 55px;
    }
}

@media (max-width: 640px) {
    .header__inner {
        justify-content: flex-start;
        gap: 10px;
        min-height: 76px;
    }
    .brand {
        flex: 0 0 auto;
        margin-right: 0;
    }
    .brand__logo {
        width: 138px;
    }
    .header__actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        min-width: 0;
    }
    .menu-toggle {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        margin-left: 0;
    }
}

@media (min-width: 641px) and (max-width: 1220px) {
    .header__inner {
        justify-content: flex-start;
        gap: 14px;
    }
    .brand {
        flex: 0 0 auto;
        margin-right: 0;
    }
    .header__actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
    }
    .menu-toggle {
        flex: 0 0 48px;
        margin-left: 0;
    }
}

.front-simona-ref h1,
.front-simona-ref h2,
.front-simona-ref h3,
.front-simona-ref h4,
.front-simona-ref h5,
.front-simona-ref h6,
.front-simona-ref h1 span,
.front-simona-ref h2 span,
.front-simona-ref h3 span,
.front-simona-ref h4 span,
.front-simona-ref h5 span,
.front-simona-ref h6 span {
    color: var(--pink);
}
