/* ========================================
   Шаблыкино Поле — страница отдельного дома
   БЭМ-нейминг, адаптивные брейкпоинты
   ======================================== */

/* ── Шрифты ────────────────────────────── */
@font-face {
    font-family: 'Montserrat';
    src: url("/fonts/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("/fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Kreadon';
    src: url("/fonts/690627e5cb9ac934ccd62841_Kreadon-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Harlow';
    src: url("/fonts/6906280cfe3eccaa0c55b6f9_Harlow Solid LET Plain1.0.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

/* ── Переменные ────────────────────────── */
:root {
    --black: #000;
    --ink: #151515;
    --white: #fff;
    --beige: #f9f4f1;
    --red: rgb(202, 33, 55);
    --muted: #4d4d4d;
    --line: #d3d3d3;
    --radius: 10px;
    --radius-pill: 50px;
    --shadow-card: 0 0 20px rgba(0, 0, 0, 0.2);
    --shadow-pill: 3px 2px 10px rgba(0, 0, 0, 0.25),
                   inset 0px 0px 40px 5px rgba(255, 255, 255, 0.025),
                   inset 0px 0px 10px 5px rgba(255, 255, 255, 0.025);
    --white-color: white;
    --Montserrat-bold: 'Montserrat', Arial, sans-serif;
    --Montserrat-semibold: 'Montserrat', Arial, sans-serif;
    --Montserrat-mediun: 'Montserrat', Arial, sans-serif;
    --Montserrat-regular: 'Montserrat', Arial, sans-serif;
    --Montserrat-light: 'Montserrat', Arial, sans-serif;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ── Container ─────────────────────────── */
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 38px;
}

@media screen and (min-width: 1600px) {
    .container {
        padding: 0 7vw;
    }
}

@media screen and (min-width: 960px) and (max-width: 1280px) {
    .container {
        padding: 0 3vw;
    }
}

@media screen and (min-width: 451px) and (max-width: 959px) {
    .container {
        padding: 0 4vw;
    }
}

@media screen and (max-width: 450px) {
    .container {
        padding: 0 5vw;
    }
}

/*Секция меню*/
.section__menu {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 200;
}

.container__menu {
    width: 100%;
    height: auto;
    padding: 24px 76px 24px 76px;
}

.menu__body {
    width: 100%;
    height: auto;
    border-radius: 50px;
    backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    /* Нижний и правый эффект глубины */
    inset -0.75px -0.5px rgba(255, 255, 255, 0.1),
    /* Верхний и левый эффект глубины */
    inset +0.75px +0.5px rgba(255, 255, 255, 0.025),
    /* Эффект тени */
    3px 2px 10px rgba(0, 0, 0, 0.25),
    /* Короткий подповерхностный эффект */
    inset 0px 0px 10px 5px rgba(255, 255, 255, 0.025),
    /* Длинный подповерхностный эффект */
    inset 0px 0px 40px 5px rgba(255, 255, 255, 0.025);
    padding: 14px 38px 14px 38px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    background-color: rgba(255, 255, 255, 0.7);
}

.menu__leftblock {
    display: flex;
    flex-direction: row;
    gap: 38px;
}

.menu__leftblock a {
    font-family: var(--Montserrat-regular);
    font-size: 18px;
    color: black;
    text-decoration: none;
    transition: all 0.4s;
}

.menu__leftblock a:hover {
    font-size: 22px;
}

.menu__logoblock {
    background-color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    background-image: url("../images/logo_svg_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border: 1px solid black;
}

.menu__rightblock {
    display: flex;
    flex-direction: row;
    gap: 38px;
    align-items: center;
}

.menu__phonelink {
    font-family: var(--Montserrat-regular);
    font-size: 18px;
    color: black;
    text-decoration: none;
    transition: all 0.4s;    
}

.menu__phonelink:hover {
    font-size: 22px;
}

.menu__socnet_block {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.menu__socnet_block a {
    background-color: white;
    width: 38px;
    height: 38px;
}

.menu__socnetmax {
    background-image: url("../images/max__logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 10px;
}

.menu__socnettg {
    background-image: url("../images/telegram__logo.svg");
    background-repeat: no-repeat;
    background-position: 40%;
    background-size: 60%;
    border: 1px solid black;
    border-radius: 50px;
}


.menu__socnetvk {
    background-image: url("../images/vk_icon_header.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 10px;
}
.menu__btn {
    background-color: black;
    padding: 14px 38px 14px 38px;
    border-radius: 10px;
    color: white;
    font-family: var(--Montserrat-regular);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s;
}

.menu__btn:hover {
    font-size: 22px;
}

.menu__burger {
    display: none;
}

.menu__socnet_blockmobyle {
    display: none;
}

.menu__logoblockmobyle {
    display: none;
}

.menu__crestik {
    display: none;
}

@media screen and (min-width: 1600px) {
    .container__menu {
    width: 100%;
    height: auto;
    padding: 24px 8vw 24px 8vw;
}
}



/*Адаптивка 1280px - 960px*/
@media screen and (min-width: 960px) and (max-width: 1424px) {
 .container__menu {
    padding: 2vw 6vw 2vw 6vw;
}

.menu__body {
    padding: 1vw 3vw 1vw 3vw;
}

.menu__leftblock {
    gap: 1.5vw;
    align-items: center;
}

.menu__leftblock a {
    font-size: 1.2vw;
}

.menu__leftblock a:hover {
    font-size: 1.5vw;
}

.menu__logoblock {
    width: 4.5vw;
    height: 4.5vw;
}

.menu__rightblock {
    gap: 1.5vw;
}

.menu__phonelink {
    font-size: 1.2vw;    
}

.menu__phonelink:hover {
    font-size: 1.5vw;
}

.menu__socnet_block {
    gap: 1vw;
}

.menu__socnet_block a {
    width: 2.3vw;
    height: 2.3vw;
}

.menu__btn {
    padding: 1vw 2vw 1vw 2vw;
    font-size: 1.2vw;
}

.menu__btn:hover {
    font-size: 1.9vw;
}   
}

/*Адаптивка 959px - 451px*/
@media screen and (min-width: 451px) and (max-width: 959px) {
.container__menu {
    position: relative;
}

.menu__socnet_block {
    display: none;
}

.menu__logoblock {
    display: none;
}

.container__menu {
    display: flex;
    align-items: flex-start;
}

.menu__body {
    width: auto;
    height: auto;
    padding: 3vw 8vw 3vw 2vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4.5vw;
    margin-left: auto;
    border-radius: 10px;
    position: relative;
    right: 0;
    top: 1vw;
    opacity: 1;
    transform: translateX(120vw);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    visibility: hidden;
}

.menu__body.is-active {
    transform: translateX(0);
    visibility: visible;
}

.menu__logoblockmobyle {
    background-color: white;
    border-radius: 50px;
    width: 6vw;
    height: 6vw;
    background-image: url("../images/logo_svg_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border: 1px solid black;  
    display: block;  
}

.menu__leftblock {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.menu__leftblock a {
    font-size: 2vw;
}

.menu__rightblock {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    align-items: flex-start;
}

.menu__phonelink {
    font-size: 2vw;
}

.menu__btn {
    font-size: 2vw;
}

.menu__socnet_blockmobyle {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    position: absolute;
    top: 3vw;
    left: 8vw;
}

.menu__socnet_blockmobyle a{
    background-color: white;
    width: 5vw;
    height: 5vw;
}

.menu__socnetmax {
    background-image: url("../images/max__logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 10px;
}

.menu__socnettg {
    background-image: url("../images/telegram__logo.svg");
    background-repeat: no-repeat;
    background-position: 40%;
    background-size: 60%;
    border: 1px solid black;
    border-radius: 50px;
}


.menu__socnetvk {
    background-image: url("../images/vk_icon_header.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 10px;
}
.menu__crestik {
    width: 5vw;
    height: 5vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/cross_icon.svg");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    position: absolute;
    top: 3vw;
    right: 3vw;
    cursor: pointer;
    display: block;
}

.menu__burger {
    width: 7vw;
    height: 7vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/burger_menu_icon.svg");
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    position: absolute;
    top: 3vw;
    right: 8vw;
    transition: opacity 0.3s ease;
    cursor: pointer;
    opacity: 1;
    visibility: visible; 
    display: block;   
}

.menu__burger.is-hidden {
    opacity: 0;
    visibility: hidden;
}
}

/*Адаптивка 450px и меньше*/
@media screen and (max-width: 450px) {
.container__menu {
    position: relative;
    width: 100%;
}

.menu__socnet_block {
    display: none;
}

.menu__logoblock {
    display: none;
}

.container__menu {
    display: flex;
    align-items: flex-start;
}

.menu__body {
    width: auto;
    height: auto;
    padding: 4vw 10vw 4vw 3vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5.5vw;
    margin-left: auto;
    border-radius: 10px;
    position: relative;
    right: -8vw;
    top: 0vw;
    opacity: 1;
    transform: translateX(120vw);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    visibility: hidden;
}

.menu__body.is-active {
    transform: translateX(0);
    visibility: visible;
}

.menu__logoblockmobyle {
    background-color: white;
    border-radius: 50px;
    width: 8vw;
    height: 8vw;
    background-image: url("../images/logo_svg_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border: 1px solid black;    
    display: block;
}

.menu__leftblock {
    display: flex;
    flex-direction: column;
    gap: 3.5vw;
}

.menu__leftblock a {
    font-size: 3vw;
}

.menu__rightblock {
    display: flex;
    flex-direction: column;
    gap: 3.5vw;
    align-items: flex-start;
}

.menu__phonelink {
    font-size: 3vw;
}

.menu__btn {
    font-size: 3vw;
}

.menu__socnet_blockmobyle {
    display: flex;
    flex-direction: row;
    gap: 3vw;
    position: absolute;
    top: 5vw;
    left: 9vw;
}

.menu__socnet_blockmobyle a{
    width: 7vw;
    height: 7vw;
}

.menu__socnetmax {
    background-image: url("../images/max__logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    background-color: black;
    border-radius: 10px;
}

.menu__socnettg {
    background-image: url("../images/telegram__logo.svg");
    background-repeat: no-repeat;
    background-position: 40%;
    background-size: 60%;
    border: 1px solid black;
    background-color: white;
    border-radius: 50px;
}


.menu__socnetvk {
    background-image: url("../images/vk_icon_header.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 10px;
}
.menu__crestik {
    width: 8vw;
    height: 8vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/cross_icon.svg");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    position: absolute;
    top: 4vw;
    right: 4vw;
    cursor: pointer;
    display: block;
}

.menu__burger {
    width: 10vw;
    height: 10vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/burger_menu_icon.svg");
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    position: absolute;
    top: 5vw;
    right: 8vw;
    transition: opacity 0.3s ease;
    cursor: pointer;
    opacity: 1;
    visibility: visible;  
    display: block;  
}

.menu__burger.is-hidden {
    opacity: 0;
    visibility: hidden;
}    
}

/* ── Header offset for fixed menu ── */
.page {
    padding-top: 0px;
}

@media screen and (max-width: 959px) {
    .page {
        padding-top: 0px;
    }
}

@media screen and (max-width: 450px) {
    .page {
        padding-top: 0px;
    }
}


/* ── Breadcrumbs ───────────────────────── */
.breadcrumbs {
    font-size: 14px;
    color: var(--muted);
    padding-top: 140px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs a {
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--black);
}

.breadcrumbs__sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    margin: 0 4px;
    opacity: 0.5;
}

.breadcrumbs__current {
    color: var(--black);
}

/* ── House Head ────────────────────────── */
.house-head {
    padding: 40px 0 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

.house-head__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.house-head__subtitle {
    font-size: 24px;
    color: var(--muted);
    margin-top: 16px;
}

.price-card {
    text-align: right;
    background: var(--beige);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem 1.25rem 3.5rem;
    min-width: auto;
    width: auto;
    display: inline-block;
}

.price-card__from {
    font-size: 14px;
    color: var(--muted);
}

.price-card__value {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-top: 4px;
}

.price-card__per {
    font-size: 14px;
    color: var(--muted);
    margin-top: 2px;
}

/* ── Specs / Chips ─────────────────────── */
.specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    background: var(--white);
    box-shadow: var(--shadow-card);
    font-size: 16px;
}

.chip__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.chip__label {
    color: var(--muted);
}

.chip__value {
    font-weight: 600;
}

/* ── Gallery ───────────────────────────── */
.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 20px;
    padding-bottom: 0;
}

.gallery-wrapper {
    padding-bottom: 80px;
}

.gallery:not(:has(img)) {
    display: none;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: #f4eee8;
}

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

.gallery__item--main {
    grid-row: 1 / 3;
}

.gallery__more {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    cursor: pointer;
    user-select: none;
}

/* Gallery hidden items */
.gallery__item--hidden {
    display: none;
}

.gallery__item--visible {
    display: block;
    animation: itemFadeIn 0.45s ease both;
}

@keyframes itemFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Content Layout ────────────────────── */
.house-body__grid {
    display: grid;
    grid-template-columns: 1fr 426px;
    gap: 40px;
    align-items: stretch;
    padding-bottom: 96px;
}

.house-body__main {
    min-width: 0;
}

.house-body__aside {
    min-width: 0;
}

/* ── Section ───────────────────────────── */
.section {
    margin-bottom: 64px;
}

.section__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 28px;
}

.section__subtitle {
    font-size: 24px;
    color: var(--muted);
    margin: -16px 0 28px;
    line-height: 1.4;
}

/* ── Prose ─────────────────────────────── */
.prose p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.prose img {
    width: 100%;
    max-width: 100%;
    height: 420px;
    border-radius: var(--radius);
    margin: 24px 0;
    object-fit: cover;
    display: block;
}

/* ── Amenities ─────────────────────────── */
.amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.amenities__item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    min-height: 76px;
}

.amenities__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--red);
}

.amenities__icon svg {
    width: 100%;
    height: 100%;
}

/* ── Plan ──────────────────────────────── */
.plan {
    background: var(--beige);
    border-radius: var(--radius);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.plan__image {
    background: #f4eee8;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.plan__list {
    font-size: 18px;
}

.plan__list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.plan__list li:last-child {
    border-bottom: 0;
}

.plan__list span {
    color: var(--muted);
}

/* ── Booking ───────────────────────────── */
.booking {
    position: sticky;
    top: 140px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 28px;
}

.booking__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.booking__house {
    font-size: 14px;
    color: var(--muted);
}

.booking__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0 24px;
}

.booking__price {
    font-size: 38px;
    font-weight: 700;
}

.booking__per {
    font-size: 14px;
    color: var(--muted);
}

.booking__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking > .field {
    margin-top: 12px;
}

.field {
    display: block;
    border-radius: var(--radius);
    border: 1px solid #bcbcbc;
    padding: 12px 14px;
    margin-bottom: 12px;
    position: relative;
}

.field__label {
    font-size: 12px;
    color: #575757;
    display: block;
    margin-bottom: 2px;
}

.field input,
.field select {
    border: 0;
    outline: 0;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    width: 100%;
    background: transparent;
    padding: 2px 0 0;
}

.field__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.73;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.booking__cta {
    width: 100%;
    height: 58px;
    background: var(--black);
    color: var(--white);
    margin-top: 16px;
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 400;
    transition: background 0.3s;
}

a.booking__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
}

.booking__cta:hover {
    background: #1a1a1a;
}

.booking__note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
    text-align: center;
}

.booking__perks {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.booking__perk {
    display: flex;
    gap: 10px;
    align-items: center;
}

.booking__perk-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.booking__children-ages {
    margin-bottom: 12px;
}

.booking__children-ages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 6px;
}

.booking__child-age {
    display: block;
    border-radius: var(--radius);
    border: 1px solid #bcbcbc;
    padding: 10px 12px;
}

.booking__child-age .field__label {
    margin-bottom: 4px;
}

.booking__child-age-input {
    border: 0;
    outline: 0;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    width: 100%;
    background: transparent;
}

.booking__message {
    font-size: 13px;
    margin-top: 8px;
    min-height: 1.4em;
    color: var(--red);
}

.booking__cta:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* ── Banner ────────────────────────────── */
.banner {
    position: relative;
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 96px;
    color: var(--white);
}

.banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.banner__inner {
    position: absolute;
    left: 38px;
    bottom: 38px;
    z-index: 2;
    max-width: 540px;
}

.banner__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    white-space: pre-line;
}

.banner__btn {
    display: inline-block;
    height: 58px;
    padding: 0 38px;
    line-height: 58px;
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius-pill);
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
}

.banner__btn:hover {
    background: #f0f0f0;
}

/* ── Promo Banner ──────────────────────── */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--beige);
    border-radius: var(--radius);
    padding: 32px 38px;
    margin-bottom: 64px;
}

.promo-banner__content {
    flex: 1 1 auto;
    max-width: 780px;
}

.promo-banner__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.promo-banner__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.promo-banner__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 20px;
}

.promo-banner__terms {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-banner__house {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.promo-banner__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.promo-banner__list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--black);
}

.promo-banner__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CA2137' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.promo-banner__list strong {
    font-weight: 600;
}

.promo-banner__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 38px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.promo-banner__btn:hover {
    background: #1a1a1a;
}

/* ── Promo Coupon ───────────────────────── */
.promo-coupon {
    display: flex;
    background: var(--beige);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 64px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.promo-coupon__body {
    flex: 1 1 auto;
    padding: 32px 38px;
}

.promo-coupon__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.promo-coupon__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 680px;
}

.promo-coupon__offers {
    display: flex;
    gap: 28px;
    margin-top: 28px;
}

.promo-coupon__offer {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.promo-coupon__offer-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}

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

.promo-coupon__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.promo-coupon__days {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 8px 16px;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    margin-top: 2px;
}

.promo-coupon__desc {
    font-size: 15px;
    line-height: 1.45;
    color: var(--black);
    padding-top: 6px;
}

.promo-coupon__desc strong {
    font-weight: 600;
}

.promo-coupon__value {
    color: var(--red);
    font-weight: 700;
}

.promo-coupon__divider {
    width: 1px;
    flex: 0 0 auto;
    background: rgba(0, 0, 0, 0.12);
    align-self: stretch;
}

.promo-coupon__tear {
    position: relative;
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(202, 33, 55, 0.04);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 12px,
        rgba(202, 33, 55, 0.05) 12px,
        rgba(202, 33, 55, 0.05) 24px
    );
    border-left: 2px dashed rgba(0, 0, 0, 0.15);
    padding: 24px;
}

.promo-coupon__tear-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.promo-coupon__tear-label {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

.promo-coupon__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 28px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.promo-coupon__btn:hover {
    background: #1a1a1a;
}

/* ── Promo Tiles Banner ────────────────── */
.promo-tiles-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: linear-gradient(135deg, rgb(160, 28, 45) 0%, rgb(202, 33, 55) 100%);
    border-radius: var(--radius);
    padding: 40px 48px;
    margin-bottom: 64px;
    color: var(--white);
    box-shadow: var(--shadow-card);
    font-family: 'Montserrat', Arial, sans-serif;
}

.promo-tiles-banner__content {
    flex: 0 1 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.promo-tiles-banner__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
}

.promo-tiles-banner__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.promo-tiles-banner__subtitle {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.promo-tiles-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    background: var(--white);
    color: var(--red);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    margin-top: 8px;
}

.promo-tiles-banner__btn:hover {
    background: var(--beige);
}

.promo-tiles-banner__tiles {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 620px;
}

.promo-tiles-banner__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius);
    padding: 24px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.promo-tiles-banner__tile-icon {
    width: 40px;
    height: 40px;
    color: var(--red);
}

.promo-tiles-banner__tile-icon svg {
    width: 100%;
    height: 100%;
}

.promo-tiles-banner__tile-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
}

.promo-tiles-banner__tile-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

.promo-tiles-banner__tile-note {
    font-size: 13px;
    color: var(--black);
    opacity: 0.65;
    line-height: 1.35;
}

/* ========================================
   АДАПТИВ
   ======================================== */

/* ── 1280px ────────────────────────────── */
@media screen and (max-width: 1280px) {
    .house-head__title {
        font-size: 48px;
    }

    .house-body__grid {
        grid-template-columns: 1fr;
    }

    .booking {
        position: static;
    }

    .gallery {
        grid-template-rows: 240px 240px;
    }

    .amenities {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ── 960px ─────────────────────────────── */
@media screen and (max-width: 960px) {
    .house-head {
        grid-template-columns: 1fr;
    }

    .house-head__title {
        font-size: 42px;
    }

    .price-card {
        text-align: left;
        justify-self: start;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-wrapper {
        padding-bottom: 40px;
    }

    .gallery__item--main {
        grid-row: 1 / 3;
    }

    .section__title {
        font-size: 32px;
    }

    .plan {
        grid-template-columns: 1fr;
    }

    .banner {
        height: 400px;
    }

    .banner__title {
        font-size: 28px;
    }

    .promo-tiles-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 32px;
    }

    .promo-tiles-banner__content {
        max-width: 100%;
    }

    .promo-tiles-banner__tiles {
        width: 100%;
        max-width: none;
    }

    .promo-coupon {
        flex-direction: column;
    }

    .promo-coupon__body {
        padding: 24px;
    }

    .promo-coupon__title {
        font-size: 22px;
    }

    .promo-coupon__offers {
        flex-direction: column;
        gap: 20px;
    }

    .promo-coupon__divider {
        width: 100%;
        height: 1px;
    }

    .promo-coupon__tear {
        flex: 0 0 auto;
        border-left: none;
        border-top: 2px dashed rgba(0, 0, 0, 0.15);
        padding: 24px;
    }

    .promo-coupon__tear-inner {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
        margin-bottom: 48px;
    }

    .promo-banner__btn {
        width: 100%;
    }
}

/* ── 450px ─────────────────────────────── */
@media screen and (max-width: 450px) {
    .breadcrumbs {
        padding-top: 24px;
        font-size: 12px;
    }

    .house-head {
        padding: 24px 0 20px;
    }

    .house-head__title {
        font-size: 32px;
    }

    .house-head__subtitle {
        font-size: 18px;
    }

    .price-card {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.25rem;
    }

    .price-card__value {
        font-size: 28px;
    }

    .specs {
        gap: 8px;
    }

    .chip {
        height: 38px;
        padding: 0 14px;
        font-size: 14px;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
        padding-bottom: 0;
    }

    .gallery-wrapper {
        padding-bottom: 40px;
    }

    .gallery__item--main {
        grid-row: auto;
    }

    .house-body__grid {
        gap: 24px;
        padding-bottom: 48px;
    }

    .content-main {
        padding-bottom: 0;
    }

    .section {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .section__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .prose p {
        font-size: 16px;
    }

    .prose img {
        height: 320px;
    }

    .amenities {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .amenities__item {
        padding: 16px;
        min-height: auto;
    }

    .plan {
        padding: 20px;
        gap: 20px;
    }

    .plan__list {
        font-size: 16px;
    }

    .booking {
        padding: 1.25rem;
    }

    .booking__price {
        font-size: 28px;
    }

    .booking__cta {
        height: 52px;
        font-size: 16px;
    }

    .banner {
        height: 320px;
        margin-bottom: 48px;
    }

    .banner__inner {
        left: 20px;
        bottom: 24px;
        max-width: none;
        padding-right: 20px;
    }

    .banner__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .banner__btn {
        height: 48px;
        line-height: 48px;
        padding: 0 24px;
        font-size: 16px;
    }

    .promo-coupon {
        margin-bottom: 40px;
    }

    .promo-coupon__body {
        padding: 20px;
    }

    .promo-coupon__title {
        font-size: 20px;
    }

    .promo-coupon__offer-title {
        font-size: 15px;
    }

    .promo-coupon__item {
        flex-direction: column;
        gap: 6px;
    }

    .promo-coupon__days {
        align-self: flex-start;
    }

    .promo-coupon__tear {
        padding: 20px;
    }

    .promo-coupon__tear-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .promo-coupon__btn {
        width: 100%;
        height: 52px;
        font-size: 14px;
    }

    .promo-tiles-banner {
        padding: 24px 20px;
        margin-bottom: 40px;
        gap: 24px;
    }

    .promo-tiles-banner__title {
        font-size: 22px;
    }

    .promo-tiles-banner__tiles {
        grid-template-columns: 1fr;
    }

    .promo-tiles-banner__tile {
        padding: 20px;
    }

    .promo-tiles-banner__btn {
        width: 100%;
        height: 52px;
        font-size: 14px;
    }

    .promo-banner {
        padding: 20px;
        margin-bottom: 40px;
    }

    .promo-banner__title {
        font-size: 22px;
    }

    .promo-banner__subtitle {
        font-size: 16px;
    }

    .promo-banner__list li {
        font-size: 14px;
    }

    .promo-banner__btn {
        height: 52px;
        padding: 0 24px;
        font-size: 15px;
    }

    /* old .other / .footer rules removed */
}

/* ── Carousel styles from styles.css ───────────────── */
.container__houses {
    width: 100%;
    height: auto;
    padding: 0;
    overflow-x: hidden;
}

.attr__h2 {
    color: black;
    font-family: var(--Montserrat-bold);
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 24px;
    padding-left: 80px;
}

.houses__navigation_body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1600px;
    padding-right: 76px;
    margin-bottom: 0;
    padding-left: 80px;
}

.houses__navigation_block {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-right: 80px;
}

.houses__navblock_left {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.houses__navblock_left img {
    width: 15px;
    height: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center; 
}

.houses__navblock_right {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.houses__navblock_right img {
    width: 15px;
    height: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center; 
}

.houses__bodyblock {
    width: 100%;
    height: 800px;
    padding-left: 5px;
    display: block;
}

.swiper {
      width: 100%;
      height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-navigation-icon {
    display: none;
}

.houses__card {
    height: 750px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); 
}    

.houses__card_top {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 10px;
}

.houses__card_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 9px 18px;
    background: rgb(202, 33, 55);
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(202, 33, 55, 0.4);
    pointer-events: none;
}

.houses__card_top img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover; 
    border-radius: 10px;
}

.houses__card_bottom {
    width: 100%;
    height: 400px;
    padding: 38px 24px 24px 24px;
    position: relative;
}

.houses__card_icons {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
    margin-bottom: 24px;
}

.card__icon_body {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: flex-end;
}

.card__icon_body img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.card__icon_p {
    font-family: var(--Montserrat-regular);
    font-size: 14px;
    line-height: 140%;
    color: black;
}

.card__h3 {
    font-family: var(--Montserrat-bold);
    font-weight: 700;
    color: black;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 24px;
}

.card__p_blockbg {
    width: 100%;
    height: 75px;
    overflow: hidden;
    position: relative;
}

.card__p_black {
    font-family: var(--Montserrat-regular);
    color: black;
    font-size: 18px;
    line-height: 140%;
}

.card__p_blockbg a:not(.houses__card_textlink) {
    font-family: var(--Montserrat-regular);
    color: black;
    font-size: 18px;
    background-color: white;
    position: absolute;
    right: 1px;
    bottom: 1px;
    padding-left: 14px;
}

.houses__card_textlink {
    text-decoration: none;
    color: inherit;
    display: block;
}

.houses__card_textlink .card__p_black,
.houses__card_textlink .card__p_price,
.houses__card_textlink .card__h3 {
    color: inherit;
}

.card__price_and_btn {
    height: auto;
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.card__p_price {
    font-family: var(--Montserrat-bold);
    font-weight: 700;
    font-size: 24px;
    color: black;
}

.card__btn {
    font-family: var(--Montserrat-regular);
    color: white;
    background-color: black;
    font-size: 18px;
    padding: 18px 38px 18px 38px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s;
}

.card__btn:hover {
    font-size: 24px;
}

.houses__p_mobile_head {
    display: none;
}

.swiper-wrapper {
    box-sizing: border-box;
    padding-left: 80px;
}

/* Правый отступ карусели "Другие дома": 120px на мобильных, 160px на десктопе */
.houses__bodyblock .swiper {
    box-sizing: border-box;
    padding-right: 120px;
}

@media screen and (min-width: 960px) {
    .houses__bodyblock .swiper {
        padding-right: 160px;
    }
}

/* Пустой последний слайд виден только на очень широких экранах (>1600px) */
.swiper-slide--last {
    display: none !important;
}

@media screen and (min-width: 1600px) {
    .swiper-slide--last {
        display: flex !important;
    }
}

/*Адаптивка 1600 и больше*/
@media screen and (min-width: 1600px) {
.container__houses {
    width: 100%;
    height: auto;
}

.houses__bodyblock {
    display: block;
    width: 100%;
    height: 800px;
    padding-left: 5px;
}

.houses__card {
    height: 750px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); 
}

.houses__card_bottom {
    width: 100%;
    height: 400px;
    padding: 38px 24px 24px 24px;
    position: relative;
}

.houses__card_icons {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 52px;
    margin-bottom: 24px;
}

.houses__navigation_body {
    display: flex;
    padding-left: 9vw;
    margin-left: 0;
    max-width: none;
    padding-right: 9vw;
}

.houses__p_mobile_head {
    display: none;
}

.attr__h2 {
    padding-left: 9vw;
}

.swiper-wrapper {
    box-sizing: border-box;
    padding-left: 9vw;
}
}

/*Адаптивка 1280px - 960px*/
@media screen and (min-width: 960px) and (max-width: 1280px) {
.section__houses {
    margin-top: 10vw;
}

.houses__navigation_body {
    margin-bottom: 0vw;
    padding-right: 7vw;
    display: flex;
    padding-left: 6vw;
}

.houses__navigation_block {
    gap: 2vw;
}

.houses__navblock_left {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
}

.houses__navblock_left img {
    width: 1.2vw;
    height: 1.2vw;
}

.houses__navblock_right {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
}

.houses__navblock_right img {
    width: 1.2vw;
    height: 1.2vw;
}

.houses__bodyblock {
    width: 100%;
    height: 63vw;
    padding-left: 0.5vw;
    display: block;
}

.houses__card {
    height: 59vw;
}

.houses__card_top {
    height: 25vw;
}

.houses__card_top img {
    height: 25vw;
}

.houses__card_bottom {
    height: 34vw;
    padding: 3vw 2vw 2vw 2vw;
}

.houses__card_icons {
    gap: 0vw;
    justify-content: space-between;
    margin-bottom: 2vw;
}

.card__icon_body {
    gap: 1.5vw;
}

.card__icon_body img {
    width: 2vw;
    height: 2vw;
}

.card__icon_p {
    font-size: 1.2vw;
}

.card__h3 {
    font-size: 2vw;
    margin-bottom: 1vw;
}

.card__p_blockbg {
    height: 6.4vw;
}

.card__p_black {
    font-size: 1.5vw;
}

.card__p_blockbg a {
    font-size: 1.5vw;
    right: 0.1vw;
    bottom: 0.1vw;
    padding-left: 1vw;
}

.card__price_and_btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    bottom: 2vw;
    left: 2vw;
    right: 2vw;
}

.card__p_price {
    font-size: 2vw;
}

.card__btn {
    width: 100%;
    font-size: 1.5vw;
    padding: 1.5vw 3vw 1.5vw 3vw;
}

.card__btn:hover {
    font-size: 2vw;
}

.houses__p_mobile_head {
    display: none;
}

.attr__h2 {
    padding-left: 6vw;
    font-size: 3vw;
}

.swiper-wrapper {
    box-sizing: border-box;
    padding-left: 6vw;
}
}

/*Адаптивка 959px - 451px*/
@media screen and (min-width: 451px) and (max-width: 959px) {
.section__houses {
    margin-top: 10vw;
}

.houses__card {
    height: 80vw;
}

.houses__card_top {
    height: 40vw;
}

.houses__card_top img {
    height: 40vw;
}

.houses__card_bottom {
    height: 40vw;
    padding: 4vw 3vw 3vw 3vw;
}

.houses__card_icons {
    gap: 0vw;
    justify-content: space-between;
    margin-bottom: 2vw;
}

.card__icon_body {
    gap: 1.5vw;
}

.card__icon_body img {
    width: 3vw;
    height: 3vw;
}

.card__icon_p {
    font-size: 2vw;
}

.card__h3 {
    font-size: 2.6vw;
    margin-bottom: 1vw;
}

.card__p_blockbg {
    height: 8vw;
}

.card__p_black {
    font-size: 2vw;
}

.card__p_blockbg a {
    font-size: 2vw;
    right: 0.1vw;
    bottom: 0vw;
    padding-left: 1vw;
}

.card__price_and_btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    bottom: 3vw;
    left: 3vw;
    right: 3vw;
}

.card__p_price {
    font-size: 3vw;
}

.card__btn {
    width: 100%;
    font-size: 2vw;
    padding: 2vw 3.5vw 2vw 3.5vw;
}

.card__btn:hover {
    font-size: 2.5vw;
}

.houses__bodyblock {
    display: block;
    width: 100%;
    height: 84vw;
    padding-left: 0.5vw;
}

.houses__navigation_body {
    display: none;
}

.houses__p_mobile_head {
    display: block;
    font-family: var(--Montserrat-regular);
    color: black;
    font-size: 3vw;
    line-height: 140%;
    margin-bottom: 3vw;
    padding-left: 7.5vw;
}

.attr__h2 {
    padding-left: 7.5vw;
    font-size: 3.5vw;
}

.swiper-wrapper {
    box-sizing: border-box;
    padding-left: 7.5vw;
}
}

/*Адаптивка 450px и меньше*/
@media screen and (max-width: 450px) {
.section__houses {
    margin-top: 15vw;
}

.houses__card {
    height: 125vw;
}

.houses__card_top {
    height: 60vw;
}

.houses__card_top img {
    height: 60vw;
}

.houses__card_badge {
    top: 8px;
    left: 8px;
    padding: 7px 14px;
    font-size: 12px;
}

.houses__card_bottom {
    height: 65vw;
    padding: 4vw 4vw 4vw 4vw;
}

.houses__card_icons {
    gap: 0vw;
    justify-content: space-between;
    margin-bottom: 5vw;
}

.card__icon_body {
    gap: 2vw;
}

.card__icon_body img {
    width: 4vw;
    height: 4vw;
}

.card__icon_p {
    font-size: 2.5vw;
}

.card__h3 {
    font-size: 4vw;
    margin-bottom: 2vw;
}

.card__p_blockbg {
    height: 12.5vw;
}

.card__p_black {
    font-size: 3vw;
}

.card__p_blockbg a {
    font-size: 3vw;
    right: 0.1vw;
    bottom: 0vw;
    padding-left: 1vw;
}

.card__price_and_btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    bottom: 4vw;
    left: 4vw;
    right: 4vw;
}

.card__p_price {
    font-size: 4vw;
}

.card__btn {
    width: 100%;
    font-size: 3vw;
    padding: 3vw 4.5vw 3vw 4.5vw;
}

.card__btn:hover {
    font-size: 3.5vw;
} 

.houses__bodyblock {
    display: block;
    width: 100%;
    height: 130vw;
    padding-left: 0.5vw;
}

.houses__navigation_body {
    display: none;
}

.houses__p_mobile_head {
    display: block;
    font-family: var(--Montserrat-regular);
    color: black;
    font-size: 4vw;
    line-height: 140%;
    margin-bottom: 4vw;
    padding-left: 9vw;
}

.attr__h2 {
    padding-left: 9vw;
    font-size: 5vw ;
}

.swiper-wrapper {
    box-sizing: border-box;
    padding-left: 9vw;
}
}

/* ── Footer styles from styles.css ─────────────────── */
.section__futter {
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container__futter {
    width: 100%;
    height: 100%;
    padding: 38px 76px 38px 76px;
}

.futter__textmain {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 52px;
}

.futter__leftblock {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 52px;
    justify-content: flex-start;
}

.futter__leftblock img {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: contain;
    background-repeat: no-repeat;
}

.futter__left_textblock {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.futter__left_textblock a {
    font-family: var(--Montserrat-regular);
    font-size: 18px;
    color: black;
    text-decoration: none;
    transition: all 0.3s;
}

.futter__left_textblock a:hover {
    font-size: 24px;
}

.futter__rightblock {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 52px;
}

.futter__right_numblock {
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 14px;
}

.futter__right_numblock a {
    font-family: var(--Montserrat-bold);
    font-weight: 700;
    font-size: 24px;
    color: black;
    text-decoration: none;
    transition: all 0.3s;    
}

.futter__right_numblock a:hover {
    font-size: 30px;
}

.futter__right_btnblock {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.futter__btn_link {
    width: 150px;
    height: 40px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-family: var(--Montserrat-regular);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.4s;    
}

.futter__btn_link:hover {
    width: 160px;
    height: 50px;
    font-size: 16px;
}

.futter__right_bntblock_socnet {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 18px;
}

.futter__max_link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid black;
    background-image: url("../images/max__logo.svg");
    background-size: 36px;
    background-repeat: no-repeat;
}

.futter__tg_link {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/telegram__logo.svg");
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 40%;
}

.futter__textmore {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.futter__textmore a {
    color: black;
    font-family: var(--Montserrat-light);
    font-size: 18px;
    line-height: 150%;
    opacity: 70%;
    text-decoration: none;   
    transition: all 0.4s;    
}

.futter__textmore a:hover {
    font-size: 20px;
}

.futter__textmore_link {
    padding-bottom: 18px;
    border-bottom: 1px solid black;
}

.futter__textmore_linkblocktext {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.section__futter_mobile {
    display: none;
}

@media screen and (min-width: 1600px) {
.container__futter {
    padding: 38px 9vw 38px 9vw;
}
}

/*Адаптивка 1280px - 960px*/
@media screen and (min-width: 960px) and (max-width: 1280px) {
    .section__futter {
    margin-top: 5vw;
}

.container__futter {
    padding: 3vw 6vw 3vw 6vw;
}

.futter__textmain {
    margin-bottom: 4vw;
}

.futter__leftblock {
    gap: 4vw;
}

.futter__leftblock img {
    width: 8vw;
    height: 8vw;
}

.futter__left_textblock {
    gap: 2vw;
}

.futter__left_textblock a {
    font-size: 1.5vw;
}

.futter__left_textblock a:hover {
    font-size: 2vw;
}

.futter__rightblock {
    gap: 4vw;
}

.futter__right_numblock {
    width: 30vw;
    gap: 1.5vw;
    padding-top: 1vw;
}

.futter__right_numblock a {
    font-size: 2vw; 
}

.futter__right_numblock a:hover {
    font-size: 2.5vw;
}

.futter__right_btnblock {
    gap: 2vw;
}

.futter__btn_link {
    width: 11vw;
    height: 3.2vw;
    font-size: 1vw;   
}

.futter__btn_link:hover {
    width: 12vw;
    height: 3.7vw;
    font-size: 1.1vw;
}

.futter__right_bntblock_socnet {
    gap: 1.5vw;
}

.futter__max_link {
    width: 3vw;
    height: 3vw;
    background-size: 2.8vw;
}

.futter__tg_link {
    width: 3vw;
    height: 3vw;
    background-size: 2vw;
    background-position: 40%;
}

.futter__textmore {
    gap: 2.5vw;
}

.futter__textmore a {
    font-size: 1.5vw;
}

.futter__textmore a:hover {
    font-size: 1.7vw;
}

.futter__textmore_link {
    padding-bottom: 1.5vw;
}

.section__futter_mobile {
    display: none;
}
}

/*Адаптивка 959px - 451px*/
@media screen and (min-width: 451px) and (max-width: 959px) {
.section__futter {
    display: none;
}

    .section__futter_mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5vw;
}

.container__futter_mobile {
    width: 100%;
    height: 100%;
    padding: 4vw 7vw 4vw 7vw;
}

.futter__textmain_mobile {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 4vw;
}

.futter__topblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3vw;
}

.futter__topblock_logoblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.futter__topblock_logoblock img {
    width: 10vw;
    height: 10vw;
    display: block;
    object-fit: contain;
    background-repeat: no-repeat;
}

.futter__logoblock_socnet {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 3vw;
}

.futter__max_link_mobile {
    width: 6vw;
    height: 6vw;
    border-radius: 10px;
    border: 1px solid black;
    background-image: url("../images/max__logo.svg");
    background-size: 5.5vw;
    background-repeat: no-repeat;
    background-color: black;
    background-position: 50% 10%;
}

.futter__tg_link_mobile {
    width: 6vw;
    height: 6vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/telegram__logo.svg");
    background-size: 4vw;
    background-repeat: no-repeat;
    background-position: 45%;
}

.futter__topblock_textblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vw;
}

.futter__topblock_textblock a {
    font-family: var(--Montserrat-regular);
    font-size: 2.8vw;
    color: black;
    text-decoration: none;
    transition: all 0.3s;    
}

.futter__topblock_textblock a:hover {
    font-size: 3.3vw;
}

.futter__bottomblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
}

.futter__bottomblock p {
    font-family: var(--Montserrat-regular);
    font-size: 4vw;
    line-height: 140%;
    color: black;
}

.futter__bottomblock_phone {
    font-family: var(--Montserrat-bold);
    font-weight: 700;
    font-size: 5vw;
    color: black;
    text-decoration: none;
}

.futter__bottomblock_btn {
    width: 100%;
    height: 8vw;
    background-color: black;
    color: white;
    text-decoration: none;
    font-family: var(--Montserrat-regular);
    font-size: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.4s; 
    margin-top: 2vw;   
}

.futter__bottomblock_btn:hover {
    height: 9vw;
    font-size: 3.5vw;
}

.futter__textmore_mobile {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5vw;
    margin-top: 8vw;
}

.futter__textmore_mobile a {
    font-family: var(--Montserrat-regular);
    font-size: 2.8vw;
    color: black;
    text-decoration: none;
    line-height: 140%;
    opacity: 70%;
}

.futter__textmore_mobileline {
    padding-bottom: 3vw;
    border-bottom: 1px solid black;
}

.futter__textmore_mobile_linkblocktext {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

    .prose img {
        height: 220px;
    }
}

/*Адаптивка 450px и меньше*/
@media screen and (max-width: 450px) {
.section__futter {
    display: none;
}

    .section__futter_mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 10vw;
}

.container__futter_mobile {
    width: 100%;
    height: 100%;
    padding: 5vw 8vw 5vw 8vw;
}

.futter__textmain_mobile {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 5vw;
}

.futter__topblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4vw;
}

.futter__topblock_logoblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.futter__topblock_logoblock img {
    width: 12vw;
    height: 12vw;
    display: block;
    object-fit: contain;
    background-repeat: no-repeat;
}

.futter__logoblock_socnet {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 3vw;
}

.futter__max_link_mobile {
    width: 7vw;
    height: 7vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/max__logo.svg");
    background-size: 90%;
    background-repeat: no-repeat;
    background-color: black;
    background-position: 50% 50%;
}

.futter__tg_link_mobile {
    width: 7vw;
    height: 7vw;
    border-radius: 50px;
    border: 1px solid black;
    background-image: url("../images/telegram__logo.svg");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 40%;
}

.futter__topblock_textblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
}

.futter__topblock_textblock a {
    font-family: var(--Montserrat-regular);
    font-size: 3.8vw;
    color: black;
    text-decoration: none;
    transition: all 0.3s;    
}

.futter__topblock_textblock a:hover {
    font-size: 4.3vw;
}

.futter__bottomblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vw;
}

.futter__bottomblock p {
    font-family: var(--Montserrat-regular);
    font-size: 5vw;
    line-height: 140%;
    color: black;
}

.futter__bottomblock_phone {
    font-family: var(--Montserrat-bold);
    font-weight: 700;
    font-size: 6vw;
    color: black;
    text-decoration: none;
}

.futter__bottomblock_btn {
    width: 100%;
    height: 11vw;
    background-color: black;
    color: white;
    text-decoration: none;
    font-family: var(--Montserrat-regular);
    font-size: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.4s; 
    margin-top: 3vw;   
}

.futter__bottomblock_btn:hover {
    height: 13vw;
    font-size: 4.5vw;
}

.futter__textmore_mobile {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6vw;
    margin-top: 9vw;
}

.futter__textmore_mobile a {
    font-family: var(--Montserrat-regular);
    font-size: 3.8vw;
    color: black;
    text-decoration: none;
    line-height: 140%;
    opacity: 70%;
}

.futter__textmore_mobileline {
    padding-bottom: 4vw;
    border-bottom: 1px solid black;
}

.futter__textmore_mobile_linkblocktext {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 4vw;
}    
}

/* ── attr__p_normal (from styles.css) ───────────────── */
.attr__p_normal {
    color: black;
    font-family: var(--Montserrat-mediun);
    font-size: 24px;
    margin-bottom: 38px;
    line-height: 140%;
}

@media screen and (min-width: 1600px) {
    .attr__p_normal {
        font-size: 24px;
        margin-bottom: 38px;
    }
}

@media screen and (min-width: 960px) and (max-width: 1280px) {
    .attr__p_normal {
        font-size: 2.5vw;
        margin-bottom: 3.5vw;
    }
}

@media screen and (min-width: 451px) and (max-width: 959px) {
    .attr__p_normal {
        font-size: 3.5vw;
        margin-bottom: 4.5vw;
    }
}

/* ── Gallery hidden items grid ──────────────────────── */
.gallery-hidden {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-hidden.is-visible {
    display: grid;
}

.gallery-hidden .gallery__item {
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f4eee8;
}

.gallery-hidden .gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 1600px) {
    .gallery-hidden {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1280px) {
    .gallery-hidden .gallery__item {
        height: 240px;
    }
}

@media screen and (min-width: 960px) and (max-width: 1280px) {
    .gallery-hidden {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 960px) {
    .gallery-hidden {
        grid-template-columns: 1fr;
    }
    .gallery-hidden .gallery__item {
        height: 200px;
    }
}

/* ── Plan image fill ────────────────────────────────── */
.plan {
    align-items: stretch;
}

.plan__image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: #f4eee8;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
}

.plan__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

@media screen and (max-width: 1280px) {
    .plan__image {
        min-height: 240px;
    }
}

@media screen and (max-width: 960px) {
    .plan__image {
        min-height: 200px;
    }
}

@media screen and (max-width: 450px) {
    .plan__image {
        min-height: 180px;
    }
}

.gallery-hidden__close {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 14px 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.gallery-hidden__close:hover {
    background: #1a1a1a;
}

@media screen and (max-width: 450px) {
    .gallery-hidden__close {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ── Horizontal booking on tablets ──────────────────── */
@media screen and (min-width: 451px) and (max-width: 1280px) {
    .booking {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        justify-content: flex-end;
        padding: 1.25rem;
        width: 100%;
        max-width: none;
    }

    .booking__title {
        font-size: 20px;
        margin: 0;
        margin-right: auto;
        flex: 0 0 auto;
    }

    .booking__house {
        font-size: 13px;
        margin: 0;
        flex: 0 0 auto;
    }

    .booking__price-row {
        margin: 0;
        flex: 0 0 auto;
    }

    .booking__price {
        font-size: 28px;
    }

    .booking__grid-2 {
        display: flex;
        gap: 0.75rem;
        flex: 1 1 200px;
        margin: 0;
    }

    .booking__grid-2 .field {
        margin-bottom: 0;
        min-width: 120px;
    }

    .booking > .field {
        margin: 0;
        flex: 1 1 140px;
        min-width: 140px;
    }

    .booking__cta {
        margin-top: 0;
        height: 50px;
        padding: 0 1.75rem;
        flex: 0 0 auto;
    }

    .booking__note {
        margin-top: 0.25rem;
        flex: 1 1 100%;
        text-align: left;
        font-size: 12px;
    }

    .booking__perks {
        margin-top: 0.25rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0,0,0,0.08);
        flex: 1 1 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        font-size: 13px;
    }

    .booking__children-ages {
        flex: 1 1 100%;
        margin: 0;
    }

    .booking__children-ages-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .booking__child-age {
        flex: 0 0 auto;
        min-width: 100px;
        margin-bottom: 0;
    }

    .booking__message {
        flex: 1 1 100%;
        margin: 0;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox__stage {
    position: relative;
    z-index: 2;
    width: 88vw;
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox__image {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.lightbox__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__arrow svg {
    width: 28px;
    height: 28px;
}

.lightbox__arrow--prev { left: 24px; }
.lightbox__arrow--next { right: 24px; }

.lightbox__arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__arrow:active {
    transform: translateY(-50%) scale(0.94);
}

.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-family: var(--Montserrat-regular);
    letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
    .lightbox__stage {
        width: 100vw;
        height: 100vh;
    }

    .lightbox__image {
        max-width: 92vw;
        max-height: 78vh;
        border-radius: 8px;
    }

    .lightbox__close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .lightbox__arrow {
        width: 44px;
        height: 44px;
    }

    .lightbox__arrow svg {
        width: 22px;
        height: 22px;
    }

    .lightbox__arrow--prev { left: 12px; }
    .lightbox__arrow--next { right: 12px; }

    .lightbox__counter {
        bottom: 16px;
        font-size: 13px;
    }
}

/* Gallery items are clickable (lightbox) */
.gallery__item,
.gallery__item--hidden {
    cursor: pointer;
}

.gallery__more {
    cursor: pointer;
}

/* ========================================
   ABOUT SLIDER (Swiper with thumbs)
   ======================================== */
.about-slider {
    width: 100%;
    margin: 24px 0;
}

.about-slider__main {
    width: 100%;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.about-slider__main.swiper {
    padding: 0;
}

.about-slider__main .swiper-wrapper,
#about-slider-main-wrapper {
    align-items: center;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.about-slider__thumbs .swiper-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.about-slider__main .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f4eee8;
}

.about-slider__main .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    cursor: pointer;
}

.about-slider__main.swiper-grabbing .swiper-slide img {
    cursor: grabbing;
}

.about-slider__thumbs {
    width: 100%;
    height: 88px;
    margin-top: 12px;
    box-sizing: border-box;
}

.about-slider__thumbs .swiper-slide {
    width: auto;
    height: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.55;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.about-slider__thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slider__thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.about-slider__prev,
.about-slider__next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    color: var(--black);
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slider__prev::after,
.about-slider__next::after {
    content: none;
}

.about-slider__prev svg,
.about-slider__next svg {
    width: 18px;
    height: 18px;
    display: block;
}

.about-slider__prev {
    left: 16px;
}

.about-slider__next {
    right: 16px;
}

.about-slider__prev:hover,
.about-slider__next:hover {
    background: var(--white);
}

.about-slider__prev:active,
.about-slider__next:active {
    transform: scale(0.94);
}

@media screen and (max-width: 1280px) {
    .about-slider__main {
        height: 480px;
    }

    .about-slider__thumbs {
        height: 76px;
    }
}

@media screen and (max-width: 768px) {
    .about-slider__main {
        height: 400px;
    }

    .about-slider__thumbs {
        height: 64px;
    }

    .about-slider__prev,
    .about-slider__next {
        width: 36px;
        height: 36px;
    }

    .about-slider__prev::after,
    .about-slider__next::after {
        font-size: 14px;
    }
}

/* Utility */
.is-hidden {
    display: none !important;
}
