/* Локальная типографика */
@font-face { font-family: "Montserrat"; src: url("../assets/fonts/montserrat-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../assets/fonts/montserrat-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../assets/fonts/montserrat-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../assets/fonts/montserrat-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "STIX Two Text"; src: url("../assets/fonts/stix-two-text-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "STIX Two Text"; src: url("../assets/fonts/stix-two-text-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "STIX Two Text"; src: url("../assets/fonts/stix-two-text-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "STIX Two Text"; src: url("../assets/fonts/stix-two-text-400-italic.ttf") format("truetype"); font-style: italic; font-weight: 400; font-display: swap; }

/* Дизайн-система: северный лес, тёплое дерево, минеральный свет */
:root {
  --paper: #f7f3ea;
  --paper-deep: #ece5d8;
  --surface: #fffdf7;
  --navy: #142a38;
  --navy-raised: #1b3443;
  --navy-soft: #274554;
  --ink: #29251f;
  --muted: #706b63;
  --cedar: #ac603e;
  --cedar-dark: #704333;
  --cedar-soft: #d39772;
  --moss: #747643;
  --line: rgba(41, 37, 31, .18);
  --line-light: rgba(255, 255, 255, .18);
  --image-line: rgba(41, 37, 31, .12);
  --container: 1360px;
  --header-height: 94px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 10px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 108px;
  --section-space: var(--space-8);
  --duration-fast: 140ms;
  --duration-base: 220ms;
  --duration-slow: 420ms;
  --ease-standard: cubic-bezier(.2, 0, 0, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in: cubic-bezier(.4, 0, 1, 1);
  --transition: var(--duration-base) var(--ease-standard);
  --display: "STIX Two Text", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shadow-soft: 0 12px 28px rgba(11, 29, 39, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.62; }
body.is-locked { overflow: hidden; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--display); font-weight: 400; letter-spacing: -.025em; }
h1 { line-height: .92; }
h2 { margin-bottom: 0; font-size: clamp(48px, 4.2vw, 64px); line-height: .98; }
h3 { line-height: 1.08; }
p { color: var(--muted); }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--cedar-soft); outline-offset: 4px; }

.container { width: min(calc(100% - var(--space-6)), var(--container)); margin-inline: auto; }
.section-pad { padding-top: var(--section-space); }
.section-pad-sm { padding-top: var(--space-6); }
.skip-link { position: fixed; z-index: 2000; top: 8px; left: 8px; padding: 10px 16px; border-radius: var(--radius-pill); color: #fff; background: var(--cedar); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: 18px; color: var(--cedar); font-family: var(--display); font-size: 16px; font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; }
.eyebrow::before { display: none; }
.eyebrow--light { color: #e7b99c; }
.hero .eyebrow,
.section-heading .eyebrow,
.catalog-card .eyebrow,
.production-card .eyebrow,
.community-card .eyebrow,
.installment-card .eyebrow,
.city-card .eyebrow { display: none; }
.label { display: inline-flex; width: fit-content; margin-bottom: 26px; padding: 8px 15px; border: 1px solid currentColor; border-radius: var(--radius-pill); color: var(--cedar); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.label--inverse { color: #e7b99c; }

/* Кнопки и поля */
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius-pill); background: transparent; cursor: pointer; font-size: 12px; font-weight: 600; line-height: 1; transition: color var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard); }
.button:hover,
.button:active { transform: none; }
.button:disabled { cursor: wait; opacity: .62; }
.button--dark { color: #fff; background: var(--cedar); }
.button--dark:hover { background: #8f4b31; }
.button--light { color: var(--ink); border-color: var(--line); }
.button--light:hover { border-color: var(--cedar); color: var(--cedar); }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* Шапка */
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-height); margin-bottom: calc(var(--header-height) * -1); background: transparent; transition: background-color var(--duration-base) var(--ease-standard); }
.site-header.is-scrolled { background: rgba(20, 42, 56, .97); }
.header-shell { display: flex; align-items: center; height: var(--header-height); padding: 0 6px; border-bottom: 1px solid var(--line-light); }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 144px; height: 48px; object-fit: contain; object-position: left center; filter: invert(1); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 2.6vw, 42px); flex: 1; }
.desktop-nav a { position: relative; padding: 10px 0; color: rgba(255, 255, 255, .7); font-size: 11px; font-weight: 500; white-space: nowrap; transition: color var(--transition); }
.desktop-nav a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--cedar-soft); transform: scaleX(0); transform-origin: left; transition: transform var(--duration-fast) var(--ease-standard); content: ""; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-contact { display: flex; align-items: center; justify-content: flex-end; width: 190px; }
.header-contact a { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 12px; font-weight: 500; white-space: nowrap; }
.header-contact svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: 20px; padding: 0; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; cursor: pointer; place-content: center; gap: 4px; }
.menu-toggle span { display: block; width: 17px; height: 1px; background: #fff; transition: transform var(--duration-base) var(--ease-standard), opacity var(--duration-fast) var(--ease-standard); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { position: absolute; top: var(--header-height); right: max(24px, calc((100vw - var(--container)) / 2)); left: max(24px, calc((100vw - var(--container)) / 2)); padding: 28px; border: 1px solid var(--line-light); border-radius: 0 0 var(--radius-lg) var(--radius-lg); background: var(--navy-raised); box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(-5px); pointer-events: none; transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-out); }
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a, .mobile-menu nav button { padding: 13px 0; border: 0; border-bottom: 1px solid var(--line-light); color: #fff; background: none; cursor: pointer; text-align: left; font-size: 15px; font-weight: 500; }
.mobile-phone { display: block; margin: 22px 0 16px; color: #fff; font-weight: 600; }

/* Первый экран */
.hero.section-pad-sm { position: relative; isolation: isolate; overflow: hidden; padding-top: 0; background: var(--navy); }
.hero.section-pad-sm::before,
.hero.section-pad-sm::after { position: absolute; inset: 0; content: ""; }
.hero.section-pad-sm::before { z-index: 0; background: url("../assets/images/hero-forest.webp") center 44% / cover no-repeat; filter: saturate(.78) contrast(.98) brightness(.76); transform: scale(1.002); }
.hero.section-pad-sm::after { z-index: 1; background: linear-gradient(90deg, rgba(20, 42, 56, .98) 0%, rgba(20, 42, 56, .91) 35%, rgba(20, 42, 56, .66) 61%, rgba(20, 42, 56, .58) 100%), linear-gradient(180deg, rgba(20, 42, 56, .14), rgba(20, 42, 56, .52)); }
.hero > .container { position: relative; z-index: 2; }
.hero-card { position: relative; height: 100vh; height: 100svh; min-height: 0; overflow: hidden; background: transparent; }
.hero-image { position: absolute; z-index: 2; top: 32px; right: clamp(18px, 4vw, 64px); bottom: auto; width: min(51%, 720px); height: calc(100% - 134px); min-height: 0; object-fit: contain; object-position: right center; filter: drop-shadow(0 20px 25px rgba(4, 14, 20, .25)); }
.hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; width: 57%; height: 100%; min-height: 0; padding: 44px 0 44px 48px; }
.hero .eyebrow { color: #e7b99c; }
.hero h1 { max-width: 620px; margin-bottom: 24px; color: #fff; font-size: clamp(52px, 5vw, 68px); line-height: .96; }
.hero-text { max-width: 460px; margin-bottom: 28px; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.62; }
.hero-content .button { min-width: 170px; }
.hero-content .button--light { min-width: 152px; color: rgba(255, 255, 255, .82); border-color: rgba(255, 255, 255, .28); }
.hero-content .button--light:hover { border-color: #fff; color: #fff; }
.stats-grid { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); height: 112px; margin-top: 0; border-top: 1px solid var(--line-light); background: transparent; }
.stat-card { display: grid; align-content: center; min-height: 112px; padding: 24px 36px; border-right: 1px solid var(--line-light); background: transparent; }
.stat-card:last-child { border-right: 0; }
.stat-card strong { color: #fff; font-family: var(--display); font-size: 25px; font-weight: 400; line-height: 1.1; }
.stat-card span { margin-top: 7px; color: rgba(255, 255, 255, .48); font-size: 10px; }

/* Акционное предложение */
.promo-card { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr); min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: var(--cedar-dark); }
.promo-card > img { position: static; width: 100%; height: 100%; min-height: 520px; border: 0; border-radius: 0; object-fit: cover; object-position: right center; filter: saturate(.84) contrast(.95) brightness(.94); }
.promo-overlay { display: none; }
.promo-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 46px; border-left: 1px solid rgba(255, 255, 255, .1); background: var(--cedar-dark); }
.promo-content .label { color: #f0c3a5; }
.promo-content h2 { max-width: 520px; margin-bottom: 22px; color: #fff; font-size: clamp(37px, 3.2vw, 49px); line-height: 1; }
.promo-content p { max-width: 460px; margin-bottom: 27px; color: rgba(255, 255, 255, .7); font-size: 13px; }
.promo-content .button { align-self: flex-start; max-width: 100%; color: #fff; border-color: rgba(255, 255, 255, .34); }
.promo-content .button:hover { border-color: #fff; }

/* Заголовки секций */
.section-heading { margin-bottom: var(--space-6); padding: 0; background: transparent; }
.section-heading h2 { max-width: 980px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); align-items: end; gap: 80px; }
.section-heading--split > p { max-width: 420px; margin: 0 0 3px; font-size: 14px; line-height: 1.65; }
.section-heading--controls { display: flex; align-items: end; justify-content: space-between; gap: 40px; }

/* Калькулятор */
.quiz-card { padding: var(--space-6) 52px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: 0 14px 32px rgba(54, 43, 31, .045); }
.quiz-progress { height: 2px; overflow: hidden; background: rgba(41, 37, 31, .1); }
.quiz-progress span { display: block; width: 20%; height: 100%; background: var(--cedar); transition: width 240ms var(--ease-standard); }
.quiz-meta { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin: var(--space-5) 0; }
.quiz-meta strong { color: var(--ink); font-family: var(--display); font-size: 27px; font-weight: 400; }
.quiz-meta span { color: var(--muted); font-size: 10px; }
.option-grid { display: grid; gap: var(--space-2); }
.option-grid--3 { grid-template-columns: repeat(3, 1fr); }
.option-grid--2 { grid-template-columns: repeat(2, 1fr); }
.option-grid--extras { grid-template-columns: repeat(4, 1fr); }
.option-grid--models { grid-auto-flow: column; grid-auto-columns: minmax(210px, 1fr); overflow-x: auto; overflow-y: hidden; padding: 1px 1px 12px; scroll-behavior: smooth; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: thin; scrollbar-color: rgba(41, 37, 31, .24) transparent; }
.choice-card { position: relative; display: block; min-height: 132px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(247, 243, 234, .28); cursor: pointer; transition: border-color var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard); }
.choice-card:hover { border-color: var(--cedar); transform: none; }
.choice-card input { position: absolute; z-index: 2; top: 18px; right: 18px; width: 17px; height: 17px; accent-color: var(--cedar); }
.choice-card > span { display: grid; align-content: end; min-height: 132px; padding: 22px; }
.choice-card b { font-family: var(--display); font-size: 21px; font-weight: 400; }
.choice-card small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.choice-card:has(input:checked) { border-color: var(--cedar); background: rgba(172, 96, 62, .08); }
.choice-card--image { min-height: 360px; }
.choice-card--image img { width: 100%; height: 250px; object-fit: cover; }
.choice-card--image > span { min-height: 110px; }
.choice-card--model { min-height: 248px; scroll-snap-align: start; }
.choice-card--model img { width: 100%; height: 172px; object-fit: cover; filter: saturate(.76) contrast(.96); }
.choice-card--model > span { align-content: center; min-height: 74px; padding: 14px 42px 14px 16px; }
.choice-card--model b { font-size: 18px; line-height: 1.15; }
.choice-card--messenger > span { align-content: center; }
.choice-card--compact { min-height: 90px; }
.choice-card--compact > span { min-height: 90px; padding: 18px 42px 18px 18px; }
.choice-card--compact b { font-family: var(--sans); font-size: 12px; font-weight: 500; line-height: 1.35; }
.choice-card--compact input { top: 15px; right: 15px; }
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-fields label, .inline-form > label:not(.consent-field), .modal-form > label:not(.consent-field) { display: grid; gap: 8px; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.contact-fields input, .inline-form > label:not(.consent-field) input, .modal-form > label:not(.consent-field) input { width: 100%; min-height: 54px; padding: 14px 17px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--ink); background: rgba(255, 255, 255, .72); font-size: 13px; }
.contact-fields input:focus, .inline-form > label:not(.consent-field) input:focus, .modal-form > label:not(.consent-field) input:focus { border-color: var(--cedar); outline: 0; }
.consent-field { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: start; gap: 11px; margin-top: 18px; color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--cedar); }
.consent-field a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(41, 37, 31, .3); text-underline-offset: 3px; }
.consent-field a:hover { text-decoration-color: currentColor; }
.consent-field--inverse { color: rgba(255, 255, 255, .62); }
.consent-field--inverse a { color: #fff; text-decoration-color: rgba(255, 255, 255, .35); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; min-height: 0 !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-note { margin: 14px 0 0; font-size: 10px; }
.form-note--inverse { color: rgba(255, 255, 255, .58); }
.form-error { min-height: 20px; margin: 14px 0 0; color: #9a392d; font-size: 11px; }
.quiz-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-4); }

/* Модельный ряд */
#models { margin-top: var(--section-space); padding: 100px 0 104px; background: var(--navy); }
#models .section-heading h2, #models .section-heading .eyebrow { color: #fff; }
#models .section-heading .eyebrow { color: #e7b99c; }
.slider-controls { display: flex; overflow: hidden; border: 1px solid var(--line-light); border-radius: var(--radius-pill); }
.slider-controls button { width: 58px; height: 46px; border: 0; border-right: 1px solid var(--line-light); color: #fff; background: transparent; cursor: pointer; font-size: 16px; transition: background-color var(--transition); }
.slider-controls button:last-child { border-right: 0; }
.slider-controls button:hover { background: var(--cedar); }
.card-slider { display: grid; grid-auto-columns: 400px; grid-auto-flow: column; gap: 16px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; padding-bottom: 4px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.card-slider::-webkit-scrollbar { display: none; }
.model-card { overflow: hidden; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: var(--navy-raised); scroll-snap-align: start; }
.model-card__media { position: relative; height: 340px; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line-light); background: #d2d9d7; }
.model-card__media::after { position: absolute; z-index: 1; inset: 0; box-shadow: inset 0 0 0 1px rgba(20, 42, 56, .08); pointer-events: none; content: ""; }
.model-card { transition: border-color var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard); }
.model-card img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; filter: saturate(.74) contrast(.95) brightness(.98); transition: transform var(--duration-slow) var(--ease-out); }
.model-card:hover { border-color: rgba(255, 255, 255, .32); }
.model-card:hover img { transform: scale(1.015); }
.model-card__body { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto auto 1fr; column-gap: var(--space-3); min-height: 228px; padding: var(--space-4) 26px; }
.model-card__body > span { grid-column: 1 / -1; color: var(--cedar-soft); font-size: 9px; font-weight: 600; }
.model-card__body h3 { grid-column: 1 / -1; align-self: start; margin: var(--space-2) 0 0; color: #fff; font-size: 24px; }
.model-card__price { align-self: end; margin: 19px 0 0; color: var(--cedar-soft); font-family: var(--display); font-size: 20px; font-weight: 500; line-height: 1.15; }
.model-card__body button { position: static; align-self: end; justify-self: end; margin-top: 19px; padding: 0 0 4px; border: 0; border-bottom: 1px solid var(--line-light); color: rgba(255, 255, 255, .7); background: none; cursor: pointer; font-size: 10px; transition: color var(--transition), border-color var(--transition); }
.model-card__body button:hover { color: #fff; border-color: #fff; }
.model-card__facts { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); align-self: end; margin: 24px 0 0; padding: 17px 0 0; border-top: 1px solid var(--line-light); list-style: none; }
.model-card__facts li { min-width: 0; padding: 0 10px; border-left: 1px solid var(--line-light); }
.model-card__facts li:first-child { padding-left: 0; border-left: 0; }
.model-card__facts li:last-child { padding-right: 0; }
.model-card__facts span, .model-card__facts strong { display: block; overflow-wrap: anywhere; }
.model-card__facts span { margin-bottom: 6px; color: rgba(255, 255, 255, .48); font-size: 8px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.model-card__facts strong { color: #fff; font-size: 10px; font-weight: 500; line-height: 1.35; }

/* Галерея впечатлений */
.feelings-gallery { display: grid; grid-auto-columns: minmax(600px, 72%); grid-auto-flow: column; gap: 18px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; padding-bottom: 4px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.feelings-gallery::-webkit-scrollbar { display: none; }
.feeling-card { position: relative; min-width: 0; height: 520px; overflow: hidden; border: 1px solid var(--image-line); border-radius: var(--radius-md); color: #fff; background: var(--navy); scroll-snap-align: start; }
.feeling-card::after { position: absolute; z-index: 1; inset: 28% 0 0; background: linear-gradient(180deg, transparent, rgba(8, 24, 33, .86)); content: ""; pointer-events: none; }
.feeling-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(.97) brightness(.9); }
.feeling-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 24px; padding: 38px 42px; }
.feeling-card > div > span { grid-row: 1 / 3; padding-top: 7px; color: var(--cedar-soft); font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.feeling-card h3 { margin: 0 0 7px; color: #fff; font-size: 36px; }
.feeling-card p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.55; }

/* Типы установок */
.types-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: var(--space-5); align-items: start; }
.type-card { min-width: 0; background: transparent; }
.type-card:nth-child(2) { margin-top: 64px; }
.type-card img { width: 100%; height: 460px; border: 1px solid var(--image-line); border-radius: var(--radius-md); object-fit: cover; filter: saturate(.76) contrast(.95) brightness(.95); box-shadow: 0 16px 34px rgba(37, 31, 24, .055); }
.type-card > div { padding: var(--space-4) 4px 0; }
.type-card h3 { max-width: 520px; margin-bottom: 13px; font-size: 31px; }
.type-card p { max-width: 520px; margin-bottom: 0; font-size: 13px; }

/* Преимущества на тёмном поле */
#about { margin-top: var(--section-space); padding: 96px 0 100px; background: var(--navy); }
#about .section-heading { text-align: left; }
#about .section-heading h2 { color: #fff; }
#about .section-heading .eyebrow { color: #e7b99c; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.benefit-card { position: relative; min-height: 252px; padding: 38px 60px 42px 0; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: transparent; }
.benefit-card:nth-child(2n) { border-right: 0; }
.benefit-card:nth-child(2n) { padding-right: 0; padding-left: 60px; }
.benefit-card:nth-last-child(-n+2) { border-bottom: 0; }
.benefit-icon { display: block; margin-bottom: 44px; color: var(--cedar-soft); font-size: 11px; font-weight: 600; }
.benefit-card h3 { max-width: 430px; margin: 0 0 18px; color: #fff; font-size: 34px; }
.benefit-card p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .66); font-size: 15px; line-height: 1.65; }
.type-card img { height: 500px; object-position: center 52%; filter: saturate(.68) contrast(.98) brightness(.94); }
.type-card:nth-child(2) img { height: 440px; border-radius: var(--radius-md); object-position: center 58%; filter: saturate(.74) contrast(.93) brightness(1.07); }
.type-card > div { position: relative; min-height: 150px; }
/* Дополнительный функционал */
.feature-tabs { display: grid; grid-template-columns: minmax(285px, .36fr) minmax(0, 1fr); margin-top: var(--space-4); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.feature-tabs__nav { padding: 40px 36px; border-right: 1px solid var(--line); }
.feature-tabs__nav > h3 { margin-bottom: 10px; font-size: 32px; }
.feature-tabs__nav > p { margin: 0; font-size: 15px; line-height: 1.55; }
.tab-list { display: grid; margin-top: 30px; overflow-x: hidden; overflow-y: hidden; overscroll-behavior-inline: contain; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.tab-list::-webkit-scrollbar { display: none; }
.tab-list button { position: relative; width: 100%; min-height: 58px; padding: 15px 34px 15px 14px; border: 0; border-top: 1px solid var(--line); color: var(--muted); background: transparent; cursor: pointer; text-align: left; font-size: 14px; font-weight: 500; transition: color var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard); }
.tab-list button::after { position: absolute; top: 50%; right: 14px; width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-50%) rotate(-45deg); transition: transform var(--duration-fast) var(--ease-standard); content: ""; }
.tab-list button:hover, .tab-list button[aria-selected="true"] { color: var(--ink); }
.tab-list button[aria-selected="true"] { color: var(--cedar); background: rgba(172, 96, 62, .035); }
.tab-list button[aria-selected="true"]::after { transform: translate(3px, -50%) rotate(-45deg); }
.feature-panel { position: relative; min-height: 560px; overflow: hidden; color: #fff; background: var(--navy); }
.feature-panel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(.96) brightness(.84); transition: opacity var(--duration-base) var(--ease-standard); }
.feature-panel > img.is-contain { padding: 38px 8% 38px 56%; object-fit: contain; object-position: right center; background: #d5dcda; filter: saturate(.72) contrast(.95) brightness(.92); }
.feature-panel__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 42, 56, .96), rgba(20, 42, 56, .18)); }
.feature-panel__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; max-width: 620px; min-height: 560px; padding: 60px 68px; transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-out); }
.feature-panel.is-changing > img { opacity: .82; }
.feature-panel.is-changing .feature-panel__content { opacity: .72; transform: translateY(5px); }
.feature-panel__content > span { margin-bottom: 82px; color: var(--cedar-soft); font-size: 10px; font-weight: 600; }
.feature-panel__content h3 { margin-bottom: 20px; color: #fff; font-size: 54px; }
.feature-panel__content p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 13px; line-height: 1.65; }

/* Каталог */
.catalog-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: var(--space-7); padding: 60px 68px; border: 1px solid rgba(255, 255, 255, .08); color: #fff; background: var(--cedar-dark); }
.catalog-card h2 { margin-bottom: 23px; color: #fff; }
.catalog-card .eyebrow { color: #f0c3a5; }
.catalog-card > div > p:last-child { max-width: 520px; margin-bottom: 0; color: rgba(255, 255, 255, .68); font-size: 13px; }
.catalog-card .inline-form label { color: rgba(255, 255, 255, .6); }
.catalog-card .inline-form > label:not(.consent-field) input { border-color: rgba(247, 243, 234, .7); color: var(--ink); background: rgba(247, 243, 234, .96); }
.catalog-card .inline-form > label:not(.consent-field) input::placeholder { color: var(--cedar-dark); opacity: 1; }
.catalog-card .form-error { color: #fff1ec; font-size: 13px; font-weight: 600; line-height: 1.45; }
.catalog-card .form-error:not(:empty) { padding: 10px 12px; border: 1px solid rgba(255, 225, 216, .38); border-radius: var(--radius-sm); background: rgba(41, 20, 15, .28); }
.catalog-card .button--dark { color: var(--cedar-dark); background: var(--paper); }
.inline-form { display: grid; gap: 13px; }
.inline-form .button { margin-top: 5px; }

/* Обзор моделей */
.overview-card { position: relative; display: block; min-height: 620px; overflow: hidden; border: 1px solid var(--image-line); border-radius: var(--radius-md); color: #fff; background: var(--navy); }
.overview-card { transition: border-color var(--duration-fast) var(--ease-standard); }
.overview-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 44%; filter: saturate(.72) contrast(.97) brightness(.8); transition: transform var(--duration-slow) var(--ease-out); }
.overview-card:hover { border-color: rgba(172, 96, 62, .42); }
.overview-card:hover > img { transform: scale(1.012); }
.overview-card__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 42, 56, .96), rgba(20, 42, 56, .08)); }
.overview-card__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; max-width: 760px; min-height: 620px; padding: 64px 68px; }
.overview-card__content small { margin-bottom: 24px; color: var(--cedar-soft); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.overview-card__content strong { margin-bottom: 22px; color: #fff; font-family: var(--display); font-size: clamp(48px, 4.3vw, 66px); font-weight: 400; line-height: .98; letter-spacing: -.025em; }
.overview-card__content em { max-width: 520px; color: rgba(255, 255, 255, .68); font-family: var(--sans); font-size: 12px; font-style: normal; }
.overview-card__content i { width: fit-content; margin-top: 42px; padding-bottom: 4px; border-bottom: 1px solid var(--line-light); color: #fff; font-family: var(--sans); font-size: 11px; font-style: normal; font-weight: 600; }
.overview-card__content i { transition: color var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-out); }
.overview-card:hover .overview-card__content i { border-color: #fff; transform: translateX(3px); }

/* Производство и достижения */
.achievement-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: var(--space-2); margin-bottom: var(--space-2); }
.achievement-card { display: flex; flex-direction: column; justify-content: center; min-height: 448px; padding: var(--space-6) 56px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.achievement-card--dark { color: #fff; border-color: transparent; background: var(--navy); }
.achievement-card--dark strong { display: block; margin-bottom: 54px; color: var(--cedar-soft); font-family: var(--display); font-size: 132px; font-weight: 400; line-height: .72; letter-spacing: -.08em; }
.achievement-card h2 { margin-bottom: 23px; font-size: 47px; }
.achievement-card--dark h2 { color: #fff; }
.achievement-card p { max-width: 520px; font-size: 13px; }
.achievement-card--dark p { color: rgba(255, 255, 255, .62); }
.achievement-card ul { display: grid; gap: 8px; margin: 23px 0 0; padding-left: 18px; color: var(--muted); font-size: 12px; }
.production-card, .installment-card { position: relative; min-height: 580px; overflow: hidden; border-radius: var(--radius-md); color: #fff; background: var(--navy); }
.production-card > video, .installment-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.production-card > video { filter: saturate(.68) contrast(.96) brightness(.78); }
.installment-card > img { filter: saturate(.72) contrast(.96) brightness(.86); }
.production-overlay, .installment-card::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 42, 56, .94), rgba(20, 42, 56, .56)); content: ""; }
.production-card > div:last-child, .installment-card > div { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; max-width: 850px; min-height: 580px; padding: 60px 68px; }
.production-card h2, .installment-card h2 { margin-bottom: 24px; color: #fff; }
.production-card p:not(.eyebrow), .installment-card p { max-width: 600px; margin-bottom: 15px; color: rgba(255, 255, 255, .7); font-size: 13px; }
.production-card p:last-child { margin-bottom: 0; }
.installment-card { min-height: 450px; }
.installment-card > img { object-position: 58% center; }
.installment-card > div { min-height: 450px; }
.installment-card .button { width: fit-content; color: #fff; border-color: rgba(255, 255, 255, .32); }

/* Видеотека и сообщества */
.media-library__intro { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--line); }
.media-library__intro p { max-width: 780px; margin: 0; font-size: 13px; }
.slider-controls--ink { border-color: var(--line); }
.slider-controls--ink button { color: var(--ink); border-color: var(--line); }
.video-slider { grid-auto-columns: 390px; }
.video-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); scroll-snap-align: start; }
.video-card { transition: border-color var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard); }
.video-card img { width: 100%; aspect-ratio: 1.75; object-fit: cover; filter: saturate(.7) contrast(.96) brightness(.94); transition: transform 360ms var(--ease-out); }
.video-card:hover { border-color: rgba(172, 96, 62, .38); }
.video-card:hover img { transform: scale(1.015); }
.video-card > span { display: grid; min-height: 128px; padding: 23px 24px 26px; }
.video-card small { margin-bottom: 11px; color: var(--cedar); font-size: 8px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.video-card strong { color: var(--ink); font-family: var(--display); font-size: 23px; font-weight: 400; line-height: 1.08; }
.community-card { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: var(--space-6); margin-top: var(--space-6); padding: 52px 58px; color: #fff; background: var(--navy); }
.community-section .community-card { margin-top: 0; }
.community-card h3 { max-width: 760px; margin-bottom: 18px; color: #fff; font-size: 42px; }
.community-card p:last-child { max-width: 780px; margin-bottom: 0; color: rgba(255, 255, 255, .62); font-size: 12px; }
.community-card .button { color: #fff; border-color: var(--line-light); white-space: nowrap; }
.community-card .button:hover { color: #fff; border-color: #fff; }

/* Доставка */
.delivery-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-2); margin-top: var(--space-2); }
.delivery-card { min-width: 0; min-height: 400px; padding: var(--space-6) 52px; border: 1px solid var(--line); background: transparent; }
.delivery-card:last-child { background: var(--surface); }
.delivery-card h2 { margin-bottom: 24px; font-size: clamp(43px, 3.8vw, 55px); overflow-wrap: anywhere; }
.delivery-card p { max-width: 500px; font-size: 13px; }
.delivery-card a, .delivery-card button { display: inline-block; margin-top: 15px; padding: 0 0 4px; border: 0; border-bottom: 1px solid var(--line); background: none; cursor: pointer; font-size: 13px; font-weight: 600; transition: color var(--transition), border-color var(--transition); }
.delivery-card a:hover, .delivery-card button:hover { color: var(--cedar); border-color: var(--cedar); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.faq-layout .section-heading { margin: 0; text-align: center; }
.faq-layout .section-heading h2 { margin-inline: auto; }
.faq-list { width: min(100%, 820px); margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 25px 0; border: 0; background: none; cursor: pointer; text-align: left; font-family: var(--display); font-size: 20px; font-weight: 400; }
.faq-item button i { color: var(--cedar); font-family: var(--sans); font-size: 21px; font-style: normal; font-weight: 400; transition: transform 260ms var(--ease-standard); }
.faq-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; padding: 0 60px 0 0; opacity: 0; transition: grid-template-rows 280ms var(--ease-standard), padding-bottom 280ms var(--ease-standard), opacity var(--duration-base) var(--ease-standard); }
.faq-answer.is-open { grid-template-rows: 1fr; padding-bottom: 24px; opacity: 1; }
.faq-answer p { min-height: 0; margin: 0; overflow: hidden; font-size: 12px; }

/* Наличие в городах */
.city-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 500px; overflow: hidden; color: #fff; background: var(--navy); }
.city-card > div { display: flex; flex-direction: column; justify-content: center; padding: 58px 68px; }
.city-card h2 { margin-bottom: 24px; color: #fff; }
.city-card p:not(.eyebrow) { max-width: 610px; margin-bottom: 28px; color: rgba(255, 255, 255, .66); font-size: 13px; }
.city-card .button { width: fit-content; color: #fff; border-color: var(--line-light); }
.city-card > img { width: 100%; height: 100%; min-height: 500px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); object-fit: cover; filter: saturate(.74) contrast(.96) brightness(.9); }

/* Футер */
.site-footer { margin-top: var(--section-space); color: #fff; background: var(--navy); }
.site-footer .container { width: min(calc(100% - var(--space-6)), var(--container)); margin-inline: auto; }
.footer-top { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 56px; padding: 68px 0 var(--space-6); }
.brand--footer { margin-bottom: 27px; }
.footer-top h2 { margin-bottom: 22px; color: #fff; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.footer-top a, .footer-top button { display: block; width: fit-content; margin-bottom: 11px; padding: 0; border: 0; color: rgba(255, 255, 255, .6); background: none; cursor: pointer; font-size: 11px; transition: color var(--transition); }
.footer-top a:hover, .footer-top button:hover { color: #fff; }
.footer-top p { color: rgba(255, 255, 255, .48); font-size: 11px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding: 21px 0 36px; border-top: 1px solid var(--line-light); color: rgba(255, 255, 255, .36); font-size: 9px; }
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* Юридические страницы */
.legal-page { color: var(--ink); background: var(--paper); }
.legal-header { background: var(--navy); border-bottom: 1px solid var(--line-light); }
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-height); }
.legal-back { padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .3); color: #fff; font-size: 13px; font-weight: 500; transition: border-color var(--transition); }
.legal-back:hover { border-color: #fff; }
.legal-hero { padding: 82px 0 92px; color: #fff; background: var(--navy); }
.legal-hero h1 { max-width: 1120px; margin: 0; color: #fff; font-size: clamp(48px, 5.2vw, 74px); line-height: 1; }
.legal-hero > .container > p:last-child { max-width: 720px; margin: 27px 0 0; color: rgba(255, 255, 255, .62); font-size: 16px; }
.legal-section { padding: 76px 0 104px; }
.legal-document { max-width: 980px; }
.legal-requisites { margin-bottom: 58px; padding: 27px 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.legal-requisites p { margin: 0; }
.legal-requisites p + p { margin-top: 7px; }
.legal-document h2 { margin: 58px 0 23px; font-size: clamp(31px, 3vw, 42px); line-height: 1.06; }
.legal-document p,
.legal-document li { color: #4f4a43; font-size: 16px; line-height: 1.75; }
.legal-document p { margin-bottom: 17px; }
.legal-document ol { display: grid; gap: 13px; margin: 0; padding-left: 24px; }
.legal-document a { color: var(--cedar-dark); text-decoration: underline; text-decoration-color: rgba(112, 67, 51, .35); text-underline-offset: 3px; }
.legal-document a:hover { text-decoration-color: currentColor; }
.legal-lead { padding-bottom: 34px; border-bottom: 1px solid var(--line); font-size: 18px !important; }
.legal-consent-list { counter-reset: legal-consent; list-style: none; padding-left: 0 !important; }
.legal-consent-list li { position: relative; padding: 25px 0 25px 58px; border-bottom: 1px solid var(--line); }
.legal-consent-list li::before { position: absolute; top: 23px; left: 0; color: var(--cedar); font-family: var(--display); font-size: 26px; counter-increment: legal-consent; content: counter(legal-consent, decimal-leading-zero); }
.legal-document__links { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 66px; padding-top: 25px; border-top: 1px solid var(--line); }
.legal-footer { color: rgba(255, 255, 255, .55); background: var(--navy); }
.legal-footer > .container { display: flex; justify-content: space-between; gap: 24px; padding-top: 27px; padding-bottom: 27px; font-size: 12px; }
.legal-footer a { color: #fff; }

/* Модальное окно и уведомление */
.modal { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 20px; place-items: center; opacity: 0; visibility: hidden; transition: opacity var(--duration-base) var(--ease-standard), visibility var(--duration-base) var(--ease-standard); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 24, 33, .76); }
.modal-panel { position: relative; z-index: 1; width: min(100%, 540px); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 46px 48px; border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-soft); opacity: .96; transform: scale(.985); transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-out); }
.modal.is-open .modal-panel { opacity: 1; transform: none; }
.modal-close { position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 22px; transition: color var(--transition), border-color var(--transition); }
.modal-close:hover { color: var(--cedar); border-color: var(--cedar); }
.modal-panel h2 { max-width: 410px; margin-bottom: 18px; font-size: 48px; }
.modal-panel > p:not(.eyebrow) { max-width: 430px; }
.modal-form { display: grid; gap: 14px; margin-top: 25px; }
.success-modal-panel { width: min(100%, 510px); padding: 54px 48px 46px; text-align: center; }
.success-mark { position: relative; display: grid; width: 58px; height: 58px; margin: 0 auto 27px; border-radius: 50%; background: var(--cedar); place-items: center; }
.success-mark::after { width: 12px; height: 22px; margin-top: -4px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); content: ""; }
.success-modal-panel h2 { margin: 0 auto 17px; }
.success-modal-panel > p { margin: 0 auto 29px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.video-modal-panel { width: min(100%, 1120px); padding: 32px; color: #fff; background: var(--navy); }
.video-modal-panel h2 { max-width: 900px; margin-bottom: 22px; padding-right: 56px; color: #fff; font-size: clamp(34px, 3vw, 48px); }
.video-modal-panel .modal-close { color: #fff; border-color: var(--line-light); }
.video-modal-panel .modal-close:hover { color: #fff; border-color: #fff; }
.video-modal-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: #081821; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.model-modal-panel { width: min(100%, 1040px); overflow: hidden; padding: 0; }
.model-modal-scroll { max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; padding: 32px; }
.model-modal-intro { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: 40px; align-items: stretch; margin-bottom: 30px; }
.model-modal-media { min-height: 330px; overflow: hidden; border: 1px solid var(--image-line); border-radius: var(--radius-md); background: var(--paper-deep); }
.model-modal-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(.96) brightness(.96); }
.model-modal-copy { align-self: center; padding: 30px 24px 24px 0; }
.model-modal-panel h2 { max-width: 590px; margin-bottom: 18px; font-size: clamp(39px, 4vw, 55px); }
.model-modal-summary { max-width: 570px; margin: 0 0 26px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.model-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.model-highlights li { min-width: 0; padding: 15px 14px; border-left: 1px solid var(--line); }
.model-highlights li:first-child { padding-left: 0; border-left: 0; }
.model-highlights span, .model-highlights strong { display: block; overflow-wrap: anywhere; }
.model-highlights span { margin-bottom: 6px; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.model-highlights strong { color: var(--ink); font-family: var(--display); font-size: 18px; font-weight: 400; line-height: 1.15; }
.model-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.model-specs > div { min-width: 0; padding: 18px 20px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.model-specs dt { margin-bottom: 8px; color: var(--ink); font-size: 9px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.model-specs dd { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.model-modal-panel .button { margin-top: 2px; }
/* Сдержанная система движения: эффекты различаются по роли элемента */
.reveal { opacity: 1; transform: none; }
.motion-ready .motion-reveal { opacity: .88; transform: translateY(12px); transition: opacity var(--duration-slow) var(--ease-standard), transform var(--duration-slow) var(--ease-out); }
.motion-ready .motion-reveal--side { opacity: .88; transform: translateX(-12px); }
.motion-ready .motion-reveal--track { opacity: .9; transform: translateX(14px); }
.motion-ready .motion-reveal.is-visible { opacity: 1; transform: none; }

.motion-ready .motion-visual { opacity: .86; transform: scale(1.015); transition: opacity var(--duration-slow) var(--ease-standard), transform 520ms var(--ease-out); }
.motion-ready .motion-visual.is-visible { opacity: 1; transform: none; }

.motion-ready .motion-group > .reveal { opacity: .86; transform: translateY(10px); transition: opacity var(--duration-slow) var(--ease-standard), transform var(--duration-slow) var(--ease-out); }
.motion-ready .motion-group.is-visible > .reveal { opacity: 1; transform: none; }
.motion-ready .motion-group > .reveal:nth-child(2) { transition-delay: 50ms; }
.motion-ready .motion-group > .reveal:nth-child(3) { transition-delay: 100ms; }
.motion-ready .motion-group > .reveal:nth-child(4) { transition-delay: 150ms; }

/* Ноутбуки */
@media (max-width: 1199px) {
  :root { --container: 980px; --section-space: 94px; }
  .desktop-nav { display: none; }
  .header-contact { margin-left: auto; }
  .menu-toggle { display: grid; }
  .hero-card { height: 100vh; height: 100svh; min-height: 0; }
  .hero-content { height: 100%; min-height: 0; }
  .hero-image { top: 46px; right: 18px; bottom: auto; width: 51%; height: calc(100% - 146px); }
  .hero-content { width: 62%; padding-left: 32px; }
  .hero h1 { font-size: 58px; }
  .hero-text { max-width: 420px; font-size: 15px; }
  .promo-card { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); }
  .promo-content { padding: 42px; }
  .promo-content h2 { font-size: 42px; }
  .section-heading--split { gap: 48px; }
  .option-grid--extras { grid-template-columns: repeat(3, 1fr); }
  .card-slider { grid-auto-columns: 360px; }
  .model-card__media { height: 310px; }
  .type-card img { height: 410px; }
  .type-card:nth-child(2) img { height: 350px; }
  .benefit-card { padding-right: 46px; }
  .benefit-card:nth-child(2n) { padding-right: 0; padding-left: 46px; }
  .overview-card, .overview-card__content { min-height: 560px; }
  .achievement-card { min-height: 420px; padding: 44px; }
  .achievement-card--dark strong { margin-bottom: 48px; font-size: 116px; }
  .production-card > div:last-child, .installment-card > div { padding: 58px 52px; }
  .delivery-card { min-height: 380px; padding: 44px; }
  .community-card { grid-template-columns: 1fr; align-items: start; }
  .city-card > div { padding: 52px; }
}

/* Планшеты */
@media (max-width: 899px) {
  :root { --container: 720px; --header-height: 86px; --section-space: 80px; }
  .container, .site-footer .container { width: min(calc(100% - 40px), var(--container)); }
  .site-header, .header-shell { height: var(--header-height); }
  .brand-logo { width: 132px; height: auto; }
  .mobile-menu { top: var(--header-height); right: 20px; left: 20px; }
  .hero-card { display: grid; grid-template-rows: minmax(0, .9fr) minmax(0, 1.1fr); height: 100vh; height: 100svh; min-height: 0; padding: 20px 20px 112px; }
  .hero.section-pad-sm::before { background-position: 58% center; }
  .hero.section-pad-sm::after { background: linear-gradient(180deg, rgba(20, 42, 56, .66), rgba(20, 42, 56, .9)); }
  .hero-image { position: relative; z-index: 2; top: auto; right: auto; bottom: auto; align-self: center; justify-self: center; width: 88%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 14px 18px rgba(4, 14, 20, .22)); transform: none; }
  .hero-content { width: 100%; height: auto; min-height: 0; padding: 24px; }
  .hero h1 { max-width: 600px; font-size: clamp(46px, 7vw, 54px); }
  .hero-text { max-width: 560px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-card { padding: 22px; }
  .stat-card strong { font-size: 21px; }
  .promo-card { grid-template-columns: 1fr; min-height: 0; }
  .promo-card > img { width: 100%; height: 400px; min-height: 0; }
  .promo-content { width: 100%; margin: 0; padding: 40px; border-top: 1px solid rgba(255, 255, 255, .1); border-left: 0; }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 23px; }
  .option-grid--3 { grid-template-columns: 1fr; }
  .option-grid--extras { grid-template-columns: repeat(2, 1fr); }
  .feelings-gallery { grid-auto-columns: 82%; }
  .feeling-card { height: 430px; }
  .types-grid { grid-template-columns: 1fr; gap: 50px; }
  .type-card:nth-child(2) { margin-top: 0; margin-left: 12%; }
  .type-card img, .type-card:nth-child(2) img { height: 440px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card, .benefit-card:nth-child(2n), .benefit-card:nth-last-child(-n+2) { padding: 36px 0 40px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .benefit-card:last-child { border-bottom: 0; }
  .feature-tabs { grid-template-columns: 1fr; }
  .feature-tabs__nav { padding: 36px 40px; border-right: 0; border-bottom: 1px solid var(--line); }
  .tab-list { grid-template-columns: 1fr 1fr; }
  .tab-list button:nth-child(2) { border-left: 1px solid var(--line); padding-left: 20px; }
  .tab-list button:nth-child(4) { border-left: 1px solid var(--line); padding-left: 20px; }
  .feature-panel, .feature-panel__content { min-height: 510px; }
  .feature-panel__content { padding: 52px 48px; }
  .catalog-card { grid-template-columns: 1fr; gap: var(--space-5); padding: 50px 48px; }
  .overview-card, .overview-card__content { min-height: 520px; }
  .overview-card__content { padding: 52px 48px; }
  .achievement-grid, .delivery-grid { grid-template-columns: 1fr; }
  .achievement-card { min-height: 390px; }
  .production-card, .production-card > div:last-child { min-height: 540px; }
  .media-library__intro { display: grid; }
  .media-library__intro .button { width: fit-content; }
  .community-card { padding: 46px 48px; }
  .city-card { grid-template-columns: 1fr; }
  .city-card > img { order: -1; min-height: 390px; border-radius: var(--radius-lg); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .model-modal-intro { grid-template-columns: 1fr; gap: 24px; }
  .model-modal-media { min-height: 300px; }
  .model-modal-copy { padding: 0 8px; }
}

/* Мобильные устройства */
@media (max-width: 639px) {
  :root { --header-height: 78px; --section-space: 64px; }
  .container, .site-footer .container { width: calc(100% - 32px); }
  .section-pad-sm { padding-top: 24px; }
  .site-header, .header-shell { height: var(--header-height); }
  .header-shell { padding: 0; }
  .brand-logo { width: 118px; }
  .header-contact { width: auto; }
  .header-contact a { font-size: 10px; }
  .menu-toggle { width: 40px; height: 40px; margin-left: 12px; }
  .mobile-menu { top: var(--header-height); right: 16px; left: 16px; padding: 22px; }
  .hero.section-pad-sm { padding-top: 0; }
  .hero-card { grid-template-rows: auto minmax(0, 1fr); height: 100vh; height: 100svh; min-height: 0; padding: 12px 12px 92px; }
  .hero-image { width: 84%; height: clamp(150px, 23svh, 200px); }
  .hero-content { height: auto; padding: 18px 12px; }
  .hero .eyebrow { margin-bottom: 13px; }
  .eyebrow { margin-bottom: 14px; font-size: 14px; }
  .hero h1 { margin-bottom: 19px; font-size: clamp(36px, 10.5vw, 42px); }
  .hero-text { margin-bottom: 24px; font-size: 15px; }
  .button-row { display: grid; width: 100%; }
  .hero-content .button { width: 100%; min-width: 0; }
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); height: 92px; }
  .stat-card { min-height: 92px; padding: 12px 8px; border-right: 1px solid var(--line-light); border-bottom: 0; }
  .stat-card:first-child { padding-left: 16px; }
  .stat-card:last-child { padding-right: 16px; border-right: 0; }
  .stat-card strong { font-size: 15px; line-height: 1.08; }
  .promo-card > img { width: 100%; height: 288px; min-height: 0; border-radius: 0; }
  .promo-content { width: 100%; margin: 0; padding: 31px 23px; }
  .promo-content h2 { font-size: 35px; }
  .section-heading { margin-bottom: 33px; }
  h2 { font-size: 40px; overflow-wrap: anywhere; }
  .section-heading--controls { display: block; }
  .section-heading--controls .slider-controls { width: fit-content; margin-top: 22px; }
  .quiz-card { padding: 28px 20px; box-shadow: 0 10px 24px rgba(54, 43, 31, .04); }
  .quiz-meta { display: grid; margin: 21px 0; }
  .quiz-meta strong { font-size: 23px; }
  .option-grid--models { grid-auto-columns: minmax(220px, 78%); margin-right: -20px; padding-right: 20px; }
  .choice-card--model { min-height: 234px; }
  .choice-card--model img { height: 160px; }
  .option-grid--2, .contact-fields { grid-template-columns: 1fr; }
  .option-grid--extras { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .choice-card--compact, .choice-card--compact > span { min-height: 84px; }
  .choice-card--compact > span { padding: 16px 34px 16px 13px; }
  .choice-card--compact b { font-size: 10px; }
  .choice-card--compact input { top: 13px; right: 12px; }
  .choice-card--image { min-height: 300px; }
  .choice-card--image img { height: 200px; }
  #models, #about { padding: 68px 0 72px; }
  .card-slider { grid-auto-columns: 86%; gap: 12px; }
  .model-card__media { height: 252px; }
  .model-card__body { min-height: 254px; padding: 20px 21px; }
  .model-card__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; padding-top: 15px; }
  .model-card__facts li { padding-inline: 8px; }
  .model-card__facts li:nth-child(3) { grid-column: 1 / -1; margin-top: 12px; padding: 12px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .feelings-gallery { grid-auto-columns: 88%; gap: 12px; }
  .feeling-card { height: 360px; }
  .feeling-card > div { grid-template-columns: 1fr; gap: 0; padding: 24px; }
  .feeling-card > div > span { display: none; }
  .feeling-card h3 { font-size: 29px; }
  .feeling-card p { font-size: 15px; }
  .types-grid { gap: 40px; }
  .type-card:nth-child(2) { margin-left: 0; }
  .type-card img, .type-card:nth-child(2) img { height: 300px; }
  .type-card > div { padding-top: 19px; }
  .type-card h3 { font-size: 28px; }
  .benefit-card, .benefit-card:nth-child(2n), .benefit-card:nth-last-child(-n+2) { min-height: 0; padding: 30px 0 34px; }
  .benefit-icon { margin-bottom: 32px; }
  .benefit-card h3 { margin: 0 0 17px; font-size: 30px; }
  .benefit-card p { font-size: 15px; }
  .feature-tabs__nav { padding: 28px 24px; }
  .feature-tabs__nav > h3 { font-size: 29px; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-list button:nth-child(2), .tab-list button:nth-child(4) { padding-left: 14px; border-left: 0; }
  .feature-panel, .feature-panel__content { min-height: 470px; }
  .feature-panel__content { justify-content: end; padding: 34px 24px; }
  .feature-panel__content > span { margin-bottom: 125px; }
  .feature-panel__content h3 { font-size: 42px; }
  .feature-panel__content p { font-size: 15px; }
  .catalog-card { gap: 30px; padding: 36px 24px; }
  .overview-card, .overview-card__content { min-height: 480px; }
  .overview-card__content { justify-content: end; padding: 36px 24px; }
  .overview-card__content strong { font-size: 39px; }
  .overview-card__content i { margin-top: 28px; }
  .achievement-card { min-height: 340px; padding: 34px 24px; }
  .achievement-card--dark strong { margin-bottom: 46px; font-size: 100px; }
  .achievement-card h2 { font-size: 40px; }
  .production-card, .production-card > div:last-child { min-height: 500px; }
  .production-card > div:last-child, .installment-card > div { justify-content: end; padding: 37px 24px; }
  .installment-card, .installment-card > div { min-height: 480px; }
  .media-library__intro { gap: 22px; }
  .media-library__intro .button { width: 100%; }
  .video-slider { grid-auto-columns: 86%; }
  .community-card { gap: 30px; padding: 36px 24px; }
  .community-card h3 { font-size: 34px; }
  .community-card .button-row, .community-card .button { width: 100%; }
  .delivery-card { min-height: 350px; padding: 34px 24px; }
  .delivery-card h2 { font-size: 40px; }
  .faq-item button { padding: 21px 0; font-size: 18px; }
  .faq-answer { padding-right: 28px; }
  .city-card > img { min-height: 300px; border-radius: var(--radius-lg); }
  .city-card > div { padding: 38px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px 22px; padding: 50px 0 32px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; padding: 19px 0 29px; }
  .legal-header__inner { min-height: 78px; }
  .legal-header .brand-logo { width: 112px; }
  .legal-back { font-size: 11px; }
  .legal-hero { padding: 58px 0 64px; }
  .legal-hero h1 { font-size: clamp(39px, 12vw, 49px); overflow-wrap: normal; }
  .legal-section { padding: 50px 0 72px; }
  .legal-requisites { margin-bottom: 42px; padding: 22px 20px; }
  .legal-document h2 { margin-top: 46px; font-size: 32px; overflow-wrap: normal; }
  .legal-document p,
  .legal-document li { font-size: 15px; line-height: 1.7; }
  .legal-lead { font-size: 16px !important; }
  .legal-consent-list li { padding-left: 46px; }
  .legal-consent-list li::before { font-size: 22px; }
  .legal-document__links,
  .legal-footer > .container { flex-direction: column; }
  .modal-panel { padding: 39px 22px 27px; }
  .modal-panel h2 { font-size: 42px; }
  .video-modal-panel { padding: 18px; }
  .video-modal-panel h2 { margin-bottom: 16px; padding-right: 46px; font-size: 30px; }
  #model-modal { align-items: start; padding: max(56px, calc(env(safe-area-inset-top) + 16px)) 12px 12px; }
  .model-modal-panel { max-height: calc(100dvh - 68px); }
  .model-modal-scroll { max-height: calc(100dvh - 68px); padding: 22px; }
  #model-modal .modal-close { z-index: 5; top: 10px; right: 10px; width: 48px; height: 48px; color: #fff; border-color: rgba(255, 255, 255, .28); background: var(--navy); box-shadow: 0 8px 20px rgba(8, 24, 33, .28); font-size: 28px; }
  .model-modal-intro { gap: 22px; margin-bottom: 24px; }
  .model-modal-media { min-height: 0; aspect-ratio: 1.22 / 1; }
  .model-modal-copy { padding: 0; }
  .model-modal-panel h2 { padding-right: 14px; font-size: 38px; }
  .model-modal-summary { margin-bottom: 21px; }
  .model-highlights li { padding: 13px 8px; }
  .model-highlights li:first-child { padding-left: 0; }
  .model-highlights strong { font-size: 15px; }
  .model-specs { grid-template-columns: 1fr; }
  #model-cost-button { margin-bottom: calc(24px + env(safe-area-inset-bottom)); }
}

@media (max-width: 359px) {
  .header-contact { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero-image { height: 140px; }
  .hero h1 { font-size: 35px; }
  h2 { font-size: 36px; }
  .promo-content h2 { font-size: 31px; }
}

/* Увеличенная типографика: комфортное чтение без изменения композиции */
body { font-size: 17px; line-height: 1.62; }
.button { font-size: 14px; }
.label { font-size: 10px; }
.desktop-nav a { font-size: 13px; }
.header-contact a { font-size: 13px; }
.hero-text { font-size: 17px; }
.stat-card span { font-size: 12px; line-height: 1.45; }
.promo-content p { font-size: 15px; line-height: 1.65; }
.section-heading--split > p { font-size: 16px; }
.quiz-meta span { font-size: 12px; }
.choice-card small { font-size: 12px; }
.choice-card--compact b { font-size: 13px; }
.contact-fields label,
.inline-form > label:not(.consent-field),
.modal-form > label:not(.consent-field) { font-size: 10px; }
.contact-fields input,
.inline-form > label:not(.consent-field) input,
.modal-form > label:not(.consent-field) input { font-size: 15px; }
.form-note { font-size: 12px; }
.form-error { font-size: 12px; }
.model-card__body > span { font-size: 10px; }
.model-card__body button { font-size: 11px; }
.model-card__facts span { font-size: 9px; }
.model-card__facts strong { font-size: 12px; }
.type-card p,
.benefit-card p,
.feature-panel__content p,
.catalog-card > div > p:last-child,
.achievement-card p,
.production-card p:not(.eyebrow),
.installment-card p,
.media-library__intro p,
.delivery-card p,
.city-card p:not(.eyebrow) { font-size: 16px; }
.feature-tabs__nav > p { font-size: 16px; }
.tab-list button { font-size: 14px; }
.feature-panel__content > span { font-size: 11px; }
.overview-card__content small { font-size: 11px; }
.overview-card__content em { font-size: 14px; line-height: 1.6; }
.overview-card__content i { font-size: 12px; }
.achievement-card ul { font-size: 14px; }
.video-card small { font-size: 9px; }
.community-card p:last-child { font-size: 14px; line-height: 1.65; }
.faq-answer p { font-size: 14px; line-height: 1.65; }
.footer-top h2 { font-size: 13px; }
.footer-top a,
.footer-top button,
.footer-top p { font-size: 13px; }
.footer-bottom { font-size: 11px; }
.model-modal-summary { font-size: 14px; }
.model-highlights span { font-size: 9px; }
.model-specs dt { font-size: 10px; }
.model-specs dd { font-size: 13px; }

@media (max-width: 639px) {
  body { font-size: 16px; }
  .header-contact a { font-size: 11px; }
  .hero-text { font-size: 15px; }
  .stat-card span { font-size: 9px; line-height: 1.35; }
  .promo-content p,
  .section-heading--split > p,
  .type-card p,
  .benefit-card p,
  .feature-panel__content p,
  .catalog-card > div > p:last-child,
  .achievement-card p,
  .production-card p:not(.eyebrow),
  .installment-card p,
  .media-library__intro p,
  .delivery-card p,
  .city-card p:not(.eyebrow) { font-size: 15px; }
  .choice-card--compact b { font-size: 12px; }
  .model-card__facts strong { font-size: 11px; }
  .community-card p:last-child,
  .faq-answer p,
  .model-modal-summary { font-size: 13px; }
}

/* Невысокие экраны: весь hero, включая показатели, остаётся в пределах 100svh */
@media (min-width: 900px) and (max-height: 760px) {
  .hero-image { top: 26px; right: 22px; bottom: auto; width: min(50%, 680px); height: calc(100% - 104px); }
  .hero-content { padding: 22px 0 22px 32px; }
  .hero h1 { margin-bottom: 16px; font-size: clamp(42px, 8svh, 54px); }
  .hero-text { margin-bottom: 18px; font-size: 15px; line-height: 1.45; }
  .stats-grid { height: 88px; }
  .stat-card { min-height: 88px; padding: 14px 28px; }
  .stat-card strong { font-size: 21px; }
  .stat-card span { margin-top: 4px; font-size: 10px; }
}

@media (min-width: 640px) and (max-width: 899px) and (max-height: 760px) {
  .hero-card { grid-template-rows: clamp(160px, 28svh, 220px) minmax(0, 1fr); padding-bottom: 88px; }
  .hero-content { padding: 16px 20px; }
  .hero h1 { margin-bottom: 14px; font-size: 42px; }
  .hero-text { margin-bottom: 16px; font-size: 14px; line-height: 1.45; }
  .hero-content .button { min-height: 42px; }
  .stats-grid { height: 88px; }
  .stat-card { min-height: 88px; padding-block: 12px; }
}

@media (max-width: 639px) and (max-height: 720px) {
  .hero-card { grid-template-rows: clamp(110px, 20svh, 145px) minmax(0, 1fr); padding-bottom: 80px; }
  .hero-image { height: 100%; }
  .hero-content { padding: 12px; }
  .hero h1 { margin-bottom: 12px; font-size: clamp(31px, 9.5vw, 36px); }
  .hero-text { margin-bottom: 14px; font-size: 13px; line-height: 1.45; }
  .hero-content .button { min-height: 40px; padding: 10px 8px; font-size: 12px; }
  .button-row { gap: 8px; }
  .stats-grid { height: 80px; }
  .stat-card { min-height: 80px; padding: 8px 6px; }
  .stat-card:first-child { padding-left: 12px; }
  .stat-card:last-child { padding-right: 12px; }
  .stat-card strong { font-size: 13px; }
  .stat-card span { font-size: 8px; }
}

@media (hover: none) {
  .button:hover,
  .choice-card:hover { transform: none; }
  .model-card img,
  .overview-card > img,
  .video-card img { transition: none; }
  .model-card:hover img,
  .overview-card:hover > img,
  .video-card:hover img { transform: none; }
}

@media (max-width: 639px) {
  .motion-ready .motion-reveal { opacity: .95; transform: translateY(5px); transition-duration: 320ms; }
  .motion-ready .motion-reveal--side,
  .motion-ready .motion-reveal--track { transform: translateY(5px); }
  .motion-ready .motion-visual { opacity: .94; transform: scale(1.006); transition-duration: 360ms; }
  .motion-ready .motion-group > .reveal { opacity: .95; transform: translateY(5px); transition-duration: 320ms; transition-delay: 0ms; }
  .button:hover,
  .choice-card:hover { transform: none; }
  .model-card img,
  .overview-card > img,
  .video-card img { transition: none; }
  .model-card:hover img,
  .overview-card:hover > img,
  .video-card:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .motion-ready .motion-reveal,
  .motion-ready .motion-visual,
  .motion-ready .motion-group > .reveal,
  .reveal { opacity: 1 !important; transform: none !important; }
}
