:root {
  --paper: #f1eee6;
  --paper-2: #e8e2d7;
  --surface: #fbfaf6;
  --ink: #182027;
  --ink-2: #222c33;
  --muted: #687078;
  --line: rgba(24, 32, 39, .17);
  --line-light: rgba(255, 255, 255, .16);
  --gold: #c6a15b;
  --gold-dark: #9d793c;
  --gold-soft: #e4d1a9;
  --danger: #9d3e34;
  --ok: #2f7352;
  --header-h: 78px;
  --wrap: 1480px;
  --pad: clamp(20px, 5.2vw, 88px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Helvetica Neue", Helvetica, Arial, "Manrope", sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); -webkit-font-smoothing: antialiased; }
body.drawer-open { overflow: hidden; }
body.nav-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

button, input, select, textarea { color: inherit; font: inherit; }
button { padding: 0; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, dl, dd, ul { margin: 0; }
ul { padding: 0; }
[hidden] { display: none !important; }
::selection { color: var(--ink); background: var(--gold-soft); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
#catalog, #calc, #about, #process, #faq, #contacts, #top { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: fixed;
  z-index: 110;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  transition: color .25s, background .25s, border-color .25s, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button--gold { color: var(--ink); background: var(--gold); }
.button--gold:hover { background: #d2b272; }
.button--primary { color: var(--ink); background: var(--gold); }
.button--primary:hover { background: #d2b272; }
.button--outline { border-color: var(--line); background: transparent; }
.button--outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.button--outline span:last-child { font-size: 12px; }

.arrow-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: gap .3s var(--ease), border-color .25s;
}
.arrow-link:hover { gap: 48px; border-color: var(--gold); }
.arrow-link--dark { color: var(--ink); border-color: var(--line); }

/* Header */
.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: var(--header-h);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  background: linear-gradient(to bottom, rgba(15, 22, 27, .78), rgba(15, 22, 27, .03));
  transition: color .35s, background .35s, box-shadow .35s, border-color .35s;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(241, 238, 230, .96);
  box-shadow: 0 12px 36px rgba(24, 32, 39, .08);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand__mark { position: relative; width: 34px; height: 34px; display: block; }
.brand__mark i { position: absolute; top: 5px; bottom: 5px; width: 8px; background: currentColor; transform: skewY(-15deg); }
.brand__mark i:nth-child(1) { left: 1px; }
.brand__mark i:nth-child(2) { left: 13px; height: 17px; top: 12px; background: var(--gold); }
.brand__mark i:nth-child(3) { right: 1px; }
.brand__type { display: grid; gap: 0; line-height: 1; }
.brand__type b { font-size: 20px; font-weight: 800; letter-spacing: -.05em; }
.brand__type small { margin-top: 2px; color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .26em; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 38px); }
.site-nav a { position: relative; padding: 8px 0; font-size: 12px; font-weight: 650; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; inset: auto 0 2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav__phone { display: none; }
.header-tools { display: flex; align-items: center; gap: 14px; }
.languages { padding: 3px; display: flex; gap: 1px; border: 1px solid currentColor; border-color: rgba(255, 255, 255, .35); }
.site-header.is-scrolled .languages,
.site-header.is-menu-open .languages { border-color: var(--line); }
.languages button { width: 30px; height: 27px; color: inherit; background: transparent; font-size: 9px; font-weight: 800; transition: background .2s, color .2s; }
.languages button:hover { color: var(--ink); background: var(--gold-soft); }
.languages button.is-active { color: var(--ink); background: var(--gold); }
.header-phone { font-size: 13px; font-weight: 750; white-space: nowrap; }
.menu { min-width: 44px; height: 42px; padding: 0 11px; display: none; grid-template-columns: 17px auto; grid-template-rows: repeat(3, 4px); align-content: center; gap: 1px 7px; color: inherit; border: 1px solid currentColor; background: transparent; }
.menu span { grid-column: 1; width: 17px; height: 1px; background: currentColor; transition: transform .25s, opacity .25s; }
.menu b { grid-column: 2; grid-row: 1 / 4; align-self: center; font-size: 10px; }
.menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: max(760px, 100dvh);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero__copy {
  position: relative;
  z-index: 2;
  min-height: max(760px, 100dvh);
  padding: calc(var(--header-h) + clamp(80px, 12vh, 150px)) clamp(32px, 5vw, 88px) 50px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 45%, rgba(198, 161, 91, .13), transparent 36%),
    var(--ink);
}
.hero__copy::after { content: ""; position: absolute; inset: var(--header-h) 26px 28px auto; width: 1px; background: linear-gradient(transparent, rgba(255,255,255,.2), transparent); }
.hero__eyebrow { color: var(--gold-soft); opacity: 0; animation: hero-in .9s .12s var(--ease) forwards; }
.hero h1 {
  margin-top: clamp(24px, 4vh, 48px);
  max-width: 760px;
  font-size: clamp(68px, 7.3vw, 132px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .83;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-in 1s .2s var(--ease) forwards;
}
.hero h1 span { display: inline-block; color: transparent; font-size: .72em; line-height: .96; -webkit-text-stroke: 1px rgba(255, 255, 255, .55); }
html[lang="ru"] .hero h1 span { white-space: nowrap; }
.hero__lead { margin-top: 34px; max-width: 540px; color: rgba(255, 255, 255, .68); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.58; text-wrap: pretty; opacity: 0; animation: hero-in .9s .35s var(--ease) forwards; }
.hero__actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; opacity: 0; animation: hero-in .9s .48s var(--ease) forwards; }
.hero__actions .button { min-width: 210px; }
.hero__foot { margin-top: auto; padding-top: 46px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero__foot strong { color: #fff; font-size: 13px; letter-spacing: 0; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

.hero-media { position: relative; min-width: 0; min-height: max(760px, 100dvh); background: #364047; overflow: hidden; }
.hero-media__viewport { position: absolute; inset: 0; overflow: hidden; --px: 0px; --py: 0px; }
.hero-slide { position: absolute; inset: -18px; opacity: 0; visibility: hidden; transform: scale(1.055); transition: opacity 1.8s cubic-bezier(.4,0,.2,1), transform 2.4s cubic-bezier(.4,0,.2,1), visibility 0s 1.8s; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(var(--px), var(--py), 0); transition: transform .16s ease-out; }
.hero-slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; }
.hero-media__wash { position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(24, 32, 39, .2), transparent 35%), linear-gradient(0deg, rgba(10, 15, 18, .68), transparent 38%); }
.hero-media__caption { position: absolute; z-index: 3; left: 36px; bottom: 42px; display: grid; gap: 8px; color: #fff; }
.hero-media__caption span { color: var(--gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.hero-media__caption b { font-size: clamp(18px, 2vw, 28px); font-weight: 650; letter-spacing: -.04em; }
.hero-media__autoplay { position: absolute; z-index: 4; right: 24px; bottom: 24px; width: 38px; height: 38px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.52); background: rgba(15,22,27,.45); backdrop-filter: blur(8px); font-size: 12px; transition: color .2s, background .2s, transform .2s; }
.hero-media__autoplay:hover { color: var(--ink); background: #fff; transform: scale(1.04); }
.hero-media__autoplay:active { transform: scale(.96); }

/* Trust and marquee */
.trust-panel { padding: clamp(72px, 8vw, 128px) var(--pad); display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(50px, 8vw, 130px); color: #fff; background: var(--ink-2); }
.trust-panel__intro span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.trust-panel__intro h2 { margin-top: 24px; max-width: 520px; font-size: clamp(30px, 3.3vw, 52px); font-weight: 550; letter-spacing: -.045em; line-height: 1.05; text-wrap: balance; }
.trust-panel__items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-light); }
.trust-panel__items article { min-height: 210px; padding: 28px 24px 12px; border-right: 1px solid var(--line-light); }
.trust-panel__items article:last-child { border-right: 0; }
.trust-panel__items b { display: block; overflow-wrap: anywhere; color: var(--gold); font-size: clamp(23px, 2.6vw, 40px); font-weight: 550; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.trust-panel__items p { margin-top: 70px; max-width: 190px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.5; }
.brand-marquee { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--gold); }
.brand-marquee__track { width: max-content; min-height: 94px; display: flex; align-items: center; gap: 34px; animation: marquee 25s linear infinite; }
.brand-marquee__track span { font-size: clamp(22px, 3vw, 44px); font-weight: 700; letter-spacing: -.05em; white-space: nowrap; }
.brand-marquee__track i { font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Section headings */
.section-heading h2,
.calc__head h2,
.about__copy h2,
.faq__head h2,
.contacts-section__lead h2 {
  margin-top: 20px;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .86;
  text-wrap: balance;
}
.section-heading h2 span,
.about__copy h2 span,
.faq__head h2 span { color: var(--gold-dark); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); gap: 60px; align-items: end; }
.section-heading--split > p { max-width: 520px; padding-bottom: 8px; color: var(--muted); font-size: 16px; line-height: 1.65; text-wrap: pretty; }

/* Catalog + generated cards */
.catalog { padding: clamp(78px, 8vw, 130px) var(--pad) clamp(90px, 9vw, 150px); background: var(--paper); }
.catalog > * { width: 100%; max-width: 1380px; margin-inline: auto; }
.catalog__filters { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 8px; }
.catalog__filters:empty,
.catalog__filters[hidden] { display: none; }
.catalog__filters button { min-height: 40px; padding: 0 16px; border: 1px solid var(--line); background: transparent; font-size: 12px; font-weight: 700; transition: background .2s, border-color .2s, transform .2s; }
.catalog__filters button:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.catalog__filters button.is-active { border-color: var(--ink); color: #fff; background: var(--ink); }
.catalog__grid { margin-top: 46px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.card { --image-x: 0px; --image-y: 0px; grid-column: auto; min-width: 0; display: flex; flex-direction: column; overflow: hidden; color: var(--ink); background: var(--surface); transition: color .3s, background .3s, box-shadow .35s, transform .35s var(--ease); }
.card:hover { color: #fff; background: var(--ink-2); box-shadow: 0 24px 54px rgba(24,32,39,.16); }
.card__visual { position: relative; height: clamp(220px, 18vw, 290px); min-height: 0; display: grid; place-items: center; overflow: hidden; background: #f7f6f2; }
.card__product-image { width: 100%; height: 100%; min-height: 0; object-fit: contain; mix-blend-mode: multiply; transform: translate3d(var(--image-x), var(--image-y), 0) scale(.82); transition: transform .3s var(--ease), filter .3s; }
.card:hover .card__product-image { transform: translate3d(var(--image-x), var(--image-y), 0) scale(.88); filter: saturate(.88); }
.card__placeholder { width: 72%; min-height: 150px; padding: 24px; display: grid; align-content: center; gap: 10px; color: var(--ink); border: 1px solid var(--line); background: linear-gradient(135deg, #fff, #dedbd3); text-align: center; }
.card__placeholder strong { color: var(--gold-dark); font-size: 27px; }
.card__placeholder b { font-size: 15px; }
.card__badge { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 7px 10px; color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.85); backdrop-filter: blur(8px); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card__photo-note { position: absolute; right: auto; bottom: 14px; left: 14px; color: var(--muted); font-size: 9px; }
.card__contact { position: absolute; z-index: 2; right: 16px; bottom: 16px; padding: 9px 12px; display: grid; gap: 2px; color: var(--ink); background: var(--gold); }
.card__contact span { font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.card__contact b { font-size: 11px; }
.card__body { padding: 20px 18px 18px; display: flex; flex: 1; flex-direction: column; }
.card__brand { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card:hover .card__brand { color: var(--gold-soft); }
.card h3 { margin-top: 6px; min-height: 2.32em; font-size: clamp(17px, 1.25vw, 21px); font-weight: 650; line-height: 1.16; letter-spacing: -.04em; }
.card__technical { margin-top: 7px; min-height: 2.65em; color: var(--muted); font-size: 10.5px; line-height: 1.38; }
.card:hover .card__technical { color: rgba(255,255,255,.58); }
.card__variant-row { margin-top: 15px; display: grid; gap: 6px; }
.card__variant-row > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card__variants { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); }
.card__variant { min-height: 35px; padding: 0 8px; color: var(--muted); background: transparent; font-size: 10.5px; font-weight: 750; transition: color .2s, background .2s; }
.card__variant + .card__variant { border-left: 1px solid var(--line); }
.card__variant:hover { color: var(--ink); background: var(--gold-soft); }
.card__variant.is-active { color: var(--ink); background: var(--gold); }
.card__variant[data-variant-static] { grid-column: 1 / -1; display: grid; place-items: center; }
.card__price { margin-top: 14px; padding: 14px 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 4px 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card__price-label { grid-column: 1 / -1; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card__price strong { min-width: 0; max-width: 100%; overflow-wrap: anywhere; font-size: clamp(25px, 2vw, 33px); font-weight: 600; letter-spacing: -.055em; line-height: .98; font-variant-numeric: tabular-nums; }
.card__price > span { padding-bottom: 2px; color: var(--muted); font-size: 11px; font-weight: 700; white-space: nowrap; }
.card__price-date { grid-column: 1 / -1; margin-top: 5px; color: var(--muted); font-size: 10px; }
.card:hover .card__price-label,
.card:hover .card__price > span,
.card:hover .card__price-date { color: rgba(255,255,255,.55); }
.card__buy { padding: 14px 0; display: grid; gap: 11px; }
.card__buy label,
.card__subtotal span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card:hover .card__buy label,
.card:hover .card__subtotal span { color: rgba(255,255,255,.52); }
.card__subtotal { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card__subtotal span { margin: 0; }
.card__subtotal strong { min-width: 0; max-width: 62%; overflow-wrap: anywhere; color: var(--gold-dark); font-size: 13px; line-height: 1.25; text-align: right; font-variant-numeric: tabular-nums; }
.card:hover .card__subtotal strong { color: var(--gold-soft); }
.card__action { width: 100%; margin-top: auto; justify-content: center; }
.card__action.is-added { background: var(--gold-soft); }
.stepper { height: 42px; display: grid; grid-template-columns: 40px minmax(42px, 1fr) auto 40px; border: 1px solid var(--line); background: transparent; }
.stepper button { color: inherit; background: rgba(24,32,39,.035); font-size: 18px; font-weight: 700; transition: color .2s, background .2s; }
.stepper button:hover { color: var(--ink); background: var(--gold); }
.stepper input { width: 100%; min-width: 0; border: 0; border-left: 1px solid var(--line); background: transparent; text-align: center; font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; -moz-appearance: textfield; }
.stepper input::-webkit-inner-spin-button,
.stepper input::-webkit-outer-spin-button { margin: 0; -webkit-appearance: none; }
.stepper input:focus { outline: 0; box-shadow: inset 0 -2px var(--gold); }
.stepper__unit { padding: 0 10px; display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; }
.card:hover .stepper { border-color: rgba(255,255,255,.2); }
.card:hover .stepper input { border-color: rgba(255,255,255,.2); }
.card:hover .stepper__unit { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.6); }

/* Calculator */
.calc { padding: clamp(100px, 11vw, 180px) var(--pad); color: #fff; background: var(--ink); }
.calc__inner { max-width: var(--wrap); margin: auto; }
.calc__head { max-width: 950px; margin-bottom: 66px; }
.calc__head h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.5); }
.calc__head > p:last-child { margin-top: 30px; max-width: 620px; color: rgba(255,255,255,.57); font-size: 16px; line-height: 1.6; }
.calc__grid { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(180px, .5fr) minmax(310px, .9fr); grid-template-areas: "inputs route result" "map map map"; gap: 22px; align-items: start; }
.calc__inputs { grid-area: inputs; min-width: 0; padding: 28px; color: var(--ink); background: var(--surface); }
.calc__route { grid-area: route; min-width: 0; align-self: center; padding: 24px 6px; }
.calc__result { grid-area: result; min-width: 0; padding: 28px; color: var(--ink); background: var(--surface); }
.calc__map-panel { grid-area: map; min-width: 0; margin-top: 8px; padding: 18px; color: var(--ink); background: var(--surface); }
.cfield { margin-bottom: 17px; }
.cfield:last-of-type { margin-bottom: 0; }
.cfield label,
.form label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.cfield select,
.cfield input[type="text"],
.cfield input[type="search"],
.cfield input[type="tel"],
.form input,
.form textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: rgba(255,255,255,.6); font-size: 14px; }
.cfield select:focus,
.cfield input:focus,
.form input:focus,
.form textarea:focus { outline: 0; border-color: var(--gold-dark); box-shadow: inset 0 -1px var(--gold-dark); }
.cfield__hint { display: block; margin-top: 6px; color: var(--gold-dark); font-size: 11px; font-weight: 700; }
.cfield__hint--muted { color: var(--muted); font-weight: 500; }
.stepper--calc { height: 48px; }
.calc-address-search { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 7px; }
.calc-address-search button { min-width: 86px; min-height: 48px; padding: 0 13px; color: var(--ink); background: var(--gold); font-size: 11px; font-weight: 800; transition: background .2s, transform .2s; }
.calc-address-search button:hover { background: #d4b878; }
.calc-address-search button:active:not([disabled]) { transform: scale(.97); }
.calc-address-search button[disabled] { opacity: .38; cursor: default; }
.calc-address-search .calc-address-reset { color: var(--muted); border: 1px solid var(--line); background: transparent; }
.calc-validation { margin-top: 12px; padding: 12px; color: #762c26; border: 1px solid rgba(157,62,52,.25); background: #f5dfdc; font-size: 12px; font-weight: 700; }
.map-panel__head { margin-bottom: 13px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.map-panel__head > div { display: grid; gap: 4px; }
.map-panel__head span { color: var(--muted); font-size: 11px; font-weight: 650; }
.map-panel__head strong { font-size: 13px; }
.map-panel__hint { text-align: right; }
.delivery-map { width: 100%; height: clamp(330px, 35vw, 500px); overflow: hidden; background: #ddd8cc; }
.delivery-map:empty::before { content: "Карта загружается…"; display: grid; height: 100%; place-items: center; color: var(--muted); font-size: 12px; font-weight: 700; }
.delivery-map .maplibregl-ctrl-attrib { color: var(--ink); }
.delivery-map .maplibregl-ctrl-attrib a { color: var(--gold-dark); }
.delivery-map .maximm-marker--approx { opacity: .6; filter: grayscale(.3); }
.delivery-map[data-stable-viewport="true"] { cursor: crosshair; }
.maximm-destination-pin { width: 18px; height: 18px; display: block; border: 4px solid #fff; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 2px rgba(24,32,39,.78), 0 8px 20px rgba(24,32,39,.24); cursor: grab; }
.maximm-destination-pin:active { cursor: grabbing; }
.maximm-destination-pin.maximm-marker--approx { opacity: .55; box-shadow: 0 0 0 2px rgba(24,32,39,.5); }
.route { display: grid; gap: 9px; }
.route__point { display: flex; align-items: center; gap: 10px; }
.route__dot { width: 11px; height: 11px; flex: none; border-radius: 50%; background: var(--gold); }
.route__dot--b { border: 2px solid var(--gold); background: var(--ink); }
.route__name { min-width: 0; overflow-wrap: anywhere; color: rgba(255,255,255,.56); font-size: 11px; font-weight: 650; }
.route__line { width: 1px; height: 62px; margin-left: 5px; display: block; overflow: hidden; background: rgba(198,161,91,.2); }
.route__line i { display: block; width: 100%; height: 100%; background: var(--gold); opacity: .45; transform-origin: top; animation: route-pulse 2.8s ease-in-out infinite; }
@keyframes route-pulse { 0%, 100% { transform: scaleY(.15); opacity: .2; } 50% { transform: scaleY(1); opacity: .8; } }
.route__km { max-width: 100%; margin-top: 20px; overflow-wrap: anywhere; color: var(--gold); font-size: clamp(27px, 2.7vw, 42px); font-weight: 550; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.route__note { margin-top: 9px; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.4; }
.route__km.is-approximate { color: var(--gold-soft); }
.route__note.is-approximate { color: var(--gold-soft); font-weight: 700; }
.result__product { margin-bottom: 16px; }
.result__product strong { display: block; overflow-wrap: anywhere; font-size: 17px; font-weight: 700; }
.result__product span { display: block; overflow-wrap: anywhere; color: var(--muted); font-size: 11px; }
.result__quick { padding: 15px 0; display: grid; gap: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.result__quick > span { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, auto); align-items: baseline; gap: 12px; color: var(--muted); font-size: 11px; font-weight: 650; }
.result__quick strong { min-width: 0; max-width: 100%; overflow-wrap: anywhere; color: var(--ink); font-size: clamp(11px, 1vw, 13px); line-height: 1.25; text-align: right; font-variant-numeric: tabular-nums; }
.result__total { min-width: 0; margin: 20px 0 17px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: baseline; gap: 12px; }
.result__total span { color: var(--muted); font-size: 13px; font-weight: 700; }
.result__total strong { min-width: 0; max-width: 100%; overflow-wrap: anywhere; color: var(--gold-dark); font-size: clamp(22px, 2vw, 32px); font-weight: 650; line-height: 1.06; letter-spacing: -.045em; text-align: right; font-variant-numeric: tabular-nums; }
.calc__result.is-manual-review .result__total strong { max-width: 70%; font-size: 17px; text-align: right; }
.result__tg { width: 100%; justify-content: center; }
.result__details { margin-top: 17px; }
.result__details summary { color: var(--muted); font-size: 11px; font-weight: 700; cursor: pointer; }
.result__table { width: 100%; margin-top: 10px; border-collapse: collapse; table-layout: fixed; font-size: 12px; }
.result__table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.result__table td:first-child { color: var(--muted); }
.result__table td:last-child { overflow-wrap: anywhere; text-align: right; font-weight: 750; font-variant-numeric: tabular-nums; }
.result__note { margin-top: 12px; color: var(--muted); font-size: 11px; line-height: 1.45; }

/* About */
.about { min-height: 820px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); background: var(--paper-2); }
.about__media { position: relative; min-height: 820px; overflow: hidden; }
.about__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,27,32,.55), transparent 40%); }
.about__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.about__media:hover img { transform: scale(1.035); }
.about__media > span { position: absolute; z-index: 2; left: 30px; bottom: 30px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.about__copy { padding: clamp(90px, 10vw, 160px) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.about__copy h2 { font-size: clamp(52px, 6vw, 94px); }
.about__copy > p:nth-of-type(2) { margin-top: 34px; max-width: 570px; color: var(--muted); font-size: 16px; line-height: 1.68; }
.about__facts { margin: 44px 0 34px; border-top: 1px solid var(--line); }
.about__facts > div { padding: 17px 0; display: grid; grid-template-columns: 46px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.about__facts b { color: var(--gold-dark); font-size: 11px; letter-spacing: .08em; }
.about__facts span { font-size: 13px; font-weight: 650; }
.about__copy .arrow-link { align-self: flex-start; }

/* Process */
.process { padding: clamp(100px, 11vw, 180px) var(--pad) clamp(120px, 13vw, 210px); color: #fff; background: var(--ink-2); }
.process > * { max-width: var(--wrap); margin-inline: auto; }
.process .section-heading h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.48); }
.process__timeline { --progress: 0%; position: relative; margin-top: 88px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process__rail { position: absolute; top: 7px; right: 0; left: 0; height: 1px; background: var(--line-light); }
.process__rail i { display: block; width: var(--progress); height: 2px; background: var(--gold); transition: width .12s linear; }
.process__timeline article { position: relative; padding: 45px 28px 0 0; min-height: 250px; border-right: 1px solid var(--line-light); }
.process__timeline article:last-child { border-right: 0; padding-right: 0; padding-left: 28px; }
.process__timeline article:not(:first-of-type):not(:last-child) { padding-left: 28px; }
.process__timeline article::before { content: ""; position: absolute; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--ink-2); background: var(--gold); box-shadow: 0 0 0 1px rgba(198,161,91,.8); }
.process__timeline em { color: var(--gold); font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.process__timeline h3 { margin-top: 54px; font-size: clamp(20px, 2vw, 30px); font-weight: 550; letter-spacing: -.04em; }
.process__timeline p { margin-top: 14px; max-width: 210px; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.55; }

/* FAQ */
.faq { padding: clamp(100px, 11vw, 180px) var(--pad); display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 9vw, 150px); background: var(--paper); }
.faq__head h2 { font-size: clamp(52px, 6vw, 92px); }
.faq__head > p:last-child { margin-top: 28px; max-width: 430px; color: var(--muted); font-size: 14px; line-height: 1.62; }
.faq__list { border-top: 1px solid var(--line); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary { min-height: 92px; padding: 18px 0; display: grid; grid-template-columns: 1fr 28px; align-items: center; gap: 20px; list-style: none; cursor: pointer; font-size: clamp(17px, 1.6vw, 23px); font-weight: 600; letter-spacing: -.025em; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary i { position: relative; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; transition: background .25s, transform .35s var(--ease); }
.faq__list summary i::before,
.faq__list summary i::after { content: ""; position: absolute; top: 12px; left: 7px; width: 10px; height: 1px; background: currentColor; }
.faq__list summary i::after { transform: rotate(90deg); }
.faq__list details[open] summary i { background: var(--gold); transform: rotate(45deg); }
.faq__list details p { max-width: 650px; padding: 0 54px 30px 0; color: var(--muted); font-size: 14px; line-height: 1.66; }

/* Contacts */
.contacts-section { padding: clamp(100px, 11vw, 180px) var(--pad); display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: clamp(60px, 9vw, 150px); color: #fff; background: var(--ink); }
.contacts-section__lead h2 { font-size: clamp(54px, 7vw, 110px); }
.contacts-section__lead h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.5); }
.contacts-section__phone { max-width: 100%; margin-top: 42px; display: inline-block; overflow-wrap: anywhere; color: var(--gold); font-size: clamp(25px, 3vw, 46px); font-weight: 550; letter-spacing: -.05em; }
.contacts-section__lead > p:last-child { margin-top: 26px; max-width: 520px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.65; }
.contacts { display: grid; gap: 18px; align-content: center; }
.form { padding: 28px; display: grid; gap: 15px; color: var(--ink); background: var(--surface); }
.form textarea { min-height: 100px; resize: vertical; }
.form .button { width: 100%; justify-content: center; }
.form__note { color: var(--ok); font-size: 12px; font-weight: 700; }
.contacts__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-light); }
.contacts__links a { min-width: 0; padding: 18px 14px 12px 0; display: grid; gap: 5px; border-right: 1px solid var(--line-light); transition: color .2s; }
.contacts__links a:not(:first-child) { padding-left: 14px; }
.contacts__links a:last-child { border-right: 0; }
.contacts__links a:hover { color: var(--gold); }
.contacts__links span { color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contacts__links b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.contacts__links small { color: rgba(255,255,255,.42); font-size: 9px; line-height: 1.4; }
.call-strip { padding: 60px var(--pad); display: flex; align-items: baseline; justify-content: space-between; gap: 30px; color: var(--ink); background: var(--gold); }
.call-strip p { font-size: clamp(28px, 4vw, 60px); font-weight: 600; letter-spacing: -.055em; }
.call-strip a { max-width: 100%; overflow-wrap: anywhere; font-size: clamp(22px, 3.5vw, 48px); font-weight: 600; letter-spacing: -.055em; }
.call-strip a span { display: inline-block; transition: transform .25s; }
.call-strip a:hover span { transform: translate(3px, -3px); }

/* Footer */
.footer { padding: 64px var(--pad) 28px; color: #fff; background: var(--ink-2); }
.brand--footer { color: #fff; }
.footer > p { margin-top: 20px; max-width: 450px; color: rgba(255,255,255,.5); font-size: 13px; }
.footer__meta { margin-top: 64px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.38); font-size: 10px; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; }

/* Drawer entry */
.drawer-tab { --tab-y: -50%; position: fixed; z-index: 34; top: 50%; right: 16px; min-width: 200px; min-height: 70px; padding: 9px 10px; display: flex; align-items: center; gap: 10px; color: var(--ink); background: var(--gold); box-shadow: 0 22px 55px rgba(24,32,39,.22); transform: translateY(var(--tab-y)); transition: transform .3s var(--ease), background .2s; }
.drawer-tab:hover { background: #d3b574; transform: translateY(var(--tab-y)) translateX(-4px); }
.drawer-tab:active { transform: translateY(var(--tab-y)) scale(.97); }
.drawer-tab__count { width: 40px; height: 40px; display: grid; flex: none; place-items: center; color: #fff; background: var(--ink); font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; }
.drawer-tab__copy { min-width: 0; display: grid; gap: 2px; text-align: left; }
.drawer-tab__copy b { font-size: 13px; }
.drawer-tab__copy small { font-size: 9px; opacity: .62; white-space: nowrap; }
.drawer-tab__arrow { margin-left: auto; font-size: 17px; }
.drawer-tab.is-bump { animation: tab-bump .55s var(--ease); }
@keyframes tab-bump { 40% { transform: translateY(var(--tab-y)) scale(1.07); } }

/* Quote drawer contract */
.drawer { position: fixed; z-index: 70; inset: 0 0 0 auto; width: min(560px, 100%); padding: 34px 32px 28px; display: flex; flex-direction: column; overflow-y: auto; color: var(--ink); background: var(--surface); box-shadow: -32px 0 90px rgba(10,18,24,.22); transform: translateX(105%); transition: transform .5s var(--ease); }
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.drawer h2 { margin-top: 8px; font-size: 38px; font-weight: 650; letter-spacing: -.055em; }
.drawer__close { width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; font-size: 25px; transition: color .2s, border-color .2s, transform .2s; }
.drawer__close:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.drawer__close:active { transform: scale(.92); }
.drawer__empty { margin-top: 32px; display: grid; gap: 18px; justify-items: start; color: var(--muted); font-size: 14px; line-height: 1.55; }
.drawer__step { margin: 22px 0 10px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.drawer__step em { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); font-size: 10px; font-style: normal; }
.drawer__items { max-height: min(360px, 42vh); margin-right: -6px; padding-right: 6px; overflow-y: auto; list-style: none; }
.drawer__item { padding: 14px 0; display: grid; grid-template-columns: 52px minmax(0, 1fr) minmax(82px, auto); grid-template-rows: auto auto; gap: 8px 12px; align-items: center; border-bottom: 1px solid var(--line); }
.drawer__thumb { grid-row: 1 / 3; width: 52px; height: 52px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); background: var(--paper); font-size: 10px; font-weight: 800; }
.drawer__item-info { min-width: 0; }
.drawer__item-brand { margin: 0 0 3px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.drawer__item-info b { display: block; overflow-wrap: anywhere; font-size: 12px; line-height: 1.35; }
.drawer__item-remove { grid-column: 3; grid-row: 1; width: 26px; height: 26px; border: 1px solid var(--line); background: transparent; color: var(--muted); }
.drawer__item-remove:hover { color: var(--danger); border-color: var(--danger); }
.drawer__item-stepper { grid-column: 2; grid-row: 2; height: 35px; grid-template-columns: 31px minmax(38px, 1fr) auto 31px; }
.drawer__item-subtotal { grid-column: 3; grid-row: 2; max-width: 112px; justify-self: end; overflow-wrap: anywhere; color: var(--gold-dark); font-size: 11px; font-weight: 800; line-height: 1.22; text-align: right; font-variant-numeric: tabular-nums; }
.drawer__totals,
.drawer__delivery { margin-top: 18px; }
.drawer__row { padding: 9px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 15px; border-bottom: 1px dashed var(--line); }
.drawer__row dt { color: var(--muted); font-size: 11px; font-weight: 650; }
.drawer__row dd { min-width: 0; max-width: 68%; overflow-wrap: anywhere; font-size: 13px; font-weight: 750; line-height: 1.25; text-align: right; font-variant-numeric: tabular-nums; }
.drawer__row--grand { padding-top: 13px; border: 0; }
.drawer__row--grand dt,
.drawer__row--grand dd { color: var(--ink); font-size: 15px; font-weight: 800; }
.route-fields { padding: 8px 15px; border: 1px solid var(--line); background: var(--paper); }
.route-field { position: relative; min-height: 72px; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: center; }
.route-field--origin { border-bottom: 1px solid var(--line); }
.route-field__marker { position: relative; z-index: 2; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); font-size: 10px; font-weight: 800; }
.route-field--destination .route-field__marker { border: 2px solid var(--gold-dark); color: var(--gold-dark); background: var(--surface); }
.route-field__line { position: absolute; z-index: 1; top: 48px; left: 14px; width: 1px; height: 48px; overflow: hidden; background: rgba(157,121,60,.2); }
.route-field__line i { position: absolute; inset: 0 0 auto; height: 16px; background: var(--gold-dark); opacity: .5; }
.drawer.is-open .route-field__line i { animation: drawer-route 2.2s ease-in-out infinite; }
@keyframes drawer-route { from { opacity: 0; transform: translateY(-16px); } 35% { opacity: 1; } to { opacity: 0; transform: translateY(48px); } }
.route-field__label { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.route-field strong { display: block; font-size: 12px; line-height: 1.35; }
.route-field small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.route-field input { width: 100%; min-height: 32px; padding: 3px 0 6px; border: 0; border-bottom: 1px solid transparent; background: transparent; font-size: 13px; font-weight: 650; }
.route-field input:focus { outline: 0; border-bottom-color: var(--gold-dark); }
.route-map-button { width: 100%; min-height: 44px; margin-top: 10px; padding: 0 12px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: transparent; font-size: 11px; font-weight: 700; }
.route-map-button span:last-child { margin-left: auto; }
.route-map-button:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.route-map-button__icon { font-size: 18px; }
.drawer__delivery-button { width: 100%; margin-top: 12px; justify-content: center; }
.drawer__delivery-status { margin: 10px 2px 0; color: var(--muted); font-size: 10px; line-height: 1.48; }
.drawer__delivery-status.is-error { color: var(--danger); }
.drawer__delivery-status.is-ready { color: var(--ok); }
.drawer__delivery-status.is-approximate { color: var(--gold-dark); }
.drawer__delivery-summary { margin-top: 12px; }
.drawer__actions { margin-top: 24px; display: grid; gap: 9px; }
.drawer__actions .button { width: 100%; }
.drawer__send { justify-content: center; }
.drawer__phone { margin-top: auto; padding-top: 20px; color: var(--gold-dark); font-size: 18px; font-weight: 700; text-align: center; }
.drawer-backdrop { position: fixed; z-index: 60; inset: 0; background: rgba(15,21,26,.48); backdrop-filter: blur(4px); }

/* Reveals only after JS boots; no-JS remains readable */
.preview-js [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.preview-js [data-reveal].is-visible { opacity: 1; transform: none; }
.preview-js .catalog__grid .card { opacity: 0; transform: translateY(42px); }
.preview-js .catalog__grid .card.is-visible { opacity: 1; transform: none; }
.preview-js .catalog__grid .card.is-visible:hover { transform: translateY(-3px); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 24px; }
  .site-nav { gap: 18px; }
  .header-phone { display: none; }
  .hero { grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); }
  .catalog__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card,
  .card:nth-child(1),
  .card:nth-child(2),
  .card:nth-last-child(2):nth-child(even),
  .card:last-child:nth-child(odd) { grid-column: auto; }
  .card__visual { height: 250px; }
  .calc__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "inputs inputs" "map map" "route result"; }
  .about { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); }
}

@media (max-width: 940px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-nav { position: fixed; z-index: 39; inset: var(--header-h) 0 auto; padding: 28px var(--pad) 38px; display: none; align-items: stretch; flex-direction: column; gap: 0; color: var(--ink); border-top: 1px solid var(--line); background: var(--paper); box-shadow: 0 30px 60px rgba(24,32,39,.14); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav__phone { display: block; color: var(--gold-dark); font-size: 19px !important; }
  .menu { display: grid; }
  .header-tools { justify-self: end; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { min-height: 690px; }
  .hero__copy::after { display: none; }
  .hero-media { min-height: 620px; }
  .trust-panel { grid-template-columns: 1fr; }
  .catalog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calc__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "inputs" "map" "route" "result"; gap: 14px; }
  .section-heading--split { grid-template-columns: 1fr; align-items: start; }
  .section-heading--split > p { padding: 0; }
  .about { min-height: 0; grid-template-columns: 1fr; }
  .about__media { min-height: 620px; }
  .about__copy { min-height: 700px; }
  .faq,
  .contacts-section { grid-template-columns: 1fr; }
  .faq { gap: 60px; }
  .contacts-section { gap: 54px; }
}

@media (max-width: 700px) {
  :root { --header-h: 68px; --pad: 18px; }
  .site-header { padding: 0 14px; gap: 10px; }
  .brand { gap: 7px; }
  .brand__mark { width: 28px; height: 30px; }
  .brand__mark i { width: 7px; }
  .brand__mark i:nth-child(2) { left: 11px; }
  .brand__type b { font-size: 17px; }
  .brand__type small { font-size: 6.5px; }
  .header-tools { gap: 7px; }
  .languages { padding: 2px; }
  .languages button { width: 27px; height: 26px; font-size: 8px; }
  .menu { width: 39px; min-width: 39px; padding: 0 10px; grid-template-columns: 17px; }
  .menu b { display: none; }
  .site-nav { padding-top: 18px; }
  .hero__copy { min-height: 660px; padding: calc(var(--header-h) + 72px) 20px 30px; }
  .hero h1 { margin-top: 28px; font-size: clamp(58px, 18vw, 78px); }
  .hero__lead { margin-top: 26px; font-size: 15px; }
  .hero__actions { margin-top: 28px; display: grid; justify-items: stretch; gap: 14px; }
  .hero__actions .button { width: 100%; min-width: 0; }
  .hero__actions .arrow-link { justify-self: start; }
  .hero__foot { padding-top: 30px; align-items: flex-start; flex-direction: column; gap: 7px; }
  .hero-media { min-height: 520px; }
  .hero-media__caption { left: 20px; bottom: 28px; }
  .hero-media__autoplay { right: 16px; bottom: 16px; }
  .trust-panel { padding-top: 72px; padding-bottom: 78px; gap: 48px; }
  .trust-panel__items { grid-template-columns: 1fr; }
  .trust-panel__items article { min-height: 0; padding: 22px 0; display: grid; grid-template-columns: minmax(120px, .8fr) 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .trust-panel__items b { font-size: 22px; }
  .trust-panel__items p { margin: 0; }
  .brand-marquee__track { min-height: 72px; gap: 24px; }
  .catalog { padding-top: 86px; padding-bottom: 120px; }
  .section-heading h2,
  .calc__head h2,
  .about__copy h2,
  .faq__head h2,
  .contacts-section__lead h2 { font-size: clamp(50px, 15vw, 68px); }
  .section-heading--split { gap: 34px; }
  .section-heading--split > p { font-size: 14px; }
  .catalog__filters { margin: 32px -18px 0; padding: 0 18px 8px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .catalog__filters::-webkit-scrollbar { display: none; }
  .catalog__filters button { flex: none; }
  .catalog__grid { margin-top: 42px; grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .card__visual { height: 285px; }
  .card h3 { min-height: 0; font-size: 21px; }
  .card__price strong { font-size: 31px; }
  .result__quick > span { grid-template-columns: minmax(0, 1fr) auto; }
  .result__total strong { font-size: clamp(21px, 7.3vw, 29px); }
  .calc { padding-top: 86px; padding-bottom: 110px; }
  .calc__head { margin-bottom: 46px; }
  .calc__head > p:last-child { font-size: 14px; }
  .calc__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "inputs" "map" "route" "result"; gap: 14px; }
  .calc__inputs,
  .calc__result { padding: 20px; }
  .calc__map-panel { padding: 12px; }
  .calc-address-search { grid-template-columns: 1fr; }
  .calc-address-search button { width: 100%; }
  .map-panel__head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .map-panel__hint { text-align: left; }
  .delivery-map { height: 330px; }
  .calc__route { padding: 26px 8px 36px; }
  .about__media { min-height: 450px; }
  .about__copy { min-height: 0; padding-top: 84px; padding-bottom: 104px; }
  .about__copy > p:nth-of-type(2) { font-size: 14px; }
  .process { padding-top: 90px; padding-bottom: 120px; }
  .process__timeline { margin-top: 64px; grid-template-columns: 1fr; }
  .process__rail { top: 0; right: auto; bottom: 0; left: 6px; width: 1px; height: auto; }
  .process__rail i { width: 2px; height: var(--progress); transition: height .12s linear; }
  .process__timeline article,
  .process__timeline article:not(:first-of-type):not(:last-child),
  .process__timeline article:last-child { min-height: 180px; padding: 0 0 46px 44px; border-right: 0; }
  .process__timeline article::before { top: 0; left: 0; }
  .process__timeline h3 { margin-top: 24px; font-size: 24px; }
  .faq { padding-top: 90px; padding-bottom: 110px; gap: 50px; }
  .faq__list summary { min-height: 78px; font-size: 17px; }
  .faq__list details p { padding-right: 0; font-size: 13px; }
  .contacts-section { padding-top: 90px; padding-bottom: 110px; }
  .contacts-section__phone { font-size: 27px; }
  .form { padding: 20px; }
  .contacts__links { grid-template-columns: 1fr; }
  .contacts__links a,
  .contacts__links a:not(:first-child) { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .contacts__links a:last-child { border-bottom: 0; }
  .contacts__links b { font-size: 14px; }
  .call-strip { padding-top: 44px; padding-bottom: 46px; align-items: flex-start; flex-direction: column; gap: 14px; }
  .call-strip a { font-size: 27px; }
  .footer { padding: 52px 18px 105px; }
  .footer__meta { margin-top: 48px; align-items: flex-start; flex-direction: column; }
  .drawer-tab { --tab-y: 0%; top: auto; right: 10px; bottom: 10px; left: 10px; min-width: 0; min-height: 64px; }
  .drawer { padding: 25px 18px 22px; }
  .drawer h2 { font-size: 30px; }
}

@media (max-width: 380px) {
  .brand__type { display: none; }
  .hero h1 { font-size: 55px; }
  .languages button { width: 26px; }
  .card__body { padding: 20px 17px; }
  .drawer__item { grid-template-columns: 46px minmax(0, 1fr) minmax(76px, auto); gap: 7px 9px; }
  .drawer__thumb { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  .hero__eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .preview-js [data-reveal],
  .preview-js .catalog__grid .card { opacity: 1; transform: none; }
  .brand-marquee__track { transform: none; }
  .hero-media__autoplay { display: none; }
}
