<!DOCTYPE html>


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

        :root {
            --gold: #F5A800;
            --gold-dark: #C88000;
            --brown: #3B2007;
            --brown-mid: #5C3310;
            --cream: #FDF6E3;
            --gray-light: #F4F1EB;
            --gray: #7A6A55;
            --text: #2A1A08;
            --white: #FFFFFF;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--text);
            line-height: 1.6;
        }

        /* ── TOP BAR ── */
        .topbar {
            background: var(--brown);
            color: var(--gold);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 0;
        }
        .topbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .topbar a { color: var(--gold); text-decoration: none; }
        .topbar a:hover { color: #fff; }
        .topbar-contacts { display: flex; gap: 24px; align-items: center; }
        .topbar-contacts span { display: flex; align-items: center; gap: 6px; color: #e8d5a0; }

        /* ── HEADER ── */
        header {
            background: var(--white);
            border-bottom: 3px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(59,32,7,0.10);
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 80px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }
        .logo img {
            height: 64px;
            width: 64px;
            object-fit: contain;
            border-radius: 50%;
        }
        .logo-text { line-height: 1.1; }
        .logo-title {
            font-size: 22px;
            font-weight: 900;
            color: var(--brown);
            letter-spacing: -0.5px;
        }
        .logo-title span { color: var(--gold-dark); }
        .logo-sub {
            font-size: 11px;
            font-weight: 700;
            color: var(--gray);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav { display: flex; gap: 4px; flex-wrap: wrap; }
        nav a {
            font-size: 13px;
            font-weight: 600;
            color: var(--brown-mid);
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        nav a:hover { background: var(--gold); color: var(--brown); }

        .header-cta {
            background: var(--gold);
            color: var(--brown);
            font-weight: 800;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s, transform 0.15s;
            border: none;
            cursor: pointer;
        }
        .header-cta:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }

        /* ── HERO ── */
        .hero {
            background: linear-gradient(135deg, #3B2007 0%, #5C3310 40%, #7A4A1A 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 24px 90px;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://storage.yandexcloud.net/timenote/tmp/8fc610b5fe755a5b60e0f8a93d6cd5879e971eafe17398df31ae737ac1e98380.jpg') center/cover no-repeat;
            opacity: 0.08;
        }
        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 60px;
            align-items: center;
            position: relative;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245,168,0,0.15);
            border: 1px solid rgba(245,168,0,0.4);
            color: var(--gold);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 20px;
        }
        .hero h1 {
            font-size: clamp(32px, 5vw, 58px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .hero h1 span { color: var(--gold); }
        .hero-desc {
            font-size: 17px;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 520px;
        }
        .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
        .btn-primary {
            background: var(--gold);
            color: var(--brown);
            font-weight: 800;
            font-size: 15px;
            padding: 14px 30px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, transform 0.15s;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover { background: #ffbe2e; transform: translateY(-2px); }
        .btn-outline {
            background: transparent;
            color: var(--gold);
            font-weight: 700;
            font-size: 15px;
            padding: 13px 28px;
            border-radius: 10px;
            text-decoration: none;
            border: 2px solid rgba(245,168,0,0.5);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: border-color 0.2s, background 0.2s;
        }
        .btn-outline:hover { border-color: var(--gold); background: rgba(245,168,0,0.1); }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 44px;
            flex-wrap: wrap;
        }
        .hero-stat { text-align: left; }
        .hero-stat-num {
            font-size: 32px;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }
        .hero-stat-label {
            font-size: 12px;
            color: #fff;
            font-weight: 600;
            margin-top: 4px;
        }

        /* Hero form card */
        .hero-card {
            background: var(--white);
            border-radius: 16px;
            padding: 36px 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.35);
        }
        .hero-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--brown);
            margin-bottom: 6px;
        }
        .hero-card p {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 24px;
        }
        .form-group { margin-bottom: 14px; }
        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--brown-mid);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .form-group input, .form-group select {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid #ddd5c0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            color: var(--text);
            background: var(--cream);
            transition: border-color 0.2s;
            outline: none;
        }
        .form-group input:focus, .form-group select:focus { border-color: var(--gold); }
        .form-submit {
            width: 100%;
            background: var(--gold);
            color: var(--brown);
            font-weight: 800;
            font-size: 15px;
            padding: 14px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            margin-top: 8px;
            transition: background 0.2s;
            font-family: 'Montserrat', sans-serif;
        }
        .form-submit:hover { background: var(--gold-dark); color: #fff; }
        .form-note {
            font-size: 11px;
            color: #aaa;
            text-align: center;
            margin-top: 10px;
        }

        /* ── SECTION COMMON ── */
        section { padding: 80px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-label {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 10px;
        }
        .section-title {
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 900;
            color: var(--brown);
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .section-title span { color: var(--gold-dark); }
        .section-desc {
            font-size: 16px;
            color: var(--gray);
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 48px;
        }

        /* ── CATALOG ── */
        .catalog-bg { background: var(--white); }
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .catalog-card {
            background: var(--cream);
            border: 1.5px solid #e8dcc8;
            border-radius: 14px;
            padding: 24px 20px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }
        .catalog-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 28px rgba(200,128,0,0.15);
            transform: translateY(-3px);
        }
        .catalog-card-icon {
            width: 48px;
            height: 48px;
            background: var(--gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--brown);
        }
        .catalog-card-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--brown);
            line-height: 1.3;
        }
        .catalog-card-desc {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.5;
        }
        .catalog-card-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--gold-dark);
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: auto;
        }

        /* ── SIZES ── */
        .sizes-bg { background: var(--gray-light); }
        .sizes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 16px;
        }
        .size-card {
            background: var(--white);
            border: 1.5px solid #e0d4bc;
            border-radius: 12px;
            padding: 22px 18px;
            text-align: center;
            text-decoration: none;
            transition: border-color 0.2s, transform 0.2s;
        }
        .size-card:hover { border-color: var(--gold); transform: translateY(-2px); }
        .size-card-size {
            font-size: 28px;
            font-weight: 900;
            color: var(--brown);
            line-height: 1;
        }
        .size-card-unit {
            font-size: 13px;
            color: var(--gray);
            font-weight: 600;
            margin-top: 4px;
        }
        .size-card-link {
            font-size: 12px;
            font-weight: 700;
            color: var(--gold-dark);
            margin-top: 10px;
            display: block;
        }

        /* ── WHY US ── */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 24px;
        }
        .why-card {
            background: var(--white);
            border-radius: 14px;
            padding: 28px 24px;
            border-left: 4px solid var(--gold);
        }
        .why-icon {
            font-size: 28px;
            color: var(--gold-dark);
            margin-bottom: 14px;
        }
        .why-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--brown);
            margin-bottom: 8px;
        }
        .why-text { font-size: 14px; color: var(--gray); line-height: 1.6; }

        /* ── PROCESS ── */
        .process-bg { background: var(--brown); }
        .process-bg .section-title { color: var(--white); }
        .process-bg .section-desc { color: #b09070; }
        .process-bg .section-label { color: var(--gold); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
        }
        .process-step {
            text-align: center;
            padding: 24px 16px;
        }
        .process-num {
            width: 56px;
            height: 56px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: var(--brown);
            margin: 0 auto 16px;
        }
        .process-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }
        .process-text { font-size: 13px; color: #b09070; line-height: 1.5; }

        /* ── REVIEWS ── */
        .reviews-bg { background: var(--gray-light); }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .review-card {
            background: var(--white);
            border-radius: 14px;
            padding: 28px 24px;
            border: 1.5px solid #e8dcc8;
        }
        .review-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
        .review-text {
            font-family: 'PT Serif', serif;
            font-size: 15px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--brown);
            font-size: 16px;
        }
        .review-name { font-size: 14px; font-weight: 700; color: var(--brown); }
        .review-location { font-size: 12px; color: var(--gray); }

        /* ── CTA BANNER ── */
        .cta-banner {
            background: linear-gradient(135deg, var(--gold) 0%, #ffbe2e 100%);
            padding: 70px 24px;
        }
        .cta-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .cta-inner h2 {
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 900;
            color: var(--brown);
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .cta-inner p {
            font-size: 17px;
            color: var(--brown-mid);
            margin-bottom: 36px;
            line-height: 1.6;
        }
        .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .btn-dark {
            background: var(--brown);
            color: var(--gold);
            font-weight: 800;
            font-size: 15px;
            padding: 14px 30px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
        }
        .btn-dark:hover { background: #2a1505; }
        .btn-white {
            background: var(--white);
            color: var(--brown);
            font-weight: 700;
            font-size: 15px;
            padding: 13px 28px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(59,32,7,0.2);
            transition: background 0.2s;
        }
        .btn-white:hover { background: #f0e8d0; }

        /* ── FOOTER ── */
        footer {
            background: #fdf6e3;
            color: #b09070;
            padding: 60px 24px 30px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 280px 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 30px;
        }
        .footer-brand img {
            height: 70px;
            border-radius: 50%;
            margin-bottom: 14px;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            color: #9a8060;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 800;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: #9a8060;
            text-decoration: none;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--gold); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: #6a5040;
        }
        .footer-motto {
            font-size: 13px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ── MOBILE ── */
        @media (max-width: 900px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-card { max-width: 480px; }
            .footer-top { grid-template-columns: 1fr 1fr; }
            nav { display: none; }
        }
        @media (max-width: 600px) {
            .footer-top { grid-template-columns: 1fr; }
            .hero { padding: 50px 16px 60px; }
            section { padding: 56px 16px; }
        }

        /* ── DIVIDER ── */
        .divider {
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, var(--brown) 100%);
        }

        /* success toast */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--brown);
            color: var(--gold);
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .toast.show { transform: translateY(0); opacity: 1; }
    </style>

