/* -----------------------------------------
   ПЕРЕМЕННЫЕ И ОБНУЛЕНИЕ СТИЛЕЙ
----------------------------------------- */
:root {
    --bg-dark: #0a0a0a;       /* Глубокий черный */
    --bg-card: #141416;       /* Графитовый для блоков */
    --accent-gold: #d4af37;   /* Премиальное золото */
    --gold-hover: #aa8413;    /* Темное золото для ховеров */
    --text-light: #f5f5f7;    /* Основной контрастный текст */
    --text-muted: #8e8e93;    /* Приглушенный текст */
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* КНОПКИ СИСТЕМЫ */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 0px; /* Строгая геометрия без скруглений */
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
}

.btn--primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ЗАГОЛОВКИ */
.section-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 550px;
    margin-bottom: 30px;
}

/* -----------------------------------------
   ШАПКА САЙТА (HEADER)
----------------------------------------- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(10,10,10,0));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
    margin-left: 4px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav__link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--accent-gold);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Кнопка телефона */
.header__phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.header__phone-btn:hover {
    color: var(--accent-gold);
}

.phone-icon {
    width: 18px;
    height: 18px;
}

/* -----------------------------------------
   ГЛАВНЫЙ ЭКРАН (HERO)
----------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=1920&auto=format&fit=crop') no-repeat center center / cover;
    padding-top: 120px;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__subtitle {
    display: block;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero__description {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 45px;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__badge-icon {
    color: var(--accent-gold);
    font-size: 18px;
}

.hero__badge-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* -----------------------------------------
   БЛОК УСЛУГ (SERVICES)
----------------------------------------- */
.services {
    padding: 120px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.services__header {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

/* Блок интеграции каналов бронирования */
.services__booking-channels {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-channel {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    background-color: var(--bg-card);
    color: var(--text-light);
}

.btn-channel--yclients:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-channel--yandex:hover {
    border-color: #ffcc00; /* Цвет Яндекса */
    color: #ffcc00;
}

/* Грид и Карточки услуг */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card__img-wrapper {
    width: 35%;
    min-width: 150px;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Полный брутальный монохром */
    transition: var(--transition);
    opacity: 0.7;
}

.service-card:hover .service-card__img {
    filter: grayscale(30%);
    opacity: 1;
    scale: 1.03;
}

.service-card__content {
    width: 65%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card__price {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-gold);
    white-space: nowrap;
}

.service-card__desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.service-card__time {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card__link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-card__link:hover {
    color: var(--text-light);
}

/* -----------------------------------------
   АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
----------------------------------------- */

/* Экраны до 992px (Планшеты) */
@media (max-width: 992px) {
    .nav {
        display: none; /* Скрытие текстового меню, адаптация под лаконичную мобильную шапку */
    }

    .hero__title {
        font-size: 44px;
    }

    .services__grid {
        grid-template-columns: 1fr; /* Переход карт в один столбец */
    }
}

/* Экраны до 768px */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    .phone-number {
        display: none; /* Оставляем только иконку трубки на смартфонах ради места */
    }
    .header__phone-btn {
        padding: 10px;
        border: 1px solid rgba(255,255,255,0.1);
    }
}

/* Экраны до 576px (Мобильные телефоны) */
@media (max-width: 576px) {
    .header__actions .btn {
        padding: 10px 16px;
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        padding: 160px 0 80px 0;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__description {
        font-size: 15px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .services {
        padding: 80px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .service-card {
        flex-direction: column; /* Картинка становится сверху, текст снизу */
    }

    .service-card__img-wrapper {
        width: 100%;
        height: 200px;
    }

    .service-card__content {
        width: 100%;
        padding: 25px;
    }
}