/**
 * Вёрстка страниц ZONT Hotel Group.
 * Классы вынесены из инлайн-стилей макета «один в один» — вычисляемые стили
 * не меняются, вид остаётся прежним. Ховеры и адаптив — в main.css.
 */

/* ============================================================
   ОБЩИЕ КОМПОНЕНТЫ
   ============================================================ */

.z-plus { color: var(--accent); }
.z-root { font-family: 'Onest', system-ui, sans-serif; background: #faf8f4; color: #1b1917; -webkit-font-smoothing: antialiased; }

/* Контент — на белом; бежевый остаётся только у панелей и подвала. */
/* ============ ПРЕЛОАДЕР ============ */
.z-preloader { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: #1b1917; opacity: 1; transition: opacity 0.55s ease, visibility 0.55s; }
.z-preloader__in { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.z-preloader__logo { height: 30px; width: auto; filter: brightness(0) invert(1); }
.z-preloader .z-lg__txt { display: none; }
.z-preloader__bar { width: 220px; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.16); overflow: hidden; }
.z-preloader__bar i { display: block; height: 100%; width: 0; border-radius: 2px; background: var(--accent); animation: zpre-run 2.4s cubic-bezier(0.3,0.6,0.3,1) forwards; }
/* Пока страница грузится, полоса честно не долетает до конца… */
@keyframes zpre-run { 0% { width: 0; } 60% { width: 62%; } 100% { width: 84%; } }
/* …а по готовности добегает до 100% (старт — с текущей ширины) и всё тает. */
.z-preloader.is-done .z-preloader__bar i { animation: zpre-fill 0.3s ease forwards; }
@keyframes zpre-fill { to { width: 100%; } }
.z-preloader.is-done { opacity: 0; visibility: hidden; transition-delay: 0.25s; }
/* Страховка на случай мёртвого JS: через 7 секунд растворяется сам. */
@keyframes zpre-auto { to { opacity: 0; visibility: hidden; } }
.z-preloader { animation: zpre-auto 0.5s ease 7s forwards; }

/* Все элементы форм и кнопок наследуют шрифт сайта — без системных подстановок. */
input, select, textarea, button, optgroup { font-family: inherit; }

/* Контент — на белом на всех страницах. */
main#main { background: #fff; }

/* Блокировка прокрутки под модалками — вместо инлайнового style на body. */
body.z-noscroll { overflow: hidden; }

/* Контейнеры-секции: одинаковая ширина, разный верхний отступ */
.z-sec-70  { max-width: var(--wrap-box); margin: 0 auto; padding: 70px var(--gut) 40px; }
.z-sec-90  { max-width: var(--wrap-box); margin: 0 auto; padding: 90px var(--gut) 40px; }
.z-sec-100 { max-width: var(--wrap-box); margin: 0 auto; padding: 100px var(--gut) 40px; }
.z-sec-110 { max-width: var(--wrap-box); margin: 0 auto; padding: 110px var(--gut) 40px; }
.z-sec-130 { max-width: var(--wrap-box); margin: 0 auto; padding: 160px var(--gut) 40px; }

/* Шапка страницы */
.z-pagehead { border-bottom: 1px solid rgba(0,0,0,0.08); }
.z-pagehead__in { max-width: var(--wrap-box); margin: 0 auto; padding: 68px var(--gut) 64px; }
.z-crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9c948a; margin-bottom: 34px; }
.z-h1 { margin: 0 0 20px; font-size: clamp(30px, 3.2vw, 44px); font-weight: 300; line-height: 1.0; letter-spacing: -0.03em; }
.z-lead { margin: 0; font-size: 17px; line-height: 1.65; color: #5f584f; font-weight: 300; }

/* Надзаголовок с линией */
.z-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.z-eyebrow--22 { margin-bottom: 22px; }
.z-eyebrow--40 { margin-bottom: 40px; }
.z-eyebrow--44 { margin-bottom: 44px; }
.z-eyebrow--center { justify-content: center; }
.z-eyebrow__line { width: 34px; height: 1px; background: var(--accent); }
.z-eyebrow__txt { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--accent); }

/* Кнопки */
.z-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 8px; font-family: inherit; font-size: 15px; font-weight: 500; cursor: pointer; white-space: nowrap; text-decoration: none; transition: background .25s ease, border-color .25s ease, filter .25s ease, color .25s ease; }
.z-btn--pad   { padding: 15px 30px; }
.z-btn--pad-h { padding: 15px 28px; }
.z-btn--pad-lg { padding: 16px 32px; }
.z-btn--pad16 { padding: 16px; }
.z-btn--block { width: 100%; }
.z-btn--dark { background: #33312d; color: #fff; }
.z-btn--dark:hover { background: var(--accent); color: #fff; }
.z-btn--white { background: #fff; color: #1b1917; }
.z-btn--white:hover { background: #33312d; color: #fff; }
.z-btn--ghost { border: 1px solid rgba(0,0,0,0.16); color: #1b1917; }
.z-btn--ghost:hover { border-color: #1b1917; }
.z-btn--accent { background: var(--accent); color: #fff; }
.z-btn--accent:hover { filter: brightness(1.08); }

/* Ссылка со стрелкой-подчёркиванием */
.z-under { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; border-bottom: 1px solid rgba(0,0,0,0.18); padding-bottom: 5px; }

/* Карточка с круглой иконкой */
.z-icard { border: 1px solid rgba(0,0,0,0.09); border-radius: 8px; background: #fff; }
.z-icard--34 { padding: 34px; }
.z-icard--32 { padding: 32px; }
.z-icard__ic { border-radius: 50%; background: #f1ece4; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.z-icard__ic--52 { width: 52px; height: 52px; margin-bottom: 22px; }
.z-icard__ic--48 { width: 48px; height: 48px; margin-bottom: 20px; }
.z-icard__ttl-21 { margin: 0; font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.z-icard__ttl-19 { margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.z-icard__txt-15 { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: #746c62; font-weight: 300; }
.z-icard__txt-145 { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: #746c62; font-weight: 300; }

/* Сетки карточек (адаптив — в main.css) */
.z-g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.z-g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Секционные заголовки */
.z-h2-46 { margin: 0 0 30px; font-size: clamp(26px, 3vw, 38px); font-weight: 300; line-height: 1.06; letter-spacing: -0.025em; }
.z-h2-50 { margin: 0; font-size: clamp(27px, 3.1vw, 40px); font-weight: 300; line-height: 1.02; letter-spacing: -0.025em; }
.z-h2-44 { margin: 0 0 30px; font-size: clamp(25px, 2.9vw, 37px); font-weight: 300; line-height: 1.08; letter-spacing: -0.025em; }

/* ============================================================
   ШАПКА (header.php)
   ============================================================ */

.z-hbar { position: sticky; top: -37px; z-index: 40; background: rgba(250,248,244,0.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,0.08); font-family: 'Onest', system-ui, sans-serif; color: #1b1917; transition: background 0.35s ease, border-color 0.35s ease; }

/* Главная: та же шапка, но прозрачная поверх хиро — фото затянуто под неё. */
.z-hbar--clear { margin-bottom: calc(-1 * var(--hbar-h)); background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; color: #fff; }
.z-hbar--clear .z-topbar { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.16); }
.z-hbar--clear .z-hrow { border-bottom: 0; }
.z-hbar--clear .z-ha { color: #fff; }
.z-hbar--clear .z-logo-dark { filter: brightness(0) invert(1); }
.z-hbar--clear .z-lk2 { border-color: rgba(255,255,255,0.55); color: #fff; }
.z-hbar--clear .z-bdark { background: #fff; color: #33312d; }
.z-hbar--clear .z-burger { border-color: rgba(255,255,255,0.55); color: #fff; }
/* Прилипла — возвращаем обычный вид, плавно. */
.z-hbar--clear.is-solid { background: rgba(250,248,244,0.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom-color: rgba(0,0,0,0.08); color: #1b1917; }
.z-hbar--clear.is-solid .z-topbar { background: #1b1917; border-bottom: 0; }
.z-hbar--clear.is-solid .z-ha { color: inherit; }
.z-hbar--clear.is-solid .z-logo-dark { filter: brightness(0); }
.z-hbar--clear.is-solid .z-lk2 { border-color: rgba(0,0,0,0.16); color: inherit; }
.z-hbar--clear.is-solid .z-bdark { background: #33312d; color: #fff; }
.z-hbar--clear.is-solid .z-burger { border-color: rgba(0,0,0,0.16); color: inherit; }
.z-topbar { position: relative; z-index: 6; background: #1b1917; color: rgba(255,255,255,0.82); }
.z-topbar__in { max-width: var(--wrap-box); margin: 0 auto; padding: 9px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12.5px; white-space: nowrap; }
.z-row { display: flex; align-items: center; }
.z-row--24 { gap: 24px; }
.z-row--18 { gap: 18px; }
.z-topbar__sep { width: 1px; height: 12px; background: rgba(255,255,255,0.22); }
.z-hw { display: inline-flex; align-items: center; gap: 7px; }
/* Сетка 1fr–auto–1fr: меню строго по центру независимо от ширины лого и кнопок. */
.z-hrow { max-width: var(--wrap-box); margin: 0 auto; padding: 18px var(--gut); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.z-hrow > a:first-child { justify-self: start; min-width: 0; }
.z-hrow > .z-hactions { justify-self: end; }
.z-nav { display: flex; align-items: center; gap: 40px; font-size: 13.5px; white-space: nowrap; }
/* Пункт меню: полоска выезжает из центра под курсором и стоит у текущего раздела. */
.z-nav .z-ha { position: relative; padding-bottom: 4px; }
.z-nav .z-ha::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: center; transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1); }
.z-nav .z-ha:hover::after { transform: scaleX(1); }
.z-nav .z-ha.is-here { color: var(--accent); }
.z-nav .z-ha.is-here::after { transform: scaleX(1); }

/* В мобильном меню текущий раздел тоже подсвечен. */
.mnav__list a.is-here { color: var(--accent); }
.z-hactions { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.z-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; }
.z-lk2 { display: none; align-items: center; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.16); border-radius: 50%; }
.z-bdark { display: inline-flex; align-items: center; justify-content: center; font-size: 13px; background: #33312d; color: #fff; padding: 11px 20px; border-radius: 40px; font-weight: 500; text-decoration: none; transition: background .25s ease; }
.z-bdark:hover { background: var(--accent); color: #fff; }
.z-burger { display: none; width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.16); border-radius: 50%; background: none; cursor: pointer; }
.mnav__brand { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.mnav__close { border-color: rgba(255,255,255,.25); color: #fff; }
.mnav__phone { font-size: 20px; font-weight: 500; }

/* ============================================================
   ПОДВАЛ (footer.php)
   ============================================================ */

.z-footer { max-width: var(--wrap-box); margin: 0 auto; padding: 100px var(--gut) 44px; }
.z-fgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.z-flogo { display: inline-block; margin-bottom: 24px; }
.z-fabout { margin: 0; max-width: 38ch; font-size: 14.5px; line-height: 1.6; color: #746c62; font-weight: 300; }
.z-fphone { margin-top: 26px; font-size: 15px; font-weight: 500; }
.z-femail { margin-top: 8px; font-size: 14px; color: #746c62; }
.z-fphone a, .z-femail a { display: inline-flex; align-items: center; gap: 8px; }
.z-fcol__ttl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #9c948a; margin-bottom: 20px; }
.z-fcol__links { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; color: #4a443d; }
.z-fbot { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 28px; flex-wrap: wrap; font-size: 12.5px; color: #9c948a; }
.z-fbot__r { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.z-fbot__sep { width: 1px; height: 14px; background: rgba(0,0,0,0.15); }
.z-credit { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; letter-spacing: 0.01em; color: #9c948a; text-decoration: none; opacity: 0.9; }
.z-credit__logo { height: 12px; width: auto; display: block; flex-shrink: 0; }
.z-credit__txt { display: inline-flex; align-items: baseline; gap: 4px; }
.z-credit__accent { color: var(--accent); text-decoration: underline dashed; text-decoration-color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; font-weight: 600; }

/* ============================================================
   БЛОК КОНСУЛЬТАЦИИ (template-parts/consult.php)
   ============================================================ */

.z-consult { max-width: var(--wrap-box); margin: 130px auto 0; padding: 0 var(--gut) 50px; }
.z-contact { background: #1b1917; color: #fff; border-radius: 8px; padding: 90px 72px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.z-contact__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.z-contact__h { margin: 0; font-size: clamp(30px, 3.8vw, 48px); font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
.z-contact__lead { margin: 24px 0 0; max-width: 44ch; font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,0.72); font-weight: 300; }
.z-contact__row { display: flex; align-items: center; gap: 26px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.14); flex-wrap: wrap; }
.z-contact__link { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; }
.z-form { display: flex; flex-direction: column; gap: 14px; }
.z-field { display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.22); padding: 14px 2px 12px; font-size: 15px; color: rgba(255,255,255,0.55); transition: border-color 0.25s ease; }
.z-field:focus-within { border-bottom-color: var(--accent); }
.z-field > svg { flex-shrink: 0; margin-bottom: 3px; }
/* Подпись поля поднимается наверх, освобождая место введённому тексту. */
.z-field__wrap { position: relative; flex: 1; min-width: 0; padding-top: 14px; }
.z-field__lbl { position: absolute; left: 0; bottom: 2px; font-size: 15px; line-height: 1.2; color: rgba(255,255,255,0.55); pointer-events: none; transform-origin: left bottom; transition: transform 0.22s cubic-bezier(0.2,0.7,0.2,1), color 0.22s ease; }
.z-input:focus + .z-field__lbl,
.z-input:not(:placeholder-shown) + .z-field__lbl { transform: translateY(-20px) scale(0.78); color: var(--accent); }
.z-agree { display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.6); cursor: pointer; }
.z-agree__box { appearance: none; -webkit-appearance: none; position: relative; flex-shrink: 0; width: 18px; height: 18px; margin: 1px 0 0; border: 1px solid rgba(255,255,255,0.4); border-radius: 5px; background: rgba(255,255,255,0.06); cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease; }
.z-agree__box:hover { border-color: var(--accent); }
.z-agree__box:checked { background: var(--accent); border-color: var(--accent); }
/* Галочка — две стороны рамки, повёрнутые на 45°. */
.z-agree__box:checked::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.z-agree__box:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Подтверждение отправки заявки */
.z-sent { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(20,17,14,0.62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.28s ease; }
.z-sent[hidden] { display: none; }
.z-sent.is-on { opacity: 1; }
.z-sent__box { position: relative; width: 100%; max-width: 440px; background: #fff; border-radius: 8px; padding: 44px 40px 36px; text-align: center; box-shadow: 0 50px 90px -50px rgba(20,17,14,0.7); transform: translateY(12px); transition: transform 0.28s cubic-bezier(0.2,0.7,0.2,1); }
.z-sent.is-on .z-sent__box { transform: none; }
.z-sent__x { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: none; color: #9c948a; cursor: pointer; transition: color 0.2s ease, background 0.2s ease; }
.z-sent__x:hover { color: #1b1917; background: rgba(0,0,0,0.05); }
.z-sent__ic { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: #f1ece4; color: var(--accent); }
.z-sent__h { margin: 20px 0 0; font-size: 24px; font-weight: 400; letter-spacing: -0.02em; }
.z-sent__p { margin: 12px 0 26px; font-size: 15px; line-height: 1.6; color: #5f584f; font-weight: 300; }
.z-agree a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.z-consult__submit { margin-top: 16px; }
.z-consult__msg { margin: 0; font-size: 14px; }

/* ============================================================
   ГЛАВНАЯ (front-page.php)
   ============================================================ */

/* Липкая мини-шапка (начальное состояние; переключается из main.js) */
.z-sticky { position: fixed; top: 0; left: 0; right: 0; z-index: 40; opacity: 0; transform: translateY(-101%); pointer-events: none; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2,0.7,0.2,1); background: rgba(250,248,244,0.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,0.07); }
.z-sticky__in { max-width: var(--wrap-box); margin: 0 auto; padding: 14px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.z-sticky__logo { display: inline-flex; align-items: center; }
.z-sticky__logo img { width: auto; height: auto; max-width: 160px; max-height: 26px; }
.z-sticky__nav { display: flex; align-items: center; gap: 28px; font-size: 13.5px; }
.z-sticky__r { display: flex; align-items: center; gap: 18px; }
.z-sticky__phone { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; }

/* Мелкие пилюли шапки/слайдера (радиус 40) */
.z-pill { display: inline-flex; align-items: center; justify-content: center; font-size: 13px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: background .25s ease, color .25s ease; }
.z-pill--dark { background: #33312d; color: #fff; padding: 11px 20px; }
.z-pill--dark:hover { background: var(--accent); color: #fff; }
.z-pill--dark-sm { background: #33312d; color: #fff; padding: 10px 20px; }
.z-pill--dark-sm:hover { background: var(--accent); color: #fff; }
.z-pill--white { background: #fff; color: #1b1917; padding: 11px 22px; }
.z-pill--white:hover { background: var(--accent); color: #fff; }

/* Первый экран */
.z-hero { position: relative; min-height: 78vh; display: flex; flex-direction: column; color: #fff; overflow: visible; background: #1b1917; }
.z-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.z-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.03); transition: opacity 2.2s cubic-bezier(0.33,0,0.2,1), transform 8s ease-out; will-change: opacity, transform; }
.z-hero__img.is-on { opacity: 1; transform: scale(1.11); }
.z-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,13,10,0.72) 0%, rgba(16,13,10,0.50) 40%, rgba(16,13,10,0.64) 72%, rgba(16,13,10,0.94) 100%); }
.z-hero__topbar { position: relative; z-index: 6; border-bottom: 1px solid rgba(255,255,255,0.16); }
.z-hero__topbar-in { max-width: var(--wrap-box); margin: 0 auto; padding: 9px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12.5px; white-space: nowrap; color: rgba(255,255,255,0.82); }
.z-hero__sep { width: 1px; height: 12px; background: rgba(255,255,255,0.28); }
/* Та же сетка, что во внутренней шапке — меню строго по центру. */
.z-hero__header { position: relative; z-index: 5; max-width: var(--wrap-box); width: 100%; margin: 0 auto; padding: 18px var(--gut); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.z-hero__header > a:first-child { justify-self: start; }
.z-hero__actions { justify-self: end; }
.z-hero__nav { display: flex; align-items: center; gap: 30px; font-size: 13.5px; font-weight: 400; letter-spacing: 0.01em; }
.z-hero__actions { display: flex; align-items: center; gap: 20px; }
.z-lk { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; opacity: 0.92; }
/* Верхний отступ фиксированный — на любом масштабе надзаголовок не липнет к шапке. */
.z-hero__body { position: relative; z-index: 4; flex: 1; max-width: var(--wrap-box); width: 100%; margin: 0 auto; padding: calc(var(--hbar-h) + 40px) var(--gut) 0; display: flex; flex-direction: column; justify-content: flex-end; }
.z-hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; animation: zfade 0.8s ease both; }
.z-hero__eyebrow-line { width: 40px; height: 1px; background: var(--accent); }
.z-hero__eyebrow-txt { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; }
.z-hero__h1 { margin: 0 0 0 -3px; font-size: clamp(34px, 4.2vw, 61px); font-weight: 300; line-height: 0.98; letter-spacing: -0.03em; max-width: none; animation: zfade 0.9s ease 0.06s both; }
.z-hero__lead { margin: 24px 0 0; max-width: 700px; font-size: 17px; line-height: 1.6; font-weight: 300; color: rgba(255,255,255,0.86); animation: zfade 1s ease 0.12s both; }
.z-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; animation: zfade 1.1s ease 0.18s both; }
.z-bout { display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.55); color: #fff; padding: 16px 32px; border-radius: 8px; font-size: 15px; font-weight: 400; white-space: nowrap; text-decoration: none; }
.z-hero__stats { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; width: max-content; max-width: 100%; align-items: start; gap: 22px; animation: zfade 1.2s ease 0.24s both; }
.z-hero__stat { padding-left: 22px; border-left: 1px solid rgba(255,255,255,0.28); }
.z-hero__stat--first { padding-left: 0; border-left: 0; }
.z-hero__stat-v { font-size: 46px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.z-hero__stat-l { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 14px; }

/* Заглушка модуля бронирования: показывает габариты будущего блока. */
/* Модуль и кнопка подбора — одной строкой, нависают на следующий блок. */
.z-hero__bookrow { display: flex; align-items: stretch; gap: 14px; margin: 60px 0 -48px; }
.z-hero__bookrow .z-hero__book { flex: 1; margin: 0; }
.z-hero__bookbtn { flex: 0 0 auto; background: #fff; border: 1px solid #1b1917; color: #1b1917; }
.z-hero__bookbtn:hover { background: #33312d; color: #fff; }
.z-hero__book { margin: 60px 0 -48px; min-height: 96px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; animation: zfade 1.3s ease 0.3s both; }
.z-hero__book-txt { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: #9c948a; }

/* Баннер каталога: половина экрана с фото приоритетных отелей сети. */
/* Обложка разделов: высота и композиция как у первого экрана главной. */
.z-cathero { position: relative; min-height: 78vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: #1b1917; color: #fff; }
/* Затемнение двойное: снизу — под текст, слева — чтобы заголовок читался на светлом фото. */
.z-cathero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,13,10,0.34) 0%, rgba(16,13,10,0.42) 40%, rgba(16,13,10,0.90) 100%), linear-gradient(90deg, rgba(16,13,10,0.62) 0%, rgba(16,13,10,0.18) 55%, rgba(16,13,10,0) 100%); }
.z-cathero__in { position: relative; z-index: 3; max-width: var(--wrap-box); width: 100%; margin: 0 auto; padding: calc(var(--hbar-h) + 36px) var(--gut) 56px; }
.z-cathero .z-h1 { max-width: 100%; }
.z-cathero__stats { margin-top: 36px; }
.z-hero__stat-ic { display: inline-flex; align-items: center; color: var(--accent); margin-right: 9px; }
.z-hero__stats--sm .z-hero__stat-v { display: flex; align-items: center; font-size: 20px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }

/* 16. Хлебные крошки прижаты к шапке, остальной текст обложки остаётся внизу. */
.z-cathero .z-crumbs { position: absolute; top: calc(var(--hbar-h) + 14px); left: 50%; transform: translateX(-50%); z-index: 5; width: 100%; max-width: var(--wrap-box); margin: 0; padding: 0 var(--gut); }
.z-crumbs--light, .z-crumbs--light .crumbs { color: rgba(255,255,255,0.72); }
.z-crumbs--light .crumbs__cur { color: #fff; }
.z-crumbs--light .crumbs__sep { color: rgba(255,255,255,0.4); }
.z-lead--light { color: rgba(255,255,255,0.86); max-width: 800px; }

/* Шапка отеля — тот же баннер, что в каталоге, но пониже и с кнопками */
.z-cathero--hotel { min-height: 78vh; }
.z-cathero--hotel .z-htitle { margin-bottom: 26px; }
.z-hmeta--light .z-hmeta__dim { color: rgba(255,255,255,0.8); }
.z-hmeta--light .z-hmeta__sep { color: rgba(255,255,255,0.45); }
.z-hmeta--light .z-hmeta__stars { color: #fff; }
.z-btn--outline { background: #fff; border: 1px solid rgba(0,0,0,0.18); color: #1b1917; }
.z-btn--outline:hover { border-color: #1b1917; }
.z-btn--outline-light { border: 1px solid rgba(255,255,255,0.55); color: #fff; }
.z-btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.14); }

/* Подпись текущего слайда: только название и город, без карточки и подложки */
.z-hero__bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-top: 52px; }
.z-hero__slide { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; text-align: right; animation: zfade 1.2s ease 0.3s both; }
.z-hero__slide-name { display: block; }
.z-hero__slide-link { display: block; color: #fff; transition: opacity 0.28s ease; }
.z-hero__slide-link.is-swap { opacity: 0; }
.z-hero__slide-name { display: block; font-size: 20px; font-weight: 500; line-height: 1.25; letter-spacing: -0.015em; }
.z-hero__slide-city { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.75); }
.z-link-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; font-weight: 500; }

/* Текстовые кнопки под курсором меняют только цвет: подчёркивание и сдвиг убраны. */
.z-under, .z-link-more, .z-card__more, .z-more, .z-ncard__more, .z-obj, .z-geoitem__go, .z-bbook {
  transition: color 0.2s ease;
}
.z-under { border-bottom: 0; padding-bottom: 0; }
.z-link-more:hover, .z-card__more:hover, .z-more:hover, .z-ncard__more:hover, .z-bbook:hover { color: #1b1917; }
.z-under:hover, .z-obj:hover { color: var(--accent); }
.z-btn, .z-pill, .z-bout { transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.2,0.7,0.2,1); }
.z-btn:hover, .z-pill:hover, .z-bout:hover { transform: translateY(-2px); }
/* Точки пагинации с прогресс-заливкой — рядом со стрелками. */
.z-hero__controls { display: flex; align-items: center; gap: 20px; }
.z-dots { display: flex; align-items: center; gap: 9px; }
.z-dot { position: relative; height: 6px; width: 8px; padding: 0; border: 0; border-radius: 30px; background: rgba(255,255,255,0.35); cursor: pointer; overflow: hidden; transition: width 0.4s ease; }
.z-dot.is-on { width: 32px; }
.z-dot__fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: #fff; border-radius: 30px; }
.z-dot.is-on .z-dot__fill { animation: fill 6s linear forwards; }
.z-arrows { display: flex; gap: 10px; }
.z-cprev[disabled], .z-cnext[disabled] { opacity: 0.3; pointer-events: none; }
.z-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; }
.z-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.75); }

/* Общие для секций главной */
.z-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; flex-wrap: wrap; }
.z-sechead .z-h2-46 { margin-bottom: 0; }
.z-h2-58 { margin: 0 0 0 -3px; font-size: clamp(28px, 3.4vw, 44px); font-weight: 300; line-height: 1.02; letter-spacing: -0.025em; }
.z-g3-26 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.z-center-50 { display: flex; justify-content: center; margin-top: 34px; }

/* Подвал секции: кнопка и уменьшенные стрелки в одну строку. */
.z-secfoot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.z-secfoot--start { justify-content: flex-start; }
.z-arrows--sm .z-cprev, .z-arrows--sm .z-cnext { width: 34px; height: 34px; }
.z-arrows--sm svg { width: 16px; height: 16px; }
.z-cover { width: 100%; height: 100%; object-fit: cover; }
.z-cover-abs { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.z-zoom { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.22,0.61,0.28,1); }

/* Круглые стрелки-скроллеры коллекции */
.z-cprev, .z-cnext { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid #1b1917; background: transparent; color: #1b1917; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; }

/* Карточка отеля в коллекции */
/* Без фиксированной высоты — иначе flex-контейнер не растянет карточки до общей высоты. */
.z-card { display: flex; flex-direction: column; }
.z-card__media { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; }

/* Галерея по наведению: курсор идёт слева направо — кадры сменяются. */
.z-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s cubic-bezier(0.33,0,0.2,1); }
.z-shot.is-on { opacity: 1; }
.z-shotbar { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; display: flex; gap: 4px; opacity: 0; transition: opacity 0.25s ease; pointer-events: none; }
.z-shotbar i { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.45); transition: background 0.25s ease; }
.z-shotbar i.is-on { background: #fff; }
.z-card:hover .z-shotbar, .z-hcard:hover .z-shotbar { opacity: 1; }
.z-card__tags { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }
.z-tag-star { background: rgba(255,255,255,0.94); color: var(--accent); font-size: 12px; letter-spacing: 0.05em; padding: 6px 11px; border-radius: 30px; }
.z-tag-type { background: rgba(27,25,23,0.55); color: #fff; font-size: 12px; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 30px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.z-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 4px 0; }
.z-card__ttl { margin: 0; font-size: 20px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; min-height: 1.2em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.z-card__desc { margin: 11px 0 14px; font-size: 14.5px; line-height: 1.55; color: #746c62; font-weight: 300; min-height: 3.1em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.z-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.08); }
.z-card__city { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #9c948a; }
.z-card__more { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--accent); }

/* Блок «О компании» (бенто) */
.z-about { margin-top: 84px; }
.z-about__in { max-width: var(--wrap-box); margin: 0 auto; padding: 0 var(--gut); }
/* Строка с текстом — по содержимому, лишнюю высоту забирают ряды с цифрами. */
.z-bento { display: grid; grid-template-columns: 3fr 1fr 1fr; grid-template-rows: 1.5fr 1fr 1fr; grid-template-areas: 'img text text' 'img acc nine' 'img fifteen twentyone'; gap: 16px; }
.z-bento__img { grid-area: img; border-radius: 8px; overflow: hidden; min-height: 0; }
.z-bento__text { grid-area: text; background: #f1ece4; border-radius: 8px; padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.z-h2-44b { margin: 0; font-size: clamp(26px, 2.8vw, 36px); font-weight: 300; line-height: 1.05; letter-spacing: -0.03em; }
.z-bento__p { margin: 0; font-size: 18px; line-height: 1.6; color: #5f584f; font-weight: 300; max-width: none; }
.z-bento__cell { border-radius: 8px; padding: 36px; display: flex; flex-direction: column; justify-content: center; background: #f1ece4; }
.z-bento__cell--accent { background: var(--accent); color: #fff; }
.z-bento__acc { grid-area: acc; }
.z-bento__nine { grid-area: nine; }
.z-bento__fifteen { grid-area: fifteen; }
.z-bento__twentyone { grid-area: twentyone; }
.z-bento__v { font-size: 54px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.z-bento__l { font-size: 14px; color: #746c62; margin-top: 12px; }

/* Investment case: фото слева, текстовые плитки справа — как блок «О компании». */
.z-casebento { display: grid; grid-template-columns: 3fr 1fr 1fr; grid-auto-rows: 1fr; gap: 16px; }
.z-casebento__img { grid-column: 1; grid-row: 1 / span 3; border-radius: 8px; overflow: hidden; min-height: 0; }
.z-casebento__cell { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 32px; border-radius: 8px; background: #f1ece4; }
.z-casebento__cell--accent { background: var(--accent); color: #fff; }
.z-casebento__ttl { margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.z-casebento__txt { margin: 0; font-size: 15px; line-height: 1.55; color: #5f584f; font-weight: 300; }
.z-casebento__cell--accent .z-casebento__txt { color: rgba(255,255,255,0.86); }
.z-bento__cell--accent .z-bento__l { color: rgba(255,255,255,0.85); }

/* Услуги */
/* Пока фото не залито — карточка стоит на графите, текст читается. */
.z-scard--static { background: #33312d; }
.z-scard, .z-scard--static { display: block; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; }
/* Без градиента: фото показываем как есть, читаемость даёт тень у текста. */
.z-scard__scrim { display: none; }
/* Спецпредложения — исключение: там светлые кадры, без затемнения текст не читается. */
.z-scard__scrim--on { display: block; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,0) 18%, rgba(20,17,14,0.5) 58%, rgba(20,17,14,0.93) 100%); }
/* Мягкий вариант: фото остаётся светлым, подложка держит текст только внизу. */
.z-scard__scrim--soft { display: block; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,0) 42%, rgba(20,17,14,0.32) 66%, rgba(20,17,14,0.76) 100%); }
/* Медленный наезд кадра — одинаково у ссылок и у карточек без ссылки. */
.z-scard:hover .z-zoom, .z-scard--static:hover .z-zoom { transform: scale(1.045); }
.z-scard__body { text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.z-scard__ic { position: absolute; top: 24px; left: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: #fff; }
.z-scard__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px; color: #fff; }
.z-scard__ttl { margin: 0; font-size: 23px; font-weight: 500; letter-spacing: -0.01em; }
/* Ровно три строки на всех карточках — иначе заголовки встают на разной высоте. */
.z-scard__desc { margin: 12px 0 0; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.82); font-weight: 300; min-height: calc(1.55em * 3); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* География / карта */
/* ============ КАРТА ОБЪЕКТОВ ============
   В контейнере: слева четверть под фильтры и список, справа карта. */
.z-geomap { max-width: var(--wrap-box); margin: 130px auto 60px; padding: 0 var(--gut); }
.z-geomap__in { display: grid; grid-template-columns: 35% 65%; height: 75vh; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; background: #fff; }
.z-geomap__mapwrap { position: relative; background: #ece7df; }
.z-geomap__canvas { width: 100%; height: 100%; }
.z-geomap__panel { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border-right: 1px solid rgba(0,0,0,0.08); background: #faf8f4; padding: 10px; }
.z-geomap__head { padding: 26px 22px 16px; }
.z-geomap__ttl { margin: 0; font-size: clamp(26px, 2.4vw, 34px); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; }
.z-geomap__p { margin: 14px 0 0; font-size: 14.5px; line-height: 1.6; color: #5f584f; font-weight: 300; }

.z-geomap__filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 22px 16px; }
.z-geomap__filters .z-sel { flex: 1 1 44%; min-width: 0; }
.z-sel__ic { flex-shrink: 0; color: var(--accent); }
.z-georeset { display: inline-flex; align-items: center; gap: 7px; padding: 11px 14px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; font: inherit; font-size: 13px; color: #746c62; cursor: pointer; white-space: nowrap; transition: color 0.2s ease, border-color 0.2s ease; }
.z-georeset:hover { color: #1b1917; border-color: rgba(0,0,0,0.3); }
.z-georeset[hidden] { display: none; } /* явный display перебивает атрибут hidden */
.z-geomap__active { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 0 22px 16px; }
.z-geomap__active[hidden] { display: none; }
.z-geomap__chips { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.z-geotag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(154,122,78,0.45); border-radius: 8px; background: #f6f2ea; color: #1b1917; font: inherit; font-size: 13px; cursor: pointer; transition: border-color 0.2s ease; }
.z-geotag:hover { border-color: var(--accent); }
.z-geotag svg { color: var(--accent); }

/* Контакты служб в карточке */
.z-dept__links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.z-dept__links .z-ha { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }

/* Кастомный селект: без нативного вида и без горизонтальной прокрутки */
.z-sel { position: relative; }
.z-sel__btn { display: flex; align-items: center; gap: 9px; width: 100%; padding: 11px 14px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; font: inherit; font-size: 13.5px; color: inherit; cursor: pointer; text-align: left; transition: border-color 0.2s ease; }
.z-sel__btn:hover, .z-sel.is-open .z-sel__btn { border-color: var(--accent); }
.z-sel__val { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.z-sel__chev { flex-shrink: 0; color: #9c948a; transition: transform 0.25s ease; }
.z-sel.is-open .z-sel__chev { transform: rotate(180deg); }
.z-sel__menu { position: absolute; z-index: 20; top: calc(100% + 6px); left: 0; right: 0; max-height: 300px; overflow-y: auto; padding: 6px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; box-shadow: 0 30px 60px -30px rgba(30,24,16,0.45); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; }
.z-sel.is-open .z-sel__menu { opacity: 1; visibility: visible; transform: none; }
.z-sel__opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 9px 12px; border: 0; border-radius: 8px; background: none; font: inherit; font-size: 13.5px; color: inherit; text-align: left; cursor: pointer; transition: background 0.15s ease; }
.z-sel__opt:hover { background: rgba(0,0,0,0.045); }
.z-sel__opt.is-on { background: var(--accent); color: #fff; }
.z-sel__n { font-size: 11px; opacity: 0.6; font-variant-numeric: tabular-nums; }

/* Кнопки масштаба — справа, в стиле сайта вместо стандартных серых */
.z-geomap__zoom { position: absolute; z-index: 5; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; }
.z-zoombtn { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 8px; border: 0; background: var(--accent); color: #fff; cursor: pointer; box-shadow: 0 18px 40px -26px rgba(30,24,16,0.6); transition: filter 0.2s ease; }
.z-zoombtn:hover { filter: brightness(1.1); }

.z-geomap__list { flex: 1; overflow-y: scroll; padding: 0 8px 18px 12px; margin-right: 15px; margin-bottom: 15px; display: flex; flex-direction: column; gap: 2px; }
.z-geomap__list::-webkit-scrollbar { width: 10px; -webkit-appearance: none; }
.z-geomap__list::-webkit-scrollbar-track { background: rgba(0,0,0,0.06); border-radius: 8px; margin: 4px 0; }
.z-geomap__list::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 8px; border: 2px solid transparent; background-clip: content-box; }
.z-geomap__list::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.z-geoitem { position: relative; display: flex; align-items: center; border-radius: 8px; transition: background 0.2s ease; }
.z-geoitem:hover { background: rgba(0,0,0,0.035); }
.z-geoitem.is-on { background: var(--accent); color: #fff; }
.z-geoitem__pick { flex: 1; min-width: 0; display: flex; align-items: center; gap: 14px; padding: 10px 12px; border: 0; background: none; border-radius: 8px; font: inherit; color: inherit; text-align: left; cursor: pointer; }
.z-geoitem__media { flex-shrink: 0; width: 60px; height: 60px; border-radius: 8px; overflow: hidden; background: #ece7df; }
.z-geoitem__media img { width: 100%; height: 100%; object-fit: cover; }
.z-geoitem__body { min-width: 0; }
.z-geoitem__name { display: block; font-size: 14.5px; font-weight: 500; line-height: 1.3; }
.z-geoitem__meta { display: flex; align-items: center; gap: 12px; margin-top: 6px; font-size: 12.5px; color: #9c948a; }
.z-geoitem.is-on .z-geoitem__meta { color: rgba(255,255,255,0.8); }
.z-geoitem__city { display: inline-flex; align-items: center; gap: 5px; }
.z-geoitem__stars { color: var(--accent); letter-spacing: 0.06em; }
.z-geoitem.is-on .z-geoitem__stars { color: #fff; }
.z-geoitem__go { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-right: 8px; border-radius: 50%; color: inherit; opacity: 0; transition: opacity 0.2s ease, background 0.2s ease; }
.z-geoitem:hover .z-geoitem__go, .z-geoitem.is-on .z-geoitem__go { opacity: 1; }
.z-geoitem__go:hover { background: rgba(0,0,0,0.08); }
.z-geoitem.is-on .z-geoitem__go:hover { background: rgba(255,255,255,0.2); }
.z-geomap__empty { margin: 0; padding: 0 22px 24px; font-size: 14px; color: #9c948a; }

/* Подпись выбранной метки: якорь — рамка ровно по иконке 38×38, от неё и центруем */
.z-pinwrap { position: absolute; left: 0; top: 0; width: 38px; height: 38px; pointer-events: none; }
.z-pinlabel { position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%); white-space: nowrap; padding: 8px 13px; border-radius: 8px; background: #1b1917; color: #fff; font-size: 13px; font-weight: 500; line-height: 1.2; box-shadow: 0 14px 30px -16px rgba(0,0,0,0.7); }
.z-pinlabel::after { content: ""; position: absolute; left: 50%; top: 100%; margin-left: -5px; border: 5px solid transparent; border-top-color: #1b1917; }


/* Лояльность */
.z-loy-sec { position: relative; color: #fff; overflow: hidden; margin-top: 70px; }
.z-loy__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,14,0.88) 0%, rgba(20,17,14,0.64) 55%, rgba(20,17,14,0.30) 100%); }
.z-loy__in { position: relative; max-width: var(--wrap-box); margin: 0 auto; padding: 140px var(--gut); }
.z-h2-62 { margin: 0; font-size: clamp(29px, 3.5vw, 47px); font-weight: 300; line-height: 1.02; letter-spacing: -0.025em; }
.z-loy__p { margin: 26px 0 0; max-width: 68ch; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.84); font-weight: 300; }
/* Шесть привилегий: три в ряд, две строки. Заголовок вынесен над блоком. */
.z-loy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; margin-bottom: 40px; }
.z-loy-sec .z-loy__in { padding-top: 90px; padding-bottom: 90px; }
.z-loycard { display: flex; align-items: center; gap: 16px; min-height: 100%; border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; padding: 20px 24px; background: rgba(255,255,255,0.05); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
/* Крупная иконка, текст в две строки, без порядковых номеров. */
.z-loycard__ic { flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; }
.z-loycard__txt { margin: 0; font-size: 16px; line-height: 1.4; font-weight: 300; }

/* Пресс-центр (карточки без фото) */
.z-news { display: flex; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; min-height: 240px; transition: all 0.3s ease; }
.z-news__top { display: flex; align-items: center; gap: 12px; }
.z-ncat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 5px 11px; border-radius: 30px; }
.z-news__date { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #9c948a; }
.z-news__ttl { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.24; }
.z-news__read { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13.5px; font-weight: 500; color: var(--accent); }

/* Кнопки-модификаторы размеров/цветов, встречающиеся на страницах */
.z-btn--pad-xl { padding: 16px 36px; }
.z-btn--pad-sm { padding: 14px 28px; }
.z-btn--pad-32 { padding: 15px 32px; }
.z-btn--f145 { font-size: 14.5px; }

/* Нумерованный надзаголовок (хелпер zont_eyebrow) */
.z-neyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.z-neyebrow__num { font-size: 13px; font-weight: 500; color: var(--accent); font-variant-numeric: tabular-nums; }
.z-neyebrow__line { width: 26px; height: 1px; background: var(--accent); }
.z-neyebrow__txt { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--accent); }
.z-neyebrow__txt--white { color: #fff; }

/* Коллекция отелей — горизонтальный слайдер */
/* stretch выравнивает карточки по самой высокой — город и «Смотреть» встают на одну линию. */
.z-cslider { display: flex; align-items: stretch; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.z-cslider::-webkit-scrollbar { display: none; }
.z-cslider > .z-card { flex: 0 0 calc((100% - 52px) / 3); scroll-snap-align: start; }
@media (max-width: 1024px) { .z-cslider > .z-card { flex-basis: calc((100% - 26px) / 2); } }
@media (max-width: 640px)  { .z-cslider > .z-card { flex-basis: 82%; } }

/* Логотип, соцсети, языковой переключатель, пункты меню hero (хелперы) */
.z-logo-34 { height: 34px; width: auto; }
.z-logo-38 { height: 18px; width: auto; }
.z-logo-40 { height: 26px; width: auto; }
.z-logo-44 { height: 44px; width: auto; }
.z-logo-46 { height: 46px; width: auto; }
.z-logo-53 { height: 53px; width: auto; }
.z-logo-dark { filter: brightness(0); }
.z-logo-txt { font-weight: 600; letter-spacing: .02em; }

/* Логотип: знак + «HOTEL GROUP» в строку */
.z-lg { display: inline-flex; align-items: center; gap: 12px; max-width: 100%; }
.mnav__brand .z-lg__txt { color: rgba(255,255,255,0.7); }
.mnav__brand .z-logo-38 { filter: brightness(0) invert(1); }
.z-lg img { flex-shrink: 0; }
.z-lg__txt { line-height: 20px; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; white-space: nowrap; opacity: 0.7; }
.z-hbar--clear .z-lg__txt { color: #fff; }
.z-hbar--clear.is-solid .z-lg__txt { color: inherit; }
.z-preloader .z-lg__txt { color: #fff; }
.z-flogo .z-lg__txt { color: inherit; }
.z-soc { display: inline-flex; opacity: 0.82; }
.z-op { opacity: 0.9; }

/* ============================================================
   КАТАЛОГ ОТЕЛЕЙ (archive-hotel.php)
   ============================================================ */
.z-cat { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.z-fopen, .z-fclose, .z-fsel { display: none; }
.z-fgroup { margin-top: 24px; }
/* Недоступные при текущем выборе значения — гасим, но не прячем. */
.z-fchip.is-off, .z-fcity.is-off { opacity: 0.35; pointer-events: none; }
.z-fgroup__ttl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #9c948a; margin-bottom: 12px; }

/* Заглушка модуля бронирования на внутренних страницах — без наложений. */
.z-bookph-sec { max-width: var(--wrap-box); margin: 0 auto; padding: 44px var(--gut) 0; }
.z-bookph { min-height: 96px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; }
.z-bookph__txt { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: #9c948a; }
.z-filters { position: sticky; top: 100px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 26px; box-shadow: 0 30px 60px -46px rgba(30,24,16,0.3); }
.z-filters__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.z-filters__ttl { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; }
.z-freset { display: inline-flex; align-items: center; gap: 6px; font: inherit; font-size: 12.5px; color: #9c948a; background: none; border: 0; padding: 0; cursor: pointer; transition: color 0.2s ease; }
.z-fsearch { display: flex; align-items: center; gap: 10px; border: 1px solid rgba(0,0,0,0.14); border-radius: 8px; padding: 12px 14px; color: #9c948a; font-size: 14px; margin-bottom: 26px; transition: border-color 0.2s ease; }
.z-fsearch input { flex: 1; min-width: 0; border: 0; background: none; outline: none; font: inherit; font-size: 14px; color: #1b1917; }
.z-flabel { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #9c948a; margin-bottom: 14px; }
.z-fcities { display: flex; flex-direction: column; gap: 2px; margin-bottom: 26px; }
.z-fcity { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; font: inherit; font-size: 14px; color: inherit; text-align: left; background: none; border: 0; padding: 10px 12px; border-radius: 8px; cursor: pointer; transition: all 0.2s ease; }
.z-fcity__n { font-size: 12px; color: #b4ab9e; font-variant-numeric: tabular-nums; }
.z-fchips { display: flex; flex-wrap: wrap; gap: 8px; }
.z-fchip { display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: 13px; color: inherit; background: none; padding: 9px 14px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.14); cursor: pointer; transition: all 0.2s ease; }
.z-catbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; font-size: 14px; color: #746c62; }
.z-fcount { color: #1b1917; font-weight: 500; }
.z-sortlabel { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.z-sortwrap { position: relative; display: inline-flex; align-items: center; }
.z-sortsel { appearance: none; -webkit-appearance: none; border: 0; background: none; font: inherit; color: inherit; cursor: pointer; padding: 0 22px 0 0; outline: none; }
.z-sortchev { position: absolute; right: 0; display: inline-flex; pointer-events: none; }
.z-hgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Каталог без сайдбара — четыре карточки в ряд. */
.z-catempty { margin: 40px 0 0; font-size: 15px; color: #746c62; }
.z-catnote { margin: 0; font-size: 15px; color: #746c62; }

/* Панель FAQ: по ширине контейнера, равные отступы, фирменный радиус. */
.z-faqsec .z-faq { background: #f3efe8; border-radius: 8px; padding: 56px; }
.z-faqitem { border-bottom: 1px solid rgba(0,0,0,0.1); }
.z-faqsum { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-size: 17px; font-weight: 500; }
/* Раскрытие: строка грида 0fr → 1fr плюс мягкое проявление текста. */
.z-faqwrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(0.4,0,0.2,1); }
.z-faqitem[open] .z-faqwrap { grid-template-rows: 1fr; }
.z-faqitem.is-closing .z-faqwrap { grid-template-rows: 0fr; }
.z-faqwrap > * { overflow: hidden; min-height: 0; }
.z-faqans { opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease 0.1s, transform 0.4s cubic-bezier(0.4,0,0.2,1) 0.1s; }
.z-faqitem[open] .z-faqans { opacity: 1; transform: none; }
.z-faqitem.is-closing .z-faqans { opacity: 0; transform: translateY(-6px); transition-delay: 0s; transition-duration: 0.2s; }
.z-faqsum { cursor: pointer; list-style: none; transition: color 0.2s ease; }
.z-faqsum::-webkit-details-marker { display: none; }
.z-faqsum:hover { color: var(--accent); }
.z-faqsum svg { transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.z-faqitem[open] .z-faqsum svg { transform: rotate(180deg); }
.z-faqans { margin: 0 0 22px; font-size: 15px; line-height: 1.6; color: #746c62; font-weight: 300; max-width: 100%; }
.z-faqans p { margin: 0 0 10px; }
.z-faqans p:last-child { margin-bottom: 0; }
.z-faqans ul { margin: 0 0 10px; padding-left: 18px; }
/* Маркеры задаём на li: глобальный сброс в main.css отключает их именно там. */
.z-faqans ul li { list-style: disc; margin-bottom: 4px; }
.z-faqans li:last-child { margin-bottom: 0; }
.z-faqans a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
/* Открытый вопрос: прячем вертикальный штрих плюса — остаётся минус */
.z-faqsum svg path { transition: opacity 0.2s ease; }
.z-faqitem[open] .z-faqsum svg path:last-child { opacity: 0; }

/* ============================================================
   СТРОКА БРОНИРОВАНИЯ (booking.php)
   ============================================================ */
.z-booking-sec { max-width: var(--wrap-box); margin: 40px auto 0; padding: 0 var(--gut); }
.z-booking { background: #fff; border-radius: 8px; box-shadow: 0 30px 70px -40px rgba(30,24,16,0.3); padding: 12px; display: flex; align-items: stretch; flex-wrap: wrap; }
.z-bembed { background: #fff; border-radius: 8px; box-shadow: 0 30px 70px -40px rgba(30,24,16,0.3); padding: 12px; }
.z-bfield { flex: 1; padding: 16px 22px; }
.z-bfield--130 { min-width: 130px; }
.z-bfield--110 { min-width: 110px; }
.z-bfield--100 { min-width: 100px; }
.z-blabel { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #9c948a; margin-bottom: 8px; }
.z-bsel { width: 100%; border: 0; background: none; outline: none; font: inherit; font-size: 15.5px; font-weight: 500; color: #1b1917; }
.z-bsep { width: 1px; background: rgba(0,0,0,0.08); margin: 14px 0; }
.z-bgo { padding: 8px; display: flex; }
.z-bright { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--accent); color: #fff; border: 0; border-radius: 8px; padding: 0 30px; font: inherit; font-size: 15px; font-weight: 500; white-space: nowrap; cursor: pointer; }

/* ============================================================
   КАРТОЧКА ОТЕЛЯ В КАТАЛОГЕ (hotel-card.php)
   ============================================================ */
.z-hcard { display: flex; flex-direction: column; height: 100%; min-height: 560px; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; background: #fff; transition: all 0.3s ease; }
/* Фото — ровно половина высоты карточки. */
.z-hcard__media { position: relative; display: block; flex: 0 0 50%; min-height: 0; overflow: hidden; }
.z-hcard__tags { position: absolute; top: 14px; left: 14px; display: flex; gap: 7px; }
.z-htag-star { background: rgba(255,255,255,0.94); color: var(--accent); font-size: 11.5px; padding: 5px 10px; border-radius: 30px; white-space: nowrap; }
.z-htag-type { background: rgba(27,25,23,0.55); color: #fff; font-size: 11.5px; padding: 5px 11px; border-radius: 30px; white-space: nowrap; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.z-hcard__rating { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.94); font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 30px; }
.z-hcard__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.z-hcard__ttl { margin: 0; font-size: 17px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; min-height: 2.5em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.z-hcard__city { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; color: #9c948a; }
.z-hcard__desc { margin: 12px 0 0; font-size: 13.5px; line-height: 1.5; color: #746c62; font-weight: 300; min-height: 3em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.z-hcard__feats { display: flex; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.07); color: #9c948a; }
.z-hcard__feat { display: inline-flex; }
.z-hcard__price { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 20px; }
.z-hcard__from { font-size: 12.5px; color: #9c948a; }
.z-hcard__rule { flex: 1; height: 1px; background: rgba(0,0,0,0.08); }
.z-hcard__num { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; white-space: nowrap; }
.z-hcard__per { font-size: 12.5px; color: #9c948a; font-weight: 400; }
.z-hcard__actions { display: flex; flex-direction: column; gap: 10px; }
.z-hcard__actions--priced { margin-top: 16px; }
.z-hcard__actions--free { margin-top: auto; padding-top: 20px; }
.z-bbook { display: flex; align-items: center; justify-content: center; font-size: 14px; background: #33312d; color: #fff; padding: 12px; border-radius: 40px; font-weight: 500; transition: background 0.25s ease; }
.z-more { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: var(--accent); }

/* ============================================================
   СТРАНИЦА ОТЕЛЯ (single-hotel.php)
   ============================================================ */
.z-hphead__in { max-width: var(--wrap-box); margin: 0 auto; padding: 60px var(--gut) 56px; }
.z-hcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9c948a; margin-bottom: 30px; }
.z-hphead__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.z-hmeta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; flex-wrap: wrap; }
.z-hmeta__stars { color: var(--accent); letter-spacing: 0.05em; }
.z-hmeta__dim { color: #9c948a; }
.z-hmeta__sep { color: #d8d1c6; }
.z-htitle { margin: 0; font-size: clamp(29px, 3.6vw, 48px); font-weight: 300; line-height: 1.0; letter-spacing: -0.03em; max-width: 35ch; }
.z-hactions2 { display: flex; gap: 12px; flex-wrap: wrap; }

.z-galsec { max-width: var(--wrap-box); margin: 40px auto 0; padding: 0 var(--gut); }
.z-gal { display: grid; gap: 14px; height: 560px; }
.z-gal--1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.z-gal--2 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr; }
.z-gal--3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.z-gal--4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.z-gal--5 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.z-gal--3 > .z-galcell:first-child, .z-gal--5 > .z-galcell:first-child { grid-row: span 2; }
.z-galcell { position: relative; padding: 0; border: 0; background: none; border-radius: 8px; overflow: hidden; cursor: pointer; }
.z-galmore { position: absolute; inset: 0; background: rgba(27,25,23,0.5); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; font-weight: 500; gap: 8px; }

.z-htwo { max-width: var(--wrap-box); margin: 0 auto; padding: 90px var(--gut) 40px; }
.z-hcols { display: grid; grid-template-columns: 1.55fr 0.85fr; gap: 56px; align-items: start; }
.z-h2-38 { margin: 0; font-size: clamp(24px, 2.6vw, 33px); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
.z-htext { margin-top: 24px; font-size: 17px; line-height: 1.7; color: #5f584f; font-weight: 300; max-width: 62ch; }
.z-hstats { display: grid; gap: 2px; margin-top: 40px; background: rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; }
.z-hstats--1 { grid-template-columns: 1fr; }
.z-hstats--2 { grid-template-columns: repeat(2, 1fr); }
.z-hstats--3 { grid-template-columns: repeat(3, 1fr); }
.z-hstats--4 { grid-template-columns: repeat(4, 1fr); }
.z-hstat { background: #faf8f4; padding: 22px; }
.z-hstat__v { margin-bottom: 6px; }
.z-hstat__l { font-size: 13px; color: #746c62; }
.z-hstat-stars { font-size: 15px; color: var(--accent); }
.z-hstat-val { font-size: 26px; font-weight: 300; font-family: inherit; }
.z-hstat-pre, .z-hstat-unit { font-size: 15px; color: #746c62; }
.z-hamen { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.z-hamen__ttl { margin: 0 0 18px; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: #9c948a; font-weight: 500; }
.z-hamen__list { display: flex; flex-direction: column; gap: 12px; }
.z-hamen__item { display: flex; align-items: center; gap: 10px; font-size: 15px; }

/* Колонка тянется на всю высоту строки, липнет сама карточка — иначе прилипать некуда. */
.z-hbook-sticky { align-self: stretch; }
.z-hbook-card--sticky { position: sticky; top: 100px; }
.z-hbook-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 28px; box-shadow: 0 30px 60px -40px rgba(30,24,16,0.3); }
.z-hbook-price { display: flex; align-items: baseline; gap: 8px; }
.z-hbook-price__from, .z-hbook-price__per { font-size: 14px; color: #9c948a; }
.z-hbook-price__note { flex-basis: 100%; margin-top: 6px; font-size: 13px; color: #9c948a; }
.z-hbook-price__num { font-size: 32px; font-weight: 400; letter-spacing: -0.02em; white-space: nowrap; }
.z-hbook-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.z-hbook-field { display: block; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; padding: 12px 14px; }
.z-hbook-field--mt { margin-top: 10px; }
.z-hbook-lbl { display: block; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #9c948a; margin-bottom: 5px; }
.z-hbook-input { width: 100%; border: 0; background: none; outline: none; font: inherit; font-size: 14px; font-weight: 500; color: #1b1917; }
.z-hbook-submit { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; margin-top: 16px; background: var(--accent); color: #fff; border: 0; padding: 15px; border-radius: 8px; font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; transition: filter 0.25s ease; }
.z-hbook-submit:hover { filter: brightness(1.08); }
.z-hbook-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: 12.5px; color: #9c948a; }
.z-btn--pad15 { padding: 15px; }

/* ============================================================
   О КОМПАНИИ (page-about.php)
   ============================================================ */
.z-numsec { background: #f1ece4; margin-top: 110px; }
.z-anums { max-width: var(--wrap-box); margin: 0 auto; padding: 90px var(--gut); display: grid; }
.z-anums--1 { grid-template-columns: 1fr; }
.z-anums--2 { grid-template-columns: repeat(2, 1fr); }
.z-anums--3 { grid-template-columns: repeat(3, 1fr); }
.z-anums--4 { grid-template-columns: repeat(4, 1fr); }
.z-anum { padding: 0 32px; border-left: 1px solid rgba(0,0,0,0.1); }
.z-anum--first { padding: 0 32px 0 0; border-left: 0; }
.z-anum--last { padding: 0 0 0 32px; }
.z-anum__v { font-size: 56px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.z-anum__l { font-size: 14px; color: #746c62; margin-top: 14px; }
.z-mile { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.z-mile__year { font-size: 24px; font-weight: 400; color: var(--accent); letter-spacing: -0.01em; }
.z-mile__event { font-size: 16px; line-height: 1.5; color: #3a352f; padding-top: 3px; }
.z-portrait { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; }
.z-portrait--ph { background: repeating-linear-gradient(135deg, #efe9df, #efe9df 10px, #eae3d7 10px, #eae3d7 20px); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; }
.z-portrait__cap { font-family: inherit; font-size: 11px; letter-spacing: 0.1em; color: #a99f8f; }
.z-person__name { margin: 18px 0 0; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.z-person__role { font-size: 14px; color: #746c62; margin-top: 5px; }
.z-brands { padding: 0; }
.z-brands__label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #9c948a; }
.z-brands__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.z-brand { display: flex; align-items: center; justify-content: center; min-height: 140px; padding: 28px; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; background: #fff; font-size: 15px; color: #746c62; }
.z-brand__img { width: 100%; height: 56px; object-fit: contain; filter: none; opacity: 1; }
.z-projhead { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; flex-wrap: wrap; }
.z-tile { display: block; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; }
.z-tile__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,0.05) 45%, rgba(20,17,14,0.8) 100%); }
.z-tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; color: #fff; }
.z-tile__name { display: block; font-size: 20px; font-weight: 500; }
.z-tile__city { display: block; font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; }
.z-evbox { margin-top: 24px; background: #1b1917; color: #fff; border-radius: 8px; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.z-evbox__eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.z-evbox__ttl { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 300; letter-spacing: -0.02em; max-width: 22ch; }

/* ============================================================
   УСЛУГИ (page-services.php)
   ============================================================ */
.z-dir { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.z-dir__eyebrow { font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 16px; }
.z-dir__text { margin: 22px 0 0; font-size: 16.5px; line-height: 1.7; color: #5f584f; font-weight: 300; max-width: 52ch; }
.z-dir__img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 40px 80px -50px rgba(30,24,16,0.4); }
.z-dir__img--rev { order: -1; }
.z-dir__btn { margin-top: 34px; }
.z-dlist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.z-dlist__item { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.z-stages { display: flex; flex-direction: column; gap: 2px; margin-top: 32px; background: rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; }
.z-stage { background: #faf8f4; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.z-stage__n { font-size: 15px; color: var(--accent); font-weight: 500; width: 28px; }
.z-stage__t { font-size: 15.5px; }
.z-dchips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.z-dchip { font-size: 14px; padding: 9px 16px; border-radius: 40px; border: 1px solid rgba(0,0,0,0.14); }
.z-secflush { max-width: var(--wrap-box); margin: 0 auto; padding: 110px var(--gut) 0; }

/* ============================================================
   ИНВЕСТОРАМ (page-investors.php)
   ============================================================ */
.z-metsec { background: #33312d; color: #fff; margin-top: 110px; }
.z-metsec__in { max-width: var(--wrap-box); margin: 0 auto; padding: 90px var(--gut); }
.z-met-h { margin: 0 0 48px; font-size: clamp(26px, 3.2vw, 40px); font-weight: 300; letter-spacing: -0.02em; }
.z-metgrid { display: grid; }
.z-metgrid--1 { grid-template-columns: 1fr; }
.z-metgrid--2 { grid-template-columns: repeat(2, 1fr); }
.z-metgrid--3 { grid-template-columns: repeat(3, 1fr); }
.z-metgrid--4 { grid-template-columns: repeat(4, 1fr); }
.z-metnum { padding: 0 32px; border-left: 1px solid rgba(255,255,255,0.16); }
.z-metnum--first { padding: 0 32px 0 0; border-left: 0; }
.z-metnum--last { padding: 0 0 0 32px; }
.z-metnum__v { font-size: 52px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.z-metnum__l { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 14px; }
.z-bmlist { display: grid; grid-template-columns: 1fr; gap: 16px; }
.z-bmcard { border: 1px solid rgba(0,0,0,0.09); border-radius: 8px; padding: 28px; background: #fff; display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.z-bmcard__n { font-size: 26px; font-weight: 300; color: var(--accent); }
.z-bmcard__ttl { margin: 0; font-size: 19px; font-weight: 500; }
.z-bmcard__txt { margin: 8px 0 0; font-size: 14.5px; line-height: 1.6; color: #746c62; font-weight: 300; }
.z-irsec { max-width: var(--wrap-box); margin: 90px auto 0; padding: 0 var(--gut); }
.z-ir { background: #f1ece4; border-radius: 8px; padding: 56px 60px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.z-ir__ttl { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 300; letter-spacing: -0.02em; }
.z-ir__text { margin: 12px 0 0; font-size: 16px; color: #5f584f; font-weight: 300; }
@media (max-width: 1180px) {
  .z-metgrid { grid-template-columns: repeat(2, 1fr) !important; gap: 40px 0; }
  .z-metnum { padding: 0 32px !important; }
  .z-metnum:nth-child(odd) { padding-left: 0 !important; border-left: 0 !important; }
}

/* ============================================================
   ЛОЯЛЬНОСТЬ (page-loyalty.php)
   ============================================================ */
.z-bandhead { max-width: var(--wrap-box); margin: 90px auto 0; padding: 0 var(--gut); }
.z-bandhead .z-h2-46 { margin-bottom: 0; }
.z-bandsec { max-width: var(--wrap-box); margin: 28px auto 0; padding: 0 var(--gut); }
.z-bandwrap { position: relative; border-radius: 8px; overflow: hidden; min-height: 420px; display: flex; align-items: center; color: #fff; }
.z-bandscrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,14,0.85) 0%, rgba(20,17,14,0.5) 60%, rgba(20,17,14,0.2) 100%); }
.z-bandin { position: relative; padding: 60px; max-width: 620px; }
.z-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 40px; font-size: 14px; font-weight: 500; }
.z-band__ttl { margin: 24px 0 0; font-size: clamp(28px, 3.6vw, 46px); font-weight: 300; line-height: 1.06; letter-spacing: -0.025em; }
.z-band__btn { margin-top: 30px; }
.z-join { background: #f1ece4; border-radius: 8px; padding: 0 64px; }
.z-join__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.z-joinstep__n { font-size: 15px; font-weight: 500; color: var(--accent); margin-bottom: 14px; }
.z-joinstep__ttl { margin: 0; font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.z-joinstep__txt { margin: 10px 0 0; font-size: 15px; line-height: 1.6; color: #5f584f; font-weight: 300; }
.z-join__btn { margin-top: 44px; }
@media (max-width: 900px) { .z-join__grid { grid-template-columns: 1fr; } }

/* ============================================================
   КОНТАКТЫ (page-contacts.php)
   ============================================================ */
.z-contactsec { max-width: var(--wrap-box); margin: 60px auto 0; padding: 0 var(--gut); }
.z-cmap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: stretch; }
.z-ccards { display: flex; flex-direction: column; gap: 16px; }
.z-ccard { border: 1px solid rgba(0,0,0,0.09); border-radius: 8px; padding: 30px; background: #fff; display: flex; align-items: center; gap: 20px; }
.z-ccard__ic { width: 50px; height: 50px; border-radius: 50%; background: #f1ece4; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.z-ccard__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #9c948a; margin-bottom: 5px; }
.z-ccard__val { font-size: 20px; font-weight: 500; }
.z-ccard__val2 { font-size: 20px; font-weight: 500; line-height: 1.35; }
.z-ccard__val3 { font-size: 20px; font-weight: 500; }
.z-omap { position: relative; border-radius: 8px; overflow: hidden; min-height: 480px; background: linear-gradient(135deg, #ece6db 0%, #e4ddd0 100%); border: 1px solid rgba(0,0,0,0.08); }
.z-omap__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px); background-size: 46px 46px; }
.z-omap__pin { position: absolute; top: 44%; left: 48%; color: var(--accent); }
.z-omap__card { position: absolute; left: 50%; top: 58%; transform: translateX(-50%); text-align: center; background: rgba(250,248,244,0.86); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 18px 24px; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.z-omap__ttl { font-size: 15px; font-weight: 500; }
.z-omap__addr { font-size: 12.5px; color: #9c948a; }
.z-reqsec { max-width: var(--wrap-box); margin: 0 auto; padding: 90px var(--gut) 40px; }
.z-reqbox { background: #f1ece4; border-radius: 8px; padding: 56px 60px; }
.z-reqgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 48px; }
.z-req { border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 16px; }
.z-req__k { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #9c948a; margin-bottom: 8px; }
.z-req__v { font-size: 17px; font-weight: 500; }
@media (max-width: 980px) {
  .z-cmap { grid-template-columns: 1fr; }
  .z-reqgrid { grid-template-columns: 1fr 1fr; }
  .z-reqbox { padding: 40px 28px; }
}
@media (max-width: 620px) { .z-reqgrid { grid-template-columns: 1fr; } }

/* ============================================================
   ПРЕСС-ЦЕНТР (home.php) + КАРТОЧКА НОВОСТИ (news-card.php)
   ============================================================ */
.z-featsec { max-width: var(--wrap-box); margin: 90px auto 0; padding: 0 var(--gut); }
.z-feat { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; border-radius: 8px; overflow: hidden; background: #fff; border: 2px solid rgba(0,0,0,0.16); }
.z-feat__media { grid-column: 2; grid-row: 1; aspect-ratio: 16/10; overflow: hidden; }
.z-featin { grid-column: 1; grid-row: 1; }
.z-featin { padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.z-feat__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.z-feat__date { font-size: 13px; color: #9c948a; }
.z-feat__ttl { margin: 0; font-size: clamp(24px, 3vw, 38px); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
.z-feat__lead { margin: 18px 0 0; font-size: 16px; line-height: 1.6; color: #5f584f; font-weight: 300; max-width: 46ch; }
.z-feat__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 14px; font-weight: 500; color: var(--accent); }
.z-newssec { max-width: var(--wrap-box); margin: 0 auto; padding: 70px var(--gut) 40px; }
.z-nfilter { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.z-nchip { font: inherit; font-size: 13.5px; color: inherit; background: none; padding: 9px 16px; border-radius: 40px; border: 1px solid rgba(0,0,0,0.14); cursor: pointer; transition: all 0.2s ease; }
.z-nyear { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: #9c948a; cursor: pointer; }
.z-nyear__wrap { position: relative; display: inline-flex; align-items: center; }
.z-nyear__sel { appearance: none; -webkit-appearance: none; border: 0; background: none; font: inherit; color: inherit; cursor: pointer; padding: 0 22px 0 0; outline: none; }
.z-nyear__chev { position: absolute; right: 0; display: inline-flex; pointer-events: none; }
.z-ncard { display: block; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; background: #fff; transition: all 0.3s ease; }
.z-ncard__media { aspect-ratio: 16/10; overflow: hidden; }
.z-ncard__body { padding: 24px; }
.z-ncard__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.z-ncard__cat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.z-ncard__date { font-size: 12.5px; color: #9c948a; }
.z-ncard__ttl { margin: 0; font-size: 19px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }

/* ============================================================
   НОВОСТЬ (single.php) + СЛУЖЕБНЫЕ (page.php, index.php, 404.php)
   ============================================================ */
.z-arthead { max-width: 860px; margin: 0 auto; padding: 68px var(--gut) 0; }
.z-artmeta { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.z-arth1 { margin: 0; font-size: clamp(28px, 3.4vw, 44px); font-weight: 300; line-height: 1.05; letter-spacing: -0.03em; }
.z-artlead { margin: 24px 0 0; font-size: 19px; line-height: 1.6; color: #5f584f; font-weight: 300; }
.z-artimg-sec { max-width: 1100px; margin: 44px auto 0; padding: 0 var(--gut); }
.z-artimg { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.z-artbody { max-width: 720px; margin: 0 auto; padding: 64px var(--gut) 40px; font-size: 17.5px; line-height: 1.8; color: #34302a; font-weight: 300; }
.z-newsback { display: inline-flex; align-items: center; gap: 9px; margin-top: 44px; font-size: 15px; font-weight: 500; color: var(--accent); }
.z-relsec { max-width: var(--wrap-box); margin: 0 auto; padding: 70px var(--gut) 40px; border-top: 1px solid rgba(0,0,0,0.1); }
.z-relttl { margin: 40px 0 32px; font-size: 26px; font-weight: 400; letter-spacing: -0.015em; }
/* Служебные страницы */
.z-pagebody { max-width: 720px; margin: 0 auto; padding: 64px var(--gut) 40px; font-size: 17.5px; line-height: 1.8; color: #34302a; font-weight: 300; }
.z-404 { max-width: var(--wrap-box); margin: 0 auto; padding: 140px var(--gut) 120px; text-align: center; }
.z-404__eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.z-404__h1 { margin: 0; font-size: clamp(34px, 4.6vw, 62px); font-weight: 300; line-height: 1.05; letter-spacing: -0.03em; }
.z-404__lead { margin: 24px auto 0; max-width: 52ch; font-size: 17px; line-height: 1.65; color: #5f584f; font-weight: 300; }
.z-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ============================================================
   МОБИЛЬНАЯ ВЁРСТКА (только media-запросы — десктоп не затрагивается)
   ============================================================ */

/* Бургер для тёмного первого экрана */
.z-burger--light { border-color: rgba(255,255,255,0.4); color: #fff; }

/* --- Переход на мобильную навигацию: прячем десктоп-меню главной, показываем бургер --- */
@media (max-width: 1180px) {
  .z-hero__nav, .z-sticky__nav { display: none !important; }
  .z-burger { display: inline-flex !important; align-items: center; justify-content: center; }
}

/* --- Планшет/крупный мобильный: карточка слайдера в поток, колонки в стек --- */
@media (max-width: 900px) {
  .z-phgrid { grid-template-columns: 1fr; gap: 24px; }
  .z-faqsec .z-faq { padding: 30px 20px; }
  .z-g3-26 { grid-template-columns: 1fr; }
  .z-projhead, .z-sechead { gap: 20px; }
}

/* --- Мобильный --- */
@media (max-width: 600px) {
  /* Шапка: тесные отступы, скрытие лишнего */
  .z-hidesm { display: none !important; }
  .z-hw--email { display: none; }
  .z-topbar__in { padding: 8px 16px; }
  .z-hrow { padding: 12px 16px; }
  .z-sticky__in { padding: 11px 16px; }
  .z-sticky__phone { display: none; }
  .z-hero__topbar-in { padding: 8px 18px; }
  .z-hero__header { padding: 16px 18px; }

  :root { --hbar-h: 106px; }

  /* Первый экран */
  .z-hero__body { padding: calc(var(--hbar-h) + 24px) 18px 0; }
  .z-hero__eyebrow { margin-bottom: 18px; }
  .z-hero__lead { font-size: 16px; margin-top: 22px; }
  .z-hero__cta { margin-top: 30px; }
  .z-hero__stats { gap: 20px; }
  .z-hero__bottom { flex-direction: column; align-items: stretch; gap: 30px; margin-top: 40px; }
  .z-hero__slide { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; width: 100%; }
  .z-hero__stat { padding-left: 20px; }
  .z-hero__stat--first { padding-left: 0; }
  .z-hero__stat-v { font-size: 34px; }
  .z-hero__stat-l { font-size: 12px; }
  .z-hero__book { margin: 38px 0 -34px; min-height: 76px; }
  .z-cathero { min-height: 68vh; }
  .z-cathero--hotel { min-height: 68vh; }
  .z-cathero__in { padding-top: calc(var(--hbar-h) + 52px); padding-bottom: 36px; }
  /* Крошки остаются прижатыми к шапке, а контент обложки начинается ниже —
     иначе надзаголовок наезжает на них. */
  .z-cathero .z-crumbs { top: calc(var(--hbar-h) + 6px); padding: 0 18px; }

  /* Ширина контейнеров: 44px → 18px по краям */
  .z-pagehead__in, .z-cathero__in, .z-hphead__in, .z-booking-sec, .z-contactsec, .z-reqsec,
  .z-galsec, .z-htwo, .z-bandsec, .z-featsec, .z-newssec, .z-irsec, .z-relsec,
  .z-about__in, .z-consult, .z-arthead, .z-artimg-sec,
  .z-sec-70, .z-sec-90, .z-sec-100, .z-sec-110, .z-sec-130, .z-secflush {
    padding-left: 18px; padding-right: 18px;
  }
  .z-arthead { max-width: none; }
  .z-artbody { max-width: none; padding: 48px 18px 32px; }
  .z-loy__in { padding: 80px 18px; }
  .z-metsec__in { padding: 64px 18px; }
  .z-numsec .z-anums { padding: 64px 18px; }
  .z-footer { padding: 56px 18px 32px; }

  /* Меньше огромных вертикальных отступов секций */
  .z-sec-90, .z-sec-100, .z-sec-110, .z-secflush { padding-top: 64px; }
  .z-sec-130 { padding-top: 104px; }
  .z-pagehead__in { padding-top: 44px; padding-bottom: 40px; }
  .z-hphead__in { padding-top: 40px; padding-bottom: 44px; }
  .z-about { margin-top: 72px; }
  .z-numsec { margin-top: 72px; }

  /* Карта: панель уходит под карту обычным блоком */
  .z-geomap { margin-top: 72px; padding: 0 18px; }
  .z-geomap__in { grid-template-columns: 1fr; height: auto; }
  .z-geomap__mapwrap { height: 60vh; }
  .z-geomap__panel { border-right: 0; border-top: 1px solid rgba(0,0,0,0.08); }
  .z-geomap__zoom { right: 16px; top: auto; bottom: 16px; transform: none; }
  .z-geomap__head { padding: 24px 18px 14px; }
  .z-geomap__filters { padding: 0 18px 16px; }
  .z-geomap__list { max-height: 420px; padding: 0 8px 18px; }
  .z-geoitem__go { opacity: 1; }



  /* Каталог: фильтры над сеткой */
  .z-cat { grid-template-columns: 1fr; gap: 26px; }
  .z-filters { position: static; padding: 20px; }
  .z-bookph-sec { padding: 28px 18px 0; }
  .z-bookph { min-height: 76px; }
  .z-metsec { margin-top: 72px; }

  /* Заголовки страниц не давят */
  .z-h1 { font-size: 32px; }
  .z-htitle { font-size: clamp(30px, 9vw, 40px); }

  /* Сетки — в одну колонку */
  .z-hgrid, .z-metgrid, .z-g3-26, .z-fgrid, .z-reqgrid { grid-template-columns: 1fr !important; }
  .z-metnum, .z-metnum--first, .z-metnum--last { padding: 0 !important; border-left: 0 !important; }
  .z-join__grid { gap: 28px; }
  .z-join { padding: 0 22px; }

  /* Бенто «о компании» — стек */
  .z-bento { grid-template-columns: 1fr !important; grid-template-rows: auto !important; grid-template-areas: 'img' 'text' 'acc' 'nine' 'fifteen' 'twentyone' !important; }
  .z-bento__img { min-height: 300px !important; }
  .z-casebento { grid-template-columns: 1fr; }
  .z-casebento__img { grid-column: 1; grid-row: 1; min-height: 260px; }
  .z-casebento__cell { padding: 24px; }
  .z-bento__text { padding: 32px 24px; }
  .z-bento__cell { padding: 28px 24px; }

  /* Строка бронирования каталога — поля в столбик, разделители убираем */
  .z-booking { padding: 8px; }
  .z-bsep { display: none; }
  .z-bfield { flex: 1 1 100%; min-width: 0; padding: 14px 16px; }
  .z-bgo { width: 100%; padding: 8px; }
  .z-bright { width: 100%; }

  /* Блок консультации / IR / реквизиты / баннер */
  .z-contact { padding: 40px 22px; }
  .z-ir { padding: 36px 22px; }
  .z-reqbox { padding: 40px 22px; }
  .z-evbox { padding: 32px 22px; }
  .z-bandin { padding: 32px 22px; }

  /* Услуги — блок в стек уже на 980; тут только внутренние отступы */
  .z-dir { gap: 32px; }
  .z-dlist { grid-template-columns: 1fr; }

  /* Карточка отеля в каталоге чуть плотнее */
  .z-hcard__body { padding: 18px; }
}

/* Мобильное меню: гарантированно показываем открытое состояние
   (правило .mnav.is-open в main.css перебивалось незавершённым transition). */
.mnav.is-open { transform: none !important; visibility: visible !important; }

/* ============================================================
   ПРАВКИ 24.07 — адаптив каталога 4→3→2→1
   ============================================================ */

/* ============================================================
   КАЛЕНДАРЬ БРОНИРОВАНИЯ (правка: выпадающий календарь)
   ============================================================ */
.z-dp { position: absolute; z-index: 80; width: 300px; padding: 16px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; box-shadow: 0 30px 60px -28px rgba(30,24,16,0.35); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.z-dp.is-on { opacity: 1; visibility: visible; transform: none; }
.z-dp__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.z-dp__title { font-size: 14.5px; font-weight: 500; }
.z-dp__nav { width: 30px; height: 30px; border: 1px solid rgba(0,0,0,0.12); border-radius: 50%; background: none; cursor: pointer; font-size: 17px; line-height: 1; color: #1b1917; transition: border-color .2s ease, color .2s ease; }
.z-dp__nav:hover { border-color: var(--accent); color: var(--accent); }
.z-dp__dow, .z-dp__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.z-dp__dow { margin-bottom: 6px; }
.z-dp__dow span { text-align: center; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #9c948a; }
.z-dp__day { height: 34px; border: 0; background: none; border-radius: 9px; font: inherit; font-size: 13.5px; color: #1b1917; cursor: pointer; font-variant-numeric: tabular-nums; transition: background .15s ease, color .15s ease; }
.z-dp__day:hover { background: #f1ece4; }
.z-dp__day.is-off { color: #cfc7bb; cursor: default; }
.z-dp__day.is-off:hover { background: none; }
.z-dp__day.is-range { background: #f1ece4; border-radius: 0; }
.z-dp__day.is-sel { background: var(--accent); color: #fff; }
.z-dp__pad { height: 34px; }

/* ============================================================
   КНОПКА «НАВЕРХ» (правка: быстрый возврат в начало страницы)
   ============================================================ */
.z-totop { position: fixed; right: 28px; bottom: 28px; z-index: 60; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,0,0,0.14); border-radius: 50%; background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: #1b1917; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease, visibility .3s, background .25s ease, color .25s ease; }
.z-totop.is-on { opacity: 1; visibility: visible; transform: none; }
.z-totop:hover { background: #33312d; color: #fff; border-color: #33312d; }
@media (max-width: 600px) { .z-totop { right: 16px; bottom: 16px; width: 44px; height: 44px; } }

/* Надзаголовки направлений на «Услугах» — как во всех остальных блоках. */
.z-dir__eyebrow { display: flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--accent); margin-bottom: 18px; }
.z-dir__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); flex-shrink: 0; }
.z-totop__ic { transform: rotate(-90deg); }
/* Заголовок блока «О компании» над бенто-сеткой. */
.z-sechead--about { margin-bottom: 40px; }

/* Галерея отеля после описания (правка: «после описания добавить галерею»). */
.z-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.z-galfoot { display: flex; justify-content: center; margin-top: 34px; }
.z-photos__cell { position: relative; padding: 0; border: 0; background: none; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.z-photos__cell:hover .z-cimg { transform: scale(1.035); }
@media (max-width: 1100px) { .z-photos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .z-photos { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* «Как стать участником» — фото слева, нумерованные шаги справа. */
.z-join__cols { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
/* Мокап телефона: натуральная высота PNG, верх выходит за пределы карточки. */
.z-join__media { position: relative; overflow: visible; }
.z-join__media .z-cover { display: block; width: 100%; height: auto; margin-top: -130px; }
/* Правая колонка держит свой воздух — карточка без вертикальных паддингов. */
.z-join__body { padding: 56px 0; }
.z-join__ph { font-family: inherit; font-size: 12px; letter-spacing: 0.1em; color: #a99f8f; }
.z-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.z-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.z-step:first-child { padding-top: 0; }
.z-step__n { font-size: 15px; font-weight: 500; color: var(--accent); font-variant-numeric: tabular-nums; }
.z-step__ttl { display: block; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.z-step__desc { display: block; margin-top: 6px; font-size: 15px; line-height: 1.55; color: #5f584f; font-weight: 300; }
@media (max-width: 900px) {
  .z-join__cols { grid-template-columns: 1fr; gap: 32px; }
  .z-join__media .z-cover { margin-top: -40px; }
  .z-join__body { padding: 4px 0 32px; }
  .z-step { grid-template-columns: 40px 1fr; gap: 14px; }
}

/* Контейнер вместе с полями занимает 1460 px. Как только окно уже этого,
   контент упирается в края — поэтому боковой отступ начинает расти. */
@media (min-width: 901px) and (max-width: 1459px) {
  :root { --gut: clamp(44px, 6.2vw, 88px); }
}

/* Шапка на ноутбуках: пунктам меню тесно — сокращаем зазор,
   а ниже 1180 строка шапки раскладывается по краям. */
@media (max-width: 1400px) {
  .z-nav { gap: 20px; }
}

/* Ноутбучный диапазон: контейнер уже, чем на большом мониторе, поэтому
   первый экран, логотип и меню набираются компактнее. Правила общие —
   те же классы работают на обложках подстраниц. */
@media (min-width: 901px) and (max-width: 1400px) {
  .z-hero__h1 { font-size: 3.5vw; }
  .z-hero__lead { font-size: 15px; }
  .z-hero__stat-v { font-size: 35px; }
  .z-hero__stat-l { font-size: 13px; }
  .z-hero__bottom { margin-top: 30px; }
  .z-hero__bookrow { margin-top: 20px; }
  .z-logo-38 { height: 16px; }
  .z-lg__txt { font-size: 9px; }
  .z-nav { font-size: 13px; }
}
/* Перед самым уходом в бургер меню ещё плотнее — иначе первый пункт
   наезжает на логотип: боковые поля к этой ширине уже подросли. */
@media (max-width: 1260px) {
  .z-nav { gap: 14px; font-size: 13px; }
  .z-hrow { gap: 14px; }
}
@media (max-width: 1180px) {
  .z-hrow { display: flex; justify-content: space-between !important; }
}

/* Блок «фото + плитки» не должен занимать больше экрана. */
@media (min-width: 1000px) {
  .z-bento, .z-casebento { height: 70vh; max-height: 70vh; }
  .z-bento__text { padding: 28px 32px; }
  .z-bento__cell { padding: 24px 32px; }
  .z-bento__v { font-size: clamp(34px, 3.4vw, 48px); }
  .z-casebento__cell { padding: 22px 28px; }
}

/* ============================================================
   КАРТА ОБЪЕКТА НА СТРАНИЦЕ ОТЕЛЯ
   ============================================================ */
.z-hgeo { max-width: var(--wrap-box); margin: 90px auto 0; padding: 0 var(--gut); }
.z-hgeo__in { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); background: #ece7df; }
.z-hgeo__map { width: 100%; height: 560px; }
/* Карточка контактов лежит поверх карты — как в макете. */
.z-hgeo__card { position: absolute; left: 28px; top: 28px; width: 360px; max-width: calc(100% - 56px); background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 40px 80px -50px rgba(30,24,16,0.5); }
.z-hgeo__list { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.z-hgeo__item { display: flex; align-items: flex-start; gap: 14px; }
.z-hgeo__ic { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: #f1ece4; color: var(--accent); }
.z-hgeo__label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #9c948a; }
.z-hgeo__val { display: block; margin-top: 4px; font-size: 15.5px; line-height: 1.45; font-weight: 500; color: #1b1917; }
a.z-hgeo__val:hover { color: var(--accent); }

/* ============================================================
   TRAVELLINE — формы поиска и бронирования
   ============================================================ */
.z-tlsearch { display: flex; align-items: stretch; gap: 0; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; box-shadow: 0 30px 70px -46px rgba(30,24,16,0.35); overflow: hidden; }
.z-tlsearch__city { position: relative; flex: 0 0 190px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 12px 16px; border-right: 1px solid rgba(0,0,0,0.08); align-self: center; }
.z-tlsearch__label { font-size: 12px; color: #9c948a; }
.z-tlsearch__select { appearance: none; border: 0; background: none; font: inherit; font-size: 14px; font-weight: 500; color: #1b1917; padding-right: 22px; cursor: pointer; }
.z-tlsearch__select:focus-visible { outline: none; color: var(--accent); }
.z-tlsearch__chev { position: absolute; right: 14px; bottom: 14px; color: var(--accent); pointer-events: none; display: flex; }
.z-tlsearch__form { flex: 1; min-width: 0; display: flex; align-items: center; padding: 6px 10px; }
.z-tlsearch__form > a { font-size: 13px; color: #9c948a; }
/* Виджет TL сам верстает внутренности — растягиваем его на всю ячейку. */
.z-tlsearch__form > div { width: 100%; }

/* В первом экране форма светлая на тёмном фоне и занимает всю ширину строки. */
.z-tlsearch--hero { flex: 1; min-width: 0; }
/* В первом экране рядом стоит кнопка — выбору локации хватает узкой колонки. */
.z-tlsearch--hero .z-tlsearch__city { flex: 0 0 168px; padding: 12px 16px; }
/* Виджету TravelLine нужно около 1150 px, иначе он ломается на две строки.
   На узких экранах уступаем ему место: выбор локации остаётся в каталоге. */
@media (max-width: 1439px) {
  .z-tlsearch--hero .z-tlsearch__city { display: none; }
}
.z-hero__bookbtn { flex: 0 0 auto; padding: 0 16px; font-size: 13px; white-space: nowrap; }
/* В боковой карточке отеля поля встают в колонку. */
.z-tlsearch--side { flex-direction: column; border: 0; border-radius: 0; box-shadow: none; }
.z-tlsearch--side .z-tlsearch__form { padding: 0; }

/* Страница бронирования: только заголовок, выбор объекта и сама форма. */
.z-booksec { max-width: var(--wrap-box); margin: 0 auto; padding: 30px var(--gut) 90px; }
.z-booksec__in { max-width: 100%; }
.z-bookpick { display: flex; gap: 16px; margin: 34px 0 30px; flex-wrap: wrap; }
.z-bookpick__field { position: relative; flex: 1 1 260px; display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; }
.z-bookpick__label { font-size: 12px; color: #9c948a; }
.z-bookpick__select { appearance: none; border: 0; background: none; font: inherit; font-size: 15px; font-weight: 500; color: #1b1917; padding-right: 24px; cursor: pointer; }
.z-bookpick__select:focus-visible { outline: none; color: var(--accent); }
.z-bookpick__chev { position: absolute; right: 16px; bottom: 15px; color: var(--accent); pointer-events: none; display: flex; }
.z-bookform { min-height: 420px; }

/* ============================================================
   МОБИЛЬНАЯ ВЕРСИЯ — правки 10.08
   ============================================================ */
@media (max-width: 900px) {
  /* Бургер прижат к правому краю */
  .z-hrow { grid-template-columns: auto 1fr; }
  .z-hrow > .z-hactions { justify-self: end; gap: 10px; }

  /* Первый экран: стрелки не нужны, точки тоньше и плотнее */
  .z-hero__slide .z-arrows { display: none; }
  .z-dots { gap: 5px; }
  .z-dot { height: 3px; }

  /* Пресс-центр: одна карточка в экране, дальше лентой */
  .z-newsrow { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .z-newsrow::-webkit-scrollbar { display: none; }
  .z-newsrow > .z-news { flex: 0 0 88%; scroll-snap-align: start; padding: 20px; }

  /* Кнопка и стрелки: кнопка слева, стрелки справа */
  .z-secfoot { margin-top: 26px; padding-right: 56px; }
  .z-secfoot .z-btn { flex: 0 1 auto; }

  /* Карта объектов: сначала список и заголовок, потом сама карта */
  .z-geomap__mapwrap { order: 1; }
  .z-geomap__panel { order: 0; border-top: 0; border-bottom: 1px solid rgba(0,0,0,0.08); }

  /* Форма консультации */
  #contact { margin-top: 90px !important; padding: 0 18px !important; }

  /* Мегаменю: шапка меню повторяет шапку сайта */
  .mnav { padding: 18px 18px 28px; }
  .mnav__top { margin-bottom: 32px; }

  /* Ленты уходят за края экрана, карточка — ровно по контейнеру */
  .z-cslider, .z-newsrow { margin-inline: -18px; padding-inline: 18px; scroll-padding-left: 18px; }
  .z-cslider > .z-card, .z-newsrow > .z-news { flex: 0 0 calc(100vw - 36px); }
  .z-secfoot { padding-right: 0; }

  /* Каталог: фильтры прячутся в кнопку и выезжают панелью */
  .z-fopen { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border: 1px solid rgba(0,0,0,0.14); border-radius: 8px; background: #fff; font: inherit; font-size: 14px; cursor: pointer; margin-bottom: 12px; }
  .z-cat .z-filters { position: fixed !important; inset: 0; z-index: 95; margin: 0; border: 0; border-radius: 0; overflow-y: auto; padding: 60px 18px 28px; transform: translateX(100%); visibility: hidden; transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), visibility 0.35s; }
  .z-cat .z-filters.is-open { transform: none; visibility: visible; }
  .z-fsel { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .z-fsel[hidden] { display: none; }
  .z-ftag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(154,122,78,0.45); border-radius: 8px; background: #f6f2ea; color: #1b1917; font: inherit; font-size: 13px; cursor: pointer; }
  .z-ftag svg { color: var(--accent); flex-shrink: 0; }

  /* Карта объектов: селекты в столбик, список не шире панели */
  .z-geomap__filters .z-sel { flex: 1 1 100%; }
  .z-georeset { flex: 1 1 100%; justify-content: center; }
  .z-geomap__list { margin-right: 0; padding: 0 4px 18px; }
  .z-geoitem { min-width: 0; }
  .z-geoitem__pick { gap: 12px; padding: 10px 8px; }
  .z-geoitem__media { width: 52px; height: 52px; }
  .z-geoitem__go { width: 32px; height: 32px; margin-right: 2px; }

  .z-fclose { display: inline-flex; align-items: center; justify-content: center; position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 1px solid rgba(0,0,0,0.14); border-radius: 50%; background: none; cursor: pointer; }

  /* УТП обложек: числа по два в ряд, длинные подписи не режутся */
  .z-hero__stats { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); width: auto; gap: 18px 0; }
  /* Цифровые УТП: по три в ряд, а если пунктов четыре — по два,
     иначе последний висит одиноким рядом (страница «О компании»). */
  .z-cathero__stats { grid-template-columns: repeat(3, 1fr); }
  .z-cathero__stats:has(> .z-hero__stat:nth-child(4)) { grid-template-columns: repeat(2, 1fr); }
  /* В двух колонках разделитель нужен только правой — левая идёт от края. */
  .z-cathero__stats .z-hero__stat:nth-child(odd):not(:last-child) { padding-left: 0; border-left: 0; }

  .z-cathero__stats .z-hero__stat { box-sizing: border-box; }
  .z-hero__stat:last-child { padding-left: 16px !important; border-left: 1px solid rgba(255,255,255,0.28) !important; }
  .z-cathero__stats .z-hero__stat-v { font-size: 22px; line-height: 1.2; }
  .z-cathero__stats .z-hero__stat-l { font-size: 12px; }

  /* Обложка с фразами вместо цифр (лояльность): в одну колонку, без
     разделителей и мельче. Идёт последней, чтобы перебить правила выше. */
  .z-cathero__stats.z-hero__stats--sm { grid-template-columns: 1fr; gap: 14px 0; }
  .z-cathero__stats.z-hero__stats--sm .z-hero__stat,
  .z-cathero__stats.z-hero__stats--sm .z-hero__stat:last-child { padding-left: 0 !important; border-left: 0 !important; }
  .z-cathero__stats.z-hero__stats--sm .z-hero__stat-v { font-size: 17px !important; line-height: 1.2; }
  .z-cathero__stats.z-hero__stats--sm .z-hero__stat-ic svg { width: 16px; height: 16px; }

  /* Услуги: сначала текст, потом фото — во втором блоке порядок обратный */
  .z-dir__img--rev { order: 2; }

  /* Лояльность: шаги не выходят за края */
  .z-join__cols { grid-template-columns: minmax(0, 1fr); }
  .z-steps, .z-step__txt { min-width: 0; }
  .z-step { grid-template-columns: 40px minmax(0, 1fr); }
  .z-step__ttl, .z-step__desc { overflow-wrap: anywhere; }

  /* Партнёры — по две в ряд */
  .z-brands__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Прочее по правкам */
  .z-bandhead { padding: 0 18px; }
  .z-shotbar { opacity: 1; }

  /* Заглавный материал пресс-центра: заголовок и текст, фото под ними. */
  .z-feat { grid-template-columns: 1fr; }
  .z-feat__media { grid-column: 1; grid-row: 2; aspect-ratio: 16/10; }
  .z-featin { grid-column: 1; grid-row: 1; padding: 24px 20px 26px; }

  /* Плитки Investment case на телефоне — по высоте контента, а не в пол-экрана. */
  .z-casebento { grid-auto-rows: auto; gap: 12px; }
  .z-casebento__cell { padding: 20px; }
  .z-casebento__ttl { font-size: 17px; }
  .z-casebento__txt { font-size: 14px; }
  .z-hgeo { margin-top: 60px; padding: 0 18px; }
  .z-hgeo__in { border: 0; background: none; overflow: visible; }
  .z-hgeo__map { height: 320px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.08); }
  .z-hgeo__card { position: static; width: auto; max-width: none; margin-top: 14px; padding: 24px; box-shadow: none; border: 1px solid rgba(0,0,0,0.08); }
  .z-hgeo__list { gap: 16px; margin-top: 20px; }
  .z-tlsearch { flex-direction: column; }
  .z-tlsearch__city { flex: none; border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .z-tlsearch__form { padding: 10px; }
  .z-booksec { padding: 24px 18px 60px; }
  .z-bookpick { gap: 12px; margin: 24px 0 22px; }
  .z-preloader__logo { height: 27px; }

  /* Лояльность: две колонки, компактные карточки */
  .z-loy { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
  /* На телефоне карточка складывается: иконка сверху, текст под ней,
     фиксированная высота держит плитки одного размера. */
  .z-loycard { padding: 14px; gap: 12px; flex-direction: column; align-items: baseline; justify-content: center; text-align: left; min-height: 121px; }
  .z-loycard__txt { font-size: 14px; line-height: 19px; }
  .z-loycard__ic svg { width: 22px; height: 22px; }
}
