* {
    box-sizing: border-box;
}

@font-face {
    font-family: "Futura PT";
    src:
            url("../fonts/FuturaPTLight.woff2") format("woff2"),
            url("../fonts/FuturaPTLight.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
            url("../fonts/FuturaPTBook.woff2") format("woff2"),
            url("../fonts/FuturaPTBook.woff") format("woff"),
            local("Futura PT"),
            local("FuturaPT"),
            local("FuturaPT Book"),
            local("Futura PT Book");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
            url("../fonts/FuturaPTMedium.woff2") format("woff2"),
            url("../fonts/FuturaPTMedium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
            url("../fonts/FuturaPTDemi.woff2") format("woff2"),
            url("../fonts/FuturaPTDemi.woff") format("woff"),
            local("Futura PT Demi"),
            local("FuturaPT Demi"),
            local("Futura PT Medium"),
            local("FuturaPT Medium");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
            url("../fonts/FuturaPTHeavy.woff2") format("woff2"),
            url("../fonts/FuturaPTHeavy.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-main: "Futura PT", Futura, "Century Gothic", "Avenir Next", Arial, sans-serif;

    --color-black: #000;
    --color-white: #fff;
    --color-ink: #050505;
    --color-panel: #111;
    --color-card: #151515;
    --color-muted: rgba(255, 255, 255, .72);
    --color-muted-strong: rgba(255, 255, 255, .55);
    --color-line: rgba(255, 255, 255, .18);
    --color-slider-line: #e9e9e9;
    --color-slider-control: #d4d4d4;
    --color-action-text: #161616;
    --color-overlay-soft: rgba(0, 0, 0, .08);
    --color-overlay-strong: rgba(0, 0, 0, .78);
    --color-white-20: rgba(255, 255, 255, .2);
    --color-white-25: rgba(255, 255, 255, .25);
    --color-white-60: rgba(255, 255, 255, .6);
    --color-white-75: rgba(255, 255, 255, .75);
    --color-white-80: rgba(255, 255, 255, .8);
    --color-drawer-bg: rgba(255, 255, 255, .96);
    --color-pill-bg: rgba(255, 255, 255, .18);

    --content-width: 1180px;
    --frame-width: 1440px;
    --mobile-x: 24px;
    --header-height: 93px;
    --hero-height: 780px;
    --slider-bar-height: 28px;
    --drawer-pad: 28px;
    --section-title-mb: 30px;
    --section-y: 78px;
    --h2-size: 40px;
    --h2-line: 51px;
    --service-card-w: 295px;
    --service-card-h: 228px;
    --service-icon-w: 35px;
    --service-icon-h: 15px;
    --salon-slide: 480px;
    --salon-gap: 20px;
    --grid-gap: 24px;
    --radius-pill: 999px;
    --transition-fast: .2s ease;
    --transition-base: .35s ease;
}

html {
    color: var(--color-white);
    font-weight: 400;
    font-family: var(--font-main);
    line-height: 1.35;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
}

body.menu-open {
    overflow: hidden;
}

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

button{
    background: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.page {
    background: var(--color-black);
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: min(100% - (var(--mobile-x) * 2), var(--content-width));
    margin: 0 auto;
}

.site-header {
    height: var(--header-height);
    background: var(--color-white);
    color: var(--color-ink);
    position: relative;
    z-index: 20;
}

.header-container {
    width: min(100%, var(--frame-width));
    padding: 0 118px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu-button {
    width: 32px;
    height: 51px;
    display: grid;
    gap: 6px;
    align-content: center;
    justify-self: start;
    padding: 0;
    border: 0;
    background: #ffffff;
    color: inherit;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 13px;
    background-color: currentColor;
    clip-path: inset(0 round 13px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.menu-open .menu-button span:first-child {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-open .menu-button span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    display: block;
    width: 142px;
    height: 56px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 44px;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.top-nav a {
    position: relative;
    outline: none;
}

.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--transition-fast);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.drawer {
    position: fixed;
    inset: 0 0 auto;
    z-index: 19;
    width: 100%;
    transform: translateY(-120%);
    padding: var(--drawer-pad) 0;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 15px;
    text-transform: uppercase;
    transition: transform .24s ease;
}

.drawer__inner {
    display: grid;
    grid-template-columns: repeat(6, auto);
    justify-content: center;
    gap: 34px;
}

.drawer__nav {
    display: contents;
}

.drawer__socials {
    display: none;
}

.drawer__close {
    display: none;
}

.menu-open .drawer {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .menu-open .drawer {
        inset: 0;
        min-height: 100svh;
        padding: 0;
        z-index: 30;
        background: var(--color-black);
        color: var(--color-white);
        font-size: 26px;
    }

    .menu-open .drawer__inner {
        position: relative;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 47px 32px 29px;
    }

    .menu-open .drawer__close {
        position: absolute;
        top: 32px;
        right: 26px;
        z-index: 2;
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--color-white);
        cursor: pointer;
    }

    .menu-open .drawer__close span {
        grid-area: 1 / 1;
        width: 50px;
        height: 4px;
        border-radius: 13px;
        background: currentColor;
    }

    .menu-open .drawer__close span:first-child {
        transform: rotate(45deg);
    }

    .menu-open .drawer__close span:last-child {
        transform: rotate(-45deg);
    }

    .menu-open .drawer__nav {
        display: grid;
        gap: 20px;
        justify-items: start;
    }

    .menu-open .drawer__nav a {
        font-size: 26px;
        font-weight: 300;
        line-height: 1;
        text-transform: uppercase;
    }

    .menu-open .drawer__socials {
        display: flex;
        gap: 16px;
        margin-top: auto;
    }

    .menu-open .drawer__social {
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--color-white);
    }

    .menu-open .drawer__social img {
        width: 29px;
        height: 29px;
        display: block;
        object-fit: contain;
    }


    .menu-open .site-header .header-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0 26px;
    }

    .menu-open .site-header .logo,
    .menu-open .top-nav {
        display: none;
    }

    .menu-open .site-header .menu-button {
        display: none;
    }
}

.hero {
    position: relative;
    height: var(--hero-height);
    overflow: visible;
    background: var(--color-white);
    z-index: 2;
}

.hero-container {
    width: min(100%, var(--frame-width));
    position: relative;
    height: 100%;
    background: var(--color-white);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0 0px 0;
    overflow: hidden;
}

.hero-slide {
    opacity: 0;
    transition: opacity .45s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img,
.hero-slide__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 0%;
    display: block;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
    object-position: 50% 24%;
}

.hero-actions {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 10px;
    width: 304px;
}

.hero-brand-mobile {
    display: none;
}

.pill,
.button-light {
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: var(--radius-pill);
    font-weight: 500;
    text-transform: uppercase;
}

.pill {
    position: relative;
    overflow: hidden;
    width: 262px;
    min-height: 50px;
    padding: 0 var(--mobile-x);
    background: var(--color-pill-bg);
    color: var(--color-action-text);
    font-size: 20px;
    line-height: var(--drawer-pad);
    backdrop-filter: blur(2px);
    outline: none;
    transition: background .85s ease, color .85s ease, transform .65s ease, box-shadow .85s ease;
    font-weight: 400;
    border: 1px solid var(--color-white);
}

.pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .48) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 1.35s ease;
}

.pill:hover,
.pill:focus-visible {
    background: var(--color-white);
    color: var(--color-ink);
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.pill:hover::before,
.pill:focus-visible::before {
    transform: translateX(120%);
}

.button-light {
    min-height: 39px;
    width: max-content;
    min-width: 190px;
    padding: 0 18px;
    font-size: 13px;
    line-height: 1;
}

.hero-slider-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    height: var(--slider-bar-height);
    padding: 0 130px;
    background: var(--color-white);
}

.hero-progress {
    position: relative;
    height: 2px;
    background: var(--color-slider-line);
    overflow: visible;
    cursor: pointer;
}

.hero-progress::before {
    content: "";
    position: absolute;
    inset: -12px 0;
}

.hero-progress span {
    display: block;
    width: calc(100% / var(--hero-slide-count, 1));
    height: 100%;
    background: var(--color-black);
    transform-origin: left center;
    transition: transform .35s ease;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-slider-control);
    font-size: 10px;
    line-height: 1;
}

.hero-controls button {
    width: 18px;
    height: 10px;
    padding: 0;
    border: 0;
    background: #ffffff;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.hero-controls button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    width: 14px;
    height: 1px;
    background: currentColor;
}

.hero-controls button::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.hero-controls [data-hero-prev]::after {
    left: 1px;
    transform: translateY(-50%) rotate(-135deg);
}

.hero-controls [data-hero-next]::after {
    right: 1px;
    transform: translateY(-50%) rotate(45deg);
}

.beauty-lead {
    padding: 70px 0 0;
    background: var(--color-black);
}

.beauty-lead__body {
    display: grid;
    grid-template-columns: minmax(0, 650px) 480px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.beauty-lead__content {
    min-width: 0;
    padding-top: 0;
}

.beauty-lead__quote {
    margin: 0;
    max-width: 650px;
}

.beauty-lead__media {
    width: 480px;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.beauty-lead__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-lead__title,
.story h2,
.career h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0;
}

.beauty-lead__title {
    margin-bottom: 42px;
    max-width: 650px;
    font-size: 40px;
    font-weight: 500;
    line-height: 51px;
}

.beauty-lead__quote p,
.story-copy p,
.career-copy p,
.journal p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
}

.beauty-lead__quote p {
    max-width: 575px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
}

.beauty-lead__author {
    margin-top: 24px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.beauty-lead__author strong,
.beauty-lead__author span {
    display: block;
}

.beauty-lead__author strong {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.beauty-lead__author span {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}
.service-menu {
    margin-top: 0;
    padding: 80px 0 var(--section-y);
    background: var(--color-black);
}

.service-menu__title,
.journal h2 {
    margin: 0 0 30px;
    text-align: center;
    font-size: var(--h2-size);
    line-height: var(--h2-line);
    text-transform: uppercase;
    font-weight: 500;
}

.service-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, var(--service-card-w));
    justify-content: center;
}

.service-menu__card {
    position: relative;
    min-height: var(--service-card-h);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    padding: 0 22px 26px;
    background: var(--color-card);
    outline: none;
}

.service-menu__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, var(--color-overlay-soft), var(--color-overlay-strong));
    transition: background var(--transition-base);
}

.service-menu__card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.88);
    transition: filter var(--transition-base), transform var(--transition-base);
}

.service-menu__card--mono img {
    filter: grayscale(1) contrast(1.05);
}

.service-menu__card-meta {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.service-menu__card span {
    max-width: calc(100% - 42px);
    font-size: 22px;
    font-weight: 300;
    line-height: 28px;
    text-transform: uppercase;
}

.service-menu__card i {
    width: var(--service-icon-w);
    height: var(--service-icon-h);
    margin-bottom: 5px;
    border: 1px solid var(--color-white);
    border-radius: 999px;
    position: relative;
    flex: 0 0 auto;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.service-menu__card i::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 17px;
    height: 1px;
    background: var(--color-white);
    transform: translateY(-50%);
}

.service-menu__card i::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
}

.service-menu__card:hover::after,
.service-menu__card:focus-visible::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .62));
}

.service-menu__card:hover img,
.service-menu__card:focus-visible img {
    filter: saturate(1);
    transform: scale(1.04);
}

.service-menu__card:hover i,
.service-menu__card:focus-visible i {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateX(4px);
}

.service-menu__card:hover i::before,
.service-menu__card:focus-visible i::before {
    background: currentColor;
}

.service-menu__card:hover i::after,
.service-menu__card:focus-visible i::after {
    background: #ffffff;
    border-color: currentColor;
}

.section-kicker {
    color: var(--color-muted-strong);
    font-size: 14px;
    text-transform: uppercase;
}

.salons {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
}

.salons h2,
.story h2,
.career h2 {
    margin-bottom: 20px;
    font-size: var(--h2-size);
    line-height: 1.08;
}

.salons h2 {
    margin: 0 0 var(--section-title-mb);
    text-align: center;
    line-height: var(--h2-line);
    text-transform: uppercase;
    font-weight: 500;
}

.salon-slider {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
}

.salon-slider::-webkit-scrollbar {
    display: none;
}

.salon-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.salon-progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 40px;
    background: var(--color-white-20);
    overflow: visible;
    cursor: pointer;
}

.salon-progress::before {
    content: "";
    position: absolute;
    inset: -12px 0;
}

.salon-progress span {
    display: block;
    width: calc(100% / var(--salon-slide-count, 1));
    height: 100%;
    background: var(--color-white);
    transform: translateX(0);
    transition: transform var(--transition-base);
}

.salon-track {
    display: flex;
    gap: var(--salon-gap);
    transition: transform var(--transition-base);
    will-change: transform;
}

.salon-card {
    width: var(--salon-slide);
    min-width: var(--salon-slide);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    background: var(--color-black);
}

.salon-card img {
    width: 100%;
    height: 652px;
    display: block;
    flex: 0 0 auto;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.salon-card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px 0 0;
}

.salon-card h3 {
    max-width: 440px;
    margin: 0 0 16px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25;
}

.salon-card a {
    position: relative;
    overflow: hidden;
    display: inline-grid;
    place-items: center;
    margin-top: 0;
    width: 220px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
    color: var(--color-white);
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    outline: none;
    transition: background .55s ease, color .55s ease, transform .35s ease, box-shadow .55s ease;
    font-weight: 100;
    backdrop-filter: blur(2px);
}

.salon-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .42) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .9s ease;
}

.salon-card a:hover,
.salon-card a:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 255, 255, .14);
}

.salon-card a:hover::before,
.salon-card a:focus-visible::before {
    transform: translateX(120%);
}

@media (min-width: 768px) {
    .salon-card {
        position: relative;
        height: 652px;
        overflow: hidden;
        isolation: isolate;
    }

    .salon-card::after {
        content: "";
        position: absolute;
        z-index: 1;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, .08) 32%, rgba(0, 0, 0, .78) 100%);
        pointer-events: none;
    }

    .salon-card img {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .salon-card-body {
        position: absolute;
        z-index: 2;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 30px 32px;
    }

    .salon-card h3 {
        max-width: 420px;
        margin: 0 0 18px;
    }
}

.portfolio {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
    --portfolio-slide-w: 280px;
    --portfolio-slide-h: 377px;
    --portfolio-gap: 20px;
}

.portfolio h2 {
    margin: 0 0 var(--section-title-mb);
    color: var(--color-white);
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: var(--h2-line);
    text-align: center;
    text-transform: uppercase;
}

.portfolio-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
}

.portfolio-slider::-webkit-scrollbar {
    display: none;
}

.portfolio-slider.is-dragging {
    cursor: grabbing;
}

.portfolio-track {
    display: flex;
    gap: var(--portfolio-gap);
}

.portfolio-card {
    display: block;
    width: var(--portfolio-slide-w);
    min-width: var(--portfolio-slide-w);
    height: var(--portfolio-slide-h);
    overflow: hidden;
    background: var(--color-panel);
    outline: none;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    transition: transform 1.1s ease, opacity .55s ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
    transform: scale(1.04);
    opacity: .92;
}
.portfolio-progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 42px;
    background: var(--color-white-20);
    overflow: visible;
    cursor: pointer;
}

.portfolio-progress::before {
    content: "";
    position: absolute;
    inset: -12px 0;
}

.portfolio-progress span {
    display: block;
    width: calc(100% / var(--portfolio-slide-count, 1));
    height: 100%;
    background: var(--color-white);
    transform: translateX(0);
    transition: transform var(--transition-base);
}
.specials {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
}

.specials h2 {
    margin: 0 0 26px;
    color: var(--color-white);
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: var(--h2-line);
    text-align: center;
    text-transform: uppercase;
}

.specials-slider {
    width: 100%;
    overflow: hidden;
}

.specials-track {
    display: flex;
    transition: transform .7s ease;
    will-change: transform;
}

.specials-slide {
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 480px;
    overflow: hidden;
    background: var(--color-black);
}

.specials-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.specials-content {
    position: absolute;
    left: 31px;
    bottom: 31px;
    z-index: 2;
    max-width: 560px;
    color: var(--color-white);
    text-transform: uppercase;
}

.specials-content span,
.specials-content p {
    display: block;
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.specials-content strong {
    display: block;
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.specials-content small {
    display: block;
    margin-top: 43px;
    color: var(--color-white);
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-transform: none;
}

.specials-controls {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
}

.specials-controls button {
    position: relative;
    width: 90px;
    height: 53px;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
    background: transparent;
    cursor: pointer;
    transition: background .35s ease, transform .35s ease;
}

.specials-controls button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 33px;
    height: 1px;
    background: var(--color-white);
    transform: translate(-50%, -50%);
}

.specials-controls button::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
}

.specials-controls [data-specials-prev]::after {
    left: calc(50% - 17px);
    transform: translateY(-50%) rotate(-135deg);
}

.specials-controls [data-specials-next]::after {
    right: calc(50% - 17px);
    transform: translateY(-50%) rotate(45deg);
}

.specials-controls button:hover,
.specials-controls button:focus-visible {
    background: var(--color-white);
    transform: translateY(-1px);
    outline: none;
}

.specials-controls button:hover::before,
.specials-controls button:focus-visible::before {
    background: var(--color-black);
}

.specials-controls button:hover::after,
.specials-controls button:focus-visible::after {
    border-color: var(--color-black);
}

.specials-progress {
    display: none;
}
.news {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
    --news-card-w: 480px;
    --news-gap: 20px;
}

.news h2 {
    margin: 0 0 var(--section-title-mb);
    color: var(--color-white);
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: var(--h2-line);
    text-align: center;
    text-transform: uppercase;
}

.news-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-slider.is-dragging {
    cursor: grabbing;
}

.news-track {
    display: flex;
    gap: var(--news-gap);
}

.news-card {
    position: relative;
    display: block;
    width: var(--news-card-w);
    min-width: var(--news-card-w);
    height: 652px;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-panel);
    outline: none;
    isolation: isolate;
}

.news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08) 28%, rgba(0, 0, 0, .78) 100%);
    pointer-events: none;
}

.news-card-arrow {
    position: absolute;
    right: 29px;
    bottom: 25px;
    z-index: 3;
    width: 46px;
    height: 20px;
    border: 1px solid currentColor;
    border-radius: var(--radius-pill);
    color: var(--color-white);
    transition: background .35s ease, color .35s ease, transform .35s ease;
}

.news-card-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 11px;
    width: 22px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%);
}

.news-card-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 11px;
    width: 5px;
    height: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.news-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    transition: transform 1.1s ease, opacity .55s ease;
}

.news-card span {
    position: absolute;
    left: 30px;
    right: 74px;
    bottom: 57px;
    z-index: 2;
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    text-transform: uppercase;
    max-width: 360px;
}

.news-card:hover img,
.news-card:focus-visible img {
    opacity: .92;
    transform: scale(1.035);
}

.news-card:hover span,
.news-card:focus-visible span {
    text-decoration: none;
}

.news-progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 20px;
    background: var(--color-white-20);
    overflow: visible;
    cursor: pointer;
}

.news-progress::before {
    content: "";
    position: absolute;
    inset: -12px 0;
}

.news-progress span {
    display: block;
    width: calc(100% / var(--news-slide-count, 1));
    height: 100%;
    background: var(--color-white);
    transform: translateX(0);
    transition: transform var(--transition-base);
}
.story,
.career {
    padding: var(--section-y) 0;
    background: var(--color-panel);
}

.story-container,
.career-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
    align-items: center;
    gap: 70px;
}

.story img,
.career-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.story-copy,
.career-copy {
    display: grid;
    gap: 22px;
}

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

.facts div {
    border-top: 1px solid var(--color-white-25);
    padding-top: 16px;
}

.facts dt {
    font-size: 46px;
    line-height: 1;
}

.facts dd {
    margin: 6px 0 0;
    color: var(--color-white-60);
    font-size: 14px;
    text-transform: uppercase;
}

.career {
    background: var(--color-black);
}

.career-container {
    grid-template-columns: minmax(360px, 540px) minmax(0, 1fr);
}

.career-copy ul {
    display: grid;
    gap: 10px;
    margin: 8px 0 16px;
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    font-size: 16px;
}

.career-copy li {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-line);
}

.journal {
    padding: var(--section-y) 0;
    background: var(--color-panel);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.journal article {
    min-width: 0;
}

.journal img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin-bottom: 18px;
}

.journal h3 {
    margin: 0 0 10px;
    font-size: 22px;
    text-transform: uppercase;
}


.faq {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
    color: var(--color-white);
}

.faq h2 {
    margin: 0 0 var(--section-title-mb);
    color: var(--color-white);
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: var(--h2-line);
    text-align: center;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-white-25);
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    border: 0;
    background: transparent;
    color: var(--color-white);
    font: inherit;
    cursor: pointer;
    text-align: left;
    text-transform: uppercase;
}

.faq-question span {
    font-size: 22px;
    font-weight: 300;
    line-height: 25px;
}

.faq-question i {
    display: none;
}

.faq-answer {
    padding: 0 22px 24px;
    color: var(--color-white);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.45;
}

.command {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
    color: var(--color-white);
}

.command h2 {
    margin: 0 0 var(--section-title-mb);
    color: var(--color-white);
    font-size: var(--h2-size);
    font-weight: 500;
    line-height: var(--h2-line);
    text-align: center;
    text-transform: uppercase;
}

.command-media {
    position: relative;
    width: 100%;
    min-height: 467px;
    overflow: hidden;
}


.command-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .58) 100%);
    pointer-events: none;
}
.command-media img {
    width: 100%;
    height: 467px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.command-button {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 20px;
    display: inline-grid;
    place-items: center;
    width: 343px;
    height: 64px;
    padding: 0 24px;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
    color: var(--color-white);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: background .45s ease, color .45s ease, transform .35s ease;
}

.command-button:hover,
.command-button:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
    outline: none;
    transform: translate(-50%, -2px);
}

.salon-detail-hero {
    background: var(--color-white);
}

.salon-detail-hero__container {
    position: relative;
    width: min(100%, var(--frame-width));
    overflow: hidden;
}

.salon-detail-hero__track {
    position: relative;
    min-height: 720px;
}

.salon-detail-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;
}

.salon-detail-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.salon-detail-hero__slide img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    display: block;
    object-fit: cover;
}

.salon-detail-hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .61);
    pointer-events: none;
}

.salon-detail-hero__content {
    position: absolute;
    left: 50%;
    bottom: 86px;
    z-index: 2;
    width: min(100% - 40px, 620px);
    color: var(--color-white);
    text-align: center;
    transform: translateX(-50%);
}

.salon-detail-hero h1 {
    margin: 0 0 24px;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.08;
    text-transform: uppercase;
}

.salon-detail-hero__meta {
    display: grid;
    gap: 4px;
    color: rgba(255, 255, 255, .86);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
}

.salon-detail-hero__meta p {
    margin: 0;
}

.salon-detail-hero__meta--phone{
    padding: 25px 0;
}

.salon-detail-hero__actions {
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-top: 28px;
}

.salon-detail-hero__actions a {
    position: relative;
    overflow: hidden;
    display: inline-grid;
    place-items: center;
    width: 262px;
    min-height: 50px;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
    color: var(--color-white);
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
    outline: none;
    transition: background .85s ease, color .85s ease, transform .65s ease, box-shadow .85s ease;
    font-weight: 400;
}

.salon-detail-hero__actions a:hover,
.salon-detail-hero__actions a:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
    outline: none;
    transform: translateY(-2px);
}

.salon-detail-hero__ui {
    margin: 0 auto;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    height: var(--slider-bar-height);
    padding: 0 130px;
    background: var(--color-white);
}

.salon-detail-hero__progress {
    height: 1px;
    background: rgba(0, 0, 0, .16);
    cursor: pointer;
}

.salon-detail-hero__progress span {
    display: block;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: width .45s ease;
}

.salon-detail-hero__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-slider-control);
    font-size: 10px;
    line-height: 1;
}

.salon-detail-hero__controls button {
    position: relative;
    width: 26px;
    height: 18px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.salon-detail-hero__controls button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.salon-detail-hero__controls button::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 2px;
    width: 5px;
    height: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.salon-detail-hero__controls button:first-child::after {
    right: auto;
    left: 2px;
    transform: rotate(-135deg);
}
.salon-detail-gallery,
.salon-detail-services,
.salon-detail-portfolio {
    background: var(--color-black);
    color: var(--color-white);
}

.salon-detail-gallery {
    padding: 74px 0 84px;
}

.salon-detail-services,
.salon-detail-portfolio {
    padding: 0 0 84px;
}

.salon-detail-gallery h2,
.salon-detail-services h2,
.salon-detail-portfolio h2 {
    margin: 0 0 30px;
    color: var(--color-white);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.salon-detail-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.salon-detail-gallery__item {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    display: block;
    cursor: pointer;
}

.salon-detail-gallery__item img,
.salon-detail-gallery__grid img,
.salon-detail-gallery__slide img {
    width: 100%;
    aspect-ratio: 380 / 501;
    display: block;
    object-fit: cover;
    transition: transform .65s ease, opacity .45s ease;
}

.salon-detail-gallery__item:hover img{
    opacity: .9;
    transform: scale(1.04);
}

.salon-detail-gallery__slider {
    --salon-gallery-slide-count: 1;
}

.salon-detail-gallery__track {
    display: grid;
    grid-auto-columns: calc((100% - 40px) / 3);
    grid-auto-flow: column;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
}

.salon-detail-gallery__track::-webkit-scrollbar {
    display: none;
}

.salon-detail-gallery__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.salon-detail-gallery__slide {
    min-width: 0;
    scroll-snap-align: start;
}

.salon-detail-gallery__progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 40px;
    background: var(--color-white-20);
    overflow: visible;
    cursor: pointer;
}

.salon-detail-gallery__progress::before {
    content: "";
    position: absolute;
    inset: -12px 0;
}

.salon-detail-gallery__progress span {
    display: block;
    width: calc(100% / var(--salon-gallery-slide-count, 1));
    height: 100%;
    background: var(--color-white);
    transform: translateX(0);
    transition: transform var(--transition-base);
}
.salon-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 90px;
    align-items: center;
    gap: 20px;
    padding: 54px;
    background: rgba(0, 0, 0, .92);
}

.salon-lightbox[hidden] {
    display: none;
}

.salon-lightbox__figure {
    display: grid;
    justify-items: center;
    gap: 16px;
    margin: 0;
}

.salon-lightbox__figure img {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    display: block;
    object-fit: contain;
}

.salon-lightbox__figure figcaption {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.salon-lightbox__close,
.salon-lightbox__nav {
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
}

.salon-lightbox__close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.salon-lightbox__close::before,
.salon-lightbox__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background: currentColor;
}

.salon-lightbox__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.salon-lightbox__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.salon-lightbox__nav {
    position: relative;
    width: 70px;
    height: 44px;
    justify-self: center;
    border-radius: var(--radius-pill);
}

.salon-lightbox__nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 30px;
    height: 1px;
    background: currentColor;
}

.salon-lightbox__nav::after {
    content: '';
    position: absolute;
    top: 17px;
    right: 20px;
    width: 9px;
    height: 9px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.salon-lightbox__nav--prev::after {
    right: auto;
    left: 20px;
    transform: rotate(-135deg);
}

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


.salon-detail-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.salon-detail-service {
    position: relative;
    min-height: 177px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 16px 10px;
    background: var(--color-card);
    isolation: isolate;
    outline: none;
}

.salon-detail-service::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .76));
}

.salon-detail-service img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
}

.salon-detail-service span {
    max-width: calc(100% - 40px);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.15;
    text-transform: uppercase;
}

.salon-detail-service i {
    position: absolute;
    right: 16px;
    bottom: 20px;
    width: 35px;
    height: 15px;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
}

.salon-detail-service i::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 17px;
    height: 1px;
    background: var(--color-white);
    transform: translateY(-50%);
}

.salon-detail-service i::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
}

.salon-detail-service:hover img,
.salon-detail-service:focus-visible img {
    filter: saturate(1.08);
    transform: scale(1.04);
}

.salon-detail-service-groups {
    display: grid;
    gap: 42px;
}

.salon-detail-service-group {
    display: grid;
    gap: 18px;
}

.salon-detail-service-group h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
}

.salon-detail-service-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.salon-detail-services__back {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    transition: color var(--transition-base);
}

.salon-detail-services__back:hover,
.salon-detail-services__back:focus-visible {
    color: var(--color-white);
}

.salon-detail-service-list {
    border-top: 1px solid var(--color-white-20);
}

.salon-detail-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 28px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-white-20);
}

.salon-detail-service-row__content {
    display: grid;
    gap: 8px;
}

.salon-detail-service-row h4 {
    margin: 0;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.salon-detail-service-row p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.45;
}

.salon-detail-service-row__side {
    display: grid;
    justify-items: end;
    gap: 14px;
}

.salon-detail-service-row__side span {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.salon-detail-service-row__side button,
.salon-detail-service-row__side a {
    min-width: 170px;
    min-height: 42px;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    transition: background var(--transition-base), color var(--transition-base);
}

.salon-detail-service-row__side button:hover,
.salon-detail-service-row__side button:focus-visible,
.salon-detail-service-row__side a:hover,
.salon-detail-service-row__side a:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
}


.salon-detail-services--category {
    padding: 82px 0 86px;
    min-height: calc(100vh - 80px);
}

.salon-detail-category-select {
    position: relative;
    width: min(100%, 1000px);
    margin: 0 0 44px;
}

.salon-detail-category-select summary {
    position: relative;
    min-height: 88px;
    padding: 0 62px 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    color: var(--color-white);
    font-size: var(--h2-size);
    line-height: var(--h2-line);
    text-transform: uppercase;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
}

.salon-detail-category-select summary::-webkit-details-marker {
    display: none;
}

.salon-detail-category-select summary::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 22px solid var(--color-white);
    transform: translateY(-50%);
}

.salon-detail-category-select[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.salon-detail-category-select__menu {
    position: absolute;
    z-index: 8;
    top: calc(100% + 24px);
    left: 0;
    width: min(100%, 520px);
    padding: 38px 42px;
    display: grid;
    gap: 34px;
    background: var(--color-white);
    color: var(--color-black);
}

.salon-detail-category-select__menu a {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 300;
    line-height: 1.12;
    text-transform: uppercase;
}

.salon-detail-category-select__menu a:hover,
.salon-detail-category-select__menu a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.salon-detail-services__note {
    max-width: 760px;
    margin: 0 0 46px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.35;
}

.salon-detail-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.salon-detail-portfolio__slider {
    --salon-portfolio-slide-count: 1;
}

.salon-detail-portfolio__track {
    display: grid;
    grid-auto-columns: calc((100% - 60px) / 4);
    grid-auto-flow: column;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
}

.salon-detail-portfolio__track::-webkit-scrollbar {
    display: none;
}

.salon-detail-portfolio__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.salon-detail-portfolio__slide {
    min-width: 0;
    scroll-snap-align: start;
}

.salon-detail-portfolio__item {
    display: block;
    overflow: hidden;
    background: var(--color-card);
    outline: none;
}

.salon-detail-portfolio__item img {
    width: 100%;
    aspect-ratio: 280 / 377;
    display: block;
    object-fit: cover;
    transition: transform .65s ease, opacity .45s ease;
}

.salon-detail-portfolio__item:hover img,
.salon-detail-portfolio__item:focus-visible img {
    opacity: .9;
    transform: scale(1.04);
}

.salon-detail-portfolio__progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 40px;
    background: var(--color-white-20);
    overflow: visible;
    cursor: pointer;
}

.salon-detail-portfolio__progress::before {
    content: "";
    position: absolute;
    inset: -12px 0;
}

.salon-detail-portfolio__progress span {
    display: block;
    width: calc(100% / var(--salon-portfolio-slide-count, 1));
    height: 100%;
    background: var(--color-white);
    transform: translateX(0);
    transition: transform var(--transition-base);
}
.site-footer {
    position: relative;
    min-height: 545px;
    overflow: hidden;
    background: var(--color-black);
    color: #ffffff;
}

.site-footer__container {
    position: relative;
    z-index: 2;
    padding: 73px 0 235px;
}

.site-footer__head {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr) 350px;
    align-items: center;
    gap: 76px;
}

.site-footer__legal {
    display: grid;
    justify-items: start;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
}

.site-footer__socials {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 16px;
}

.site-footer__social {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
}

.site-footer__social img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.site-footer__apps {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.site-footer__app {
    width: 155px;
    min-height: 44px;
    display: grid;
    grid-template-columns: 33px auto;
    grid-template-rows: 14px 26px;
    align-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(255, 232, 232, .18);
    color: #ffffff;
    line-height: 1;
}

.site-footer__app img {
    grid-row: 1 / 3;
    width: 29px;
    height: 45px;
    display: block;
    object-fit: contain;
}

.site-footer__app span {
    align-self: end;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.site-footer__app strong {
    align-self: start;
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.site-footer__nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    white-space: nowrap;
}


.site-footer__info {
    display: grid;
    justify-items: center;
    gap: 20px;
    margin-top: 85px;
    color: rgba(255, 232, 232, .52);
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
}

.site-footer__info p {
    margin: 0;
    font-size: 18px;
    font-weight: 100;
}

.site-footer__brand {
    position: absolute;
    left: 50%;
    bottom: -150px;
    z-index: 1;
    width: min(1180px, calc(100% - 36px));
    max-width: none;
    height: auto;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
}

.site-footer a {
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    font-size: 16px;
    line-height: 1.4;
}

.site-footer__nav a{
    font-size: 18px;
    font-weight: 300;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    opacity: .62;
    outline: none;
}

@media (max-width: 900px) {
    .site-footer {
        min-height: 620px;
    }

    .site-footer__container {
        padding: 56px 0 245px;
    }

    .site-footer__head {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 28px;
        text-align: center;
    }

    .site-footer__legal {
        justify-items: center;
        order: 2;
    }

    .site-footer__socials {
        order: 1;
    }

    .site-footer__apps {
        justify-content: center;
        order: 3;
    }

    .site-footer__nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 28px;
        white-space: normal;
    }
    .top-nav {
        gap: 16px;
    }

    .hero {
        height: 520px;
    }

    .service-menu__grid,
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-container,
    .career-container {
        grid-template-columns: 1fr;
    }

    .salon-detail-services__grid,
    .salon-detail-portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .salon-detail-gallery__track {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .salon-detail-portfolio__track {
        grid-auto-columns: calc((100% - 20px) / 2);
    }
    .beauty-lead__body{
        display: block;
    }
    .beauty-lead__media {
        width: 100%;
        height: auto;
        margin-top: 34px;
    }

}


@media (min-width: 561px) and (max-width: 767px) {
    .site-footer {
        min-height: 0;
    }

    .site-footer__container {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        grid-template-areas:
      "nav socials"
      "nav apps"
      "nav legal"
      "info info";
        column-gap: 24px;
        align-items: start;
        padding: 29px 0 170px;
    }

    .site-footer__head {
        display: contents;
    }

    .site-footer a {
        width: 100%;
        font-size: 18px;
    }

    .site-footer__nav {
        grid-area: nav;
        display: grid;
        justify-content: flex-start;
        justify-items: start;
        gap: 20px;
        margin-top: 0;
        white-space: normal;
    }

    .site-footer__nav a {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.25;
    }

    .site-footer__nav a:last-child {
        display: none;
    }

    .site-footer__socials {
        grid-area: socials;
        justify-content: end;
        gap: 8px;
        order: 0;
    }

    .site-footer__social {
        width: 45px;
        height: 45px;
    }

    .site-footer__social img {
        width: 100%;
        height: 100%;
    }

    .site-footer__apps {
        grid-area: apps;
        display: grid;
        justify-content: end;
        gap: 15px;
        margin-top: 60px;
        order: 0;
    }

    .site-footer__app {
        width: 155px;
        min-height: 44px;
        grid-template-columns: 33px auto;
        grid-template-rows: 14px 26px;
        column-gap: 8px;
        padding: 0 10px;
        border-radius: 8px;
    }

    .site-footer__app img {
        width: 29px;
        height: 45px;
    }

    .site-footer__app span {
        font-size: 12px;
        line-height: 14px;
    }

    .site-footer__app strong {
        font-size: 18px;
        line-height: 26px;
    }

    .site-footer__legal {
        grid-area: legal;
        justify-self: end;
        justify-items: center;
        gap: 2px;
        max-width: 245px;
        margin-top: 45px;
        text-align: center;
        font-size: 18px;
        font-weight: 300;
        line-height: 1.25;
        order: 0;
    }

    .site-footer__info {
        grid-area: info;
        gap: 18px;
        margin-top: 60px;
        color: rgba(255, 255, 255, .52);
        text-align: center;
    }

    .site-footer__info p {
        max-width: 455px;
        font-size: 18px;
        font-weight: 300;
        line-height: 1.35;
    }

    .site-footer__brand {
        bottom: -76px;
        width: 540px;
    }
}

@media (max-width: 560px) {
    :root {
        --h2-size: 18px;
        --section-y: 50px;
        --mobile-x: 12px;
        --section-title-mb: 12px;
    }

    .hidden-phone{
        display: none;
    }

    .faq-question {
        min-height: 48px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .command-button {
        width: 220px;
        height: 39px;
        font-size: 13px;
    }

    .command-media, .command-media img {
        min-height: 340px;
        height: 340px;
    }

    .site-footer {
        min-height: 0;
    }

    .site-footer__container {
        display: grid;
        grid-template-columns: 158px minmax(0, 1fr);
        grid-template-areas:
      "nav socials"
      "nav apps"
      "nav legal"
      "info info";
        column-gap: 18px;
        align-items: start;
        padding: 55px 0 150px;
    }

    .site-footer__head {
        display: contents;
    }

    .site-footer a {
        width: 100%;
        font-size: 12px;
    }

    .site-footer__nav {
        grid-area: nav;
        display: grid;
        justify-content: flex-start;
        justify-items: start;
        gap: 12px;
        margin-top: 0;
        font-size: 12px;
        line-height: 15px;
        white-space: normal;
    }

    .site-footer__nav a {
        font-size: 12px;
        font-weight: 300;
        line-height: 15px;
    }

    .site-footer__nav a:last-child {
        display: none;
    }

    .site-footer__socials {
        grid-area: socials;
        justify-content: end;
        gap: 8px;
        order: 0;
    }

    .site-footer__socials a,
    .site-footer__social {
        width: 28px;
        height: 28px;
    }

    .site-footer__social img {
        width: 100%;
        height: 100%;
    }

    .site-footer__apps {
        grid-area: apps;
        display: grid;
        justify-content: end;
        gap: 8px;
        margin-top: 46px;
        order: 0;
    }

    .site-footer__apps .site-footer__app {
        width: 130px;
        min-height: 37px;
        grid-template-columns: 28px auto;
        grid-template-rows: 12px 20px;
        column-gap: 6px;
        padding: 0 8px;
        border-radius: 7px;
    }

    .site-footer__app img {
        width: 25px;
        height: 25px;
    }

    .site-footer__app span {
        font-size: 9px;
        line-height: 11px;
    }

    .site-footer__app strong {
        font-size: 14px;
        line-height: 20px;
    }

    .site-footer__legal {
        grid-area: legal;
        justify-self: end;
        justify-items: center;
        gap: 2px;
        max-width: 210px;
        margin-top: 27px;
        text-align: center;
        font-size: 12px;
        font-weight: 300;
        line-height: 15px;
        order: 0;
    }

    .site-footer__info {
        grid-area: info;
        gap: 14px;
        margin-top: 42px;
        color: rgba(255, 255, 255, .52);
        text-align: center;
        font-size: 12px;
        line-height: 16px;
    }

    .site-footer__info p {
        max-width: 355px;
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
    }

    .site-footer__brand {
        bottom: -50px;
        width: 395px;
    }
    .site-header {
        position: relative;
        inset: auto;
        height: 68px;
        background: #ffffff;
        color: var(--color-black);
    }

    .site-header .header-container {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .site-header .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        order: 1;
        display: block;
        width: 96px;
        height: 40px;
        transform: translate(-50%, -50%);
    }

    .site-header .menu-button {
        order: 2;
        width: 28px;
        height: 44px;
        gap: 5px;
        background: transparent;
        color: currentColor;
    }

    .is-inner-page .site-header {
        position: absolute;
        inset: 0 0 auto;
        height: 58px;
        background: transparent;
        color: var(--color-white);
    }

    .is-inner-page .header-container {
        display: flex;
        justify-content: flex-end;
        padding: 0 34px;
    }

    .is-inner-page .logo {
        display: none;
    }

    .is-inner-page .menu-button {
        width: 28px;
        height: 42px;
        background: transparent;
        color: var(--color-white);
    }

    .menu-button span {
        width: 28px;
        height: 2px;
    }

    .menu-open .menu-button {
        color: var(--color-white);
    }

    .menu-open .menu-button span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-button span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .top-nav {
        display: none;
    }

    .drawer {
        inset: 0;
        min-height: 100svh;
        padding: 0;
        background: var(--color-black);
        color: var(--color-white);
        font-size: 12px;
        line-height: 1.2;
        z-index: 30;
    }

    .drawer__inner {
        position: relative;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 47px 32px 29px;
    }

    .drawer__close {
        position: absolute;
        top: 32px;
        right: 26px;
        z-index: 2;
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--color-white);
        cursor: pointer;
    }

    .drawer__close span {
        grid-area: 1 / 1;
        width: 25px;
        height: 2px;
        border-radius: 13px;
        background: currentColor;
    }

    .drawer__close span:first-child {
        transform: rotate(45deg);
    }

    .drawer__close span:last-child {
        transform: rotate(-45deg);
    }

    .drawer__nav {
        display: grid;
        gap: 20px;
        justify-items: start;
    }

    .is-main-page.menu-open .drawer__nav a {
        font-size: 14px;
        font-weight: 300;
        line-height: 1;
        text-transform: uppercase;
    }

    .drawer__socials {
        display: flex;
        gap: 16px;
        margin-top: auto;
    }

    .is-main-page.menu-open .drawer__social, .drawer__social {
        width: 25px;
        height: 25px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--color-white);
    }

    .drawer__social img, .is-main-page.menu-open .drawer__social img {
        width: 20px;
        height: 20px;
        display: block;
        object-fit: contain;
    }

    .is-main-page.menu-open .site-header {
        z-index: 0;
    }

    .is-main-page.menu-open .site-header .header-container {
        justify-content: flex-end;
        padding: 0 26px;
    }

    .is-main-page.menu-open .site-header .logo {
        display: none;
    }

    .is-main-page.menu-open .site-header .menu-button {
        width: 50px;
        height: 58px;
        gap: 8px;
    }

    .is-main-page.menu-open .site-header .menu-button span {
        width: 50px;
        height: 4px;
        opacity: 1;
        transform: none;
    }

    .hero {
        height: 641px;
        background: var(--color-black);
    }

    .salon-detail-hero__container {
        width: 100%;
    }

    .salon-detail-hero__track {
        min-height: 641px;
    }

    .salon-detail-hero__slide img {
        min-height: 641px;
    }

    .salon-detail-hero__content {
        bottom: 107px;
        width: min(100% - 30px, 360px);
    }

    .salon-detail-hero h1 {
        font-size: 30px;
    }

    .salon-detail-hero__meta {
        font-size: 16px;
    }

    .salon-detail-hero__actions a {
        width: 175px;
        min-height: 37px;
        font-size: 13px;
    }

    .salon-detail-hero__ui {
        display: none;
    }

    .salon-detail-gallery {
        padding: 46px 0 58px;
    }

    .salon-detail-services,
    .salon-detail-portfolio {
        padding-bottom: 58px;
    }

    .salon-detail-gallery h2,
    .salon-detail-services h2,
    .salon-detail-portfolio h2 {
        margin-bottom: 22px;
        font-size: 24px;
    }

    .salon-detail-gallery__grid,
    .salon-detail-services__grid,
    .salon-detail-portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0px -12px;
    }

    .salon-detail-service-groups {
        gap: 34px;
    }

    .salon-detail-service-group {
        gap: 14px;
    }

    .salon-detail-service-group h3 {
        font-size: 18px;
    }

    .salon-detail-service-group__head {
        display: grid;
        justify-items: start;
        gap: 10px;
    }

    .salon-detail-services__back {
        font-size: 12px;
    }

    .salon-detail-service-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .salon-detail-service-row h4 {
        font-size: 15px;
    }

    .salon-detail-service-row p {
        font-size: 12px;
        line-height: 1.4;
    }

    .salon-detail-service-row__side {
        grid-template-columns: minmax(0, 1fr) auto;
        justify-items: start;
        align-items: center;
        gap: 16px;
    }

    .salon-detail-service-row__side span {
        font-size: 15px;
    }

    .salon-detail-service-row__side button,
    .salon-detail-service-row__side a {
        min-width: 132px;
        min-height: 36px;
        font-size: 12px;
    }

    .salon-detail-gallery__track {
        grid-auto-columns: 100%;
    }

    .salon-detail-portfolio__track {
        grid-auto-columns: 100%;
    }

    .salon-lightbox {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
        padding: 56px 14px 28px;
    }

    .salon-lightbox__close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }

    .salon-lightbox__nav {
        width: 44px;
        height: 38px;
    }

    .salon-lightbox__nav::before {
        left: 11px;
        width: 22px;
    }

    .salon-lightbox__nav::after {
        top: 14px;
        right: 11px;
    }

    .salon-lightbox__nav--prev::after {
        left: 11px;
    }

    .salon-lightbox__figure img {
        max-height: calc(100vh - 130px);
    }

    .salon-detail-service {
        min-height: 139px;
        padding: 0 16px 44px;
    }

    .salon-detail-service span{
        font-size: 14px;
    }

    .hero-container {
        width: 100%;
    }

    .hero-actions {
        bottom: 27px;
        width: 175px;
        gap: 9px;
        z-index: 2;
    }

    .hero-track,
    .hero-slide {
        inset: 0;
    }

    .hero-slide img,
    .hero-slide__video {
        object-position: 50% 50%;
        filter: grayscale(1);
    }

    .hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        height: 220px;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .51) 100%);
    }

    .hero-brand-mobile {
        display: grid;
        justify-items: center;
        gap: 9px;
        position: absolute;
        left: 50%;
        bottom: 138px;
        z-index: 2;
        color: var(--color-white);
        transform: translateX(-50%);
    }

    .hero-logo-mobile {
        display: block;
        width: 128px;
        height: auto;
        filter: invert(1);
    }

    .hero-brand-mobile span {
        font-size: 9px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .pill {
        width: 175px;
        min-height: 37px;
        padding: 0 16px;
        border-color: var(--color-white);
        background: rgba(255, 255, 255, .08);
        color: var(--color-white);
        font-size: 13px;
        line-height: 1;
        backdrop-filter: blur(1px);
    }

    .hero-slider-ui {
        display: none;
    }

    .beauty-lead {
        padding: 40px 0 0;
    }

    .beauty-lead__body {
        display: block;
    }

    .beauty-lead__content {
        padding-top: 0;
    }

    .beauty-lead__title {
        margin: 0 0 14px;
        max-width: none;
        font-size: 24px;
        font-weight: 900;
        line-height: 30px;
        white-space: nowrap;
    }

    .beauty-lead__quote {
        max-width: 306px;
    }

    .beauty-lead__quote p {
        max-width: 306px;
        font-size: 14px;
        font-weight: 300;
        line-height: normal;
    }

    .beauty-lead__author {
        margin-top: 28px;
    }

    .beauty-lead__author strong {
        font-size: 14px;
        line-height: 25px;
    }

    .beauty-lead__author span {
        margin-top: 4px;
        font-size: 12px;
        line-height: 25px;
    }

    .beauty-lead__media {
        width: 100%;
        height: auto;
        margin-top: 34px;
        aspect-ratio: 480 / 336;
    }

    .beauty-lead__media img {
        height: 100%;
    }

    .salons {
        --salon-slide: min(480px, calc(100vw - 96px));
        --salon-gap: 20px;
        padding: 0 0 58px;
    }

    .salons h2 {
        line-height: 31px;
    }

    .salon-card img {
        height: var(--salon-slide);
    }

    .salon-card-body {
        padding: 22px 0 0;
    }

    .salon-card h3 {
        max-width: var(--salon-slide);
        margin: 0 0 22px;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.2;
    }

    .salon-card a {
        width: 220px;
        height: 44px;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 1px;
    }

    .salon-progress {
        margin-top: 40px;
    }

    .service-menu {
        padding: 45px 0 58px;
    }

    .service-menu__title {
        line-height: 31px;
        margin: 0 0 15px;
    }

    .service-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .service-menu__card {
        min-height: 140px;
        aspect-ratio: 180 / 140;
        padding: 0 11px 16px;
    }

    .service-menu__card-meta {
        gap: 10px;
    }

    .service-menu__card span {
        max-width: calc(100% - 35px);
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
    }

    .service-menu__card i {
        width: 35px;
        height: 15px;
        margin-bottom: 3px;
    }

    .specials {
        padding: 0 0 var(--section-y);
    }

    .specials h2 {
        margin: 0 0 14px;
        font-size: var(--h2-size);
        line-height: 23px;
    }

    .specials-slide {
        height: auto;
    }

    .specials-slide img {
        object-fit: cover;
    }

    .specials-controls {
        display: none;
    }

    .specials-progress {
        display: block;
        width: 100%;
        height: 2px;
        margin-top: 26px;
        background: var(--color-white-20);
        cursor: pointer;
        touch-action: manipulation;
    }

    .specials-progress span {
        display: block;
        width: 0;
        height: 100%;
        background: var(--color-white);
        transition: width var(--transition-base);
    }
}

@media (max-width: 420px) {
    .beauty-lead__title {
        font-size: 20px;
        line-height: 26px;
    }

    .beauty-lead__quote,
    .beauty-lead__quote p {
        max-width: 306px;
    }
}
@media (max-width: 767px) {
    .news {
        --news-card-w: 270px;
        --news-gap: 12px;
        padding: 0 0 var(--section-y);
    }

    .news h2 {
        margin: 0 0 var(--section-title-mb);
        font-size: var(--h2-size);
        line-height: 23px;
    }

    .news-card {
        height: 367px;
    }

    .news-card span {
        left: 18px;
        right: 44px;
        bottom: 41px;
        font-size: 16px;
        line-height: 20px;
    }

    .news-card-arrow {
        right: 20px;
        bottom: 15px;
        width: 31px;
        height: 15px;
    }

    .news-card-arrow::before {
        right: 7px;
        width: 17px;
    }

    .news-card-arrow::after {
        right: 7px;
        width: 4px;
        height: 4px;
    }

    .news-progress {
        margin-top: 28px;
    }
}

.beauty-lead__content,
.beauty-lead__media {
    will-change: transform, opacity;
}

.beauty-lead:not(.beauty-lead--animated) .beauty-lead__content {
    opacity: 0;
    transform: translateX(-56px);
}

.beauty-lead:not(.beauty-lead--animated) .beauty-lead__media {
    opacity: 0;
    transform: translateX(56px);
}

.beauty-lead--animated .beauty-lead__content,
.beauty-lead--animated .beauty-lead__media {
    opacity: 1;
    transform: translateX(0);
    transition:
            opacity 900ms ease,
            transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.beauty-lead--animated .beauty-lead__media {
    transition-delay: 120ms;
}

@media (max-width: 767px) {
    .beauty-lead:not(.beauty-lead--animated) .beauty-lead__content,
    .beauty-lead:not(.beauty-lead--animated) .beauty-lead__media {
        transform: translateY(28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .beauty-lead__content,
    .beauty-lead__media {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.floating-booking {
    position: fixed;
    right: 34px;
    bottom: 34px;
    z-index: 18;
    width: 111px;
    height: 111px;
    display: block;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-black);
    text-decoration: none;
    transition:
            opacity var(--transition-base),
            transform var(--transition-base);
}

.floating-booking__circle {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-white);
    text-align: center;
}

.floating-booking__circle span {
    color: var(--color-black);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.18;
    text-transform: uppercase;
}

.floating-booking:hover,
.floating-booking:focus-visible {
    transform: scale(1.04);
}

.menu-open .floating-booking {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767px) {
    .floating-booking {
        right: 14px;
        bottom: 14px;
    }
}
