/*
Theme Name: VseISrazu
Theme URI: https://wordpress.org/themes/VseISrazu/
*/

@font-face {
    font-family: 'Rubik';
    src: url('./assets/font/Rubik-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('./assets/font/Rubik-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('./assets/font/Rubik-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('./assets/font/Rubik-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('./assets/font/Rubik-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dela Gothic One';
    src: url('./assets/font/DelaGothicOne-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-rubik: 'Rubik', sans-serif;
    --font-dela: 'Dela Gothic One', sans-serif;
    --color-black: #000;
    --color-black-alt: #0d0d0f;
    --color-black-soft: #0e0e0e;
    --color-black-text: #111;
    --color-black-ui: #161616;
    --color-blue: #2f63ff;
    --color-blue-primary: #3F64F2;
    --color-blue-alt: #3f63ff;
    --color-blue-card: #4164f4;
    --color-blue-link: #4169f5;
    --color-blue-brand: #4A6CFF;
    --color-blue-soft: #4f6cff;
    --color-blue-hover: #7f99ff;
    --color-gray: #9f9f9f;
    --color-gray-light: #ddd;
    --color-red: #e7241a;
    --color-red-alt: #e7251b;
    --color-gray-100: #f2f2f2;
    --color-gray-200: #f5f5f5;
    --color-white: #fff;
    --overlay-black-45: rgba(0, 0, 0, 0.45);
    --overlay-black-50: rgba(0, 0, 0, 0.5);
    --overlay-black-60: rgba(0, 0, 0, 0.6);
    --overlay-white-10: rgba(255, 255, 255, 0.1);
    --overlay-white-12: rgba(255, 255, 255, 0.12);
    --overlay-white-16: rgba(255, 255, 255, 0.16);
    --overlay-white-18: rgba(255, 255, 255, 0.18);
    --overlay-white-40: rgba(255, 255, 255, 0.4);
    --overlay-white-70: rgba(255, 255, 255, 0.7);
    --overlay-white-78: rgba(255, 255, 255, 0.78);
    --overlay-white-85: rgba(255, 255, 255, 0.85);
    --overlay-white-92: rgba(255, 255, 255, 0.92);
    --overlay-white-40-compact: rgba(255,255,255,0.4);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--overlay-white-40);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--overlay-white-70);
}

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

html {
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--overlay-white-40-compact) transparent;
}

html,
body {
    min-height: 100%;
    overflow-x: hidden;
    font-family: var(--font-rubik);
}

body {
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-rubik);
    font-weight: 400;
}

.page-content {
    padding: 120px 20px 100px;
}
.wp-block-heading {
    padding: 10px 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-touch-callout: none;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

.menu-contacts_label, .menu-contacts_data {
    display: none;
}

/* Container 1440 */
.container,
.hero__container,
.new-art__top {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 3rem 0;
}

.header__inner {
    display: flex;
    position: relative;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
}

.logo {
    display: none;
}

.logo a {
    display: block;
}

.logo img {
    display: block;
    width: 127px;
    height: 56px;
    height: auto;
}

@media (min-width: 769px) {
    .logo {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
}

.nav__list {
    display: flex;
    padding: 0.875rem 1rem 1rem;
    gap: 4.375rem;
}

.nav__list li {
    line-height: 1;
    font-weight: 500;
    color: var(--color-white);
    transition: opacity 0.3s ease;
}

.nav__list li a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--font-rubik);
    cursor: pointer;
    display: block;
}

.nav__home-link {
    display: none;
}

/* Hero */

.hero {
    position: relative;
    min-height: 47.25rem;
    background: var(--color-black);
    margin-bottom: 12.5rem;
}

.hero__text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.hero__content {
    position: relative;
    padding-top: 4rem;
}

.hero__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 35rem;
    align-items: end;
    min-height: calc(100vh - 5.375rem);
}

/* Left block */
.hero__left {
    position: relative;
    padding-top: 2.25rem;
    padding-bottom: 3.5rem;
}

.hero__art {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}

.hero__letter {
    position: relative;
    flex-shrink: 0;
    transform-origin: center center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.hero__letter img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.hero__letter:hover {
    transform: translateY(-0.375rem) rotate(-2deg) scale(1.03);
}

.hero__letter--v {
    width: 13.8125rem;
    margin-top: 4rem;
    z-index: 6;
}

.hero__letter--s {
    width: 15rem;
    height: 36.75rem;
    margin-top: 4rem;
    z-index: 6;
}

.hero__right-letters {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.hero__bottom-row {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.hero__letter--yo {
    width: 12.25rem;
    z-index: 6;
}

.hero__letter--i {
    width: 12.25rem;
    height: 10.1875rem;
    margin-top: -0.125rem;
    z-index: 6;
}

.hero__letter--r {
    width: 12.3125rem;
    height: 11.625rem;
    z-index: 6;
}

.hero__letter--a {
    width: 14.8125rem;
    height: 11.6875rem;
    z-index: 6;
}

.hero__letter--z {
    width: 13.75rem;
    height: 11.6875rem;
    margin-left: -0.5rem;
    z-index: 3;
}

.hero__letter--u {
    width: 13.75rem;
    height: 11.6875rem;
    z-index: 7;
}

.hero__text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14.4375rem;
    font-size: 1.25rem;
    line-height: 1.15;
    font-weight: 400;
    color: var(--color-white);
    z-index: 6;
    font-family: var(--font-rubik);
    font-weight: 300;
}

/* Right block */
.hero__right {
    position: relative;
    height: 100%;
}

/* Hand */
.hero__hand {
    position: absolute;
    top: 1.125rem;
    right: -20rem;
    width: 48.9375rem;
    max-width: none;
    z-index: 5;
    pointer-events: none;
}

.hero__hand img {
    display: block;
    width: 100%;
    height: auto;
}

.new-art {
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    margin-bottom: 10.25rem;
}

.new-art__container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.new-art__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.375rem;
}

.new-art__title {
    margin: 0;
    font-size: 2.8125rem;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-dela);
}

.new-art__all {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22.8125rem;
    padding: 1.125rem 0;
    text-decoration: none;
}

.new-art__all-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: filter 0.3s ease;
}

.new-art__all-text {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.new-art__all:hover .new-art__all-bg {
    filter: brightness(0) invert(1);
}

.new-art__all:hover .new-art__all-text {
    color: var(--color-blue-primary);
}

.new-art__grid {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
}

.new-art__card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    transition:
        flex 0.45s ease,
        transform 0.45s ease;
}

.new-art__card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.new-art__image {
    aspect-ratio: 1 / 1;
    background: var(--color-gray-light);
    overflow: hidden;
    transition: aspect-ratio 0.45s ease;
}

.new-art__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-art__details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 0.3s ease,
        max-height 0.45s ease;
}

.new-art__info {
    background: var(--color-white);
    color: var(--color-black-text);
    padding: 1rem 1.25rem 1.25rem;
}

.new-art__info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.new-art__name {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.05;
    font-weight: 600;
    text-transform: uppercase;
}

.new-art__price {
    font-size: 1.5rem;
    line-height: 1;
}

.new-art__drip {
    width: 100%;
    line-height: 0;
    margin-top: -0.4rem;
}

.new-art__drip img {
    display: block;
    width: 100%;
    height: auto;
}

.new-art__card:hover {
    flex: 1.35 1 0;
    z-index: 10;
}

.new-art__card:hover .new-art__details {
    opacity: 1;
    max-height: 40rem;
}

.new-art__grid:hover .new-art__card:not(:hover) {
    flex: 0.85 1 0;
}

.order-art {
    background: var(--color-black);
    height: 56.875rem;
    color: var(--color-white);
    overflow: visible;
    padding-top: 12.5rem;
}

.order-art__container {
    max-width: 90rem;
    margin: 0 auto;
}

.order-art__layout {
    display: grid;
    height: 44.375rem;
    grid-template-columns: 32rem 1fr;
    gap: 5rem;
    align-items: start;
    overflow: visible;
}

.order-art__left {
    position: relative;
    height: 100%;
}

.order-art__order-badge {
    position: absolute;
    width: 32.1875rem;
    left: -6rem;
    top: -12.5rem;
    margin-bottom: 3.5rem;
}

.order-art__order-badge-bg {
    display: block;
    width: 100%;
    height: auto;
}

.order-art__order-badge-text {
    position: absolute;
    top: 50%;
    right: 10%;
    font-size: 1.5625rem;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--color-blue-soft);
    white-space: nowrap;
    font-family: var(--font-dela);
}

.order-art__form {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 33.375rem;
    margin: 0 0 3.125rem;
}

.order-art__field {
    position: relative;
    width: 100%;
    height: 3.125rem;
}

.order-art__field-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 33.375rem;
    height: 100%;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.order-art__field input,
.order-art__field select,
.order-art__custom-select-trigger {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 1.125rem 0rem 2.8rem;
    border: none;
    outline: none;
    background: transparent;
    box-sizing: border-box;
    color: var(--color-white);
    font-size: 0.875rem;
    padding-top: 0.3rem;
    border-radius: 0.25rem;
    font-family: var(--font-rubik);
}

.order-art__field input::placeholder {
    color: var(--overlay-white-78);
    opacity: 1;
    font-size: 1.1rem;
    font-family: var(--font-rubik);
}

.order-art__field input:-webkit-autofill,
.order-art__field input:-webkit-autofill:hover,
.order-art__field input:-webkit-autofill:focus,
.order-art__field input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--color-white);
    caret-color: var(--color-white);
    border: none;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 99999s ease-in-out 0s;
}

.order-art__field input:-moz-autofill {
    box-shadow: 0 0 0 1000px transparent inset;
    color: var(--color-white);
}

.order-art__field--select {
    position: relative;
}

.order-art__custom-select {
    position: relative;
    z-index: 4;
    height: 100%;
}

.order-art__custom-select-trigger {
    padding-right: 3rem;
    color: var(--overlay-white-78);
    cursor: pointer;
    font-family: var(--font-rubik);
    text-align: left;
}

.order-art__custom-select.has-value .order-art__custom-select-trigger {
    color: var(--color-white);
}

.order-art__custom-select-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
    border: 1px solid var(--overlay-white-18);
    border-radius: 0.7rem;
    background: var(--color-black-soft);
    box-shadow: 0 8px 24px var(--overlay-black-50);
    display: none;
    max-height: 12.5rem;
    overflow-y: auto;
}

.order-art__custom-select.is-open .order-art__custom-select-menu {
    display: block;
}

.order-art__custom-select-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--color-white);
    text-align: left;
    font-size: 1rem;
    line-height: 1.25;
    font-family: var(--font-rubik);
    cursor: pointer;
}

.order-art__custom-select-option:hover,
.order-art__custom-select-option.is-selected {
    background: var(--overlay-white-12);
}

.order-art__custom-select-option:focus-visible,
.order-art__custom-select-trigger:focus-visible {
    outline: 2px solid var(--color-blue-primary);
    outline-offset: 1px;
}

.order-art__field select option {
    color: var(--color-white);
    background-color: var(--color-black-ui);
    font-size: 1rem;
    line-height: 1.25;
    font-family: var(--font-rubik);
}

.order-art__field select option[disabled] {
    color: var(--color-gray);
}

.order-art__select-arrow {
    position: absolute;
    top: 50%;
    right: 6rem;
    padding-top: 0.3rem;
    transform: translateY(-50%);
    width: 0.875rem;
    height: 0.875rem;
    z-index: 3;
    pointer-events: none;
}

.order-art__select-arrow img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.order-art__custom-select.is-open + .order-art__select-arrow img {
    transform: rotate(180deg);
}

.order-art__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28rem;
    margin-top: 0.75rem;
    padding: 1.125rem 0;
    margin-left: 0.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color 0.3s ease;
}

.order-art__submit-text {
    transition: color 0.3s ease;
}

.order-art__submit:hover .order-art__submit-bg {
    filter: brightness(0) invert(1);
}

.order-art__submit:hover .order-art__submit-text {
    color: var(--color-blue-primary);
}

.order-art__submit-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    user-select: none;
}

.order-art__submit-text {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1;
    font-family: var(--font-rubik);
}

.order-art__right {
    position: relative;
    min-height: 44.375rem;
}

.order-art__title {
    position: absolute;
    left: 0;
    top: 4.5rem;
    z-index: 3;
}

.order-art__title-top {
    display: flex;
    align-items: flex-end;
    gap: -0.2rem;
}

.order-art__title-bottom {
    display: flex;
    align-items: flex-end;
    margin-top: -0.8rem;
    margin-left: 0.3rem;
}

.order-art__letter {
    position: relative;
    flex-shrink: 0;
    transform-origin: center center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.order-art__letter img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.order-art__letter:hover {
    transform: translateY(-0.375rem) rotate(-2deg) scale(1.03);
}

.order-art__letter--s {
    position: absolute;
    left: 1rem;
    top: 0;
    width: 7rem;
    height: 6.125rem;
    z-index: 2;
}

.order-art__letter--v {
    position: absolute;
    left: 10rem;
    top: 0;
    width: 6.8125rem;
    height: 6.125rem;
    margin-left: -0.8rem;
    z-index: 2;
}

.order-art__letter--o {
    position: absolute;
    left: 17rem;
    top: 0;
    width: 7.3125rem;
    height: 6.125rem;
    margin-left: -0.8rem;
    z-index: 2;
}

.order-art__letter--j {
    position: absolute;
    left: 25rem;
    top: -2rem;
    width: 7.1875rem;
    height: 6.125rem;
    margin-left: -0.6rem;
    z-index: 4;
}

.order-art__letter--a {
    position: absolute;
    left: -7rem;
    top: 7rem;
    width: 7.6875rem;
    height: 6.125rem;
}

.order-art__letter--r {
    position: absolute;
    left: 2rem;
    top: 7rem;
    width: 6.6875rem;
    height: 6.125rem;
    margin-left: -0.7rem;
}

.order-art__letter--t {
    position: absolute;
    left: 10rem;
    top: 7rem;
    width: 7rem;
    height: 6.125rem;
    margin-left: -0.7rem;
}

.order-art__photo-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 44.375rem;
    height: 44.375rem;
    z-index: 2;
}

.order-art__photo {
    width: 100%;
}

.order-art__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.order-art__star {
    position: absolute;
    right: -8rem;
    bottom: -7rem;
    width: 15.875rem;
    height: 18rem;
    z-index: 9;
    transition: transform 0.4s ease;
    transform-origin: center;
}

.order-art__star img {
    display: block;
    width: 100%;
    height: auto;
}

.order-art__star:hover {
    transform: translateX(-1rem) rotate(-2deg);
}

.order-art__submit-bg {
    transition: filter 0.3s ease;
}


.about-brand {
    background: var(--color-black);
    color: var(--color-white);
    height: 50rem;
    padding: 11rem 0 0;
    position: relative;
    margin-bottom: 12.5rem;
}

.about-brand__inner {
    position: relative;
}

.about-brand__label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    z-index: 5;
    color: var(--color-blue-brand);
    font-size: 1.5625rem;
    line-height: 1;
    font-family: var(--font-dela);
    text-transform: uppercase;
}

.about-brand__scene {
    position: relative;
    min-height: 41rem;
}

.about-brand__image {
    position: absolute;
    top: 2rem;
    left: 40%;
    transform: translateX(-40%);
    width: 37.9375rem;
    height: 37.9375rem;
    z-index: 2;
}

.about-brand__image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-brand__title {
    position: absolute;
    top: -1.1rem;
    left: 20.5rem;
    width: 66.625rem;
    height: 13.375rem;
    z-index: 4;
}

.about-brand__title img {
    display: block;
    width: 100%;
    height: auto;
}

.about-brand__content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 21.5rem;
    z-index: 4;
    margin-bottom: 3.125rem;
}

.about-brand__text {
    margin-bottom: 2rem;
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1.25;
    padding-left: 1rem;
}

.about-brand__text p {
    margin: 0;
}

.about-brand__btn {
    position: relative;
    display: inline-block;
    width: 21.5rem;
    padding: 1.125rem 0;
    text-decoration: none;
}

.about-brand__btn:hover {
    opacity: 0.85;
    cursor: pointer;
}

.about-brand__btn-bg {
    display: block;
    width: 100%;
    height: auto;
}

.about-brand__btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-white);
    white-space: nowrap;
}

.about-brand__btn-bg {
    transition: filter 0.3s ease;
}

.about-brand__btn-text {
    transition: color 0.3s ease;
}

.about-brand__btn:hover .about-brand__btn-bg {
    filter: brightness(0) invert(1);
}

.about-brand__btn:hover .about-brand__btn-text {
    color: var(--color-blue-primary);
}

.about-brand__star {
    position: absolute;
    transform-origin: center;
    transition: transform 0.4s ease;
    will-change: transform;
    z-index: 3;
}

.about-brand__star img {
    display: block;
    width: 100%;
    height: auto;
}

.about-brand__star--1 {
    left: 19.5rem;
    top: 22rem;
    width: 2.75rem;
    height: 2.4rem;
}

.about-brand__star--2 {
    left: 13rem;
    top: 25rem;
    width: 5.125rem;
    height: 4.4rem;
}

.about-brand__star--3 {
    left: 16.5rem;
    bottom: -1.8rem;
    width: 11.18rem;
    height: 10.875rem;
}

.about-brand__star--1:hover {
    transform: translateX(-0.5rem) translateY(-0.2rem) rotate(-6deg) scale(1.05);
}

.about-brand__star--2:hover {
    transform: translateX(0.6rem) translateY(-0.3rem) rotate(5deg) scale(1.04);
}

.about-brand__star--3:hover {
    transform: translateX(-0.8rem) translateY(-0.4rem) rotate(-4deg) scale(1.06);
}

.masterclass {
    position: relative;
    height: 50rem;
    overflow: hidden;
    color: var(--color-white);
}

.masterclass__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.masterclass__container {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.masterclass__content {
    max-width: 45.625rem;
    height: 37.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.masterclass__title img {
    width: 45.625rem;
    margin-bottom: 40px;
}

.masterclass__dates {
    font-size: 2.5rem;
    font-family: var(--font-dela);
    line-height: 1.4;
    gap: 1.8rem;
    margin-bottom: 1.8rem;
}

.masterclass__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20.375rem;
    text-decoration: none;
    padding: 1.125rem 0;
}

.masterclass__btn:hover {
    opacity: 0.85;
}

.masterclass__btn-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
}

.masterclass__btn-text {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    color: var(--color-white);
    line-height: 1;
}

.masterclass__btn-bg {
    transition: filter 0.3s ease;
}

.masterclass__btn-text {
    transition: color 0.3s ease;
}

.masterclass__btn:hover .masterclass__btn-bg {
    filter: brightness(0) invert(1);
}

.masterclass__btn:hover .masterclass__btn-text {
    color: var(--color-blue-primary);
}


.footer {
    background: var(--color-black);
    padding: 3.125rem 0;
    border-top: 1px solid var(--overlay-white-10);
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__left {
    color: var(--color-white);
    font-size: 1.25rem;
}

.footer__right {
    display: flex;
    gap: 0.3125rem;
}

.footer__icon {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer__icon img {
    width: 100%;
    height: 100%;
}

.footer__icon:hover {
    transform: scale(1.1);
}

.header__burger {
    display: none;
    position: relative;
    z-index: 1002;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.header__burger-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.header__burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 1.375rem;
    height: 0.125rem;
    background: var(--color-white);
    border-radius: 1px;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.header__burger span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.header__burger span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.header__burger span:nth-child(4) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.header__burger.active .header__burger-icon {
    opacity: 0;
}

.header__burger.active span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
}

.header__burger.active span:nth-child(3) {
    opacity: 0;
}

.header__burger.active span:nth-child(4) {
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-black-45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero__art-mobile {
    display: none;
}

.hero__art-mobile img {
    display: block;
    width: 100%;
    height: auto;
}
.new-art__mobile-bottom {
    display: none;
}

.nav__socials {
    display: none;
}

.nav__social {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav__social img {
    width: 100%;
    height: 100%;
}

.nav__social:hover {
    transform: scale(1.1);
}

.about-brand__mobile {
    display: none;
}

.about-brand__label-mobile {
    display: none;
}

.masterclass__bg-mobile {
    display: none;
}

.order-art__title-mobile {
    display: none;
}

@media (min-width: 769px) {
    .site-header {
        padding: 3rem 0;
    }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        margin: 0 auto;
    }

    .nav {
        width: 100%;
    }

    .nav__menu-wrap {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin: 0;
    }

    .nav__list {
        margin: 0;
        align-items: center;
        gap: 4.375rem;
        padding: 0;
    }

    .nav__list li {
        margin-bottom: 0;
        line-height: 1;
    }

    .nav__list li a {
        padding: 0;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
    }
}

@media (max-width: 1440px) {
    .site-header {
        padding: 3rem 3.75rem;
    }
    .hero {
        margin-bottom: 11.25rem;
    }
    .hero__content {
        padding: 0 3.75rem;
    }
    .hero__letter--v {
        width: 12.6875rem;
        margin-top: 4rem;
        z-index: 6;
    }

    .hero__letter--s {
        width: 12.75rem;
        height: 33.8125rem;
        margin-top: 4rem;
        z-index: 6;
    }

    .hero__letter--yo {
        width: 11.25rem;
        z-index: 6;
    }

    .hero__letter--i {
        width: 11.25rem;
        height: 9.375rem;
        margin-top: -0.125rem;
        z-index: 6;
    }

    .hero__letter--r {
        width: 11.25rem;
        height: 10.8125rem;
        z-index: 6;
    }

    .hero__letter--a {
        width: 13.5625rem;
        height: 10.8125rem;
        z-index: 6;
    }

    .hero__letter--z {
        width: 11.75rem;
        height: 10.8125rem;
        margin-left: -0.5rem;
        z-index: 3;
    }

    .hero__letter--u {
        width: 12.625rem;
        height: 10.8125rem;
        z-index: 7;
    }

    .new-art {
        margin-bottom: 11.25rem;
    }

    .new-art__top {
        padding: 0 3.75rem;
    }

    .new-art__all {
        width: 19.6875rem;
        padding: 1rem 0;
    }

    .new-art__all-text {
        font-size: 1rem;
    }
    .new-art__price {
        font-size: 1.25rem;
        line-height: 1;
    }
    .new-art__grid {
        gap: 1.25rem;
    }
    .order-art {
        padding-top: 11.25rem;
    }
    .order-art__layout {
        padding: 0 3.75rem;
    }
    .order-art__order-badge {
        width: 28.25rem;
        margin-bottom: 0;
    }
    .order-art__field-bg {
        width: 27rem;
    }
    .order-art__field input,
    .order-art__field select,
    .order-art__custom-select-trigger {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        background: transparent;
        box-sizing: border-box;
        padding-top: 0.3rem;
        font-family: var(--font-rubik);
        color: var(--color-white);
    }

    .order-art__field input {
        padding: 0 1.125rem 0 1rem;
        color: var(--color-white);
        font-size: 1.1rem;
        line-height: 1;
    }

    .order-art__field input::placeholder {
        color: var(--overlay-white-78);
        font-size: 1.1rem;
        line-height: 1;
        font-family: var(--font-rubik);
    }

    .order-art__field select,
    .order-art__custom-select-trigger {
        padding: 0 3rem 0 1rem;
        color: var(--overlay-white-78);
        font-size: 1.1rem;
        line-height: 1;
        font-family: var(--font-rubik);
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .order-art__field select:valid {
        color: var(--color-white);
    }

    .order-art__field select option {
        color: var(--color-white);
        background-color: var(--color-black-ui);
        font-size: 1rem;
        line-height: 1.25;
        font-family: var(--font-rubik);
    }
    .order-art__submit {
        padding-left: 0;
        margin-left: 0;
        width: 27rem;
    }
    .order-art__submit-bg {
        left: -1rem;
    }
    .order-art__right {
        min-height: 41.875rem;
    }
    .order-art__photo-wrap {
        width: 41.875rem;
        height: 41.875rem;
    }

    .order-art__letter--s {
        position: absolute;
        left: -3.8rem;
        top: 0;
        width: 7rem;
        height: 5.0625rem;
        z-index: 2;
    }

    .order-art__letter--v {
        position: absolute;
        left: 5.2rem;
        top: 0;
        width: 6.8125rem;
        height: 5.0625rem;
        margin-left: -0.8rem;
        z-index: 2;
    }

    .order-art__letter--o {
        position: absolute;
        left: 12.2rem;
        top: 0;
        width: 7.3125rem;
        height: 5.0625rem;
        margin-left: -0.8rem;
        z-index: 2;
    }

    .order-art__letter--j {
        position: absolute;
        left: 20.2rem;
        top: -2rem;
        width: 7.1875rem;
        height: 5.0625rem;
        margin-left: -0.6rem;
        z-index: 4;
    }

    .order-art__letter--a {
        position: absolute;
        left: -12rem;
        top: 7rem;
        width: 7.6875rem;
        height: 5.0625rem;
    }

    .order-art__letter--r {
        position: absolute;
        left: -3rem;
        top: 7rem;
        width: 6.6875rem;
        height: 5.0625rem;
        margin-left: -0.7rem;
    }

    .order-art__letter--t {
        position: absolute;
        left: 5rem;
        top: 7rem;
        width: 7rem;
        height: 5.0625rem;
        margin-left: -0.7rem;
    }
    .about-brand {
        padding: 10rem 3.75rem 0;
        margin-bottom: 11.25rem;
    }
    .about-brand__title {
        left: 13.8rem;
    }
    .about-brand__title img{
        width: 65.625rem;
        height: 13.125rem;
    }
    .about-brand__image {
        width: 37.5rem;
        height: 37.5rem;
        left: 35%;
    }
    .about-brand__star--1 {
        left: 12.5rem;
    }
    .about-brand__star--2 {
        left: 7rem;
    }
    .about-brand__star--3 {
        left: 9.5rem;
    }
    .masterclass {
        height: 50.875rem;
    }
    .masterclass__container {
        padding: 6.375rem 3.75rem 0;
    }
    .masterclass__title img {
        width: 41.5rem;
        height: 10rem;
    }
    .footer {
        padding: 3.125rem 3.75rem;
    }
}

@media (max-width: 1380px) {
    .container,
    .hero__container,
    .new-art__top,
    .order-art__container {
        max-width: 78rem;
    }

    .site-header {
        padding: 2.25rem 3.75rem;
    }

    .header__inner {
        gap: 2.25rem;
    }

    .nav__list {
        gap: 3.2rem;
    }

    .nav__list li a {
        font-size: 1.08rem;
    }

    .hero {
        min-height: 41rem;
        margin-bottom: 9rem;
    }

    .hero__content {
        padding-top: 2.25rem;
    }

    .hero__layout {
        grid-template-columns: minmax(0, 1fr) 29rem;
        min-height: calc(100vh - 4.8rem);
    }

    .hero__left {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }

    .hero__art {
        gap: 0.9rem;
    }

    .hero__right-letters {
        gap: 1.1rem;
    }

    .hero__bottom-row {
        gap: 1.1rem;
    }

    .hero__letter--v {
        width: 11.4rem;
        margin-top: 3.2rem;
    }

    .hero__letter--s {
        width: 12.3rem;
        height: 30.2rem;
        margin-top: 3.2rem;
    }

    .hero__letter--yo {
        width: 10rem;
    }

    .hero__letter--i {
        width: 10rem;
        height: 8.3rem;
    }

    .hero__letter--r {
        width: 10.1rem;
        height: 9.5rem;
    }

    .hero__letter--a {
        width: 12.1rem;
        height: 9.55rem;
    }

    .hero__letter--z {
        width: 11.2rem;
        height: 9.55rem;
        margin-left: -0.35rem;
    }

    .hero__letter--u {
        width: 11.2rem;
        height: 9.55rem;
    }

    .hero__text {
        width: 12rem;
        font-size: 1.05rem;
        line-height: 1.15;
    }

    .hero__hand {
        top: 1rem;
        right: -17rem;
        width: 41rem;
    }

    .new-art {
        margin-bottom: 8.5rem;
    }

    .new-art__top {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .new-art__title {
        font-size: 2.35rem;
    }

    .new-art__all {
        width: 19rem;
        padding: 0.95rem 0;
    }

    .new-art__all-text {
        font-size: 1.125rem;
    }

    .new-art__grid {
        gap: 0.75rem;
    }

    .new-art__info {
        padding: 0.9rem 1rem 1rem;
    }

    .new-art__info-top {
        gap: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .new-art__name {
        font-size: 1.08rem;
    }

    .new-art__price {
        font-size: 1.2rem;
    }

    .new-art__arrow {
        width: 2.4rem;
    }

    .new-art__card:hover {
        flex: 1.22 1 0;
    }

    .new-art__grid:hover .new-art__card:not(:hover) {
        flex: 0.9 1 0;
    }

    .order-art {
        height: 49rem;
        padding-top: 9rem;
    }

    .order-art__container {
        max-width: 78rem;
    }

    .order-art__layout {
        height: 38rem;
        grid-template-columns: 27rem 1fr;
        gap: 3rem;
    }

    .order-art__order-badge {
        width: 27rem;
        left: -9rem;
        top: -10rem;
    }

    .order-art__order-badge-text {
        font-size: 1.3rem;
    }

    .order-art__form {
        max-width: 28rem;
        margin: 0 0 2.5rem;
        gap: 0.85rem;
    }

    .order-art__field {
        height: 2.85rem;
    }

    .order-art__field-bg {
        width: 28rem;
    }

    .order-art__field input,
    .order-art__field select,
    .order-art__custom-select-trigger {
        padding: 0 1rem 0 2.2rem;
        font-size: 0.82rem;
        padding-top: 0.2rem;
    }

    .order-art__field input::placeholder {
        font-size: 1rem;
    }

    .order-art__select-arrow {
        right: 5rem;
        width: 0.78rem;
        height: 0.78rem;
    }

    .order-art__submit {
        width: 18rem;
        padding: 1rem 0;
        margin-top: 0.6rem;
        margin-left: 0.6rem;
    }

    .order-art__submit-text {
        padding-right: 1.5rem;
        font-size: 1.08rem;
    }

    .order-art__right {
        min-height: 38rem;
    }

    .order-art__title {
        top: 3.4rem;
    }

    .order-art__title-bottom {
        margin-top: -0.5rem;
        margin-left: 0.2rem;
    }

    .order-art__letter--s {
        left: -2.5rem;
        top: 0;
        width: 5.8rem;
        height: 5rem;
    }

    .order-art__letter--v {
        left: 4.8rem;
        top: 0;
        width: 5.65rem;
        height: 5rem;
        margin-left: -0.55rem;
    }

    .order-art__letter--o {
        left: 10.7rem;
        top: 0;
        width: 6rem;
        height: 5rem;
        margin-left: -0.55rem;
    }

    .order-art__letter--j {
        left: 17.2rem;
        top: -1.6rem;
        width: 5.9rem;
        height: 5rem;
        margin-left: -0.45rem;
    }

    .order-art__letter--a {
        left: -8.5rem;
        top: 5.7rem;
        width: 6.2rem;
        height: 5rem;
    }

    .order-art__letter--r {
        left: -1.5rem;
        top: 5.7rem;
        width: 5.4rem;
        height: 5rem;
        margin-left: -0.5rem;
    }

    .order-art__letter--t {
        left: 5rem;
        top: 5.7rem;
        width: 5.7rem;
        height: 5rem;
        margin-left: -0.5rem;
    }

    .order-art__photo-wrap {
        width: 37rem;
        height: 37rem;
    }

    .order-art__star {
        right: -6rem;
        bottom: -5rem;
        width: 13rem;
        height: 14.7rem;
    }

    .about-brand {
        height: 43rem;
        padding: 8.5rem 0 0;
        margin-bottom: 9rem;
    }

    .about-brand__inner {
        width: 100%;
    }

    .about-brand__label {
        top: 0.4rem;
        font-size: 1.3rem;
        padding: 0 0 0 3.75rem;
    }

    .about-brand__scene {
        min-height: 35rem;
    }

    .about-brand__image {
        top: 1.7rem;
        left: 39%;
        transform: translateX(-39%);
        width: 31rem;
        height: 31rem;
    }

    .about-brand__title {
        top: -0.7rem;
        left: 18rem;
        width: 54rem;
        height: auto;
    }

    .about-brand__content {
        width: 18rem;
        margin-bottom: 2rem;
    }

    .about-brand__text {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        padding-left: 0.8rem;
    }

    .about-brand__btn {
        width: 18rem;
        padding: 1rem 0;
    }

    .about-brand__btn-text {
        font-size: 1.08rem;
    }

    .about-brand__star--1 {
        left: 17rem;
        top: 18rem;
        width: 2.2rem;
        height: 1.95rem;
    }

    .about-brand__star--2 {
        left: 12rem;
        top: 20.7rem;
        width: 4.2rem;
        height: 3.6rem;
    }

    .about-brand__star--3 {
        left: 14.8rem;
        bottom: -1.2rem;
        width: 9rem;
        height: 8.75rem;
    }

    .masterclass {
        height: 43rem;
    }

    .masterclass__container {
        padding-top: 4rem;
    }

    .masterclass__content {
        max-width: 38rem;
        height: 32rem;
    }

    .masterclass__title img {
        width: 38rem;
        margin-bottom: 2rem;
    }

    .masterclass__dates {
        font-size: 2rem;
        line-height: 1.35;
        gap: 1.4rem;
        margin-bottom: 1.4rem;
    }

    .masterclass__btn {
        width: 17.5rem;
        padding: 1rem 0;
    }

    .masterclass__btn-text {
        font-size: 1.08rem;
    }

    .footer {
        padding: 2.5rem 3.75rem;
    }

    .footer__left {
        font-size: 1.05rem;
    }

    .footer__right {
        gap: 0.25rem;
    }

    .footer__icon {
        width: 1.7rem;
        height: 1.7rem;
    }

    .footer__icon img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 1rem 0 1rem 1.25rem;
        z-index: 1100;
    }

    .header__inner {
        justify-content: flex-start;
        gap: 0;
    }

    .header__burger {
        display: flex;
        z-index: 1102;
    }

    .logo {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 5rem 1.5rem 2rem;
        background: var(--color-black);
        z-index: 1101;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 50px;
        padding: 0;
    }

    .nav__list li {
        width: 100%;
    }

    .nav__list li a {
        font-size: 1.125rem;
        color: var(--color-white);
        font-weight: 400;
    }

    .nav__home-link {
        display: inline-flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 1.125rem;
        line-height: 1.2;
        color: var(--color-white);
        font-weight: 400;
    }

    .nav__socials {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: auto;
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    .hero {
        padding-top: 0;
        min-height: auto;
        margin-bottom: 10.625rem;
        margin-top: 4.5rem;
    }

    .hero__container {
        max-width: 100%;
    }

    .hero__content {
        padding: 0 1rem;
    }

    .hero__layout {
        display: block;
        min-height: auto;
        position: relative;
    }

    .hero__left {
        padding: 0;
    }

    .hero__right {
        display: none;
    }

    .hero__art {
        min-height: 41rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        position: relative;
    }

    .hero__art-mobile {
        display: block;
        position: relative;
        z-index: 3;
        width: 100%;
    }

    .hero__art-mobile img {
        max-width: 22rem;
        height: auto;
        display: block;
    }

    .hero__letter,
    .hero__right-letters {
        display: none;
    }

    .hero__hand {
        position: absolute;
        top: 10.5rem;
        right: -12rem;
        width: 100%;
        max-width: 32rem;
        margin: 0;
        z-index: 2;
    }

    .hero__hand img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero__text {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 0;
        font-size: 1rem;
        line-height: 1.15;
        z-index: 3;
    }

    .hero__text p {
        margin: 0;
    }

    .new-art {
        margin-bottom: 30px;
        overflow: hidden;
    }

    .new-art__top {
        display: block;
        padding: 0 1rem;
        margin-bottom: 45px;
    }

    .new-art__title {
        font-size: 1.5625rem;
        line-height: 1;
    }

    .new-art__top .new-art__all {
        display: none;
    }

    .new-art__mobile-bottom {
        display: block;
        padding: 0 1rem 0;
    }

    .new-art__all--mobile {
        display: inline-flex;
        width: 100%;
        max-width: none;
    }

    .js-new-art-slider {
        display: flex !important;
        gap: 0.5rem;
        width: 100%;
        height: auto;
        max-height: none;
        margin: 0;
        margin-bottom: 2.8125rem;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1rem;
        scroll-padding-right: 1rem;
        overscroll-behavior-y: auto;
        touch-action: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .js-new-art-slider::-webkit-scrollbar {
        display: none;
    }

    .js-new-art-slider .new-art__card {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
        height: auto;
        min-height: 448px;
        scroll-snap-align: start;
        transform: none !important;
        transition: none !important;
    }

    .js-new-art-slider .new-art__card:hover,
    .js-new-art-slider .new-art__card:active,
    .js-new-art-slider .new-art__card:focus-visible {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
    }

    .js-new-art-slider .new-art__card-link {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100%;
    }

    .js-new-art-slider .new-art__image {
        flex: 0 0 251px;
        height: 251px;
        aspect-ratio: auto;
    }

    .js-new-art-slider .new-art__details {
        flex: 0 0 auto;
        opacity: 1 !important;
        max-height: none !important;
        visibility: visible !important;
        overflow: visible !important;
        transform: none !important;
    }

    .js-new-art-slider .new-art__info {
        padding: 0.875rem 1rem 1rem;
    }

    .js-new-art-slider .new-art__info-top {
        margin-bottom: 4px;
        gap: 0.75rem;
    }

    .js-new-art-slider .new-art__name {
        margin: 0;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        font-family: var(--font-rubik);
        text-transform: uppercase;
    }

    .js-new-art-slider .new-art__price {
        font-family: var(--font-rubik);
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
    }

    .js-new-art-slider .new-art__arrow {
        width: 3.5rem;
    }

    .js-new-art-slider .new-art__drip {
        margin-top: -1px;
        line-height: 0;
        position: relative;
        z-index: 3;
    }

    .new-art__slick-arrow,
    .js-new-art-slider .slick-list,
    .js-new-art-slider .slick-track,
    .js-new-art-slider .slick-slide {
        all: unset;
    }

    .order-art {
        height: auto;
        padding-top: 10.625rem;
        overflow: visible;
    }

    .order-art__container {
        max-width: 100%;
        padding: 0;
    }

    .order-art__layout {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
        grid-template-columns: none;
        gap: 1.5rem;
        padding: 0;
    }

    .order-art__right {
        position: relative;
        min-height: auto;
    }

    .order-art__title {
        display: none;
    }

    .order-art__title-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-width: 18rem;
        max-width: 36.25rem;
        padding: 1.5625rem 1.25rem 0;
        z-index: 4;
    }

    .order-art__photo-wrap {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: auto;
        min-height: 24.375rem;
        z-index: 2;
    }

    .order-art__photo {
        width: 100%;
    }

    .order-art__photo img {
        width: 100%;
        height: auto;
        display: block;
    }

    .order-art__star {
        position: absolute;
        left: -1rem;
        bottom: -4rem;
        right: auto;
        width: 8.875rem;
        height: auto;
        z-index: 5;
    }

    .order-art__left {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0 1.25rem;
    }

    .order-art__order-badge {
        position: relative;
        left: -1.5rem;
        top: auto;
        width: 100%;
        max-width: 21.8125rem;
        margin: -5rem 0 1.5rem;
        z-index: 4;
    }

    .order-art__order-badge-text {
        font-size: 1.5625rem;
        top: 48%;
        right: 11%;
    }

    .order-art__form {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        gap: 0.2rem;
    }

    .order-art__field {
        height: 3.2rem;
    }

    .order-art__field-bg {
        width: 100%;
        height: 100%;
    }

    .order-art__field input,
    .order-art__field select,
    .order-art__custom-select-trigger {
        padding: 0 1rem;
        font-size: 1rem;
        padding-top: 0.15rem;
    }

    .order-art__field input::placeholder {
        font-size: 1rem;
    }

    .order-art__field select,
    .order-art__custom-select-trigger {
        padding-right: 2.5rem;
        font-size: 1rem;
    }

    .order-art__select-arrow {
        right: 3rem;
        width: 0.85rem;
        height: 0.85rem;
    }

    .order-art__submit {
        width: 100%;
        margin-top: 1.675rem;
        padding: 1rem 0;
    }

    .order-art__submit-bg {
        left: -0.8rem;
        width: 100%;
    }

    .new-art__all-bg {
        left: -0.8rem;
        width: 100%;
    }

    .order-art__submit-text {
        font-size: 1.125rem;
        padding-right: 1rem;
        padding-left: 0.5rem;
    }

    .new-art__all-text {
        font-size: 1.125rem;
        padding-right: 1rem;
        padding-left: 0.5rem;
    }

    .about-brand {
        background: var(--color-black);
        color: var(--color-white);
        height: auto;
        padding: 0;
        position: relative;
        margin-top: 6.25rem;
        margin-bottom: 6.25rem;
    }

    .about-brand .container {
        padding: 0;
        max-width: 100%;
        height: 100%;
    }

    .about-brand__inner {
        position: relative;
    }

    .about-brand__scene {
        position: relative;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .about-brand__title {
        display: none;
    }

    .about-brand__mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        min-width: 21.875rem;
        width: 100%;
        padding: 1.5625rem 1.125rem 0;
        order: 1;
        z-index: 5;
    }

    .about-brand__image {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        max-width: 100%;
        z-index: 2;
        order: 0;
        margin-bottom: 3.75rem;
    }

    .about-brand__label {
        display: none;
    }

    .about-brand__label-mobile {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        z-index: 4;
        color: var(--color-blue-brand);
        font-size: 1.5625rem;
        line-height: 1;
        font-family: var(--font-dela);
        text-transform: uppercase;
        z-index: 5;
    }

    .about-brand__content {
        display: flex;
        flex-direction: column;
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        z-index: 4;
        margin: 0;
        padding: 0 1rem;
        gap: 0.625rem;
        order: 3;
    }

    .about-brand__text {
        margin-bottom: 0;
        color: var(--color-white);
        font-size: 1.125rem;
        line-height: 1.25;
        padding-left: 0;
        font-weight: 300;
    }

    .about-brand__text p {
        margin: 0;
    }

    .about-brand__btn {
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 1rem 0;
        margin-top: 1.8185rem;
        margin-right: 2rem;
        text-decoration: none;
    }

    .about-brand__btn-bg {
        display: block;
        width: 100%;
        height: auto;
    }

    .about-brand__btn-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.125rem;
        line-height: 1;
        color: var(--color-white);
        white-space: nowrap;
    }

    .about-brand__star {
        position: absolute;
        z-index: 3;
    }

    .about-brand__star--1 {
        left: auto;
        right: 1rem;
        top: 22rem;
        width: 2.875rem;
    }

    .about-brand__star--2 {
        left: auto;
        right: 3rem;
        top: 25rem;
        width: 4.875rem;
    }

    .about-brand__star--3 {
        left: 1rem;
        top: 22rem;
        width: 7.5625rem;
    }

    .about-brand__label {
        font-size: 1.9rem;
        padding-top: 1.25rem;
    }

    .about-brand__text {
        font-size: 1.05rem;
        line-height: 1.22;
    }

    .masterclass {
        position: relative;
        height: 47.5rem;
        overflow: hidden;
        color: var(--color-white);
    }

    .masterclass__bg {
        display: none;
    }

    .masterclass__bg-mobile {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        z-index: 1;
        overflow: hidden;
    }

    .masterclass__bg-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 48% 58%;
        transform-origin: 45% 58%;
    }

    .masterclass__container {
        position: relative;
        z-index: 2;
        padding: 1.5625rem 1.25rem 0;
        height: 100%;
    }

    .masterclass__content {
        max-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .masterclass__title {
        width: 100%;
        margin-bottom: 2.875rem;
    }

    .masterclass__title img {
        width: 100%;
        height: auto;
        margin-bottom: 0;
    }

    .masterclass__dates {
        font-size: 1.5625rem;
        text-transform: uppercase;
        font-family: var(--font-dela);
        line-height: 1.15;
        margin-bottom: 0;
    }

    .masterclass__dates p {
        margin: 0;
    }

    .masterclass__btn {
        display: none;
    }

    .nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nav__socials {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: auto;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer__container {
        justify-content: center;
        text-align: center;
    }

    .footer__left {
        width: 100%;
        text-align: center;
    }

    .footer__right {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    .site-header {
        padding-left: 0.875rem;
    }
    .hero {
        margin-top: 4.125rem;
        margin-bottom: 8.75rem;
    }
    .hero__content {
        padding: 0 0.875rem;
    }
    .hero__art {
        min-height: 42rem;
    }
    .hero__art-mobile img {
        width: 100%;
    }
    .hero__hand {
        top: 12rem;
        right: -10.5rem;
        max-width: 27rem;
    }
    .hero__text {
        font-size: 0.93rem;
    }
    .new-art__top {
        padding: 0 0.875rem;
        margin-bottom: 45px;
    }
    .new-art__mobile-bottom {
        padding: 2.8125rem 0.875rem 0;
    }
    .js-new-art-slider {
        gap: 0.5rem;
        width: 100%;
        margin: 0;
        padding-left: 0.875rem;
        padding-right: 0.875rem;
        overflow-y: hidden;
    }
    .js-new-art-slider .new-art__card {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
        height: auto;
        min-height: 448px;
    }
    .js-new-art-slider .new-art__card:hover,
    .js-new-art-slider .new-art__card:active,
    .js-new-art-slider .new-art__card:focus-visible {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
    }
    .js-new-art-slider .new-art__card-link {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100%;
    }
    .js-new-art-slider .new-art__image {
        flex: 0 0 251px;
        height: 251px;
        aspect-ratio: auto;
    }
    .js-new-art-slider .new-art__details {
        flex: 0 0 197px;
        opacity: 1 !important;
        max-height: none !important;
        visibility: visible !important;
        overflow: visible !important;
        transform: none !important;
    }
    .js-new-art-slider .new-art__info {
        padding: 0.875rem 1rem 1rem;
    }
    .js-new-art-slider .new-art__name {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        font-family: var(--font-rubik);
    }
    .js-new-art-slider .new-art__price {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
    }
    .js-new-art-slider .new-art__arrow {
        width: 3.5rem;
    }

    .order-art {
        padding-top: 8.75rem;
    }

    .order-art__title-mobile {
        min-width: 0;
        padding: 1rem 0.875rem 0;
    }

    .order-art__photo-wrap {
        min-height: 21.5rem;
    }

    .order-art__star {
        width: 7.5rem;
        bottom: -3.2rem;
    }

    .order-art__left {
        padding: 0 0.875rem;
    }

    .order-art__order-badge {
        left: 0;
        margin: -4.35rem 0 1.25rem;
        max-width: 100%;
    }

    .order-art__submit {
        margin-left: 0;
    }

    .about-brand {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .about-brand__mobile {
        min-width: 0;
        padding: 1rem 0.875rem 0;
    }

    .about-brand__content {
        padding: 0 0.875rem;
    }

    .about-brand__btn {
        margin-left: 0;
    }

    .about-brand__star--1 {
        right: 0.75rem;
        top: 19.5rem;
    }

    .about-brand__star--2 {
        right: 2.25rem;
        top: 22rem;
    }

    .about-brand__star--3 {
        left: 0.75rem;
        top: 19.5rem;
    }

    .masterclass {
        height: 42rem;
    }

    .masterclass__container {
        padding: 1rem 0.875rem 0;
    }

    .masterclass__dates {
        font-size: 1.3rem;
    }

    .footer {
        padding: 1.5rem 0.875rem;
    }
}

@media (max-width: 390px) {
    .hero__art {
        min-height: 36rem;
    }
    .hero__art-mobile img {
        width: 100%;
    }
    .hero__hand {
        top: 11rem;
        right: -9.4rem;
        max-width: 24rem;
    }
    .hero__text {
        font-size: 0.87rem;
        line-height: 1.12;
    }
    .new-art__title {
        font-size: 1.35rem;
    }
    .js-new-art-slider {
        gap: 0.5rem;
        width: 100%;
        height: auto;
        max-height: none;
        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-y: visible;
        scroll-padding-left: 1rem;
        scroll-padding-right: 1rem;
        overscroll-behavior-y: auto;
        touch-action: auto;
    }
    .js-new-art-slider .new-art__card {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
        height: auto;
        min-height: 448px;
    }
    .js-new-art-slider .new-art__card:hover,
    .js-new-art-slider .new-art__card:active,
    .js-new-art-slider .new-art__card:focus-visible {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
    }

    .js-new-art-slider .new-art__card-link {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100%;
    }

    .js-new-art-slider .new-art__image {
        flex: 0 0 251px;
        height: 251px;
        aspect-ratio: auto;
    }

    .js-new-art-slider .new-art__details {
        flex: 0 0 auto;
    }
    .js-new-art-slider .new-art__info {
        padding: 0.875rem 1rem 1rem;
    }
    .js-new-art-slider .new-art__name {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        font-family: var(--font-rubik);
    }
    .js-new-art-slider .new-art__price {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
    }
    .js-new-art-slider .new-art__arrow {
        width: 3.5rem;
    }

    .order-art__title-mobile {
        padding: 0.85rem 0.75rem 0;
    }

    .order-art__order-badge-text {
        font-size: 1.3rem;
        top: 50%;
        right: 14%;
    }

    .order-art__field {
        height: 3rem;
    }

    .order-art__field input,
    .order-art__field select,
    .order-art__custom-select-trigger,
    .order-art__field input::placeholder {
        font-size: 1rem;
    }

    .order-art__field select,
    .order-art__custom-select-trigger,
    .order-art__field select option,
    .order-art__custom-select-option {
        font-size: 1rem;
    }

    .about-brand__label-mobile {
        font-size: 1.35rem;
    }

    .about-brand__text {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .about-brand__star--1 {
        top: 18rem;
        width: 2.3rem;
    }

    .about-brand__star--2 {
        top: 20rem;
        width: 4.2rem;
    }

    .about-brand__star--3 {
        top: 18rem;
        width: 6.25rem;
    }

    .masterclass {
        height: 38.5rem;
    }

    .masterclass__dates {
        font-size: 1.12rem;
    }
}

@media (max-width: 360px) {
    .hero__art {
        min-height: 30rem;
    }
    .hero__hand {
        right: -8.9rem;
        max-width: 22.5rem;
    }
    .new-art__title {
        font-size: 1.25rem;
    }
    .order-art__order-badge-text {
        font-size: 1.18rem;
    }
    .about-brand__text {
        font-size: 0.9rem;
    }
}

.order-art__privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-top: 0.5rem;
    margin-left: 2rem;
    max-width: 31rem;
    cursor: pointer;
}

.order-art__privacy-checkbox {
    margin-top: 0.125rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--color-blue-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.order-art__privacy-text {
    font-size: 16px;
    line-height: 1.35;
    color: var(--overlay-white-92);
}

.order-art__privacy-link {
    color: var(--color-blue-primary);
    text-decoration: underline;
}

.order-art__privacy-link:hover,
.order-art__privacy-link:focus-visible {
    color: var(--color-blue-hover);
}

@media (max-width: 1440px) {
    .order-art__privacy {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .order-art__privacy {
        margin-left: 0.5rem;
        margin-top: 0.875rem;
        max-width: 100%;
    }

    .order-art__privacy-text {
        font-size: 14px;
    }
}

/* CONTACTS PAGE */

.contacts-page {
    min-height: calc(100vh - 8rem);
    background: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
}

.contacts-hero {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding-bottom: 3.75rem;
}

.contacts-title__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 11.875rem;
    margin-bottom: 6.25rem;
}

.contacts-title-img {
    display: block;
    width: 70.75rem;
    max-width: 100%;
    height: auto;
    margin: 0;
}

.cursor-img {
    width: 14rem;
    height: 8.5rem;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
    will-change: transform;
}

.white-star {
    position: absolute;
    top: -3.125rem;
    right: 0;
    width: 8.0625rem;
    height: 9.375rem;
    z-index: 10;
    transition: transform 0.3s ease;
    will-change: transform;
}

.cross-img {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 32.0625rem;
    height: 29.8125rem;
    z-index: 10;
    transition: transform 0.3s ease;
    will-change: transform;
}

.star-img {
    position: absolute;
    bottom: -20%;
    right: -25%;
    width: 14rem;
    height: 13.75rem;
    z-index: 10;
    transition: transform 0.3s ease;
    will-change: transform;
}

.cursor-img:hover,
.white-star:hover,
.cross-img:hover,
.star-img:hover {
    transform: translateY(-0.375rem) rotate(-2deg) scale(1.03);
    cursor: pointer;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 27rem 27rem;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 6.25rem;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    padding-top: 3.75rem;
}

.contacts-label,
.card-label {
    margin: 0 0 4rem;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 11;
}

.contacts-data {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contacts-data a {
    color: var(--color-white);
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-dela);
    z-index: 11;
}

.contacts-card {
    position: relative;
    padding-top: 3.75rem;
    padding-left: 1.875rem;
    height: 29.1875rem;
    z-index: 10;
}

.contacts-card--blue {
    background: var(--color-blue-link);
    color: var(--color-white);
}

.contacts-card--white {
    background: var(--color-white);
    color: var(--color-black);
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.social-item,
.work-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.social-item span,
.work-link span {
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-dela);
}

.social-item small,
.work-link small {
    margin-top: 0.2rem;
    font-size: 20px;
    line-height: 1.2;
}

.work-link {
    margin-top: 0.625rem;
}

@media (max-width: 1440px) {
    .contacts-hero {
        max-width: 78rem;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }

    .contacts-title-img {
        width: 100%;
        max-width: 64.9375rem;
        margin-bottom: 3.75rem;
    }
    
    .cursor-img {
        width: 8.5rem;
    }

    .contacts-title__container {
        margin-bottom: 6.25rem;
    }

    .cross-img { width: 22rem; left: -10rem; }
    .star-img { width: 9rem; right: -3rem; }
    .white-star { width: 5.5rem; top: -2rem; right: 0.5rem; }

    .contacts-content {
        min-height: 26.6875rem;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.25rem;
    }

    .contacts-info, 
    .contacts-card {
        height: auto;
        min-height: 26.6875rem;
    }

    .contacts-card {
        padding: 3.75rem 1.875rem 0;
    }

    .contacts-label,
    .card-label {
        margin-bottom: 3.5rem;
        font-size: 1.25rem;
    }

    .contacts-data a {
        font-size: 1.5rem;
    }
    
    .social-list {
        gap: 0.9375rem;
    }

    .social-item span,
    .work-link span {
        font-size: 1.5rem;
    }

    .social-item small,
    .work-link small {
        font-size: 1.25rem;
    }
}

/* Планшет ~1024px */
@media (max-width: 1024px) {
    .contacts-title-img { width: 35rem; }
    .cursor-img { width: 6.5rem; }
    
    .cross-img { width: 17rem; left: -2rem; bottom: -1rem; }
    .star-img { width: 7rem; right: 1rem; }
    
    .contacts-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contacts-info { 
        grid-column: span 2; 
        padding-top: 0; 
        min-height: auto; 
    }
}

/* планшет / мобилка */
@media (max-width: 767px) {
    .contacts-page {
        min-height: auto;
    }

    .contacts-hero {
        max-width: 100%;
        padding: 0 1.5rem 0rem;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }

    .contacts-title__container {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding-top: 100px;
        margin-bottom: 50px;
    }

    .contacts-title-img {
        width: 100%;
        max-width: 28rem;
        margin-bottom: 0;
    }
    
    .cursor-img {
        position: absolute;
        top: 14rem;
        right: -5%;
        width: 200px;
        transform: rotate(30deg);  
    }

    .cross-img { 
        width: 386px; 
        height: 359px;
        left: -12rem; 
        top: 17rem; 
    }
    .star-img { 
        width: 107px; 
        right: 0; 
        top: -3rem; 
    }
    .white-star { 
        width: 129px; 
        height: 150px;
        top: -4rem; 
        right: -2rem; 
    }

    .contacts-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .contacts-info {
        min-height: auto;
    }

    .contacts-label {
        font-size: 20px;
        margin-bottom: 70px;
    }

    .contacts-data {
        margin-bottom: 150px;
    }

    .contacts-data a {
        font-size: 20px;
        word-break: break-word;
    }

    .contacts-card {
        min-height: auto;
        padding: 40px 25px 30px 25px;
        max-height: max-content;
        box-sizing: border-box;
        min-height: 350px;
    }

    .card-label {
        margin-bottom: 70px;
        font-size: 20px;
    }

    .social-item span,
    .work-link span {
        font-size: 20px;
    }

    .social-item small,
    .work-link small {
        font-size: 20px;
        word-break: break-all;
    }

    .work-link {
        margin-top: 0;
    }
}

@media (max-width: 460px) {
    .cursor-img {
        position: absolute;
        top: 11rem;
        right: -5%;
        width: 160px;
        transform: rotate(30deg);  
    }
}
@media (max-width: 390px) {
    .cursor-img {
        position: absolute;
        top: 10rem;
        right: -5%;
        width: 134px;
        transform: rotate(30deg);  
    }
    .social-item span,
    .work-link span {
        font-size: 18px;
    }
    .social-item small,
    .work-link small {
        font-size: 16px;
    }
    .white-star { 
        width: 129px; 
        height: 150px;
        top: -4rem; 
        right: -3.5rem; 
    }
}

/* BRAND PAGE */

.brand-page {
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    font-family: var(--font-rubik);
    width: 100%;
    position: relative;
}

.brand-container {
    width: min(90rem, calc(100% - 2.5rem));
    position: relative;
    margin: 0 auto 200px;
}

.brand-hero {
    position: relative;
    padding: 150px 0 0;
}

.brand-hero__logo {
    width: 953px;
    height: 136px;
    display: block;
    margin-bottom: 80px;
}

.brand-hero__content {
    display: grid;
    grid-template-columns: 467px 466px 1fr;
    align-items: end;
    gap: 20px;
}

.brand-hero__text {
    width: 467px;
    font-size: 20px;
    line-height: 1.25;
    align-self: start;
}

.brand-hero__image img {
    width: 100%;
    height: 466px;
    display: block;
}

.brand-hero__quote {
    width: 350px;
    color: var(--color-blue);
    font-weight: 900;
    font-size: 25px;
    font-family: var(--font-dela);
    line-height: 1.1;
    text-transform: uppercase;
}

.paint {
    position: absolute;
    bottom: -120px;
    right: -150px;
    width: 345px;
    height: 321px;
    pointer-events: none;
    z-index: 1;
}

.paint--top {
    position: absolute;
    width: 536px;
    height: 552px;
    right: -50px;
    top: 0;
}

.paint--red {
    position: absolute;
    width: 462px;
    height: 406px;
    left: 0;
    bottom: -25%;
}

.brand-about {
    padding: 0;
}

.brand-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin: 200px auto;
}

.brand-about h1,
.brand-achievements h2 {
    font-size: 45px;
    line-height: 1;
    margin: 0;
    font-weight: 700;
    font-family: var(--font-dela);
    text-transform: uppercase;
}

.brand-about__content {
    height: 710px;
    display: flex;
    flex-direction: column;
}

.brand-about__content p {
    margin: auto 0 0;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.25;
}

.brand-about__content p + p {
    margin-top: 0.75rem;
}

.brand-about__photo img {
    width: 710px;
    height: 710px;
    display: block;
    filter: grayscale(1);
}

.brand-achievements {
    padding: 0;
}

.brand-achievements h2 {
    margin-bottom: 70px;
}

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

.achievements-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    cursor: grab;
}

.achievements-track:active {
    cursor: grabbing;
}

.achievement-card {
    flex: 0 0 calc((100% - 48px) / 3);
}

.achievement-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.achievements-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.achievements-prev,
.achievements-next {
    background: transparent;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: var(--color-white);
}

.achievements-prev:hover,
.achievements-next:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.achievements-prev:disabled,
.achievements-next:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.achievement-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.achievement-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.achievement-card__details {
    position: relative;
    overflow: hidden;
}

.achievement-card__info {
    background: var(--color-white);
    color: var(--color-black-text);
    padding: 1rem 1.25rem 1.25rem;
}

.achievement-card__info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.achievement-card__name {
    margin: 0;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 700;
    font-family: Dela Gothic One, serif;
    text-transform: uppercase;
}

.achievement-card__date {
    font-family: var(--font-rubik);
    font-size: 20px;
    line-height: 1;
}

.achievement-card__arrow {
    flex-shrink: 0;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-card__arrow img {
    display: block;
    width: 100%;
    height: auto;
}

.achievement-card__drip {
    width: 100%;
    line-height: 0;
    margin-top: -0.4rem;
}

.achievement-card__drip img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 1440px) {
    .brand-container {
        width: min(90rem, calc(100% - 120px));
        position: relative;
        margin: 0 auto 200px;
    }

    .brand-hero {
        padding: 100px 0 0;
    }

    .brand-hero__logo {
        width: 762px;
        height: 108px;
        display: block;
        margin-bottom: 80px;
    }

    .brand-hero__content {
        display: grid;
        grid-template-columns: 427px 426px 1fr;
        align-items: end;
        gap: 20px;
    }

    .brand-hero__text {
        width: 427px;
        font-size: 20px;
        line-height: 1.25;
        align-self: start;
    }

    .brand-hero__image img {
        width: 100%;
        height: 426px;
        display: block;
    }

    .brand-hero__quote {
        width: 350px;
        color: var(--color-blue);
        font-weight: 900;
        font-size: 25px;
        font-family: var(--font-dela);
        line-height: 1.1;
        text-transform: uppercase;
    }

    .paint {
        position: absolute;
        bottom: -120px;
        right: -150px;
        width: 345px;
        height: 321px;
        pointer-events: none;
        z-index: 1;
    }

    .paint--top {
        position: absolute;
        width: 436px;
        height: 449px;
        right: -5%;
        top: 0;
    }

    .paint--red {
        position: absolute;
        width: 280px;
        height: 261px;
        left: 0;
        bottom: 0;
    }

    .brand-about {
        padding: 0;
    }

    .brand-about__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
        margin: 200px auto;
    }

    .brand-about h1,
    .brand-achievements h2 {
        font-size: 45px;
        line-height: 1;
        margin: 0;
        font-weight: 700;
        font-family: var(--font-dela);
        text-transform: uppercase;
    }

    .brand-about__content {
        height: 650px;
        display: flex;
        flex-direction: column;
    }

    .brand-about__content p {
        margin: auto 0 0;
        max-width: 100%;
        font-size: 20px;
        line-height: 1.25;
    }

    .brand-about__content p + p {
        margin-top: 0.75rem;
    }

    .brand-about__photo img {
        width: 650px;
        height: 650px;
        display: block;
        filter: grayscale(1);
    }

    .brand-achievements {
        padding: 0;
    }

    .brand-achievements h2 {
        margin-bottom: 70px;
    }

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

    .achievements-track {
        display: flex;
        gap: 24px;
        transition: transform 0.4s ease;
        cursor: grab;
    }

    .achievements-track:active {
        cursor: grabbing;
    }

    .achievement-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }

    .achievement-card-link {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .achievements-nav {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 30px;
    }

    .achievements-prev,
    .achievements-next {
        background: transparent;
        border: 1px solid var(--color-white);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 20px;
        color: var(--color-white);
    }

    .achievements-prev:hover,
    .achievements-next:hover {
        background: var(--color-white);
        color: var(--color-black);
    }

    .achievements-prev:disabled,
    .achievements-next:disabled {
        opacity: 0.3;
        pointer-events: none;
    }

    .achievement-card__image {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
    }

    .achievement-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .achievement-card__details {
        position: relative;
        overflow: hidden;
    }

    .achievement-card__info {
        background: var(--color-white);
        color: var(--color-black-text);
        padding: 1rem 1.25rem 1.25rem;
    }

    .achievement-card__info-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 4px;
    }

    .achievement-card__name {
        margin: 0;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        font-family: var(--font-rubik);
        text-transform: uppercase;
    }

    .achievement-card__date {
        font-family: var(--font-rubik);
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
    }

    .achievement-card__arrow {
        flex-shrink: 0;
        width: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .achievement-card__arrow img {
        display: block;
        width: 100%;
        height: auto;
    }

    .achievement-card__drip {
        width: 100%;
        line-height: 0;
        margin-top: -0.4rem;
    }

    .achievement-card__drip img {
        display: block;
        width: 100%;
        height: auto;
    }
}   
@media (max-width: 1024px) {
    .brand-hero__content {
        grid-template-columns: 1fr 1fr;
    }
    .brand-hero__text {
        grid-column: 1 / -1;
    }
    .brand-about__inner {
        grid-template-columns: 1fr;
    }
    .brand-about__content {
        height: auto;
    }
    .brand-about__content p {
        margin: 0;
    }
    .brand-about__content p:first-of-type {
        margin-top: 24px;
    }
}

@media (max-width: 992px) {
    .achievement-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 767px) {
    .brand-hero {
        padding: 80px 0 0;
    }
    .brand-hero__logo {
        margin-bottom: 40px;
    }
    .brand-hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .brand-hero__image img {
        height: auto;
        aspect-ratio: 1/1;
    }
    .paint--top {
        width: 300px;
    }
    .paint--red {
        width: 200px;
        bottom: -80px;
        left: -60px;
        z-index: 1;
    }
    .paint--blue {
        width: 200px;
        right: -30px;
        bottom: -30px;
    }
    .brand-about {
        margin: 100px auto;
    }
    .brand-about h1, 
    .brand-achievements h2 {
        font-size: 28px; 
    }
    .brand-about__photo img {
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
        width: 100%;
    }
}

@media (max-width: 491px) {
    .brand-container {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .brand-hero__logo {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-bottom: 50px;
    }
    .paint--top {
        top: 29%;
        right: -25%;
    }
    .brand-hero__text {
        font-size: 18px;
        margin-bottom: 24px;
        width: 100%;
    }
    .brand-hero__quote {
        font-size: 18px;
        width: 100%;
        margin-top: 24px;
    }
    .brand-about__inner {
        margin: 50px auto;
        gap: 50px;
        display: flex;
        flex-direction: column;
    }
    .brand-achievements {
        margin-bottom: 100px;
    }
    .brand-about__content {
        display: contents;
    }
    .brand-about h1 {
        order: 1;
        margin-bottom: 0;
    }
    .brand-about__photo {
        order: 2;
    }
    .brand-about__content p {
        order: 3;
    }
    .brand-about__content p + p {
        margin-top: -30px; 
    }
    .paint--blue {
        order: 4;
    }
    .brand-hero__quote {
        margin-top: 0;
        font-size: 20px;
    }
    .brand-about h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }
    .brand-achievements h2 {
        font-size: 25px;
        margin-bottom: 50px;
    }
    .achievements-slider {
        width: calc(100% + 20px);
        margin-right: -20px;
    }
    .achievement-card {
        flex: 0 0 85%;
    }
    .paint--red {
        display: none;
    }
    .brand-about__content p:first-of-type {
        margin-top: 0;
        font-size: 18px;
    }
    .paint--blue {
        width: 157px;
        right: -60px;
        bottom: 15%;
    }
}

@media (max-width: 390px) {
    .brand-hero__logo {
        margin-bottom: 30px;
    }
    .brand-hero__text {
        font-size: 16px;
        width: 100%;
    }
    .brand-hero__quote {
        font-size: 18px;
    }
    .brand-about h1, 
    .brand-achievements h2 {
        font-size: 22px;
    }
    .brand-about__content p,
    .brand-about__content p:first-of-type {
        font-size: 16px;
    }
    .brand-about__inner {
        gap: 30px;
    }
    .brand-about__content p + p {
        margin-top: -15px; 
    }
    .paint--blue {
        width: 120px;
        right: -40px;
        bottom: 12%;
    }
}

@media (max-width: 360px) {
    .brand-hero__text {
        font-size: 15px;
    }
    .brand-hero__quote {
        font-size: 16px;
    }
    .brand-about h1, 
    .brand-achievements h2 {
        font-size: 20px;
    }
    .brand-about__content p,
    .brand-about__content p:first-of-type {
        font-size: 15px;
    }
    .brand-about__inner {
        margin: 30px auto;
        gap: 20px;
    }
}

/* CATALOG PAGE */

.catalog-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow: visible;
}

.paint-top_catalog {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 454px;
    height: 491px;
    pointer-events: none;
    z-index: 1;
}

.catalog {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding-bottom: 3.75rem;
    font-family: var(--font-rubik);
}

.catalog__container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.catalog-page .order-art {
    position: relative;
    min-height: 56.875rem;
    height: auto;
    padding-top: 12.5rem;
    padding-bottom: 8rem;
    overflow: visible;
}

.catalog-title-img {
    display: block;
    width: 1000px;
    max-width: 100%;
    height: 122px;
    margin: 0;
}

.catalog__title {
    margin: 0 0 34px;
    font-size: clamp(56px, 9vw, 112px);
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: var(--color-white);
}

.catalog__decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.catalog__decor--red {
    top: -28px;
    right: 70px;
    width: 80px;
    height: 80px;
    background: var(--color-red-alt);
    clip-path: polygon(
        50% 0%, 58% 35%, 95% 15%, 65% 45%,
        100% 50%, 65% 55%, 95% 85%, 58% 65%,
        50% 100%, 42% 65%, 5% 85%, 35% 55%,
        0% 50%, 35% 45%, 5% 15%, 42% 35%
    );
}

.catalog__decor--white {
    top: 80px;
    right: 210px;
    width: 38px;
    height: 38px;
    background: var(--color-white);
    clip-path: polygon(
        50% 0%, 58% 35%, 95% 15%, 65% 45%,
        100% 50%, 65% 55%, 95% 85%, 58% 65%,
        50% 100%, 42% 65%, 5% 85%, 35% 55%,
        0% 50%, 35% 45%, 5% 15%, 42% 35%
    );
}

.catalog__decor--blue {
    top: 110px;
    right: -55px;
    width: 170px;
    height: 170px;
    background: var(--color-blue-alt);
    clip-path: polygon(
        50% 0%, 58% 35%, 95% 15%, 65% 45%,
        100% 50%, 65% 55%, 95% 85%, 58% 65%,
        50% 100%, 42% 65%, 5% 85%, 35% 55%,
        0% 50%, 35% 45%, 5% 15%, 42% 35%
    );
}

.catalog__back {
    display: none;
    width: 100%;
    margin-bottom: 30px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-dela);
    border: none;
}

.catalog__back.is-visible {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.catalog__back span {
    display: inline-flex;
    align-items: center;
}

.catalog__back svg {
    display: block;
    width: 81px;
    height: 15px;
    transform: rotate(180deg);
    flex-shrink: 0;
}

.catalog__grid.is-category-open .catalog-card--category .catalog-card__button {
    display: none;
}

.catalog__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.catalog-card {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 210px;
    overflow: hidden;
}

.catalog-card--category {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.catalog-card--blue {
    background: var(--color-blue-card);
    color: var(--color-white);
}

.catalog-card--red {
    background: var(--color-red);
    color: var(--color-white);
}

.catalog-card--white {
    background: var(--color-gray-200);
    color: var(--color-red);
}

.catalog-card__top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.catalog-card__label {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}

.catalog-card__name {
    margin: 0;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-dela);
}

.catalog-card__bottom {
    width: 100%;
}

.catalog-card__price {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-dela);
}

.catalog-card__button {
    width: 100%;
    min-height: 55px;
    padding: 0 14px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-rubik);
}

.catalog-card__arrow {
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.catalog-card--blue .catalog-card__button {
    transition: all 0.3s ease;
}
.catalog-card--blue .catalog-card__button:hover {
    background: var(--color-white);
    color: var(--color-blue-card);
    border-color: var(--color-white);
}

.catalog-card--red .catalog-card__button {
    transition: all 0.3s ease;
}
.catalog-card--red .catalog-card__button:hover {
    background: var(--color-white);
    color: var(--color-red);
    border-color: var(--color-white);
}

.catalog-card--white .catalog-card__button {
    transition: all 0.3s ease;
}
.catalog-card--white .catalog-card__button:hover {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.catalog-card--product {
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-card--product:hover .catalog-card__image {
    transform: scale(1.05);
}

@media (max-width: 1440px) {
    .catalog {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
    .catalog__container {
        width: 100%;
        max-width: 1180px;
        padding: 0;
    }
    .paint-top_catalog {
        position: absolute;
        top: 100px;
        right: -100px;
        width: 454px;
        height: 491px;
        pointer-events: none;
        z-index: 1;
    }
    .catalog-title-img {
        width: 850px;
        height: auto;
        margin-bottom: 36px;
    }
    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .catalog-card {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }
    .catalog-card--category {
        padding: 32px;
    }
    .catalog-card__label {
        font-size: 17px;
    }
    .catalog-card__name,
    .catalog-card__price {
        font-size: 22px;
    }
    .catalog-card__price {
        margin-bottom: 16px;
    }
    .catalog-card__button {
        min-height: 48px;
        padding: 0 14px;
        font-size: 17px;
    }
    .catalog-card__arrow svg {
        width: 60px;
        height: auto;
    }
}

@media (max-width: 1100px) {
    .paint-top_catalog {
        top: 90px;
        width: 320px;
        max-width: 30vw;
    }
    .catalog {
        padding-left: 24px;
        padding-right: 24px;
    }
    .catalog__container {
        max-width: 100%;
    }
    .catalog-title-img {
        width: 700px;
        height: auto;
        margin-bottom: 30px;
    }
    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .catalog-card--category {
        padding: 22px;
    }
    .catalog-card__label {
        font-size: 14px;
    }
    .catalog-card__name,
    .catalog-card__price {
        font-size: 18px;
    }
    .catalog-card__price {
        margin-bottom: 12px;
    }
    .catalog-card__button {
        min-height: 40px;
        padding: 0 10px;
        font-size: 14px;
    }
    .catalog-card__arrow svg {
        width: 46px;
    }
    .catalog-page .order-art {
        padding-top: 8rem;
        padding-bottom: 7rem;
    }
}

@media (max-width: 900px) {
    .catalog {
        padding-left: 20px;
        padding-right: 20px;
    }
    .catalog-title-img {
        width: 620px;
        max-width: 100%;
        height: auto;
        margin-bottom: 28px;
    }
    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .catalog__grid:not(.is-category-open) .catalog-card--product {
        display: none !important;
    }
    .catalog-card {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }
    .catalog-card--category {
        padding: 18px;
    }
    .catalog-card__label {
        font-size: 12px;
    }
    .catalog-card__name,
    .catalog-card__price {
        font-size: 15px;
    }
    .catalog-card__price {
        margin-bottom: 10px;
    }
    .catalog-card__button {
        min-height: 36px;
        padding: 0 9px;
        font-size: 12px;
    }
    .catalog-card__arrow svg {
        width: 38px;
    }
}

@media (max-width: 650px) {
    .paint-top_catalog,
    .catalog__decor {
        display: none !important;
    }
    .catalog {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 3rem;
        overflow: hidden;
    }
    .catalog-title-img {
        width: 100%;
        max-width: 420px;
        height: auto;
        margin-bottom: 24px;
    }
    .catalog__grid {
        grid-template-columns: 1fr;
    }
    .catalog-card {
        width: 100%;
        min-height: auto;
    }
    .catalog-card--category {
        aspect-ratio: auto;
        min-height: 350px;
        padding: 22px 18px;
    }
    .catalog-card--product {
        aspect-ratio: 1 / 1;
    }
    .catalog-card__label {
        font-size: 18px;
    }
    .catalog-card__name {
        font-size: 20px;
    }
    .catalog-card__price {
        margin-bottom: 14px;
        font-size: 20px;
    }
    .catalog-card__button {
        min-height: 45px;
        border: 2px solid currentColor;
        padding: 0 12px;
        font-size: 18px;
    }
    .catalog-card__arrow svg {
        width: 100px;
    }
    .catalog-page .order-art {
        min-height: auto;
        height: auto;
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
}


@media (max-width: 420px) {
    .catalog {
        padding-left: 20px;
        padding-right: 20px;
    }
    .catalog__grid {
        gap: 20px;
    }
    .catalog-card__label {
        font-size: 18px;
    }
    .catalog-card__name {
        font-size: 20px;
    }
    .catalog-card__price {
        margin-bottom: 12px;
        font-size: 20px;
    }
    .catalog-card__button {
        min-height: 45px;
        border: 2px solid currentColor;
        padding: 0 10px;
        font-size: 18px;
    }
    .catalog-card__arrow svg {
        width: 100px;
    }
    .catalog-page .order-art {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
}

/* Product Page */

.product-page {
    width: 100%;
    min-height: 100vh;
    background: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
}

.product-hero {
    background: var(--color-black);
    padding: 190px 0 200px;
    max-width: 1440px;
    margin: 0 auto;
}

.product-hero__layout {
    display: grid;
    grid-template-columns: 0.95fr 1.65fr 0.52fr;
    gap: 20px;
    align-items: start;
    height: 710px;
}

.product-hero__left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card {
    min-height: 448px;
    padding: 40px;
    background: var(--color-blue-card);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card--blue {
    background: var(--color-blue-card);
    color: var(--color-white);
}

.product-card--red {
    background: var(--color-red);
    color: var(--color-white);
}

.product-card--white {
    background: var(--color-gray-200);
    color: var(--color-red);
}

.product-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.product-card__date {
    margin-bottom: 8px;
    font-family: var(--font-rubik);
    font-size: 18px;
    line-height: 1;
}

.product-card__category {
    margin-bottom: 4px;
    font-family: var(--font-rubik);
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
}

.product-card__i {
    width: 24px;
    height: 24px;
}

.product-card__title {
    margin: 0;
    font-family: var(--font-dela);
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.product-card__info {
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-rubik);
    font-size: 14px;
    line-height: 1;
}

.product-card__price {
    margin-bottom: 25px;
    font-family: var(--font-dela);
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.product-card__button {
    width: 100%;
    min-height: 55px;
    padding: 0 18px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-rubik);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-card__button:hover {
    background: var(--color-white);
    color: var(--color-blue-card);
    border-color: var(--color-white);
}

.product-card__arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.product-card__arrow svg {
    width: 81px;
    height: auto;
}

.product-card .catalog-card__button {
    transition: all 0.3s ease;
}

.product-card--blue .catalog-card__button:hover {
    background: var(--color-white);
    color: var(--color-blue-card);
    border-color: var(--color-white);
}

.product-card--red .catalog-card__button:hover {
    background: var(--color-white);
    color: var(--color-red);
    border-color: var(--color-white);
}

.product-card--white .catalog-card__button:hover {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.product-hero__description {
    max-width: 390px;
    font-family: var(--font-rubik);
    font-size: 20px;
    line-height: 1.18;
    color: var(--color-white);
}

.product-hero__description p {
    margin: 0;
}

.product-hero__main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 710px;
}

.product-hero__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__thumbs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-hero__thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    background: var(--color-gray-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 223px;
    position: relative;
}

.product-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__thumb.is-active {
    outline: none;
    box-shadow: none;
}

.product-hero--blue .product-hero__thumb.is-active {
    box-shadow: 0 0 0 2px var(--color-blue-card);
}
.product-hero--red .product-hero__thumb.is-active {
    box-shadow: 0 0 0 2px var(--color-red);
}
.product-hero--white .product-hero__thumb.is-active {
    box-shadow: 0 0 0 2px var(--color-white);
}

.product-hero__thumb.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 0;
    box-sizing: border-box;
}
.product-hero--blue .product-hero__thumb.is-active::after {
    border: 2px solid var(--color-blue-card);
}
.product-hero--red .product-hero__thumb.is-active::after {
    border: 2px solid var(--color-red);
}
.product-hero--white .product-hero__thumb.is-active::after {
    border: 2px solid var(--color-white);
}

.product-page .order-art {
    position: relative;
    min-height: 56.875rem;
    height: auto;
    padding-top: 12.5rem;
    padding-bottom: 8rem;
    overflow: visible;
}

@media (max-width: 1440px) {
    .product-hero {
        max-width: 100%;
        padding: 160px 40px 170px;
    }
    .product-hero__layout {
        grid-template-columns: 0.95fr 1.65fr 0.52fr;
        gap: 18px;
        height: 640px;
    }
    .product-card {
        min-height: 404px;
        padding: 20px 15px;
    }
    .product-card__date {
        font-size: 16px;
    }
    .product-card__category {
        font-size: 20px;
    }
    .product-card__title,
    .product-card__price {
        font-size: 25px;
    }
    .product-card__button {
        min-height: 50px;
        font-size: 18px;
    }
    .product-card__arrow svg {
        width: 68px;
    }
    .product-hero__description {
        max-width: 350px;
        font-size: 15px;
    }
    .product-hero__main-image {
        height: 640px;
    }
    .product-hero__thumb {
        height: 201px;
    }
}

@media (max-width: 1200px) {
    .product-hero {
        padding: 130px 28px 140px;
    }
    .product-hero__layout {
        gap: 16px;
        height: 560px;
    }
    .product-card {
        min-height: 352px;
        padding: 28px;
    }
    .product-card__date {
        font-size: 14px;
    }
    .product-card__category {
        font-size: 18px;
    }
    .product-card__title,
    .product-card__price {
        font-size: 25px;
    }
    .product-card__price {
        margin-bottom: 14px;
    }
    .product-card__button {
        min-height: 44px;
        padding: 0 12px;
        font-size: 15px;
    }
    .product-card__arrow svg {
        width: 54px;
    }
    .product-card__info {
        width: 18px;
        height: 18px;
        font-size: 11px;
        border-width: 1px;
    }
    .product-hero__description {
        max-width: 310px;
        font-size: 13px;
    }
    .product-hero__main-image {
        height: 560px;
    }
    .product-hero__thumbs {
        gap: 16px;
    }
    .product-hero__thumb {
        height: 176px;
    }
}

@media (max-width: 900px) {
    .product-hero {
        padding: 100px 24px 110px;
    }
    .product-hero__layout {
        gap: 14px;
        height: 480px;
    }
    .product-card {
        min-height: 300px;
        padding: 22px;
    }
    .product-card__date {
        font-size: 12px;
    }
    .product-card__category {
        font-size: 18px;
    }
    .product-card__title,
    .product-card__price {
        font-size: 20px;
    }
    .product-card__price {
        margin-bottom: 12px;
    }
    .product-card__button {
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
    .product-card__arrow svg {
        width: 44px;
    }
    .product-hero__description {
        max-width: 260px;
        font-size: 11px;
    }
    .product-hero__main-image {
        height: 480px;
    }
    .product-hero__thumbs {
        gap: 14px;
    }
    .product-hero__thumb {
        height: 150px;
    }
    .product-page .order-art {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

@media (max-width: 700px) {
    .product-hero {
        padding: 100px 20px 64px;
    }
    .product-hero__layout {
        display: flex;
        flex-direction: column;
        gap: 50px;
        height: auto;
    }
    .product-hero__main-image {
        display: none;
    }
    .product-card__i {
        width: 22px;
        height: 22px;
    }
    .product-hero__thumbs {
        order: 1;
        width: 100%;
        height: 300px;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
    }
    .product-hero__thumbs::-webkit-scrollbar {
        display: none;
    }
    .product-hero__thumb {
        min-width: 100%;
        height: 300px;
        aspect-ratio: auto;
        scroll-snap-align: start;
        cursor: default;
    }
    .product-hero__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .product-hero__thumb.is-active {
        outline: none;
        box-shadow: none;
    }
    .product-hero__thumb.is-active::after {
        content: none;
    }
    .product-hero__left {
        order: 2;
        width: 100%;
        gap: 50px;
    }
    .product-card {
        height: 350px;
        min-height: 350px;
        padding: 22px;
    }
    .product-card__date {
        font-size: 11px;
    }
    .product-card__category {
        font-size: 18px;
    }
    .product-card__title {
        font-size: 20px;
    }
    .product-card__info {
        width: 18px;
        height: 18px;
        font-size: 11px;
        border-width: 1px;
    }
    .product-card__price {
        margin-bottom: 12px;
        font-size: 20px;
    }
    .product-card__button {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
    }
    .product-card__arrow svg {
        width: 48px;
    }
    .product-hero__description {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.2;
    }
    .product-page .order-art {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
    .menu-contacts_label {
        display: flex;
        font-size: 18px;
        margin-bottom: 20px;
    }
    .menu-contacts_data {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        margin-bottom: 18px;
    }

    .menu-contacts_data a {
        color: var(--color-white);
        font-size: 20px;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        font-family: var(--font-dela);
        z-index: 11;
    }
}

@media (max-width: 420px) {
    .product-hero {
        padding-left: 20px;
        padding-right: 20px;
    }
    .product-hero__thumbs,
    .product-hero__thumb {
        height: 300px;
    }
    .product-card {
        height: 350px;
        min-height: 350px;
        padding: 20px 16px;
    }
    .product-card__title {
        font-size: 20px;
    }
    .product-card__price {
        font-size: 20px;
    }
    .product-card__button {
        min-height: 36px;
        font-size: 12px;
    }
    .product-card__arrow svg {
        width: 38px;
    }

    /* Flip styles for mobile */
    .product-card {
        perspective: 1000px;
    }

    .product-card__back {
        padding: 0;
    }

    .product-card__info-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .product-card__close {
        width: 20px;
        height: 20px;
        margin-bottom: 1rem;
    }

    .product-card__close svg {
        width: 20px;
        height: 20px;
    }
}

/* Info Popup/Tooltip Styles */
.product-card__i-wrapper {
    position: relative;
}

.product-card__i-btn {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, filter 0.2s ease;
    z-index: 100;
    position: relative;
}

.product-card--blue .product-card__i-btn,
.product-card--red .product-card__i-btn {
    color: var(--color-white);
}

.product-card--white .product-card__i-btn {
    color: var(--color-red);
}

.product-card__i-btn:hover {
    transform: scale(1.15);
    filter: brightness(1.3);
}

.product-card__i-btn:active {
    transform: scale(0.95);
}

.product-card__i-popup {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -0.3rem;
    min-width: 220px;
    max-width: 280px;
    padding: 1rem;
    background: var(--color-black-alt);
    border: 1px solid var(--overlay-white-16);
    border-radius: 0.75rem;
    box-shadow: 0 0.75rem 1.5rem var(--overlay-black-60);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateY(-8px) scale(0.95);
    z-index: 1000;
}

.product-card__i-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.product-card__i-popup-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--overlay-white-85);
}

/* Arrow for popup */
.product-card__i-popup::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0.75rem;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--color-black-alt);
}

@media (max-width: 767px) {
    .product-card__i-popup {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        bottom: auto;
        transform: translateY(-8px) scale(0.95);
        margin-top: 0;
        max-width: min(280px, calc(100vw - 2rem));
    }

    .product-card__i-popup.is-active {
        transform: translateY(0) scale(1);
    }

    .product-card__i-popup::before {
        display: block;
        bottom: 100%;
        top: auto;
        right: 0.75rem;
    }
}

.catalog-card__product-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Card Flip Animation */
.product-card {
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1), background 0.6s cubic-bezier(0.32, 0.72, 0, 1);
    transform-style: preserve-3d;
}

.product-card.is-flipped {
    transform: rotateY(180deg);
    background: var(--color-white) !important;
    color: inherit;
}

.product-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.product-card__front,
.product-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card__front {
    background: transparent;
}

.product-card__back {
    transform: rotateY(180deg);
    justify-content: flex-start;
    align-items: start;
    text-align: start;
    background: transparent;
}

.product-card__back .product-card__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.product-card--blue .product-card__back {
    color: var(--color-blue-card);
}
.product-card--blue .product-card__back .product-card__bottom:hover .catalog-card__button {
    background-color: var(--color-blue-card);
    color: white;
}

.product-card--red .product-card__back {
    color: var(--color-red);
}

.product-card--red .product-card__back .product-card__bottom:hover .catalog-card__button {
    background-color: var(--color-red);
    color: white;
}

.product-card--white .product-card__back {
    color: var(--color-red);
}

.product-card--white .product-card__back .product-card__bottom:hover .catalog-card__button {
    background-color: var(--color-red);
    color: white;
}

.product-card__back .product-card__info-text {
    color: inherit;
}

.product-card__back .product-card__close {
    color: inherit;
}

.product-card__close {
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    align-self: flex-end;
    transition: transform 0.2s ease;
}

.product-card__close:hover {
    transform: scale(1.2);
}

.product-card__close svg {
    width: 24px;
    height: 24px;
}

.product-card__info-text {
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.product-card__info-text p {
    font-size: 18px;
}

.product-card__back .product-card__bottom {
    width: 100%;
}

.error-page {
    width: 100%;
    min-height: 100vh;
    background: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
}

.error-hero {
    position: relative;
    min-height: calc(100vh - 120px);
    padding: 120px 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.error-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 40px;
    align-items: center;
    min-width: 0;
}

.error-hero__code {
    font-family: var(--font-dela);
    font-size: clamp(110px, 22vw, 320px);
    line-height: 0.8;
    color: var(--color-white);
    min-width: 0;
}

.error-hero__card {
    min-height: 440px;
    padding: 40px;
    background: var(--color-blue-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.error-hero__label {
    font-family: var(--font-rubik);
    font-size: 20px;
    text-transform: uppercase;
}

.error-hero__title {
    margin: 20px 0;
    font-family: var(--font-dela);
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.error-hero__text {
    margin: 0 0 32px;
    font-family: var(--font-rubik);
    font-size: 18px;
    line-height: 1.25;
}

.error-hero__button {
    width: 100%;
    min-height: 55px;
    padding: 0 18px;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-rubik);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
}

.error-hero__button:hover {
    background: var(--color-white);
    color: var(--color-blue-card);
    border-color: var(--color-white);
}

.error-hero__arrow {
    display: flex;
    align-items: center;
}

.error-hero__arrow svg {
    width: 81px;
    height: auto;
}

.error-hero__star {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.error-hero__star--red {
    right: -80px;
    top: 10px;
    width: 360px;
    height: auto;
}

@media (max-width: 900px) {
    .error-hero {
        padding: 90px 20px;
    }
    .error-hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .error-hero__code {
        font-size: clamp(72px, 24vw, 130px);
        line-height: 0.85;
    }
    .error-hero__card {
        width: 100%;
        max-width: 520px;
        min-height: 360px;
        padding: 30px;
    }
    .error-hero__star--red {
        width: 240px;
        right: -70px;
        top: 60px;
    }
}

@media (max-width: 560px) {
    .error-hero {
        padding: 70px 20px;
    }
    .error-hero__card {
        min-height: 320px;
        padding: 22px;
    }
    .error-hero__label {
        font-size: 14px;
    }
    .error-hero__title {
        font-size: 24px;
    }
    .error-hero__text {
        font-size: 15px;
    }
    .error-hero__button {
        min-height: 44px;
        font-size: 14px;
    }
    .error-hero__arrow svg {
        width: 48px;
    }
    .error-hero__star--red {
        display: none;
    }
    .product-card__info-text p {
        font-size: 16px;
    }
}

@media (min-width: 767px) and (max-width: 1099px) {

    /* ─── Общие отступы ─── */
    .site-header {
        padding: 1.5rem 1.5rem;
    }
    .hero__content,
    .new-art__top {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .footer {
        padding: 2rem 1.5rem;
    }

    /* ─── Логотип справа ─── */
    .logo {
        display: block;
        position: absolute;
        top: 60%;
        left: auto;
        right: 1.5rem;
        transform: translateY(-40%);
        z-index: 1;
    }

    /* ─── Навигация ─── */
    .nav__list {
        gap: 2rem;
    }
    .nav__list li a {
        font-size: 1rem;
    }

    /* ─── Главная: Hero ─── */
    .hero {
        min-height: auto;
    }
    .hero__layout {
        grid-template-columns: minmax(0, 1fr) 20rem;
    }
    .hero__left {
        padding-bottom: 2.5rem;
    }
    .hero__art {
        transform: none;
        gap: 0.6rem;
    }
    .hero__right-letters {
        gap: 0.75rem;
    }
    .hero__bottom-row {
        gap: 0.75rem;
    }
    /* Масштабируем буквы прямо — без transform */
    .hero__letter--v {
        width: 8rem;
        margin-top: 3rem;
    }
    .hero__letter--s {
        width: 8.75rem;
        height: 22rem;
        margin-top: 3rem;
    }
    .hero__letter--yo {
        width: 7rem;
    }
    .hero__letter--i {
        width: 7rem;
        height: 5.8rem;
    }
    .hero__letter--r {
        width: 7rem;
        height: 6.8rem;
    }
    .hero__letter--a {
        width: 8.5rem;
        height: 6.8rem;
    }
    .hero__letter--z {
        width: 7.8rem;
        height: 6.8rem;
        margin-left: -0.25rem;
    }
    .hero__letter--u {
        width: 7.8rem;
        height: 6.8rem;
    }
    .hero__text {
        width: 9rem;
        font-size: 0.85rem;
    }
    .hero__hand {
        right: -14rem;
        top: 1rem;
        width: 38rem;
    }

    /* ─── Главная: New Art ─── */
    .new-art__title {
        font-size: 2rem;
    }
    .new-art__all {
        width: 15rem;
    }

    /* ─── New Art: мобильный слайдер на планшете ─── */
    .js-new-art-slider {
        gap: 0.5rem !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1.5rem;
        scroll-padding-right: 1.5rem;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 2.5rem;
    }
    .js-new-art-slider::-webkit-scrollbar {
        display: none;
    }
    .js-new-art-slider .new-art__card {
        flex: 0 0 251px !important;
        width: 251px !important;
        min-width: 251px;
        height: auto;
        min-height: 448px;
        scroll-snap-align: start;
        transform: none !important;
        transition: none !important;
    }
    .js-new-art-slider .new-art__card:hover,
    .js-new-art-slider .new-art__card:active {
        flex: 0 0 251px !important;
        width: 251px !important;
        z-index: auto;
    }
    .js-new-art-slider:hover .new-art__card:not(:hover) {
        flex: 0 0 251px !important;
    }
    .js-new-art-slider .new-art__card-link {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100%;
    }
    .js-new-art-slider .new-art__image {
        flex: 0 0 251px;
        height: 251px;
        aspect-ratio: auto;
    }
    .js-new-art-slider .new-art__details {
        flex: 0 0 auto;
        opacity: 1 !important;
        max-height: none !important;
        visibility: visible !important;
        overflow: visible !important;
        transform: none !important;
    }
    .js-new-art-slider .new-art__info {
        padding: 0.875rem 1rem 1rem;
    }
    .js-new-art-slider .new-art__info-top {
        margin-bottom: 4px;
        gap: 0.75rem;
    }
    .js-new-art-slider .new-art__name {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        text-transform: uppercase;
    }
    .js-new-art-slider .new-art__price {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
    }
    .js-new-art-slider .new-art__drip {
        margin-top: -1px;
        line-height: 0;
    }
    .js-new-art-slider .new-art__arrow {
        width: 3.5rem;
    }

    /* ─── Главная: Order Art ─── */
    .order-art {
        height: auto;
        padding-top: 7rem;
    }
    .order-art__layout {
        grid-template-columns: 20rem 1fr;
        gap: 1.5rem;
        height: auto;
        min-height: 25rem;
        padding: 0 1.5rem;
    }
    .order-art__order-badge {
        width: 20rem;
        left: -4rem;
        top: -9rem;
    }
    .order-art__form {
        max-width: 20rem;
        margin-bottom: 0;
        gap: 0;
    }
    .order-art__field-bg {
        width: 20rem;
    }
    .order-art__submit {
        width: 20rem;
        margin-left: 0;
    }
    .order-art__left {
        min-height: 25rem;
        max-height: 25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .order-art__star {
        right: -3rem;
        bottom: -3rem;
        width: 8.5rem;
        height: auto;
    }

    /* ─── Главная: About Brand ─── */
    .about-brand {
        height: 42rem;
        padding-top: 7rem;
        margin-bottom: 120px;
    }
    .about-brand__title {
        top: -1rem;
        left: 12.8rem;
        width: 46rem;
    }
    .about-brand__title img {
        width: 46rem;
        height: 12rem;
    }
    .about-brand__image {
        width: 414px;
        height: 414px;
        left: 36%;
    }
    .about-brand__content {
        width: 20rem;
        right: 1.5rem;
    }
    .about-brand__label {
        padding-left: 1.5rem;
        font-size: 1.5rem;
    }
    .about-brand__star--1 { left: 10rem; top: 17rem; }
    .about-brand__star--2 { left: 6rem; top: 20rem; }
    .about-brand__star--3 { left: 8.5rem; bottom: 2rem; width: 7.5rem; }

    /* ─── Главная: Masterclass ─── */
    .masterclass {
        height: 44rem;
    }
    .masterclass__container {
        padding: 4rem 1.5rem 0;
    }
    .masterclass__content {
        max-width: 34rem;
        height: 33rem;
    }
    .masterclass__title img {
        width: 34rem;
        height: auto;
    }
    .masterclass__dates {
        font-size: 1.75rem;
    }
    .masterclass__btn {
        width: 16rem;
    }

    /* ─── Страница контактов ─── */
    .contacts-hero {
        max-width: 100%;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    .contacts-title__container {
        padding-top: 11.875rem;
        margin-bottom: 2rem;
    }
    .contacts-title-img {
        width: 100%;
        max-width: 46rem;
        margin-bottom: 0;
    }
    .cursor-img {
        width: 12rem;
    }
    /* Переопределяем max-width: 1024px который ломал на 2 колонки */
    .contacts-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .contacts-info {
        grid-column: auto;
        padding-top: 1.5rem;
        min-height: auto;
    }
    .contacts-card {
        height: auto;
        min-height: 18rem;
        padding: 1.75rem 1.5rem;
    }
    .contacts-label,
    .card-label {
        margin-bottom: 1.75rem;
        font-size: 1rem;
    }
    .contacts-data {
        gap: 0.4rem;
    }
    .contacts-data a {
        font-size: 1.1rem;
    }
    .social-item span,
    .work-link span {
        font-size: 1.1rem;
    }
    .social-item small,
    .work-link small {
        font-size: 0.9rem;
    }

    /* ─── Страница О бренде ─── */
    .brand-container {
        width: calc(100% - 3rem);
        margin-bottom: 6rem;
    }
    .brand-hero {
        padding: 190px 0 0;
    }
    .brand-hero__logo {
        width: min(600px, 100%);
        height: auto;
        margin-bottom: 2.5rem;
    }
    /* Переопределяем max-width: 1024px → возвращаем 3 колонки */
    .brand-hero__content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.25rem;
        align-items: end;
    }
    .brand-hero__text {
        grid-column: auto;
        width: auto;
        font-size: 1rem;
    }
    .brand-hero__image img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .brand-hero__quote {
        width: auto;
        font-size: 1.25rem;
    }
    /* Переопределяем max-width: 1024px → возвращаем 2 колонки */
    .brand-about__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 120px auto;
    }
    .brand-about__content {
        height: auto;
    }
    .brand-about__content p {
        margin: 1rem 0 0;
        font-size: 1rem;
    }
    .brand-about__content p + p {
        margin-top: 0.75rem;
    }
    .brand-about h1,
    .brand-achievements h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .brand-about__photo img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        filter: grayscale(1);
    }
    /* Слайдер достижений: 3 карточки как на десктопе */
    .achievement-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }

    /* ─── Декоративные элементы О бренде ─── */
    .paint--top {
        width: 300px;
        height: auto;
        right: 0;
        top: 7rem;
    }
    .paint--red {
        width: 300px;
        height: auto;
    }
    .paint {
        width: 230px;
        height: auto;
        bottom: -80px;
        right: -100px;
    }

    /* ─── Каталог ─── */
    .catalog {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .catalog-title-img {
        width: min(620px, 100%);
        height: auto;
        z-index: 100;
    }
    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    /* Десктопное поведение: показываем товары без data-hidden, скрываем с data-hidden */
    .catalog__grid:not(.is-category-open) .catalog-card--product {
        display: flex !important;
    }
    .catalog__grid:not(.is-category-open) .catalog-card--product[data-hidden] {
        display: none !important;
    }
    .catalog-card--category {
        padding: 1.25rem;
    }
    .catalog-card__label {
        font-size: 0.875rem;
    }
    .catalog-card__name,
    .catalog-card__price {
        font-size: 1.125rem;
    }
    .catalog-card__price {
        margin-bottom: 0.75rem;
    }
    .catalog-card__button {
        min-height: 2.5rem;
        padding: 0 0.75rem;
        font-size: 0.875rem;
    }
    .catalog-card__arrow svg {
        width: 3rem;
    }

    /* ─── Страница товара ─── */
    .product-hero {
        padding: 6rem 1.5rem 4.5rem;
    }
    .product-hero__layout {
        grid-template-columns: 0.95fr 1.65fr 0.52fr;
        gap: 10px;
        height: 410px;
    }
    .product-hero__main-image {
        height: 410px;
    }
    .product-card {
        min-height: auto;
        height: 100%;
        padding: 1rem;
    }
    .product-card__top {
        gap: 12px;
    }
    .product-card__date {
        margin-bottom: 0.35rem;
        font-size: 0.75rem;
    }
    .product-card__category {
        margin-bottom: 0.2rem;
        font-size: 0.9rem;
    }
    .product-card__title,
    .product-card__price {
        font-size: 1rem;
        line-height: 1.2;
    }
    .product-card__price {
        margin-bottom: 0.75rem;
    }
    .product-card__button {
        min-height: 2.25rem;
        padding: 0 0.65rem;
        font-size: 0.8rem;
    }
    .product-card__arrow svg {
        width: 3rem;
    }
    .product-hero__description {
        max-width: 100%;
        font-size: 0.8rem;
        line-height: 1.15;
    }
    .product-hero__thumbs {
        gap: 10px;
    }
    .product-hero__thumb {
        height: 130px;
    }
    .new-art {
        margin-bottom: 0;
    }

    .order-art__right {
        max-height: 25rem;
        min-height: 25rem;
    }
    .order-art__photo-wrap {
        width: 25rem;
        height: 25rem;
    }

    .order-art__letter--s {
        position: absolute;
        left: 9rem;
        top: -2rem;
        width: 5rem;
        height: 3.6rem;
        z-index: 2;
    }

    .order-art__letter--v {
        position: absolute;
        left: 15.6rem;
        top: -2rem;
        width: 4.8rem;
        height: 3.6rem;
        margin-left: -0.5rem;
        z-index: 2;
    }

    .order-art__letter--o {
        position: absolute;
        left: 21rem;
        top: -2rem;
        width: 5.1rem;
        height: 3.6rem;
        margin-left: -0.5rem;
        z-index: 2;
    }

    .order-art__letter--j {
        position: absolute;
        left: 26.5rem;
        top: -3.1rem;
        width: 5rem;
        height: 3.6rem;
        margin-left: -0.4rem;
        z-index: 4;
    }

    .order-art__letter--a {
        position: absolute;
        left: 4rem;
        top: 3.8rem;
        width: 5.3rem;
        height: 3.6rem;
    }

    .order-art__letter--r {
        position: absolute;
        left: 10rem;
        top: 3.8rem;
        width: 4.6rem;
        height: 3.6rem;
        margin-left: -0.5rem;
    }

    .order-art__letter--t {
        position: absolute;
        left: 15.5rem;
        top: 3.8rem;
        width: 4.9rem;
        height: 3.6rem;
        margin-left: -0.5rem;
    }

    .order-art__field input,
    .order-art__field select,
    .order-art__custom-select-trigger {
        padding: 0 1.125rem 0rem 1.125rem;
    }

    .paint-top_catalog {
        width: 400px;
        max-width: 100%;
    }
    .catalog-page .order-art,
    .product-page .order-art {
        position: relative;
        min-height: 400px;
        height: auto;
        padding-top: 60px;
        padding-bottom: 120px;
        overflow: visible;
    }

    .product-card__info-text p {
        font-size: 14px;
    }
    .product-hero__left {
        gap: 10px;
    }
    .star-img { 
        right: -2.5rem; 
    }
    .hero__layout { min-height: 780px; }
}

/* ─── Планшет малый: 768–860px (пропорциональное уменьшение от 1025px, k≈0.83) ─── */
@media (min-width: 767px) and (max-width: 860px) {

    /* Hero — буквы */
    .hero__letter--v { width: 6.6rem; margin-top: 2.5rem; }
    .hero__letter--s { width: 7.3rem; height: 18.3rem; margin-top: 2.5rem; }
    .hero__letter--yo { width: 5.8rem; }
    .hero__letter--i { width: 5.8rem; height: 4.8rem; }
    .hero__letter--r { width: 5.8rem; height: 5.6rem; }
    .hero__letter--a { width: 7rem; height: 5.6rem; }
    .hero__letter--z { width: 6.5rem; height: 5.6rem; }
    .hero__letter--u { width: 6.5rem; height: 5.6rem; }
    .hero__text { width: 7.5rem; font-size: 0.7rem; }
    .hero__hand { right: -11rem; width: 31rem; }
    .hero__layout { grid-template-columns: minmax(0, 1fr) 16rem; }

    /* New Art */
    .new-art__title { font-size: 1.65rem; }
    .new-art__all { width: 12.5rem; }

    /* Order Art — сетка */
    .order-art__layout {
        grid-template-columns: 18rem 1fr;
        min-height: 20rem;
        padding: 0 15px;
        gap: 8px;
    }
    .order-art__order-badge { width: 20rem; left: -2rem; top: -10rem; }
    .order-art__form { max-width: 18rem; }
    .order-art__field-bg { width: 18rem; }
    .order-art__submit { width: 18rem; }
    .order-art__left { min-height: 20rem; max-height: 20rem; width: 300px; }
    .order-art__right { min-height: 20rem; max-height: 20rem; }
    .order-art__photo-wrap { width: 20rem; height: 20rem; }
    .order-art__star { width: 7rem; right: -2rem; bottom: -2rem; }

    /* Order Art — буквы */
    .order-art__letter--s { left: 4rem; top: -1.65rem; width: 3.15rem; height: 2rem; }
    .order-art__letter--v { left: 8.5rem; top: -1.65rem; width: 3rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--o { left: 11.5rem; top: -1.65rem; width: 3.2rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--j { left: 15rem; top: -2.6rem; width: 3.15rem; height: 2rem; margin-left: -0.35rem; }
    .order-art__letter--a { left: 0.5rem; top: 2.2rem; width: 3.4rem; height: 2rem; }
    .order-art__letter--r { left: 4.8rem; top: 2.2rem; width: 2.8rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--t { left: 8.5rem; top: 2.2rem; width: 3.1rem; height: 2rem; margin-left: -0.4rem; }

    /* About Brand */
    .about-brand { height: 35rem; }
    .about-brand__scene { min-height: 29rem; }
    .about-brand__title { top: -0.3rem; left: 11.2rem; width: 38rem; }
    .about-brand__title img { width: 36rem; height: 8rem; }
    .about-brand__image { width: 340px; height: 340px; left: 40%; }
    .about-brand__content { width: 15rem; right: 0.5rem; margin-bottom: 6rem; }
    .about-brand__label { font-size: 1.25rem; }
    .about-brand__star--1 { left: 8.3rem; top: 12rem; }
    .about-brand__star--2 { left: 6rem; top: 15.6rem; }
    .about-brand__star--3 { left: 8rem; bottom: 0.5rem; width: 6.25rem; }
    .paint--top {
        width: 300px;
        height: auto;
        right: -10rem;
        top: 7rem;
    }
    .brand-hero__content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.825rem;
        align-items: end;
    }
    .brand-hero__text {
        font-size: 14px;
    }
    .paint--red {
        width: 180px;
        height: auto;
        left: -2rem;
        bottom: -7.5rem;
    }
    .about-brand__text {
        margin-bottom: 1rem;
        font-size: 14px;
        padding-left: 0.8rem;
    }
    .about-brand__btn {
        width: 14rem;
        padding: 0.5rem 0;
    }
    /* Masterclass */
    .masterclass { height: 36.5rem; }
    .masterclass__content { max-width: 28rem; height: 27.5rem; }
    .masterclass__title img { width: 28rem; }
    .masterclass__dates { font-size: 1.45rem; }
    .masterclass__btn { width: 13rem; }

    /* Contacts */
    .contacts-title__container { margin-bottom: 1.5rem; }
    .contacts-title-img { max-width: 38rem; }
    .cursor-img { width: 10rem; }
    .contacts-content { max-height: 320px; min-height: 320px; }
    .contacts-card { min-height: 15rem; padding: 1.5rem 1.25rem; max-height: 320px; }
    .contacts-label, .card-label { margin-bottom: 1.5rem; font-size: 0.875rem; }
    .contacts-data a { font-size: 0.9rem; }
    .social-item span, .work-link span { font-size: 0.9rem; }
    .social-item small, .work-link small { font-size: 0.75rem; }
    .paint-top_catalog { right: -10rem; top: 7rem; }
    .white-star { 
        width: 90px; 
        height: 80px;
        top: -1.5rem; 
        right: -1rem; 
    }

    /* Product Hero */
    .product-hero { padding: 8rem 1.5rem 4.5rem; }
    .product-hero__layout { height: 340px; }
    .product-hero__main-image { height: 340px; }
    .product-hero__thumb { height: 105px; }
    .product-card { padding: 0.8rem; }
    .product-card__date { font-size: 0.62rem; }
    .product-card__category { font-size: 0.75rem; }
    .product-card__title, .product-card__price { font-size: 0.82rem; }
    .product-card__button { min-height: 1.9rem; font-size: 0.66rem; }
    .product-card__arrow svg { width: 2.5rem; }
    .product-hero__description { font-size: 0.65rem; }
    .product-hero__thumbs { gap: 10px; }

    .catalog-title-img {
        width: min(500px, 100%);
        height: auto;
        z-index: 100;
    }
    .contacts-title-img {
        width: min(500px, 100%);
        height: auto;
        z-index: 100;
    }
    .product-card__info-text p {
        font-size: 10px;
    }
    .hero__art {
        transform: none;
        gap: 1rem;
    }
    .hero__right-letters {
        gap: 1.25rem;
    }
    .hero__layout { min-height: 680px; }
}

@media (min-width: 800px) and (max-width: 810px) {
    .order-art__letter--s { left: 6rem; top: -1.65rem; width: 3.15rem; height: 2rem; }
    .order-art__letter--v { left: 10.5rem; top: -1.65rem; width: 3rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--o { left: 13.5rem; top: -1.65rem; width: 3.2rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--j { left: 17rem; top: -2.6rem; width: 3.15rem; height: 2rem; margin-left: -0.35rem; }
    .order-art__letter--a { left: 2rem; top: 2.2rem; width: 3.4rem; height: 2rem; }
    .order-art__letter--r { left: 6.8rem; top: 2.2rem; width: 2.8rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--t { left: 10.5rem; top: 2.2rem; width: 3.1rem; height: 2rem; margin-left: -0.4rem; }
    .about-brand__title { top: -0.3rem; left: 12.8rem; width: 38rem; }
    .about-brand__title img { width: 36rem; height: 8rem; }
}
@media (min-width: 811px) and (max-width: 825px) {
    .order-art__letter--s { left: 7rem; top: -1.65rem; width: 3.15rem; height: 2rem; }
    .order-art__letter--v { left: 11.5rem; top: -1.65rem; width: 3rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--o { left: 14.5rem; top: -1.65rem; width: 3.2rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--j { left: 18rem; top: -2.6rem; width: 3.15rem; height: 2rem; margin-left: -0.35rem; }
    .order-art__letter--a { left: 3rem; top: 2.2rem; width: 3.4rem; height: 2rem; }
    .order-art__letter--r { left: 7.8rem; top: 2.2rem; width: 2.8rem; height: 2rem; margin-left: -0.4rem; }
    .order-art__letter--t { left: 11.5rem; top: 2.2rem; width: 3.1rem; height: 2rem; margin-left: -0.4rem; }
    .about-brand__title { top: -0.3rem; left: 12.8rem; width: 38rem; }
    .about-brand__title img { width: 36rem; height: 8rem; }
}
