:root {
    --couch-dark: #1a1a1b;
    --gold-silk: #e2b07a;
    --menu-bg: rgba(255, 255, 255, 0.95);
}

/* Главная страница — только hero-блок */

.hero-bg {
    background-color: var(--couch-dark);
    padding: 90px 0 110px; /* ровная высота, не влияет на меню */
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 176, 122, 0.12) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    opacity: 0.8;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-logo img {
    height: 300px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(226, 176, 122, 0.15));
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
}

.hero-content h1 span {
    display: block;
    font-weight: 200;
    font-size: 3rem;
    letter-spacing: 15px;
    margin-bottom: 10px;
    color: var(--gold-silk);
}

.hero-slogan {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    margin-top: 30px;
    color: #b8b8b8;
}
