

/* Start:/markup/casa-picassa/landing.css?178159875220496*/
/* Лендинг «Casa Picassa × Calendario». Все классы с префиксом cp-, чтобы не пересекаться с style.css сайта.
   Тёмная тема: фон #131312 (базовый тёмный casa-picassa.ru), акценты — мадженто Calendario. */

/* Лёгкие начертания заголовков с casa-picassa.ru (семейство Geometria-PlatinoLight, вес 200/300) */
@font-face {
    font-family: 'Geometria';
    src: url('/markup/casa-picassa/fonts/ArticaPro.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    src: url('/markup/casa-picassa/fonts/palab.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    src: url('/markup/casa-picassa/fonts/Geometria-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    src: url('/markup/casa-picassa/fonts/Geometria-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    src: url('/markup/casa-picassa/fonts/Geometria-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    src: url('/markup/casa-picassa/fonts/Geometria-ExtraBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Мадженто Calendario: тёмные — для заливок, светлые — для текста/акцентов на тёмном фоне */
    --cp-accent: #68004c;
    --cp-accent-light: #980073;
    --cp-accent-bright: #b80086;
    --cp-accent-text: #d855b4;
    /* Тёмная палитра casa-picassa.ru */
    --cp-bg: #131312;
    --cp-bg-alt: #1c1c1b;
    --cp-card: #222221;
    --cp-chip: #2e2e2d;
    --cp-border: #323230;
    --cp-darkest: #0b0b0a;
    --cp-text: #f0efed;
    --cp-muted: #a8a6a2;
    --cp-white: #ffffff;
    --cp-font-head: 'Geometria', Arial, sans-serif;
    --cp-font-text: 'Nunito Sans', Arial, sans-serif;
}

.cp-body {
    margin: 0;
    background: var(--cp-bg);
    color: var(--cp-text);
    font-family: var(--cp-font-text);
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}
.cp-body *,
.cp-body *::before,
.cp-body *::after { box-sizing: border-box; }

/* :where() — нулевая специфичность, чтобы margin-bottom на классах заголовков перекрывал сброс */
.cp-body :where(h1, h2, h3) {
    font-family: var(--cp-font-head);
    color: var(--cp-accent-text);
    margin: 0;
    line-height: 1.2;
}
.cp-body a { color: var(--cp-accent-text); }
.cp-body img { max-width: 100%; height: auto; display: block; }

/* Сетка как у основного сайта (.container в style.css): 1600px, поля 40px / 15px на ≤1023px */
.cp-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}
.cp-container--narrow { max-width: 940px; }

/* Кнопки */
.cp-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: var(--cp-font-head);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 28px;
    border-radius: 12px;
    transition: background-color .2s, color .2s, box-shadow .2s;
}
.cp-btn--accent {
    background: var(--cp-accent-bright);
    color: var(--cp-white);
    box-shadow: 0 8px 24px rgba(184, 0, 134, .35);
}
.cp-btn--accent:hover { background: var(--cp-accent-text); }
.cp-btn--outline {
    background: transparent;
    color: var(--cp-text);
    border: 2px solid var(--cp-accent-text);
    padding: 10px 22px;
}
.cp-btn--outline:hover { background: var(--cp-accent-bright); border-color: var(--cp-accent-bright); color: var(--cp-white); }

/* Шапка */
.cp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(19, 19, 18, .9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cp-border);
}
.cp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}
.cp-header__logos { display: flex; align-items: center; gap: 14px; }
.cp-header__logo img { display: block; }
.cp-header__logo-divider {
    font-family: var(--cp-font-head);
    font-size: 22px;
    color: var(--cp-muted);
}

/* Секции */
.cp-section { padding: 80px 0; }
/* Чередование секций: базовый тёмный и чуть более светлый тёмный */
.cp-section--grey { background: var(--cp-bg-alt); }
/* Заголовки блоков как на casa-picassa.ru: лёгкое начертание (200), uppercase, letter-spacing -0.5px */
.cp-section__title {
    font-size: 33px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 56px;
    max-width: 1100px;
}

/* Блок 1. Hero */
.cp-hero { padding: 60px 0 80px; }
.cp-hero__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.cp-hero__overtitle {
    font-family: var(--cp-font-head);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cp-accent-text);
    margin-bottom: 20px;
}
.cp-hero__title {
    color: var(--cp-white);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    /* Резерв высоты под самый длинный из 3-х офферов: защита от CLS при подмене текста */
    min-height: 3.6em;
}
.cp-hero__title-offer { color: var(--cp-accent-text); }
.cp-hero__subtitle {
    font-size: 19px;
    color: var(--cp-muted);
    margin: 0 0 32px;
    min-height: 4.65em;
}
.cp-hero__cta { font-size: 18px; padding: 18px 36px; }
.cp-hero__note {
    margin-top: 14px;
    font-size: 15px;
    font-style: italic;
    color: var(--cp-muted);
}
.cp-hero__img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}

/* Блок 2. Проблема и решение */
.cp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.cp-compare__card {
    border-radius: 20px;
    padding: 36px;
}
.cp-compare__card--problem {
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    color: var(--cp-muted);
}
.cp-compare__card--problem .cp-compare__title { color: var(--cp-muted); }
.cp-compare__card--solution {
    background: var(--cp-accent);
    color: var(--cp-white);
    box-shadow: 0 20px 48px rgba(104, 0, 76, .45);
}
.cp-compare__card--solution .cp-compare__title { color: var(--cp-white); }
.cp-compare__title { font-size: 22px; font-weight: 600; margin-bottom: 20px; }

/* Списки с маркерами */
.cp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cp-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
}
.cp-list li:last-child { margin-bottom: 0; }
.cp-list--cross li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 700;
    opacity: .55;
}
.cp-list--check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 700;
    color: var(--cp-accent-text);
}
.cp-compare__card--solution .cp-list--check li::before { color: #ff8ad8; }

/* Блок 3. Лофты */
.cp-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
    margin-bottom: 32px;
}
.cp-filters__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.cp-filters__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cp-font-head);
    font-weight: 500;
    font-size: 15px;
    color: var(--cp-muted);
    white-space: nowrap;
}
/* Отступ между «Вместимость до» и «Цена, ₽/час» */
.cp-filters__label + .cp-filters__label { margin-left: 18px; }
.cp-filters__select,
.cp-filters__input {
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    border-radius: 10px;
    color: var(--cp-text);
    font-family: var(--cp-font-text);
    font-size: 15px;
    padding: 9px 12px;
    transition: border-color .2s;
}
.cp-filters__select:focus,
.cp-filters__input:focus {
    outline: none;
    border-color: var(--cp-accent-text);
}
.cp-filters__select option { background: var(--cp-card); }
.cp-filters__input { width: 92px; }
.cp-filters__input::-webkit-outer-spin-button,
.cp-filters__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cp-filters__input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.cp-filters__dash { color: var(--cp-muted); }
.cp-filters__reset {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--cp-font-text);
    font-size: 14px;
    color: var(--cp-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 4px;
}
.cp-filters__reset:hover { color: var(--cp-accent-text); }
.cp-lofts__empty {
    text-align: center;
    color: var(--cp-muted);
    padding: 48px 20px;
}
.cp-lofts__empty p { margin: 0 0 20px; font-size: 19px; }
.cp-filters__btn {
    font-family: var(--cp-font-head);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--cp-border);
    background: transparent;
    color: var(--cp-text);
    cursor: pointer;
    transition: all .2s;
}
.cp-filters__btn:hover { border-color: var(--cp-accent-text); color: var(--cp-accent-text); }
.cp-filters__btn.is-active {
    background: var(--cp-accent-bright);
    border-color: var(--cp-accent-bright);
    color: var(--cp-white);
}
.cp-lofts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
/* На широкой сетке (1600px) — 4 карточки в ряд, как каталог на основном сайте */
@media (min-width: 1280px) {
    .cp-lofts { grid-template-columns: repeat(4, 1fr); }
}
.cp-loft {
    display: flex;
    flex-direction: column;
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.cp-loft.is-hidden { display: none; }
/* При наведении вместо анимации показываем второй ракурс лофта */
.cp-loft__img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.cp-loft__img img { width: 100%; height: 100%; object-fit: cover; }
.cp-loft__img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
}
.cp-loft:hover .cp-loft__img-hover { opacity: 1; }
.cp-loft__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px 24px;
}
.cp-loft__name { font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.cp-loft__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.cp-loft__tag {
    font-size: 13px;
    white-space: nowrap;
    color: var(--cp-muted);
    background: var(--cp-chip);
    border-radius: 999px;
    padding: 5px 12px;
}
.cp-loft__desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--cp-muted);
    margin: 14px 0 16px;
}
.cp-loft__price {
    margin-top: auto;
    font-family: var(--cp-font-head);
    font-weight: 700;
    font-size: 19px;
    color: var(--cp-accent-text);
}

/* Блок 4. Пакет */
.cp-package {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: center;
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}
.cp-package__price-label {
    font-family: var(--cp-font-head);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 14px;
    color: var(--cp-muted);
    margin-bottom: 12px;
}
.cp-package__price-value {
    font-family: var(--cp-font-head);
    font-weight: 700;
    font-size: 56px;
    line-height: 1.05;
    color: var(--cp-accent-text);
    white-space: nowrap;
}
.cp-package__price-note { margin-top: 12px; color: var(--cp-muted); }
.cp-package__list li { margin-bottom: 18px; }

/* Блок 5. Цифры */
.cp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cp-stats__item {
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    border-radius: 16px;
    padding: 32px;
    border-top: 4px solid var(--cp-accent-bright);
}
/* Все «триггеры в цифрах» на одной оси: одна строка, одинаковая высота значения */
.cp-stats__value {
    font-family: var(--cp-font-head);
    font-weight: 700;
    font-size: 34px;
    line-height: 48px;
    height: 48px;
    white-space: nowrap;
    color: var(--cp-accent-text);
    margin-bottom: 12px;
}
.cp-stats__text { color: var(--cp-muted); }

/* Блок 6. Сертификат и плашка */
.cp-cert {
    position: relative;
    border: 2px dashed var(--cp-accent-text);
    border-radius: 20px;
    background: var(--cp-card);
    padding: 48px;
    max-width: 860px;
}
.cp-cert__badge {
    position: absolute;
    top: -16px;
    left: 40px;
    background: var(--cp-accent-bright);
    color: var(--cp-white);
    font-family: var(--cp-font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 18px;
}
.cp-cert__text { font-size: 21px; color: var(--cp-white); margin: 0 0 20px; min-height: 2.9em; }
.cp-cert__link { font-weight: 600; }
.cp-promo-bar {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--cp-accent);
    color: var(--cp-white);
    border-radius: 16px;
    padding: 22px 32px;
}
.cp-promo-bar__text {
    font-family: var(--cp-font-head);
    font-weight: 500;
    font-size: 19px;
}
.cp-promo-bar .cp-btn { white-space: nowrap; }

/* Блок 7. Шаги */
.cp-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
}
.cp-steps__item {
    position: relative;
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    border-radius: 16px;
    padding: 28px;
}
/* Стрелка по вертикали на одной оси с цифрами шагов (line-height стрелки = line-height цифры) */
.cp-steps__item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 28px;
    right: -25px;
    font-size: 24px;
    line-height: 38px;
    color: var(--cp-accent-text);
    z-index: 1;
}
.cp-steps__num {
    font-family: var(--cp-font-head);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: var(--cp-accent-text);
    margin-bottom: 10px;
}
.cp-steps__name { color: var(--cp-white); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.cp-steps__item p { margin: 0; color: var(--cp-muted); font-size: 16px; }

/* Блок 8. FAQ */
.cp-faq__item {
    background: var(--cp-card);
    border: 1px solid var(--cp-border);
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 0 26px;
}
.cp-faq__q {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 22px 44px 22px 0;
}
.cp-faq__q::-webkit-details-marker { display: none; }
.cp-faq__q h3 {
    display: inline;
    font-size: 19px;
    font-weight: 600;
    color: var(--cp-text);
}
.cp-faq__q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--cp-font-head);
    font-size: 28px;
    color: var(--cp-accent-text);
    transition: transform .2s;
}
.cp-faq__item[open] .cp-faq__q::after { content: '−'; }
.cp-faq__a { margin: 0; padding: 0 0 24px; color: var(--cp-muted); }

/* Блок 9. Форма */
.cp-form-section {
    background: var(--cp-darkest);
    color: var(--cp-white);
    padding: 90px 0;
    text-align: center;
}
.cp-form-section__title {
    color: var(--cp-white) !important;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}
.cp-form-section__title { margin-left: auto; margin-right: auto; }
.cp-form-section__subtitle {
    color: rgba(255, 255, 255, .7);
    max-width: 640px;
    margin: 0 auto 40px;
}
.cp-form {
    max-width: 720px;
    margin: 0 auto;
}
.cp-form__field { text-align: left; }
.cp-form__consent { margin-left: auto; margin-right: auto; }
.cp-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}
.cp-form__field { display: block; }
.cp-form__field--full { grid-column: 1 / -1; }
.cp-form__input {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    color: var(--cp-white);
    font-family: var(--cp-font-text);
    font-size: 16px;
    padding: 16px 18px;
    transition: border-color .2s;
}
.cp-form__input::placeholder { color: rgba(255, 255, 255, .45); }
.cp-form__input:focus {
    outline: none;
    border-color: var(--cp-accent-text);
}
.cp-form__input.is-error { border-color: #ff5c8a; }
.cp-form__error {
    display: none;
    font-size: 13px;
    color: #ff5c8a;
    margin-top: 6px;
}
.cp-form__field.is-error .cp-form__error { display: block; }
.cp-form__submit { font-size: 18px; padding: 18px 40px; }
.cp-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    max-width: 540px;
    cursor: pointer;
}
.cp-form__consent-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--cp-accent-text);
    cursor: pointer;
}
.cp-form__consent-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    font-style: italic;
    line-height: 1.5;
}
.cp-form__consent-text a { color: rgba(255, 255, 255, .7); }
.cp-form__consent.is-error .cp-form__consent-text { color: #ff5c8a; }
.cp-form__consent.is-error .cp-form__consent-checkbox { outline: 2px solid #ff5c8a; border-radius: 3px; }
.cp-form__success {
    display: none;
    font-size: 19px;
    background: rgba(184, 0, 134, .25);
    border: 1px solid var(--cp-accent-bright);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 24px;
}
.cp-form.is-sent .cp-form__success { display: block; }
.cp-form.is-sent .cp-form__grid,
.cp-form.is-sent .cp-form__submit,
.cp-form.is-sent .cp-form__consent { display: none; }

/* Адаптив */
@media (max-width: 1023px) {
    .cp-container { padding: 0 15px; }
    .cp-section__title { font-size: 28px; }
    .cp-lofts { grid-template-columns: repeat(2, 1fr); }
    .cp-steps { grid-template-columns: repeat(2, 1fr); }
    .cp-steps__item:not(:last-child)::after { display: none; }
    .cp-hero__title { font-size: 32px; }
}

@media (max-width: 767px) {
    .cp-body { font-size: 16px; }
    .cp-section { padding: 48px 0; }
    .cp-section__title { font-size: 21px; margin-bottom: 36px; }
    .cp-hero { padding: 32px 0 48px; }
    .cp-hero__row { grid-template-columns: 1fr; gap: 28px; }
    .cp-hero__title { font-size: 26px; min-height: 0; }
    .cp-hero__subtitle { font-size: 17px; min-height: 0; }
    .cp-hero__img { order: -1; }
    .cp-compare { grid-template-columns: 1fr; }
    .cp-compare__card { padding: 26px; }
    .cp-lofts { grid-template-columns: 1fr; gap: 20px; }
    .cp-package { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
    .cp-package__price-value { font-size: 46px; }
    .cp-stats { grid-template-columns: 1fr; }
    .cp-steps { grid-template-columns: 1fr; }
    .cp-cert { padding: 32px 22px; }
    .cp-cert__text { font-size: 18px; min-height: 0; }
    .cp-promo-bar { flex-direction: column; align-items: flex-start; }
    .cp-form__grid { grid-template-columns: 1fr; }
    .cp-form-section { padding: 56px 0; }
    .cp-form-section__title { font-size: 26px; }
    .cp-header__cta { font-size: 14px; padding: 9px 14px; }
}

/* End */
/* /markup/casa-picassa/landing.css?178159875220496 */
