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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #eee;
    background: #0f0c08;
}

/* HERO - твоя фотка roof.jpeg */
.hero {
    height: 100vh;
    min-height: 620px;
    background: 
        linear-gradient(rgba(5, 4, 3, 0.82), rgba(15, 10, 6, 0.90)),
        url('roof.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 920px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.3rem;
    margin-bottom: 18px;
    color: #f0d9b0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.85);
}

.hero p {
    font-size: 1.45rem;
    margin-bottom: 35px;
    color: #e0d0b0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    background: #9c4a1f;
    color: white;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(156, 74, 31, 0.5);
}

.btn:hover {
    background: #b5652a;
    transform: translateY(-4px);
}

.small {
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* СЕКЦИИ */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #f5e8c7;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #2a2118;
    padding: 35px 25px;
    width: 300px;
    min-height: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.55);
}

.card h3 {
    color: #d2a679;
    margin-bottom: 15px;
    font-size: 1.35rem;
}

/* Статистика */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    min-width: 180px;
}

.stat-item h3 {
    font-size: 3.4rem;
    color: #d2a679;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Контакты и футер */
.contacts {
    background: #1a120b;
}

.phone-link {
    color: #eee;
    text-decoration: none;
}

.phone-link:hover {
    color: #d2a679;
}

footer {
    background: #0c0805;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.25rem; }
    .card { width: 100%; max-width: 340px; }
}