:root {
    --bg-dark: #111111;
    --bg-dark-soft: #171717;
    --bg-light: #f6f1e8;
    --bg-light-soft: #fbf8f1;
    --text-dark: #181818;
    --text-light: #f4ede2;
    --text-muted: #cbbda5;
    --accent: #c8a66a;
    --accent-strong: #d7b77b;
    --border-dark: rgba(200, 166, 106, 0.28);
    --border-light: rgba(24, 24, 24, 0.08);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.16);
    --container: 1200px;
    --radius: 20px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light-soft);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.brand-title {
    color: var(--accent-strong);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    margin-top: 0.3rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

    .main-nav a {
        color: var(--text-light);
        font-weight: 500;
        transition: color var(--transition);
    }

        .main-nav a:hover {
            color: var(--accent-strong);
        }

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.phone-link {
    color: var(--accent-strong);
    font-weight: 700;
    white-space: nowrap;
}

.language-switcher {
    display: flex;
    gap: 0.7rem;
}

    .language-switcher a,
    .footer-languages a {
        color: var(--text-light);
        font-weight: 700;
        transition: color var(--transition);
    }

        .language-switcher a:hover,
        .footer-languages a:hover {
            color: var(--accent-strong);
        }

.hero-section {
    background: linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.78)), radial-gradient(circle at top right, rgba(200, 166, 106, 0.18), transparent 30%), linear-gradient(135deg, #151515, #0e0e0e);
    color: var(--text-light);
    padding: 5rem 0 4rem;
}

.hero-overlay {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 0.9rem;
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-content h1 {
    margin: 0 0 1.2rem;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    line-height: 1.08;
    font-family: Georgia, "Times New Roman", serif;
}

.hero-text {
    max-width: 42rem;
    margin: 0 0 1.6rem;
    color: #e8dcc8;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    background: var(--accent);
    color: #111111;
    border: 1px solid var(--accent);
}

    .button-primary:hover {
        background: var(--accent-strong);
        border-color: var(--accent-strong);
    }

.button-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}

    .button-secondary:hover {
        border-color: var(--accent-strong);
        color: var(--accent-strong);
    }

.hero-benefits {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

    .hero-benefits li {
        position: relative;
        padding-left: 1.4rem;
        color: #e8dcc8;
    }

        .hero-benefits li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-strong);
            font-weight: 800;
        }

.hero-visual img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-dark);
}

.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-dark {
    background: radial-gradient(circle at top left, rgba(200, 166, 106, 0.08), transparent 25%), linear-gradient(135deg, #151515, #101010);
    color: var(--text-light);
}

    .section-dark h2,
    .section-dark h3,
    .section-dark p {
        color: var(--text-light);
    }

.section h2 {
    margin: 0 0 1.2rem;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    font-family: Georgia, "Times New Roman", serif;
}

.section-text,
.section-intro {
    font-size: 1.05rem;
    color: inherit;
}

.center {
    text-align: center;
}

.narrow-text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.check-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

    .check-list li {
        position: relative;
        padding-left: 1.7rem;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-strong);
            font-weight: 800;
        }

.cards-grid {
    display: grid;
    gap: 1.2rem;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.service-card {
    padding: 1.6rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

    .service-card:hover {
        transform: translateY(-4px);
        border-color: var(--accent-strong);
        background: rgba(255, 255, 255, 0.04);
    }

    .service-card h3 {
        margin-top: 0;
        margin-bottom: 0.7rem;
        color: var(--accent-strong);
        font-size: 1.25rem;
    }

.gallery-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.04);
    }

.steps-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.step-card {
    position: relative;
    padding: 1.8rem 1.4rem 1.4rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
}

.step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #111111;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin: 0 0 0.7rem;
    color: var(--accent-strong);
}

.section-contact {
    background: linear-gradient(180deg, #f5efe5 0%, #efe7da 100%);
}

.contact-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-content h2 {
    margin-top: 0;
}

.contact-info {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0;
}

.contact-line {
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-map {
    min-height: 100%;
}

.map-placeholder {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(rgba(17, 17, 17, 0.35), rgba(17, 17, 17, 0.35)), linear-gradient(135deg, #d9ccb4, #bfa57b);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
}

.site-footer {
    background: #111111;
    color: var(--text-light);
    border-top: 1px solid var(--border-dark);
    padding: 1.4rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .footer-block a {
        color: var(--text-light);
    }

        .footer-block a:hover {
            color: var(--accent-strong);
        }

@media (max-width: 1100px) {
    .hero-grid,
    .two-column,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual img {
        height: 420px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .main-nav {
        gap: 0.9rem;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .section {
        padding: 4rem 0;
    }

    .services-grid,
    .gallery-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual img,
    .image-card img {
        height: 320px;
    }

    .contact-card {
        padding: 1.4rem;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .button {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .brand-title {
        font-size: 1.45rem;
    }

    .phone-link {
        font-size: 0.95rem;
    }
}
