:root {
    --dark: #17191c;
    --soft: #f4f1ea;
    --paper: #fffdf8;
    --wood: #a56b45;
    --wood-dark: #7f5030;
    --text: #2b2b2b;
    --muted: #717171;
    --line: #ded8cf;
    --radius: 24px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 58px);
    background: rgba(255, 253, 248, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
}
.brand small {
    font-weight: 500;
    color: var(--muted);
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
}
.nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 700;
}
.nav a {
    opacity: 0.78;
}
.nav a:hover,
.nav a.active {
    opacity: 1;
    color: var(--wood);
}
.header-phone {
    font-weight: 800;
}
.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--dark);
}
.section {
    padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 72px);
}
.section h2 {
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 22px;
}
.section h3 {
    font-size: 24px;
    line-height: 1.2;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--wood);
    font-size: 12px;
    font-weight: 900;
}
.lead {
    max-width: 850px;
    color: var(--muted);
    font-size: 19px;
}
.hero {
    min-height: calc(100vh - 70px);
    position: relative;
    display: grid;
    align-items: end;
    padding: 120px clamp(18px, 5vw, 72px) 70px;
    color: white;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28));
    z-index: 2;
}
.hero .bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.subhero {
    min-height: 520px;
}
.hero-content {
    position: relative;
    max-width: 860px;
    z-index: 3;
}
.hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.94;
    margin: 0 0 24px;
}
.hero p:not(.eyebrow) {
    max-width: 720px;
    font-size: 20px;
    color: #eee;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--wood);
    color: white;
    font-weight: 800;
    border: 1px solid var(--wood);
    cursor: pointer;
}
.btn:hover {
    background: var(--wood-dark);
}
.btn.secondary {
    background: transparent;
    color: var(--wood);
}
.btn.secondary:hover {
    background: var(--wood);
    color: #fff;
}
.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    overflow: hidden;
}
.benefits article {
    padding: 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.benefits strong {
    display: block;
    line-height: 1.3;
    margin-bottom: 6px;
    font-size: 22px;
}
.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}
.split img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}
.soft {
    background: var(--soft);
}
.dark {
    background: #202123;
    color: white;
}
.dark p,
.dark li {
    color: #ddd;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.card {
    background: white;
    border: 1px solid var(--line);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.dark .card {
    background: #2b2d31;
    border-color: #3b3d42;
}
.model-grid,
.gallery,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px;
}
.model-card {
    position: relative;
    min-height: 430px;
    border-radius: var(--radius);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow);
    background: #222;
}
.model-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.model-card:hover img {
    transform: scale(1.05);
}
.model-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05));
}
.model-card div {
    position: relative;
    z-index: 1;
    padding: 26px;
    width: 100%;
}
.model-card h3 {
    margin: 6px 0 8px;
    font-size: 32px;
}
.model-card p {
    margin: 0;
    color: #eee;
    font-size: 14px;
}
.model-card p.price {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.125rem;
}
.gallery {
    grid-template-columns: repeat(4, 1fr);
}
.gallery figure {
    margin: 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    background: #111;
}
.gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.gallery figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: white;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
    font-weight: 800;
}
.spec, .side table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}
.spec, .side table th,
.spec, .side table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}
.checks {
    padding: 0;
    list-style: none;
}
.checks li {
    margin: 10px 0;
}
.checks li:before {
    content: "✓";
    color: #d6a06c;
    font-weight: 900;
    margin-right: 10px;
}
.stats {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    padding: 36px;
    border-radius: var(--radius);
    background: var(--dark);
    color: white;
}
.stats strong {
    font-size: 46px;
    color: #d6a06c;
    line-height: 1;
}
.contact {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}
.contact-box {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--soft);
}
.form {
    display: grid;
    gap: 16px;
    background: var(--soft);
    padding: 28px;
    border-radius: var(--radius);
}
label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}
input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    font: inherit;
    background: white;
}
.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    font-weight: 500;
    color: var(--muted);
}
.consent input {
    width: auto;
    margin-top: 7px;
}
.cta {
    text-align: center;
    background: var(--dark);
    color: white;
}
.cta h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.breadcrumbs {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}
.content p,
.content li {
    max-width: 920px;
}
.nosplit {
    .text_block {
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }
}
.footer {
    
    padding: 36px clamp(18px, 5vw, 72px);
    background: var(--dark);
    color: white;
}
footer .limited {
display: flex;
    align-items: flex-start;
    gap: 30px;
    justify-content: space-between;
}
.footer p {
    color: #bbb;
}
.footer nav {
    display: flex;
    gap: 3rem;
    color: #ddd;
    flex-wrap: wrap;
}
@media (max-width: 1160px) {
    .nav {
        position: fixed;
        inset: 70px 14px auto 14px;
        display: none;
        flex-direction: column;
        padding: 22px;
        background: white;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }
    .nav.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .header-phone {
        display: none;
    }
    .benefits,
    .model-grid,
    .grid-3,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .split,
    .contact,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        min-height: 740px;
    }
    .subhero {
        min-height: 460px;
    }
}
@media (max-width: 640px) {
    .site-header {
        padding: 12px 16px;
    }
    .brand-mark {
        width: 36px;
        height: 36px;
    }
    .section {
        padding: 58px 18px;
    }
    .hero {
        min-height: 720px;
        padding-top: 90px;
    }
    .subhero {
        min-height: 420px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero p:not(.eyebrow) {
        font-size: 17px;
    }
    .benefits,
    .model-grid,
    .grid-3,
    .gallery,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .benefits {
        margin-top: 46px;
    }
    .benefits article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .model-card {
        min-height: 360px;
    }
    .footer .limited {
        flex-direction: column;
    }
    .footer nav {
        flex-direction: column;
        gap: 10px;
    }
    .spec, .side table {
        font-size: 14px;
    }
    .spec, .side table th,
    .spec, .side table td {
        padding: 12px;
    }
}
