:root {
    --kkp-wine: #772b25;
    --kkp-wine-2: #8d342d;
    --kkp-peach: #e6885b;
    --kkp-peach-dark: #c66f46;
    --kkp-blue: #71b1bf;
    --kkp-red: #c72316;
    --kkp-black: #272727;
    --kkp-dark: #2f2f30;
    --kkp-dark-2: #3f403f;
    --kkp-olive: #64604d;
    --kkp-gray: #575757;
    --kkp-cream: #f4f4f4;
    --kkp-cream-2: #faf8f5;
    --kkp-white: #ffffff;
    --kkp-border: #e7ddd6;
    --kkp-shadow: 0 18px 44px rgba(70, 34, 28, 0.08);
    --kkp-shadow-soft: 0 10px 24px rgba(70, 34, 28, 0.06);
    --kkp-radius-xl: 28px;
    --kkp-radius-lg: 22px;
    --kkp-radius-md: 18px;
    --kkp-radius-sm: 12px;
    --kkp-container: 1300px;
    --kkp-gap: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--kkp-cream);
    color: var(--kkp-black);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.kkp-menu-open {
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

svg {
    display: block;
}

.kkp-site-shell {
    overflow: clip;
}

.kkp-main {
    display: block;
}

.kkp-container {
    width: min(100%, calc(var(--kkp-container) + 40px));
    margin: 0 auto;
    padding-inline: 20px;
}

.section-space {
    padding: 68px 0 0px;
}

.section-space-sm {
    padding: 26px 0 0;
}

.kkp-title-xl,
.kkp-title-lg,
.kkp-title-md {
    margin: 0;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.kkp-title-xl {
    font-size: clamp(2.5rem, 5vw, 3.625rem);
}

.kkp-title-lg {
    font-size: clamp(2rem, 4vw, 3.125rem);
}

.kkp-title-md {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.kkp-title-lg--light,
.kkp-title-md--light {
    color: var(--kkp-white);
}

.kkp-title-xl span,
.kkp-title-lg span,
.kkp-title-md span {
    color: var(--kkp-peach);
}

.kkp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.kkp-slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kkp-slider-nav__button {
    position: relative;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: var(--kkp-dark);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.kkp-slider-nav__button:hover {
    transform: translateY(-1px);
    background: var(--kkp-black);
}

.kkp-slider-nav__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--kkp-white);
    border-right: 2px solid var(--kkp-white);
}

.kkp-slider-nav__button--next::before {
    transform: translate(-62%, -50%) rotate(45deg);
}

.kkp-slider-nav__button--prev::before {
    transform: translate(-38%, -50%) rotate(-135deg);
}

.kkp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 12px 14px 12px 24px;
    border: 0;
    border-radius: 15px;
    color: var(--kkp-white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-btn:hover {
    transform: translateY(-1px);
}

.kkp-btn--wine {
    background: var(--kkp-wine);
}

.kkp-btn--peach {
    background: var(--kkp-peach);
}

.kkp-btn--blue {
    background: var(--kkp-blue);
}

.kkp-btn--dark {
    background: var(--kkp-dark);
}

.kkp-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.kkp-btn--small {
    min-height: 44px;
    padding: 10px 12px 10px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.kkp-btn--full {
    width: 100%;
}

.kkp-btn__icon {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: var(--kkp-white);
}

.kkp-btn__icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.6px solid var(--kkp-wine);
    border-right: 1.6px solid var(--kkp-wine);
    transform: translate(-68%, -50%) rotate(45deg);
}

.kkp-btn--blue .kkp-btn__icon::before,
.kkp-btn--dark .kkp-btn__icon::before,
.kkp-btn--ghost .kkp-btn__icon::before {
    border-color: var(--kkp-black);
}

.kkp-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kkp-socials__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--kkp-white);
    box-shadow: 0 6px 20px rgba(39, 39, 39, 0.1);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.kkp-socials__link:hover {
    transform: translateY(-1px);
}

.kkp-socials__link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.kkp-socials__link.is-rutube img {
    width: 24px;
    height: 24px;
}

.kkp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kkp-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 14px;
    border: 1px solid var(--kkp-border);
    border-radius: 999px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    font-size: 13px;
    line-height: 1.2;
}

.kkp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(39, 39, 39, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.kkp-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 82px;
}

.kkp-header__brand {
    flex: 0 0 auto;
}

.kkp-header__brand img {
    width: 74px;
    max-width: none;
}

.kkp-header__schedule {
    max-width: 140px;
    color: var(--kkp-black);
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
}

.kkp-header__nav {
    margin-left: auto;
}

.kkp-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kkp-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kkp-nav__link {
    color: var(--kkp-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    transition: color 0.2s ease;
}

.kkp-nav__item:hover > .kkp-nav__link,
.kkp-nav__link:hover {
    color: var(--kkp-wine);
}

.kkp-nav__toggle {
    position: relative;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
}

.kkp-nav__toggle::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.kkp-nav__item.is-open > .kkp-nav__toggle::before {
    transform: translate(-50%, -22%) rotate(-135deg);
}

.kkp-nav__submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 220px;
    padding: 14px;
    border-radius: 16px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.kkp-nav__submenu ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kkp-nav__submenu a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--kkp-black);
}

.kkp-nav__submenu a:hover {
    background: var(--kkp-cream);
    color: var(--kkp-wine);
}

.kkp-nav__item.is-open > .kkp-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .kkp-nav__item.has-children:hover > .kkp-nav__submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.kkp-header__callback {
    flex: 0 0 auto;
}

.kkp-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--kkp-peach);
}

.kkp-header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--kkp-white);
}

.kkp-mobile-panel {
    display: none;
    border-top: 1px solid rgba(39, 39, 39, 0.08);
    background: var(--kkp-white);
}

.kkp-mobile-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
}

.kkp-mobile-panel__schedule,
.kkp-mobile-panel__phone {
    font-size: 14px;
    line-height: 1.4;
}

.kkp-nav__list--mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.kkp-nav--mobile .kkp-nav__item {
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(39, 39, 39, 0.08);
}

.kkp-nav--mobile .kkp-nav__link {
    flex: 1 1 auto;
    font-size: 16px;
}

.kkp-nav--mobile .kkp-nav__submenu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 14px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height 0.25s ease, padding-top 0.25s ease;
}

.kkp-nav--mobile .kkp-nav__item.is-open > .kkp-nav__submenu {
    max-height: 320px;
    padding-top: 12px;
}

.kkp-nav--mobile .kkp-nav__submenu a {
    padding: 7px 0;
    border-radius: 0;
}

.kkp-mobile-panel__socials {
    padding: 20px 0 24px;
}

.kkp-hero__card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    border-radius: var(--kkp-radius-xl);
    background: linear-gradient(135deg, #fff9f4 0%, #f5efea 100%);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-hero__content {
    padding: 56px 46px 48px;
    min-height: 770px;
}

.kkp-hero__text {
    max-width: 430px;
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.kkp-hero__quote {
    margin-top: 26px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.kkp-hero__content .kkp-btn {
    margin-top: 32px;
}

.kkp-hero__media {
    position: relative;
    min-height: 530px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(230deg, rgba(39, 39, 39, 0.28) 0%, rgba(39, 39, 39, 0) 44%),
        var(--kkp-hero-bg) center/cover no-repeat;
}

.kkp-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 250, 244, 0.84) 0 28%, rgba(255, 250, 244, 0.06) 28% 58%, rgba(39, 39, 39, 0.12) 58% 76%, transparent 76%);
    pointer-events: none;
}

.kkp-hero__person {
    position: absolute;
    right: 34px;
    bottom: 0;
    z-index: 2;
    width: min(430px, 68%);
}

.kkp-hero__socials {
    position: absolute;
    right: 26px;
    bottom: 28px;
    z-index: 3;
}

.kkp-samples__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    align-items: center;
    gap: 32px;
}

.kkp-samples__content {
    max-width: 590px;
    padding-bottom: 140px;
}

.kkp-samples__text {
    margin-top: 22px;
    max-width: 500px;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(39, 39, 39, 0.9);
}

.kkp-samples__text strong {
    display: inline;
    font-weight: 600;
}

.kkp-samples__content .kkp-btn {
    margin-top: 22px;
}

.kkp-samples__stack {
    position: relative;
}

.kkp-samples__stack img {
    position: absolute;
    bottom: 0;
    filter: drop-shadow(0 30px 40px rgba(39, 39, 39, 0.24));
}

.kkp-samples__stack .is-back {
    left: 6px;
    width: 210px;
    transform: rotate(-6deg);
}

.kkp-samples__stack .is-middle {
    left: 118px;
    width: 218px;
}

.kkp-samples__stack .is-front {
    right: 4px;
    width: 196px;
    transform: rotate(4deg);
}

.kkp-features {
    color: var(--kkp-white);
}

.kkp-features .kkp-container {
    padding-top: 54px;
    padding-bottom: 56px;
    border-radius: var(--kkp-radius-xl);
    background: linear-gradient(180deg, var(--kkp-wine) 0%, var(--kkp-peach) 100%);
    box-shadow: var(--kkp-shadow);
}

.kkp-features__head {
    max-width: 960px;
    padding: 0 26px;
}

.kkp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    padding: 0 26px;
}

.kkp-feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 112px;
    padding: 24px 22px;
    border-radius: 18px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-feature-card h3 {
    margin: 0;
    max-width: 240px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.kkp-feature-card__icon {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--kkp-wine);
}

.kkp-feature-card__icon::before,
.kkp-feature-card__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--kkp-white);
    transform: translate(-50%, -50%);
}

.kkp-feature-card__icon::before {
    width: 12px;
    height: 2px;
}

.kkp-feature-card__icon::after {
    width: 2px;
    height: 12px;
}

.kkp-products-slider .swiper,
.kkp-offers .swiper,
.kkp-reviews .swiper {
    overflow: visible;
}

.kkp-product-hero-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 315px;
    border-radius: var(--kkp-radius-lg);
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-product-hero-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(180deg, #fbfbfb 0%, #f6f1ee 100%);
}

.kkp-product-hero-card__image img {
    max-height: 250px;
    object-fit: contain;
}

.kkp-product-hero-card__content {
    display: flex;
    flex-direction: column;
    padding: 28px 30px;
}

.kkp-product-hero-card__content h3 {
    margin: 0;
    max-width: 520px;
    font-size: clamp(1.9rem, 3vw, 2.85rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.kkp-product-hero-card__content p {
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.35;
    color: rgba(39, 39, 39, 0.88);
}

.kkp-product-hero-card__content .kkp-pills {
    margin-top: 18px;
}

.kkp-product-hero-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
}

.kkp-product-hero-card__price {
    color: var(--kkp-red);
    font-size: clamp(2rem, 2.4vw, 2.5rem);
    font-weight: 500;
    line-height: 1;
}

.kkp-materials__head {
    display: grid;
    gap: 20px;
    max-width: 980px;
}

.kkp-materials__head p {
    margin: 0;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(39, 39, 39, 0.88);
}

.kkp-materials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.kkp-material-card {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 245px;
    border-radius: var(--kkp-radius-lg);
    overflow: hidden;
    box-shadow: var(--kkp-shadow);
}

.kkp-material-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 58%;
    padding: 28px 24px 22px;
}

.kkp-material-card__body h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.kkp-material-card__body p {
    margin: 14px 0 0;
    max-width: 230px;
    font-size: 18px;
    line-height: 1.3;
}

.kkp-material-card__body .kkp-btn {
    margin-top: auto;
    color: var(--kkp-white);
}

.kkp-material-card__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 100%;
}

.kkp-material-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kkp-material-card.is-peach {
    background: #c97f5c;
    color: var(--kkp-white);
}

.kkp-material-card.is-olive {
    background: var(--kkp-olive);
    color: var(--kkp-white);
}

.kkp-material-card.is-dark {
    background: var(--kkp-gray);
    color: var(--kkp-white);
}

.kkp-material-card.is-wine {
    background: var(--kkp-wine-2);
    color: var(--kkp-white);
}

.kkp-pricing__head {
    display: grid;
    gap: 10px;
}

.kkp-pricing__head p {
    margin: 0;
    font-size: 18px;
    color: rgba(39, 39, 39, 0.85);
}

.kkp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.kkp-pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 34px 30px 28px;
    border-radius: var(--kkp-radius-lg);
    color: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
}

.kkp-pricing-card.is-accent {
    background: linear-gradient(180deg, #8d3129 0%, #7a261f 100%);
}

.kkp-pricing-card.is-dark {
    background: linear-gradient(180deg, #2f3031 0%, #212122 100%);
}

.kkp-pricing-card h3 {
    margin: 0;
    max-width: 420px;
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.kkp-pricing-card__badge {
    align-self: flex-start;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.kkp-pricing-card__list {
    display: grid;
    gap: 16px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.kkp-pricing-card__list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 17px;
    line-height: 1.35;
}

.kkp-pricing-card__list strong {
    display: inline;
    font-weight: 600;
}

.kkp-pricing-card__dot {
    position: relative;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
}

.kkp-pricing-card__dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kkp-white);
    transform: translate(-50%, -50%);
}

.kkp-pricing-card__description {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.kkp-pricing-card__bottom {
    display: grid;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
}

.kkp-pricing-card__price {
    font-size: clamp(1.9rem, 2.4vw, 2.45rem);
    font-weight: 500;
    line-height: 1;
}

.kkp-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 18px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    overflow: hidden;
}

.kkp-product-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 24px;
    background: linear-gradient(180deg, #fdfdfd 0%, #f5f0ed 100%);
}

.kkp-product-card__image img {
    max-height: 200px;
    object-fit: contain;
}

.kkp-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--kkp-red);
    color: var(--kkp-white);
    font-size: 12px;
    font-weight: 700;
}

.kkp-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    flex: 1 1 auto;
}

.kkp-product-card__body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.kkp-product-card__body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(39, 39, 39, 0.74);
}

.kkp-product-card__prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

.kkp-product-card__prices strong {
    color: var(--kkp-red);
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
}

.kkp-product-card__prices span {
    color: rgba(39, 39, 39, 0.55);
    font-size: 15px;
    text-decoration: line-through;
}

.kkp-lead-form__card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-radius: var(--kkp-radius-xl);
    background: linear-gradient(115deg, #8c362e 0%, #b85f3e 100%);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-lead-form__visual {
    position: relative;
    min-height: 420px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 52%),
        linear-gradient(0deg, rgba(28, 15, 14, 0.16), rgba(28, 15, 14, 0.16)),
        url('../media/block/block-img.png') center/cover no-repeat;
}

.kkp-lead-form__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 72%);
}

.kkp-lead-form__visual img {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    width: min(390px, 82%);
    transform: translateX(-50%);
}

.kkp-lead-form__content {
    padding: 36px 32px;
}

.kkp-form {
    display: grid;
    gap: 18px;
}

.kkp-form__trap {
    position: absolute;
    inset-inline-start: -999em;
    opacity: 0;
    pointer-events: none;
}

.kkp-form__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
}

.kkp-form__subtitle {
    margin: 0;
    color: rgba(39, 39, 39, 0.74);
}

.kkp-form__fields {
    display: grid;
    gap: 14px;
}

.kkp-form__field {
    display: grid;
    gap: 8px;
}

.kkp-form__field span,
.kkp-form__consent {
    font-size: 13px;
    line-height: 1.4;
}

.kkp-form__field input,
.kkp-form__field textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 12px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kkp-form__field input:focus,
.kkp-form__field textarea:focus {
    outline: none;
    border-color: rgba(230, 136, 91, 0.95);
    box-shadow: 0 0 0 4px rgba(230, 136, 91, 0.14);
}

.kkp-form__field--textarea textarea {
    min-height: 120px;
    resize: vertical;
}

.kkp-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
}

.kkp-form__consent input {
    margin-top: 2px;
}

.kkp-form__consent a {
    text-decoration: underline;
}

.kkp-form__response {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--kkp-white);
    font-size: 14px;
}

.kkp-form--on-dark {
    margin-top: 24px;
}

.kkp-form--on-dark .kkp-form__field span {
    color: rgba(255, 255, 255, 0.85);
}

.kkp-form--on-dark .kkp-form__field input,
.kkp-form--on-dark .kkp-form__field textarea {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.96);
}

.kkp-form--on-dark .kkp-form__consent {
    color: rgba(255, 255, 255, 0.84);
}

.kkp-applications__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.kkp-application-card {
    position: relative;
    min-height: 245px;
    border-radius: var(--kkp-radius-lg);
    overflow: hidden;
    background: var(--kkp-dark);
    box-shadow: var(--kkp-shadow);
}

.kkp-application-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--kkp-application-bg) center/cover no-repeat;
    transform: scale(1.03);
}

.kkp-application-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(39, 39, 39, 0.48) 0%, rgba(39, 39, 39, 0.12) 40%, rgba(39, 39, 39, 0.2) 100%);
}

.kkp-application-card__link {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 245px;
    padding: 30px;
    color: var(--kkp-white);
}

.kkp-application-card__link::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 68%;
    clip-path: polygon(0 0, 76% 0, 54% 100%, 0 100%);
    opacity: 0.9;
}

.kkp-application-card.is-peach .kkp-application-card__link::before {
    background: #c97f5c;
}

.kkp-application-card.is-olive .kkp-application-card__link::before {
    background: var(--kkp-olive);
}

.kkp-application-card.is-gray .kkp-application-card__link::before {
    background: #5b5b5b;
}

.kkp-application-card.is-wine .kkp-application-card__link::before {
    background: var(--kkp-wine-2);
}

.kkp-application-card h3,
.kkp-application-card p {
    position: relative;
    z-index: 1;
}

.kkp-application-card h3 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.kkp-application-card p {
    max-width: 290px;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.kkp-projects__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.kkp-project-card {
    border-radius: 18px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    overflow: hidden;
}

.kkp-project-card__image {
    display: block;
    aspect-ratio: 1.04 / 1;
    background: #ece8e5;
}

.kkp-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkp-project-card__body {
    display: grid;
    gap: 8px;
    padding: 16px 16px 18px;
}

.kkp-project-card__body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
}

.kkp-project-card__price {
    color: var(--kkp-blue);
    font-size: 14px;
    font-weight: 700;
}

.kkp-projects__footer {
    margin-top: 24px;
    text-align: center;
}

.kkp-lessons__card {
    position: relative;
    min-height: 420px;
    border-radius: var(--kkp-radius-xl);
    background: linear-gradient(180deg, #8d3129 0%, #d67749 100%);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-lessons__content {
    position: relative;
    z-index: 1;
    max-width: 58%;
    padding: 34px 32px 30px;
}

.kkp-lessons__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--kkp-white);
    font-size: 14px;
}

.kkp-lessons__content h2 {
    margin-top: 18px;
}

.kkp-lessons__socials {
    margin-top: 24px;
}

.kkp-lessons__previews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.kkp-lessons__previews img {
    width: 100%;
    border-radius: 14px;
}

.kkp-lessons__person {
    position: absolute;
    right: 18px;
    bottom: 0;
    width: min(380px, 40%);
}

.kkp-reviews__head {
    display: grid;
    gap: 16px;
    max-width: 1060px;
}

.kkp-reviews__text {
    max-width: 1000px;
    font-size: 16px;
    line-height: 1.6;
}

.kkp-reviews__text strong {
    font-weight: 700;
}

.kkp-section-head--reviews {
    margin-top: 16px;
}

.kkp-review-card {
    height: 100%;
    border-radius: 18px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    overflow: hidden;
}

.kkp-review-card__image {
    display: block;
    background: var(--kkp-cream-2);
}

.kkp-review-card__image img {
    width: 100%;
    aspect-ratio: 0.72 / 1;
    object-fit: contain;
    background: var(--kkp-cream-2);
}

.kkp-reviews__note {
    margin-top: 24px;
    padding: 20px 28px;
    border-radius: 14px;
    background: var(--kkp-wine);
    color: var(--kkp-white);
    font-size: 16px;
    line-height: 1.55;
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-faq .kkp-container {
    padding-top: 52px;
    padding-bottom: 56px;
    border-radius: var(--kkp-radius-xl);
    background: linear-gradient(180deg, #8a2e26 0%, #d67b4d 100%);
    box-shadow: var(--kkp-shadow);
}

.kkp-faq h2 {
    padding: 0 24px;
}

.kkp-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    margin-top: 24px;
    padding: 0 24px;
}

.kkp-faq-item {
    border-radius: 18px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    overflow: hidden;
}

.kkp-faq-item[open] {
    background: rgba(255, 255, 255, 0.98);
}

.kkp-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 18px 22px;
    list-style: none;
    cursor: pointer;
}

.kkp-faq-item summary::-webkit-details-marker {
    display: none;
}

.kkp-faq-item summary span:first-child {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
}

.kkp-faq-item__icon {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--kkp-peach);
}

.kkp-faq-item__icon::before,
.kkp-faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--kkp-white);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.kkp-faq-item__icon::before {
    width: 12px;
    height: 2px;
}

.kkp-faq-item__icon::after {
    width: 2px;
    height: 12px;
}

.kkp-faq-item[open] .kkp-faq-item__icon::after {
    opacity: 0;
}

.kkp-faq-item__content {
    padding: 0 22px 22px;
    color: rgba(39, 39, 39, 0.88);
    font-size: 15px;
    line-height: 1.55;
}

.kkp-faq-item__content p {
    margin: 0;
}

.kkp-vases__head {
    display: grid;
    gap: 14px;
    max-width: 1000px;
}

.kkp-vases__head p {
    margin: 0;
    max-width: 980px;
    font-size: 16px;
    line-height: 1.6;
}

.kkp-vases__banner {
    position: relative;
    margin-top: 24px;
    border-radius: var(--kkp-radius-xl);
    overflow: hidden;
    box-shadow: var(--kkp-shadow);
}

.kkp-vases__banner img {
    width: 100%;
}

.kkp-vases__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(119, 43, 37, 0.94);
    color: var(--kkp-white);
    font-size: 14px;
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-vases__footer {
    margin-top: 22px;
    text-align: center;
}

.kkp-contact-cta__card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-radius: var(--kkp-radius-xl);
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-contact-cta__aside {
    padding: 32px;
    color: var(--kkp-white);
    background: linear-gradient(180deg, #8d3129 0%, #a64d33 100%);
}

.kkp-contact-cta__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

.kkp-contact-cta__aside h2 {
    margin-top: 18px;
}

.kkp-contact-cta__links {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.kkp-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.kkp-contact-chip__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.kkp-contact-chip__icon::before,
.kkp-contact-chip__icon::after {
    content: '';
    position: absolute;
    border-color: var(--kkp-white);
}

.kkp-contact-chip__icon::before {
    inset: 3px 1px 5px;
    border: 2px solid var(--kkp-white);
    border-top-width: 2px;
    border-radius: 2px;
}

.kkp-contact-chip__icon::after {
    top: 6px;
    left: 3px;
    width: 10px;
    height: 6px;
    border-right: 2px solid var(--kkp-white);
    border-bottom: 2px solid var(--kkp-white);
    transform: rotate(45deg) skew(24deg);
    opacity: 0.8;
}

.kkp-contact-chip__icon--phone::before {
    inset: 2px 4px 2px 4px;
    border: 2px solid var(--kkp-white);
    border-radius: 999px;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}

.kkp-contact-chip__icon--phone::after {
    top: 2px;
    left: 1px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--kkp-white);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 999px;
    transform: rotate(45deg);
}

.kkp-contact-cta__form {
    padding: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f4f2 100%);
}

.kkp-footer {
    margin-top: 72px;
    padding: 44px 0 18px;
    background: #222224;
    color: rgba(255, 255, 255, 0.88);
}

.kkp-footer__top {
    display: grid;
    grid-template-columns: 110px repeat(3, minmax(0, 1fr)) 250px;
    gap: 26px;
    align-items: start;
}

.kkp-footer__logo img {
    width: 84px;
    max-width: none;
}

.kkp-footer__column h3 {
    margin: 0 0 14px;
    color: var(--kkp-white);
    font-size: 16px;
    font-weight: 500;
}

.kkp-footer__column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kkp-footer__column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.kkp-footer__column a:hover {
    color: var(--kkp-white);
}

.kkp-footer__contacts {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.kkp-footer__contact {
    color: var(--kkp-white);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.kkp-footer__rating img {
    width: 124px;
}

.kkp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}

.kkp-footer__bottom p,
.kkp-footer__bottom a {
    margin: 0;
}

.kkp-footer__bottom a {
    text-decoration: underline;
}

.kkp-generic-page {
    padding: 56px 0 0;
}

.kkp-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.kkp-post-card,
.kkp-article {
    border-radius: 22px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-post-card__image {
    display: block;
    aspect-ratio: 1.1 / 0.8;
    background: var(--kkp-cream-2);
}

.kkp-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkp-post-card__body,
.kkp-article__content,
.kkp-article__header {
    padding: 22px 24px;
}

.kkp-post-card__body h2,
.kkp-article__header h1 {
    margin: 0;
    font-size: clamp(1.7rem, 2vw, 2.5rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.kkp-post-card__excerpt,
.kkp-article__content {
    color: rgba(39, 39, 39, 0.85);
    font-size: 16px;
    line-height: 1.65;
}

.kkp-article__image img {
    width: 100%;
}

.kkp-article__content > *:first-child {
    margin-top: 0;
}

.kkp-article__content > *:last-child {
    margin-bottom: 0;
}

.kkp-article--center {
    text-align: center;
}

.kkp-article--center .kkp-btn {
    margin-top: 16px;
}

@media (max-width: 1279px) {
    .kkp-header__schedule {
        display: none;
    }

    .kkp-nav__list {
        gap: 20px;
    }

    .kkp-hero__text,
    .kkp-hero__quote {
        font-size: 20px;
    }

    .kkp-material-card__body {
        max-width: 60%;
    }

    .kkp-feature-card h3 {
        font-size: 18px;
    }

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

    .kkp-footer__top {
        grid-template-columns: 110px repeat(2, minmax(0, 1fr));
    }

    .kkp-footer__contacts {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, auto));
        align-items: start;
    }
}

@media (max-width: 1023px) {
    .section-space {
        padding-top: 52px;
    }

    .kkp-header__nav,
    .kkp-header__socials,
    .kkp-header__callback {
        display: none;
    }

    .kkp-header__burger {
        display: flex;
        margin-left: auto;
    }

    .kkp-mobile-panel.is-open {
        display: block;
    }

    .kkp-hero__card,
    .kkp-samples__inner,
    .kkp-product-hero-card,
    .kkp-lead-form__card,
    .kkp-contact-cta__card {
        grid-template-columns: 1fr;
    }

    .kkp-hero__media {
        min-height: 420px;
        order: -1;
    }

    .kkp-hero__content {
        padding: 34px 28px 32px;
    }

    .kkp-hero__person {
        right: 24px;
        width: min(320px, 66%);
    }

    .kkp-samples__stack {
        height: 360px;
        margin-top: 12px;
    }

    .kkp-features__grid,
    .kkp-applications__grid,
    .kkp-pricing__grid,
    .kkp-materials__grid {
        grid-template-columns: 1fr;
    }

    .kkp-lead-form__visual {
        min-height: 360px;
    }

    .kkp-lead-form__content,
    .kkp-contact-cta__aside,
    .kkp-contact-cta__form {
        padding: 28px 24px;
    }

    .kkp-applications__grid,
    .kkp-faq__grid {
        grid-template-columns: 1fr;
    }

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

    .kkp-lessons__card {
        min-height: 0;
    }

    .kkp-lessons__content {
        max-width: none;
        padding: 28px 24px 20px;
    }

    .kkp-lessons__person {
        position: static;
        width: min(320px, 70%);
        margin: 0 auto;
    }

    .kkp-faq .kkp-container,
    .kkp-features .kkp-container {
        padding-top: 34px;
        padding-bottom: 36px;
    }

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

    .kkp-footer__brand {
        grid-column: 1 / -1;
    }

    .kkp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .kkp-container {
        padding-inline: 16px;
    }

    .section-space {
        padding-top: 44px;
    }

    .kkp-header__inner {
        min-height: 74px;
    }

    .kkp-header__brand img {
        width: 64px;
    }

    .kkp-hero__media {
        min-height: 320px;
    }

    .kkp-hero__person {
        width: min(280px, 72%);
    }

    .kkp-hero__content,
    .kkp-product-hero-card__content,
    .kkp-product-card__body,
    .kkp-pricing-card,
    .kkp-contact-cta__aside,
    .kkp-contact-cta__form,
    .kkp-lead-form__content,
    .kkp-article__header,
    .kkp-article__content,
    .kkp-post-card__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .kkp-hero__text,
    .kkp-hero__quote {
        font-size: 18px;
    }

    .kkp-product-hero-card__image {
        min-height: 220px;
    }

    .kkp-product-hero-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .kkp-material-card {
        min-height: 270px;
    }

    .kkp-material-card__body {
        max-width: 68%;
        padding: 22px 18px 18px;
    }

    .kkp-material-card__body h3,
    .kkp-application-card h3 {
        font-size: 30px;
    }

    .kkp-product-card__prices strong {
        font-size: 28px;
    }

    .kkp-projects__grid,
    .kkp-content-grid {
        grid-template-columns: 1fr;
    }

    .kkp-lessons__previews {
        grid-template-columns: 1fr;
    }

    .kkp-footer__top {
        grid-template-columns: 1fr;
    }

    .kkp-footer__contacts {
        grid-template-columns: 1fr;
    }

    .kkp-footer__contact {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .kkp-title-xl,
    .kkp-title-lg,
    .kkp-title-md {
        letter-spacing: -0.025em;
    }

    .kkp-section-head {
        align-items: end;
        margin-bottom: 20px;
    }

    .kkp-slider-nav__button {
        width: 34px;
        height: 34px;
    }

    .kkp-hero__content,
    .kkp-features__head,
    .kkp-features__grid,
    .kkp-faq h2,
    .kkp-faq__grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kkp-samples__stack {
        height: 290px;
    }

    .kkp-samples__stack .is-back {
        left: 0;
        width: 150px;
    }

    .kkp-samples__stack .is-middle {
        left: 84px;
        width: 156px;
    }

    .kkp-samples__stack .is-front {
        right: 0;
        width: 144px;
    }

    .kkp-feature-card {
        min-height: 96px;
        padding: 18px;
    }

    .kkp-feature-card h3 {
        font-size: 17px;
    }

    .kkp-product-hero-card__content h3,
    .kkp-pricing-card h3 {
        font-size: 1.9rem;
    }

    .kkp-material-card__body {
        max-width: 74%;
    }

    .kkp-application-card__link {
        padding: 24px 20px;
    }

    .kkp-contact-chip {
        width: 100%;
    }
}

/* ========================================
   Catalog / single product pages
======================================== */

.kkp-breadcrumbs {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(39, 39, 39, 0.65);
}

.kkp-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kkp-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kkp-breadcrumbs__item:not(:last-child)::after {
    content: '/';
    color: rgba(39, 39, 39, 0.42);
}

.kkp-breadcrumbs__item span {
    color: var(--kkp-black);
}

.kkp-materials-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 36px;
    min-height: 255px;
    padding: 46px 48px;
    border-radius: var(--kkp-radius-xl);
    background:
        linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
        var(--kkp-materials-hero) center/cover no-repeat;
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-materials-hero::before {
    content: '';
    position: absolute;
    top: -26%;
    left: 56%;
    width: 400px;
    height: 170%;
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(28deg);
    transform-origin: center;
}

.kkp-materials-hero__content,
.kkp-materials-hero__text {
    position: relative;
    z-index: 1;
}

.kkp-materials-hero__content {
    display: flex;
    align-items: center;
}

.kkp-materials-hero__text {
    align-self: center;
    max-width: 470px;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.03em;
}

.kkp-catalog__layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.kkp-catalog__sidebar {
    position: sticky;
    top: 120px;
}

.kkp-catalog__filters {
    display: grid;
    gap: 10px;
}

.kkp-catalog-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid rgba(39, 39, 39, 0.08);
    border-radius: 12px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    font-size: 16px;
    line-height: 1.2;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kkp-catalog-filter:hover,
.kkp-catalog-filter.is-active {
    border-color: rgba(119, 43, 37, 0.26);
    color: var(--kkp-wine);
    transform: translateY(-1px);
    box-shadow: var(--kkp-shadow-soft);
}

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

.kkp-catalog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 10px;
    border-radius: 20px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-catalog-card.is-hidden {
    display: none;
}

.kkp-catalog-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 315px;
    padding: 20px;
    border: 1px solid rgba(39, 39, 39, 0.08);
    border-radius: 14px;
    background: #fafafa;
    overflow: hidden;
}

.kkp-catalog-card__image img {
    width: auto;
    max-height: 100%;
    object-fit: contain;
}

.kkp-catalog-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px 6px;
}

.kkp-catalog-card__body h2,
.kkp-catalog-card__body h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.kkp-catalog-card__body p {
    margin: 0;
    color: rgba(39, 39, 39, 0.82);
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.kkp-catalog-card__price {
    margin-top: auto;
    color: var(--kkp-wine);
    font-size: 43px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.kkp-catalog__more {
    padding-top: 24px;
}

.kkp-catalog__more-button {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    background: var(--kkp-black);
    color: var(--kkp-white);
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.kkp-catalog__more-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.kkp-empty-state {
    padding: 48px 36px;
    border-radius: 20px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-empty-state h2 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
}

.kkp-empty-state p {
    margin: 0;
    max-width: 640px;
    color: rgba(39, 39, 39, 0.8);
}

.kkp-product-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    gap: 34px;
    align-items: start;
}

.kkp-product-gallery__main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    padding: 28px;
    border: 1px solid rgba(39, 39, 39, 0.08);
    border-radius: 18px;
    background: #fafafa;
    overflow: hidden;
}

.kkp-product-gallery__main img {
    width: auto;
    max-height: 100%;
    object-fit: contain;
}

.kkp-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.kkp-product-gallery__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 10px;
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 14px;
    background: var(--kkp-white);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kkp-product-gallery__thumb.is-active,
.kkp-product-gallery__thumb:hover {
    border-color: rgba(119, 43, 37, 0.24);
    transform: translateY(-1px);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-product-gallery__thumb img {
    width: auto;
    max-height: 100%;
    object-fit: contain;
}

.kkp-product-info {
    padding: 24px 28px 28px;
    border-radius: 20px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
}

.kkp-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(113, 177, 191, 0.16);
    color: #4f8d9a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.kkp-stock-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #67aebd;
}

.kkp-product-info__title {
    margin-top: 18px;
    margin-bottom: 16px;
}

.kkp-product-info__text {
    color: rgba(39, 39, 39, 0.82);
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.03em;
}

.kkp-product-specs-short {
    margin-top: 22px;
    border-top: 1px solid rgba(39, 39, 39, 0.08);
}

.kkp-product-specs-short__row {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(39, 39, 39, 0.08);
    font-size: 15px;
    line-height: 1.35;
}

.kkp-product-specs-short__row span {
    color: rgba(39, 39, 39, 0.62);
}

.kkp-product-specs-short__row strong {
    font-weight: 400;
    text-align: right;
}

.kkp-product-buy {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.kkp-product-buy__price-wrap {
    display: grid;
    gap: 8px;
}

.kkp-product-buy__price {
    color: var(--kkp-wine);
    font-size: clamp(2.25rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.kkp-product-buy__old-price {
    color: rgba(39, 39, 39, 0.44);
    font-size: 16px;
    text-decoration: line-through;
}

.kkp-product-buy__button {
    margin-top: 18px;
}

.kkp-quantity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kkp-quantity__button,
.kkp-quantity__input {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(39, 39, 39, 0.08);
    background: #f7f4f1;
    text-align: center;
}

.kkp-quantity__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 24px;
    line-height: 1;
}

.kkp-quantity__input {
    border-color: transparent;
    background: transparent;
    font-weight: 500;
}

.kkp-product-tabs__card {
    padding: 14px;
    border-radius: 22px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
}

.kkp-product-tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.kkp-product-tabs__button {
    min-height: 58px;
    padding: 14px 18px;
    border: 0;
    border-radius: 12px;
    background: #f3f1ef;
    color: rgba(39, 39, 39, 0.7);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.kkp-product-tabs__button.is-active {
    background: var(--kkp-black);
    color: var(--kkp-white);
}

.kkp-product-tabs__panel {
    display: none;
    padding: 10px 12px 14px;
}

.kkp-product-tabs__panel.is-active {
    display: block;
}

.kkp-product-tabs__lead {
    display: inline-flex;
    padding: 12px 18px;
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 999px;
    background: #faf8f7;
    font-size: 15px;
    line-height: 1.45;
}

.kkp-product-tabs__content {
    padding-top: 18px;
    color: rgba(39, 39, 39, 0.84);
    font-size: 16px;
    line-height: 1.65;
}

.kkp-product-tabs__content > :first-child {
    margin-top: 0;
}

.kkp-product-tabs__content > :last-child {
    margin-bottom: 0;
}

.kkp-product-table {
    margin-top: 22px;
    border: 1px solid rgba(39, 39, 39, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.kkp-product-table__row {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    padding: 14px 18px;
    background: var(--kkp-white);
}

.kkp-product-table__row:nth-child(even) {
    background: #faf8f7;
}

.kkp-product-table__label {
    color: rgba(39, 39, 39, 0.72);
    font-size: 15px;
    line-height: 1.45;
}

.kkp-product-table__value {
    font-size: 15px;
    line-height: 1.55;
}

.kkp-product-tabs__note {
    margin-top: 20px;
    color: var(--kkp-peach-dark);
    font-size: 15px;
    line-height: 1.55;
}

.kkp-delivery__card {
    padding: 46px 40px;
    border-radius: 0;
    background: linear-gradient(135deg, #772b25 0%, #e6885b 100%);
    color: var(--kkp-white);
}

.kkp-delivery__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.kkp-city-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.kkp-related .swiper-slide {
    height: auto;
}

.kkp-catalog-card--related .kkp-catalog-card__image {
    min-height: 260px;
}

.kkp-catalog-card--related .kkp-catalog-card__body h3 {
    font-size: 24px;
}

@media (max-width: 1199px) {
    .kkp-materials-hero {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kkp-materials-hero::before {
        display: none;
    }

    .kkp-catalog__layout,
    .kkp-product-top {
        grid-template-columns: 1fr;
    }

    .kkp-catalog__sidebar {
        position: static;
    }
}

@media (max-width: 1023px) {
    .kkp-catalog-grid {
        grid-template-columns: 1fr;
    }

    .kkp-materials-hero {
        padding: 34px 28px;
    }

    .kkp-product-gallery__main {
        min-height: 420px;
    }

    .kkp-product-table__row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .kkp-breadcrumbs {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .kkp-materials-hero {
        min-height: auto;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .kkp-materials-hero__text {
        font-size: 16px;
    }

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

    .kkp-catalog-filter {
        min-height: 48px;
        font-size: 14px;
    }

    .kkp-catalog-card__image {
        min-height: 250px;
    }

    .kkp-catalog-card__body h2,
    .kkp-catalog-card__body h3 {
        font-size: 24px;
    }

    .kkp-catalog-card__price {
        font-size: 36px;
    }

    .kkp-product-gallery__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .kkp-product-info {
        padding: 22px 20px 24px;
    }

    .kkp-product-buy {
        flex-direction: column;
        align-items: start;
    }

    .kkp-delivery__card {
        padding: 34px 24px;
    }
}

@media (max-width: 575px) {
    .kkp-catalog__filters {
        grid-template-columns: 1fr;
    }

    .kkp-materials-hero__text,
    .kkp-product-info__text {
        font-size: 15px;
    }

    .kkp-product-gallery__main {
        min-height: 320px;
        padding: 20px;
    }

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

    .kkp-product-specs-short__row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .kkp-product-specs-short__row strong {
        text-align: left;
    }

    .kkp-product-tabs__nav {
        grid-template-columns: 1fr;
    }

    .kkp-city-pill {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Taxonomy category page */
.kkp-term-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 32px;
    min-height: 250px;
    padding: 40px 46px;
    border-radius: var(--kkp-radius-xl);
    background:
        linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
        var(--kkp-term-hero) center/cover no-repeat;
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-term-hero::before {
    content: '';
    position: absolute;
    inset: -6% 28% -6% 42%;
    background: rgba(255, 255, 255, 0.96);
    clip-path: polygon(20% 0, 100% 0, 78% 100%, 0 100%);
}

.kkp-term-hero__content,
.kkp-term-hero__aside {
    position: relative;
    z-index: 1;
}

.kkp-term-hero__content {
    display: flex;
    align-items: center;
}

.kkp-term-hero__content h1 {
    max-width: 560px;
}

.kkp-term-hero__aside {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 22px;
}

.kkp-term-hero__text {
    max-width: 420px;
    color: rgba(39, 39, 39, 0.86);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.kkp-term-hero__text p {
    margin: 0;
}

.kkp-term-hero__button {
    min-width: 184px;
}

.kkp-term-advantages {
    margin-top: 34px;
    padding: 72px 0 76px;
    background: linear-gradient(180deg, #772b25 18%, #e6885b 120%);
}

.kkp-term-advantages .kkp-title-lg,
.kkp-term-benefits .kkp-title-lg {
    color: var(--kkp-white);
}

.kkp-term-advantages .kkp-title-lg span,
.kkp-term-benefits .kkp-title-lg span {
    color: var(--kkp-peach);
}

.kkp-term-advantages__card {
    display: grid;
    gap: 34px;
}

.kkp-term-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.kkp-term-advantage-card {
    display: grid;
    gap: 18px;
    min-height: 148px;
    padding: 24px 22px;
    border-radius: 16px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-term-advantage-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.kkp-term-advantage-card__icon img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.kkp-term-advantage-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.kkp-term-category__head {
    display: grid;
    gap: 18px;
    max-width: 1050px;
    margin-bottom: 34px;
}

.kkp-term-category__head p {
    margin: 0;
    color: rgba(39, 39, 39, 0.84);
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.kkp-term-category__head .kkp-title-lg span {
    color: var(--kkp-peach);
}

.kkp-term-category__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.kkp-catalog-card--taxonomy {
    padding: 12px;
    border-radius: 20px;
}

.kkp-catalog-card--taxonomy .kkp-catalog-card__image {
    min-height: 260px;
}

.kkp-catalog-card--taxonomy .kkp-catalog-card__body {
    gap: 10px;
    padding: 16px 4px 2px;
}

.kkp-catalog-card--taxonomy .kkp-catalog-card__body h3 {
    font-size: 22px;
    line-height: 1.08;
}

.kkp-catalog-card--taxonomy .kkp-catalog-card__body p {
    font-size: 14px;
    line-height: 1.45;
}

.kkp-catalog-card--taxonomy .kkp-catalog-card__price {
    font-size: 28px;
}

.kkp-term-benefits {
    margin-top: 12px;
    padding: 96px 0;
    background: linear-gradient(180deg, #772b25 0%, #8d342d 100%);
}

.kkp-term-benefits__card {
    display: grid;
    gap: 30px;
}

.kkp-term-benefits__row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 20px;
    align-items: stretch;
}

.kkp-term-benefits__list-card {
    padding: 26px 28px;
    border-radius: 20px;
    background: rgba(33, 14, 13, 0.32);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-term-benefits__list {
    counter-reset: benefit;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kkp-term-benefits__list li {
    position: relative;
    min-height: 30px;
    padding-left: 40px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.kkp-term-benefits__list li + li {
    margin-top: 12px;
}

.kkp-term-benefits__list li::before {
    counter-increment: benefit;
    content: counter(benefit) '.';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--kkp-peach);
    font-weight: 700;
}

.kkp-term-benefits__image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.kkp-term-benefits__note {
    padding: 18px 22px;
    border-radius: 18px;
    background: var(--kkp-peach);
    color: var(--kkp-black);
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.02em;
    box-shadow: 0 14px 32px rgba(230, 136, 91, 0.18);
}

.kkp-term-benefits__note strong,
.kkp-term-benefits__note b {
    font-weight: 600;
}

@media (max-width: 1199px) {
    .kkp-term-hero {
        grid-template-columns: 1fr;
        padding: 34px 32px;
    }

    .kkp-term-hero::before {
        display: none;
    }

    .kkp-term-advantages__grid,
    .kkp-term-category__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kkp-term-benefits__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .kkp-term-hero {
        gap: 22px;
        min-height: auto;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .kkp-term-hero__text {
        font-size: 15px;
    }

    .kkp-term-advantages {
        padding: 54px 0 58px;
    }

    .kkp-term-advantages__grid,
    .kkp-term-category__grid {
        grid-template-columns: 1fr;
    }

    .kkp-term-advantage-card {
        min-height: auto;
    }

    .kkp-catalog-card--taxonomy .kkp-catalog-card__image {
        min-height: 230px;
    }

    .kkp-catalog-card--taxonomy .kkp-catalog-card__body h3 {
        font-size: 20px;
    }

    .kkp-catalog-card--taxonomy .kkp-catalog-card__price {
        font-size: 24px;
    }

    .kkp-term-benefits {
        padding: 64px 0;
    }

    .kkp-term-benefits__list-card {
        padding: 22px 18px;
    }

    .kkp-term-benefits__list li {
        padding-left: 34px;
        font-size: 14px;
    }

    .kkp-term-benefits__note {
        padding: 16px 18px;
        font-size: 14px;
    }
}


/* Installation page */
.kkp-installation-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 34px;
    min-height: 252px;
    padding: 42px 46px;
    border-radius: var(--kkp-radius-xl);
    background:
        linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
        var(--kkp-installation-hero) center/cover no-repeat;
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-installation-hero::before {
    content: '';
    position: absolute;
    inset: -8% 28% -8% 42%;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.kkp-installation-hero__content,
.kkp-installation-hero__aside {
    position: relative;
    z-index: 1;
}

.kkp-installation-hero__content {
    display: flex;
    align-items: center;
}

.kkp-installation-hero__content h1 {
    max-width: 560px;
}

.kkp-installation-hero__aside {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 22px;
}

.kkp-installation-hero__text {
    max-width: 420px;
    color: rgba(39, 39, 39, 0.86);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.kkp-installation-hero__text p {
    margin: 0;
}

.kkp-installation-hero__button {
    min-width: 220px;
}

.kkp-installation-advantages {
    margin-top: 34px;
    padding: 72px 0 76px;
    background: linear-gradient(180deg, #772b25 18%, #e6885b 120%);
}

.kkp-installation-advantages__card {
    display: grid;
    gap: 34px;
}

.kkp-installation-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.kkp-installation-advantage-card {
    display: grid;
    align-content: start;
    gap: 20px;
    min-height: 150px;
    padding: 22px 20px 24px;
    border-radius: 16px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-installation-advantage-card__icons {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.kkp-installation-advantage-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.kkp-installation-advantage-card__icon img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.kkp-installation-advantage-card__icon.is-secondary {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

.kkp-installation-advantage-card h3 {
    margin: 0;
    color: var(--kkp-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.kkp-installation-advantage-card h3 br {
    display: block;
}

.kkp-installation-intro__head {
    display: grid;
    gap: 20px;
    max-width: 1240px;
}

.kkp-installation-intro__head .kkp-title-lg {
    max-width: 1180px;
}

.kkp-installation-intro__text,
.kkp-installation-case__content {
    color: rgba(39, 39, 39, 0.88);
    font-size: 16px;
    line-height: 1.58;
    letter-spacing: -0.02em;
}

.kkp-installation-intro__text p,
.kkp-installation-case__content p {
    margin: 0;
}

.kkp-installation-intro__text p + p,
.kkp-installation-case__content p + p {
    margin-top: 14px;
}

.kkp-installation-cases__list {
    display: grid;
    gap: 84px;
}

.kkp-installation-case {
    display: grid;
    gap: 22px;
}

.kkp-installation-case__media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-installation-case__media img {
    width: 100%;
    aspect-ratio: 1300 / 680;
    object-fit: cover;
}

.kkp-installation-case__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--kkp-peach);
    font-size: clamp(1rem, 1.45vw, 1.625rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    box-shadow: 0 12px 30px rgba(39, 39, 39, 0.08);
}

@media (max-width: 1199px) {
    .kkp-installation-hero {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 34px 32px;
    }

    .kkp-installation-hero::before {
        display: none;
    }

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

@media (max-width: 767px) {
    .kkp-installation-hero {
        gap: 22px;
        min-height: auto;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .kkp-installation-hero__text,
    .kkp-installation-intro__text,
    .kkp-installation-case__content {
        font-size: 15px;
    }

    .kkp-installation-advantages {
        padding: 54px 0 58px;
    }

    .kkp-installation-advantages__grid {
        grid-template-columns: 1fr;
    }

    .kkp-installation-advantage-card {
        min-height: auto;
    }

    .kkp-installation-cases__list {
        gap: 56px;
    }

    .kkp-installation-case__badge {
        top: 16px;
        left: 16px;
        min-height: 40px;
        padding: 10px 14px;
        border-radius: 12px;
    }
}

/* ===== Education page ===== */
.kkp-education-page {
    padding-bottom: 0;
}

.kkp-education-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    min-height: 704px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(244, 244, 244, 0.92) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(173, 173, 173, 0.12) 100%);
    box-shadow: 0 18px 44px rgba(70, 34, 28, 0.08);
}

.kkp-education-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.1) 52%, transparent 70%);
    pointer-events: none;
}

.kkp-education-hero__content,
.kkp-education-hero__media {
    position: relative;
    z-index: 1;
}

.kkp-education-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 54px 28px 44px 46px;
}

.kkp-education-hero__main {
    max-width: 650px;
}

.kkp-education-hero__title {
    margin: 0;
    color: var(--kkp-wine);
    font-size: clamp(2.5rem, 4.7vw, 4rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.kkp-education-hero__title br {
    display: block;
}

.kkp-education-hero__text {
    max-width: 620px;
    margin-top: 54px;
    color: rgba(39, 39, 39, 0.95);
    font-size: 17px;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.kkp-education-hero__text p {
    margin: 0;
}

.kkp-education-platforms {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    width: fit-content;
    max-width: 100%;
    padding: 18px 20px;
    border-radius: 24px;
    background: var(--kkp-white);
    box-shadow: 0 18px 34px rgba(62, 31, 25, 0.09);
}

.kkp-education-platforms__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.kkp-education-platforms__link:hover {
    transform: translateY(-2px);
}

.kkp-education-platforms__link img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.kkp-education-platforms__link.is-rutube img {
    width: 40px;
    height: 40px;
}

.kkp-education-platforms__link.is-youtube img {
    width: 55px;
    height: 39px;
}

.kkp-education-hero__media {
    min-height: 100%;
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.kkp-education-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkp-education-hero__button {
    position: absolute;
    right: 38px;
    bottom: 28px;
    min-width: 254px;
}

.kkp-education-videos {
    padding-top: 68px;
}

.kkp-education-videos .kkp-breadcrumbs {
    margin-bottom: 28px;
}

.kkp-education-videos__head {
    margin-bottom: 38px;
}

.kkp-education-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.kkp-education-video-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(70, 34, 28, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kkp-education-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(70, 34, 28, 0.11);
}

.kkp-education-video-card__media {
    position: relative;
    aspect-ratio: 420 / 258;
}

.kkp-education-video-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.03) 100%);
}

.kkp-education-video-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkp-education-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 32px rgba(70, 34, 28, 0.18);
    transform: translate(-50%, -50%);
}

.kkp-education-video-card__play-icon {
    display: block;
    width: 52px;
    height: 40px;
    background: url('../media/training/video-play.svg') center/contain no-repeat;
}

@media (max-width: 1199px) {
    .kkp-education-hero {
        grid-template-columns: 1fr 0.92fr;
        min-height: 620px;
    }

    .kkp-education-hero__content {
        padding: 42px 24px 34px 34px;
    }

    .kkp-education-hero__button {
        right: 24px;
        bottom: 20px;
    }
}

@media (max-width: 1023px) {
    .kkp-education-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .kkp-education-hero__content {
        padding: 34px 24px 26px;
        gap: 28px;
    }

    .kkp-education-hero__text {
        margin-top: 28px;
    }

    .kkp-education-platforms {
        gap: 18px;
        padding: 16px 18px;
    }

    .kkp-education-hero__media {
        min-height: 420px;
        clip-path: none;
    }

    .kkp-education-hero__button {
        right: 20px;
        bottom: 20px;
        min-width: 0;
    }

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

@media (max-width: 767px) {
    .kkp-education-hero {
        border-radius: 18px;
    }

    .kkp-education-hero__content {
        padding: 28px 18px 18px;
    }

    .kkp-education-hero__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .kkp-education-hero__text {
        font-size: 15px;
    }

    .kkp-education-hero__media {
        min-height: 320px;
    }

    .kkp-education-hero__button {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        justify-content: space-between;
    }

    .kkp-education-videos {
        padding-top: 48px;
    }

    .kkp-education-videos__head {
        margin-bottom: 26px;
    }

    .kkp-education-grid {
        grid-template-columns: 1fr;
    }

    .kkp-education-video-card__play {
        width: 74px;
        height: 74px;
    }

    .kkp-education-video-card__play-icon {
        width: 44px;
        height: 34px;
    }
}

@media (max-width: 575px) {
    .kkp-education-platforms {
        gap: 12px;
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
        border-radius: 20px;
    }

    .kkp-education-platforms__link img {
        width: 34px;
        height: 34px;
    }

    .kkp-education-platforms__link.is-youtube img {
        width: 47px;
        height: 33px;
    }

    .kkp-education-hero__media {
        min-height: 260px;
    }
}


/* ===== Delivery page ===== */
.kkp-delivery-page {
    padding-bottom: 0;
}

.kkp-delivery-page__hero .kkp-breadcrumbs {
    margin-bottom: 30px;
}

.kkp-delivery-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 136, 91, 0.62);
    border-radius: 25px;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
        var(--kkp-delivery-bg) center/cover no-repeat;
    box-shadow: 0 18px 42px rgba(70, 34, 28, 0.08);
}

.kkp-delivery-hero__content {
    padding: 66px 46px 58px;
    min-height: 255px;
}

.kkp-delivery-hero__title {
    margin: 0;
    color: var(--kkp-black);
    font-size: clamp(2.5rem, 4.25vw, 3.4375rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.kkp-delivery-hero__text {
    max-width: 1010px;
    margin-top: 36px;
    color: rgba(39, 39, 39, 0.94);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.kkp-delivery-intro__title {
    max-width: 1220px;
    margin: 0;
    color: var(--kkp-black);
    font-size: clamp(2.4rem, 4vw, 3.125rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.kkp-delivery-intro__title span {
    color: var(--kkp-peach);
}

.kkp-delivery-table {
    margin-top: 60px;
}

.kkp-delivery-table__body {
    display: grid;
    gap: 16px;
    margin-top: 14px;
}

.kkp-delivery-table__row {
    display: grid;
    grid-template-columns: minmax(180px, 1.1fr) minmax(120px, 0.58fr) minmax(150px, 0.86fr) minmax(170px, 0.92fr);
    align-items: center;
    gap: 24px;
}

.kkp-delivery-table__row.is-head {
    padding: 22px 26px;
    border-radius: 10px;
    background: var(--kkp-peach);
    color: var(--kkp-white);
    font-size: clamp(1.5rem, 2.5vw, 2.1875rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.kkp-delivery-table__row.is-body {
    color: var(--kkp-black);
    font-size: clamp(1.125rem, 1.9vw, 1.5625rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.kkp-delivery-table__row.is-plain {
    padding: 0 14px;
}

.kkp-delivery-table__row.is-accent {
    padding: 16px 14px;
    border-radius: 10px;
    background: var(--kkp-white);
}

.kkp-delivery-table__cell {
    min-width: 0;
}

.kkp-delivery-steps {
    margin: 58px 0 0;
    padding-left: 28px;
    color: rgba(39, 39, 39, 0.96);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.kkp-delivery-steps li + li {
    margin-top: 4px;
}

@media (max-width: 1023px) {
    .kkp-delivery-hero__content {
        padding: 48px 32px 42px;
        min-height: 0;
    }

    .kkp-delivery-hero__text {
        margin-top: 26px;
    }

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

@media (max-width: 767px) {
    .kkp-delivery-page__hero .kkp-breadcrumbs {
        margin-bottom: 22px;
    }

    .kkp-delivery-hero {
        border-radius: 20px;
    }

    .kkp-delivery-hero__content {
        padding: 34px 20px 30px;
    }

    .kkp-delivery-hero__text {
        font-size: 16px;
        line-height: 1.36;
    }

    .kkp-delivery-intro__title {
        line-height: 1.02;
    }

    .kkp-delivery-table {
        margin-top: 34px;
    }

    .kkp-delivery-table__row.is-head {
        display: none;
    }

    .kkp-delivery-table__body {
        gap: 14px;
        margin-top: 0;
    }

    .kkp-delivery-table__row.is-body,
    .kkp-delivery-table__row.is-plain,
    .kkp-delivery-table__row.is-accent {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 18px;
        border-radius: 14px;
        background: var(--kkp-white);
        box-shadow: var(--kkp-shadow-soft);
    }

    .kkp-delivery-table__cell {
        display: grid;
        gap: 4px;
    }

    .kkp-delivery-table__cell::before {
        content: attr(data-label);
        color: rgba(39, 39, 39, 0.55);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .kkp-delivery-steps {
        margin-top: 34px;
        padding-left: 22px;
        font-size: 15px;
        line-height: 1.3;
    }
}

/* ========================================
   Contacts page
======================================== */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.kkp-contacts-page__top {
    padding-bottom: 60px;
}

.kkp-contacts-page__header {
    margin-top: 4px;
}

.kkp-contacts-filter {
    margin-top: 34px;
    max-width: 420px;
}

.kkp-contacts-filter__control {
    position: relative;
    display: block;
}

.kkp-contacts-filter__control::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 22px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--kkp-white);
    border-bottom: 2px solid var(--kkp-white);
    transform: translateY(-62%) rotate(45deg);
    pointer-events: none;
}

.kkp-contacts-filter select {
    width: 100%;
    min-height: 58px;
    padding: 15px 54px 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: var(--kkp-peach);
    color: var(--kkp-white);
    font-size: 16px;
    line-height: 1.3;
    appearance: none;
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-contacts-filter select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 136, 91, 0.18);
}

.kkp-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.kkp-contact-card {
    display: grid;
    gap: 22px;
    min-height: 210px;
    padding: 24px 26px 28px;
    border: 1px solid rgba(230, 136, 91, 0.28);
    border-radius: 22px;
    background: var(--kkp-white);
    box-shadow: 0 5px 11px rgba(230, 136, 91, 0.1), 0 20px 20px rgba(230, 136, 91, 0.09), 0 44px 26px rgba(230, 136, 91, 0.05);
}

.kkp-contact-card.is-filtered-out {
    display: none;
}

.kkp-contact-card__title {
    margin: 0;
    color: var(--kkp-peach);
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.kkp-contact-card__address,
.kkp-contacts-warehouse__address {
    color: rgba(39, 39, 39, 0.9);
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.kkp-contact-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(39, 39, 39, 0.92);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.kkp-contact-card__phone img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.kkp-contacts-map {
    margin-top: 34px;
    overflow: hidden;
    border-radius: 22px;
}

.kkp-contacts-map img {
    width: 100%;
    display: block;
}

.kkp-contacts-warehouse {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 558px);
    gap: 34px;
    align-items: center;
    margin-top: 36px;
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(180deg, #772b25 19%, #e6885b 113%);
}

.kkp-contacts-warehouse__card {
    display: grid;
    gap: 24px;
    padding: 26px 24px;
    border-radius: 20px;
    background: var(--kkp-white);
}

.kkp-crews-page {
    padding-top: 0;
    padding-bottom: 95px;
}

.kkp-crews-page__inner {
    padding-top: 58px;
    border-top: 1px solid rgba(39, 39, 39, 0.18);
}

.kkp-crews-note {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
    padding: 20px 24px;
    border-radius: 20px;
    background: var(--kkp-white);
    box-shadow: 0 5px 11px rgba(230, 136, 91, 0.1), 0 20px 20px rgba(230, 136, 91, 0.09), 0 44px 26px rgba(230, 136, 91, 0.05);
}

.kkp-crews-note img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.kkp-crews-note p {
    margin: 0;
    color: rgba(39, 39, 39, 0.92);
    font-size: 18px;
    line-height: 1.26;
}

.kkp-contacts-map--crews {
    margin-top: 54px;
}

/* ========================================
   Partners page
======================================== */

.kkp-partners-page__section {
    padding-bottom: 88px;
}

.kkp-partners-page__hero {
    max-width: 980px;
}

.kkp-partners-page__hero .kkp-title-xl {
    max-width: 900px;
    line-height: 0.98;
}

.kkp-partners-page__text {
    max-width: 700px;
    margin-top: 46px;
    color: rgba(39, 39, 39, 0.92);
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.kkp-partners-page__text p {
    margin: 0;
}

.kkp-partners-form {
    margin-top: 54px;
    color: var(--kkp-black);
}

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

.kkp-partners-form__field {
    gap: 14px;
}

.kkp-partners-form__field span,
.kkp-partners-form__roles-title {
    color: var(--kkp-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.kkp-partners-form__field input,
.kkp-partners-form__field textarea {
    min-height: 58px;
    padding: 17px 18px;
    border-color: rgba(39, 39, 39, 0.14);
    border-radius: 15px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    font-size: 16px;
    line-height: 1.35;
}

.kkp-partners-form__field input::placeholder,
.kkp-partners-form__field textarea::placeholder {
    color: rgba(39, 39, 39, 0.45);
}

.kkp-partners-form__field textarea {
    min-height: 58px;
    resize: vertical;
}

.kkp-partners-form__roles {
    display: grid;
    gap: 14px;
}

.kkp-partners-form__roles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kkp-partners-form__role-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kkp-partners-form__role-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 18px;
    border: 1px solid rgba(39, 39, 39, 0.14);
    border-radius: 15px;
    background: var(--kkp-white);
    color: var(--kkp-black);
    font-size: 16px;
    line-height: 1.3;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.kkp-partners-form__role-button:hover {
    transform: translateY(-1px);
}

.kkp-partners-form__role-input:checked + .kkp-partners-form__role-button {
    border-color: var(--kkp-black);
    background: var(--kkp-black);
    color: var(--kkp-white);
}

.kkp-partners-form__consent {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: rgba(39, 39, 39, 0.86);
    font-size: 12px;
    line-height: 1.4;
}

.kkp-partners-form__consent input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--kkp-peach);
}

.kkp-partners-form__consent a {
    text-decoration: underline;
}

.kkp-partners-form__submit {
    margin-top: 18px;
}

.kkp-partners-form .kkp-form__response {
    margin-top: 14px;
    background: rgba(230, 136, 91, 0.14);
    color: var(--kkp-black);
}

@media (max-width: 1199px) {
    .kkp-contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kkp-contacts-warehouse {
        grid-template-columns: 1fr;
    }

    .kkp-contacts-warehouse__card {
        max-width: 620px;
    }
}

@media (max-width: 991px) {
    .kkp-contacts-page__top {
        padding-bottom: 42px;
    }

    .kkp-contact-card__title {
        font-size: 28px;
    }

    .kkp-contact-card__address,
    .kkp-contacts-warehouse__address,
    .kkp-contact-card__phone {
        font-size: 18px;
    }

    .kkp-partners-form__grid {
        grid-template-columns: 1fr;
    }

    .kkp-partners-page__text {
        margin-top: 32px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .kkp-contacts-filter {
        max-width: 100%;
        margin-top: 26px;
    }

    .kkp-contacts-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .kkp-contact-card {
        min-height: auto;
        padding: 22px 18px 22px;
        gap: 18px;
        border-radius: 18px;
    }

    .kkp-contact-card__title {
        font-size: 24px;
    }

    .kkp-contact-card__address,
    .kkp-contacts-warehouse__address,
    .kkp-contact-card__phone,
    .kkp-crews-note p {
        font-size: 16px;
    }

    .kkp-contacts-warehouse {
        gap: 24px;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .kkp-crews-page {
        padding-bottom: 68px;
    }

    .kkp-crews-page__inner {
        padding-top: 42px;
    }

    .kkp-crews-note {
        display: grid;
        grid-template-columns: 24px 1fr;
        align-items: start;
        margin-top: 28px;
        padding: 16px 18px;
        border-radius: 16px;
    }

    .kkp-contacts-map,
    .kkp-contacts-map--crews {
        margin-top: 24px;
    }

    .kkp-partners-page__section {
        padding-bottom: 68px;
    }

    .kkp-partners-form {
        margin-top: 36px;
    }

    .kkp-partners-form__roles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .kkp-partners-form__field span,
    .kkp-partners-form__roles-title {
        font-size: 16px;
    }

    .kkp-partners-form__field,
    .kkp-partners-form__roles {
        gap: 10px;
    }

    .kkp-partners-page__text {
        font-size: 16px;
        line-height: 1.4;
    }
}


.kkp-header__search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--kkp-black);
    transition: color .2s ease;
}

.kkp-header__search-toggle:hover,
.kkp-header__search-toggle[aria-expanded="true"] {
    color: var(--kkp-wine);
}

.kkp-header__search-toggle svg {
    width: 20px;
    height: 20px;
}

.kkp-search-panel {
    padding: 0 0 16px;
    border-top: 1px solid rgba(39, 39, 39, 0.08);
    background: var(--kkp-cream);
}

.kkp-search-panel.is-open {
    display: block;
}

.kkp-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding-top: 16px;
}

.kkp-search-form__input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid var(--kkp-border);
    border-radius: var(--kkp-radius-sm);
    background: var(--kkp-white);
    color: var(--kkp-black);
}

.kkp-search-results-page__head {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.kkp-search-form--page {
    padding-top: 0;
}

.kkp-search-results {
    display: grid;
    gap: 18px;
    padding-bottom: 48px;
}

.kkp-search-result-card,
.kkp-search-empty {
    padding: 24px;
    border: 1px solid var(--kkp-border);
    border-radius: var(--kkp-radius-md);
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
}

.kkp-search-result-card__type {
    margin-bottom: 10px;
    color: var(--kkp-peach);
    font-size: 14px;
    font-weight: 600;
}

.kkp-search-result-card__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.1;
}

.kkp-search-result-card__title a:hover {
    color: var(--kkp-wine);
}

.kkp-search-result-card__excerpt {
    color: var(--kkp-gray);
}

@media (max-width: 1023px) {
    .kkp-search-form {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Home page refinements + project templates
======================================== */

.kkp-btn--center {
    justify-content: center;
    gap: 0;
    padding-inline: 24px;
    text-align: center;
}

.kkp-hero__card {
    position: relative;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
    min-height: 770px;
    background:
        linear-gradient(90deg, rgba(250, 246, 241, 0.95) 0 43%, rgba(250, 246, 241, 0.8) 43% 56%, rgba(250, 246, 241, 0.3) 70%, rgba(250, 246, 241, 0.08) 100%),
        var(--kkp-hero-bg) center/cover no-repeat;
    overflow: hidden;
}

.kkp-hero__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%, rgba(39, 39, 39, 0.08) 100%);
    pointer-events: none;
}

.kkp-hero__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    min-height: 770px;
    padding: 62px 34px 50px 48px;
}

.kkp-hero__copy {
    max-width: 720px;
    margin-right: -140px;
}

.kkp-hero__content .kkp-title-xl {
    max-width: 760px;
    font-size: clamp(3rem, 4.8vw, 4.5rem);
    line-height: 0.98;
}

.kkp-hero__text {
    max-width: 470px;
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.25;
}

.kkp-hero__quote {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.25;
}

.kkp-hero__content .kkp-btn {
    margin-top: auto;
    align-self: flex-start;
}

.kkp-hero__media {
    position: relative;
    min-height: 100%;
    background: none;
}

.kkp-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 100%);
    clip-path: polygon(34% 0, 100% 0, 100% 100%, 56% 100%);
    opacity: 0.9;
    pointer-events: none;
}

.kkp-hero__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 78%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.22) 100%);
    clip-path: polygon(52% 0, 100% 0, 66% 100%, 18% 100%);
    opacity: 0.82;
    pointer-events: none;
}

.kkp-hero__person {
    right: 10px;
    bottom: 0;
    width: min(520px, 88%);
    max-width: none;
}

.kkp-hero__socials {
    right: 28px;
    bottom: 28px;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(39, 39, 39, 0.14);
}

.kkp-hero__socials .kkp-socials__link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
}

.kkp-hero__socials .kkp-socials__link img {
    width: 20px;
    height: 20px;
}

.kkp-hero__socials .kkp-socials__link.is-rutube img {
    width: 24px;
    height: 24px;
}

.kkp-samples {
    position: relative;
    z-index: 2;
}

.kkp-samples__inner {
    align-items: end;
}

.kkp-samples__stack {
    margin-bottom: -50px;
}

.kkp-samples__stack img {
    filter: none;
}

.kkp-samples__stack .is-back {
    left: 0;
    width: 300px;
    transform: rotate(-4deg);
}

.kkp-samples__stack .is-middle {
    left: 160px;
    width: 280px;
    transform: translateY(10px);
}

.kkp-samples__stack .is-front {
    right: 6px;
    width: 260px;
    transform: rotate(2deg) translateY(8px);
}

.kkp-features {
    position: relative;
    padding-top: 26px;
    color: var(--kkp-white);
    z-index: 9;
}

.kkp-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--kkp-wine) 0%, var(--kkp-peach) 100%);
    box-shadow: var(--kkp-shadow);
}

.kkp-features .kkp-container {
    position: relative;
    z-index: 1;
    padding-top: 54px;
    padding-bottom: 56px;
    background: none;
    box-shadow: none;
}

.kkp-features__head,
.kkp-features__grid {
    padding-inline: 0;
}

.kkp-features__head {
    max-width: 980px;
}

.kkp-feature-card {
    gap: 18px;
    min-height: 110px;
    padding: 20px 22px;
}

.kkp-feature-card__main {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
}

.kkp-feature-card h3 {
    max-width: none;
    flex: 1 1 auto;
}

.kkp-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(230, 136, 91, 0.12);
}

.kkp-feature-card__icon::before,
.kkp-feature-card__icon::after {
    display: none;
}

.kkp-feature-card__icon img {
    width: 30px;
    height: 30px;
    max-width: 100%;
    object-fit: contain;
}

.kkp-feature-card__arrow {
    position: relative;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--kkp-wine);
}

.kkp-feature-card__arrow::before,
.kkp-feature-card__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
}

.kkp-feature-card__arrow::before {
    width: 12px;
    height: 2px;
    background: var(--kkp-white);
    transform: translate(-36%, -50%);
}

.kkp-feature-card__arrow::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--kkp-white);
    border-right: 2px solid var(--kkp-white);
    transform: translate(0, -50%) rotate(45deg);
}

.kkp-pricing-card__list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}

.kkp-pricing-card__list li > span:not(.kkp-pricing-card__dot) {
    flex: 1 1 calc(100% - 30px);
    min-width: 0;
}

.kkp-pricing-card__list strong {
    flex: 1 1 100%;
    padding-left: 30px;
}

.kkp-pricing .kkp-btn--wine {
    background: var(--kkp-peach);
}

.kkp-lead-form .kkp-btn--dark {
    background: var(--kkp-black);
}

.kkp-applications__grid {
    gap: 22px;
}

.kkp-application-card__link::before {
    width: 84%;
    clip-path: polygon(0 0, 58% 0, 84% 100%, 0 100%);
}

.kkp-application-card p {
    max-width: 340px;
}

.kkp-lessons__card {
    overflow: visible;
    isolation: isolate;
}

.kkp-lessons__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, #8d3129 0%, #d67749 100%);
    box-shadow: var(--kkp-shadow);
    z-index: 0;
}

.kkp-lessons__content {
    max-width: 56%;
    padding: 36px 32px 28px;
}

.kkp-lessons__previews {
    margin-top: 26px;
    position: relative;
    min-height: 220px;
}

.kkp-lessons__previews img {
    max-width: none;
    width: 170px;
    position: absolute;
    z-index: 2;
}

.kkp-lessons__previews img + img {
    margin-left: -34px;
}

.kkp-lessons__previews img:nth-child(1) {
    width: 320px;
    transform: rotate(-8deg) translateY(14px);
    left: 0;
    top: 0;
}

.kkp-lessons__previews img:nth-child(2) {
    width: 290px;
    transform: rotate(-2deg);
    left: 40px;
    top: 60px;
    z-index: 2;
}

.kkp-lessons__previews img:nth-child(3) {
    width: 300px;
    transform: rotate(6deg) translateY(10px);
    bottom: 35px;
    left: 150px;
}

.kkp-lessons__person {
    right: 10px;
    bottom: 0;
    width: min(800px, 50%);
}

.kkp-lessons__person img {
    width: 100%;
    max-width: none;
}

.kkp-project-archive {
    padding-bottom: 0;
}

.kkp-project-archive__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) 330px;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fffaf5 0%, #f1e4d9 100%);
    box-shadow: var(--kkp-shadow);
}

.kkp-project-archive__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(119, 43, 37, 0.09);
    color: var(--kkp-wine);
    font-size: 13px;
    font-weight: 600;
}

.kkp-project-archive__hero-copy p {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.58;
    color: rgba(39, 39, 39, 0.84);
}

.kkp-project-archive__hero-aside {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--kkp-wine) 0%, #b45c39 100%);
    color: var(--kkp-white);
}

.kkp-project-archive__fact {
    display: grid;
    gap: 4px;
}

.kkp-project-archive__fact strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 600;
}

.kkp-project-archive__fact span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.45;
}

.kkp-project-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.kkp-project-archive__filter {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kkp-project-archive__filter:hover {
    transform: translateY(-1px);
}

.kkp-project-archive__filter.is-active {
    background: var(--kkp-wine);
    color: var(--kkp-white);
}

.kkp-project-teasers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.kkp-project-teaser {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
    overflow: hidden;
}

.kkp-project-teaser__image {
    display: block;
    aspect-ratio: 1.1 / 0.86;
    background: #ece8e5;
}

.kkp-project-teaser__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkp-project-teaser__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.kkp-project-teaser__category {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(230, 136, 91, 0.13);
    color: var(--kkp-wine);
    font-size: 13px;
    font-weight: 600;
}

.kkp-project-teaser__title {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.kkp-project-teaser__text {
    margin: 0;
    color: rgba(39, 39, 39, 0.76);
    line-height: 1.58;
}

.kkp-project-teaser__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.kkp-project-teaser__price {
    color: var(--kkp-wine);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.1;
}

.kkp-project-archive__pagination {
    margin-top: 28px;
}

.kkp-project-archive__pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.kkp-project-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    font-size: 14px;
    font-weight: 500;
}

.kkp-project-archive__pagination .page-numbers.current {
    background: var(--kkp-wine);
    color: var(--kkp-white);
}

.kkp-project-archive__empty {
    display: grid;
    gap: 16px;
    margin-top: 28px;
    padding: 32px;
    border-radius: 28px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
}

.kkp-project-archive__empty p {
    max-width: 620px;
    margin: 0;
    color: rgba(39, 39, 39, 0.76);
    line-height: 1.58;
}

.kkp-project-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    padding: 28px;
    border-radius: 30px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow);
}

.kkp-project-single__gallery {
    display: grid;
    gap: 14px;
}

.kkp-project-single__main-image {
    min-height: 420px;
    border-radius: 24px;
    background: #ece8e5;
    overflow: hidden;
}

.kkp-project-single__main-image img,
.kkp-project-single__thumb img,
.kkp-project-single__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kkp-project-single__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.kkp-project-single__thumb {
    aspect-ratio: 1 / 0.82;
    border-radius: 18px;
    background: #ece8e5;
    overflow: hidden;
}

.kkp-project-single__summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 6px 4px 6px 0;
}

.kkp-project-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kkp-project-single__tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(230, 136, 91, 0.12);
    color: var(--kkp-wine);
    font-size: 13px;
    font-weight: 600;
}

.kkp-project-single__intro {
    margin: 0;
    color: rgba(39, 39, 39, 0.8);
    font-size: 18px;
    line-height: 1.58;
}

.kkp-project-single__price {
    display: grid;
    gap: 6px;
    padding: 20px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff7ef 0%, #f0e0d2 100%);
}

.kkp-project-single__price span {
    color: rgba(39, 39, 39, 0.62);
    font-size: 14px;
}

.kkp-project-single__price strong {
    color: var(--kkp-wine);
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1;
    font-weight: 600;
}

.kkp-project-single__specs {
    display: grid;
    gap: 12px;
    margin: 0;
}

.kkp-project-single__spec {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--kkp-border);
}

.kkp-project-single__spec dt,
.kkp-project-single__spec dd {
    margin: 0;
    font-size: 16px;
    line-height: 1.48;
}

.kkp-project-single__spec dt {
    color: rgba(39, 39, 39, 0.58);
}

.kkp-project-single__spec dd {
    font-weight: 600;
}

.kkp-project-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.kkp-project-single__body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-top: 28px;
}

.kkp-project-single__content,
.kkp-project-single__results {
    border-radius: 28px;
    box-shadow: var(--kkp-shadow);
}

.kkp-project-single__content {
    padding: 30px;
    background: var(--kkp-white);
}

.kkp-project-single__content h2 {
    margin-top: 0;
    margin-bottom: 18px;
}

.kkp-project-single__results {
    padding: 30px;
    background: linear-gradient(180deg, var(--kkp-wine) 0%, #b45c39 100%);
    color: var(--kkp-white);
}

.kkp-project-single__results h2 {
    margin: 0 0 18px;
    color: var(--kkp-white);
}

.kkp-project-single__results ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kkp-project-single__results li {
    position: relative;
    padding-left: 20px;
    line-height: 1.55;
}

.kkp-project-single__results li::before {
    content: '';
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kkp-peach);
}

.kkp-project-single__gallery-section,
.kkp-project-single__related {
    margin-top: 28px;
}

.kkp-project-single__related.section-space {
    padding-top: 0;
}

.kkp-project-single__section-head {
    margin-bottom: 18px;
}

.kkp-project-single__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kkp-project-single__gallery-item {
    margin: 0;
    aspect-ratio: 1.04 / 0.86;
    border-radius: 22px;
    background: var(--kkp-white);
    box-shadow: var(--kkp-shadow-soft);
    overflow: hidden;
}

@media (max-width: 1279px) {
    .kkp-hero__card {
        grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
        min-height: 710px;
    }

    .kkp-hero__content {
        min-height: 710px;
        padding-left: 40px;
    }

    .kkp-hero__copy {
        margin-right: -96px;
    }

    .kkp-project-teasers,
    .kkp-project-single__gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kkp-project-archive__hero {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

@media (max-width: 1023px) {
    .kkp-hero__card {
        grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
        min-height: 0;
    }

    .kkp-hero__content {
        min-height: 560px;
        padding: 38px 24px 30px;
    }

    .kkp-hero__copy {
        max-width: 560px;
        margin-right: -54px;
    }

    .kkp-hero__media {
        order: 0;
        min-height: 100%;
    }

    .kkp-hero__person {
        right: -12px;
        width: min(390px, 96%);
    }

    .kkp-hero__socials {
        right: 18px;
        bottom: 18px;
    }

    .kkp-samples__stack {
        height: 320px;
        margin-top: 0;
        margin-bottom: -42px;
    }

    .kkp-features {
        padding-top: 20px;
    }

    .kkp-features .kkp-container {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .kkp-project-archive__hero,
    .kkp-project-single__hero,
    .kkp-project-single__body-grid {
        grid-template-columns: 1fr;
    }

    .kkp-project-single__content,
    .kkp-project-single__results {
        padding: 24px;
    }

    .kkp-lessons__content {
        max-width: 64%;
    }

    .kkp-lessons__person {
        position: absolute;
        right: 0;
        width: min(340px, 46%);
        margin: 0;
    }

    .kkp-lessons__person img {
        transform: translateY(-24px);
    }
}

@media (max-width: 767px) {
    .kkp-hero__card {
        grid-template-columns: minmax(0, 1.12fr) minmax(160px, 0.88fr);
        min-height: 0;
    }

    .kkp-hero__content {
        min-height: 0;
        gap: 18px;
        padding: 24px 18px 22px;
    }

    .kkp-hero__copy {
        max-width: 340px;
        margin-right: -36px;
    }

    .kkp-hero__content .kkp-title-xl {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 0.98;
    }

    .kkp-hero__text {
        max-width: 220px;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.22;
    }

    .kkp-hero__quote {
        margin-top: 16px;
        font-size: 14px;
    }

    .kkp-hero__content .kkp-btn {
        min-height: 42px;
        padding: 8px 10px 8px 14px;
        border-radius: 10px;
        font-size: 12px;
        gap: 10px;
    }

    .kkp-hero__content .kkp-btn .kkp-btn__icon {
        width: 16px;
        height: 16px;
    }

    .kkp-hero__panel {
        width: 92%;
        opacity: 0.66;
    }

    .kkp-hero__person {
        right: -18px;
        width: min(255px, 110%);
    }

    .kkp-hero__socials {
        right: 10px;
        bottom: 10px;
        gap: 4px;
        padding: 5px;
        border-radius: 12px;
    }

    .kkp-hero__socials .kkp-socials__link {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .kkp-hero__socials .kkp-socials__link img {
        width: 13px;
        height: 13px;
    }

    .kkp-hero__socials .kkp-socials__link.is-rutube img {
        width: 18px;
        height: 18px;
    }

    .kkp-samples__stack {
        height: 240px;
        margin-bottom: -30px;
    }

    .kkp-samples__stack .is-back {
        width: 148px;
    }

    .kkp-samples__stack .is-middle {
        left: 72px;
        width: 150px;
    }

    .kkp-samples__stack .is-front {
        width: 136px;
    }

    .kkp-feature-card__main {
        gap: 12px;
    }

    .kkp-feature-card__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .kkp-feature-card__icon img {
        width: 24px;
        height: 24px;
    }

    .kkp-feature-card__arrow {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .kkp-application-card__link::before {
        width: 90%;
        clip-path: polygon(0 0, 64% 0, 90% 100%, 0 100%);
    }

    .kkp-lessons__content {
        max-width: none;
        padding: 24px 18px 0;
    }

    .kkp-lessons__previews {
        justify-content: flex-start;
        margin-top: 22px;
    }

    .kkp-lessons__previews img {
        width: 126px;
    }

    .kkp-lessons__previews img:nth-child(1) {
        width: 114px;
    }

    .kkp-lessons__previews img:nth-child(2) {
        width: 136px;
    }

    .kkp-lessons__previews img:nth-child(3) {
        width: 120px;
    }

    .kkp-lessons__person {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(240px, 86%);
        margin: 0 auto -6px;
    }

    .kkp-lessons__person img {
        transform: translateY(-18px);
    }

    .kkp-project-teasers,
    .kkp-project-single__gallery-grid {
        grid-template-columns: 1fr;
    }

    .kkp-project-teaser__footer,
    .kkp-project-single__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .kkp-project-archive__hero,
    .kkp-project-single__hero {
        padding: 22px 20px;
    }

    .kkp-project-archive__hero-copy p,
    .kkp-project-single__intro {
        font-size: 16px;
    }

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

    .kkp-project-single__spec {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 575px) {
    .kkp-features {
        padding-top: 16px;
    }

    .kkp-features .kkp-container,
    .kkp-project-single__content,
    .kkp-project-single__results {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kkp-project-archive__hero,
    .kkp-project-single__hero {
        border-radius: 24px;
    }

    .kkp-project-archive__hero-aside,
    .kkp-project-single__price,
    .kkp-project-single__content,
    .kkp-project-single__results {
        border-radius: 20px;
    }
}


/* ========================================
   Adaptive + motion upgrade (preserve custom base)
======================================== */

html {
    scroll-padding-top: 104px;
}

body {
    overflow-x: clip;
}

.kkp-contact-chip__icon {
    background: url('../media/block/btn-email-icon.svg') center / 15px 14px no-repeat;
}

.kkp-contact-chip__icon::before,
.kkp-contact-chip__icon::after {
    content: none;
    display: none;
}

.kkp-contact-chip__icon--phone {
    background-image: url('../media/block/card-graphic.svg');
    background-size: 15px 15px;
}

.kkp-header {
    transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.kkp-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(39, 39, 39, 0.04);
    box-shadow: 0 18px 34px rgba(39, 39, 39, 0.08);
}

.kkp-btn,
.kkp-slider-nav__button,
.kkp-socials__link,
.kkp-contact-chip,
.kkp-project-archive__filter,
.kkp-header__search-toggle {
    position: relative;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background-color 0.3s ease, color 0.25s ease;
}

.kkp-btn {
    overflow: hidden;
}

.kkp-btn::after {
    content: '';
    position: absolute;
    inset: -42%;
    z-index: 0;
    background: radial-gradient(circle at var(--kkp-pointer-x, 50%) var(--kkp-pointer-y, 50%), rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 48%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.kkp-btn:hover::after,
.kkp-btn:focus-visible::after {
    opacity: 1;
}

.kkp-btn > span,
.kkp-socials__link img,
.kkp-contact-chip > span {
    position: relative;
    z-index: 1;
}

.kkp-btn:focus-visible,
.kkp-slider-nav__button:focus-visible,
.kkp-socials__link:focus-visible,
.kkp-contact-chip:focus-visible,
.kkp-project-archive__filter:focus-visible,
.kkp-header__search-toggle:focus-visible {
    outline: 2px solid rgba(230, 136, 91, 0.95);
    outline-offset: 3px;
}

.kkp-feature-card__arrow,
.kkp-application-card__link::before,
.kkp-project-teaser__image img,
.kkp-project-card__image img,
.kkp-material-card__image img,
.kkp-product-hero-card__image img,
.kkp-post-card__image img,
.kkp-project-single__main-image img,
.kkp-project-single__thumb img,
.kkp-project-single__gallery-item img,
.kkp-review-card__image img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s ease, background-color 0.35s ease;
}

:where(
    .kkp-product-hero-card,
    .kkp-material-card,
    .kkp-pricing-card,
    .kkp-application-card,
    .kkp-project-card,
    .kkp-project-teaser,
    .kkp-feature-card,
    .kkp-review-card,
    .kkp-contact-cta__card,
    .kkp-vases__banner,
    .kkp-project-single__main-image,
    .kkp-project-single__thumb,
    .kkp-project-single__gallery-item,
    .kkp-project-single__results,
    .kkp-project-single__content,
    .kkp-project-archive__hero,
    .kkp-project-archive__hero-aside,
    .kkp-post-card,
    .kkp-article
) {
    transform: translate3d(0, 0, 0);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background-color 0.3s ease;
    will-change: transform;
}

.kkp-reveal {
    --kkp-reveal-base-transform: translate3d(0, 0, 0);
    --kkp-reveal-translate-x: 0px;
    --kkp-reveal-translate-y: 28px;
    opacity: 0;
    transform: var(--kkp-reveal-base-transform) translate3d(var(--kkp-reveal-translate-x), var(--kkp-reveal-translate-y), 0) scale(0.985);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--kkp-reveal-delay, 0ms);
    will-change: transform, opacity;
}

.kkp-reveal[data-kkp-reveal-direction='left'] {
    --kkp-reveal-translate-x: -28px;
    --kkp-reveal-translate-y: 18px;
}

.kkp-reveal[data-kkp-reveal-direction='right'] {
    --kkp-reveal-translate-x: 28px;
    --kkp-reveal-translate-y: 18px;
}

.kkp-reveal.is-visible {
    opacity: 1;
    transform: var(--kkp-reveal-base-transform) translate3d(0, 0, 0) scale(1);
}

.kkp-hero__person {
    --kkp-reveal-base-transform: translate3d(var(--kkp-hero-shift-x, 0px), calc(var(--kkp-hero-shift-y, 0px) + var(--kkp-hero-scroll, 0px)), 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.kkp-hero__panel {
    transform: translate3d(calc(var(--kkp-hero-shift-x, 0px) * -0.36), calc(var(--kkp-hero-scroll, 0px) * 0.16), 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.kkp-mobile-panel.is-open,
.kkp-search-panel.is-open {
    animation: kkp-panel-reveal 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes kkp-panel-reveal {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: hover) and (pointer: fine) {
    :where(
        .kkp-product-hero-card,
        .kkp-material-card,
        .kkp-pricing-card,
        .kkp-application-card,
        .kkp-project-card,
        .kkp-project-teaser,
        .kkp-feature-card,
        .kkp-review-card,
        .kkp-vases__banner,
        .kkp-project-single__main-image,
        .kkp-project-single__thumb,
        .kkp-project-single__gallery-item,
        .kkp-project-single__results,
        .kkp-project-single__content,
        .kkp-project-archive__hero,
        .kkp-project-archive__hero-aside,
        .kkp-post-card,
        .kkp-article
    ):hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 54px rgba(70, 34, 28, 0.14);
    }

    .kkp-feature-card:hover .kkp-feature-card__arrow {
        transform: translateX(3px);
        background: var(--kkp-peach);
    }

    .kkp-application-card:hover .kkp-application-card__link::before {
        width: 92%;
    }

    .kkp-project-teaser:hover .kkp-project-teaser__image img,
    .kkp-project-card:hover .kkp-project-card__image img,
    .kkp-material-card:hover .kkp-material-card__image img,
    .kkp-product-hero-card:hover .kkp-product-hero-card__image img,
    .kkp-post-card:hover .kkp-post-card__image img,
    .kkp-project-single__main-image:hover img,
    .kkp-project-single__thumb:hover img,
    .kkp-project-single__gallery-item:hover img,
    .kkp-review-card:hover .kkp-review-card__image img {
        transform: scale(1.05);
    }

    .kkp-socials__link:hover,
    .kkp-contact-chip:hover,
    .kkp-project-archive__filter:hover,
    .kkp-header__search-toggle:hover,
    .kkp-slider-nav__button:hover {
        transform: translateY(-3px);
    }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .kkp-lessons__previews img:nth-child(1) {
        animation: kkp-float-lesson-left 6.9s ease-in-out infinite;
    }

    .kkp-lessons__previews img:nth-child(2) {
        animation: kkp-float-lesson-center 6.2s ease-in-out infinite 0.3s;
    }

    .kkp-lessons__previews img:nth-child(3) {
        animation: kkp-float-lesson-right 7.4s ease-in-out infinite 0.15s;
    }
}

@keyframes kkp-float-lesson-left {
    0%,
    100% {
        transform: rotate(-8deg) translateY(14px);
    }
    50% {
        transform: rotate(-9deg) translateY(6px);
    }
}

@keyframes kkp-float-lesson-center {
    0%,
    100% {
        transform: rotate(-2deg) translateY(0);
    }
    50% {
        transform: rotate(0deg) translateY(-8px);
    }
}

@keyframes kkp-float-lesson-right {
    0%,
    100% {
        transform: rotate(6deg) translateY(10px);
    }
    50% {
        transform: rotate(5deg) translateY(2px);
    }
}

@media (max-width: 1279px) {
    .kkp-header__inner {
        gap: clamp(14px, 2vw, 20px);
    }

    .kkp-nav__list {
        gap: clamp(16px, 1.8vw, 24px);
    }

    .kkp-contact-cta__aside,
    .kkp-contact-cta__form {
        padding: 30px;
    }

    .kkp-footer__top {
        grid-template-columns: 90px repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    html {
        scroll-padding-top: 86px;
    }

    .section-space {
        padding-top: 52px;
    }

    .section-space-sm {
        padding-top: 20px;
    }

    .kkp-section-head {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .kkp-contact-cta__card,
    .kkp-materials-hero,
    .kkp-term-hero,
    .kkp-term-benefits__row,
    .kkp-catalog__layout,
    .kkp-footer__top {
        grid-template-columns: 1fr;
    }

    .kkp-materials__grid,
    .kkp-projects__grid,
    .kkp-applications__grid,
    .kkp-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kkp-catalog__sidebar {
        position: static;
    }

    .kkp-contact-cta__links {
        max-width: 420px;
    }

    .kkp-materials-hero__text,
    .kkp-term-hero__aside,
    .kkp-project-archive__hero-copy p {
        max-width: none;
    }

    .kkp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    :root {
        --kkp-gap: 16px;
    }

    .kkp-container {
        padding-inline: 16px;
    }

    .section-space {
        padding-top: 42px;
    }

    .section-space-sm {
        padding-top: 16px;
    }

    .kkp-header__inner {
        min-height: 72px;
        gap: 12px;
    }

    .kkp-header__schedule {
        max-width: 106px;
        font-size: 11px;
    }

    .kkp-search-form {
        gap: 12px;
    }

    .kkp-contact-cta__aside,
    .kkp-contact-cta__form,
    .kkp-materials-hero,
    .kkp-term-hero,
    .kkp-term-advantages__card,
    .kkp-term-benefits__card,
    .kkp-project-archive__hero,
    .kkp-project-single__hero,
    .kkp-project-single__content,
    .kkp-project-single__results,
    .kkp-article__header,
    .kkp-article__content,
    .kkp-post-card__body {
        padding: 20px 18px;
    }

    .kkp-materials__grid,
    .kkp-projects__grid,
    .kkp-applications__grid,
    .kkp-content-grid,
    .kkp-pricing__grid {
        grid-template-columns: 1fr;
    }

    .kkp-contact-cta__links .kkp-contact-chip {
        width: 100%;
        max-width: 100%;
    }

    .kkp-project-archive__filters {
        flex-wrap: nowrap;
        margin-top: 22px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .kkp-project-archive__filters::-webkit-scrollbar {
        display: none;
    }

    .kkp-project-archive__filter {
        white-space: nowrap;
    }

    .kkp-project-single__actions .kkp-btn {
        width: 100%;
    }

    .kkp-project-single__thumbs {
        gap: 10px;
    }

    .kkp-footer {
        margin-top: 56px;
        padding-top: 34px;
    }

    .kkp-footer__top {
        gap: 20px;
    }

    .kkp-footer__contact {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    html {
        scroll-padding-top: 74px;
    }

    .kkp-form .kkp-btn,
    .kkp-project-single__actions .kkp-btn,
    .kkp-project-teaser__footer .kkp-btn,
    .kkp-project-archive__hero-aside .kkp-btn,
    .kkp-vases__footer .kkp-btn,
    .kkp-catalog-card .kkp-btn,
    .kkp-term-hero__button {
        width: 100%;
        justify-content: center;
    }

    .kkp-btn__icon {
        flex: 0 0 18px;
    }

    .kkp-slider-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .kkp-section-head {
        margin-bottom: 22px;
    }

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

    .kkp-contact-chip span:last-child {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .kkp-reveal,
    .kkp-lessons__previews img,
    .kkp-hero__person,
    .kkp-hero__panel,
    .kkp-feature-card,
    .kkp-application-card,
    .kkp-project-teaser,
    .kkp-project-card,
    .kkp-product-hero-card,
    .kkp-material-card,
    .kkp-pricing-card,
    .kkp-review-card,
    .kkp-btn,
    .kkp-contact-chip,
    .kkp-mobile-panel,
    .kkp-search-panel {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
