﻿/* ========== DESKTOP STYLES ========== */

/* === Дизайн-токены типографики (см. 8. Типографика/) === */
:root {
    --t-hero:     clamp(40px, 4vw, 64px);
    --t-display:  clamp(28px, 2.5vw, 44px);
    --t-h2:       clamp(22px, 1.9vw, 30px);
    --t-h3:       clamp(16px, 1.2vw, 20px);
    --t-lead:     clamp(15px, 1.2vw, 18px);
    --t-body:     clamp(13px, 0.95vw, 15px);
    --t-caption:  clamp(11px, 0.85vw, 13px);
    --t-overline: clamp(14px, 1.1vw, 17px);
}

@media (min-width: 1025px) {
    html { scroll-padding-top: 80px; }
}

/* Скрываем десктопный блок на планшете — mobile-layout показывается вместо него */
@media (max-width: 1024px) {
    .desktop-page { display: none !important; }
    .d-header { display: none !important; }
}

.desktop-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    overflow-x: hidden;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Background images */
.desktop-bg-1 {
    display: none;
}

.desktop-bg-2 {
    display: none;
}

/* ========== HERO ========== */
.d-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 560px;
    background: #fff;
    overflow: hidden;
}

.d-hero-fon {
    position: absolute;
    top: 0;
    left: clamp(58px, 6vw, 120px);
    right: 0;
    bottom: 18px;
    width: calc(100% - clamp(58px, 6vw, 120px));
    height: calc(100% - 18px);
    object-fit: cover;
    object-position: center 70%;
    border-top-left-radius: clamp(130px, 14vw, 270px);
    border-bottom-left-radius: clamp(16px, 1.5vw, 26px);
}

.d-hero-overlay {
    position: absolute;
    top: 0;
    left: clamp(58px, 6vw, 120px);
    right: 0;
    bottom: 18px;
    width: calc(100% - clamp(58px, 6vw, 120px));
    height: calc(100% - 18px);
    border-top-left-radius: clamp(130px, 14vw, 270px);
    border-bottom-left-radius: clamp(16px, 1.5vw, 26px);
    background:
        linear-gradient(180deg, rgba(5, 10, 15, 0.58) 0%, rgba(5, 10, 15, 0.44) 45%, rgba(5, 10, 15, 0.68) 100%);
}

/* Management badge */
.d-hero-badge {
    position: absolute;
    top: 50%;
    left: clamp(16px, 1.5vw, 28px);
    width: clamp(200px, 16vw, 260px);
    height: clamp(200px, 16vw, 260px);
    z-index: 3;
    transform: translateY(5%);
}

.d-hero-badge-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 228, 210, 0.22);
    border-radius: 50%;
}

.d-hero-badge-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(168px, 13.5vw, 218px);
    height: clamp(168px, 13.5vw, 218px);
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.d-hero-badge-inner img {
    display: block;
    width: 100%;
    height: 100%;
}

.d-hero-badge-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(168px, 13.5vw, 218px);
    height: clamp(168px, 13.5vw, 218px);
    border: 1px solid rgba(216, 175, 122, 1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.d-hero-badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68%;
    min-height: 0;
    display: block;
    transform: translate(-50%, -50%);
    font-size: var(--t-body);
    font-weight: 400;
    color: #3a2820;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0;
    z-index: 2;
}

.d-hero-badge-text strong {
    font-weight: 700;
}

/* Hero content */
.d-hero-content {
    position: absolute;
    left: calc(clamp(58px, 6vw, 120px) + ((100% - clamp(58px, 6vw, 120px)) / 2));
    transform: translateX(-50%);
    top: clamp(80px, 14vw, 200px);
    width: min(860px, calc(100% - 220px));
    z-index: 3;
    color: #fff;
    text-align: center;
}

.d-hero-title {
    position: static;
    font-size: var(--t-hero);
    font-weight: 600;
    letter-spacing: 0.09em;
    color: white;
    text-align: center;
    line-height: 1;
    white-space: normal;
    margin-bottom: clamp(10px, 0.9vw, 18px);
}

.d-hero-subtitle {
    position: static;
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: white;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    margin-bottom: clamp(18px, 2vw, 38px);
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.90);
}

.d-hero-text {
    position: static;
    width: 100%;
    font-size: clamp(18px, 1.5vw, 28px);
    font-weight: 300;
    color: white;
    text-align: center;
    line-height: 1.24;
    margin-bottom: clamp(20px, 2.5vw, 44px);
}

.d-hero-text em {
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 300;
}

.d-hero-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 1.2vw, 22px);
}

.d-btn-primary {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: clamp(160px, 11vw, 210px);
    height: clamp(42px, 2.6vw, 48px);
    background: white;
    border-radius: 37px;
    border: none;
    color: #1f1a1a;
    font-size: clamp(13px, 0.9vw, 16px);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,0.68);
}

.d-btn-outline {
    position: static;
    width: clamp(160px, 11vw, 210px);
    height: clamp(42px, 2.6vw, 48px);
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.88);
    border-radius: 37px;
    color: white;
    font-size: clamp(13px, 0.9vw, 16px);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

/* Header */
.d-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 20;
    padding: 0 clamp(20px, 3vw, 56px);
    background: #fff;
    border-bottom: none;
    transition: height 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.d-header.is-scrolled {
    height: 64px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom-color: rgba(0,0,0,0.05);
    box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}

.d-header-logo-link {
    flex-shrink: 0;
    min-width: 60px;
    overflow: hidden;
    line-height: 0;
    display: inline-flex;
}

.d-header-logo {
    width: auto;
    height: clamp(40px, 3.2vw, 54px);
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
}

.d-header-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1vw, 18px);
    margin: 0 auto;
    padding: 0 clamp(12px, 2vw, 32px);
}

.d-header-nav a {
    text-decoration: none;
    font-size: var(--t-body);
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s ease;
}

.d-header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #2f563f;
    transition: width 0.28s ease;
}

.d-header-nav a:hover { color: #1e3d2b; }
.d-header-nav a:hover::after { width: 100%; }

.d-header-nav a.active { font-weight: 500; color: #304539; }
.d-header-nav a.active::after { width: 100%; }
.d-header-nav a:not(.active) { font-weight: 400; color: #688863; }
.d-header-nav a + a { margin-left: 0; }

.d-header-right {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.2vw, 20px);
    flex-shrink: 0;
}

.d-header-phone {
    font-size: clamp(12px, 0.82vw, 14px);
    color: #003724;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.d-btn-calc {
    flex-shrink: 0;
    width: clamp(130px, 8vw, 150px);
    height: 36px;
    border: 1px solid #2f563f;
    border-radius: 37px;
    background: transparent;
    color: #2f563f;
    font-family: inherit;
    font-size: clamp(12px, 0.82vw, 14px);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.d-btn-calc:hover {
    background: #2f563f;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(47,86,63,0.12);
}

.d-header-msgs {
    display: flex;
    gap: 6px;
    align-items: center;
}

.d-header-msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(47,86,63,0.25);
    text-decoration: none;
    line-height: 0;
    overflow: hidden;
    transition: border-color 180ms ease, background 180ms ease;
}

.d-header-msg-btn:hover {
    border-color: rgba(47,86,63,0.5);
    background: rgba(47,86,63,0.06);
}

.d-header-msg-btn img {
    display: block;
    flex-shrink: 0;
}

/* Компенсация: убран zoom:0.8, при 1440px нужно компактнее */
@media (max-width: 1600px) {
    .d-header-phone {
        display: none;
    }

    .d-header-logo {
        height: 52px;
    }

    .d-hero-content {
        width: min(700px, calc(100% - 220px));
    }
}

@media (max-width: 1400px) {
    .d-header-logo {
        height: 52px;
    }

    .d-header-right {
        gap: 18px;
    }
}


@media (max-width: 1280px) {
    .d-header {
        padding: 0 24px;
    }

    .d-header-logo {
        height: 48px;
    }

    .d-header-nav {
        gap: 16px;
    }

    .d-header-nav a,
    .d-header-phone {
        font-size: 14px;
        line-height: 1.35;
    }

    .d-btn-calc {
        width: 155px;
        font-size: 13px;
    }

    .d-header-phone {
        display: none;
    }

    .d-header-msg-btn {
        width: 36px;
        height: 36px;
    }

    .d-hero-badge {
        width: 280px;
        height: 280px;
    }

    .d-hero-badge-inner,
    .d-hero-badge-border {
        width: 236px;
        height: 236px;
    }

    .d-hero-badge-text {
        font-size: 17px;
        line-height: 1.4;
    }

    .d-hero-subtitle {
        font-size: 20px;
    }

    .d-hero-text {
        font-size: 30px;
    }
}

@media (max-width: 1120px) {
    .d-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: start;
        gap: 12px 18px;
        padding: 16px 18px 0;
    }

    .d-header-logo {
        width: 150px;
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .d-header-nav {
        grid-column: 2 / 4;
        grid-row: 1;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .d-header-nav a {
        font-size: 13px;
    }

    .d-header-right {
        grid-column: 2 / 4;
        grid-row: 2;
        justify-content: flex-end;
        gap: 14px;
    }

    .d-header-phone {
        font-size: 13px;
    }

    .d-btn-calc {
        width: 152px;
        height: 38px;
        font-size: 13px;
    }

    .d-hero {
        height: 780px;
        min-height: 780px;
    }

    .d-hero-fon,
    .d-hero-overlay {
        left: 24px;
        width: calc(100% - 24px);
        height: 662px;
        min-height: 662px;
        border-top-left-radius: 128px;
        border-bottom-left-radius: 24px;
    }

    .d-hero-content {
        top: 246px;
        width: min(520px, calc(100% - 120px));
    }

    .d-hero-title {
        font-size: 50px;
    }

    .d-hero-subtitle {
        top: 66px;
        font-size: 16px;
    }

    .d-hero-text {
        top: 126px;
        width: min(560px, calc(100vw - 150px));
        font-size: 23px;
    }

    .d-btn-primary,
    .d-btn-outline {
        width: 188px;
        height: 46px;
        font-size: 15px;
    }

    .d-hero-badge {
        top: 470px;
        left: -18px;
        transform: translateY(5%) scale(0.74);
    }
}

/* ========== УЗКИЙ ДЕСКТОП 1025–1120px: override мобильных правил ========== */
@media (min-width: 1025px) and (max-width: 1120px) {

    /* Шапка — возврат к flex-строке */
    .d-header {
        display: flex;
        align-items: center;
        padding: 0 20px;
        height: 104px;
    }

    .d-header-logo {
        width: auto;
        height: 60px;
        grid-column: auto;
        grid-row: auto;
    }

    .d-header-nav {
        flex-wrap: nowrap;
        justify-content: center;
        margin: 0 auto;
        gap: 14px;
        grid-column: auto;
        grid-row: auto;
    }

    .d-header-nav a {
        font-size: 12px;
    }

    .d-header-right {
        flex-shrink: 0;
        gap: 12px;
        grid-column: auto;
        grid-row: auto;
    }

    .d-btn-calc {
        width: 140px;
        font-size: 12px;
        height: 38px;
    }

    /* Медальон — возврат на 50% по вертикали */
    .d-hero-badge {
        top: 50%;
        left: clamp(16px, 1.5vw, 28px);
        transform: translateY(5%);
    }

    /* Hero — убираем фиксированную высоту */
    .d-hero {
        height: auto;
        min-height: 640px;
    }

    /* Перезапуск: тексты в ряд */
    .d-ops-subtitle {
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }

    .d-ops-subtitle-left,
    .d-ops-subtitle-right {
        flex: 1 1 0;
        width: auto;
        max-width: 340px;
        font-size: 19px;
    }

    .d-ops-line {
        display: block;
    }

    .d-ops-arrow {
        display: none;
    }

    /* Перезапуск: фото 2×2 */
    .d-ops-photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, minmax(160px, 210px));
        aspect-ratio: auto;
        max-width: none;
    }

    .d-ops-photo-1 { grid-column: 1; grid-row: 1; }
    .d-ops-photo-2 { grid-column: 2; grid-row: 1; }
    .d-ops-photo-3 { grid-column: 1; grid-row: 2; }
    .d-ops-photo-4 { grid-column: 2; grid-row: 2; }

    /* Отели — 2 колонки */
    .d-hotel-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .d-hotel-card {
        min-height: 300px;
    }

    /* Преимущества — 2 колонки */
    .d-benefit-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .d-benefit-card:last-child {
        grid-column: 1 / -1;
    }
}

/* ========== OPERATIONS SECTION ========== */
/* Секция на всю ширину; контент — в .d-ops-container. Бежевый фон только у .d-ops-body — на всю ширину экрана */
.d-operations {
    position: relative;
    width: 100%;
    max-width: none;
    left: auto;
    transform: none;
    padding-top: clamp(28px, 2.5vw, 44px);
}

.d-ops-container {
    width: min(1562px, calc(100% - 64px));
    margin-left: auto;
    margin-right: auto;
}

.d-section-label {
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #2f563f;
    line-height: 1.4;
    margin-bottom: 6px;
}

.d-section-title {
    font-size: var(--t-h2);
    font-weight: 500;
    color: #2f563f;
    line-height: 1.15;
    white-space: normal;
}

.d-ops-header {
    width: 100%;
    max-width: 892px;
    display: flex;
    flex-direction: column;
}

.d-ops-subtitle {
    position: relative;
    width: 100%;
    margin-top: clamp(18px, 1.8vw, 28px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 36px);
}

.d-ops-subtitle-left {
    flex: 0 0 auto;
    width: max-content;
    max-width: 644px;
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.4;
}

.d-ops-subtitle-left em { font-style: italic; color: #2f563f; font-weight: 400; }

.d-ops-subtitle-right {
    flex: 0 0 auto;
    width: max-content;
    max-width: 609px;
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.4;
}

.d-ops-subtitle-right em { font-style: italic; color: #2f563f; font-weight: 400; }

.d-ops-line {
    display: block;
    flex: 0 0 auto;
    width: clamp(120px, 12vw, 170px);
    align-self: center;
    height: 16px;
    object-fit: contain;
}

.d-ops-arrow {
    display: none;
}

/* Верх секции — белый фон (как в макете); от галереи вниз — тёплый беж #faf9f5 */
.d-ops-intro {
    width: 100%;
    background: #ffffff;
}

.d-ops-body {
    width: 100%;
    background: #faf9f5;
    padding-top: 8px;
    padding-bottom: 32px;
}

/* Галерея: белый сверху → бежевый от середины 2-го ряда (684/904=75.66% от фото, ~77% от wrap с учётом padding-top:60px) */
.d-ops-gallery-wrap {
    width: 100%;
    padding-top: 36px;
    background: linear-gradient(to bottom, #ffffff 77%, #faf9f5 77%);
}

.d-ops-gallery-shell {
    width: 100%;
    padding-bottom: 8px;
    background: transparent;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.d-ops-gallery-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 18px;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto 20px;
    padding: 0 2px;
}

.d-ops-gallery-cta-text {
    flex: 0 1 auto;
    margin: 0;
    font-size: clamp(17px, 1.35vw, 22px);
    font-weight: 300;
    line-height: 1.35;
    color: #464646;
}

.d-ops-gallery-cta-btn {
    flex-shrink: 0;
    padding: 7px 18px;
    font-family: inherit;
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 500;
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: #2f563f;
    background: rgba(47, 86, 63, 0.07);
    border: 1px solid rgba(47, 86, 63, 0.45);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: none;
}

.d-ops-gallery-cta-btn:hover {
    background: rgba(47, 86, 63, 0.12);
    border-color: rgba(47, 86, 63, 0.6);
}

/* Высота уменьшена ~15% для пропорциональности на десктопе */
.d-ops-photos {
    --ops-photo-gap: clamp(14px, 1.4%, 20px);
    display: grid;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    aspect-ratio: 1560 / 600;
    max-height: 560px;
    grid-template-columns: repeat(20, minmax(0, 1fr));
    grid-template-rows: 1fr 1fr;
    gap: var(--ops-photo-gap);
    min-height: 0;
    position: relative;
    isolation: isolate;
    /* Вертикаль: белый → беж от середины 2-го ряда.
       Геометрия: высота 904px, зазор 24px, ряд 440px; 2й ряд начинается с 464px, середина на 684px.
       684 / 904 = 75.66% */
    --ops-row2-mid: 75.66%;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ffffff var(--ops-row2-mid),
        #faf9f5 var(--ops-row2-mid),
        #faf9f5 100%
    );
}

.d-operations .d-ops-photos .ops-gallery-tile {
    position: relative;
    z-index: 1;
    min-height: 0;
    overflow: hidden;
}

.d-operations .d-ops-photos .ops-gallery-tile img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

/* Верхняя правая плитка (image-9, широкая панорама): кровать + зеркала чуть левее центра */
.d-ops-photo-4.ops-gallery-tile img {
    object-position: 25% center;
}

/* Нижняя левая плитка (gallery-full-10, сквер): верхняя часть — деревья + здание */
.d-ops-photo-2.ops-gallery-tile img {
    object-position: center 30%;
}

/* Нижняя правая плитка (image-7, студия): центр комнаты */
.d-ops-photo-3.ops-gallery-tile img {
    object-position: center center;
}

/* Асимметричные скругления (акцентные углы чуть крупнее) */
.d-ops-photo-1.ops-gallery-tile {
    border-radius: clamp(52px, 5.4vw, 108px) clamp(14px, 1.2vw, 24px) clamp(14px, 1.2vw, 24px) clamp(14px, 1.2vw, 24px);
}

.d-ops-photo-4.ops-gallery-tile {
    border-radius: clamp(14px, 1.2vw, 24px) clamp(14px, 1.2vw, 24px) clamp(52px, 5.4vw, 108px) clamp(14px, 1.2vw, 24px);
}

.d-ops-photo-2.ops-gallery-tile {
    border-radius: clamp(14px, 1.2vw, 24px) clamp(14px, 1.2vw, 24px) clamp(14px, 1.2vw, 24px) clamp(52px, 5.4vw, 108px);
}

.d-ops-photo-3.ops-gallery-tile {
    border-radius: clamp(14px, 1.2vw, 24px) clamp(14px, 1.2vw, 24px) clamp(52px, 5.4vw, 108px) clamp(14px, 1.2vw, 24px);
}


.d-operations .d-ops-photos .ops-gallery-zoom-ico {
    width: clamp(36px, 3.2vw, 48px);
    height: clamp(36px, 3.2vw, 48px);
}

.d-ops-photo-1 {
    grid-column: 1 / 14;
    grid-row: 1;
}

.d-ops-photo-4 {
    grid-column: 14 / 21;
    grid-row: 1;
}

.d-ops-photo-2 {
    grid-column: 1 / 8;
    grid-row: 2;
}

.d-ops-photo-3 {
    grid-column: 8 / 21;
    grid-row: 2;
}


.d-ops-gallery-hint {
    margin-top: 14px;
    margin-bottom: 0;
    text-align: center;
    font-size: 15px;
    color: #2f563f;
    opacity: 0.88;
}

/* Features card (на бежевом фоне d-ops-body) */
.d-features-wrap {
    position: relative;
    width: 100%;
    margin-top: clamp(32px, 3.5vw, 56px);
}

.d-features-card {
    width: 100%;
    margin-top: clamp(16px, 1.6vw, 24px);
    padding: clamp(28px, 3vw, 48px) clamp(32px, 3.6vw, 64px) clamp(32px, 3.2vw, 52px);
    border-radius: 15px 120px 15px 15px;
    border: 1px solid rgba(207,182,152,0.45);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 100%),
        url("../assets/fon.png") center / cover no-repeat;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.2vw, 36px) clamp(32px, 4vw, 72px);
}

.d-features-title {
    font-size: var(--t-h3);
    font-weight: 600;
    color: #2f563f;
    line-height: 1.2;
    white-space: normal;
}

.d-feature-item {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.4vw, 22px);
    width: 100%;
    max-width: 100%;
}

.d-feature-icon-img {
    width: clamp(28px, 2.2vw, 36px);
    height: clamp(28px, 2.2vw, 36px);
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.d-feature-text {
    font-size: var(--t-body);
    color: #464646;
    line-height: 1.4;
    width: 100%;
    max-width: 460px;
}

/* Quote + Наталья: как в макете — цитата и подпись в одной колонке, фото отдельно справа */
.d-quote-wrap {
    margin-top: clamp(28px, 3vw, 44px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(180px, 16vw, 240px);
    align-items: start;
    gap: clamp(20px, 2vw, 32px) clamp(28px, 2.6vw, 44px);
}

.d-quote-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(18px, 1.8vw, 26px);
    min-width: 0;
}

.d-quote {
    margin: 0;
    width: 100%;
    max-width: 720px;
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: var(--t-overline);
    color: #464646;
    line-height: 1.4;
    padding-top: 4px;
}

.d-quote-author {
    margin: 0;
    align-self: flex-end;
    text-align: right;
    max-width: min(100%, 520px);
    font-family: "Urbanist", system-ui, -apple-system, sans-serif;
    font-size: clamp(13px, 1.05vw, 17px);
    font-weight: 400;
    font-style: normal;
    color: #464646;
    line-height: 1.45;
}

.d-quote-author strong {
    font-weight: 600;
    font-style: normal;
}

.d-quote-role {
    display: inline-block;
    margin-top: 4px;
    font-size: var(--t-caption);
    font-weight: 400;
    font-style: normal;
    color: #6b6256;
}

.d-quote-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.d-quote-ellipse {
    width: clamp(180px, 16vw, 240px);
    height: clamp(180px, 16vw, 240px);
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

@media (max-width: 1400px) {
    .d-ops-container {
        width: min(1562px, calc(100% - 48px));
    }

    .d-ops-gallery-cta {
        display: none;
    }

    .d-features-card {
        padding: 42px 28px 36px;
        gap: 28px 34px;
    }

    .d-feature-item {
        gap: 18px;
    }

    .d-feature-text {
        font-size: 18px;
        line-height: 1.22;
    }

    .d-quote-wrap {
        grid-template-columns: 1fr minmax(220px, 300px);
        gap: 28px;
    }

    .d-quote {
        font-size: 22px;
        line-height: 1.35;
    }

    .d-quote-ellipse {
        max-width: 220px;
    }

    .d-quote-author {
        font-size: 19px;
    }

    .d-quote-role {
        font-size: 18px;
    }
}


/* ========== EXPERTISE SECTION ========== */
.d-expertise {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1562px, calc(100% - 64px));
    padding-top: clamp(40px, 3.5vw, 60px);
    padding-bottom: clamp(20px, 1.6vw, 28px);
    display: grid;
    grid-template-columns: clamp(360px, 30vw, 500px) minmax(0, 1fr);
    grid-template-areas:
        "header stats"
        "desc stats"
        "divider divider"
        "cards cards";
    align-items: start;
    column-gap: clamp(32px, 3vw, 56px);
    row-gap: 28px;
}

.d-expertise-header {
    grid-area: header;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.d-expertise-desc {
    grid-area: desc;
    width: 100%;
    margin-top: 0;
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.6;
}

.d-expertise-divider {
    grid-area: divider;
    width: 100%;
    height: 1px;
    min-width: 0;
    margin-top: 0;
    background: linear-gradient(90deg, rgba(207,182,152,0) 0%, rgba(207,182,152,0.95) 18%, rgba(207,182,152,0.95) 82%, rgba(207,182,152,0) 100%);
}

/* Stats */
.d-stats {
    grid-area: stats;
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 2.6vw, 44px) clamp(28px, 3vw, 56px);
    align-self: start;
}

.d-stat { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.d-stat-1, .d-stat-2, .d-stat-3, .d-stat-4 { width: 100%; }

.d-stat-value {
    font-size: var(--t-display);
    font-weight: 500;
    color: #2f563f;
    line-height: 1;
    white-space: nowrap;
}

.d-stat-value span { font-size: clamp(15px, 1.4vw, 24px); }

.d-stat-desc {
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #2f563f;
    line-height: 1.45;
}

/* Hotel cards */
.d-hotel-cards {
    grid-area: cards;
    width: 100%;
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 21px;
}

.d-hotel-card {
    position: relative;
    width: 100%;
    min-height: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,241,233,0.92) 100%);
    border: 1px solid rgba(207,182,152,0.7);
    overflow: hidden;
    padding: clamp(14px, 1.4vw, 22px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.d-hotel-card + .d-hotel-card { margin-left: 0; }

.d-hotel-card-name {
    font-size: var(--t-h3);
    font-weight: 600;
    color: #1f1a1a;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    min-height: 0;
}

.d-hotel-card-address {
    font-size: var(--t-caption);
    font-weight: 500;
    color: #6b6256;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    margin-top: 8px;
}

.d-hotel-card-desc {
    width: 100%;
    font-size: var(--t-body);
    color: #464646;
    text-align: center;
    line-height: 1.45;
    margin-top: 6px;
    max-width: 100%;
}

.d-hotel-card-photo {
    width: 100%;
    height: clamp(140px, 11vw, 180px);
    object-fit: cover;
    border-radius: 12px;
    margin-top: 12px;
}

/* Palace Bridge */
.d-hotel-1 .d-hotel-card-name   { width: 100%; }

/* Vasilievsky */
.d-hotel-2 .d-hotel-card-name   { width: 100%; }

/* Cosmos Olympia */
.d-hotel-3 .d-hotel-card-name   { width: 100%; }

/* Cosmos Rozenshteyn */
.d-hotel-4 .d-hotel-card-name   { width: 100%; }

@media (max-width: 1400px) {
    .d-expertise {
        width: calc(100% - 48px);
        overflow: hidden;
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "desc"
            "stats"
            "divider"
            "cards";
        row-gap: 28px;
    }

    .d-expertise-divider {
        width: 100%;
    }

    .d-expertise-desc {
        max-width: 720px;
        margin-top: 0;
        font-size: 20px;
        line-height: 1.65;
    }

    .d-stats {
        width: min(760px, 100%);
        margin-left: 0;
        margin-top: 0;
        gap: 36px 48px;
        align-self: start;
    }

    .d-stat,
    .d-stat-1,
    .d-stat-2,
    .d-stat-3,
    .d-stat-4 {
        width: 100%;
    }

    .d-stat-desc {
        font-size: 18px;
        line-height: 1.35;
    }

    .d-hotel-cards {
        margin-top: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .d-hotel-card {
        min-width: 0;
    }

    .d-hotel-card + .d-hotel-card {
        margin-left: 0;
    }

    .d-hotel-card-photo {
        width: calc(100% - 40px);
        left: 20px !important;
    }

    .d-hotel-card-name,
    .d-hotel-card-address,
    .d-hotel-card-desc {
        left: 20px !important;
        width: calc(100% - 40px);
        text-align: center;
        white-space: normal;
    }
}


/* ========== AMENITIES SECTION ========== */
.d-amenities {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1562px, calc(100% - 64px));
    padding-top: clamp(20px, 1.6vw, 28px);
    padding-bottom: clamp(40px, 3.5vw, 60px);
}

.d-amenities-header {
    width: 100%;
    max-width: 639px;
    display: flex;
    flex-direction: column;
}

.d-amenities-slider-wrap {
    margin-top: 48px;
    overflow: hidden;
}

.d-amenities-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 600ms cubic-bezier(.4,0,.2,1);
}

.d-amenities-slide {
    flex-shrink: 0;
    width: calc(100% - 130px);
    height: 638px;
    position: relative;
    border-radius: clamp(52px, 5.4vw, 108px) 24px 24px 24px;
    overflow: hidden;
}

.d-amenities-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d-amenities-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 54px 34px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.d-amenities-slide-name {
    font-size: var(--t-h2);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    text-align: right;
}

.d-amenities-slide-desc {
    margin: 8px 0 0 auto;
    width: min(512px, 100%);
    font-size: var(--t-h3);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.35;
    text-align: right;
}

.d-amenities-tabs {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 28px;
}

.d-amenities-tab {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--t-h3);
    line-height: 1.1;
    white-space: nowrap;
}

.d-amenities-tab.active { font-weight: 500; color: #2f563f; }
.d-amenities-tab:not(.active) { font-weight: 300; color: #688863; }

.d-amenities-sep {
    font-size: clamp(18px, 1.35vw, 26px);
    color: #688863;
    font-weight: 300;
    line-height: 1.1;
}

@media (max-width: 1400px) {
    .d-amenities {
        width: calc(100% - 48px);
    }

    .d-amenities-slide {
        height: 540px;
    }

    .d-amenities-tab,
    .d-amenities-sep {
        font-size: 26px;
    }
}


/* ========== INVESTMENT SECTION ========== */
.d-investment {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1562px, calc(100% - 64px));
    padding-top: clamp(20px, 1.8vw, 32px);
    padding-bottom: clamp(40px, 3.5vw, 60px);
}

.d-investment-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
}

.d-investment-header {
    width: 100%;
    max-width: 866px;
    display: flex;
    flex-direction: column;
}

.d-investment-header .d-section-title {
    white-space: nowrap;
}

.d-investment-sub {
    width: 100%;
    margin-top: 52px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
}

.d-investment-left {
    flex: 0 0 auto;
}

.d-investment-desc {
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.55;
}

.d-investment-desc-sub {
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.55;
}

.d-investment-arrow-img {
    flex-shrink: 0;
    width: 206px;
    height: 36px;
}

.d-investment-income {
    font-size: var(--t-display);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 300;
    color: #464646;
    line-height: 1.1;
    white-space: nowrap;
}

/* Lots badge */
.d-lots-badge {
    position: relative;
    width: 280px;
    height: 276px;
    flex-shrink: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 36%, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.2) 56%, rgba(255,255,255,0) 72%),
        linear-gradient(180deg, rgba(250,245,239,0.88) 0%, rgba(243,231,216,0.78) 100%);
    border: 1px solid rgba(193,165,135,0.55);
    overflow: visible;
}

/* inline SVG arc text: covers full badge area */
.d-lots-label-arc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

/* ellipse-1.svg — decorative outer ring: top=30px, left=32px, 218×221px */
.d-lots-ring {
    position: absolute;
    top: 30px;
    left: 32px;
    width: 218px;
    height: 221px;
    pointer-events: none;
}

.d-lots-num {
    position: absolute;
    top: 77px;
    left: 77px;
    font-size: 97.8px;
    font-weight: 500;
    color: #ba9975;
    line-height: 59.1px;
    white-space: nowrap;
}

.d-lots-text {
    position: absolute;
    top: 163px;
    left: 75px;
    font-size: 16px;
    color: #c1a587;
    text-align: center;
    line-height: 17px;
    max-width: 130px;
    margin: 0;
}

/* Benefit cards */
.d-benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.d-benefit-card {
    position: relative;
    width: 100%;
    min-height: 130px;
    border-radius: 150px 0 15px 15px;
    clip-path: inset(0 round 150px 0 15px 15px);
    overflow: hidden;
    background: linear-gradient(180deg, #efebe0 0%, #fff 100%);
    padding: 36px 40px 32px 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.d-benefit-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d-benefit-value {
    position: relative;
    font-size: var(--t-display);
    font-weight: 500;
    color: #2f563f;
    line-height: 1;
    white-space: normal;
}

.d-benefit-desc {
    position: relative;
    margin-top: 0;
    font-size: var(--t-body);
    color: #464646;
    line-height: 1.4;
    flex: 1;
    max-width: none;
}

.d-benefit-desc em { font-style: italic; }

.d-investment-lots {
    margin-top: 14px;
    font-size: var(--t-lead);
    font-weight: 300;
    color: #c1a587;
    line-height: 1.55;
}

.d-benefit-value-alt {
    margin-left: 1px;
}

.d-benefit-desc-alt {
    width: 100%;
    max-width: 319px;
}

.d-btn-gold {
    display: block;
    margin: 36px auto 0;
    width: min(360px, 100%);
    height: 54px;
    background: linear-gradient(0deg, #bda080 0%, #bda080 100%);
    border: none;
    border-radius: 37px;
    color: white;
    font-size: 18px;
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .d-investment {
        width: calc(100% - 48px);
    }

    .d-investment-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .d-lots-badge {
        margin-left: auto;
    }

    .d-benefit-cards {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .d-benefit-card {
        width: 100%;
        min-height: 130px;
    }
}


/* ========== LOCATION SECTION ========== */
.d-loc-section {
    background: #f7f5f0;
    padding: clamp(40px, 3.5vw, 60px) 0;
}

.d-loc-inner {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: clamp(36px, 3.33vw, 60px);
    align-items: start;
}

.d-loc-header {
    margin-bottom: 20px;
}

.d-loc-label {
    display: inline-block;
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #2f563f;
    line-height: 1.4;
    margin-bottom: 6px;
    white-space: nowrap;
}

.d-loc-title {
    font-size: var(--t-h2);
    font-weight: 500;
    color: #2f563f;
    line-height: 1.15;
}

.d-loc-desc {
    font-size: var(--t-lead);
    line-height: 1.65;
    margin-bottom: 36px;
    color: #464646;
    font-weight: 300;
}

.d-loc-desc em {
    color: #2f563f;
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
}

.d-loc-routes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.d-loc-route-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.d-loc-route-icon {
    width: 22px;
    height: 22px;
    color: #2f563f;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-loc-route-icon svg {
    width: 100%;
    height: 100%;
}

.d-loc-route-time {
    color: #2f563f;
    font-weight: 600;
    font-size: var(--t-h3);
    min-width: 60px;
    flex-shrink: 0;
}

.d-loc-route-line {
    flex: 1;
    height: 1px;
    background: #d8d4cc;
}

.d-loc-route-label {
    font-size: var(--t-body);
    color: #464646;
    font-weight: 400;
}

/* Галерея десктоп */
.d-loc-gallery-wrap {
    position: relative;
}

.d-loc-gallery-container {
    position: relative;
    border-radius: 80px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.d-loc-gallery-slider {
    position: relative;
    height: 450px;
}

.d-loc-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.d-loc-gallery-slide.active {
    opacity: 1;
}

.d-loc-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d-loc-gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    padding: 12px 25px;
    background: rgba(247, 244, 238, 0.6);
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.d-loc-gallery-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #2f563f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.d-loc-gallery-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.d-loc-gallery-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.d-loc-gallery-dot {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(95, 89, 80, 0.25);
    background-clip: content-box;
    padding: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.d-loc-gallery-dot.active {
    background: #2f563f;
    transform: scale(1.2);
}

.d-loc-gallery-dot:hover {
    background: rgba(47, 86, 63, 0.6);
}



/* ========== FOOTER — стили перенесены в css/footer.css ========== */

@media (max-width: 1400px) {
    .desktop-page {
        gap: 0;
        padding-bottom: 80px;
    }

    .d-location-item-inner {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 12px;
    }

}


@media (max-width: 1400px) {
    .d-location {
        width: calc(100% - 48px);
    }

    .d-location-fon {
        height: 760px;
        margin-top: 64px;
    }

    .d-location-copy {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 34px;
    }

    .d-location-desc-left,
    .d-location-desc-right {
        font-size: 24px;
        line-height: 1.4;
    }

    .d-location-time {
        font-size: 40px;
    }

    .d-location-label {
        font-size: 18px;
    }

}

/* ========== INTERMEDIATE DESKTOP 1281–1440px ========== */
@media (min-width: 1280px) and (max-width: 1440px) {

    /* Expertise: восстанавливаем 2-колоночную раскладку */
    .d-expertise {
        width: calc(100% - 56px);
        grid-template-columns: minmax(0, 500px) minmax(280px, 1fr);
        grid-template-areas:
            "header stats"
            "desc stats"
            "divider divider"
            "cards cards";
        column-gap: clamp(32px, 3vw, 48px);
        row-gap: 28px;
    }

    .d-expertise-desc {
        max-width: 100%;
        margin-top: 0;
        font-size: 20px;
    }

    .d-stats {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 36px;
        align-self: end;
    }

    .d-stat,
    .d-stat-1,
    .d-stat-2,
    .d-stat-3,
    .d-stat-4 {
        width: 100%;
    }

    .d-stat-desc {
        font-size: 18px;
        line-height: 1.35;
    }

    .d-hotel-cards {
        margin-top: 16px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .d-hotel-card {
        min-width: 0;
        min-height: 360px;
    }

    .d-benefit-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin-top: 48px;
    }

    .d-benefit-card {
        width: 100%;
        min-height: 130px;
        padding: 32px 28px 28px 64px;
    }
}

@media (max-width: 1280px) {
    .desktop-page {
        gap: 0;
    }

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

    .d-ops-subtitle-left,
    .d-ops-subtitle-right {
        flex: 1 1 auto;
        width: auto;
        max-width: 420px;
        min-width: 0;
    }

    .d-stats {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .d-stat-1, .d-stat-2, .d-stat-3, .d-stat-4 {
        width: 100%;
    }

    .d-expertise,
    .d-amenities,
    .d-investment,
    .d-location {
        width: calc(100% - 40px);
    }

    .d-features-card {
        gap: 20px 32px;
        padding: 42px 28px 32px;
    }


    .d-expertise-desc {
        margin-top: 0;
        margin-left: 0;
    }

    .d-stats {
        margin-top: 0;
        margin-left: 0;
        max-width: none;
    }

    .d-hotel-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 8px;
    }

    .d-investment-sub {
        width: 100%;
    }

    .d-benefit-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 36px;
    }

    .d-location-copy,
    .d-location-items,
    .d-location-header {
        width: calc(100% - 32px);
    }

    .d-location-fon {
        height: 680px;
        margin-top: 56px;
    }

    .d-loc-gallery-slider {
        height: 320px;
    }

}

@media (max-width: 1120px) {
    .desktop-page {
        gap: 0;
    }

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

    .d-expertise,
    .d-amenities,
    .d-investment,
    .d-location {
        width: calc(100% - 32px);
    }

    .d-ops-subtitle {
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
        margin-top: 34px;
    }

    .d-ops-subtitle-left,
    .d-ops-subtitle-right {
        flex: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: 22px;
    }

    .d-ops-line {
        display: none;
    }

    .d-ops-arrow {
        display: block;
        margin: 0 auto;
        transform: rotate(90deg);
        opacity: 0.85;
    }

    .d-ops-gallery-wrap {
        background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 28%, #faf9f5 55%, #faf9f5 100%);
    }

    .d-ops-gallery-shell {
        background: transparent;
    }

    .d-ops-photos {
        aspect-ratio: auto;
        max-width: none;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(200px, 280px) minmax(200px, 280px);
        background: transparent;
    }

    .d-ops-photo-1 { grid-column: 1; grid-row: 1; }
    .d-ops-photo-4 { grid-column: 2; grid-row: 1; }
    .d-ops-photo-2 { grid-column: 1; grid-row: 2; }
    .d-ops-photo-3 { grid-column: 2; grid-row: 2; }

    .d-features-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .d-feature-text {
        font-size: 18px;
        line-height: 1.35;
        max-width: none;
    }

    .d-quote {
        font-size: 24px;
        line-height: 1.45;
    }

    .d-quote-author {
        font-size: 17px;
        line-height: 1.45;
    }

    .d-quote-role {
        font-size: 16px;
    }

    .d-expertise-desc {
        font-size: 20px;
        line-height: 1.45;
    }

    .d-stats {
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }

    .d-stat-value {
        font-size: 28px;
    }

    .d-stat-value span {
        font-size: 18px;
    }

    .d-stat-desc {
        font-size: 15px;
    }

    .d-hotel-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .d-hotel-card {
        min-height: 0;
    }

    .d-investment-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .d-investment-sub {
        margin-top: 34px;
        gap: 12px;
    }

    .d-investment-desc {
        font-size: 20px;
        line-height: 1.4;
    }

    .d-investment-income {
        margin-top: 0;
        font-size: 34px;
        line-height: 1.1;
    }

    .d-investment-arrow {
        display: none;
    }

    .d-lots-badge {
        width: 220px;
        height: 220px;
    }

    .d-lots-num {
        top: 60px;
        left: 60px;
        font-size: 77px;
        line-height: 46px;
    }

    .d-lots-text {
        top: 128px;
        left: 59px;
        font-size: 14px;
        line-height: 15px;
        max-width: 102px;
    }

    .d-benefit-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .d-benefit-card:last-child {
        grid-column: auto;
    }

    .d-benefit-card {
        min-height: 0;
        border-radius: 72px 0 15px 15px;
        clip-path: inset(0 round 72px 0 15px 15px);
        padding: 40px 28px 28px;
    }

    .d-benefit-value {
        font-size: 72px;
    }

    .d-benefit-desc {
        margin-top: 12px;
        font-size: 20px;
        line-height: 1.35;
    }

    .d-btn-gold {
        height: 60px;
        font-size: 18px;
    }

    .d-location-header,
    .d-location-copy,
    .d-location-items {
        width: 100%;
    }

    .d-location-fon {
        height: 520px;
        margin-top: 34px;
        border-radius: 20px;
    }

    .d-location-copy {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .d-location-desc-left,
    .d-location-desc-right {
        font-size: 22px;
        line-height: 1.4;
    }

    .d-location-items {
        flex-direction: column;
        gap: 20px;
        margin-top: 28px;
    }

    .d-location-divider {
        display: none;
    }

    .d-location-item {
        width: 100%;
        flex: none;
    }

    .d-location-item-inner {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 14px;
    }

    .d-location-time {
        font-size: 32px;
        line-height: 1;
    }

    .d-location-label {
        font-size: 16px;
        line-height: 1.4;
    }

    .d-location-line {
        width: 160px;
    }

}


/* ========== ДЕСКТОП: CTA МЕССЕНДЖЕРОВ И КРУЖКИ СООБЩЕСТВ В ПОДВАЛЕ — перенесены в css/footer.css ========== */
/* ========== ДЕСКТОПНАЯ ФОРМА ========== */
@media (min-width: 768px) {
    .modal-overlay {
        padding: 24px;
    }

    .modal-box {
        display: grid;
        grid-template-columns: 220px 1fr;
        max-width: 700px;
        padding: 0;
        overflow: hidden;
        border-radius: 20px;
        max-height: 85vh;
    }

    /* Левая панель */
    .modal-box::before {
        content: '';
        grid-column: 1;
        grid-row: 1 / 10;
        background: linear-gradient(160deg, #2f563f 0%, #1e3829 100%);
        position: relative;
    }

    .modal-left-panel {
        grid-column: 1;
        grid-row: 1 / 10;
        background: linear-gradient(160deg, #2f563f 0%, #1e3829 100%);
        padding: 40px 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .modal-left-panel::after {
        content: '17/52';
        position: absolute;
        right: -12px;
        bottom: 20px;
        font-size: 80px;
        font-weight: 600;
        font-family: 'TT Norms Pro Serif', serif;
        font-style: italic;
        color: rgba(255,255,255,0.05);
        line-height: 1;
        pointer-events: none;
    }

    .modal-left-logo {
        width: 48px;
        height: auto;
        opacity: 0.9;
        display: block;
    }

    .modal-left-title {
        font-size: 28px;
        font-family: 'TT Norms Pro Serif', serif;
        font-style: italic;
        font-weight: 300;
        color: #fff;
        line-height: 1.2;
        margin: 0;
    }

    .modal-left-sub {
        font-size: 12px;
        color: rgba(255,255,255,0.5);
        line-height: 1.6;
        margin-top: 10px;
    }

    .modal-left-contacts {
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        line-height: 1.8;
    }

    .modal-left-phone {
        font-size: 14px;
        color: rgba(255,255,255,0.85);
        font-weight: 400;
        text-decoration: none;
        display: block;
        margin-bottom: 4px;
    }

    /* Правая панель */
    .modal-right-panel {
        grid-column: 2;
        padding: 36px 36px 32px;
        overflow-y: auto;
        position: relative;
    }

    .modal-close {
        top: 20px;
        right: 20px;
    }

    .modal-label {
        margin-bottom: 6px;
    }

    .modal-title {
        font-size: 26px;
        margin-bottom: 4px;
    }

    .modal-sub {
        margin-bottom: 28px;
    }

    .modal-msgs {
        flex-direction: row;
        gap: 10px;
    }

    .modal-msg-btn {
        flex: 1;
        font-size: 12px;
    }
}

/* ========== О ПРОЕКТЕ SECTION ========== */
.d-about-project {
    background: #ffffff;
    padding: clamp(30px, 2.67vw, 48px) 0;
}

.d-about-inner {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: clamp(48px, 4vw, 80px);
    align-items: center;
}

.d-about-label {
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #2f563f;
    line-height: 1.4;
    margin-bottom: 6px;
}

.d-about-title {
    font-size: var(--t-h2);
    font-weight: 500;
    color: #2f563f;
    line-height: 1.15;
    margin-bottom: 36px;
    max-width: 600px;
}

.d-about-body {
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.65;
    margin-bottom: 52px;
    max-width: 500px;
    text-align: left;
    hyphens: none;
}

.d-about-accents {
    border-top: 1px solid rgba(47, 86, 63, 0.14);
}

.d-about-accent {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(47, 86, 63, 0.14);
}

.d-about-accent-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
}

.d-about-accent-text {
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.2;
}

.d-about-media {
    position: relative;
    height: 580px;
}

.d-about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 56px;
    bottom: 56px;
    border-radius: 8px 90px 8px 8px;
    overflow: hidden;
}

.d-about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d-about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 47%;
    height: 46%;
    border-radius: 8px 8px 8px 90px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.d-about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d-about-img-frame {
    position: absolute;
    top: -14px;
    left: -14px;
    right: 70px;
    bottom: 70px;
    border-radius: 8px 100px 8px 8px;
    border: 1px solid rgba(47, 86, 63, 0.18);
    pointer-events: none;
}

@media (max-width: 1400px) {
    .d-about-body { font-size: 18px; }
}


/* ========== БЛОК ПРЕДЛОЖЕНИЙ ========== */
.d-offers-section {
    background: #f7f5f0;
    padding: clamp(40px, 3.5vw, 60px) 0;
}

.d-offers-header {
    margin-bottom: 36px;
}

.d-offers-label {
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #2f563f;
    line-height: 1.4;
    margin-bottom: 6px;
}

.d-offers-title {
    font-size: var(--t-h2);
    font-weight: 500;
    color: #2f563f;
    line-height: 1.15;
}

/* Калькулятор */
.d-offers-calc {
    background: #faf9f7;
    border-radius: 24px;
    padding: 28px 32px;
    margin-bottom: 32px;
}

.d-offers-calc-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Ползунки */
.d-offers-sliders {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.d-offers-slider-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.d-offers-slider-name {
    font-size: var(--t-h3);
    font-weight: 600;
    color: #6b6256;
}

.d-offers-slider-val {
    font-size: var(--t-display);
    font-weight: 300;
    color: #2f563f;
    line-height: 1;
    white-space: nowrap;
}

.d-offers-slider-val em {
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: #6b6256;
}

.d-offers-slider-note {
    font-size: var(--t-body);
    font-weight: 400;
    color: #8fa896;
    margin-top: 8px;
}

.d-offers-range-wrap {
    position: relative;
    height: 20px;
}

.d-offers-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(47,86,63,0.10);
    border-radius: 2px;
    transform: translateY(-50%);
    pointer-events: none;
}

.d-offers-range-fill {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 3px;
    background: #2f563f;
    border-radius: 2px;
    transform: translateY(-50%);
    pointer-events: none;
}

.d-offers-section input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.d-offers-section input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #2f563f;
    border: 2.5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(0,0,0,0.18);
    cursor: grab;
}

.d-offers-section input[type="range"]:active::-webkit-slider-thumb {
    cursor: grabbing;
}

.d-offers-section input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #2f563f;
    border: 2.5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(0,0,0,0.18);
    cursor: grab;
}

/* Плашки */
.d-offers-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.d-offers-metric {
    background: #fff;
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
}

.d-offers-metric.primary {
    background: linear-gradient(148deg, #2f563f 0%, #3c6a50 100%);
    box-shadow: 0 8px 28px rgba(47,86,63,0.22);
}

.d-offers-metric-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    color: #8fa896;
    flex-shrink: 0;
}

.d-offers-metric.primary .d-offers-metric-icon {
    color: rgba(255,255,255,0.60);
}

.d-offers-metric-label {
    font-size: var(--t-caption);
    font-weight: 500;
    color: #6b6256;
    margin-bottom: 6px;
    white-space: nowrap;
}

.d-offers-metric.primary .d-offers-metric-label {
    color: rgba(255,255,255,0.55);
}

.d-offers-metric-value {
    font-size: var(--t-display);
    font-weight: 700;
    color: #2f563f;
    line-height: 1;
    white-space: nowrap;
}

.d-offers-metric.primary .d-offers-metric-value {
    color: #fff;
}

.d-offers-metric-sub {
    font-size: var(--t-caption);
    font-weight: 400;
    color: #6b6256;
    line-height: 1.45;
    margin-top: 6px;
}

.d-offers-metric.primary .d-offers-metric-sub {
    color: rgba(255,255,255,0.50);
    border-top: 1px dashed rgba(255,255,255,0.18);
    padding-top: 6px;
}

.d-offers-tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    cursor: help;
    width: fit-content;
}

.d-offers-tooltip-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(47,86,63,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #2f563f;
    flex-shrink: 0;
    user-select: none;
}

.d-offers-tooltip-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    width: 220px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    font-size: var(--t-body);
    line-height: 1.55;
    color: #1f1a1a;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 10;
    pointer-events: none;
}

.d-offers-tooltip-wrap:hover .d-offers-tooltip-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.d-offers-feature-list {
    margin-top: 14px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.d-offers-feature-list li {
    font-size: 16px;
    color: #6b6256;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.d-offers-feature-list li::before {
    content: '—';
    color: #8fa896;
    flex-shrink: 0;
    line-height: 1.4;
}

/* Карточки */
.d-offers-cards-header {
    margin-bottom: 16px;
}

.d-offers-cards-label {
    font-size: var(--t-h3);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #6b6256;
}

.d-offers-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.d-offers-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.d-offers-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

.d-offers-card-img {
    height: 175px;
    background: #f0ede6;
    overflow: hidden;
    position: relative;
}

.d-offers-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: var(--t-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    letter-spacing: 0;
    white-space: nowrap;
    line-height: 1.4;
}

.d-offers-card-badge--avail {
    background: rgba(47, 86, 63, 0.22);
    color: #2f563f;
}

.d-offers-card-badge--sold {
    background: rgba(192, 48, 48, 0.10);
    color: #c03030;
}

.d-offers-card-badge--promo {
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto;
    background: linear-gradient(135deg, #c89c5b 0%, #b8853c 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(184,133,60,0.28);
    letter-spacing: 0.02em;
}

.d-offers-card-price--promo { color: #b8853c; }
.d-offers-card-price-old {
    font-size: var(--t-caption);
    color: #6b6256;
    text-decoration: line-through;
    margin-top: -10px;
    margin-bottom: 14px;
    font-weight: 500;
}

.d-offers-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.d-offers-card-body {
    padding: 18px 20px 20px;
}

.d-offers-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.d-offers-card-type {
    font-size: var(--t-caption);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #8fa896;
}

.d-offers-card-num {
    font-size: var(--t-caption);
    color: #6b6256;
    font-weight: 500;
}

.d-offers-card-price {
    font-size: var(--t-display);
    font-weight: 700;
    color: #1f1a1a;
    margin-bottom: 14px;
    white-space: nowrap;
}

.d-offers-card-stats {
    display: flex;
    border-top: 1px solid rgba(47,86,63,0.10);
    padding-top: 14px;
}

.d-offers-stat-item {
    flex: 1;
    text-align: center;
}

.d-offers-stat-item + .d-offers-stat-item {
    border-left: 1px solid rgba(47,86,63,0.10);
}

.d-offers-stat-val {
    font-size: var(--t-h3);
    font-weight: 600;
    color: #2f563f;
    white-space: nowrap;
}

.d-offers-stat-label {
    font-size: var(--t-caption);
    font-weight: 400;
    color: #6b6256;
    margin-top: 4px;
}

/* Кнопка */
.d-offers-cta {
    text-align: center;
    margin-top: 28px;
}

.d-offers-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 28px;
    border: 1px solid #2f563f;
    border-radius: 22px;
    background: transparent;
    font-family: inherit;
    font-size: clamp(14px, 1vw, 18px);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 500;
    color: #2f563f;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}

.d-offers-btn:hover {
    background: #2f563f;
    color: #fff;
}

.d-offers-btn svg {
    transition: transform 0.18s;
    flex-shrink: 0;
}

.d-offers-btn:hover svg {
    transform: translateX(3px);
}


/* ========== АРТ-РЕЗИДЕНЦИЯ (десктоп) ========== */

.d-art-res {
    width: 100%;
    padding: clamp(40px, 3.5vw, 60px) 0 clamp(20px, 1.8vw, 32px);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.d-art-res::before {
    content: '';
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(193, 165, 135, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.d-art-res::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 86, 63, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.d-art-res-container {
    width: min(1562px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: clamp(40px, 3.5vw, 60px);
    align-items: stretch;
}

.d-art-res-content {
    padding-top: 10px;
}

.d-art-res-header {
    margin-bottom: 28px;
}

.d-art-res-label {
    font-size: var(--t-overline);
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: #2f563f;
    margin-bottom: 6px;
    line-height: 1.4;
}

.d-art-res-title {
    font-size: var(--t-h2);
    font-weight: 500;
    color: #2f563f;
    line-height: 1.15;
}

.d-art-res-lead {
    font-size: var(--t-lead);
    font-weight: 300;
    color: #464646;
    line-height: 1.65;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(47, 86, 63, 0.12);
}

.d-art-res-lead em {
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    color: #2f563f;
    font-weight: 400;
}

.d-art-res-text {
    font-size: var(--t-lead);
    color: #464646;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 300;
    text-align: justify;
    hyphens: auto;
}

.d-art-res-text:last-child {
    margin-bottom: 0;
}

.d-art-res-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.d-art-res-slider-container {
    position: relative;
    border-radius: 50px 16px 16px 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.d-art-res-slider {
    position: relative;
    flex: 1 1 auto;
    min-height: 440px;
}

.d-art-res-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.d-art-res-slide.active {
    opacity: 1;
}

.d-art-res-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d-art-res-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 24px;
    background: rgba(247, 244, 238, 0.8);
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto;
}

.d-art-res-slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #2f563f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.2s;
}

.d-art-res-slider-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.16);
}

.d-art-res-slider-btn:active {
    transform: scale(0.95);
}

.d-art-res-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.d-art-res-slider-dot {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(95, 89, 80, 0.3);
    background-clip: content-box;
    padding: 7.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.d-art-res-slider-dot.active {
    background: #2f563f;
    transform: scale(1.25);
}

.d-art-res-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    background: linear-gradient(to top, rgba(31, 26, 26, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.d-art-res-caption--top {
    top: 0;
    bottom: auto;
    background: linear-gradient(to bottom, rgba(31, 26, 26, 0.5) 0%, transparent 100%);
}

.d-art-res-caption-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: #2f563f;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.d-art-res-caption-text {
    font-size: 20px;
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.d-art-res-footer {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.d-art-res-accent-line {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, #c1a587 0%, #2f563f 100%);
    border-radius: 1px;
}

.d-art-res-accent-text {
    font-size: var(--t-overline);
    font-weight: 400;
    color: #1f1a1a;
    line-height: 1.65;
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    max-width: 680px;
}

.d-art-res-accent-text strong {
    font-weight: 500;
    color: #2f563f;
    font-style: normal;
}

@media (max-width: 1400px) {
    .d-art-res-container {
        width: min(1562px, calc(100% - 48px));
    }
}

@media (max-width: 1200px) {
    .d-art-res-container {
        gap: 60px;
        grid-template-columns: 420px 1fr;
        width: min(1562px, calc(100% - 40px));
    }
    .d-art-res-slider { height: 360px; }
    .d-art-res-label { line-height: 1.3; }
    .d-art-res-lead  { font-size: 20px; }
    .d-art-res-text  { font-size: 18px; }
    .d-art-res-caption-text { font-size: 18px; }
    .d-art-res-accent-text { font-size: 20px; }
}



/* Бургер в десктопной шапке — скрыт по умолчанию */
.d-header-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 4px;
}

/* ========== БЛОК ОТЕЛЕЙ: СЛАЙДЕР 4 КАРТОЧКИ ========== */

/* Обёртка: занимает grid-area cards, клиппит overflow */
.d-hotel-cards-outer {
    grid-area: cards;
    overflow: hidden;
    margin-top: clamp(28px, 3vw, 44px);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Трек: flex вместо grid — карточки не переносятся */
.d-hotel-cards {
    grid-area: unset;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 16px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Каждая карточка ~1/3 ширины обёртки с небольшим запасом против sub-pixel переполнения */
.d-hotel-card {
    flex: 0 0 calc((100% - 32px) / 3 - 1px);
    min-width: 0;
    box-sizing: border-box;
}

/* Кнопки навигации */
.d-hotel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.d-hotel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(47, 86, 63, 0.35);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 180ms ease, border-color 180ms ease;
}

.d-hotel-nav-btn:hover {
    background: rgba(47, 86, 63, 0.07);
    border-color: rgba(47, 86, 63, 0.55);
}

.d-hotel-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ≤ 1024px: возврат к гриду 2 колонки, слайдер скрыт (≥1025px — мобильный layout) */
@media (max-width: 1024px) {
    .d-hotel-cards-outer {
        overflow: visible;
    }
    .d-hotel-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        transform: none !important;
        transition: none !important;
        margin-top: 0;
    }
    .d-hotel-card {
        flex: none;
    }
    .d-hotel-nav {
        display: none;
    }
}

/* ========== НОВОСТИ И АКЦИИ (DESKTOP) ========== */
.d-news {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1562px, calc(100% - 64px));
    padding: clamp(40px, 3.5vw, 60px) 0;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.d-news-header { margin-bottom: clamp(20px, 2vw, 32px); }

.d-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 1.4vw, 22px);
}

.d-news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(31,26,26,0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.d-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,26,26,0.08);
}

.d-news-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #efe9dd;
}
.d-news-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.d-news-card:hover .d-news-card-image img { transform: scale(1.03); }

.d-news-card-body {
    padding: clamp(14px, 1.1vw, 18px) clamp(15px, 1.2vw, 20px) clamp(16px, 1.2vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.d-news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.d-news-card-type {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: var(--t-caption);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}
.d-news-card-type--news { background: rgba(47,86,63,0.10); color: #2f563f; }
.d-news-card-type--publication { background: rgba(207,182,152,0.22); color: #6e5c3d; }
.d-news-card-type--promo { background: linear-gradient(135deg,#c89c5b,#b8853c); color: #fff; }
.d-news-card-type--video { background: rgba(47,86,63,0.10); color: #2f563f; }

.d-news-card-date {
    font-size: var(--t-caption);
    color: #5a5552;
    font-weight: 500;
}

.d-news-card-title {
    font-size: var(--t-h3);
    line-height: 1.32;
    font-weight: 600;
    color: #1f1a1a;
    margin: 0;
}

.d-news-card-lead {
    font-size: var(--t-body);
    font-weight: 400;
    line-height: 1.5;
    color: #5a5552;
    margin: 0;
}

.d-news-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--t-caption);
    font-weight: 500;
    color: #2f563f;
    padding-top: 6px;
}
.d-news-card-cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
.d-news-card:hover .d-news-card-cta { color: #1e3d2b; }
.d-news-card:hover .d-news-card-cta svg { transform: translateX(4px); }

.d-news-card-promo-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg,#c89c5b,#b8853c);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: var(--t-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 3px 10px rgba(184,133,60,0.28);
}

.d-news-card-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.94);
    color: #2f563f;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 14px rgba(0,0,0,0.18);
    transition: transform 0.22s, background 0.22s;
}
.d-news-card-play svg { width: 20px; height: 20px; margin-left: 2px; }
.d-news-card:hover .d-news-card-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

.d-news-all-wrap {
    margin-top: clamp(20px, 2vw, 28px);
    display: flex;
    justify-content: flex-end;
}
.d-news-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2f563f;
    text-decoration: none;
    font-size: var(--t-body);
    font-weight: 500;
    transition: color 0.15s;
}
.d-news-all:hover { color: #1e3d2b; }
.d-news-all svg { width: 14px; height: 14px; transition: transform 0.2s; }
.d-news-all:hover svg { transform: translateX(4px); }

@media (max-width: 1400px) {
    .d-news { width: calc(100% - 48px); }
}
@media (max-width: 1280px) {
    .d-news { width: calc(100% - 40px); }
    .d-news-grid { gap: 16px; }
}
@media (max-width: 1120px) {
    .d-news { width: calc(100% - 32px); }
}

/* ========== СТРАНИЦА «НОВОСТИ И АКЦИИ» (DESKTOP) ========== */
.news-page { display: none; }
@media (min-width: 1025px) {
    .news-page {
        display: block;
        background: #f7f5f0;
        min-height: calc(100vh - 200px);
    }
}

.news-page-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(24px, 2.5vw, 36px) 40px clamp(40px, 4vw, 60px);
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.breadcrumbs {
    font-size: 13px;
    color: #8b8378;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-bottom: 16px;
    padding: 0;
}
.breadcrumbs a { color: #688863; text-decoration: none; transition: color 0.15s; }
.breadcrumbs a:hover { color: #2f563f; }
.breadcrumbs [aria-current] { color: #1f1a1a; }
.breadcrumbs span[aria-hidden] { opacity: 0.55; }

.news-page-head { margin-bottom: clamp(20px, 2vw, 30px); }
.news-page-label {
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(16px, 1.5vw, 26px);
    color: #2f563f;
    line-height: clamp(22px, 2.1vw, 36px);
    margin-bottom: 6px;
}
.news-page-title {
    font-size: clamp(22px, 2.4vw, 42px);
    font-weight: 500;
    color: #2f563f;
    line-height: 1.1;
    margin: 0;
}
.news-page-subtitle {
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    color: #8b8378;
    font-size: clamp(14px, 1.05vw, 18px);
    margin: 10px 0 0;
    max-width: 640px;
    line-height: 1.45;
}

.news-page-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: clamp(18px, 2vw, 28px) 0;
}
.news-page-filter {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(47,86,63,0.20);
    background: #fff;
    color: #5a5552;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    line-height: 1.2;
}
.news-page-filter:hover { border-color: #2f563f; color: #2f563f; }
.news-page-filter.is-active {
    background: #2f563f;
    border-color: #2f563f;
    color: #fff;
}

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.news-page-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(31,26,26,0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.news-page-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,26,26,0.08);
}
.news-page-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #efe9dd;
}
.news-page-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.news-page-card:hover .news-page-card-image img { transform: scale(1.03); }
.news-page-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.news-page-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.news-page-card-type {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}
.news-page-card-type--news        { background: rgba(47,86,63,0.10); color: #2f563f; }
.news-page-card-type--publication { background: rgba(207,182,152,0.22); color: #6e5c3d; }
.news-page-card-type--promo       { background: linear-gradient(135deg,#c89c5b,#b8853c); color: #fff; }
.news-page-card-type--video       { background: rgba(47,86,63,0.10); color: #2f563f; }
.news-page-card-date { font-size: 12.5px; color: #5a5552; font-weight: 500; }
.news-page-card-title {
    font-size: 15.5px;
    line-height: 1.32;
    font-weight: 500;
    color: #1f1a1a;
    margin: 0;
}
.news-page-card-lead {
    font-size: 13px;
    line-height: 1.5;
    color: #5a5552;
    margin: 0;
}
.news-page-card-promo-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: linear-gradient(135deg,#c89c5b,#b8853c);
    color: #fff;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 3px 10px rgba(184,133,60,0.28);
}
.news-page-card-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.94);
    color: #2f563f;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 14px rgba(0,0,0,0.18);
    transition: transform 0.22s, background 0.22s;
}
.news-page-card-play svg { width: 18px; height: 18px; margin-left: 2px; }
.news-page-card:hover .news-page-card-play { background: #fff; transform: translate(-50%, -50%) scale(1.08); }

@media (max-width: 1280px) { .news-page-grid { gap: 14px; } }
@media (max-width: 1180px) {
    .news-page-grid { grid-template-columns: repeat(3, 1fr); }
    .news-page-inner { width: calc(100% - 48px); }
}

/* ========== ДЕТАЛЬНАЯ СТРАНИЦА НОВОСТИ (DESKTOP) ========== */
.news-detail { display: none; }
@media (min-width: 1025px) {
    .news-detail { display: block; background: #f7f5f0; }
}
.news-detail-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(24px, 2.5vw, 36px) 40px clamp(28px, 3vw, 44px);
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
.news-detail-related-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.news-detail-head { padding: clamp(20px, 2.5vw, 32px) 0 clamp(16px, 2vw, 24px); }
.news-detail-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.news-detail-type {
    display: inline-flex; padding: 4px 12px; border-radius: 999px;
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em;
    text-transform: uppercase; line-height: 1.2;
}
.news-detail-type--news        { background: rgba(47,86,63,0.10); color: #2f563f; }
.news-detail-type--publication { background: rgba(207,182,152,0.22); color: #6e5c3d; }
.news-detail-type--promo       { background: linear-gradient(135deg,#c89c5b,#b8853c); color: #fff; }
.news-detail-type--video       { background: rgba(47,86,63,0.10); color: #2f563f; }
.news-detail-date { font-size: 13px; color: #8b8378; }
.news-detail-title {
    font-size: clamp(22px, 2.6vw, 36px);
    color: #2f563f;
    font-weight: 500;
    line-height: 1.18;
    margin: 0 0 12px;
}
.news-detail-lead {
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-size: clamp(15px, 1.3vw, 19px);
    color: #5a5552;
    line-height: 1.5;
    margin: 0;
}
.news-detail-hero {
    margin: clamp(18px, 2.5vw, 28px) 0 clamp(24px, 3vw, 36px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(31,26,26,0.05);
    aspect-ratio: 16/9;
    background: #efe9dd;
}
.news-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.news-detail-body { padding-bottom: clamp(28px, 3.5vw, 44px); }
.news-detail-body p {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: #5a5552;
    margin: 0 0 14px;
}
.news-detail-body h2 {
    font-size: clamp(18px, 1.8vw, 24px);
    color: #2f563f;
    font-weight: 500;
    line-height: 1.25;
    margin: clamp(22px, 2.5vw, 32px) 0 10px;
}
.news-detail-body h3 {
    font-size: clamp(15px, 1.4vw, 19px);
    color: #1f1a1a;
    font-weight: 500;
    line-height: 1.3;
    margin: clamp(18px, 2vw, 24px) 0 8px;
}
.news-detail-body strong { color: #1f1a1a; font-weight: 600; }
.news-detail-body ul {
    margin: 0 0 16px;
    padding-left: 22px;
    color: #5a5552;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
}
.news-detail-body ul li { margin-bottom: 5px; }

.news-detail-cta {
    margin: 24px 0;
    padding: clamp(20px, 2.5vw, 28px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(31,26,26,0.05);
    text-align: center;
}
.news-detail-cta-title {
    font-size: clamp(16px, 1.6vw, 20px);
    color: #2f563f;
    font-weight: 500;
    margin-bottom: 6px;
}
.news-detail-cta-desc {
    font-size: 13.5px;
    color: #5a5552;
    margin: 0 0 14px;
}
.news-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: #2f563f;
    color: #fff;
    border-radius: 28px;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}
.news-detail-cta-btn:hover { background: #1e3d2b; }

.news-detail-bottom-nav {
    padding: clamp(18px, 2vw, 24px) 0;
    border-top: 1px solid rgba(207,182,152,0.55);
    margin-top: 8px;
}
.news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: #2f563f;
    text-decoration: none;
    font-weight: 500;
}
.news-detail-back:hover { color: #1e3d2b; }
.news-detail-back svg { width: 14px; height: 14px; }

.news-detail-related {
    background: #fff;
    border-top: 1px solid rgba(207,182,152,0.55);
    padding: clamp(32px, 4vw, 56px) 0;
}
.news-detail-related-title {
    font-size: clamp(18px, 1.8vw, 24px);
    color: #2f563f;
    font-weight: 500;
    margin: 0 0 clamp(18px, 2vw, 24px);
}
.news-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Автор статьи */
.news-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(18px, 2vw, 24px);
    padding-top: clamp(16px, 1.8vw, 20px);
    border-top: 1px solid rgba(207,182,152,0.55);
}
.news-detail-author-photo {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.news-detail-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.news-detail-author-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f1a1a;
}
.news-detail-author-role {
    font-family: 'TT Norms Pro Serif', serif;
    font-style: italic;
    font-size: 13px;
    color: #688863;
}

/* Бейдж акции на hero детальной */
.news-detail-hero { position: relative; }
.news-detail-hero-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: linear-gradient(135deg,#c89c5b,#b8853c);
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(184,133,60,0.32);
}

/* Видео-ссылки на детальной */
.news-detail-video-links {
    margin: clamp(24px, 3vw, 36px) 0;
    padding: clamp(20px, 2vw, 28px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(31,26,26,0.05);
}
.news-detail-video-title {
    font-size: clamp(15px, 1.4vw, 19px);
    color: #2f563f;
    font-weight: 500;
    margin: 0 0 14px;
}
.news-detail-video-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.news-detail-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(47,86,63,0.22);
    border-radius: 999px;
    background: #fff;
    font-size: 13.5px;
    color: #2f563f;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}
.news-detail-video-link:hover {
    border-color: #2f563f;
    background: rgba(47,86,63,0.05);
}

/* Не найдено */
.news-not-found {
    padding: clamp(40px, 5vw, 72px) 0;
    text-align: center;
}
.news-not-found h1 {
    font-size: clamp(24px, 2.4vw, 36px);
    color: #2f563f;
    font-weight: 500;
    margin: 0 0 12px;
}
.news-not-found p {
    color: #5a5552;
    font-size: 15px;
}
.news-not-found a { color: #2f563f; text-decoration: underline; }

