/* ==========================================================================
   PROFI-DESIGN 2026: FINAL UNIFIED STYLES
   ========================================================================== */

:root {
    --brand: #C86A4B;
    --dark: #1E1E1E;
    --white: #FFFFFF;
}

body {
    margin: 0 !important; padding: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    background: var(--white) !important;
    color: var(--dark);
    overflow-x: hidden;
}

/* 1. ШАПКА (STICKY HEADER) */
header.st-header {
    background: #ffffff !important;
    position: sticky !important;
    top: 0;
    width: 100% !important;
    z-index: 1000000 !important;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.st-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 90px !important;
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.st-logo img { height: 50px !important; width: auto !important; display: block !important; }

/* 2. ПК МЕНЮ */
.st-nav-main { flex: 1 !important; display: flex !important; justify-content: center !important; }
.st-nav-main ul.menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important; padding: 0 !important;
    gap: 10px !important;
}
.st-nav-main ul.menu li { position: relative !important; background: none !important; }
.st-nav-main ul.menu li:before { display: none !important; }

.st-nav-main ul.menu li a {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    padding: 35px 12px !important;
    display: block !important;
    transition: color 0.3s;
}
.st-nav-main ul.menu li:hover > a { color: var(--brand) !important; }

/* ВЫПАДАЮЩИЕ СПИСКИ (2 и 3 уровень) */
.st-nav-main ul.menu li ul {
    position: absolute !important; top: 100% !important; left: 0 !important;
    background: #fff !important; min-width: 230px !important;
    display: none !important; flex-direction: column !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    border-top: 3px solid var(--brand) !important; padding: 10px 0 !important;
    z-index: 100;
}
.st-nav-main ul.menu li ul li ul { top: 0 !important; left: 100% !important; margin-top: -13px !important; }
.st-nav-main ul.menu li:hover > ul, .st-nav-main ul.menu li ul li:hover > ul { display: flex !important; }
.st-nav-main ul.menu li ul li a { padding: 12px 20px !important; font-size: 11px !important; border-bottom: 1px solid #f9f9f9 !important; }

/* 3. КОНТАКТЫ */
.st-header-right { display: flex !important; align-items: center; gap: 20px; }
.st-contact-info { text-align: right !important; line-height: 1 !important; }
.st-phone { font-size: 19px !important; font-weight: 800 !important; color: #1a1a1a !important; display: block !important; margin-bottom: 3px !important; text-decoration: none !important; }
.st-sub { display: block !important; font-size: 9px !important; text-transform: uppercase; color: #999 !important; font-weight: 600; letter-spacing: 1px; }

.st-social-links { display: flex !important; gap: 8px !important; }
.st-s-ico { width: 32px !important; height: 32px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #fff !important; font-size: 14px !important; }
.st-s-ico { background: #0088cc !important; } /* TG */
.st-s-ico.st-wa { background: #25d366 !important; } /* WA */
.st-s-ico.st-vk { background: #4c75a3 !important; } /* VK */

/* 4. СЛАЙДЕР (УНИВЕРСАЛЬНЫЙ) */
.st-slider-wrapper {
    position: relative; width: 100%; height: 70vh; min-height: 500px;
    background: #000; overflow: hidden;
}
.st-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover !important; background-position: center !important;
    background-image: var(--bg-desk); /* ПК КАРТИНКА */
    opacity: 0; transition: opacity 1.2s ease-in-out;
    display: flex; align-items: center; z-index: 1;
}
.st-slide.active { opacity: 1; z-index: 2; }
.st-slide:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); }

.st-slide-content { position: relative; z-index: 10; color: #fff; max-width: 800px; padding: 0 15px; }
.st-slide-label { color: var(--brand); text-transform: uppercase; font-weight: 700; letter-spacing: 3px; font-size: 11px; margin-bottom: 20px; display: block; }
.st-slide-content h2 { font-family: 'Playfair Display', serif; font-size: 52px; line-height: 1.1; margin-bottom: 25px; font-weight: 700; }
.st-slide-content h2 strong { color: var(--brand); }
.st-slide-btns { display: flex; gap: 15px; }
.st-btn-fill { background: var(--brand); color: #fff !important; padding: 15px 35px; font-weight: 700; text-transform: uppercase; font-size: 12px; }
.st-btn-line { border: 2px solid #fff; color: #fff !important; padding: 13px 35px; font-weight: 700; text-transform: uppercase; font-size: 12px; }

/* ТОЧКИ */
.st-slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; gap: 12px; }
.st-slider-dots .dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; cursor: pointer; }
.st-slider-dots .dot.active { background: var(--brand); border-color: var(--brand); }

/* 5. МОБИЛЬНЫЕ НАСТРОЙКИ */
.st-burger-btn { display: none !important; background: var(--brand) !important; color: #fff !important; border: none; width: 44px; height: 44px; border-radius: 4px; font-size: 20px; }
.st-mobile-menu { display: none; background: #fff !important; border-bottom: 5px solid var(--brand); position: absolute; width: 100%; top: 100%; left: 0; z-index: 999999; }
.st-mobile-menu ul.menu { list-style: none; padding: 0; margin: 0; }
.st-mobile-menu ul.menu li a { display: block; padding: 15px 25px; border-bottom: 1px solid #eee; color: #1a1a1a; font-weight: 700; text-transform: uppercase; font-size: 14px; text-decoration: none; }
.st-mobile-menu ul.menu ul { padding-left: 20px; background: #f9f9f9; }

@media (max-width: 991px) {
    .st-nav-main, .st-contact-info { display: none !important; }
    .st-burger-btn { display: flex !important; align-items: center; justify-content: center; }
    .st-header-inner { height: 70px !important; }
    .st-logo img { height: 40px !important; }
    
    /* СЛАЙДЕР МОБИЛЬНЫЙ */
    .st-slider-wrapper { height: 85vh !important; }
    .st-slide { background-image: var(--bg-mob) !important; } /* Переключаем на Мобайл */
    .st-slide-content h2 { font-size: 32px !important; }
    .st-slide-btns { flex-direction: column; }
}

/* ФУТЕР */
.st-footer { background: var(--dark); color: #fff; padding: 60px 0; margin-top: 50px; }

/* ЗАЩИТА ОТ СТАРЫХ КНОПОК */
.navbar-toggle, .dj-mobile-button, .dj-hide-desktop, .navbar-header i { display: none !important; }

/* --- SECTION: ABOUT --- */
.st-about-section {
    padding: 100px 0;
    background: #fff;
}

.st-about-label {
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.st-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1.2;
    color: var(--dark);
    margin: 0;
}

.st-about-title strong {
    color: var(--brand);
    display: block;
}

.st-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 35px; /* Выравнивание по базовой линии заголовка на десктопе */
}

/* Сетка преимуществ */
.st-features-row {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.st-feature-item {
    flex: 1;
}

.st-feature-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.st-feature-desc {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    line-height: 1.4;
    font-weight: 600;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .st-about-section { padding: 60px 0; }
    .st-about-title { font-size: 28px; }
    .st-features-row { 
        flex-direction: column; 
        margin-top: 50px;
        gap: 40px;
    }
    .st-feature-num { font-size: 36px; }
}