/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.65;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== VARIABLES ===== */
:root {
    --primary:   #7A5C1E;
    --primary-d: #5e4616;
    --accent:    #C9A227;
    --accent-d:  #a8841e;
    --dark:      #1a1a1a;
    --dark2:     #242424;
    --light:     #f7f4ef;
    --muted:     #6b6b6b;
    --border:    #e2dbd0;
    --white:     #ffffff;
    --radius:    8px;
    --radius-lg: 14px;
    --shadow:    0 2px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 6px 32px rgba(0,0,0,0.13);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.section-label--light { color: rgba(255,255,255,0.6); }
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 14px;
}
.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 52px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.22s ease;
    white-space: nowrap;
    padding: 12px 28px;
}
.btn-lg { padding: 15px 40px; font-size: 0.9rem; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-d); border-color: var(--primary-d); }
.btn-accent { background: var(--accent); color: #1a1a1a; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.main-nav a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:not(.btn):hover { color: var(--primary); border-bottom-color: var(--primary); }
.main-nav a.active:not(.btn) { color: var(--primary); border-bottom-color: var(--primary); }
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.btn-lk {
    white-space: nowrap;
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
}
.header-phone a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    white-space: nowrap;
    transition: color 0.2s;
}
.header-phone a:hover { color: var(--accent); }
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.62) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center; color: #fff;
    padding: 80px 20px 0;
}
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
    margin-bottom: 18px;
    line-height: 1.05;
}
.hero-accent { color: var(--accent); }
.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin-bottom: 44px;
    opacity: 0.9;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2.2s ease-in-out infinite;
    opacity: 0.8;
}
.hero-scroll-icon { width: 24px; height: 24px; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===== BENEFITS ===== */
.benefits { padding: 88px 0; background: var(--light); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.22s, box-shadow 0.22s;
    border: 1px solid var(--border);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.benefit-icon {
    width: 52px; height: 52px;
    margin: 0 auto 20px;
    color: var(--primary);
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h3 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.benefit-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== ABOUT ===== */
.about-section { padding: 88px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-text .section-title { text-align: left; }
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* ===== BOOKING ===== */
.booking-section { padding: 88px 0; background: var(--dark2); }
.booking-section .section-title { color: #fff; }
.booking-section .section-sub { color: rgba(255,255,255,0.6); }
.travelline-widget-placeholder {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
}
.widget-placeholder-inner { text-align: center; color: #fff; }
.widget-placeholder-line {
    width: 48px; height: 3px;
    background: var(--accent);
    margin: 0 auto 28px;
    border-radius: 2px;
}
.widget-placeholder-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--accent);
}
.widget-placeholder-inner p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.75;
}

/* ===== HOUSES ===== */
.houses-section { padding: 88px 0; background: var(--light); }
.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.house-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.22s, box-shadow 0.22s;
}
.house-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.house-img-wrap { position: relative; height: 200px; overflow: hidden; }
.house-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.house-card:hover .house-img-wrap img { transform: scale(1.05); }
.house-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.house-info { padding: 20px 22px; }
.house-info h3 { font-size: 1rem; margin-bottom: 12px; color: var(--dark); }
.house-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
}
.house-guests {
    font-size: 0.82rem;
    color: var(--muted);
    background: var(--light);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.house-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ===== AMENITIES ===== */
.amenities-section { padding: 88px 0; }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
}
.amenity-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.amenity-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    color: var(--primary);
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-text { display: flex; flex-direction: column; gap: 2px; }
.amenity-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
}
.amenity-text span { font-size: 0.82rem; color: var(--muted); }

/* ===== GALLERY ===== */
.gallery-section { padding: 88px 0; background: var(--dark); }
.gallery-section .section-title { color: #fff; }
.gallery-section .section-sub { color: rgba(255,255,255,0.5); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 6px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.38); }
.gallery-zoom-icon { opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.93);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
}
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== LOCATION ===== */
.location-section { padding: 88px 0; background: var(--light); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 14px; }
.location-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.location-card-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}
.location-card-icon svg { width: 100%; height: 100%; }
.location-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
}
.location-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 4px; }

/* ===== LK SECTION (old - overridden below) ===== */
.lk-section { padding: 72px 0; background: #1e1e1e; }
.lk-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.lk-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 14px;
}
.lk-text p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}
.lk-decor { flex-shrink: 0; }
.lk-decor-circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    position: relative;
}
.lk-decor-circle::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
}

/* ===== CONTACTS ===== */
.contacts-section { padding: 88px 0; }
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 36px 24px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-icon {
    width: 40px; height: 40px;
    color: var(--primary);
    margin-bottom: 4px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-card strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
}
.contact-card a, .contact-card span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.contact-card a:hover { color: var(--primary); }

/* ===== CTA ===== */
.cta-section { padding: 88px 0; background: var(--dark2); color: #fff; }
.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin-bottom: 16px;
    color: #fff;
}
.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 36px;
    opacity: 0.75;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer { background: #111; color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--accent); font-size: 1.3rem; }
.footer-col p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); }
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a, .footer-contacts span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
    line-height: 1.5;
}
.footer-contacts a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 22px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: span 2; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed; top: 70px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px 20px;
        border-bottom: 1px solid var(--border);
        gap: 14px;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    .main-nav.open { display: flex; }
    .main-nav a:not(.btn) { border-bottom: none; padding: 6px 0; }
    .main-nav .btn { width: 100%; }
    .burger { display: flex; }
    .header-phone { display: none; }
    .contacts-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item--wide { grid-column: span 2; }
    .lk-inner { flex-direction: column; text-align: center; }
    .lk-decor { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-col:first-child { grid-column: span 1; }
    .hero-actions { flex-direction: column; align-items: center; }
    .benefits-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
    .houses-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
}

/* ===== HOUSES: SHOW MORE ===== */
.house-card--hidden {
    display: none;
}
.house-card--hidden.visible {
    display: block;
    animation: fadeInUp 0.35s ease forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
#houses-toggle-btn {
    min-width: 240px;
    transition: all 0.22s ease;
}

/* ===== MAP PLAN ===== */
.map-plan-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--shadow-lg);
}
.map-plan-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.map-plan-wrap:hover img { transform: scale(1.03); }
.map-plan-hint {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    pointer-events: none;
    transition: opacity 0.3s;
}
.map-plan-wrap:hover .map-plan-hint { opacity: 0; }
.map-lightbox-img-wrap img {
    max-width: 94vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== LK SECTION (redesigned) ===== */
.lk-section {
    padding: 88px 0;
    background: var(--dark2);
}
.lk-title { color: #fff !important; }
.lk-sub   { color: rgba(255,255,255,0.55) !important; }
.lk-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.lk-feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}
.lk-feature-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(201,162,39,0.4);
}
.lk-feature-icon {
    width: 44px; height: 44px;
    margin: 0 auto 16px;
    color: var(--accent);
}
.lk-feature-icon svg { width: 100%; height: 100%; }
.lk-feature-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 8px;
}
.lk-feature-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.lk-widget-area {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 52px 40px;
}
.lk-widget-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.7);
}
.lk-widget-placeholder-line {
    width: 80px; height: 4px;
    background: #C9A227;
    margin: 0 auto 28px;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(201,162,39,0.6);
}
.lk-widget-placeholder p {
    margin-bottom: 28px;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
    .lk-features { grid-template-columns: 1fr; }
    .lk-widget-area { padding: 32px 20px; }
}

/* ===== HOUSES NEW CARDS ===== */
.houses-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}
.house-card-new {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}
.house-card-new:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.house-card-new .house-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.house-card-new .house-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.house-card-new:hover .house-img-wrap img {
    transform: scale(1.04);
}
.house-info-new {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.house-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.house-info-top h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.house-guests-badge {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(122,92,30,0.08);
    border: 1px solid rgba(122,92,30,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.house-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.house-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.house-features li {
    font-size: 0.78rem;
    color: var(--dark);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 10px;
}
.houses-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .houses-grid-new { grid-template-columns: 1fr; gap: 20px; }
    .house-info-new { padding: 18px 20px; }
}

/* ===== HOUSES DESCRIPTION BLOCK ===== */
.houses-desc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.houses-desc-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.houses-desc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.houses-desc-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.houses-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 16px;
}
.houses-desc-text p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 14px;
}
.houses-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0 32px;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.houses-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.houses-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.houses-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
@media (max-width: 900px) {
    .houses-desc-block { grid-template-columns: 1fr; gap: 32px; }
    .houses-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .houses-lead { font-size: 1rem; }
    .houses-stat-num { font-size: 1.3rem; }
}

/* ===== MOBILE FIX: кнопка бронирования ===== */
@media (max-width: 600px) {
    .travelline-widget-placeholder {
        padding: 40px 20px;
        overflow: hidden;
    }
    .widget-placeholder-inner .btn,
    .widget-placeholder-inner a.btn,
    .booking-section .btn {
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-break: break-word;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        padding: 14px 16px;
        display: block;
    }
}
