:root {
    --bg-color: #939f81;
    --bg-noise: #9fc3d2;
    --text-main: #1f1e1e;
    --white: #ffffff;
    --font-accent: 'Cormorant Garamond', serif;
    --font-main: 'Montserrat Alternates', sans-serif;
    --font-secondary: 'Inconsolata', monospace;
    --header-height: 76px;
    --accent-olive: #939f81;
    --accent-blue: #9fc3d2;
    --accent-pink: #d58bab;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    background-image: none;
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100svh;
    color: var(--text-main);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' seed='17' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' fill='%239fc3d2'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    background-repeat: repeat;
    mix-blend-mode: multiply;
    opacity: 0.28;
}

body > * {
    position: relative;
    z-index: 1;
}

.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #939f81;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header__shell {
    max-width: 1400px;
    margin: 0 auto;
    height: var(--header-height);
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
}

.site-header__logo {
    width: clamp(110px, 10vw, 150px);
    height: auto;
    display: block;
}

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

.site-header__link {
    font-family: var(--font-secondary);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.8);
    text-decoration: none;
}

.site-header__link:hover {
    color: rgba(26, 26, 26, 1);
}

.site-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    margin-right: -12px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.site-header__burger span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #111111;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__burger span:nth-child(1) {
    top: 14px;
}

.site-header__burger span:nth-child(2) {
    top: 21px;
}

.site-header__burger span:nth-child(3) {
    top: 28px;
}

.site-header.is-open .site-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__burger span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .site-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header__mobile {
    display: block;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(159, 195, 210, 0.96);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    box-shadow: 0 18px 30px rgba(16, 16, 18, 0.14);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.site-header__mobile-nav {
    display: grid;
    gap: 12px;
    padding: 16px 20px 20px;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(26, 26, 26, 0.12);
    backdrop-filter: blur(8px);
}

/* --- Hero Section --- */
.hero {
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #939f81;
}

/* Верхний адрес */
.hero__top-info {
    font-family: var(--font-secondary);
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero__container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    min-height: calc(100svh - var(--header-height));
}

.container.hero__container {
    padding: 0 16px;
}

.hero__content {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 2svh, 64px) 0;
    max-width: 560px;
}

.hero__title {
    font-family: var(--font-secondary);
    font-size: clamp(34px, 5vw, 72px); /* Адаптивный размер шрифта */
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero__subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(14px, 2vw, 16px);
    max-width: 450px;
    margin-bottom: 40px;
}

/* Кнопки */
.hero__actions {
    display: flex;
    flex-wrap: wrap; /* Чтобы на узких экранах кнопки переносились */
    gap: 12px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .hero__actions {
        display: inline-grid;
        grid-template-columns: repeat(2, max-content);
        column-gap: 12px;
        row-gap: 12px;
        align-items: center;
    }

    .hero__actions-telegram {
        grid-column: 1 / -1;
        width: 100%;
    }
}

.btn {
    font-family: var(--font-secondary);
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    min-width: 200px;
    animation: btnFloat 3.6s ease-in-out infinite;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: left 0.45s ease;
}

.btn--primary {
    background: #1f1e1e;
    color: var(--white);
}

.btn--secondary {
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn:hover {
    animation-play-state: paused;
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(26, 26, 26, 0.16);
}

.btn:hover::after {
    left: 135%;
}

.btn-animate {
    position: relative;
    overflow: hidden;
}

.btn-animate::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: left 0.45s ease;
    pointer-events: none;
}

.btn-animate:hover {
    transform: translateY(-2px);
}

.btn-animate:hover::after {
    left: 135%;
}

.hero__footer {
    font-family: var(--font-secondary);
    font-size: 13px;
    opacity: 0.6;
}

.hero__footer a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.35);
}

/* --- Визуальная часть (Фото) --- */
.hero__visual {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    position: relative;
    align-self: stretch;
    margin-right: 0;
    padding-right: 0;
    height: 100%;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: #e9e2d6;
}

.hero-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(147, 159, 129, 1) 0%, rgba(147, 159, 129, 0) 20%),
        linear-gradient(270deg, rgba(147, 159, 129, 1) 0%, rgba(147, 159, 129, 0) 20%);
    pointer-events: none;
    z-index: 2;
}

.hero-portrait__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 35% 40%;
    position: relative;
    z-index: 1;
    filter: saturate(1.02) contrast(1.02);
}

@keyframes btnFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

/* --- About Studio Section --- */
.about-studio {
    padding: 94px 16px 114px;
    background: #ffffff;
}

.about-studio .container {
    display: grid;
    gap: 28px;
}

.about-studio__title {
    font-family: var(--font-secondary);
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 600;
    color: #1a1a1a;
}

.about-studio__layout {
    width: 100%;
}

.about-studio__card {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    grid-template-areas: "photo content";
    gap: 28px;
    align-items: start;
    padding: 24px;
    border-radius: 100px 0 100px 0;
    border: 2px solid #111111;
    background: transparent;
    box-shadow: 0 14px 26px rgba(18, 18, 18, 0.08);
}

.about-studio__photo {
    grid-area: photo;
    aspect-ratio: 1.3 / 1;
    max-width: 420px;
    width: 100%;
    justify-self: start;
    border-radius: 100px 0 0 0;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(18, 18, 18, 0.1);
    background: #eceae2;
}

.about-studio__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-studio__content {
    grid-area: content;
    display: grid;
    gap: 16px;
    height: 100%;
    align-content: space-between;
    padding-top: 2px;
}

.about-studio__lead {
    font-family: var(--font-secondary);
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.45;
    color: rgba(26, 26, 26, 0.78);
    max-width: none;
}

.about-studio__lead strong {
    font-weight: 600;
    color: #1a1a1a;
}

.about-studio__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
}

.about-studio__btn {
    min-width: 0;
    padding: 12px 18px;
    font-size: 13px;
    flex: 1 1 160px;
}

.about-studio__hours {
    font-family: var(--font-secondary);
    font-size: clamp(13px, 1.35vw, 20px);
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(26, 26, 26, 0.62);
}

/* --- Services Section --- */
.services {
    padding: 90px 32px 110px;
    background: #9fc3d2;
}

.services .container {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 34px;
    padding: 54px 44px 48px;
    backdrop-filter: blur(4px);
}

.services__head {
    margin-bottom: 34px;
}

.services__title {
    font-family: var(--font-secondary);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-block;
}

.services__lead {
    margin-top: 18px;
    max-width: 700px;
    font-family: var(--font-secondary);
    font-size: 16px;
    opacity: 0.8;
}

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

.service-card {
    background: rgba(213, 139, 171, 0.12);
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 24px;
    padding: 14px 14px 18px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(26, 26, 26, 0.14);
}

.service-card__media {
    width: 100%;
    aspect-ratio: 0.88 / 1;
    border-radius: 22px;
    margin-bottom: 14px;
    background-size: cover;
    background-position: center;
}

.service-card--manicure .service-card__media {
    background:
        linear-gradient(160deg, rgba(32, 26, 24, 0.24), rgba(32, 26, 24, 0.08)),
        url("./assets/nails.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}

.service-card--pedicure .service-card__media {
    background:
        linear-gradient(160deg, rgba(33, 27, 22, 0.24), rgba(33, 27, 22, 0.08)),
        url("./assets/eyes.png");
    background-size: cover;
    background-position: center;
}

.service-card--brows .service-card__media {
    background:
        linear-gradient(160deg, rgba(30, 28, 24, 0.26), rgba(30, 28, 24, 0.12)),
        url("./assets/brow.jpeg");
    background-size: cover;
    background-position: center;
}

.service-card--hair .service-card__media {
    background:
        linear-gradient(160deg, rgba(32, 26, 24, 0.22), rgba(32, 26, 24, 0.06)),
        url("./assets/hair.png");
    background-size: cover;
    background-position: center;
}

.service-card__title {
    font-family: var(--font-secondary);
    font-size: 34px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-card__text {
    font-family: var(--font-secondary);
    font-size: 14px;
    opacity: 0.82;
}

.service-card__cta {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    padding: 12px 18px;
    font-size: 12px;
    animation: none;
}

/* --- Price Section --- */
.price {
    padding: 92px 16px 110px;
    background: #ffffff;
}

.price__shell {
    position: relative;
}

.price__board {
    background: var(--price-surface, rgba(255, 255, 255, 0.78));
    border-radius: 32px;
    padding: 10px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 18px 34px rgba(16, 16, 18, 0.08);
}

.price__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
    position: relative;
}

.price__title {
    font-family: var(--font-secondary);
    font-size: clamp(48px, 6.2vw, 86px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.price__lead {
    max-width: 560px;
    margin: 0 0 24px;
    color: rgba(26, 26, 26, 0.56);
    font-family: var(--font-secondary);
    font-size: clamp(14px, 1.7vw, 18px);
    line-height: 1.38;
}

.price__arrows {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.price__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(26, 26, 26, 0.16);
    background: #ffffff;
    color: var(--text-main);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.price__arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(18, 18, 18, 0.1);
}

.price__tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
    position: relative;
    padding: 6px;
    border-radius: 24px;
    --indicator-bg: #ffffff;
}

.price__tab[data-price-tab="0"] {
    --tab-accent: #d58bab;
    --tab-surface: #d58babc1;
}

.price__tab[data-price-tab="1"] {
    --tab-accent: #9fc3d2;
    --tab-surface: #9fc3d2c1;
}

.price__tab[data-price-tab="2"] {
    --tab-accent: #939f81;
    --tab-surface: #939f81c1;
}

.price__tab[data-price-tab="3"] {
    --tab-accent: #d58bab;
    --tab-surface: #d58babc1;
}

.price__tab[data-price-tab="4"] {
    --tab-accent: #9fc3d2;
    --tab-surface: #9fc3d2c1;
}

.price__tab-indicator {
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: 0;
    width: 120px;
    border-radius: 999px;
    background: var(--indicator-bg);
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.14);
    transition: transform 0.35s ease, width 0.35s ease, background 0.25s ease;
    z-index: 0;
}

.price__tab {
    position: relative;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(26, 26, 26, 0.72);
    padding: 12px 10px;
    font-family: var(--font-secondary);
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 1;
    text-align: center;
    min-height: 48px;
}

.price__tab.is-active {
    color: #111111;
    transform: translateY(-1px);
}

.price__slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 0 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: max-content;
}

.price__slider::-webkit-scrollbar {
    display: none;
}

.price-panel {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: transparent;
    border: 0;
    border-radius: 22px;
    padding: 20px 16px 18px;
    position: relative;
    overflow: hidden;
    height: max-content;
}

.price-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: transparent;
}

.price-panel__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.price-list {
    list-style: none;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.price-item {
    position: relative;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    padding: 14px 16px;
    box-shadow: 0 1px 0 rgba(16, 16, 16, 0.04);
}

.price-item::before {
    display: none;
}

.price-item__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
}

.price-item__name {
    font-family: var(--font-main);
    font-size: 19px;
    line-height: 1.3;
    color: rgba(26, 26, 26, 0.93);
}

.price-item__price {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.price-item__prices {
    display: grid;
    justify-items: end;
    text-align: right;
}

.price-item__prices .price-new {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
}

.price-item__prices .price-old {
    font-family: var(--font-secondary);
    font-size: 18px;
    text-decoration: line-through;
}

.price-item--promo {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(26, 26, 26, 0.08);
}

.price-item__note {
    margin-top: 6px;
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.28;
    color: rgba(26, 26, 26, 0.57);
}

.price-panel--manicure {
    --promo-accent: var(--accent-pink);
    --promo-surface: rgba(213, 139, 171, 0.12);
}

.price-panel--pedicure {
    --promo-accent: var(--accent-blue);
    --promo-surface: rgba(159, 195, 210, 0.12);
}

.price-panel--brows {
    --promo-accent: var(--accent-olive);
    --promo-surface: rgba(147, 159, 129, 0.14);
}

.price-panel--lashes {
    --promo-accent: var(--accent-pink);
    --promo-surface: rgba(213, 139, 171, 0.12);
}

.price-panel--hair {
    --promo-accent: var(--accent-blue);
    --promo-surface: rgba(159, 195, 210, 0.14);
}

.price-panel__footer {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.price-panel__cta {
    width: 100%;
    min-width: 0;
}

.price__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.price__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.18);
    cursor: pointer;
    padding: 0;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.price__dot.is-active {
    width: 20px;
    border-radius: 999px;
    background: #111111;
}

/* --- Works Section --- */
.works {
    overflow: hidden;
    padding: 40px 0;
    background: #ffffff;
}

.works__shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    overflow: visible;
}

.works__marquee {
    position: relative;
    overflow: visible;
    width: 100svw;
    margin-left: calc(50% - 50svw);
    margin-right: calc(50% - 50svw);
    padding: 0 24px;
}

.works__marquee-inner {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: works-marquee 58s linear infinite;
}

.works__track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 0;
}

.works__image {
    width: clamp(160px, 18vw, 240px);
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    object-fit: cover;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 12px 22px rgba(26, 26, 26, 0.12);
    background: #ffffff;
}

.works__marquee:hover .works__marquee-inner {
    animation-play-state: paused;
}

@keyframes works-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* --- Promos Section --- */
.promos--special {
    padding: 90px 32px 110px;
    background: #b5d1d8;
}

.promos--special .container {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 34px;
    padding: 54px 44px 48px;
    backdrop-filter: blur(4px);
}

.promos--special .promos__head {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.promos--special .promos__head-main {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.promos--special .promos__kicker {
    font-family: var(--font-secondary);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
}

.promos--special .promos__title {
    font-family: var(--font-secondary);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.promos--special .promos__lead {
    font-family: var(--font-secondary);
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(26, 26, 26, 0.7);
}

.promos--special .promos__cta {
    min-width: 0;
    padding: 14px 26px;
    white-space: nowrap;
}

.promos--special .promos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.promos--special .promo-card {
    --promo-accent: var(--accent-pink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 24px;
    padding: 22px 20px 24px;
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
    position: relative;
    overflow: hidden;
}

.promos--special .promo-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    pointer-events: none;
}

.promos--special .promo-card--nails {
    --promo-accent: var(--accent-pink);
    background: #b0b5d5b8;
}

.promos--special .promo-card--brows {
    --promo-accent: var(--accent-olive);
    background: #d58babb8;
}

.promos--special .promo-card--hair {
    --promo-accent: var(--accent-blue);
    background: #9fd2c5;
}

.promos--special .promo-card__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    font-size: clamp(22px, 2.8vw, 32px);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.promos--special .promo-list {
    list-style: none;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.promos--special .promo-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 26, 26, 0.08);
}

.promos--special .promo-item__name {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.3;
    color: rgba(26, 26, 26, 0.9);
}

.promos--special .promo-item__prices {
    display: grid;
    justify-items: end;
    text-align: right;
}

.promos--special .price-duo {
    gap: 4px;
}

.promos--special .price-new {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #e22d73;
    text-shadow: 0 6px 16px rgba(226, 45, 115, 0.2);
}

.promos--special .price-old {
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1.1;
    color: rgba(26, 26, 26, 0.45);
    text-decoration: line-through;
}

.promos--classic {
    padding: 90px 0 110px;
    background: #ffffff;
}

.promos--classic .promos__shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 16px;
}

.promos--classic .promos__head {
    margin-bottom: 30px;
}

.promos--classic .promos__title {
    font-family: var(--font-secondary);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.promos--classic .promos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.promos--classic .promo-card {
    background: #9fc3d280;
    border: 0;
    border-radius: 24px;
    padding: 20px 20px 22px;
    box-shadow: 0 10px 20px rgba(26, 26, 26, 0.08);
}

.promos--classic .promo-card--accent {
    background: #d58bab80;
}

.promos--classic .promo-card--wide {
    grid-column: span 3;
}

.promos--classic .promo-card__title {
    font-family: var(--font-main);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.promos--classic .promo-card__text {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: rgba(26, 26, 26, 0.85);
}

.promos--classic .promos__note {
    font-family: var(--font-secondary);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
}

/* --- Contacts Section --- */
.contacts {
    padding: 90px 32px;
    background: #9fc3d2;
}

.contacts .container {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 34px;
    padding: 54px 44px 48px;
    backdrop-filter: blur(4px);
}

.contacts__shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.contacts__head {
    margin-bottom: 30px;
}

.contacts__title {
    font-family: var(--font-secondary);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contacts__content {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: start;
}

.contacts__info {
    display: grid;
    gap: 14px;
}

.contacts__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.contacts__btn {
    min-width: 0;
    padding: 16px 28px;
    font-size: 14px;
}

.contacts__phone {
    font-family: var(--font-main);
    font-size: clamp(22px, 3vw, 32px);
    color: var(--text-main);
    text-decoration: none;
}

.contacts__hours,
.contacts__address {
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.7);
}

.contacts__map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.12);
    background: #ffffff;
    min-height: 360px;
}

.contacts__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

/* --- Policy --- */
.policy {
    padding: 80px 16px 90px;
    background: #f7f4f0;
}

.policy__shell {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 32px;
    padding: 48px 44px;
    box-shadow: 0 24px 50px rgba(26, 26, 26, 0.08);
}

.policy__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 0;
    padding: 12px 22px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: none;
    margin-bottom: 18px;
}

.policy__title {
    font-family: var(--font-secondary);
    font-size: clamp(28px, 4vw, 46px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.policy__meta {
    font-family: var(--font-secondary);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 26px;
}

.policy__content h3 {
    font-family: var(--font-secondary);
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 26px 0 10px;
}

.policy__content p {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.82);
    margin-bottom: 12px;
}

.policy__content ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
    margin-bottom: 12px;
    color: rgba(26, 26, 26, 0.8);
}

.policy__content a {
    color: inherit;
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    padding: 40px 32px;
    background: #9fc3d2;
}

.footer__shell {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 34px;
    padding: 32px 44px;
    backdrop-filter: blur(4px);
    max-width: 1400px;
    margin: 0 auto;
}

.footer__brand {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer__logo {
    width: clamp(120px, 12vw, 170px);
    height: auto;
    display: block;
}

.footer__main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.footer__block {
    display: grid;
    gap: 8px;
}

.footer__item {
    font-family: var(--font-secondary);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.72);
}

.footer__link {
    font-family: var(--font-secondary);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.85);
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

/* --- Reviews Section --- */
.reviews {
    padding: 90px 16px 110px;
    background: #ffffff;
}

.reviews__shell {
    background: rgba(213, 139, 171, 0.2);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 34px;
    padding: 54px 44px 48px;
}

.reviews__head {
    margin-bottom: 30px;
}

.reviews__title {
    font-family: var(--font-secondary);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 0;
}

.review-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 10px 20px rgba(26, 26, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.review-card__image {
    width: 100%;
    height: 100%;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    display: block;
}

.review-card--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
    background: #1f1e1e;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(14px, 1.6vw, 18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 22px rgba(16, 16, 18, 0.2);
}

/* --- АДАПТИВНОСТЬ (Mobile) --- */
@media (max-width: 1200px) {
    .container {
        padding: 0 16px 10px;
    }

    .policy .container {
        padding: 0 0 10px;
    }

    .policy__content p {
        word-break: break-word;
    }

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

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

    .promos--special .promos__grid,
    .promos--classic .promos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promos--classic .promo-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .site-header__logo {
        width: 120px;
    }

    .hero__actions {
        justify-content: center;
    }

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

    .price__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price__tabs {
        grid-template-columns: 1fr;
    }

    .price__tab {
        text-align: left;
    }

    .price__slider {
        gap: 12px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .promos--special .promos__grid,
    .promos--classic .promos__grid {
        grid-template-columns: 1fr;
    }

    .promos--classic .promo-card--wide {
        grid-column: span 1;
    }

    .promos--special .promos__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .promos--special .promos__cta {
        width: 100%;
    }

    .contacts__content {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 560px) {
    :root {
        --header-height: 58px;
    }

    .hero__title {
        font-size: clamp(30px, 9vw, 46px);
        margin-bottom: 12px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .btn {
        min-width: 0;
        width: 100%;
        padding: 12px 16px;
        font-size: 12px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contacts__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contacts__btn {
        width: 100%;
    }

    .price-panel__footer {
        grid-template-columns: 1fr;
    }

    .price-panel__cta {
        width: 100%;
    }

    .service-card__cta {
        width: 100%;
    }

    .price__tab {
        font-size: 12px;
    }

    .price-item__name {
        font-size: 16px;
    }

    .price-item__price {
        font-size: 20px;
    }

    .price-item--promo .price-item__row {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }

    .price-item__prices {
        justify-items: start;
        text-align: left;
    }

    .price-item__prices .price-new {
        font-size: 16px;
    }

    .price-item__prices .price-old {
        font-size: 14px;
    }

    .works__image {
        width: clamp(120px, 60vw, 180px);
    }

    .services .container {
        padding: 28px 16px 24px;
    }

    .services__grid {
        gap: 12px;
    }
}


@media (max-width: 991px) {
    .site-header__nav {
        display: none;
    }

    .site-header__burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.site-header.is-open .site-header__mobile {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        height: 100%;
        min-height: calc(100svh - var(--header-height));
        padding: 0;
    }

    .hero__container {
        flex-direction: column; /* Текст и фото в колонку */
        text-align: center;
        padding-top: 0;
        gap: 2svh;
    }

    .hero__content {
        order: 2; /* Текст идет после фото */
        padding: clamp(24px, 10svh, 64px) 0;
        justify-content: flex-start;
        align-self: center;
    }

    .hero__visual {
        order: 1;
        width: 100vw;
        max-width: none;
        margin: 0 -16px;
        padding-right: 0;
        flex: 0 0 auto;
        align-self: auto;
        min-height: auto;
        height: auto;
    }

    .hero__brand {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-portrait {
        width: 100%;
        height: auto;
        aspect-ratio: 11 / 6;
        border-radius: 0;
    }

    .hero-portrait::after {
        content: none;
    }

    .hero-portrait__image {
        object-position: 50% 45%;
    }

    .hero__actions {
        justify-content: center;
        margin-bottom: 12px;
        gap: 10px;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3svh;
        max-width: 360px;
    }

    .hero__title {
        margin-bottom: 6%;
    }

    .about-studio {
        padding: 50px 0;
    }

    .about-studio .container {
        gap: 16px;
    }

    .about-studio__title {
        font-size: clamp(32px, 10.5vw, 50px);
        max-width: 100%;
    }

    .about-studio__lead {
        font-size: 13px;
        max-width: 100%;
    }

    .about-studio__card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "photo"
            "content";
        gap: 10px;
        padding: 12px;
        border-radius: 100px 0 100px 0;
    }

    .about-studio__photo {
        border-radius: 90px 0 0 0
    }

    .about-studio__content {
        gap: 10px;
        padding-top: 0;
    }

    .about-studio__actions {
        gap: 8px;
    }

    .about-studio__btn {
        flex-basis: 100%;
        padding: 11px 14px;
        font-size: 12px;
    }

    .about-studio__hours {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .services {
        padding: 60px 16px 74px;
    }

    .services .container {
        padding: 34px 20px 22px;
        border-radius: 24px;
    }

    .services__lead {
        font-size: 14px;
        margin-top: 12px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card__title {
        font-size: 28px;
    }

    .price {
        padding: 50px 0;
    }

    .price__head {
        margin-bottom: 8px;
        align-items: center;
    }

    .price__lead {
        margin-bottom: 16px;
        max-width: 100%;
        font-size: 14px;
    }

    .price__arrows {
        gap: 6px;
        margin-top: 0;
    }

    .price__arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .price__board {
        border-radius: 20px;
        padding: 6px;
        overflow: hidden;
        box-shadow: none;
    }

    .price__tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 4px;
        margin-bottom: 10px;
        padding: 4px;
        scrollbar-width: none;
    }

    .price__tabs::-webkit-scrollbar {
        display: none;
    }

    .price__tab {
        font-size: 12px;
        padding: 8px 10px;
        flex: 0 0 auto;
        min-height: 36px;
    }

    .price__tab-indicator {
        top: 0;
        bottom: 0;
        border-radius: 18px;
        height: 40px;
        box-shadow: none;
    }

    .price-panel {
        padding: 16px 12px 12px;
        border-radius: 18px;
    }

    .price-panel__title {
        gap: 6px;
        margin-bottom: 10px;
    }

    .price-list {
        gap: 8px;
    }

    .price-item {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .price-item__row {
        gap: 6px;
        grid-template-columns: 1fr;
    }

    .price-item__price {
        white-space: normal;
    }

    .price-item__name,
    .price-item__price {
        font-size: 14px;
    }

    .price-item__note {
        font-size: 12px;
    }

    .price-panel__footer {
        margin-top: 10px;
        padding-top: 12px;
        grid-template-columns: 1fr;
    }

    .price-panel__cta {
        min-height: 46px;
    }

    .works {
        padding: 24px 0;
    }

    .works__shell {
        border-radius: 0;
        padding: 0;
    }

    .works__track {
        gap: 12px;
        padding: 0;
    }

    .works__image {
        width: clamp(140px, 46vw, 200px);
        border-radius: 18px;
    }

    .reviews {
        padding: 50px 0;
    }

    .reviews__shell {
        border-radius: 24px;
        padding: 34px 20px 30px;
    }

    .reviews__head {
        margin-bottom: 18px;
    }

    .reviews__title {
        font-size: clamp(34px, 8vw, 54px);
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 0;
    }

    .review-card {
        border-radius: 20px;
    }

    .review-card--cta {
        padding: 18px;
    }

    .promos--special {
        padding: 60px 0;
    }

    .promos--special .container {
        border-radius: 24px;
        padding: 34px 20px 30px;
        margin: 0 16px;
    }

    .promos--special .promos__head {
        margin-bottom: 18px;
    }

    .promos--special .promos__title {
        font-size: clamp(34px, 8vw, 54px);
    }

    .promos--special .promos__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .promos--special .promo-card {
        padding: 18px;
        border-radius: 20px;
    }

    .promos--special .promo-card__title {
        font-size: 22px;
    }

    .promos--special .promo-item {
        padding: 8px 10px;
    }

    .promos--special .promo-item__name {
        font-size: 14px;
    }

    .promos--special .price-new {
        font-size: 18px;
    }

    .promos--classic {
        padding: 50px 0;
    }

    .promos--classic .promos__shell {
        border-radius: 0;
        padding: 0;
    }

    .promos--classic .promos__head {
        margin-bottom: 18px;
    }

    .promos--classic .promos__title {
        font-size: clamp(34px, 8vw, 54px);
    }

    .promos--classic .promos__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 12px;
    }

    .promos--classic .promo-card--wide {
        grid-column: span 1;
    }

    .promos--classic .promo-card {
        padding: 18px;
        border-radius: 20px;
    }

    .promos--classic .promo-card__title {
        font-size: 22px;
    }

    .promos--classic .promo-card__text {
        font-size: 15px;
    }

    .promos--classic .promos__note {
        font-size: 11px;
    }

    .contacts {
        padding: 50px 0;
    }

    .contacts .container {
        border-radius: 24px;
        padding: 34px 20px 30px;
        margin: 0 16px;
    }

    .contacts__head {
        margin-bottom: 18px;
    }

    .contacts__title {
        font-size: clamp(34px, 8vw, 54px);
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contacts__phone {
        font-size: 22px;
    }

    .contacts__hours,
    .contacts__address {
        font-size: 12px;
    }

    .contacts__map {
        border-radius: 20px;
        min-height: 260px;
    }

    .contacts__map iframe {
        min-height: 260px;
    }

    .footer {
        padding: 34px 16px 44px;
    }

    .footer__shell {
        border-radius: 24px;
        padding: 24px 20px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer__nav {
        gap: 10px;
        margin-bottom: 16px;
    }

    .footer__item,
    .footer__link {
        font-size: 12px;
    }

}

@media (max-width: 991px) and (max-height: 700px) {
    .hero__content {
        padding: clamp(4px, 2svh, 64px) 0;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .hero__container {
        flex-direction: row;
        gap: 28px;
        padding-top: 0;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__subtitle {
        margin: 0 0 30px;
    }

    .hero__visual {
        width: auto;
        max-width: none;
        margin: 0;
        flex: 1 1 0;
        min-width: 0;
    }

    .hero-portrait {
        width: 100%;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-studio__title {
        font-size: clamp(42px, 4.8vw, 60px);
        max-width: 100%;
    }

    .about-studio__lead {
        font-size: 14px;
        max-width: 100%;
    }

    .about-studio__card {
        gap: 16px;
        padding: 18px;
        border-radius: 100px 0 100px 0;
    }

    .about-studio__photo {
        border-radius: 100px 0 0 0;
    }

    .about-studio__content {
        gap: 14px;
        padding-top: 0;
    }

    .about-studio__actions {
        gap: 8px;
    }

    .about-studio__btn {
        flex: 1 1 140px;
        font-size: 12px;
        padding: 11px 14px;
    }

    .about-studio__hours {
        font-size: 11px;
    }

    .price__shell {
        padding: 0;
    }

}

@media (min-width: 480px) and (max-width: 991px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-studio__card {
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
        grid-template-areas: "photo content";
        gap: 16px;
    }

    .reviews__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 18px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 24px;
    padding: 16px 22px;
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.18);
    backdrop-filter: blur(6px);
}

.cookie-banner__text {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.82);
}

.cookie-banner__text strong {
    display: block;
    font-family: var(--font-secondary);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cookie-banner__text a {
    color: inherit;
    text-decoration: underline;
}

.cookie-banner .btn {
    animation: none;
    min-width: 0;
}

.cookie-banner__btn {
    padding: 12px 26px;
    font-size: 13px;
}

@media (max-width: 720px) {
    .policy__shell {
        padding: 32px 22px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}
.site-header__cta {
    min-width: 0;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
    animation: none;
}

.site-header__cta {
    animation: ctaPulse 2.4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(213, 139, 171, 0.55);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 139, 171, 0.55);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(213, 139, 171, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(213, 139, 171, 0);
    }
}
