/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter Tight', sans-serif;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Hidden listing cards (for "Показать еще") */
.listing-card--hidden {
    display: none;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #1c1c1e;
    font-size: 22px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 50;
}

.scroll-top--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
}

/* Плавающая кнопка редактирования для админа */
.admin-edit-btn {
    position: fixed;
    top: 12px;
    left: 50%;
    z-index: 100000000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #A7232D;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(167, 35, 45, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0.8;
}
.admin-edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(167, 35, 45, 0.4);
    color: #fff;
}

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

/* ===== SHARED CONTAINER ===== */
.container-1600 {
    width: min(1600px, calc(100% - 320px));
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center center / cover no-repeat;
    border-radius: 0 0 40px 40px;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 0 0 40px 40px;
    z-index: 1;
}

/* V-shaped tail — continuation of hero background */
.hero__tail {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
}

.hero__tail::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('images/hero-bg.webp') center bottom / cover no-repeat;
}

.hero__tail::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
}

/* ===== HEADER ===== */
.header {
    position: relative;
    z-index: 10000;
    padding: 68px 0 0;
}

.inner-page .header {
    z-index: 1000000;
}

.header__inner {
    display: flex;
    align-items: center;
}

/* Logo */
.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    width: 58px;
    height: 58px;
    border-radius: 9px;
    object-fit: contain;
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 40px;
}

.header__nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 110%;
    color: #FFF0DA;
    transition: color 0.2s;
    white-space: nowrap;
}

.header__nav-link:hover {
    color: #fff;
}

/* Contacts */
.header__contacts {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header__social {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.header__social:hover {
    transform: scale(1.08);
}

.header__social img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Phone */
.header__phone {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #FFF0DA;
    margin-left: 8px;
    white-space: nowrap;
    text-align: right;
}

/* ===== HERO CONTENT ===== */
.hero__content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 60px;
    text-align: center;
}

/* Title — Forum, 2 colors */
.hero__title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 82%;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
}

.hero__title--gold {
    color: #B78C57;
}

.hero__title--light {
    color: #FFF0DA;
}

/* Subtitle — Inter Tight 300 20px */
.hero__subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
    max-width: 860px;
    margin-bottom: 48px;
    text-align: center;
}

/* ===== SEARCH BAR ===== */
.search {
    width: 100%;
    max-width: 1600px;
}

.search__bar {
    display: flex;
    align-items: center;
    background: #fff;
    width: 100%;
    height: 90px;
    border-radius: 300px;
    overflow: visible;
    position: relative;
}

.search__divider {
    width: 1px;
    height: 40px;
    background: #ddd;
    flex-shrink: 0;
}

.search__field {
    display: flex;
    align-items: center;
    height: 100%;
}

/* ===== CUSTOM DROPDOWN ===== */
.search__field--select {
    position: relative;
    flex-shrink: 0;
}

.search__field--village {
    flex-shrink: 0;
}

.dropdown {
    position: relative;
    height: 100%;
}

.dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 0 28px;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown__text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #888;
}

.dropdown__text--selected {
    color: #333;
}

.dropdown__arrow {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: transform 0.25s;
    opacity: 0.5;
}

.dropdown--open .dropdown__arrow {
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f0f0f0;
}

.dropdown--open .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__item {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #333;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.dropdown__item:hover {
    background: #f5f5f5;
}

.dropdown__menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown__menu::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.dropdown__menu::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 3px;
}

.dropdown__menu::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* Price fields */
.search__field--price {
    flex: 1;
    min-width: 80px;
    max-width: 150px;
}

.search__field-price-group {
    display: flex;
    align-items: center;
}

.search__field--price input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #333;
}

.search__field--price input::placeholder {
    color: #888;
}

/* Currency selector */
.search__field--currency {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 12px;
    flex-shrink: 0;
}

.currency-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.currency-btn--active {
    background: #f0f0f0;
    color: #333;
    font-weight: 500;
}

.currency-btn:hover:not(.currency-btn--active) {
    color: #666;
    background: #f8f8f8;
}

/* Location field — own pill */
.search__field--location {
    margin-left: auto;
    height: 90px;
    flex-shrink: 0;
    background: #E6E6E6;
    border-radius: 400px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    width: 30%;
}

.search__field--location input {
    width: 100%;
    height: 100%;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #333;
    background: transparent;
    text-align: center;
    white-space: nowrap;
}

.search__field--location input::placeholder {
    color: #888;
}

.search__field--location-wrap {
    position: relative;
}

.hero-search-hints {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100%;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f0f0f0;
    z-index: 1000000000;
}

.hero-search-hints.is-open {
    display: block;
}

.hero-search-hints::-webkit-scrollbar {
    width: 6px;
}

.hero-search-hints::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.hero-search-hints::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 3px;
}

.hero-search-hints::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

.hero-search-hint {
    padding: 10px 16px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}

.hero-search-hint:hover,
.hero-search-hint.is-active {
    background: #f5f5f5;
}

.hero-search-hint:first-child {
    border-radius: 12px 12px 0 0;
}

.hero-search-hint:last-child {
    border-radius: 0 0 12px 12px;
}

/* ===== SEARCH ACTIONS ===== */
.search__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 390px;
    height: 85px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    border-radius: 44px;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn--map {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn--map:hover {
    background: #f9f9f9;
}

.btn--reset {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn--reset:hover {
    background: #f9f9f9;
}

.btn__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.btn--list {
    background: #AF1F2B;
    color: #fff;
    border: none;
}

.btn--list:hover {
    background: #741928;
}

/* ===== SCREEN 2: LEAD FORM ===== */
.lead-form {
    position: relative;
    background: #1D2C17;
    overflow: hidden;
    padding: 124px 0 88px;
    margin-top: -40px;
}

.lead-form__bg-top,
.lead-form__bg-bottom {
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    z-index: 0;
}

.lead-form__bg-top {
    top: 0;
    right: 0;
    width: min(52vw, 840px);
    height: min(46vw, 760px);
    background-image:
        linear-gradient(270deg, rgba(29, 44, 23, 0.4) 0%, #1D2C17 96.63%),
        linear-gradient(180deg, rgba(29, 44, 23, 0.3) 0%, #1D2C17 72.14%),
        url('images/screen2-bg-top-right.png');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    opacity: 0.5;
}

.lead-form__bg-bottom {
    left: 0;
    bottom: 0;
    width: min(46vw, 740px);
    height: min(46vw, 760px);
    background-image:
        linear-gradient(270deg, #1D2C17 3.37%, rgba(29, 44, 23, 0.4) 100%),
        linear-gradient(180deg, #1D2C17 27.86%, rgba(29, 44, 23, 0.3) 100%),
        url('images/screen2-bg-bottom-left.png');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    opacity: 0.5;
}

.lead-form__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lead-form__img {
    display: block;
    object-fit: cover;
    border-radius: 32px;
}

.lead-form__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 60px;
}

.lead-form__bottom {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    column-gap: 28px;
    align-items: start;
}

.lead-form__img--top {
    justify-self: end;
    width: 430px;
    height: 170px;
    border-radius: 30px;
}

.lead-form__img--bottom {
    width: 390px;
    height: 330px;
}

.lead-form__title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 82%;
    letter-spacing: -0.04em;
    margin: 0;
}

.lead-form__title--top {
    color: #FFFFFF;
}

.lead-form__title--gold {
    color: #B78C57;
}

.lead-form__content {
    min-width: 0;
}

.lead-form__subtitle {
    max-width: 860px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
    margin-top: 20px;
    margin-bottom: 0;
}

.lead-form__form {
    display: flex;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(300px, 1.25fr);
    gap: 18px;
    width: 100%;
    margin-top: 14px;
}

.lead-form__input,
.lead-form__submit {
    height: 82px;
    border-radius: 44px;
    border: none;
    outline: none;
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.01em;
}

.lead-form__input {
    background: #E6E6E6;
    color: #2F2F2F;
    font-weight: 400;
    text-align: center;
    padding: 0 26px;
}

.lead-form__input::placeholder {
    color: #9A9A9A;
}

.lead-form__submit {
    background: #AF1F2B;
    color: #FFF0DA;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 82%;
    letter-spacing: -0.03em;
    text-align: center;
    padding: 0 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.lead-form__submit:hover {
    background: #971b26;
}

/* ===== SCREEN 3 ===== */
.screen-three {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.screen-three::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/screen3-bg.png') center center / cover no-repeat;
    border-radius: 0 0 40px 40px;
    z-index: 0;
}

.screen-three__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0 0 40px 40px;
    z-index: 1;
}

.screen-three__content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    padding-bottom: 72px;
}

.screen-three__title {
    max-width: 80%;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 100px;
    line-height: 82%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0 0 34px;
}

.screen-three__subtitle {
    max-width: 700px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
    margin: 0;
}

/* Tail like hero */
.screen-three__tail {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
}

.screen-three__tail::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('images/screen3-bg.png') center bottom / cover no-repeat;
}

.screen-three__tail::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
}

/* ===== SCREEN 4: LISTING ===== */
.screen-four {
    position: relative;
    background: #FFF0DA;
    border-radius: 0;
    overflow: hidden;
    padding: 124px 0 78px;
    z-index: 1;
    margin-top: -40px;
}

.screen-four__bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: min(46vw, 740px);
    height: 100%;
    pointer-events: none;
    background-image:
        linear-gradient(270deg, rgba(255, 240, 218, 0.4) 36.12%, #FFF0DA 96.63%),
        linear-gradient(180deg, #FFF0DA 9.46%, rgba(255, 240, 218, 0.6) 38.63%, rgba(255, 240, 218, 0.3) 58.95%, #FFF0DA 96.6%),
        url('images/screen4-bg-rightflower.png');
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    opacity: 0.85;
    z-index: 0;
}

.screen-four__content {
    position: relative;
    z-index: 1;
}

.screen-four__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
    margin: 0 0 35px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 90px;
    line-height: 82%;
    letter-spacing: -0.05em;
}

.screen-four__title-dark { color: #1D2C17; }
.screen-four__title-accent { color: #A62A3A; }

.screen-four__filters {
    display: grid;
    grid-template-columns: max-content max-content max-content 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.screen-four__sort-btn,
.screen-four__search {
    height: 52px;
    border-radius: 26px;
    border: 1px solid rgba(29, 44, 23, 0.15);
    background: rgba(255, 255, 255, 0.55);
    padding: 0 18px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #1D2C17;
}

.screen-four__sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
}

.screen-four__sort-btn.is-active {
    border-color: rgba(29, 44, 23, 0.32);
    background: rgba(255, 255, 255, 0.82);
}

.screen-four__sort-arrow {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.45;
}

.screen-four__sort-btn[data-direction="asc"] .screen-four__sort-arrow {
    transform: rotate(-90deg);
    opacity: 0.85;
}

.screen-four__sort-btn[data-direction="desc"] .screen-four__sort-arrow {
    transform: rotate(90deg);
    opacity: 0.85;
}

.screen-four__sort-btn[data-direction="none"] .screen-four__sort-arrow {
    transform: rotate(0deg);
}

.screen-four__search {
    justify-self: end;
    width: 270px;
    transition: width 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.screen-four__search:focus,
.screen-four__search:not(:placeholder-shown) {
    width: 320px;
    transform: translateX(-25px);
    background: rgba(255, 255, 255, 0.9);
}

.screen-four__search::placeholder { color: #959595; }

/* Catalog page: preloader and AJAX filter */
.catalog-listing-wrap {
    position: relative;
    min-height: 200px;
}

.catalog-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

.catalog-preloader--visible {
    opacity: 1;
    pointer-events: auto;
}

.catalog-preloader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(166, 42, 58, 0.2);
    border-top-color: #A62A3A;
    border-radius: 50%;
    animation: catalog-preloader-spin 0.8s linear infinite;
}

@keyframes catalog-preloader-spin {
    to { transform: rotate(360deg); }
}

.catalog-preloader__text {
    font-size: 16px;
    color: #1D2C17;
}

.search--catalog {
    margin-bottom: 24px;
}

.search__bar--catalog {
    border-radius: 45px;
}

.search__actions--catalog {
    margin-top: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 16px 0;
    font-size: 14px;
    position: relative;
    z-index: 10000;
	font-family: 'Manrope', sans-serif;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

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

.breadcrumbs__link {
    color: rgba(29, 44, 23, 0.7);
    text-decoration: none;
}

.breadcrumbs__link:hover {
    color: #A62A3A;
}

.breadcrumbs__current {
    color: #1D2C17;
}

.breadcrumbs__sep {
    color: rgba(29, 44, 23, 0.4);
    pointer-events: none;
}

.screen-four__grid {
    display: grid;
    grid-template-columns: repeat(3, 510px);
    gap: 35px;
    justify-content: center;
}

.listing-card {
    display: flex;
    flex-direction: column;
    width: 510px;
    padding: 30px 0;
}

.listing-card {
    cursor: pointer;
}

.listing-card__slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 10px;
}

.listing-card__track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.listing-card__track img {
    width: 510px;
    flex: 0 0 100%;
    aspect-ratio: 510 / 375;
    object-fit: cover;
}

.listing-card__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(29, 44, 23, 0.2);
    background: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.listing-card__arrow img {
    width: 22px;
    height: 22px;
}

.listing-card__arrow--prev img {
    transform: rotate(180deg);
}

.listing-card__arrow--prev { left: 10px; }
.listing-card__arrow--next { right: 10px; }

/* internal-id в анонсах лотов (каталог / vc_grid): над заголовком, класс для стилизации только здесь */
.lot-announce-internal-id {
    margin: 0 0 4px;
    padding: 10px 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(29, 44, 23, 0.5);
    line-height: 1.25;  
}

/* internal-id в карточках объекта: над блоком характеристик, выравнивание вправо */
.listing-card-object-internal-id {
    display: block;
    margin: 0 0 6px;
    text-align: right;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(29, 44, 23, 0.5);
    line-height: 1.25;
    /*padding-top: 10px;*/
}

.listing-card__title {
    margin: 0 0 8px;
    font-family: 'Forum', serif;
    font-size: 45px;
    line-height: 80%;
    letter-spacing: -0.03em;
    color: #A62A3A;
    padding: 15px 0 30px;
	
}

.listing-card__meta {
    display: flex;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 10px;
    padding: 12px 0;
    border-top: 1px solid #272E274D;
    border-bottom: 1px solid #272E274D;
    font-family: 'Forum', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: rgba(29, 44, 23, 0.85);
}

.listing-card__infra-title {
    margin-bottom: 8px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #1D2C17;
}

.listing-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.listing-card__chips span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(29, 44, 23, 0.12);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #1D2C17;
    letter-spacing: 0;
    line-height: 110%;
    text-align: center;
}

.listing-card__btn {
    align-self: flex-start;
    min-width: 220px;
    height: 52px;
    border-radius: 26px;
    padding: 0 26px;
    background: #AF1F2B;
    color: #FFF0DA;
    font-family: 'Forum', serif;
    font-size: 20px;
    line-height: 82%;
    letter-spacing: -0.03em;
		display: flex;
    align-items: center;
	justify-content: center;
    margin-top: 30px;
}

.listing-card__btn:hover { background: #971b26; }

.screen-four__tail {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,24 50,28 C62,24 82,0 100,0 Z');
    overflow: hidden;
}

.screen-four__tail::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF0DA;
}

/* ===== SCREEN MAP (каталог) ===== */
.screen-map {
    position: relative;
    min-height: 70vh;
    background: #eef1f5;
}

.screen-map__header {
    padding: 40px 0 24px;
}

.screen-map__title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.screen-map__wrap {
    position: relative;
    display: flex;
    min-height: 600px;
}

.screen-map__list {
    flex: 0 0 320px;
    max-height: 600px;
    overflow-y: auto;
}

.screen-map__map {
    flex: 1;
    min-height: 600px;
    background: #dde0e4;
}

.screen-map__legend {
    padding: 24px 0 40px;
}

.screen-map__legend-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.screen-map__legend-item {
    display: inline-block;
}

/* ===== SCREEN 5: MAP ===== */
.screen-five {
    position: relative;
    min-height: 950px;
    overflow: hidden;
    background: #eef1f5;
}

.screen-five__map-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.screen-five__map {
    width: 100%;
    height: 100%;
    background: url('images/map-placeholder.png') center center / cover no-repeat;
}

.screen-five__map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Пока щит активен: колесо и свайп листают страницу, а не карту; клик/тап по карте включает работу с картой */
.screen-five__map-scroll-shield {
    position: absolute;
    inset: 0;
    z-index: 1;
    touch-action: pan-x pan-y;
    background: transparent;
    cursor: grab;
}

.screen-five__map-wrap.is-map-interactive .screen-five__map-scroll-shield {
    display: none !important;
}

.screen-five__content {
    padding: 80px 0;
}

.screen-five__form {
    width: 600px;
    min-height: 760px;
    border-radius: 24px;
    background: rgba(20, 46, 19, 0.92);
    backdrop-filter: blur(1px);
    padding: 48px 42px 42px;
    color: #fff;
    position: relative;
    z-index: 3;
    /* Только min-height: анимация padding даёт CLS — заголовок едет вниз и переносится, пока padding 16/20 → 48/42 */
    transition: min-height 0.25s ease;
}

.screen-five__form-collapse {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.screen-five__form-collapse:hover {
    background: rgba(255, 255, 255, 0.22);
}

.screen-five__form-collapse:focus-visible {
    outline: 2px solid #fff0da;
    outline-offset: 2px;
}

.screen-five__form-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.screen-five__btn--expand {
    display: none;
    align-items: center;
    justify-content: center;
}

.screen-five__form.is-collapsed {
    width: auto;
    min-height: 0;
    max-width: min(100%, 480px);
    padding: 16px 20px 18px;
}

.screen-five__form.is-collapsed .screen-five__form-body {
    display: none;
}

.screen-five__form.is-collapsed .screen-five__form-collapse {
    display: none;
}

.screen-five__form.is-collapsed .screen-five__btn--submit {
    display: none;
}

.screen-five__form.is-collapsed .screen-five__btn--expand {
    display: flex;
}

.screen-five__form.is-collapsed .screen-five__fields {
    margin-bottom: 0;
}

.screen-five__title {
    margin: 0 0 20px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 90px;
    line-height: 82%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    /* Резерв под 2 строки при line-height 82% — без скачка при появлении блока после раскрытия формы */
    min-height: 1.64em;
    box-sizing: content-box;
}

.screen-five__subtitle {
    margin: 0 0 50px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.screen-five__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}

.screen-five__input {
    height: 58px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #FFF0DA;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
}

.screen-five__input::placeholder {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
}

.screen-five__btn {
    width: 473.271728515625px;
    max-width: 100%;
    height: 80px;
    border-radius: 400px;
    background: #FFF0DA;
    color: #1D2C17;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 82%;
    letter-spacing: -0.05em;
    text-align: center;
}

.screen-five__btn:hover {
    background: #f4e2be;
}

/* ===== SCREEN 6: ADVANTAGES ===== */
.screen-six {
    position: relative;
    background: #1D2C17;
    border-radius: 0;
    overflow: visible;
    padding: 82px 0 70px;
    z-index: 5;
}

.screen-six__bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: min(44vw, 740px);
    height: 75%;
    pointer-events: none;
    background-image:
        linear-gradient(270deg, rgba(29, 44, 23, 0.4) 36.12%, #1D2C17 96.63%),
        linear-gradient(180deg, #1D2C17 9.46%, rgba(29, 44, 23, 0.6) 38.63%, rgba(29, 44, 23, 0.3) 58.95%, #1D2C17 96.6%),
        url('images/screen2-bg-top-right.png');
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    z-index: 0;
}

.screen-six__content {
    position: relative;
    z-index: 1;
}

.screen-six__title {
    margin: 0 0 20px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 82%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.screen-six__subtitle {
    margin: 0 0 32px;
    max-width: 1100px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
}

.screen-six__top {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.screen-six__right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

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

.screen-six__img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

.screen-six__card-title {
    margin: 12px 0 8px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 82%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.screen-six__card-text {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
}

.screen-six__tail {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
    pointer-events: none;
}

.screen-six__tail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1D2C17;
}

/* ===== SCREEN 7: QUIZ FORM ===== */
.screen-seven {
    position: relative;
    background: #A7232D;
    border-radius: 0 0 40px 40px;
    overflow: visible;
    padding: 108px 0 68px;
    margin-top: -40px;
    z-index: 4;
}

.screen-seven__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 40px;
    align-items: stretch;
}

.screen-seven__title {
    margin: 0 0 18px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 82%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
	margin: 35px 0 18px;
}

.screen-seven__subtitle {
    margin: 0 0 18px;
    max-width: 980px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
}

.screen-seven__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 24px;
}

.screen-seven__check-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    color: #FFF0DA;
    cursor: pointer;
}

.screen-seven__check-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.screen-seven__check-item span {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 240, 218, 0.85);
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
    position: relative;
}

.screen-seven__check-item input:checked + span::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #FFF0DA;
    border-radius: 1px;
}

.screen-seven__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.screen-seven__input {
    height: 58px;
    border: none;
    border-bottom: 1px solid rgba(255, 240, 218, 0.65);
    background: transparent;
    color: #FFF0DA;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.screen-seven__input::placeholder {
    color: rgba(255, 240, 218, 0.8);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.screen-seven__btn {
    width: 790px;
    max-width: 100%;
    height: 80px;
    border-radius: 400px;
    background: #FFF0DA;
    color: #272E27;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 82%;
    letter-spacing: -0.05em;
    text-align: center;
}

.screen-seven__btn:hover {
    background: #f4e2be;
}

.screen-seven__right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.1, 1), opacity 0.7s ease;
    will-change: transform, opacity;
}

.screen-seven.is-in-view .screen-seven__right {
    transform: translateX(0);
    opacity: 1;
}

.screen-seven__phone {
    height: min(100%, 840px);
    margin-left: auto;
    display: block;
    object-fit: cover;
}

.screen-seven__tail {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
    pointer-events: none;
}

.screen-seven__tail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #A7232D;
}

/* ===== SCREEN 8: SOCIAL ===== */
.screen-eight {
    position: relative;
    background: #FFF0DA;
    border-radius: 0;
    overflow: visible;
    padding: 112px 0 58px;
    margin-top: -40px;
    z-index: 3;
}

.screen-eight__bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: min(42vw, 700px);
    height: 75%;
    pointer-events: none;
    background-image:
        linear-gradient(60deg, rgba(255, 240, 218, 0.4) 36.12%, #FFF0DA 96.63%),
        linear-gradient(180deg, #FFF0DA 9.46%, rgba(255, 240, 218, 0.6) 38.63%, rgba(255, 240, 218, 0.3) 58.95%, #FFF0DA 96.6%),
        url('images/screen8-bg-leftflower.png');
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    z-index: 0;
}

.screen-eight__content {
    position: relative;
    z-index: 1;
}

.screen-eight__title {
    margin: 0 0 30px;
    text-align: center;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 82%;
    letter-spacing: -0.03em;
}

.screen-eight__title-dark { color: #1D2C17; }
.screen-eight__title-accent { color: #A7232D; }

.screen-eight__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 26px;
}

.social-card {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    padding: 18px 16px 0;
    overflow: hidden;
    transform: translateY(40px) scale(0.9);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.15, 1), opacity 0.45s ease;
}

.screen-eight.is-in-view .social-card { transform: translateY(0) scale(1); opacity: 1; }
.screen-eight.is-in-view .social-card:nth-child(1) { transition-delay: 0.05s; }
.screen-eight.is-in-view .social-card:nth-child(2) { transition-delay: 0.2s; }
.screen-eight.is-in-view .social-card:nth-child(3) { transition-delay: 0.35s; }
.screen-eight.is-in-view .social-card:nth-child(4) { transition-delay: 0.5s; }

.social-card__title {
    margin: 0 0 8px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: #272E27;
    padding: 10px 20px;
}

.social-card__text {
    margin: 0 0 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #272E27;
    padding: 10px 20px;
}

.social-card__actions {
    display: grid;
    grid-template-columns: 215px 52px;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 20px;
}

.social-card__btn,
.social-card__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 10px;
    color: #FFF0DA;
    text-decoration: none;
    border: none;
}

.social-card__btn {
    width: 215px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}

.social-card__icon-btn {
    width: 52px;
}

.social-card__icon-btn img {
    object-fit: cover;
}

.social-card__btn--vk,
.social-card__icon-btn--vk { background: #159DDA; }
.social-card__btn--youtube,
.social-card__icon-btn--youtube { background: #D90000; }
.social-card__btn--dzen,
.social-card__icon-btn--dzen { background: #2C3036; }
.social-card__btn--telegram,
.social-card__icon-btn--telegram { background: #96B8C8; }

.social-card__mockup {
    width: 100%;
    display: block;
    border-radius: 12px 12px 0 0;
}

.screen-eight__cta {
    width: 100%;
    max-width: 1600px;
    height: 82px;
    border-radius: 42px;
    background: #A7232D;
    color: #FFF0DA;
    font-family: 'Forum', serif;
    font-size: 42px;
    line-height: 82%;
    letter-spacing: -0.03em;
}

.screen-eight__tail {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
    pointer-events: none;
}

.screen-eight__tail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FFF0DA;
}

/* ===== SCREEN 9: CONCIERGE ===== */
.screen-nine {
    position: relative;
    overflow: visible;
    z-index: 2;
    background: #1D2C17;
    border-radius: 0;
    padding: 116px 0 74px;
    margin-top: 0;
}

.screen-nine__bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: min(44vw, 900px);
    height: 75%;
    background:
        linear-gradient(270deg, rgba(29, 44, 23, 0.4) 36.12%, #1D2C17 96.63%),
        linear-gradient(180deg, #1D2C17 9.46%, rgba(29, 44, 23, 0.6) 38.63%, rgba(29, 44, 23, 0.3) 58.95%, #1D2C17 96.6%),
        url('images/screen9-bg-rightflower.png') center right/cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
}

.screen-nine__content {
    position: relative;
    z-index: 1;
}

.screen-nine__title {
    margin: 0;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 82%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #FFF;
}

.screen-nine__subtitle {
    margin: 22px auto 46px;
    max-width: 920px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #FFF0DA;
}

.screen-nine__slider {
    position: relative;
    --screen9-arrow-top: 255px;
}

.screen-nine__arrow {
    position: absolute;
    top: var(--screen9-arrow-top);
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #A7232D;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 4;
}

.screen-nine__arrow:hover {
    transform: translateY(-50%) scale(1.05);
    background: #b92732;
}

.screen-nine__arrow img {
    width: 22px;
    height: 22px;
}

.screen-nine__arrow--prev img {
    transform: rotate(180deg);
}

.screen-nine__arrow--prev {
    left: -28px;
}

.screen-nine__arrow--next {
    right: -28px;
}

.screen-nine__viewport {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.screen-nine__track {
    display: flex;
    gap: 35px;
    transform: translateX(0);
    will-change: transform;
}

.screen-nine__slide {
    min-width: 0;
    flex: 0 0 calc((100% - 70px) / 3);
}

.screen-nine__image-wrap {
    position: relative;
}

.screen-nine__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.screen-nine__pagination {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 49px;
    height: 28px;
    display: grid;
    place-items: center;
}

.screen-nine__pagination-bg {
    position: absolute;
    inset: 0;
    background: url('images/screen9-slider-pagination-icon-bg.png') center/100% 100% no-repeat;
}

.screen-nine__pagination-text {
    position: relative;
    z-index: 1;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 82%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #FFF0DA;
}

.screen-nine__slide-title {
    margin: 24px auto 0;
    max-width: 420px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 82%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #FFF0DA;
}

.screen-nine__tail {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
    pointer-events: none;
}

.screen-nine__tail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1D2C17;
}

/* ===== BURGER (hidden by default) ===== */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    margin-left: 20px;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFF0DA;
    border-radius: 2px;
    transition: all 0.3s;
}

.header__burger--active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.header__burger--active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==============================================
   BREAKPOINT: 1600px
   ============================================== */
@media (max-width: 1600px) {
    .container-1600 {
        width: min(1600px, calc(100% - 160px));
    }

    .header {
        padding: 40px 0 0;
    }

    .hero__content {
        padding: 0 0 50px;
    }

    .hero__title {
        font-size: 110px;
    }

    .hero__subtitle {
        font-size: 18px;
        max-width: 760px;
    }

    .search__bar {
        height: 80px;
    }

    .search__field--location {
        height: 80px;
    }

    .dropdown__toggle {
        padding: 0 20px;
    }

    .dropdown__text {
        font-size: 16px;
    }

    .search__field--price input {
        font-size: 16px;
        padding: 0 16px;
    }

    .search__field--location input {
        font-size: 16px;
    }

    .btn {
        width: 320px;
        height: 75px;
        font-size: 20px;
    }

    .header__phone {
        font-size: 28px;
    }

    .header__social img {
        width: 42px;
        height: 42px;
    }

    .lead-form {
        padding: 70px 0 72px;
    }

    .lead-form__top {
        grid-template-columns: minmax(0, 1fr) 560px;
    }

    .lead-form__bottom {
        grid-template-columns: 330px minmax(0, 1fr);
    }

    .lead-form__img--top {
        width: 380px;
        height: 150px;
        border-radius: 28px;
    }

    .lead-form__img--bottom {
        width: 330px;
        height: 330px;
        border-radius: 28px;
    }

    .lead-form__title {
        font-size: 100px;
		line-height: 97%;
    }

    .lead-form__subtitle {
        font-size: 18px;
        max-width: 670px;
		line-height: 168%;
    }

    .lead-form__input {
        height: 70px;
        font-size: 16px;
    }

    .lead-form__submit {
        height: 70px;
        font-size: 20px;
    }

    .screen-three__title { font-size: 86px; }
    .screen-three__subtitle { font-size: 18px; }

    .screen-four { padding: 68px 0 62px; }
    .screen-four__title { font-size: 100px; margin: 35px 0 35px;}
    .screen-four__filters {
        grid-template-columns: max-content max-content max-content 1fr;
    }
    .screen-four__sort-btn,
    .screen-four__search { font-size: 16px; height: 48px; }
    .screen-four__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }
    .listing-card { width: auto; }
    .listing-card__track img { width: 100%; }
    .listing-card__title { font-size: 33px; }
    .listing-card__infra-title { font-size: 22px; }
    .listing-card__btn { height: 48px; font-size: 20px; }

    .screen-five {
        min-height: 860px;
    }
    .screen-five__content {
        padding: 64px 0;
    }
    .screen-five__form {
        width: 520px;
        min-height: 680px;
        padding: 40px 34px 34px;
    }
    .screen-five__title { font-size: 78px; }
    .screen-five__subtitle { font-size: 22px; }

    .screen-six {
        padding: 66px 0 58px;
    }
    .screen-six__title {
        font-size: 100px;
    }
    .screen-six__subtitle {
        font-size: 18px;
        max-width: 980px;
    }
    .screen-six__card-title { font-size: 38px; }
    .screen-six__card-text { font-size: 16px; }

    .screen-seven {
        padding: 64px 0 56px;
    }
    .screen-seven__content {
        grid-template-columns: minmax(0, 1fr) 430px;
        gap: 28px;
    }
    .screen-seven__title { font-size: 100px; }
    .screen-seven__subtitle { font-size: 18px; }
    .screen-seven__btn {
        width: 680px;
        height: 74px;
    }
	
	.screen-five__btn {
		font-size: 20px;
	}
	
	.screen-six__card--main img{
		height: 86%;
	}
	.listing-card__meta {
    display: flex;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 37px;
   
}

}



/* ==============================================
   BREAKPOINT: 1240px
   ============================================== */
@media (max-width: 1240px) {
    .lead-form,
    .screen-four,
    .screen-seven,
    .screen-eight,
    .screen-nine,
    .screen-ten {
        margin-top: -40px;
    }

    .screen-three {
        min-height: auto;
    }

    .container-1600 {
        width: min(1600px, calc(100% - 80px));
    }

    .header {
        padding: 30px 0 0;
    }

    .header__nav {
        gap: 24px;
        margin-left: 0;
    }

    .header__nav-link {
        font-size: 15px;
    }

    .header__phone {
        font-size: 24px;
    }

    .header__social img {
        width: 38px;
        height: 38px;
    }

    .hero__content {
        padding: 0 0 40px;
    }

    .hero__title {
        font-size: 88px;
        margin-bottom: 24px;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 640px;
        margin-bottom: 36px;
    }

    .search__bar {
        height: 70px;
        border-radius: 200px;
    }

    .search__field--location {
        height: 70px;
        width: 28%;
        padding: 0 24px;
    }

    .search__field--location input {
        font-size: 14px;
    }

    .dropdown__toggle {
        padding: 0 16px;
    }

    .dropdown__text {
        font-size: 14px;
    }

    .dropdown__arrow {
        width: 10px;
        height: 10px;
    }

    .search__field--price input {
        font-size: 14px;
        padding: 0 12px;
    }

    .search__field--price {
        max-width: 120px;
    }

    .currency-btn {
        font-size: 15px;
        width: 26px;
        height: 26px;
    }

    .search__divider {
        height: 30px;
    }

    .search__actions {
        gap: 16px;
        margin-top: 24px;
    }

    .btn {
        width: 280px;
        height: 65px;
        font-size: 15px;
        border-radius: 36px;
    }

    .btn__icon {
        width: 24px;
        height: 24px;
    }

    .lead-form {
        padding: 94px 0 56px;
    }

    .lead-form__top {
        grid-template-columns: minmax(0, 1fr) 420px;
        column-gap: 22px;
    }

    .lead-form__bottom {
        grid-template-columns: 280px minmax(0, 1fr);
        column-gap: 20px;
    }

    .lead-form__img--top {
        width: 310px;
        height: 124px;
        border-radius: 22px;
    }

    .lead-form__img--bottom {
        width: 280px;
        height: 320px;
        border-radius: 22px;
    }

    .lead-form__title {
        font-size: 100px;
    }

    .lead-form__subtitle {
        font-size: 20px;
        max-width: 560px;
        margin-top: 14px;
    }

    .lead-form__form {
        grid-template-columns: 1fr 1fr;
    }

    .lead-form__input {
        height: 62px;
        font-size: 17px;
    }

    .lead-form__submit {
        height: 62px;
        font-size: 20px;
    }

    .screen-three__title { font-size: 68px; }
    .screen-three__subtitle { font-size: 20px; max-width: 620px; }

    .screen-four { padding: 94px 0 50px; }
    .screen-four__title { font-size: 60px; margin-bottom: 20px; }
    .screen-four__filters {
        grid-template-columns: 1fr 1fr 1fr 270px;
        gap: 10px;
    }
    .screen-four__search { grid-column: auto; justify-self: end; }
    .screen-four__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }
    .listing-card__title { font-size: 42px; }
    .listing-card__meta { font-size: 15px; }
    .listing-card__infra-title { font-size: 20px; }
    .listing-card__btn { min-width: 200px; font-size: 20px; }

    .screen-five {
        min-height: 780px;
    }
    .screen-five__content {
        padding: 50px 0;
    }
    .screen-five__form {
        width: 470px;
        min-height: 620px;
        padding: 34px 28px 28px;
    }
    .screen-five__title { font-size: 66px; }
    .screen-five__subtitle {
        font-size: 20px;
        margin-bottom: 38px;
    }
    .screen-five__btn {
        height: 68px;
        font-size: 22px;
    }

    .screen-six {
        padding: 54px 0 50px;
    }
    .screen-six__title {
        font-size: 92px;
    }
    .screen-six__subtitle {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .screen-six__top,
    .screen-six__bottom,
    .screen-six__right {
        gap: 14px;
    }
    .screen-six__card-title {
        font-size: 32px;
        margin-top: 10px;
    }
    .screen-six__card-text {
        font-size: 15px;
    }

    .screen-seven {
        padding: 98px 0 44px;
    }
    .screen-seven__content {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 18px;
    }
    .screen-seven__title { font-size: 84px; }
    .screen-seven__subtitle {
        font-size: 21px;
        margin-bottom: 14px;
    }
    .screen-seven__checks {
        gap: 8px 12px;
        margin-bottom: 18px;
    }
    .screen-seven__check-item {
        font-size: 12px;
        gap: 8px;
    }
    .screen-seven__inputs {
        margin-bottom: 18px;
    }
    .screen-seven__input,
    .screen-seven__input::placeholder {
        font-size: 16px;
    }
    .screen-seven__btn {
        width: 560px;
        height: 68px;
        font-size: 22px;
    }

}

/* ==============================================
   BREAKPOINT: 1024px
   ============================================== */
@media (max-width: 1024px) {
    .lead-form,
    .screen-four,
    .screen-seven,
    .screen-eight,
    .screen-nine,
    .screen-ten {
        margin-top: -30px;
    }

    .screen-three {
        min-height: auto;
    }

    .container-1600 {
        width: min(1600px, calc(100% - 64px));
    }

    .header {
        padding: 24px 0 0;
    }

    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
        order: 1;
    }

    .header__nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1D2C17;
        padding: 24px 32px;
        gap: 20px;
        z-index: 50;
    }

    .inner-page .header__nav--open {
        background: #1d2c17;
        z-index: 10000000;
    }

    .header__contacts {
        order: 2;
    }

    .header__phone {
        font-size: 20px;
    }

    .header__social img {
        width: 36px;
        height: 36px;
    }

    /* Герой: без вертикального центрирования на планшетах/мобильных — заголовок сразу под шапкой */
    .hero {
        min-height: auto;
    }

    .hero__content {
        flex: 0 1 auto;
        justify-content: flex-start;
        padding: 0 0 36px;
    }

    .hero__title {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 15px;
        max-width: 560px;
        margin-bottom: 32px;
    }

    /* Filter — switch to 2 rows */
    .search__bar {
        flex-wrap: wrap;
        height: auto;
        border-radius: 24px;
        padding: 12px;
        gap: 8px;
		background-color: #1D2C17;
    }

    .search__divider {
        display: none;
    }

    .search__field--select {
        flex: 1;
        min-width: calc(50% - 4px);
    }

    .dropdown__toggle {
        padding: 12px 16px;
        background: #f5f5f5;
        border-radius: 16px;
    }

    .search__field--price {
        min-width: 0;
        max-width: none;
        flex: 1;
    }

    .search__field--price input {
        padding: 12px 16px;
        background: #f5f5f5;
        border-radius: 16px;
        height: 50px;
    }

    .search__field--currency {
        padding: 0 8px;
    }

    .search__field--location {
        width: 100%;
        height: 50px;
        margin-left: 0;
        border-radius: 200px;
        padding: 0 24px;
    }

    /* Catalog page filter — светлый фон (не hero) */
    .search--catalog .search__bar {
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(29, 44, 23, 0.12);
    }

    .search__actions {
        justify-content: center;
        gap: 12px;
    }

    .btn {
        width: 240px;
        height: 58px;
        font-size: 14px;
        border-radius: 32px;
    }

    .lead-form__inner { gap: 20px; }

    .lead-form__top {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .lead-form__bottom {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .lead-form__img--top {
        position: static;
        width: 100%;
        height: 220px;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .lead-form__img--bottom {
        position: static;
        width: 100%;
        height: 220px;
        border-radius: 20px;
    }

    .lead-form__content {
        max-width: none;
        padding-top: 0;
    }

    .lead-form__title {
        font-size: clamp(44px, 8vw, 74px);
    }

    .lead-form__subtitle {
        font-size: 18px;
        max-width: none;
        margin-top: 12px;
    }

    .lead-form__form {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .lead-form__input {
        height: 58px;
        font-size: 16px;
    }

    .lead-form__submit {
        height: 58px;
        font-size: 19px;
    }

    .screen-three__title { font-size: 58px; }
    .screen-three__subtitle { font-size: 18px; max-width: 560px; }

    .screen-four__title {
        font-size: 52px;
        gap: 10px;
    }
    .screen-four__filters {
        grid-template-columns: 1fr 1fr;
    }
    .screen-four__sort-btn,
    .screen-four__search {
        height: 46px;
        font-size: 15px;
    }
    .screen-four__search {
        width: 100%;
        justify-self: stretch;
        transform: none;
    }
    .screen-four__search:focus,
    .screen-four__search:not(:placeholder-shown) {
        width: 100%;
        transform: none;
    }
    .screen-four__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .listing-card__title { font-size: 40px; }
    .listing-card__meta { font-size: 14px; }
    .listing-card__infra-title { font-size: 20px; }
    .listing-card__chips span { font-size: 11px; }
    .screen-four__tail {
        width: 80px;
        height: 22px;
        bottom: -22px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }

    .screen-five {
        min-height: 700px;
    }
    .screen-five__content {
        padding: 34px 0;
    }
    .screen-five__form {
        width: 420px;
        min-height: auto;
        padding: 28px 24px 24px;
    }
    .screen-five__title { font-size: 56px; }
    .screen-five__subtitle {
        font-size: 18px;
        margin-bottom: 26px;
    }
    .screen-five__fields {
        gap: 12px;
        margin-bottom: 28px;
    }
    .screen-five__input {
        height: 52px;
        font-size: 15px;
    }
    .screen-five__btn {
        height: 60px;
        font-size: 20px;
    }

    .screen-six {
        padding: 40px 0 40px;
    }
    .screen-six__title {
        font-size: 72px;
    }
    .screen-six__subtitle {
        font-size: 18px;
    }
    .screen-six__top {
        grid-template-columns: 1fr;
    }
    .screen-six__right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .screen-six__bottom {
        grid-template-columns: 1fr;
    }
    .screen-six__card-title { font-size: 30px; }
    .screen-six__card-text { font-size: 15px; }
    .screen-six__tail {
        width: 80px;
        height: 22px;
        bottom: -22px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }

    .screen-seven {
        padding: 36px 0 36px;
    }
    .screen-seven__content {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .screen-seven__title { font-size: 66px; }
    .screen-seven__subtitle { font-size: 18px; }
    .screen-seven__checks {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .screen-seven__check-item {
        font-size: 13px;
    }
    .screen-seven__right {
        max-width: 440px;
        margin: 0 auto;
        display: none;
    }
    .screen-seven__phone {
        max-width: 100%;
    }
    .screen-seven__btn {
        width: 100%;
        height: 62px;
        font-size: 20px;
    }
    .screen-seven__tail {
        width: 80px;
        height: 22px;
        bottom: -21px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }

    .hero__tail {
        width: 80px;
        height: 22px;
        bottom: -22px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }

}

/* ==============================================
   TABLET: фильтр 769px–1024px (главная + /prodazha/)
   Сетка вместо flex-wrap — без «половинчатого» первого ряда и переполнения цен/валюты
   ============================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .search__bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 14px;
        row-gap: 10px;
        align-items: center;
    }

    .search__field--select {
        min-width: 0;
        flex: initial;
        height: auto;
    }

    .search__field--select .dropdown {
        width: 100%;
    }

    .search__bar:not(:has(.search__field--village:not([style*="display: none"]))) .search__field--select {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .search__bar:has(.search__field--village:not([style*="display: none"])) .search__field--select:first-of-type {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .search__field--village:not([style*="display: none"]) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .search__field-price-group {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        min-width: 0;
    }

    .search__field--price {
        flex: 1;
        min-width: 0;
        max-width: none;
    }

    .search__field--price input {
        min-height: 50px;
    }

    .search__field--currency {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-self: end;
        align-self: center;
        padding: 0 4px;
    }

    .search__field--location {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        width: 100%;
        margin-left: 0;
    }

    .search__actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==============================================
   BREAKPOINT: 768px
   ============================================== */
@media (max-width: 768px) {
    .lead-form,
    .screen-four,
    .screen-seven,
    .screen-eight,
    .screen-nine,
    .screen-ten {
        margin-top: -30px;
    }

    .screen-three {
        min-height: auto;
    }

    .screen-three__content {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .container-1600 {
        width: min(1600px, calc(100% - 40px));
    }

    .header {
        padding: 20px 0 0;
    }

    .header__inner {
        position: relative;
    }

    .header__logo-img {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .header__phone {
        font-size: 16px;
        letter-spacing: -0.03em;
    }

    .header__social img {
        width: 32px;
        height: 32px;
    }

    .header__contacts {
        gap: 8px;
    }

    .header__nav--open {
        padding: 20px;
    }

    .hero__content {
        flex: 0 1 auto;
        justify-content: flex-start;
        padding: 0 0 28px;
    }

    .hero__title {
        font-size: 52px;
        line-height: 88%;
        margin-bottom: 18px;
    }

    .hero__subtitle {
        font-size: 14px;
        max-width: 480px;
        margin-bottom: 28px;
    }

    /* Filter — full vertical stack */
    .search__bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 12px;
        gap: 8px;
    }

    .search__field--select {
        min-width: 100%;
    }

    .dropdown__toggle {
        width: 100%;
        padding: 14px 16px;
    }

    .search__field--price {
        width: 100%;
        min-width: 100%;
        max-width: none;
    }

    .search__field--price input {
        width: 100%;
        height: 50px;
    }

    .search__field--currency {
        width: 100%;
        justify-content: center;
        padding: 8px 0;
    }

    .currency-btn {
        width: 44px;
        height: 36px;
        font-size: 16px;
    }

    .search__field--location {
        width: 100%;
        height: 50px;
    }

    .search__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn {
        width: 100%;
        height: 56px;
        font-size: 15px;
    }

    .lead-form {
        padding: 40px 0 44px;
    }

    .lead-form__img {
        height: auto;
        max-height: 240px;
    }

    .lead-form__top,
    .lead-form__bottom {
        row-gap: 10px;
    }

    .lead-form__title {
        font-size: clamp(36px, 12vw, 54px);
        line-height: 0.92;
    }

    .lead-form__subtitle {
        font-size: 17px;
        line-height: 1.15;
    }

    .lead-form__input,
    .lead-form__submit {
        height: 54px;
        font-size: 17px;
        border-radius: 30px;
    }

    .screen-three__title { font-size: 46px; margin-bottom: 20px; }
    .screen-three__subtitle { font-size: 16px; }

    .screen-four {
        border-radius: 0 0 28px 28px;
        padding: 40px 0 38px;
    }
    .screen-four__title { font-size: 42px; }
    .screen-four__filters { grid-template-columns: 1fr; }
    .screen-four__bg-right { width: min(70vw, 380px); }
    .listing-card__title { font-size: 36px; }
    .listing-card__meta {
        display: flex;
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 4px;
        font-size: clamp(12px, 2.6vw, 15px);
        margin-bottom: 8px;
    }
    .listing-card__meta > * {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .listing-card__infra-title { font-size: 18px; }
    .listing-card__btn { min-width: 190px; font-size: 20px; }
    .screen-four__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }

    .screen-five {
        min-height: 620px;
        display: flex;
        flex-direction: column;
		background: #142e14;
    }
    .screen-five__content {
        padding: 24px 0;
        order: 1;
    }
    .screen-five__map-wrap {
        position: relative;
        inset: auto;
        order: 2;
        width: 100%;
        height: 260px;
        z-index: 1;
    }
    .screen-five__map {
        width: 100%;
        height: 100%;
    }
    .screen-five__form {
        width: 100%;
        max-width: 420px;
        min-height: auto;
        padding: 22px 18px 18px;
    }
    .screen-five__title { font-size: 46px; }
    .screen-five__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .screen-five__fields {
        margin-bottom: 18px;
    }
    .screen-five__input {
        height: 46px;
    }
    .screen-five__btn {
        height: 52px;
        font-size: 18px;
    }

    .screen-six {
        border-radius: 0 0 28px 28px;
        padding: 30px 0 32px;
    }
    .screen-six__bg-right {
        width: min(70vw, 360px);
    }
    .screen-six__title {
        font-size: 54px;
        margin-bottom: 12px;
    }
    .screen-six__subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .screen-six__right {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .screen-six__card-title {
        font-size: 27px;
    }
    .screen-six__card-text {
        font-size: 14px;
    }
    .screen-six__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }

    .screen-seven {
        border-radius: 0 0 28px 28px;
        padding: 56px 0 30px;
    }
    .screen-seven__title {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .screen-seven__subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .screen-seven__check-item {
        font-size: 12px;
    }
    .screen-seven__check-item span {
        width: 14px;
        height: 14px;
    }
    .screen-seven__inputs {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }
    .screen-seven__input,
    .screen-seven__input::placeholder {
        font-size: 15px;
    }
    .screen-seven__btn {
        height: 54px;
        font-size: 18px;
    }
    .screen-seven__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }

    .hero::before,
    .hero__overlay {
        border-radius: 0 0 28px 28px;
    }

    .hero__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }

    .screen-three__tail,
    .screen-four__tail,
    .screen-six__tail,
    .screen-seven__tail,
    .screen-eight__tail,
    .screen-nine__tail,
    .hero__tail,
    .village-objects__tail {
        bottom: -10px;
    }

}



/* ===== SCREEN 8 RESPONSIVE ===== */
@media (max-width: 1600px) {
    .screen-eight__title { font-size: 100px; }
    .screen-eight__cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .screen-eight__cta { font-size: 34px; height: 72px; }
}

@media (max-width: 1240px) {
    .screen-eight { padding: 94px 0 48px; }
    .screen-eight__title { font-size: 86px; margin-bottom: 22px; }
    .social-card__title { font-size: 34px; }
    .social-card__text { font-size: 16px; }
    .social-card__actions {
        grid-template-columns: minmax(0, 1fr) 48px;
    }
    .social-card__btn {
        width: 100%;
        font-size: 13px;
    }
    .social-card__icon-btn { width: 48px; height: 48px; }
    .screen-eight__cta { font-size: 30px; }
}

@media (max-width: 1024px){
    .screen-eight { padding: 92px 0 38px; }
    .screen-eight__title { font-size: 64px; }
    .screen-eight__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .social-card { max-width: 560px; margin: 0 auto; }
    .screen-eight__cta { height: 62px; font-size: 24px; }
    .screen-eight__tail {
        width: 80px;
        height: 22px;
        bottom: -22px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }
	
	.lead-form__top {
		    display: flex;
    flex-wrap: nowrap;
	}
	
	    .lead-form__bottom {
        grid-template-columns: 1fr;
        row-gap: 12px;
        display: grid;
        grid-template-columns: 390px minmax(0, 1fr);
    }
	
	    .lead-form__img--bottom {
      
        height: 320px;
    
    }
	
	.lead-form__input {

    padding: 0 0px;
}

.lead-form__form {
	gap: 4px;
}


    .lead-form__subtitle {
        
        line-height: 113%;
    }

}

@media (max-width: 900px) {
.lead-form__form {
    display: flex;   
    gap: 10px;
    width: 69%;
    margin-top: 14px;
    flex-direction: column;
    align-content: center;
}

.lead-form__inner {

    align-items: center;
}

    .screen-three__title {
        font-size: 49px;
    }
}


@media (max-width: 768px) {
	
	    .screen-six__card--main img {
        height: auto;
    }
	
	    .lead-form__form {
			        width: 100%;
			
		}
		    .lead-form__inner {
        align-items: unset;
    }
	
	    
    .screen-eight { border-radius: 0 0 28px 28px; padding: 62px 0 28px; }
    .screen-eight__bg-left { width: min(72vw, 380px); }
    .screen-eight__title { font-size: 48px; margin-bottom: 16px; }
    .social-card { padding: 14px 12px 0; }
    .social-card__title { font-size: 28px; }
    .social-card__text { font-size: 14px; }
    .screen-eight__cta { height: 56px; font-size: 20px; }
    .screen-eight__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }
}

@media (max-width: 550px) {
.screen-eight__cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .screen-eight { border-radius: 0 0 20px 20px; padding: 54px 0 22px; }
    .screen-eight__title { font-size: 34px; }
    .social-card__title { font-size: 24px; }
    .social-card__text { font-size: 13px; }
    .social-card__actions { grid-template-columns: minmax(0, 1fr) 44px; gap: 8px; }
    .social-card__btn,
    .social-card__icon-btn { height: 44px; border-radius: 8px; }
    .social-card__icon-btn { width: 44px; }
    .social-card__icon-btn img { width: 18px; height: 18px; }
    .screen-eight__cta { height: 48px; font-size: 16px; }
    .screen-eight__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }
}

/* ===== SCREEN 9 RESPONSIVE ===== */
@media (max-width: 1600px) {
    .screen-nine__title { font-size: 100px; }
    .screen-nine__subtitle { font-size: 22px; max-width: 860px; }
    .screen-nine__slide-title { font-size: 38px; }
}

@media (max-width: 1240px) {
    .screen-nine {
        padding: 104px 0 56px;
    }
    .screen-nine__title { font-size: 86px; }
    .screen-nine__subtitle { font-size: 20px; margin: 18px auto 32px; }
    .screen-nine__slider { --screen9-arrow-top: 215px; }
    .screen-nine__arrow { width: 48px; height: 48px; }
    .screen-nine__arrow--prev { left: -24px; }
    .screen-nine__arrow--next { right: -24px; }
    .screen-nine__track { gap: 35px; }
    .screen-nine__slide { flex: 0 0 calc((100% - 35px) / 2); }
    .screen-nine__slide-title { font-size: 30px; max-width: 320px; }
    .screen-nine__pagination-text { font-size: 20px; }
}

@media (max-width: 1024px) {
    .screen-nine {
        border-radius: 0 0 32px 32px;
        padding: 48px 0 42px;
    }
    .screen-nine__bg-right { width: min(58vw, 540px); opacity: 0.45; }
    .screen-nine__title { font-size: 64px; }
    .screen-nine__subtitle { font-size: 18px; margin-bottom: 26px; }
    .screen-nine__slider { --screen9-arrow-top: 178px; }
    .screen-nine__track { gap: 24px; }
    .screen-nine__slide { flex: 0 0 calc((100% - 24px) / 2); }
    .screen-nine__slide-title { font-size: 24px; max-width: 280px; }
    .screen-nine__tail {
        width: 80px;
        height: 22px;
        bottom: -22px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }
}

@media (max-width: 768px) {
    .screen-nine {
        border-radius: 0 0 28px 28px;
        padding: 56px 0 30px;
    }
    .screen-nine__title { font-size: 48px; }
    .screen-nine__subtitle {
        font-size: 16px;
        margin-bottom: 18px;
        max-width: 560px;
    }
    .screen-nine__slider {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        align-items: center;
        gap: 8px;
    }
    .screen-nine__arrow {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 42px;
        height: 42px;
    }
    .screen-nine__arrow:hover {
        transform: scale(1.05);
    }
    .screen-nine__track { gap: 0; }
    .screen-nine__slide { flex: 0 0 100%; }
    .screen-nine__slide-title { font-size: 20px; margin-top: 20px; max-width: 220px; }
    .screen-nine__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }
}

@media (max-width: 480px) {
    .screen-nine {
        border-radius: 0 0 20px 20px;
        padding: 28px 0 24px;
    }
    .screen-nine__bg-right { width: min(84vw, 360px); opacity: 0.38; }
    .screen-nine__title { font-size: 34px; }
    .screen-nine__subtitle {
        font-size: 14px;
        margin: 12px auto 16px;
    }
    .screen-nine__slider {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 6px;
    }
    .screen-nine__track { gap: 0; }
    .screen-nine__slide { flex: 0 0 100%; }
    .screen-nine__arrow { width: 36px; height: 36px; }
    .screen-nine__arrow img { width: 16px; height: 16px; }
    .screen-nine__slide-title { font-size: 16px; max-width: 150px; margin-top: 16px; }
    .screen-nine__pagination {
        width: 40px;
        height: 24px;
        bottom: -10px;
    }
    .screen-nine__pagination-text { font-size: 16px; }
    .screen-nine__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }
}

/* ===== SCREEN 10: SALES OFFICE ===== */
.screen-ten {
    position: relative;
    z-index: 1;
    background: #A7232D;
    padding: 116px 0 84px;
    margin-top: 0;
    overflow: hidden;
}

.screen-ten__content {
    display: grid;
    grid-template-columns: minmax(0, 703px) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
    min-width: 0;
}

.screen-ten__left,
.screen-ten__right {
    min-width: 0;
}

.screen-ten__title {
    margin: 0 0 22px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 90px;
    line-height: 80%;
    letter-spacing: -0.05em;
    color: #FFF0DA;
}

.screen-ten__lead {
    margin: 0 0 80px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFF0DA;
}

.screen-ten__label {
    margin: 0 0 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #FFF0DA;
    opacity: 0.9;
}

.screen-ten__address {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #FFF;
    overflow-wrap: anywhere;
}

.screen-ten__divider {
    width: 100%;
    height: 1px;
    background: #FFFFFF4D;
    margin: 16px 0;
}

.screen-ten__map-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 335.97px));
    gap: 14px;
    margin-bottom: 14px;
}

.screen-ten__map-btn {
    width: 100%;
    max-width: 100%;
    height: 93.56px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.screen-ten__map-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.screen-ten__map-btn--yandex {
    background: #FFF0DA;
    color: #272E27;
}


.screen-ten__map-btn--route {
    background: #FFF;
    color: #272E27;
}

.screen-ten__form-wrap {
    margin-bottom: 12px;
}

.screen-ten__phone-label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #FFF0DA;
}

.screen-ten__phone-input {
    width: 100%;
    height: 76px;
    border: none;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    padding: 0 24px;
    margin-bottom: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.01em;
}

.screen-ten__phone-input::placeholder {
    color: rgba(255, 240, 218, 0.85);
}

.screen-ten__consult-btn {
    width: 100%;
    max-width: 100%;
    height: 93.56px;
    border: none;
    border-radius: 50px;
    background: #FFF0DA;
    color: #272E27;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 82%;
    letter-spacing: -0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.screen-ten__consult-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.screen-ten__socials-wrap {
    margin: 20px 0 30px;
}
.screen-ten__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.screen-ten__social-btn {
    
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.screen-ten__social-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-ten__right {
    display: grid;
    gap: 18px;
    width: 100%;
    min-width: 0;
}

.screen-ten__image {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* ===== ROUTE MODAL & LIGHTBOX ===== */
body.is-modal-open {
    overflow: hidden;
}

.route-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.route-modal.is-open {
    display: block;
}

.route-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.54);
}

.route-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1100px, calc(100% - 40px));
    background: #FFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.route-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #1D2C17;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.route-modal__header {
    padding: 20px 24px 14px;
}

.route-modal__title {
    margin: 0 0 8px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 88%;
    letter-spacing: -0.03em;
    color: #1D2C17;
}

.route-modal__subtitle {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    line-height: 120%;
    color: #263326;
}

.route-modal__map {
    width: 100%;
    height: min(72vh, 620px);
}

/* ===== SCREEN 10 RESPONSIVE ===== */
@media (max-width: 1600px) {
    .screen-ten__title { font-size: 74px; }
    .screen-ten__lead { font-size: 26px; }
    .screen-ten__address { font-size: 18px; }
	
		.screen-ten__map-btn,
	.screen-ten__consult-btn {
		font-size: 20px;
	}
	
	.screen-ten__phone-input {
		font-size: 16px;
	}
	
	.screen-ten__social-btn {
    width: 46px;
    height: 46px;
	
	}
	
	.screen-ten__map-btn {
  
    height: 69.56px;
	
	}
	
	.screen-ten__consult-btn {
    width: 100%;
    max-width: 100%;
    height: 70.56px;
	
	}
	
	.screen-ten__phone-input {
   
    height: 60px;
	
	}
	
	.screen-ten__right {

    gap: 37px;
   
}

}

@media (max-width: 1441px) {


.social-card__btn {
    width: 158px;
	
}
.social-card__actions {
    display: grid;
    grid-template-columns: 154px 41px;
}

.screen-ten__lead {
    margin: 0 0 20px;
}

.screen-ten__content {
    display: grid;
    grid-template-columns: minmax(0, 637px) minmax(0, 1fr);
	    gap: 35px;
}

}

@media (max-width: 1240px) {
    .screen-ten {
        padding: 92px 0 60px;
        margin-top: -40px;
    }
       .screen-ten__content {
        /* grid-template-columns: 1fr; */
        gap: 24px;
        grid-template-columns: minmax(0, 509px) minmax(0, 1fr);
    }
    .screen-ten__right {
        max-width: 820px;
        width: 100%;
        margin: 0 auto;
    }
    .screen-ten__title { font-size: 64px; }
    .screen-ten__lead { font-size: 22px; }
    .screen-ten__address { font-size: 23px; }
}

@media (max-width: 1024px) {
    .screen-ten {
        padding: 48px 0 46px;
    }
    .screen-ten__title { font-size: 52px; }
    .screen-ten__lead { font-size: 20px; }
    .screen-ten__map-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .screen-ten__map-btn {
        width: 100%;
        height: 72px;
        font-size: 22px;
    }
    .screen-ten__phone-input {
        height: 64px;
        font-size: 28px;
    }
    .screen-ten__consult-btn {
        height: 76px;
        font-size: 30px;
    }
    .screen-ten__socials {
        gap: 10px;
    }
    .screen-ten__image {
        border-radius: 14px;
    }
    .route-modal__title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .screen-ten {
        padding: 68px 0 34px;
    }
    .screen-ten__title { font-size: 42px; }
    .screen-ten__lead { font-size: 18px; }
    .screen-ten__label,
    .screen-ten__phone-label { font-size: 15px; }
    .screen-ten__address { font-size: 24px; }
    .screen-ten__map-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .screen-ten__map-btn {
        height: 62px;
        font-size: 18px;
    }
    .screen-ten__social-btn {
        width: 62px;
        height: 46px;
    }
    .screen-ten__phone-input {
        height: 56px;
        padding: 0 18px;
        font-size: 22px;
    }
    .screen-ten__consult-btn {
        height: 64px;
        font-size: 24px;
    }
    .screen-ten__right {
        gap: 12px;
    }
    .route-modal__dialog {
        width: min(1100px, calc(100% - 20px));
    }
    .route-modal__header {
        padding: 14px 14px 10px;
    }
    .route-modal__title {
        font-size: 28px;
    }
    .route-modal__subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .screen-ten {
        padding: 58px 0 24px;
    }
    .screen-ten__title { font-size: 34px; }
    .screen-ten__lead { font-size: 16px; }
    .screen-ten__address { font-size: 20px; }
    .screen-ten__map-btn {
        height: 56px;
        border-radius: 34px;
        font-size: 16px;
    }
    .screen-ten__map-btn--yandex img {
        
        height: 22px;
    }
    .screen-ten__phone-input {
        height: 50px;
        border-radius: 16px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    .screen-ten__consult-btn {
        height: 56px;
        border-radius: 34px;
        font-size: 20px;
    }
    .screen-ten__socials {
        gap: 8px;
    }
    .screen-ten__social-btn {
        width: 52px;
        height: 40px;
        border-radius: 6px;
    }
    .route-modal__title {
        font-size: 22px;
    }
    .route-modal__subtitle {
        font-size: 13px;
    }
    .route-modal__map {
        height: min(66vh, 460px);
    }
}




@media (max-width: 768px) {
    .hero__title {    
        text-align: left;
    }
	
	    .hero__subtitle {
        text-align: left;
		        max-width: 100%;
    }
	
	  .search__field--select {
        flex: 1;
        min-width: 100%;
        display: block;
    }
	
	    .btn {
       
        font-size: 18px;
    }
	
	.hero__content {
		align-items: normal;
	}
	
	
	.lead-form__bottom {
    display: flex;
    flex-direction: column-reverse;
}

    .lead-form__img--top {

        display: none;
    }
	
	    .lead-form__img {
        height: auto;
        max-height: fit-content;
    }
	
	    .screen-three__content {
        padding-top: 79px;
        padding-bottom: 65px;
    }
	
	    .lead-form__inner {
        gap: 0;
        margin-top: 79px;
    }
	
	    .lead-form__subtitle {
     
        margin-top: 12px;
        margin-bottom: 15px;
    }
	
	.lead-form {
        padding: 40px 0 79px;
    }
	
	  
	    .listing-card__meta {
        display: flex;
        flex-wrap: wrap;
        column-gap: 18px;
        row-gap: 4px;
        font-size: clamp(12px, 11vw, 17px);
    }
	    .listing-card__meta > * {
        flex: 0 0 auto;
        white-space: nowrap;
    }
	 
       .screen-seven {
        border-radius: 0 0 20px 20px;
        padding: 94px 0 65px;
    }
	
	.screen-eight {
        border-radius: 0 0 20px 20px;
        padding: 94px 0 65px;
    }
	
	    .screen-nine {
        border-radius: 0 0 20px 20px;
        padding: 95px 0 45px;
    }
	
	    .screen-ten {
        padding: 94px 0 65px;
    }
	
	.screen-four {
        border-radius: 0;
        padding: 94px 0 28px;
    }
	
	    .screen-five__content {
        padding: 65px 0;
        width: 100%;
        background-color: #152f15;
    }
	
	    .screen-six {
        border-radius: 0 0 20px 20px;
        padding: 64px 0 64px;
    }
	
	.lead-form__submit, .screen-five__btn, .screen-seven__btn {
       
        font-size: 18px;
     
    }
	
	.search__field-price-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search__field--price {
        width: 49%;
        min-width: 49%;
        max-width: none;
    }
	
	.search {
   
    background-color: #1D2C17;
    border-radius: 15px;
}

    .inner-page .search {
        background-color: transparent;
    }

.search__actions {
        
        padding: 0 10px 10px;
    }

}

/* ==============================================
   BREAKPOINT: 480px
   ============================================== */
@media (max-width: 480px) {
    .lead-form,
    .screen-four,
    .screen-seven,
    .screen-eight,
    .screen-nine,
    .screen-ten {
        margin-top: -30px;
    }

    .screen-three {
        min-height: auto;
    }

    .screen-three__content {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .container-1600 {
        width: min(1600px, calc(100% - 32px));
    }

    .header {
        padding: 16px 0 0;
    }

    .header__logo-img {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .header__phone {
        display: none;
    }

    .header__social img {
        width: 28px;
        height: 28px;
    }

    .header__contacts {
        gap: 6px;
    }

    .header__burger {
        gap: 5px;
        width: 28px;
        height: 28px;
    }

    .hero__content {
        padding: 0 0 20px;
        justify-content: flex-start;
    }

    .hero__title {
        font-size: 55px;
        line-height: 90%;
        margin-bottom: 14px;
        letter-spacing: -0.03em;
    }

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

    .hero__subtitle br {
        display: none;
    }

    .search__bar {
        border-radius: 16px;
        padding: 10px;
        gap: 6px;
    }

    .dropdown__toggle {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .dropdown__text {
        font-size: 14px;
    }

    .search__field--price input {
        height: 46px;
        font-size: 14px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .search__field--location {
        height: 46px;
        padding: 0 20px;
        border-radius: 200px;
    }

    .search__field--location input {
        font-size: 13px;
    }

    .search__actions {
        margin-top: 16px;
    }

    .btn {
        height: 50px;
        font-size: 14px;
        border-radius: 28px;
    }

    .btn__icon {
        width: 20px;
        height: 20px;
    }

    .dropdown__menu {
        border-radius: 12px;
    }

    .dropdown__item {
        font-size: 13px;
        padding: 6px 14px;
    }
    .dropdown__menu {
        max-height: 240px;
    }

    .lead-form {
        padding: 0 0 34px;
    }

    .lead-form__img {
        border-radius: 14px;
    }

    .lead-form__title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .lead-form__subtitle {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .lead-form__input,
    .lead-form__submit {
        height: 48px;
        font-size: 15px;
        border-radius: 26px;
        padding: 0 16px;
    }

    .screen-three__title { font-size: 28px;max-width: 100%; }
    .screen-three__subtitle { font-size: 14px; }
    .screen-three__tail {
        width: 60px;
        height: 16px;
        bottom: -8px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }

    .screen-four {
        border-radius: 0 0 20px 20px;
        padding: 40px 0 28px;
    }
    .screen-four__title { font-size: 32px; margin-bottom: 16px; }
    .screen-four__sort-btn,
    .screen-four__search {
        height: 42px;
        font-size: 14px;
        border-radius: 22px;
        padding: 0 14px;
    }
    .listing-card__slider { border-radius: 12px; }
    .listing-card__arrow {
        width: 32px;
        height: 32px;
    }
    .listing-card__arrow img {
        width: 18px;
        height: 18px;
    }
    .listing-card__title { font-size: 30px; }
    .listing-card__infra-title { font-size: 16px; }
    .listing-card__chips { gap: 6px; }
    .listing-card__chips span { padding: 6px 9px; font-size: 10px; }
    .listing-card__btn {
        min-width: 170px;
        height: 44px;
        font-size: 18px;
    }
    .screen-four__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }

    .screen-five {
        min-height: 560px;
    }
    .screen-five__content {
        padding: 16px 0;
    }
    .screen-five__form {
        border-radius: 18px;
        padding: 18px 14px 14px;
    }
    .screen-five__title { font-size: 38px; }
    .screen-five__subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .screen-five__input {
        height: 42px;
        font-size: 14px;
    }
    .screen-five__btn {
        height: 48px;
        font-size: 16px;
    }

    .screen-six {
        border-radius: 0 0 20px 20px;
        padding: 24px 0 24px;
    }
    .screen-six__title {
        font-size: 40px;
    }
    .screen-six__subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .screen-six__top,
    .screen-six__bottom,
    .screen-six__right {
        gap: 10px;
    }
    .screen-six__card-title {
        margin-top: 8px;
        font-size: 22px;
    }
    .screen-six__card-text {
        font-size: 13px;
    }
    .screen-six__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }

    .screen-seven {
        border-radius: 0 0 20px 20px;
        padding: 62px 0 24px;
    }
    .screen-seven__title {
        font-size: 38px;
    }
    .screen-seven__subtitle {
        font-size: 14px;
    }
    .screen-seven__check-item {
        font-size: 11px;
        gap: 7px;
    }
    .screen-seven__check-item span {
        width: 13px;
        height: 13px;
    }
    .screen-seven__input,
    .screen-seven__input::placeholder {
        font-size: 14px;
    }
    .screen-seven__btn {
        height: 48px;
        font-size: 16px;
    }
    .screen-seven__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }

    .hero::before,
    .hero__overlay {
        border-radius: 0 0 20px 20px;
    }

    .hero__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }

    .screen-four__tail,
    .screen-six__tail,
    .screen-seven__tail,
    .screen-eight__tail,
    .screen-nine__tail,
    .hero__tail,
    .village-objects__tail {
        bottom: -15px;
    }
	
	
.listing-card__title {
    margin: 0 0 0px;
	
}

}


@media (max-width: 480px) {
    .container-1600 {
        width: min(1600px, calc(100% - 75px));
    }
}

/* Узкие экраны 320–380px: фильтр (герой + каталог) — без горизонтального overflow */
@media (max-width: 380px) {
    .container-1600 {
        width: min(1600px, calc(100% - 20px));
    }

    .search {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .search__bar {
        padding: 8px;
        gap: 6px;
        min-width: 0;
        box-sizing: border-box;
    }

    /* Второй блок @768px задаёт полям цены по 49% — на 320px даёт вылезание за край */
    .search__field-price-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        min-width: 0;
    }

    .search .search__field--price {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: none;
    }

    .search__field--price input {
        padding: 10px 12px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .dropdown__toggle {
        min-width: 0;
        width: 100%;
        padding: 10px 12px;
        box-sizing: border-box;
    }

    .dropdown__text {
        font-size: 13px;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .search__field--currency {
        padding: 6px 0;
    }

    .currency-btn {
        width: 40px;
        height: 32px;
        font-size: 14px;
    }

    .search__field--location {
        padding: 0 14px;
        min-width: 0;
    }

    .search__field--location input {
        font-size: 12px;
    }

    .search__actions {
        padding: 0 0 8px;
        margin-top: 12px;
    }

    .search .btn {
        font-size: 14px;
        padding: 0 10px;
        box-sizing: border-box;
    }
}

/* ===== CARD VILLAGE (посёлок) ===== */
.card-village {
    position: relative;
    background: linear-gradient(270deg, rgba(255, 240, 218, 0.4) 36.12%, #FFF0DA 96.63%),
        linear-gradient(180deg, #FFF0DA 9.46%, rgba(255, 240, 218, 0.6) 38.63%, rgba(255, 240, 218, 0.3) 58.95%, #FFF0DA 96.6%);
    min-height: 100vh;
    padding: 50px 0 80px;
    overflow: hidden;
}

.card-village__bg-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(45vw, 600px);
    pointer-events: none;
    background: url('images/poselok-screen1-bg-right.png') no-repeat right center;
    background-size: contain;
    opacity: 0.6;
    z-index: 0;
}

.card-village__inner {
    position: relative;
    z-index: 1;
}

.card-village__title {
    font-family: 'Forum', serif;
    font-size: 140px;
    line-height: 90%;
    letter-spacing: -0.03em;
    color: #A7232D;
    margin: 0 0 48px;
}

.card-village__top {
    display: grid;
    grid-template-columns: 925px 650px;
    gap: 23px;
    align-items: start;
    justify-content: start;
}

.card-village__left {
    width: 925px;
    max-width: 100%;
    min-width: 0;
}

.card-village__right {
    width: 650px;
    max-width: 100%;
    min-width: 0;
}

.card-village__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 24px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #272E27;
}

.card-village__gallery {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 925px;
    height: 631px;
    max-width: 100%;
}

.card-village__gallery-track {
    display: flex;
    transition: transform 0.35s ease;
    height: 100%;
}

.card-village__gallery-track .card-village__gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: block;
}

.card-village__gallery-track .card-village__gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-village__gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.card-village__gallery-arrow img {
    width: 52px;
    height: 52px;
    display: block;
}

.card-village__gallery-arrow--prev { left: 12px; }
.card-village__gallery-arrow--next { right: 12px; }
.card-village__gallery-arrow--next img { transform: rotate(180deg); }

.card-village__thumbs {
    display: flex;
    gap: 10px;
    width: 925px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.card-village__thumbs::-webkit-scrollbar {
    display: none;
}

.card-village__thumb {
    width: 177px;
    height: 121px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.card-village__thumb--active,
.card-village__thumb:hover {
    opacity: 1;
    border-color: #A7232D;
}

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

.card-village__section-title {
    font-family: 'Forum', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1D2C17;
    margin: 0 0 12px;
}

.card-village__section-title--infra {
    font-size: 45px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #272E27;
}

.card-village__description-wrap {
    position: relative;
    margin-top: 56px;
    overflow: visible;
}

.card-village__description-bg {
    position: absolute;
    right: calc(-1 * (100vw - 100%) / 2);
    top: 1000px;
    bottom: 0;
    width: min(50vw, 600px);
    background-image: 
        linear-gradient(270deg, rgba(255, 240, 218, 0.4) 36.12%, #FFF0DA 96.63%),
        linear-gradient(180deg, #FFF0DA 9.46%, rgba(255, 240, 218, 0.6) 38.63%, rgba(255, 240, 218, 0.3) 58.95%, #FFF0DA 96.6%),
        url('images/poselok-screen1-bg-right.png');
    background-size: 100% 100%, 100% 100%, contain;
    background-position: 0 0, 0 0, right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -20;
}

.card-village__description-block {
    position: relative;
    z-index: 1;
    max-width: 925px;
      /*padding-top: 40px;
  padding-bottom: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);*/
}

.card-village__description-block .card-village__section-title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #1D2C17;
}

.card-village__description {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
    color: #1D2C17;
}

.card-village__infra {
    margin-bottom: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(39, 46, 39, 0.3);
    border-bottom: 1px solid rgba(39, 46, 39, 0.3);
}

.card-village__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card-village__chips span {
    padding: 15px;
    min-width: 135px;
    height: 50px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1px solid rgba(39, 46, 39, 0.25);
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;
    text-align: center;
    color: #272E27;
}

.card-village__price {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #272E27;
    margin-bottom: 24px;
}

.card-village__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.card-village .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 312px;
    width: auto;
    height: 78px;
    padding: 0 32px;
    border-radius: 44px;
    font-family: 'Forum', serif;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.card-village .btn--primary {
    background: #A7232D;
    color: #fff;
    border: none;
}

.card-village .btn--primary:hover {
    background: #8a1d26;
    color: #fff;
}

.card-village .btn--outline {
    background: transparent;
    color: #A7232D;
    border: 1px solid #A7232D;
}

.card-village .btn--outline:hover {
    background: #A7232D;
    color: #fff;
    border-color: #A7232D;
}

.card-village__manager-title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #272E27;
    margin: 0 0 16px;
}

.card-village__manager-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.card-village__manager-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.card-village__manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-village__manager-name {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #A7232D;
    margin-bottom: 6px;
}

.card-village__manager-role {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    color: #272E27;
    margin-bottom: 12px;
}

.card-village__manager-contacts {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
	align-items: center;
}

.card-village__manager-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-village__manager-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.card-village__manager-phone {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 120%;
    letter-spacing: -0.05em;
    text-align: right;
    color: #A7232D;
}

/* Village objects: отдельная секция с белым фоном */
.village-objects {
    position: relative;
    overflow: visible;
    background: #FFFFFF;
    border-radius: 0 0 40px 40px;
    padding: 56px 0 64px;
    z-index: 5;
}

.village-objects__tail {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    z-index: 3;
    clip-path: path('M0,0 C18,0 38,10 50,28 C62,10 82,0 100,0 Z');
    overflow: hidden;
    pointer-events: none;
}

.village-objects__tail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FFFFFF;
}

.village-objects__inner {
    position: relative;
}

.village-objects__title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 62px;
    line-height: 82%;
    letter-spacing: -0.05em;
    color: #1D2C17;
    margin: 0 0 32px;
}

.village-objects__filters {
    display: grid;
    grid-template-columns: max-content max-content max-content 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
}

.village-objects__sort-btn,
.village-objects__search {
    height: 52px;
    padding: 0 18px;
    border-radius: 26px;
    border: 1px solid rgba(29, 44, 23, 0.15);
    background: rgba(29, 44, 23, 0.04);
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #1D2C17;
}

.village-objects__sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
}

.village-objects__sort-btn.is-active {
    border-color: rgba(29, 44, 23, 0.32);
    background: rgba(255, 255, 255, 0.9);
}

.village-objects__sort-arrow {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.45;
}

.village-objects__sort-btn[data-direction="asc"] .village-objects__sort-arrow { transform: rotate(-90deg); opacity: 0.85; }
.village-objects__sort-btn[data-direction="desc"] .village-objects__sort-arrow { transform: rotate(90deg); opacity: 0.85; }
.village-objects__sort-btn[data-direction="none"] .village-objects__sort-arrow { transform: rotate(0deg); }

.village-objects__search {
    justify-self: end;
    width: 270px;
    transition: width 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.village-objects__search:focus,
.village-objects__search:not(:placeholder-shown) {
    width: 320px;
    transform: translateX(-25px);
    background: rgba(255, 255, 255, 0.9);
}

.village-objects__search::placeholder { color: #959595; }

.village-objects__grid {
    margin-bottom: 40px;
}

.village-objects__more-wrap {
    margin-top: 32px;
    text-align: center;
}

.village-objects__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    /*background: #ffffff;*/
    background: #1c1c1e;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFF0DA;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.village-objects__more-btn:hover {
    background: #f5f5f7;
    color: #1c1c1e;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.listing-card__title--object {
    font-size: 36px;
    padding: 20px 0;
	min-height: 100px;
}

.listing-card__meta--object span {
    white-space: nowrap;
}

.village-objects__all-link {
    margin-top: 24px;
    text-align: center;
}

.village-objects__all-link .btn {
    display: inline-flex;
}

.card-object__village-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.card-object__village-link:hover {
    color: #A62A3A;
}

/* Inner page wrapper (village, object cards) */
.inner-page {
    background: #FFF0DA;
}

/* Внутренние страницы: шапка всегда как на главной после прокрутки */
.inner-page .header {
    padding: 12px 0;
    background: rgba(29, 44, 23, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* ===== FOOTER ===== */
.footer {
    background: #fff;
    color: #4a4a4a;
    padding: 60px 0 80px;
    margin-top: 0;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px 80px;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-link {
    color: #4a4a4a;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 300;
    transition: color 0.2s;
}

.footer__nav-link:hover {
    color: #1D2C17;
}

.footer__policy {
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #4a4a4a;
    transition: color 0.2s;
}

.footer__policy:hover {
    color: #1D2C17;
}

.footer__contacts {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.footer__contacts-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.footer__label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #999;
}

.footer__phone {
    font-family: 'Forum', serif;
    font-size: 20px;
    color: #1D2C17;
}

.footer__socials {
    display: flex;
    gap: 8px;
}

.footer__social {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer__social:hover {
    opacity: 0.85;
}

.footer__social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer__social--whatsapp { background: #25d366; }
.footer__social--telegram { background: #0088cc; }
.footer__social--vk { background: #2787f5; }
.footer__social--youtube { background: #ff0000; }

.footer__callback {
    font-family: 'Inter Tight', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #999;
    text-decoration: underline;
}

.footer__callback:hover {
    color: #4a4a4a;
}



@media (max-width: 1620px) {
    .card-village__top {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 550px);
      
    }
	
	.card-village__title {
    font-size: 100px;
   
}

.card-object__title {

    font-size: 90px;
 
}

.village-objects__title {
 
    font-size: 60px;
  
}
}


@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        gap: 40px;
    }
    .footer__contacts {
        margin-left: 0;
        align-items: flex-start;
    }
    .footer__contacts-block {
        align-items: flex-start;
    }
}

/* ===== MODAL CALLBACK (Перезвонить вам?) ===== */
.modal-callback-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-callback-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-callback-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-callback {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: #2f412b;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.modal-callback__image {
    background: url('images/modal-bg.png') no-repeat;
    background-size: cover;
    min-height: 400px;
}

.modal-callback__form-wrap {
    background: #2F412B;
    padding: 48px 40px;
    display: flex;
    align-items: center;
}

.modal-callback__form-panel {
    width: 100%;
}

.modal-callback__title {
    font-family: 'Forum', serif;
    font-size: 28px;
    font-weight: 400;
    color: #F9EEDD;
    margin: 0 0 32px;
    line-height: 1.2;
}

.modal-callback__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-callback__field {
    display: flex;
    flex-direction: column;
}

.modal-callback__label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: rgba(249, 238, 221, 0.8);
    margin-bottom: 8px;
}

.modal-callback__field input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(249, 238, 221, 0.4);
    background: transparent;
    color: #F9EEDD;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
}

.modal-callback__field input::placeholder {
    color: rgba(249, 238, 221, 0.5);
}

.modal-callback__field textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(249, 238, 221, 0.4);
    background: transparent;
    color: #F9EEDD;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    resize: vertical;
}

.modal-callback__field textarea::placeholder {
    color: rgba(249, 238, 221, 0.5);
}

.modal-callback__submit {
    margin-top: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 999px;
    background: #F9EEDD;
    color: #2F412B;
    font-family: 'Forum', serif;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-callback__submit:hover {
    background: #f4e2c4;
}

.modal-callback__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-callback__close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.modal-callback .g-recaptcha {
    margin-top: 8px;
}

/* Modal mobile */
@media (max-width: 768px) {
    .modal-callback {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        max-height: 95vh;
    }

    .modal-callback__image {
        min-height: 200px;
        background-image: url('images/modal-mobile-bg.png');
    }

    .modal-callback__form-wrap {
        padding: 32px 24px;
        border-radius: 0 0 24px 24px;
        position: relative;
        margin-top: -24px;
    }

    .modal-callback__form-wrap::before {
        content: '';
        position: absolute;
        top: -24px;
        left: 0;
        right: 0;
        height: 24px;
        background: #2F412B;
        border-radius: 24px 24px 0 0;
    }

    .modal-callback__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .modal-callback__close {
        top: 12px;
        right: 12px;
    }
}

/* Модальное окно "Спасибо!" после отправки формы */
.modal-thanks-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.modal-thanks-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.modal-thanks-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.modal-thanks {
    position: relative;
    background: #2F412B;
    color: #F9EEDD;
    padding: 48px 40px;
    border-radius: 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-thanks__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #F9EEDD;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-thanks__close:hover {
    background: rgba(255, 255, 255, 0.35);
}
.modal-thanks__title {
    font-family: 'Forum', serif;
    font-size: 32px;
    margin: 0 0 16px;
    color: #F9EEDD;
}
.modal-thanks__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* ===== CARD OBJECT (объект) ===== */
.card-object {
    position: relative;
    background: #FFF0DA;
    min-height: 100vh;
    padding: 50px 0 80px;
    overflow: hidden;
}

.card-object__bg-right {
    position: absolute;
    right: 0;
    top: 20%;
    width: min(40vw, 500px);
    height: 70%;
    pointer-events: none;
    background: url('images/screen4-bg-rightflower.png') no-repeat top right;
    background-size: contain;
    opacity: 0.25;
}

.card-object__inner {
    position: relative;
    z-index: 1;
}

.card-object__top {
    margin-bottom: 32px;
}

.card-object__title {
    font-family: 'Forum', serif;
    font-size: 90px;
    line-height: 95%;
    letter-spacing: -0.03em;
    color: #A62A3A;
    margin: 0 0 40px;
}

.card-object__characts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    color: rgba(29, 44, 23, 0.85);
}

.card-object__price {
    font-family: 'Forum', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1D2C17;
    margin-bottom: 20px;
}

.card-object__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-object .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: 'Forum', serif;
    font-size: 18px;
    text-decoration: none;
    width: auto;
}

.card-object .btn--primary {
    background: #AF1F2B;
    color: #FFF0DA;
}

.card-object .btn--primary:hover {
    background: #971b26;
}

.card-object .btn--outline {
    background: transparent;
    color: #1D2C17;
    border: 1px solid rgba(29,44,23,0.35);
}

.card-object__gallery {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 951/533;
}

.card-object__gallery-track {
    display: flex;
    transition: transform 0.35s ease;
    height: 100%;
}

.card-object__gallery-track img {
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
}

.card-object__gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(29,44,23,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-object__gallery-arrow--prev { left: 12px; }
.card-object__gallery-arrow--next { right: 12px; }
.card-object__gallery-arrow--prev img { transform: rotate(180deg); }

.card-object__thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.card-object__thumb {
    flex-shrink: 0;
    width: 80px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.card-object__thumb--active,
.card-object__thumb:hover {
    opacity: 1;
    border-color: #A62A3A;
}

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

.card-object__section-title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
}

.card-object__props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 24px;
    margin-top: 32px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #A7232D;
}

.card-object__props-item {
    white-space: nowrap;
}

.card-object__block {
    margin-bottom: 40px;
}

.card-object__manager {
    margin-bottom: 40px;
}

.card-object__manager-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.card-object__manager-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.card-object__manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-object__manager-placeholder {
    width: 100%;
    height: 100%;
    background: #d4c4a8;
}

.card-object__manager-name {
    font-family: 'Forum', serif;
    font-size: 18px;
    color: #1D2C17;
    margin-bottom: 4px;
}

.card-object__manager-role {
    font-size: 14px;
    color: rgba(29,44,23,0.7);
    margin-bottom: 12px;
}

.card-object__manager-contacts {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.card-object__manager-icon img {
    width: 24px;
    height: 24px;
}

.card-object__manager-phone {
    font-family: 'Forum', serif;
    font-size: 20px;
    color: #1D2C17;
}

.card-object__text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1D2C17;
}

.card-object__comms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 24px;
}

.card-object__comms-item {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #A7232D;
}

.card-object__plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.card-object__plan-trigger {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: opacity 0.2s, transform 0.2s;
}

.card-object__plan-trigger:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.card-object__plan-trigger img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Lightbox для планировок и галереи */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__prev img,
.lightbox__next img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.lightbox__next img {
    transform: rotate(180deg);
}

.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
    .lightbox__close { top: -44px; right: 50%; transform: translateX(50%); }
}

/* Card responsive */
@media (max-width: 1620px) {
    .card-village__top {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 570px);
        gap: 20px;
    }
    .card-village__left {
        width: 100%;
    }
    .card-village__right {
        width: 100%;
    }
    .card-village__gallery {
        width: 100%;
        height: auto;
        aspect-ratio: 925/631;
    }
    .card-village__thumbs {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .card-village__thumb {
        flex-shrink: 0;
        width: 120px;
        height: 82px;
        min-width: 120px;
    }
}

@media (max-width: 1440px) {
	
  
    .card-village__title {
        font-size: 52px;
    }
    .card-village__meta { font-size: 32px; }
    .card-village__section-title--infra { font-size: 32px; }
    .card-village__price { font-size: 40px; }
    .card-village .btn { min-width: 260px; height: 64px; }
    .card-village__manager-title { font-size: 32px; }
    .card-village__manager-name { font-size: 24px; }
    .card-village__manager-phone { font-size: 28px; }
    .village-objects__title {
        font-size: 52px;
    }
    .card-village__chips span {
		height: 44px;
		font-size: 15px;
	}
  
    .card-object__title {
        font-size: 48px;
    }
	
	.card-village__description, .village-objects__sort-btn {
		    font-size: 18px;
	}   
	
	    .card-village__top {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 515px);
        gap: 20px;
    }
	
	
	    .screen-seven__title {
        font-size: 85px;
    }
	
}

@media (max-width: 1240px) {
    .card-village__top {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 415px);
        gap: 20px;
    }
	    .card-village__manager-phone {
        font-size: 26px;
    }
}


@media (max-width: 1024px) {
    .card-village__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .card-village__right {
        order: -1;
    }
    .card-village__title {
        font-size: 52px;
    }
    .card-village__meta { font-size: 32px; }
    .card-village__section-title--infra { font-size: 32px; }
    .card-village__price { font-size: 40px; }
    .card-village .btn { min-width: 260px; height: 64px; }
    .card-village__manager-title { font-size: 32px; }
    .card-village__manager-name { font-size: 24px; }
    .card-village__manager-phone { font-size: 28px; }
    .village-objects__title {
        font-size: 52px;
    }
    .village-objects { border-radius: 0 0 28px 28px; }
    .village-objects__tail {
        width: 80px;
        height: 22px;
        bottom: -22px;
        clip-path: path('M0,0 C14,0 30,19 40,22 C50,19 66,0 80,0 Z');
    }
    .village-objects__filters {
        grid-template-columns: 1fr 1fr;
    }
    .village-objects__search {
        max-width: none;
        justify-self: stretch;
        width: 100%;
    }
    .village-objects__search:focus,
    .village-objects__search:not(:placeholder-shown) {
        width: 100%;
        transform: none;
    }
    .card-object__title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .card-village,
    .card-object {
        padding: 30px 0 40px;
    }
    .card-village__title {
        font-size: 42px;
    }
    .card-village__meta { font-size: 28px; }
    .card-village__section-title--infra { font-size: 28px; }
    .card-village__price { font-size: 32px; }
    .card-village .btn { min-width: 100%; height: 56px; }
    .card-village__actions { flex-direction: column; }
    .card-village__manager-title { font-size: 28px; }
    .card-village__manager-name { font-size: 22px; }
    .card-village__manager-phone { font-size: 24px; }
    .card-village__manager-photo { width: 80px; height: 80px; }
    .village-objects__title {
        font-size: 42px;
    }
    .village-objects {
        padding: 40px 0 48px;
        border-radius: 0 0 28px 28px;
    }
    .village-objects__tail {
        width: 70px;
        height: 20px;
        bottom: -20px;
        clip-path: path('M0,0 C13,0 27,17 35,20 C43,17 57,0 70,0 Z');
    }
    .village-objects__filters {
        grid-template-columns: 1fr;
    }
    .village-objects__search {
        width: 100%;
    }
    .village-objects__search:focus,
    .village-objects__search:not(:placeholder-shown) {
        width: 100%;
        transform: none;
    }
    .card-object__title {
        font-size: 38px;
    }
    .card-object__thumbs {
        margin-bottom: 24px;
    }
    .card-object__thumb {
        width: 64px;
        height: 44px;
        min-width: 64px;
    }
    .card-village__thumb {
        width: 90px;
        height: 62px;
        min-width: 90px;
    }
    .card-object__price,
    .card-village__price {
        font-size: 24px;
    }
    .village-objects {
        border-radius: 0 0 20px 20px;
    }
    .village-objects__tail {
        width: 60px;
        height: 16px;
        bottom: -16px;
        clip-path: path('M0,0 C11,0 23,14 30,16 C37,14 49,0 60,0 Z');
    }
}

/* ===== MAINTENANCE STUB ===== */
.maintenance {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #FFF0DA 0%, #fff 100%);
}

.maintenance__inner {
    text-align: center;
    max-width: 560px;
}

.maintenance__title {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.1;
    color: #1D2C17;
    margin: 0 0 24px;
}

.maintenance__text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    color: #272E27;
    margin: 0 0 40px;
}

.maintenance__image-wrap {
    border-radius: 16px;
    overflow: hidden;
    display: inline-block;
}

.maintenance__cat {
    display: block;
    max-width: 320px;
    height: auto;
    vertical-align: middle;
}

.maintenance__actions {
    margin: 32px 0 0;
}

.maintenance__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    min-width: 240px;
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    background: #AF1F2B;
    border-radius: 44px;
    text-decoration: none;
    transition: background 0.25s;
}

.maintenance__home:hover {
    background: #741928;
    color: #fff;
}

/* Текстовые страницы (поле content) */
.content-page .content-page__body {
    max-width: 900px;
    margin-top: 24px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.65;
    color: #272E27;
}

.content-page .content-page__body > *:first-child {
    margin-top: 0;
}

.content-page .content-page__body h2,
.content-page .content-page__body h3 {
    font-family: 'Forum', serif;
    font-weight: 400;
    color: #1D2C17;
    margin: 1.25em 0 0.5em;
}

.content-page .content-page__body h2 {
    font-size: 32px;
    line-height: 1.2;
}

.content-page .content-page__body h3 {
    font-size: 24px;
    line-height: 1.25;
}

.content-page .content-page__body p {
    margin: 0 0 1em;
}

.content-page .content-page__body ul,
.content-page .content-page__body ol {
    margin: 0 0 1em 1.25em;
    padding: 0;
}

.content-page .content-page__body li {
    margin-bottom: 0.35em;
}

.content-page .content-page__body a {
    color: #A62A3A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-page .content-page__body a:hover {
    color: #741928;
}

.content-page .content-page__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}






@media (max-width: 1024px) and (min-width: 600px) {
    .screen-four__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        
    }
	

}


@media (max-width: 1240px) {
	
	.listing-card__title--object {
    font-size: 36px;

	min-height: 70px;
}
	
}

@media (max-width: 1024px) {

	.card-village__top {
   
    display: flex;
    flex-direction: column-reverse;
}

.listing-card__title--object {

	min-height: 100px;
}

}


@media (max-width: 768px) {
    .card-object__title {
        font-size: 60px;
    }
	
	.village-objects__title {
 
    font-size: 50px;
  
}
}


@media (max-width: 600px) {
    .card-object__title {
        font-size: 40px;
    }
	
	.village-objects__title { 
    font-size: 30px;  
}

.listing-card__meta {
    display: flex;
	gap: 0;
    
}


	.listing-card__meta {
    display: flex;
    gap: 40px;
}

.listing-card__title--object {
 
	min-height: auto;
}

	.card-village__chips span {
		    font-size: 13px;
	}
	
	.card-village__description {

    font-size: 16px;

}

.card-village__description-block .card-village__section-title {
 
    font-size: 34px;


}
.card-object__props-item {
    white-space: normal;
}
}

@media (max-width: 1240px) and (min-width: 600px) {
    .listing-card__title {
        font-size: 42px;
        min-height: 162px;
    }
}

.line {
	padding-top: 40px;    
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}


.dropdown__toggle  {
	min-width: 270px;	
}



.object .listing-card__title {	
   
    font-size: 33px;
    line-height: 95%;  


}

@media (max-width: 1440px)  {
.object .listing-card__title {

    min-height: 122px;
}

}

@media (max-width: 1240px)  {
	
.object .listing-card__title {
    font-size: 34px;
    line-height: 95%;
    min-height: 100px;
}

}

@media (max-width: 600px)  {
	
.object .listing-card__title {

    min-height: auto;
}

}


@media (max-width: 480px) {
    .listing-card__meta {
        display: flex;
        gap: 20px;
    }
	
	.card-village__manager-icon img {
    width: 31px;
    height: 31px; 
}

.card-village__manager-contacts {
  
    gap: 6px;
}
}



.mobile {	
	display: none;
}


@media (max-width: 1024px) {
	
.mobile {	
	display: block;
}
 .desctop	{
	 display: none;
	 
 }
}


.screen-four__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 85px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #272E27;
    font-family: 'Inter Tight', sans-serif;
    font-family: 'Forum', serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: initial;
    color: #FFF0DA;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (max-width: 500px) {
    .card-village__manager-phone {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .screen-seven__title {
        font-size: 38px;
    }
}


.listing-card__meta > :last-child {
 font-weight:600;
}

.listing-card__meta > :first-child {
 font-weight:100;
}