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

:root {
    --mlt-pine: #1f4529;
    --mlt-moss: #3a7d4f;
    --mlt-gold: #c9a227;
    --mlt-print: #14231a;
    --mlt-fog: #5d7166;
    --mlt-rail: #dde8e0;
    --mlt-canvas: #fbfdfb;
    --mlt-field: #eaf2ec;
    --mlt-card: #ffffff;
    --mlt-shadowland: #0e1c13;
    --mlt-face-ui: Verdana, Geneva, sans-serif;
    --mlt-face-serif: "Times New Roman", Times, serif;
    --mlt-arc-s: 5px;
    --mlt-arc-m: 11px;
    --mlt-arc-l: 19px;
    --mlt-lift-1: 0 7px 19px rgba(20, 35, 26, .08);
    --mlt-lift-2: 0 15px 38px rgba(20, 35, 26, .13);
    --mlt-lift-3: 0 25px 58px rgba(14, 28, 19, .19);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--mlt-face-serif);
    background:
        linear-gradient(200deg, rgba(201, 162, 39, .11) 0%, transparent 27%),
        linear-gradient(180deg, #fbfdfb 0%, #eaf2ec 100%);
    color: var(--mlt-print);
    line-height: 1.76;
    font-size: 17px;
}

a {
    color: var(--mlt-pine);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover { color: var(--mlt-gold); }

.mlt-ridge {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 20px;
    background: rgba(251, 253, 251, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31, 69, 41, .18);
}
.mlt-ridge__zone {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}
.mlt-ridge__name {
    font-family: var(--mlt-face-ui);
    font-size: 20px;
    letter-spacing: .17em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--mlt-pine);
}

.mlt-lead {
    padding: 72px 20px 44px;
    text-align: center;
}
.mlt-lead__flag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: var(--mlt-arc-s);
    border: 1px solid rgba(201, 162, 39, .55);
    background: #f7f3e4;
    font-family: var(--mlt-face-ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mlt-pine);
    margin-bottom: 18px;
}
.mlt-lead__title {
    max-width: 840px;
    margin: 0 auto 14px;
    font-size: clamp(29px, 5vw, 52px);
    line-height: 1.12;
    color: var(--mlt-pine);
}
.mlt-lead__body {
    max-width: 660px;
    margin: 0 auto;
    color: var(--mlt-fog);
    font-size: 17px;
    line-height: 1.8;
}

.mlt-space {
    max-width: 970px;
    margin: 0 auto;
    padding: 0 20px 86px;
}
.mlt-page {
    background: var(--mlt-card);
    border: 1px solid var(--mlt-rail);
    border-radius: var(--mlt-arc-l);
    box-shadow: var(--mlt-lift-2);
    padding: 50px 54px;
}
@media (max-width: 740px) {
    .mlt-page { padding: 28px 20px; border-radius: 14px; }
    .mlt-lead { padding-top: 54px; }
}

.mlt-page h2 {
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.2;
    color: var(--mlt-pine);
    margin: 36px 0 6px;
}
.mlt-page h2:first-child { margin-top: 0; }
.mlt-page h2 + .mlt-underline { margin-bottom: 16px; }
.mlt-underline {
    height: 1px;
    background: linear-gradient(90deg, var(--mlt-gold) 0%, var(--mlt-rail) 45%, transparent 100%);
    margin: 0 0 16px;
}
.mlt-page h3 {
    font-family: var(--mlt-face-ui);
    font-size: 15px;
    letter-spacing: .03em;
    line-height: 1.4;
    color: var(--mlt-print);
    margin: 22px 0 10px;
}
.mlt-page p {
    color: var(--mlt-fog);
    margin-bottom: 15px;
}
.mlt-page ul,
.mlt-page ol {
    padding-left: 22px;
    margin: 0 0 16px;
    color: var(--mlt-fog);
}
.mlt-page li { margin-bottom: 7px; }
.mlt-page strong { color: var(--mlt-print); }

.mlt-preview {
    margin: 0 0 30px;
    padding: 22px 24px;
    background: var(--mlt-field);
    border-radius: var(--mlt-arc-m);
    border: 1px solid var(--mlt-rail);
}
.mlt-preview__cap {
    font-family: var(--mlt-face-ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--mlt-moss);
    margin-bottom: 10px;
}
.mlt-preview ol {
    margin: 0;
    padding-left: 20px;
}
.mlt-preview li {
    font-size: 15px;
    color: var(--mlt-fog);
}

.mlt-caution {
    margin: 26px 0;
    padding: 20px 22px;
    border-radius: var(--mlt-arc-m);
    background: #f8f4e6;
    border-top: 3px solid var(--mlt-gold);
    border-bottom: 1px solid var(--mlt-rail);
}
.mlt-caution p { margin: 0; color: var(--mlt-print); }

.mlt-list {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 26px;
    background: var(--mlt-card);
}
.mlt-list th {
    background: var(--mlt-pine);
    color: #f4f1e2;
    text-align: left;
    padding: 13px 16px;
    font-family: var(--mlt-face-ui);
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.mlt-list td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--mlt-rail);
    color: var(--mlt-fog);
    font-size: 16px;
}
.mlt-list tr:nth-child(even) td { background: #f6faf7; }
.mlt-list tr:last-child td { border-bottom: none; }

.mlt-order {
    margin: 26px 0;
    counter-reset: mltCount;
    list-style: none;
    padding: 0;
}
.mlt-order__step {
    counter-increment: mltCount;
    position: relative;
    padding: 4px 0 20px 54px;
    border-left: 2px solid var(--mlt-rail);
    margin-left: 16px;
}
.mlt-order__step:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}
.mlt-order__step::before {
    content: counter(mltCount);
    position: absolute;
    left: -17px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mlt-moss);
    color: #fff;
    font-family: var(--mlt-face-ui);
    font-size: 14px;
    font-weight: 900;
}
.mlt-order__name {
    font-family: var(--mlt-face-ui);
    font-size: 15px;
    font-weight: 900;
    color: var(--mlt-print);
    margin-bottom: 4px;
}
.mlt-order__text {
    font-size: 16px;
    color: var(--mlt-fog);
}

.mlt-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin: 26px 0;
}
.mlt-box {
    padding: 20px 18px;
    background: var(--mlt-field);
    border-radius: var(--mlt-arc-m);
    border-left: 3px solid var(--mlt-gold);
}
.mlt-box__title {
    font-family: var(--mlt-face-ui);
    font-size: 14px;
    font-weight: 900;
    color: var(--mlt-pine);
    margin-bottom: 6px;
}
.mlt-box__text {
    font-size: 15px;
    line-height: 1.66;
    color: var(--mlt-fog);
}

.mlt-base {
    margin-top: 40px;
    background: var(--mlt-field);
    color: var(--mlt-fog);
    padding: 20px 20px 16px;
    font-family: var(--mlt-face-ui);
    text-align: center;
    border-top: 1px solid var(--mlt-rail);
}
.mlt-base__zone {
    max-width: 900px;
    margin: 0 auto;
}
.mlt-base__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    margin-bottom: 10px;
}
.mlt-base__nav a {
    color: var(--mlt-moss);
    font-size: 11px;
}
.mlt-base__nav a:hover { color: var(--mlt-gold); }
.mlt-base__copy {
    font-size: 11px;
    color: var(--mlt-fog);
}
