:root {
    /* Balanced luxury spa: warm charcoal + soft champagne gold */
    --wine-deep: #161412;

    --gold: #c4b896;
    --gold-light: #e0d6c4;
    --gold-dark: #8a7558;
    --gold-champagne: #d4c4a8;

    --milk: #f3ece4;
    --muted: rgba(243, 236, 228, .78);

    --deep: #100e0c;

    --glass: rgba(44, 40, 38, .40);
    --border: rgba(196, 184, 158, .24);

    --shadow: 0 28px 90px rgba(12, 10, 8, .44);
    --shadow-soft: 0 14px 48px rgba(16, 14, 12, .30);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--milk);
    font-family: Inter, system-ui, Segoe UI, Arial, sans-serif;
    background-color: var(--wine-deep);
    max-width: 100%;
    overflow-x: hidden;
}

.spa-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.spa-bg--image {
    position: absolute;
    inset: -6%;
    background-image: url("../img/spa-bg.png");
    background-image: -webkit-image-set(
        url("../img/spa-bg.webp") 1x,
        url("../img/spa-bg.png") 1x
    );
    background-image: image-set(
        url("../img/spa-bg.webp") type("image/webp"),
        url("../img/spa-bg.png") type("image/png")
    );
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: brightness(0.71) contrast(1.05) saturate(1.08);
    will-change: transform;
    animation: spaBgBreath 56s ease-in-out infinite alternate;
}

.spa-bg--overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 85% at 50% 8%, rgba(48, 44, 40, .10) 0%, transparent 55%),
        radial-gradient(ellipse 95% 65% at 88% 38%, rgba(36, 34, 32, .09) 0%, transparent 48%),
        radial-gradient(ellipse 75% 55% at 8% 72%, rgba(40, 36, 34, .10) 0%, transparent 48%),
        radial-gradient(ellipse 90% 60% at 50% 92%, rgba(20, 18, 16, .18) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 72% 18%, rgba(72, 64, 54, .08) 0%, transparent 50%),
        linear-gradient(
            165deg,
            rgba(32, 28, 26, .40) 0%,
            rgba(24, 22, 20, .46) 38%,
            rgba(14, 12, 10, .54) 100%
        );
}

#ambientParticlesCanvas {
    position: absolute;
    left: 0;
    top: 0;

    width: 48%;
    height: 100%;

    z-index: 1;

    pointer-events: none;
}

#steamCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    pointer-events: none;
}

.page-shell {
    position: relative;
    z-index: 2;
    width: min(1220px, calc(100% - 36px));
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 56px;
}

.page-main {
    display: block;
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: -1px;
    padding: 0;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

.glass {
    background:
        linear-gradient(
            152deg,
            rgba(52, 46, 42, .40) 0%,
            rgba(44, 40, 38, .38) 42%,
            rgba(38, 34, 32, .36) 100%
        );

    border: 1px solid var(--border);

    box-shadow:
        var(--shadow),
        var(--shadow-soft),
        inset 0 1px 0 rgba(228, 220, 206, .07),
        inset 0 0 0 1px rgba(88, 78, 68, .05);

    backdrop-filter: blur(22px) saturate(1.22);
    -webkit-backdrop-filter: blur(22px) saturate(1.22);
}

@keyframes spaBgBreath {
    from {
        transform: scale(1.03) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.045) translate3d(-6px, -4px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .spa-bg--image {
        animation: none;
    }

    h1 span {
        animation: none;
    }
}

/* Scroll reveal: hidden state only after JS adds .reveal-init (no-JS / no motion OK) */
html.reveal-init .reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

html.reveal-init .reveal.reveal--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    html.reveal-init .reveal,
    html.reveal-init .reveal.reveal--visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.topbar {
    height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 8px;

    border-bottom: 1px solid rgba(196, 184, 158, .16);

    background: linear-gradient(
        180deg,
        rgba(38, 34, 32, .42) 0%,
        rgba(24, 22, 20, .20) 72%,
        transparent 100%
    );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--milk);

    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--gold);

    border: 1px solid rgba(196, 184, 158, .28);
}

.brand strong {
    display: block;

    font-family: Georgia, serif;

    font-size: 17px;

    letter-spacing: .05em;
    text-transform: uppercase;
}

.brand small {
    display: block;

    margin-top: 2px;

    color: rgba(228, 212, 196, .58);

    font-size: 10px;

    letter-spacing: .22em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a,
.top-phone {
    color: rgba(242, 228, 216, .84);

    text-decoration: none;

    font-size: 13px;

    text-transform: uppercase;
    letter-spacing: .06em;

    transition: opacity .25s ease;
}

.nav a:hover,
.top-phone:hover {
    opacity: .7;
}

.top-phone {
    color: var(--gold);
    touch-action: manipulation;
}

.top-phone__compact {
    display: none;
}

.hero {
    min-height: calc(100vh - 86px);

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);

    align-items: center;

    gap: 56px;

    padding: 72px 0 130px;
}

.hero__content {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 12px;

    letter-spacing: .18em;
    text-transform: uppercase;

    font-weight: 800;
}

.eyebrow::before {
    content: "";

    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold)
    );
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    max-width: 680px;

    margin-bottom: 26px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 7.5vw, 118px);

    line-height: 0.92;

    letter-spacing: -.065em;

    font-weight: 500;

    color: var(--milk);

    text-shadow:
        0 4px 28px rgba(16, 14, 12, .42),
        0 2px 14px rgba(28, 24, 22, .30),
        0 0 52px rgba(196, 184, 152, .16),
        0 0 88px rgba(72, 64, 54, .10);
}

h1 span {
    background: linear-gradient(
        92deg,
        #948878 0%,
        #b0a088 22%,
        #c4b896 48%,
        #d4c4a8 72%,
        #9a8868 100%
    );

    background-size: 220% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    animation: goldTextFlow 7s ease-in-out infinite alternate;
}

@keyframes goldTextFlow {
    from {
        background-position: 0% center;
        filter: drop-shadow(0 0 18px rgba(196, 184, 152, .18))
            drop-shadow(0 0 42px rgba(68, 60, 52, .12));
    }

    to {
        background-position: 100% center;
        filter: drop-shadow(0 0 26px rgba(224, 214, 196, .22))
            drop-shadow(0 0 56px rgba(72, 64, 54, .10));
    }
}

.hero__text {
    max-width: 520px;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;

    text-shadow:
        0 3px 22px rgba(16, 14, 12, .36),
        0 1px 10px rgba(28, 24, 22, .26),
        0 0 36px rgba(196, 184, 152, .10);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;

    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 16px;

    text-decoration: none;

    font-weight: 800;

    touch-action: manipulation;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #161210;

    background: linear-gradient(
        135deg,
        #d4c4a8,
        #b8a078,
        #8a7558
    );

    box-shadow:
        0 18px 44px rgba(196, 184, 152, .20),
        0 0 36px rgba(88, 78, 62, .10);
}

.btn-secondary {
    color: var(--milk);

    background: rgba(44, 40, 38, .30);

    border: 1px solid rgba(196, 184, 158, .26);
}

.benefits-panel {
    padding: 28px;

    border-radius: 32px;
}

.benefit {
    display: grid;
    grid-template-columns: 54px 1fr;

    gap: 16px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(196, 184, 158, .14);
}

.benefit:last-child {
    border-bottom: 0;
}

.benefit-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--gold);

    border: 1px solid rgba(196, 184, 158, .26);

    font-size: 22px;
}

.benefit h3 {
    margin-bottom: 8px;

    color: var(--milk);

    font-size: 14px;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.benefit p {
    margin-bottom: 0;

    color: var(--muted);

    line-height: 1.55;

    font-size: 14px;
}

.quick-panel-section {
    margin: 56px 0 86px;
}

.quick-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border-radius: 26px;
}

.quick-panel > div {
    padding: 24px 28px;

    border-right: 1px solid rgba(196, 184, 158, .14);
}

.quick-panel > div:last-child {
    border-right: 0;
}

.quick-panel strong {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    text-transform: uppercase;
    letter-spacing: .05em;
}

.quick-panel span {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.5;
}

.section {
    padding: 82px 0;
}

.section-head {
    max-width: 720px;

    margin-bottom: 36px;
}

.section-head h2,
.signature h2,
.footer h2 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -.05em;

    font-weight: 500;
}

.section-head p,
.signature p,
.footer p {
    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;
}

.ritual-group {
    margin-top: 46px;
}

.ritual-group h3 {
    margin-bottom: 20px;

    color: var(--gold);

    font-size: 15px;

    text-transform: uppercase;
    letter-spacing: .16em;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.ritual-card {
    min-height: 238px;

    padding: 26px;

    border-radius: 26px;

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.ritual-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 34px 88px rgba(12, 10, 8, .38),
        0 0 40px rgba(196, 184, 152, .14);
}

.ritual-card span {
    display: inline-flex;

    margin-bottom: 22px;

    padding: 8px 12px;

    border-radius: 999px;

    color: var(--gold);

    background: rgba(52, 46, 42, .40);

    font-size: 13px;

    font-weight: 800;
}

.ritual-card h4 {
    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    line-height: 1.05;

    letter-spacing: -.03em;

    font-weight: 500;
}

.ritual-card p {
    color: var(--muted);

    line-height: 1.65;
}

.body-architecture {
    margin: 40px 0 8px;
    padding: 44px 48px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.body-architecture__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: 36px 52px;
    align-items: start;
}

.body-architecture__intro {
    min-width: 0;
}

.body-architecture__intro h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: var(--gold-champagne);
}

.body-architecture__accent {
    margin: 0;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
}

.body-architecture__content {
    min-width: 0;
    padding: 28px 32px;
    border-radius: 24px;
    background: rgba(44, 40, 38, 0.36);
    border: 1px solid rgba(196, 184, 158, 0.16);
}

.body-architecture__badge {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--gold);
    background: rgba(52, 46, 42, 0.48);
    border: 1px solid rgba(196, 184, 158, 0.22);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.body-architecture__content p {
    margin: 0;
    color: rgba(235, 224, 212, 0.78);
    font-size: 17px;
    line-height: 1.78;
}

.signature {
    display: grid;
    grid-template-columns: 1fr .9fr;

    gap: 42px;

    margin: 72px 0;

    padding: 48px;

    border-radius: 32px;

    overflow: hidden;

    position: relative;

    box-shadow:
        var(--shadow),
        var(--shadow-soft),
        0 44px 120px rgba(12, 10, 8, .50),
        inset 0 1px 0 rgba(228, 212, 184, .07),
        inset 0 0 0 1px rgba(88, 78, 68, .05);
}

.signature::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(196, 184, 152, .18) 0%,
            rgba(72, 64, 54, .10) 42%,
            transparent 66%
        );
}

.signature__details {
    position: relative;
    z-index: 1;

    display: grid;

    gap: 14px;
}

.signature__details p {
    margin: 0;

    padding: 18px;

    border-radius: 18px;

    background: rgba(44, 40, 38, .36);

    border: 1px solid rgba(196, 184, 158, .14);
}

.signature__details strong {
    color: var(--gold);

    font-size: 22px;
}

.signature--editorial {
    grid-template-columns: minmax(0, 1fr) minmax(0, min(520px, 46vw));

    gap: 48px;
}

.signature__intro {
    min-width: 0;
}

.signature__aside {
    display: flex;
    flex-direction: column;
    gap: 28px;

    min-width: 0;
}

.signature__intro,
.signature__aside {
    position: relative;
    z-index: 1;
}

.editorial-frame {
    position: relative;

    display: block;

    margin: 0;

    overflow: hidden;

    aspect-ratio: 16 / 10;

    border-radius: 30px;

    background:
        linear-gradient(
            152deg,
            rgba(48, 44, 40, .52) 0%,
            rgba(24, 22, 20, .76) 100%
        );

    border: 1px solid rgba(196, 184, 158, .30);

    box-shadow:
        0 28px 78px rgba(12, 10, 8, .40),
        0 0 0 1px rgba(196, 184, 152, .12),
        inset 0 1px 0 rgba(228, 212, 184, .07);

    isolation: isolate;
}

.editorial-frame picture {
    position: absolute;
    inset: 0;
    display: block;
}

.editorial-frame img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.55s ease;
}

.editorial-frame:hover img {
    transform: scale(1.02);
}

.editorial-frame::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            165deg,
            rgba(48, 44, 40, .28) 0%,
            rgba(24, 22, 20, .16) 42%,
            rgba(72, 64, 54, .14) 100%
        );

    mix-blend-mode: multiply;

    opacity: .82;
}

.editorial-frame--empty img {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .editorial-frame:hover img {
        transform: none;
    }
}

.tags {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.tags span {
    padding: 16px 20px;

    border-radius: 999px;

    background: rgba(44, 40, 38, .36);

    border: 1px solid rgba(196, 184, 158, .20);

    box-shadow: 0 16px 44px rgba(12, 10, 8, .28);

    font-weight: 700;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    z-index: 100;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    overflow: visible;
    border-radius: 12px;
    background: rgba(44, 40, 38, 0.92);
    border: 1px solid rgba(196, 184, 158, 0.35);
    color: var(--milk);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.footer {
    margin: 56px 0 0;

    padding: 46px;

    border-radius: 32px;

    text-align: center;
}

.footer__local {
    max-width: 520px;
    margin: 20px auto 28px;
    text-align: left;
}

.footer__local-line {
    margin: 0 0 10px;
    color: rgba(235, 224, 212, 0.72);
    font-size: 15px;
    line-height: 1.65;
}

.footer__local-line:last-child {
    margin-bottom: 0;
}

.footer__local-label {
    color: var(--gold);
    font-weight: 700;
}

.stats-page {
    min-height: 100vh;

    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 24px;
}

.stat-card {
    padding: 28px;

    border-radius: 30px;
}

.stat-card span {
    color: var(--muted);

    font-weight: 700;
}

.stat-card strong {
    display: block;

    margin-top: 12px;

    font-size: 48px;

    color: var(--gold);
}

.table-card {
    padding: 26px;

    border-radius: 30px;

    overflow-x: auto;
}

table {
    width: 100%;

    border-collapse: collapse;
}

th,
td {
    padding: 14px 12px;

    border-bottom: 1px solid rgba(196, 184, 158, .12);

    text-align: left;

    font-size: 14px;

    color: var(--milk);
}

th {
    color: var(--gold);
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-bottom: 72px;
    }

    .benefits-panel {
        width: 100%;
        max-width: none;
    }

    .quick-panel,
    .cards-grid,
    .signature,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quick-panel > div {
        border-right: 0;

        border-bottom: 1px solid rgba(196, 184, 158, .14);
    }
}

.about-intro {
    margin: 48px 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    padding: 46px;
    border-radius: 38px;
}

.about-intro h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 64px);
    line-height: .98;
    letter-spacing: -.05em;
    color: var(--gold-champagne);
}

.about-intro__right {
    display: grid;
    gap: 28px;
    align-content: start;
}

.about-intro__text p,
.about-intro__accent {
    margin: 0;
    color: rgba(235, 224, 212, .76);
    line-height: 1.8;
    font-size: 17px;
}

.about-intro__lead {
    display: grid;
    gap: 18px;
}

.about-intro__list-block {
    padding: 24px 28px;
    border-radius: 22px;
    background: rgba(44, 40, 38, 0.34);
    border: 1px solid rgba(196, 184, 158, 0.14);
}

.about-intro__list-title {
    margin: 0 0 16px;
    color: var(--gold-champagne);
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
}

.about-intro__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.about-intro__list li {
    position: relative;
    margin: 0;
    padding-left: 22px;
    color: rgba(235, 224, 212, 0.82);
    font-size: 17px;
    line-height: 1.72;
}

.about-intro__list li::before {
    content: "◌";
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--gold);
    font-size: 12px;
    line-height: 1;
}

.about-intro__accent {
    padding: 20px 0 4px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.45;
    letter-spacing: -0.02em;
    border-top: 1px solid rgba(196, 184, 158, 0.16);
}

.gift-section {
    margin: 72px 0;
    padding: 46px;
    border-radius: 38px;
}

.gift-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
    gap: 36px 44px;
    align-items: start;
}

.gift-section__copy {
    min-width: 0;
}

.gift-section__cards {
    grid-column: 1 / -1;

    margin-top: 8px;
}

.gift-section--editorial .gift-grid {
    margin-top: 0;
}

.editorial-frame--gift {
    width: 100%;

    max-width: 420px;

    justify-self: end;
}

.gift-section h2 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 72px);
    line-height: .96;
    letter-spacing: -.05em;
    color: var(--gold-champagne);
}

.gift-section p {
    max-width: 760px;
    color: rgba(235, 224, 212, .76);
    line-height: 1.8;
    font-size: 17px;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.gift-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(44, 40, 38, .36);
    border: 1px solid rgba(196, 184, 158, .14);
}

.gift-card__title {
    margin: 0 0 12px;

    color: var(--gold-light);

    font-size: 18px;

    font-weight: 700;
}

.gift-card span {
    color: rgba(228, 216, 204, .72);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-intro {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .gift-grid {
        grid-template-columns: 1fr;
    }

    .gift-section {
        padding: 30px;
    }

    .gift-section__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .editorial-frame--gift {
        max-width: none;

        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .spa-bg--image {
        background-position: 58% 42%;
        filter: brightness(0.68) contrast(1.04) saturate(1.02);
    }

    .glass {
        backdrop-filter: blur(14px) saturate(1.12);
        -webkit-backdrop-filter: blur(14px) saturate(1.12);
    }

    #ambientParticlesCanvas {
        width: 52%;
        opacity: 0.7;
    }

    #steamCanvas {
        opacity: 0.82;
    }

    .page-shell {
        width: 100%;
        max-width: 100%;
        padding-inline: 18px;
        padding-bottom: 44px;
        box-sizing: border-box;
    }

    .topbar {
        height: 64px;
        gap: 10px;
        margin-bottom: 0;
    }

    .brand small {
        letter-spacing: 0.16em;
    }

    .top-phone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-height: 40px;
        padding: 0 14px;
        border-radius: 12px;
        background: rgba(44, 40, 38, 0.48);
        border: 1px solid rgba(196, 184, 158, 0.22);
        font-size: 11px;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .top-phone__number {
        display: none;
    }

    .top-phone__compact {
        display: inline;
    }

    .hero {
        min-height: 0;
        padding: 36px 0 48px;
        gap: 36px;
    }

    .hero__content {
        padding-bottom: 4px;
    }

    h1 {
        font-size: clamp(40px, 10.5vw, 56px);
        line-height: 0.94;
        letter-spacing: -0.05em;
        max-width: 100%;
    }

    .hero__text {
        font-size: 17px;
        line-height: 1.65;
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        margin-top: 28px;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .benefits-panel {
        width: 100%;
        max-width: none;
        margin-top: 4px;
        padding: 24px 20px;
    }

    .about-intro {
        margin: 52px 0 56px;
        padding: 32px 24px;
        gap: 28px;
    }

    .about-intro h2 {
        font-size: clamp(28px, 7vw, 44px);
        line-height: 1.04;
    }

    .about-intro__right {
        gap: 24px;
    }

    .about-intro__list-block {
        padding: 22px 20px;
    }

    .about-intro__accent {
        font-size: clamp(19px, 4.5vw, 24px);
    }

    .quick-panel-section {
        margin: 48px 0 56px;
    }

    .quick-panel > div {
        padding: 20px 22px;
    }

    .section {
        padding: 52px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .section-head h2,
    .signature h2,
    .footer h2 {
        font-size: clamp(32px, 7.5vw, 52px);
        line-height: 1.04;
    }

    .section-head p,
    .signature p,
    .footer p {
        font-size: 16px;
        line-height: 1.7;
    }

    .ritual-card {
        min-height: 0;
        padding: 22px 20px;
    }

    .ritual-card h4 {
        font-size: clamp(21px, 5vw, 26px);
        line-height: 1.08;
    }

    .ritual-card p {
        font-size: 15px;
        line-height: 1.62;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .body-architecture {
        margin: 32px 0 4px;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .body-architecture__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .body-architecture__intro h2 {
        font-size: clamp(30px, 7vw, 44px);
        margin-bottom: 14px;
    }

    .body-architecture__content {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .body-architecture__content p {
        font-size: 16px;
        line-height: 1.72;
    }

    .signature {
        margin: 52px 0;
        padding: 32px 24px;
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .signature--editorial {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .signature__intro {
        min-width: 0;
    }

    .signature__aside {
        gap: 20px;
        min-width: 0;
    }

    .editorial-frame {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        aspect-ratio: 3 / 2;
        border-radius: 24px;
    }

    .editorial-frame img {
        object-position: center 42%;
    }

    .editorial-frame--gift img {
        object-position: center 38%;
    }

    .signature__details p {
        font-size: 15px;
        line-height: 1.62;
        padding: 16px;
    }

    .gift-section {
        padding: 32px 24px;
        margin: 52px 0;
    }

    .gift-section__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "image"
            "cards";
        gap: 24px;
    }

    .gift-section__copy {
        grid-area: copy;
    }

    .editorial-frame--gift {
        grid-area: image;
        max-width: none;
        justify-self: stretch;
    }

    .gift-section__cards {
        grid-area: cards;
        margin-top: 0;
    }

    .gift-section h2 {
        font-size: clamp(30px, 7vw, 48px);
        line-height: 1.04;
    }

    .gift-section p {
        font-size: 16px;
        line-height: 1.68;
        max-width: none;
    }

    .gift-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer {
        margin: 52px 0 0;
        padding: 32px 22px;
    }

    .footer .btn {
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
    }

    .btn {
        min-height: 48px;
        padding: 0 24px;
        border-radius: 14px;
        touch-action: manipulation;
    }

    .benefits-panel,
    .quick-panel,
    .ritual-card,
    .signature,
    .footer,
    .about-intro,
    .gift-section {
        border-radius: 24px;
    }

    .ritual-group {
        margin-top: 40px;
    }

    .ritual-group h3 {
        margin-bottom: 16px;
    }
}

@media (max-width: 430px) {
    #ambientParticlesCanvas {
        width: 46%;
        opacity: 0.58;
    }

    #steamCanvas {
        opacity: 0.72;
    }

    .page-shell {
        padding-inline: 16px;
    }

    .topbar {
        height: 60px;
        gap: 8px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .brand strong {
        font-size: 14px;
        letter-spacing: 0.04em;
    }

    .brand small {
        font-size: 8px;
        letter-spacing: 0.14em;
    }

    .top-phone {
        min-height: 38px;
        padding: 0 12px;
        font-size: 10px;
    }

    .hero {
        padding: 28px 0 40px;
        gap: 32px;
    }

    h1 {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 18px;
        line-height: 0.96;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__actions {
        margin-top: 22px;
    }

    .eyebrow {
        font-size: 10px;
        margin-bottom: 12px;
        gap: 8px;
        letter-spacing: 0.14em;
    }

    .eyebrow::before {
        width: 28px;
    }

    .benefits-panel {
        padding: 20px 16px;
        margin-top: 8px;
    }

    .benefit {
        grid-template-columns: 40px 1fr;
        padding: 14px 0;
        gap: 10px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .benefit h3 {
        font-size: 12px;
    }

    .benefit p {
        font-size: 13px;
        line-height: 1.5;
    }

    .about-intro {
        margin: 44px 0 48px;
        padding: 26px 18px;
    }

    .about-intro__right {
        gap: 22px;
    }

    .about-intro__text p {
        font-size: 15px;
        line-height: 1.72;
    }

    .about-intro__lead {
        gap: 14px;
    }

    .about-intro__list-block {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .about-intro__list-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .about-intro__list {
        gap: 12px;
    }

    .about-intro__list li {
        font-size: 15px;
        line-height: 1.68;
        padding-left: 20px;
    }

    .about-intro__accent {
        font-size: clamp(18px, 4.8vw, 22px);
        line-height: 1.5;
        padding-top: 18px;
    }

    .quick-panel-section {
        margin: 44px 0 48px;
    }

    .quick-panel > div {
        padding: 16px 16px;
    }

    .section {
        padding: 44px 0;
    }

    .section-head h2,
    .signature h2,
    .footer h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .signature {
        margin: 44px 0;
        padding: 26px 18px;
    }

    .body-architecture {
        margin: 28px 0 0;
        padding: 26px 18px;
    }

    .body-architecture__content {
        padding: 20px 18px;
    }

    .editorial-frame {
        aspect-ratio: 3 / 2;
        border-radius: 22px;
    }

    .signature__aside {
        gap: 18px;
    }

    .gift-section {
        margin: 44px 0;
        padding: 26px 18px;
    }

    .gift-card {
        padding: 20px 18px;
    }

    .footer {
        margin: 44px 0 0;
        padding: 28px 16px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 390px) {
    #ambientParticlesCanvas {
        width: 42%;
        opacity: 0.5;
    }

    #steamCanvas {
        opacity: 0.65;
    }

    .page-shell {
        padding-inline: 14px;
    }

    .top-phone {
        min-height: 40px;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .brand small {
        display: none;
    }

    h1 {
        font-size: clamp(32px, 9.2vw, 40px);
        letter-spacing: -0.045em;
    }

    .section-head h2,
    .signature h2,
    .footer h2 {
        font-size: clamp(26px, 7.5vw, 36px);
    }

    .about-intro h2 {
        font-size: clamp(26px, 7vw, 36px);
    }

    .gift-section h2 {
        font-size: clamp(26px, 7.5vw, 38px);
    }

    .ritual-card h4 {
        font-size: clamp(19px, 5vw, 24px);
    }

    .section-head p,
    .signature p,
    .gift-section p,
    .footer p {
        font-size: 15px;
    }

    .hero {
        padding-top: 24px;
    }
}

.hero,
.hero__content,
.benefits-panel,
.about-intro,
.about-intro__left,
.about-intro__right,
.quick-panel,
.quick-panel-section,
.ritual-card,
.signature,
.signature__intro,
.signature__aside,
.gift-section,
.gift-section__copy,
.gift-section__layout,
.topbar,
.brand {
    min-width: 0;
}

.hero__content,
.benefits-panel,
.about-intro,
.quick-panel,
.ritual-card,
.signature,
.gift-section,
.gift-section__copy {
    overflow-wrap: break-word;
}

.page-main {
    overflow-x: clip;
}

img,
canvas,
.spa-atmosphere,
.page-shell,
.page-main {
    max-width: 100%;
}

.nav a {
    touch-action: manipulation;
}