/* Базовые стили */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FAF8F5;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Утилиты */
.logo-blend {
    mix-blend-mode: multiply;
}

.scroll-mt {
    scroll-margin-top: 120px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Страницы */
.page {
    display: none;
    opacity: 0;
}

.page.active {
    display: block;
    opacity: 1;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Калькулятор */
.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Карточки услуг */
.service-item-grid {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item-grid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(60, 0, 0, 0.1);
}

/* Заголовок района */
.district-header {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #3c0000;
    display: inline-block;
}

/* Story карточки */
.story-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background: #000;
    transform: translateZ(0);
}

@media (min-width: 768px) {
    .story-card {
        border-radius: 2.5rem;
    }
}

.story-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Выпадающие списки */
#calc-section select option {
    background-color: #fff;
    color: #1a1a1a;
    font-weight: 700;
}