/* =========================================================
   NYGHT SERIF — кириллический дисплейный шрифт
   ========================================================= */


@font-face {
    font-family: 'Nyght Serif';
    src:
        url('/fonts/NyghtSerif-Regular.woff2') format('woff2'),
        url('/fonts/NyghtSerif-Regular.otf')   format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jonova';
    src: url('/fonts/Jonova-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   NEMO GUEST HOUSE
   CUSTOM UI LAYER
   ========================================================= */

:root {
    --nemo-cream: #e8ddc8;
    --nemo-ivory: #f7f1e7;
    --nemo-teal: #163f42;
    --nemo-rust: #9a503e;
    --nemo-gold: #b79d68;

    --nemo-ease: cubic-bezier(.22, .61, .36, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    overflow-x: hidden;
}

/* =========================================================
   HIDE ORIGINAL FRAMER NAVIGATION
   ========================================================= */

[data-framer-name="Courtyard Opening"]
nav[data-framer-name="Navigation"] {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   OUR HEADER
   ========================================================= */

#nemo-header {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;

    pointer-events: none;

    color: var(--nemo-ivory);

    transition:
        height .45s var(--nemo-ease),
        color .45s ease,
        background-color .45s ease,
        box-shadow .45s ease,
        backdrop-filter .45s ease;
}

/* inner width */

#nemo-header .nemo-header-inner {
    width: calc(100% - 120px);
    max-width: none;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    pointer-events: auto;
}

/* =========================================================
   HEADER AFTER SCROLL
   ========================================================= */

body.nemo-scrolled #nemo-header {
    height: 68px;

    color: var(--nemo-teal);

    background: rgba(247, 241, 231, .88);

    border-bottom: 1px solid rgba(22, 63, 66, .08);

    box-shadow:
        0 8px 30px rgba(22, 63, 66, .07);

    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
}

/* =========================================================
   LOGO
   ========================================================= */

#nemo-header .nemo-logo {
    color: inherit;

    font-family:
        "Mazius Display",
        "Mazius Display Placeholder",
        serif;

    font-size: 28px;
    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition:
        opacity .25s ease,
        transform .35s var(--nemo-ease);
}

#nemo-header .nemo-logo:hover {
    opacity: .72;
    transform: translateY(-1px);
}

/* =========================================================
   DESKTOP NAV
   ========================================================= */

#nemo-header .nemo-desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-left: auto;
}

#nemo-header .nemo-desktop-link {
    position: relative;

    color: inherit;

    font-family: "Cantarell", sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;

    transition:
        opacity .25s ease,
        transform .3s var(--nemo-ease);
}

#nemo-header .nemo-desktop-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 1px;

    background: currentColor;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .35s var(--nemo-ease);
}

#nemo-header .nemo-desktop-link:hover {
    opacity: .72;
    transform: translateY(-1px);
}

#nemo-header .nemo-desktop-link:hover::after {
    transform: scaleX(1);
}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

#nemo-language {
    position: relative;

    margin-left: 24px;
}

#nemo-language-button {
    appearance: none;

    min-width: 52px;
    height: 34px;

    padding: 0 11px;

    border: 1px solid currentColor;
    border-radius: 999px;

    background: transparent;

    color: inherit;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    cursor: pointer;

    font-family: "Cantarell", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s var(--nemo-ease);
}

#nemo-language-button:hover {
    transform: translateY(-1px);
}

#nemo-language-chevron {
    font-size: 9px;

    transition:
        transform .3s var(--nemo-ease);
}

#nemo-language.open #nemo-language-chevron {
    transform: rotate(180deg);
}

/* language dropdown */

#nemo-language-menu {
    position: absolute;

    right: 0;
    top: calc(100% + 9px);

    width: 125px;

    padding: 7px;

    border: 1px solid rgba(22, 63, 66, .10);
    border-radius: 14px;

    background: rgba(247, 241, 231, .98);

    box-shadow:
        0 14px 38px rgba(22, 63, 66, .15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateY(-8px)
        scale(.97);

    transform-origin: top right;

    transition:
        opacity .25s ease,
        transform .32s var(--nemo-ease),
        visibility .25s ease;
}

#nemo-language.open #nemo-language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateY(0)
        scale(1);
}

.nemo-language-option {
    width: 100%;

    appearance: none;
    border: 0;

    background: transparent;

    color: var(--nemo-teal);

    text-align: left;

    padding: 10px 11px;

    border-radius: 9px;

    cursor: pointer;

    font-family: "Cantarell", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .8px;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.nemo-language-option:hover {
    background: rgba(232, 221, 200, .8);
    transform: translateX(2px);
}

.nemo-language-option.active {
    background: rgba(232, 221, 200, .65);
}

/* =========================================================
   MOBILE HAMBURGER
   ========================================================= */

#nemo-mobile-menu-button {
    display: none;

    appearance: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid currentColor;
    border-radius: 50%;

    background: transparent;

    color: inherit;

    cursor: pointer;

    position: relative;

    flex: 0 0 auto;

    transition:
        transform .3s var(--nemo-ease),
        background-color .3s ease,
        border-color .3s ease;
}

#nemo-mobile-menu-button:hover {
    transform: scale(1.03);
}

#nemo-mobile-menu-button span,
#nemo-mobile-menu-button::before,
#nemo-mobile-menu-button::after {
    content: "";

    position: absolute;

    left: 50%;

    width: 16px;
    height: 1px;

    background: currentColor;

    transition:
        transform .35s var(--nemo-ease),
        opacity .25s ease;
}

#nemo-mobile-menu-button span {
    top: 50%;

    transform:
        translate(-50%, -50%);
}

#nemo-mobile-menu-button::before {
    top: calc(50% - 5px);

    transform:
        translate(-50%, -50%);
}

#nemo-mobile-menu-button::after {
    top: calc(50% + 5px);

    transform:
        translate(-50%, -50%);
}

/* open */

body.nemo-menu-open #nemo-mobile-menu-button span {
    opacity: 0;
}

body.nemo-menu-open #nemo-mobile-menu-button::before {
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

body.nemo-menu-open #nemo-mobile-menu-button::after {
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

#nemo-mobile-menu {
    position: fixed;

    z-index: 999998;

    inset: 0;

    padding:
        110px
        24px
        30px;

    background:
        rgba(232, 221, 200, .97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .4s ease,
        visibility .4s ease;
}

#nemo-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nemo-mobile-menu-inner {
    width: min(600px, 100%);
    height: 100%;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nemo-mobile-eyebrow {
    color: var(--nemo-rust);

    font-family: "Cantarell", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 26px;

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity .4s ease .08s,
        transform .5s var(--nemo-ease) .08s;
}

#nemo-mobile-menu.open .nemo-mobile-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.nemo-mobile-link {
    display: block;

    color: var(--nemo-teal);

    text-decoration: none;

    font-family:
        "Mazius Display",
        "Mazius Display Placeholder",
        serif;

    font-size: clamp(44px, 11vw, 74px);

    line-height: .98;

    padding: 8px 0;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .5s ease,
        transform .65s var(--nemo-ease),
        color .25s ease;
}

.nemo-mobile-link:nth-of-type(1) {
    transition-delay: .08s;
}

.nemo-mobile-link:nth-of-type(2) {
    transition-delay: .14s;
}

.nemo-mobile-link:nth-of-type(3) {
    transition-delay: .20s;
}

#nemo-mobile-menu.open .nemo-mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.nemo-mobile-link:hover {
    color: var(--nemo-rust);
}

.nemo-mobile-footer {
    margin-top: auto;

    color: var(--nemo-teal);

    font-family: "Cantarell", sans-serif;
    font-size: 11px;
    letter-spacing: .8px;

    opacity: .65;
}

/* =========================================================
   SECTION ANIMATION
   ========================================================= */

.nemo-reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .8s ease,
        transform .9s var(--nemo-ease);
}

.nemo-reveal.nemo-visible {
    opacity: 1;

    transform:
        translateY(0);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 809.98px) {

    #nemo-header {
        height: 66px;
    }

    body.nemo-scrolled #nemo-header {
        height: 60px;
    }

    #nemo-header .nemo-header-inner {
        width: calc(100% - 30px);

        display: grid;

        grid-template-columns: 42px 1fr 52px;

        gap: 10px;
    }

    #nemo-mobile-menu-button {
        display: block;
    }

    #nemo-header .nemo-logo {
        justify-self: center;

        font-size: 24px;
    }

    #nemo-header .nemo-desktop-nav {
        display: none;
    }

    #nemo-language {
        justify-self: end;

        margin-left: 0;
    }

    #nemo-language-button {
        min-width: 48px;
        height: 32px;
    }

    #nemo-mobile-menu {
        padding:
            88px
            22px
            24px;
    }

    .nemo-mobile-link {
        font-size: clamp(43px, 12vw, 64px);
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    #nemo-header .nemo-logo {
        font-size: 21px;
    }

    #nemo-mobile-menu {
        padding:
            82px
            19px
            20px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   NEMO HERO PHOTO
   ========================================================= */

[data-framer-name="Courtyard Opening"] {
    position: relative !important;

    background-image:
        linear-gradient(
            180deg,
            rgba(18, 42, 41, 0.50) 0%,
            rgba(18, 42, 41, 0.65) 35%,
            rgba(18, 42, 41, 0.85) 100%
        ),
        url("/images/hero.jpg") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
@media (max-width: 809.98px) {

    [data-framer-name="Courtyard Opening"] {
        background-position: 58% center !important;
    }

}

/* =========================================================
   РУССКИЙ ЯЗЫК — РАЗДЕЛЬНЫЕ ШРИФТЫ
   Заголовки — Nyght Serif, основной текст — Jonova
   ========================================================= */

/* 1. ЗАГОЛОВКИ (H1, H2, крупные названия) — Nyght Serif */
html[lang="ru"] .framer-text.framer-styles-preset-17pke13,
html[lang="ru"] .framer-text.framer-styles-preset-lnwh38,
html[lang="ru"] .nemo-mobile-link,
html[lang="ru"] .nemo-logo,
html[lang="ru"] [data-framer-component-type="Text"] h1,
html[lang="ru"] [data-framer-component-type="Text"] h2 {
    --framer-font-family: "Nyght Serif", "Cormorant Garamond", Georgia, serif !important;
    --font-family:         "Nyght Serif", "Cormorant Garamond", Georgia, serif !important;
    font-family:            "Nyght Serif", "Cormorant Garamond", Georgia, serif !important;

    letter-spacing: 0.01em !important;
    word-spacing:   0.14em !important;
    line-height:    1.06 !important;
}

/* 2. ОСНОВНОЙ ТЕКСТ (описания, абзацы, подписи) — Jonova */
html[lang="ru"] .framer-text.framer-styles-preset-1e2mqtn,
html[lang="ru"] .framer-text.framer-styles-preset-1ej3wr5,
html[lang="ru"] [data-framer-component-type="Text"] p,
html[lang="ru"] [data-framer-component-type="Text"] span:not(.nemo-review-text) {
    --framer-font-family: "Jonova", "Helvetica Neue", Arial, sans-serif !important;
    --font-family:         "Jonova", "Helvetica Neue", Arial, sans-serif !important;
    font-family:            "Jonova", "Helvetica Neue", Arial, sans-serif !important;

    letter-spacing: 0.01em !important;
    word-spacing:   0.06em !important;
    line-height:    1.6 !important;
}

/* 3. НАВИГАЦИЯ — Jonova (как Cantarell в латинице) */
html[lang="ru"] .nemo-desktop-link,
html[lang="ru"] .nemo-mobile-eyebrow,
html[lang="ru"] .nemo-mobile-footer {
    --framer-font-family: "Jonova", "Helvetica Neue", Arial, sans-serif !important;
    --font-family:         "Jonova", "Helvetica Neue", Arial, sans-serif !important;
    font-family:            "Jonova", "Helvetica Neue", Arial, sans-serif !important;

    letter-spacing: 0.06em !important;
    word-spacing:   0.10em !important;
}

/* =========================================================
   PHOTO OVERRIDES — forces our own images regardless of
   whatever Framer tries to load at runtime
   ========================================================= */

/* --- Gallery "A place to linger" --- */
[data-framer-name="Courtyard"] img {
    content: url("/images/kuca5.jpg") !important;
}
[data-framer-name="Room"] img {
    content: url("/images/kuca2.jpg") !important;
}
[data-framer-name="Tile Detail"] img {
    content: url("/images/kuca8.jpg") !important;
}
[data-framer-name="Architecture"] img {
    content: url("/images/kuca4.jpg") !important;
}
[data-framer-name="Bukhara Arches"] img {
    content: url("/images/food1.jpg") !important;
}



/* --- Our Story --- */
[data-framer-name="Courtyard Story Image"] img {
    content: url("/images/kuca3.jpg") !important;
}

/* =========================================================
   ROOM PHOTO CAROUSEL
   ========================================================= */

.nemo-room-photo {
    position: relative !important;
    cursor: pointer;
}


.nemo-room-hint {
    position: absolute;
    inset: 0;
    background: rgba(18, 42, 41, .45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #f7f1e7;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 2;
}

.nemo-room-photo:hover .nemo-room-hint {
    opacity: 1;
}

.nemo-room-hint-icon {
    font-size: 22px;
}

.nemo-room-hint-text {
    font-family: "Cantarell", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nemo-room-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(18, 42, 41, .55);
    color: #f7f1e7;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background .25s ease;
}

.nemo-room-arrow:hover {
    background: rgba(18, 42, 41, .85);
}

.nemo-room-prev { left: 10px; }
.nemo-room-next { right: 10px; }

/* =========================================================
   LIGHTBOX
   ========================================================= */

#nemo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(18, 42, 41, .96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

#nemo-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.nemo-lightbox-image {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 3px;
}

.nemo-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(247, 241, 231, .12);
    color: #f7f1e7;
    font-size: 26px;
    cursor: pointer;
}

.nemo-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(247, 241, 231, .12);
    color: #f7f1e7;
    font-size: 26px;
    cursor: pointer;
}

.nemo-lightbox-arrow:hover {
    background: rgba(247, 241, 231, .22);
}

.nemo-lightbox-prev { left: 24px; }
.nemo-lightbox-next { right: 24px; }

.nemo-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #f7f1e7;
    font-family: "Cantarell", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

body.nemo-lightbox-open {
    overflow: hidden;
}

@media (max-width: 809.98px) {
    .nemo-lightbox-arrow { width: 44px; height: 44px; font-size: 22px; }
    .nemo-lightbox-prev { left: 10px; }
    .nemo-lightbox-next { right: 10px; }
}

/* =========================================================
   FOOTER — INSTAGRAM
   ========================================================= */

.nemo-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nemo-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(247, 241, 231, 0.35);
    border-radius: 50%;

    color: var(--nemo-ivory);
    text-decoration: none;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .35s var(--nemo-ease);
}

.nemo-instagram:hover {
    background: var(--nemo-ivory);
    color: var(--nemo-teal);
    border-color: var(--nemo-ivory);
    transform: translateY(-1px);
}

.nemo-instagram svg {
    display: block;
}

/* =========================================================
   GUEST NOTES — REVIEWS CAROUSEL
   ========================================================= */

/* Родительский контейнер Framer — делаем шире, чем 760px */
.framer-43g82y[data-framer-name="Guest Quote"] {
    width: min(920px, 100%) !important;
    max-width: 100% !important;
    padding: 20px 8px !important;
}

.nemo-reviews {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.nemo-reviews-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.nemo-reviews-track {
    position: relative;
    width: 100%;
}

/* Все слайды наложены друг на друга. Активный — position: relative,
   поэтому именно он задаёт высоту контейнера. */
.nemo-review {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 8px;
    text-align: center;
    box-sizing: border-box;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .4s ease, visibility .4s ease;
}

.nemo-review.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nemo-review-text {
    font-family:
        "Mazius Display",
        "Mazius Display Placeholder",
        serif;

    /* Адаптивный размер: от 20px до 32px, зависит от ширины экрана */
    font-size: clamp(20px, 2.4vw, 32px);
    line-height: 1.2em;
    letter-spacing: -0.01em;

    color: var(--nemo-teal);
    text-wrap: balance;
    margin: 0;
}

.nemo-review-author {
    font-family: "Cantarell", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--nemo-rust);
    margin-top: 22px;
}

.nemo-reviews-controls {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nemo-reviews-arrow {
    appearance: none;
    -webkit-appearance: none;

    width: 44px;
    height: 44px;
    padding: 0;

    border: 1px solid var(--nemo-teal);
    border-radius: 50%;

    background: transparent;
    color: var(--nemo-teal);

    font-family: "Cantarell", sans-serif;
    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .35s var(--nemo-ease),
        border-color .3s ease;
}

.nemo-reviews-arrow:hover {
    background: var(--nemo-teal);
    color: var(--nemo-ivory);
    transform: scale(1.06);
}

.nemo-reviews-arrow:active {
    transform: scale(.98);
}

.nemo-reviews-counter {
    font-family: "Cantarell", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: var(--nemo-teal);

    min-width: 48px;
    text-align: center;
}

/* RU — Nyght Serif с более широкой разрядкой */
html[lang="ru"] .nemo-review-text {
    font-family:
        "Nyght Serif",
        "Cormorant Garamond",
        Georgia,
        serif !important;

    letter-spacing: 0.02em !important;
    word-spacing: 0.10em !important;
}

html[lang="ru"] .nemo-review-author {
    letter-spacing: 2px !important;
    word-spacing: 0.08em !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 809.98px) {

    .nemo-review-text {
        font-size: clamp(18px, 4.6vw, 24px);
        line-height: 1.25em;
    }

    .nemo-reviews {
        gap: 22px;
    }

    .nemo-reviews-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .nemo-reviews-controls {
        gap: 16px;
    }

    html[lang="ru"] .nemo-review-text,
    html[lang="ru"] .framer-text,
    html[lang="ru"] [data-framer-component-type="Text"],
    html[lang="ru"] [data-framer-component-type="Text"] *,
    html[lang="ru"] .nemo-mobile-link,
    html[lang="ru"] .nemo-mobile-eyebrow,
    html[lang="ru"] .nemo-mobile-footer,
    html[lang="ru"] .nemo-desktop-link,
    html[lang="ru"] .nemo-logo {
        letter-spacing: 0.03em !important;
        word-spacing: 0.14em !important;
    }
}

@media (max-width: 380px) {

    .nemo-review-text {
        font-size: clamp(16px, 4.4vw, 20px);
    }

    .nemo-reviews-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

html[lang="ru"] .nemo-desktop-link {
    letter-spacing: 2px !important;
}