:root {
    --bg: #fbf7ff;
    --bg-soft: #f8f1fb;
    --violet: #a987d6;
    --violet-deep: #6f4aa8;
    --lavender: #e9ddf8;
    --powder: #f4e8f8;
    --blush: #f7dce8;
    --milk: #fffaf7;
    --sage: #dce9df;
    --text: #2f2638;
    --muted: #6f6478;
    --glass: rgba(255, 255, 255, 0.65);
    --glass-strong: rgba(255, 255, 255, 0.82);
    --line: rgba(111, 74, 168, 0.18);
    --shadow: 0 28px 80px rgba(104, 74, 140, 0.16);
    --shadow-soft: 0 18px 48px rgba(104, 74, 140, 0.12);
    --radius-lg: 42px;
    --radius-md: 28px;
    --max-width: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(120deg, rgba(251, 247, 255, 0.94), rgba(255, 250, 247, 0.88)), radial-gradient(circle at 12% 14%, rgba(233, 221, 248, 0.86), transparent 28rem), radial-gradient(circle at 92% 8%, rgba(247, 220, 232, 0.74), transparent 26rem), var(--bg);
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
canvas {
    display: block;
}

::selection {
    color: #ffffff;
    background: rgba(111, 74, 168, 0.82);
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    padding: 0.8rem 1rem;
    border: 2px solid var(--violet-deep);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: var(--violet-deep);
    box-shadow: 0 12px 32px rgba(47, 38, 56, 0.22);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

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

#main-content:focus {
    outline: none;
}

:focus-visible {
    outline: 3px solid rgba(111, 74, 168, 0.92);
    outline-offset: 4px;
}

/* Decorative ambient layer: soft shapes and thin paths behind content. */
.ambient-layer {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.aura {
    position: absolute;
    display: block;
    filter: blur(34px);
    opacity: 0.56;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    transition: transform 0.35s ease-out;
}

.aura-1 {
    width: 42rem;
    height: 36rem;
    left: -12rem;
    top: 12rem;
    border-radius: 46% 54% 64% 36% / 58% 36% 64% 42%;
    background: radial-gradient(circle at 34% 38%, rgba(169, 135, 214, 0.42), transparent 48%), radial-gradient(circle at 68% 62%, rgba(247, 220, 232, 0.54), transparent 54%);
}

.aura-2 {
    width: 38rem;
    height: 45rem;
    right: -13rem;
    top: -9rem;
    border-radius: 62% 38% 48% 52% / 40% 58% 42% 60%;
    background: radial-gradient(circle at 38% 36%, rgba(233, 221, 248, 0.92), transparent 52%), radial-gradient(circle at 64% 68%, rgba(220, 233, 223, 0.62), transparent 50%);
}

.aura-3 {
    width: 34rem;
    height: 28rem;
    right: 12%;
    bottom: 8rem;
    border-radius: 35% 65% 52% 48% / 54% 42% 58% 46%;
    background: radial-gradient(circle at 38% 46%, rgba(244, 232, 248, 0.92), transparent 56%), radial-gradient(circle at 70% 52%, rgba(169, 135, 214, 0.28), transparent 48%);
}

.ambient-thread {
    position: absolute;
    width: min(66rem, 92vw);
    height: 24rem;
    opacity: 0.48;
}

    .ambient-thread path {
        fill: none;
        stroke: rgba(111, 74, 168, 0.16);
        stroke-width: 1.1;
        stroke-linecap: round;
    }

.ambient-thread-1 {
    left: -8rem;
    top: 36rem;
}

.ambient-thread-2 {
    right: -11rem;
    bottom: 3rem;
    transform: rotate(-9deg);
}

.section {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 6.5rem 0;
    position: relative;
}

.section-label,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--violet-deep);
    font-size: 0.95rem;
    font-weight: 700;
}

    .section-label::before,
    .eyebrow::before {
        content: "";
        width: 2.6rem;
        height: 1px;
        background: linear-gradient(90deg, rgba(111, 74, 168, 0.82), rgba(111, 74, 168, 0.08));
    }

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.08;
}

h1 {
    max-width: 12.6em;
    margin-bottom: 1.35rem;
    font-size: 4.7rem;
}

h2 {
    margin-bottom: 1.15rem;
    font-size: 3.35rem;
}

h3 {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    line-height: 1.35;
}

p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.78;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 3.45rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(111, 74, 168, 0.18);
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    overflow: hidden;
    font-weight: 700;
    color: var(--violet-deep);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

    .button::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
        transform: translateX(-120%);
        transition: transform 0.7s var(--ease);
    }

    .button:hover {
        transform: translateY(-3px);
    }

        .button:hover::after {
            transform: translateX(120%);
        }

.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(111, 74, 168, 0.98), rgba(169, 135, 214, 0.96)), var(--violet);
    box-shadow: 0 18px 42px rgba(111, 74, 168, 0.28);
}

    .button--primary:hover {
        box-shadow: 0 24px 56px rgba(111, 74, 168, 0.34);
    }

.button--ghost {
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 14px 36px rgba(111, 74, 168, 0.11);
    backdrop-filter: blur(16px);
}

.site-header {
    position: fixed;
    top: 1.1rem;
    left: 50%;
    z-index: 30;
    display: flex;
    width: min(var(--max-width), calc(100% - 40px));
    min-height: 4.9rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 0.88rem 0.78rem 1.18rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 54px rgba(95, 72, 122, 0.12);
    backdrop-filter: blur(22px);
    transform: translateX(-50%);
    transition: box-shadow 0.3s ease, background 0.3s ease, top 0.3s ease;
}

    .site-header.is-scrolled {
        top: 0.7rem;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 18px 58px rgba(95, 72, 122, 0.17);
    }

.brand {
    display: grid;
    gap: 0.05rem;
    padding-left: 0.15rem;
}

.brand__name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--text);
}

.brand__role {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.22rem;
}

    .site-nav a {
        display: inline-flex;
        min-height: 2.75rem;
        align-items: center;
        border-radius: 999px;
        padding: 0.72rem 0.92rem;
        color: var(--muted);
        font-size: 0.95rem;
        font-weight: 700;
        transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

        .site-nav a:hover,
        .site-nav a.is-active,
        .site-nav a[aria-current="location"] {
            color: var(--violet-deep);
            background: rgba(233, 221, 248, 0.55);
        }

    .site-nav .nav-button {
        margin-left: 0.3rem;
        color: #ffffff;
        background: linear-gradient(135deg, var(--violet-deep), var(--violet));
        box-shadow: 0 14px 30px rgba(111, 74, 168, 0.22);
    }

        .site-nav .nav-button:hover {
            transform: translateY(-2px);
            color: #ffffff;
        }

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(233, 221, 248, 0.7);
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 1.15rem;
        height: 2px;
        margin: 3px auto;
        border-radius: 99px;
        background: var(--violet-deep);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

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

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

.hero {
    display: grid;
    min-height: 84vh;
    grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.88fr);
    align-items: center;
    gap: 3.2rem;
    padding-top: 9.4rem;
    padding-bottom: 4.4rem;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__lead {
    max-width: 43rem;
    margin-bottom: 2rem;
    font-size: 1.18rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
}

.hero__soft-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: var(--muted);
    font-size: 0.95rem;
}

    .hero__soft-line span {
        padding: 0.52rem 0.78rem;
        border: 1px solid rgba(111, 74, 168, 0.11);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.52);
        backdrop-filter: blur(14px);
    }

.hero-art {
    --mx: 0px;
    --my: 0px;
    position: relative;
    min-height: 36rem;
    transform: translate3d(var(--mx), var(--my), 0);
    transition: transform 0.5s var(--ease);
}

.hero-canvas {
    position: absolute;
    inset: -3rem -2rem;
    width: calc(100% + 4rem);
    height: calc(100% + 6rem);
    opacity: 0.82;
}

.hero-art__halo {
    position: absolute;
    inset: 8% 6% 12% 7%;
    border-radius: 42% 58% 52% 48% / 50% 42% 58% 50%;
    background: radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.92), transparent 26%), radial-gradient(circle at 45% 52%, rgba(233, 221, 248, 0.74), transparent 52%), radial-gradient(circle at 72% 70%, rgba(247, 220, 232, 0.56), transparent 48%);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.58), 0 28px 80px rgba(111, 74, 168, 0.18);
    animation: breathe 9s ease-in-out infinite;
}

.breath-line {
    position: absolute;
    inset: 7% 2% auto auto;
    width: 88%;
    max-width: 33rem;
    opacity: 0.82;
}

    .breath-line path {
        fill: none;
        stroke: rgba(111, 74, 168, 0.34);
        stroke-width: 1.4;
        stroke-linecap: round;
        stroke-dasharray: 7 13;
        animation: threadMove 12s linear infinite;
    }

        .breath-line path:nth-child(2) {
            stroke: rgba(169, 135, 214, 0.36);
            animation-duration: 15s;
        }

.portrait-shell {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 17rem;
    min-height: 22.5rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 9rem 9rem 3.4rem 3.4rem;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: translate(-50%, -50%) rotate(-2.5deg);
}

.portrait {
    position: relative;
    display: block;
    min-height: 20.9rem;
    overflow: hidden;
    border: 1px solid rgba(111, 74, 168, 0.14);
    border-radius: 8rem 8rem 2.6rem 2.6rem;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(244, 232, 248, 0.5)), repeating-linear-gradient(110deg, rgba(111, 74, 168, 0.05) 0 1px, transparent 1px 18px);
}

    .portrait::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(180deg, rgba(251, 247, 255, 0.16), transparent 34%), radial-gradient(circle at 50% 5%, rgba(255, 255, 255, 0.24), transparent 34%);
        pointer-events: none;
    }

.portrait__image {
    width: 100%;
    height: 20.9rem;
    object-fit: cover;
    object-position: 50% 45%;
    filter: saturate(0.92) contrast(1.02) brightness(1.03);
}

.portrait__initials {
    display: grid;
    width: 7.8rem;
    height: 7.8rem;
    place-items: center;
    border-radius: 50%;
    color: var(--violet-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 0 28px rgba(169, 135, 214, 0.24);
}

.portrait__caption {
    color: var(--muted);
    font-weight: 700;
}

.floating-note {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.6rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: var(--violet-deep);
    font-size: 0.95rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 42px rgba(111, 74, 168, 0.13);
    backdrop-filter: blur(18px);
    animation: floatNote 7s ease-in-out infinite;
}

.floating-note--one {
    left: 2%;
    top: 21%;
}

.floating-note--two {
    right: 5%;
    top: 16%;
    animation-delay: -1.7s;
}

.floating-note--three {
    left: 3%;
    bottom: 18%;
    animation-delay: -3s;
}

.floating-note--four {
    right: 1%;
    bottom: 27%;
    animation-delay: -4.5s;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

    .section-heading p {
        margin-bottom: 0.4rem;
    }

.section-heading--center {
    display: grid;
    max-width: 48rem;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

    .section-heading--center .section-label {
        justify-self: center;
    }

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
    gap: 1.5rem;
    align-items: stretch;
}

.diary-panel {
    position: relative;
    overflow: hidden;
    padding: 3.4rem;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 3.2rem 1.4rem 3.8rem 1.7rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(244, 232, 248, 0.58)), repeating-linear-gradient(0deg, transparent 0 2.15rem, rgba(111, 74, 168, 0.06) 2.15rem calc(2.15rem + 1px));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

    .diary-panel::before {
        content: "";
        position: absolute;
        right: -3rem;
        top: -5rem;
        width: 16rem;
        height: 18rem;
        border-radius: 42% 58% 60% 40% / 48% 42% 58% 52%;
        background: radial-gradient(circle at center, rgba(169, 135, 214, 0.18), transparent 64%);
    }

.diary-panel__line {
    position: absolute;
    left: 2.1rem;
    top: 2rem;
    bottom: 2rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(111, 74, 168, 0.2), transparent);
}

.diary-panel p {
    max-width: 48rem;
}

.about-aside {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 1.4rem 3.4rem 1.4rem 3.4rem;
    background: radial-gradient(circle at 80% 12%, rgba(220, 233, 223, 0.55), transparent 44%), rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

    .about-aside p {
        margin-bottom: 0;
    }

.soft-stamp {
    display: inline-flex;
    width: fit-content;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(111, 74, 168, 0.12);
    border-radius: 999px;
    color: var(--violet-deep);
    font-weight: 800;
    background: rgba(251, 247, 255, 0.72);
    transform: rotate(-3deg);
}

.request-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.request-card {
    position: relative;
    min-height: 13rem;
    padding: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 2.2rem 1rem 2.6rem 1.2rem;
    background: linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.48)) padding-box, linear-gradient(135deg, rgba(169, 135, 214, 0.42), rgba(247, 220, 232, 0.44), rgba(220, 233, 223, 0.38)) border-box;
    box-shadow: 0 16px 46px rgba(111, 74, 168, 0.1);
    backdrop-filter: blur(16px);
    transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease), background 0.42s var(--ease);
}

    .request-card::after {
        content: "";
        position: absolute;
        right: -3.2rem;
        bottom: -3.4rem;
        width: 9.2rem;
        height: 9.2rem;
        border-radius: 42% 58% 64% 36% / 42% 46% 54% 58%;
        background: radial-gradient(circle at center, rgba(169, 135, 214, 0.16), transparent 62%);
    }

    .request-card:hover {
        transform: translateY(-8px) rotate(-0.6deg);
        box-shadow: 0 24px 60px rgba(111, 74, 168, 0.15);
    }

.request-card--lift {
    margin-top: 1.4rem;
    border-radius: 1.1rem 2.6rem 1.4rem 2.3rem;
}

.request-card--soft {
    background: linear-gradient(rgba(255, 250, 247, 0.7), rgba(255, 255, 255, 0.5)) padding-box, linear-gradient(135deg, rgba(247, 220, 232, 0.55), rgba(233, 221, 248, 0.54)) border-box;
}

.request-card__mark {
    display: block;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1.05rem;
    border: 1px solid rgba(111, 74, 168, 0.15);
    border-radius: 50% 50% 50% 14%;
    background: radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.9), transparent 30%), linear-gradient(135deg, rgba(169, 135, 214, 0.68), rgba(247, 220, 232, 0.68));
    transform: rotate(-20deg);
}

.request-card h3,
.request-card p {
    position: relative;
    z-index: 1;
}

.request-card p {
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.62;
}

.path {
    position: relative;
    display: grid;
    max-width: 52rem;
    gap: 1.1rem;
    margin: 0 auto;
}

    .path::before {
        content: "";
        position: absolute;
        left: 2rem;
        top: 1rem;
        bottom: 1rem;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(111, 74, 168, 0.28), transparent);
    }

.path-step {
    position: relative;
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
    padding: 1.15rem 1.25rem 1.15rem 0;
}

    .path-step:nth-child(even) {
        transform: translateX(3.4rem);
    }

.path-step__number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: var(--violet-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    background: radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.94), transparent 34%), linear-gradient(135deg, rgba(233, 221, 248, 0.9), rgba(255, 255, 255, 0.74));
    box-shadow: 0 14px 36px rgba(111, 74, 168, 0.14);
}

.path-step div {
    padding: 1.25rem 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2rem 1rem 2.2rem 1.1rem;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 16px 44px rgba(111, 74, 168, 0.09);
    backdrop-filter: blur(16px);
}

.path-step p {
    margin-bottom: 0;
}

.format-panel,
.booking-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 3.3rem;
    background: radial-gradient(circle at 84% 10%, rgba(247, 220, 232, 0.58), transparent 28%), radial-gradient(circle at 12% 90%, rgba(220, 233, 223, 0.52), transparent 24%), rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.format-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
    gap: 2.4rem;
    padding: 3rem;
}

.format-panel__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .format-panel__intro p {
        max-width: 38rem;
    }

.format-decor {
    position: relative;
    display: flex;
    width: min(100%, 28rem);
    min-height: 7.4rem;
    align-items: center;
    margin-top: 1.2rem;
}

    .format-decor::before {
        content: "";
        position: absolute;
        left: 0;
        right: 1.2rem;
        top: 50%;
        height: 1px;
        background: linear-gradient(90deg, rgba(111, 74, 168, 0.22), rgba(247, 220, 232, 0.4), transparent);
    }

    .format-decor::after {
        content: "в своём темпе";
        position: relative;
        z-index: 1;
        margin-left: 5.4rem;
        padding: 0.72rem 1rem;
        border: 1px solid rgba(111, 74, 168, 0.1);
        border-radius: 999px;
        color: var(--violet-deep);
        font-weight: 800;
        background: rgba(255, 255, 255, 0.62);
        box-shadow: 0 14px 36px rgba(111, 74, 168, 0.1);
        transform: rotate(-2deg);
    }

    .format-decor span {
        position: absolute;
        display: block;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(233, 221, 248, 0.88), rgba(247, 220, 232, 0.74));
        box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.54);
    }

        .format-decor span:nth-child(1) {
            left: 0.2rem;
            width: 4.8rem;
            height: 4.8rem;
            opacity: 0.62;
        }

        .format-decor span:nth-child(2) {
            left: 3.8rem;
            top: 0.65rem;
            width: 2rem;
            height: 2rem;
            opacity: 0.54;
        }

        .format-decor span:nth-child(3) {
            right: 0;
            bottom: 0.9rem;
            width: 1.15rem;
            height: 1.15rem;
            opacity: 0.7;
        }

.format-list {
    display: grid;
    gap: 0.8rem;
    align-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .format-list li {
        position: relative;
        padding: 1rem 1rem 1rem 2.7rem;
        border: 1px solid rgba(111, 74, 168, 0.09);
        border-radius: 999px;
        color: var(--text);
        font-weight: 700;
        background: rgba(255, 255, 255, 0.55);
    }

        .format-list li::before {
            content: "";
            position: absolute;
            left: 1rem;
            top: 50%;
            width: 0.78rem;
            height: 0.78rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--violet), var(--blush));
            transform: translateY(-50%);
        }

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.48fr);
    gap: 1.4rem;
    align-items: center;
}

.pricing-copy {
    position: relative;
    display: grid;
    gap: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 1.6rem 3.2rem 1.7rem 3.4rem;
    background: radial-gradient(circle at 12% 12%, rgba(247, 220, 232, 0.5), transparent 30%), rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

    .pricing-copy::after {
        content: "забота о себе";
        position: absolute;
        right: 1.4rem;
        top: -0.9rem;
        padding: 0.58rem 0.86rem;
        border: 1px solid rgba(111, 74, 168, 0.1);
        border-radius: 999px;
        color: var(--violet-deep);
        font-size: 0.86rem;
        font-weight: 800;
        background: rgba(255, 255, 255, 0.72);
        transform: rotate(3deg);
    }

.pricing-copy__lead {
    max-width: 38rem;
    margin-bottom: 0;
}

.pricing-cards {
    display: grid;
    gap: 0.9rem;
}

.pricing-card {
    display: grid;
    grid-template-columns: 3.8rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(111, 74, 168, 0.1);
    border-radius: 1.6rem 0.9rem 1.9rem 0.9rem;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 34px rgba(111, 74, 168, 0.08);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 48px rgba(111, 74, 168, 0.13);
    }

.pricing-card--long {
    border-radius: 0.9rem 1.9rem 0.9rem 1.6rem;
}

.pricing-card h3,
.pricing-card p {
    margin-bottom: 0;
}

.pricing-card p {
    font-size: 0.95rem;
}

.pricing-card strong {
    color: #c96aa5;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.15rem;
    line-height: 1;
    white-space: nowrap;
}

.pricing-card__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.9), transparent 28%), linear-gradient(135deg, rgba(233, 221, 248, 0.94), rgba(247, 220, 232, 0.82));
    box-shadow: inset 0 0 28px rgba(111, 74, 168, 0.12);
}

    .pricing-card__icon::before,
    .pricing-card__icon::after {
        content: "";
        position: absolute;
        border-color: rgba(111, 74, 168, 0.52);
    }

img.pricing-card__icon-chair {
    width: 70%;
    height: 70%;
}

img.pricing-card__icon-clock {
    width: 100%;
    height: 100%;
}

.pricing-button {
    width: fit-content;
}

.pricing-image-card {
    position: relative;
    margin: 0;
    padding: 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 2.4rem;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
    transform: rotate(1.4deg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

    .pricing-image-card:hover {
        transform: rotate(0deg) translateY(-5px);
        box-shadow: 0 30px 84px rgba(111, 74, 168, 0.18);
    }

    .pricing-image-card::before {
        content: "";
        position: absolute;
        inset: -1.2rem;
        z-index: -1;
        border-radius: 3rem;
        background: radial-gradient(circle at 50% 12%, rgba(247, 220, 232, 0.5), transparent 62%);
        filter: blur(10px);
    }

.pricing-image {
    width: 100%;
    border-radius: 1.85rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.value-item {
    position: relative;
    display: grid;
    min-height: 11rem;
    align-content: center;
    justify-items: start;
    gap: 1.15rem;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 2.6rem 1.1rem 2rem 1.1rem;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 16px 42px rgba(111, 74, 168, 0.1);
    backdrop-filter: blur(18px);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

    .value-item:nth-child(even) {
        margin-top: 1.4rem;
        border-radius: 1.1rem 2.4rem 1.2rem 2.1rem;
    }

    .value-item:hover {
        transform: translateY(-7px);
        box-shadow: 0 24px 56px rgba(111, 74, 168, 0.14);
    }

.value-icon {
    position: relative;
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(111, 74, 168, 0.11);
    background: linear-gradient(135deg, rgba(233, 221, 248, 0.9), rgba(255, 255, 255, 0.72));
    box-shadow: inset 0 0 24px rgba(169, 135, 214, 0.2);
}

.value-icon--petal {
    border-radius: 58% 42% 62% 38% / 52% 48% 52% 48%;
}

.value-icon--veil {
    border-radius: 50%;
}

    .value-icon--veil::after {
        content: "";
        position: absolute;
        inset: 0.72rem;
        border: 1px solid rgba(111, 74, 168, 0.22);
        border-radius: inherit;
    }

.value-icon--path {
    border-radius: 38% 62% 42% 58% / 54% 45% 55% 46%;
}

    .value-icon--path::after {
        content: "";
        position: absolute;
        left: 0.72rem;
        right: 0.72rem;
        top: 50%;
        height: 1px;
        background: rgba(111, 74, 168, 0.34);
        transform: rotate(-26deg);
    }

.value-icon--quiet {
    border-radius: 0.8rem 1.4rem 0.8rem 1.4rem;
}

.value-icon--ethics {
    border-radius: 58% 42% 62% 38% / 52% 48% 52% 48%;
}

    .value-icon--ethics::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0.68rem;
        width: 1px;
        height: 1.45rem;
        background: rgba(111, 74, 168, 0.34);
        transform: translateX(-50%);
    }

.value-icon--access {
    border-radius: 50% 50% 50% 18%;
}

    .value-icon--access::after {
        content: "";
        position: absolute;
        left: 0.7rem;
        right: 0.7rem;
        top: 50%;
        height: 1px;
        background: rgba(111, 74, 168, 0.32);
    }

.value-icon--individual {
    border-radius: 1.4rem 0.8rem 1.4rem 0.8rem;
}

    .value-icon--individual::after {
        content: "";
        position: absolute;
        inset: 0.82rem 0.72rem;
        border-top: 1px solid rgba(111, 74, 168, 0.32);
        border-bottom: 1px solid rgba(111, 74, 168, 0.2);
        border-radius: inherit;
        transform: rotate(-18deg);
    }

.value-item h3 {
    margin-bottom: 0;
    font-size: 1.12rem;
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.54fr);
    gap: 2rem;
    align-items: center;
    padding: 3.4rem;
}

.booking-panel__phrase {
    position: absolute;
    right: 2.2rem;
    top: 1.6rem;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(111, 74, 168, 0.11);
    border-radius: 999px;
    color: var(--violet-deep);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.56);
    transform: rotate(4deg);
}

.booking-panel h2 {
    max-width: 11em;
}

.booking-panel p {
    max-width: 42rem;
    margin-bottom: 0;
}

.booking-actions {
    display: grid;
    gap: 1.2rem;
    justify-items: stretch;
}

.contact-links {
    display: grid;
    gap: 0.66rem;
}

    .contact-links a {
        display: flex;
        min-height: 3.15rem;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.74rem 1rem;
        border: 1px solid rgba(111, 74, 168, 0.1);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.56);
        color: var(--violet-deep);
        font-weight: 800;
        transition: transform 0.3s var(--ease), background 0.3s var(--ease);
    }

        .contact-links a:hover {
            transform: translateX(4px);
            background: rgba(255, 255, 255, 0.78);
        }

    .contact-links span {
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 700;
    }

.site-footer {
    display: grid;
    width: min(var(--max-width), calc(100% - 40px));
    grid-template-columns: minmax(0, 1fr) auto minmax(16rem, 0.7fr);
    gap: 2rem;
    align-items: start;
    margin: 0 auto;
    padding: 2.8rem 0 3rem;
    border-top: 1px solid rgba(111, 74, 168, 0.14);
}

    .site-footer strong {
        display: block;
        margin-bottom: 0.5rem;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.35rem;
    }

    .site-footer p {
        margin-bottom: 0;
        font-size: 0.94rem;
    }

    .site-footer nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem 1rem;
        justify-content: center;
    }

    .site-footer a {
        color: var(--muted);
        font-weight: 700;
    }

        .site-footer a:hover {
            color: var(--violet-deep);
        }

.footer-note {
    text-align: right;
}

/* Scroll reveal states are added by script.js. */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease) var(--delay, 0ms), transform 0.8s var(--ease) var(--delay, 0ms);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes breathe {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        border-radius: 42% 58% 52% 48% / 50% 42% 58% 50%;
    }

    50% {
        transform: scale(1.035) rotate(2deg);
        border-radius: 52% 48% 42% 58% / 44% 55% 45% 56%;
    }
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes threadMove {
    to {
        stroke-dashoffset: -120;
    }
}

@media (max-width: 1080px) {
    h1 {
        font-size: 3.8rem;
    }

    h2 {
        font-size: 2.85rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-top: 8.8rem;
    }

    .hero__lead {
        max-width: 48rem;
    }

    .hero-art {
        min-height: 32rem;
        max-width: 42rem;
        width: 100%;
        margin: 0 auto;
    }

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

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

    .format-panel,
    .booking-panel {
        grid-template-columns: 1fr;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-image-card {
        width: min(100%, 32rem);
        justify-self: center;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

        .site-footer nav {
            justify-content: flex-start;
        }

    .footer-note {
        text-align: left;
    }
}

@media (max-width: 860px) {
    .site-header {
        border-radius: 2rem;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.6rem);
        display: grid;
        gap: 0.35rem;
        padding: 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 1.7rem;
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 22px 58px rgba(95, 72, 122, 0.18);
        backdrop-filter: blur(22px);
        opacity: 0;
        transform: translateY(-8px);
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

        .site-nav.is-open {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        .site-nav a {
            display: flex;
            min-height: 3rem;
            align-items: center;
            padding: 0.78rem 1rem;
        }

        .site-nav .nav-button {
            justify-content: center;
            margin-left: 0;
        }

    .section-heading,
    .about__grid {
        grid-template-columns: 1fr;
    }

    .about-aside {
        min-height: 13rem;
    }
}

@media (max-width: 680px) {
    .section {
        width: min(100% - 28px, var(--max-width));
        padding: 4.4rem 0;
    }

    .site-header {
        top: 0.8rem;
        width: calc(100% - 24px);
        min-height: 4.35rem;
        padding: 0.62rem 0.72rem 0.62rem 0.95rem;
    }

    .brand__name {
        font-size: 1.12rem;
    }

    .brand__role {
        font-size: 0.78rem;
    }

    h1 {
        font-size: 2.58rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2.18rem;
    }

    p,
    .hero__lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .hero {
        min-height: auto;
        padding-top: 7.6rem;
        padding-bottom: 2.5rem;
    }

    .hero__actions,
    .button {
        width: 100%;
    }

    .hero-art {
        min-height: 27rem;
    }

    .portrait-shell {
        width: 14.2rem;
        min-height: 19rem;
    }

    .portrait {
        min-height: 17.4rem;
    }

    .portrait__image {
        height: 17.4rem;
        object-position: 50% 42%;
    }

    .portrait__initials {
        width: 6.4rem;
        height: 6.4rem;
        font-size: 1.7rem;
    }

    .floating-note {
        min-height: 2.25rem;
        padding: 0.5rem 0.74rem;
        font-size: 0.82rem;
    }

    .floating-note--one {
        left: 0;
    }

    .floating-note--two {
        right: 0;
    }

    .floating-note--three {
        bottom: 15%;
    }

    .floating-note--four {
        right: 0;
        bottom: 23%;
    }

    .diary-panel,
    .format-panel,
    .pricing-copy,
    .booking-panel {
        padding: 2rem;
        border-radius: 2rem;
    }

    .request-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .request-card,
    .request-card--lift,
    .value-item,
    .value-item:nth-child(even) {
        margin-top: 0;
    }

    .path::before {
        left: 1.55rem;
    }

    .path-step,
    .path-step:nth-child(even) {
        grid-template-columns: 3.1rem minmax(0, 1fr);
        gap: 0.8rem;
        transform: none;
    }

    .path-step__number {
        width: 3.1rem;
        height: 3.1rem;
        font-size: 1.2rem;
    }

    .path-step div {
        padding: 1rem;
    }

    .format-list li {
        border-radius: 1.2rem;
    }

    .pricing-card {
        grid-template-columns: 3.25rem minmax(0, 1fr);
        align-items: start;
    }

        .pricing-card strong {
            grid-column: 2;
            font-size: 1.9rem;
        }

    .pricing-card__icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .pricing-button {
        width: 100%;
    }

    .pricing-image-card {
        padding: 0.5rem;
        border-radius: 1.6rem;
        transform: none;
    }

    .pricing-image {
        border-radius: 1.2rem;
    }

    .booking-panel__phrase {
        position: static;
        width: fit-content;
        margin-bottom: -0.5rem;
        transform: rotate(-2deg);
    }

    .contact-links a {
        display: grid;
        justify-content: stretch;
        gap: 0.25rem;
        border-radius: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (forced-colors: active) {
    :focus-visible,
    .skip-link:focus-visible {
        outline: 3px solid Highlight;
        outline-offset: 4px;
    }

    .button,
    .site-nav a,
    .contact-links a,
    .pricing-card,
    .request-card,
    .value-item {
        border: 1px solid CanvasText;
        forced-color-adjust: auto;
    }
}
